299208e5dfa6f3c8a107c6674ca6f0a84e283d10
[libguestfs.git] / po-docs / es.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
5 # Luis Bazán <lbazan@bakertillypanama.com>, 2011.
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: libguestfs\n"
9 "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/\n"
10 "POT-Creation-Date: 2011-07-15 17:18+0200\n"
11 "PO-Revision-Date: 2011-07-17 20:50+0000\n"
12 "Last-Translator: rjones <rjones@redhat.com>\n"
13 "Language-Team: Spanish (Castilian) <trans-es@lists.fedoraproject.org>\n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17 "Language: es\n"
18 "Plural-Forms: nplurals=2; plural=(n != 1)\n"
19
20 #. type: =head1
21 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3
22 #: ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3
23 #: ../tools/virt-win-reg.pl:35 ../tools/virt-list-filesystems.pl:30
24 #: ../tools/virt-tar.pl:31 ../tools/virt-make-fs.pl:35
25 #: ../tools/virt-list-partitions.pl:30
26 msgid "NAME"
27 msgstr "NOMBRE"
28
29 #. type: textblock
30 #: ../src/guestfs.pod:5
31 msgid "guestfs - Library for accessing and modifying virtual machine images"
32 msgstr ""
33
34 #. type: =head1
35 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7
36 #: ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7
37 #: ../tools/virt-win-reg.pl:39 ../tools/virt-list-filesystems.pl:34
38 #: ../tools/virt-tar.pl:35 ../tools/virt-make-fs.pl:39
39 #: ../tools/virt-list-partitions.pl:34
40 msgid "SYNOPSIS"
41 msgstr "SINOPSIS"
42
43 #. type: verbatim
44 #: ../src/guestfs.pod:9
45 #, no-wrap
46 msgid ""
47 " #include <guestfs.h>\n"
48 " \n"
49 msgstr ""
50 " #include <guestfs.h>\n"
51 "\n"
52
53 #. type: verbatim
54 #: ../src/guestfs.pod:11
55 #, no-wrap
56 msgid ""
57 " guestfs_h *g = guestfs_create ();\n"
58 " guestfs_add_drive (g, \"guest.img\");\n"
59 " guestfs_launch (g);\n"
60 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
61 " guestfs_touch (g, \"/hello\");\n"
62 " guestfs_umount (g, \"/\");\n"
63 " guestfs_close (g);\n"
64 "\n"
65 msgstr ""
66 "  guestfs_h *g = guestfs_create ();\n"
67 " guestfs_add_drive (g, \"guest.img\");\n"
68 " guestfs_launch (g);\n"
69 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
70 " guestfs_touch (g, \"/hello\");\n"
71 " guestfs_umount (g, \"/\");\n"
72 " guestfs_close (g);\n"
73 "\n"
74
75 #. type: verbatim
76 #: ../src/guestfs.pod:19
77 #, no-wrap
78 msgid ""
79 " cc prog.c -o prog -lguestfs\n"
80 "or:\n"
81 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
82 "\n"
83 msgstr ""
84
85 #. type: =head1
86 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30
87 #: ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20
88 #: ../tools/virt-win-reg.pl:63 ../tools/virt-list-filesystems.pl:40
89 #: ../tools/virt-tar.pl:77 ../tools/virt-make-fs.pl:47
90 #: ../tools/virt-list-partitions.pl:40
91 msgid "DESCRIPTION"
92 msgstr "DESCRIPCIÓN"
93
94 #. type: textblock
95 #: ../src/guestfs.pod:25
96 msgid ""
97 "Libguestfs is a library for accessing and modifying guest disk images.  "
98 "Amongst the things this is good for: making batch configuration changes to "
99 "guests, getting disk used/free statistics (see also: virt-df), migrating "
100 "between virtualization systems (see also: virt-p2v), performing partial "
101 "backups, performing partial guest clones, cloning guests and changing "
102 "registry/UUID/hostname info, and much else besides."
103 msgstr ""
104
105 #. type: textblock
106 #: ../src/guestfs.pod:33
107 msgid ""
108 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest"
109 " filesystem that Linux and qemu can, including but not limited to: ext2/3/4,"
110 " btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
111 "qcow2, vmdk."
112 msgstr ""
113
114 #. type: textblock
115 #: ../src/guestfs.pod:38
116 msgid ""
117 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
118 "what filesystem is in each LV, etc.).  It can also run commands in the "
119 "context of the guest.  Also you can access filesystems over FUSE."
120 msgstr ""
121
122 #. type: textblock
123 #: ../src/guestfs.pod:43
124 msgid ""
125 "Libguestfs is a library that can be linked with C and C++ management "
126 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java,"
127 " PHP, Haskell or C#).  You can also use it from shell scripts or the command"
128 " line."
129 msgstr ""
130
131 #. type: textblock
132 #: ../src/guestfs.pod:48
133 msgid ""
134 "You don't need to be root to use libguestfs, although obviously you do need "
135 "enough permissions to access the disk images."
136 msgstr ""
137
138 #. type: textblock
139 #: ../src/guestfs.pod:51
140 msgid ""
141 "Libguestfs is a large API because it can do many things.  For a gentle "
142 "introduction, please read the L</API OVERVIEW> section next."
143 msgstr ""
144
145 #. type: textblock
146 #: ../src/guestfs.pod:54
147 msgid ""
148 "There are also some example programs in the L<guestfs-examples(3)> manual "
149 "page."
150 msgstr ""
151
152 #. type: =head1
153 #: ../src/guestfs.pod:57
154 msgid "API OVERVIEW"
155 msgstr "API GENERAL"
156
157 #. type: textblock
158 #: ../src/guestfs.pod:59
159 msgid ""
160 "This section provides a gentler overview of the libguestfs API.  We also try"
161 " to group API calls together, where that may not be obvious from reading "
162 "about the individual calls in the main section of this manual."
163 msgstr ""
164
165 #. type: =head2
166 #: ../src/guestfs.pod:64
167 msgid "HANDLES"
168 msgstr ""
169
170 #. type: textblock
171 #: ../src/guestfs.pod:66
172 msgid ""
173 "Before you can use libguestfs calls, you have to create a handle.  Then you "
174 "must add at least one disk image to the handle, followed by launching the "
175 "handle, then performing whatever operations you want, and finally closing "
176 "the handle.  By convention we use the single letter C<g> for the name of the"
177 " handle variable, although of course you can use any name you want."
178 msgstr ""
179
180 #. type: textblock
181 #: ../src/guestfs.pod:73
182 msgid ""
183 "The general structure of all libguestfs-using programs looks like this:"
184 msgstr ""
185
186 #. type: verbatim
187 #: ../src/guestfs.pod:76
188 #, no-wrap
189 msgid ""
190 " guestfs_h *g = guestfs_create ();\n"
191 " \n"
192 msgstr ""
193
194 #. type: verbatim
195 #: ../src/guestfs.pod:78
196 #, no-wrap
197 msgid ""
198 " /* Call guestfs_add_drive additional times if there are\n"
199 "  * multiple disk images.\n"
200 "  */\n"
201 " guestfs_add_drive (g, \"guest.img\");\n"
202 " \n"
203 msgstr ""
204
205 #. type: verbatim
206 #: ../src/guestfs.pod:83
207 #, no-wrap
208 msgid ""
209 " /* Most manipulation calls won't work until you've launched\n"
210 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
211 "  * and _before_ other commands.\n"
212 "  */\n"
213 " guestfs_launch (g);\n"
214 " \n"
215 msgstr ""
216
217 #. type: verbatim
218 #: ../src/guestfs.pod:89
219 #, no-wrap
220 msgid ""
221 " /* Now you can examine what partitions, LVs etc are available.\n"
222 "  */\n"
223 " char **partitions = guestfs_list_partitions (g);\n"
224 " char **logvols = guestfs_lvs (g);\n"
225 " \n"
226 msgstr ""
227
228 #. type: verbatim
229 #: ../src/guestfs.pod:94
230 #, no-wrap
231 msgid ""
232 " /* To access a filesystem in the image, you must mount it.\n"
233 "  */\n"
234 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
235 " \n"
236 msgstr ""
237
238 #. type: verbatim
239 #: ../src/guestfs.pod:98
240 #, no-wrap
241 msgid ""
242 " /* Now you can perform filesystem actions on the guest\n"
243 "  * disk image.\n"
244 "  */\n"
245 " guestfs_touch (g, \"/hello\");\n"
246 " \n"
247 msgstr ""
248
249 #. type: verbatim
250 #: ../src/guestfs.pod:103
251 #, no-wrap
252 msgid ""
253 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
254 "  * it is done automatically when you close the handle.  See\n"
255 "  * discussion of autosync in this page.\n"
256 "  */\n"
257 " guestfs_sync (g);\n"
258 " \n"
259 msgstr ""
260
261 #. type: verbatim
262 #: ../src/guestfs.pod:109
263 #, no-wrap
264 msgid ""
265 " /* Close the handle 'g'. */\n"
266 " guestfs_close (g);\n"
267 "\n"
268 msgstr ""
269
270 #. type: textblock
271 #: ../src/guestfs.pod:112
272 msgid ""
273 "The code above doesn't include any error checking.  In real code you should "
274 "check return values carefully for errors.  In general all functions that "
275 "return integers return C<-1> on error, and all functions that return "
276 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
277 "how to handle errors, and consult the documentation for each function call "
278 "below to see precisely how they return error indications.  See L<guestfs-"
279 "examples(3)> for fully worked examples."
280 msgstr ""
281
282 #. type: =head2
283 #: ../src/guestfs.pod:121
284 msgid "DISK IMAGES"
285 msgstr ""
286
287 #. type: textblock
288 #: ../src/guestfs.pod:123
289 msgid ""
290 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
291 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
292 "actual block device, or simply an empty file of zeroes that you have created"
293 " through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all"
294 " of these."
295 msgstr ""
296
297 #. type: textblock
298 #: ../src/guestfs.pod:129
299 msgid ""
300 "The call you should use in modern code for adding drives is "
301 "L</guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
302 "specifying that the format is raw, do:"
303 msgstr ""
304
305 #. type: verbatim
306 #: ../src/guestfs.pod:133
307 #, no-wrap
308 msgid ""
309 " guestfs_add_drive_opts (g, filename,\n"
310 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
311 "                         -1);\n"
312 "\n"
313 msgstr ""
314
315 #. type: textblock
316 #: ../src/guestfs.pod:137
317 msgid "You can add a disk read-only using:"
318 msgstr ""
319
320 #. type: verbatim
321 #: ../src/guestfs.pod:139
322 #, no-wrap
323 msgid ""
324 " guestfs_add_drive_opts (g, filename,\n"
325 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
326 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
327 "                         -1);\n"
328 "\n"
329 msgstr ""
330
331 #. type: textblock
332 #: ../src/guestfs.pod:144
333 msgid ""
334 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
335 "libguestfs won't modify the file."
336 msgstr ""
337
338 #. type: textblock
339 #: ../src/guestfs.pod:147
340 msgid ""
341 "Be extremely cautious if the disk image is in use, eg. if it is being used "
342 "by a virtual machine.  Adding it read-write will almost certainly cause disk"
343 " corruption, but adding it read-only is safe."
344 msgstr ""
345
346 #. type: textblock
347 #: ../src/guestfs.pod:151
348 msgid ""
349 "You must add at least one disk image, and you may add multiple disk images."
350 "  In the API, the disk images are usually referred to as C</dev/sda> (for "
351 "the first one you added), C</dev/sdb> (for the second one you added), etc."
352 msgstr ""
353
354 #. type: textblock
355 #: ../src/guestfs.pod:156
356 msgid ""
357 "Once L</guestfs_launch> has been called you cannot add any more images.  You"
358 " can call L</guestfs_list_devices> to get a list of the device names, in the"
359 " order that you added them.  See also L</BLOCK DEVICE NAMING> below."
360 msgstr ""
361
362 #. type: =head2
363 #: ../src/guestfs.pod:161
364 msgid "MOUNTING"
365 msgstr ""
366
367 #. type: textblock
368 #: ../src/guestfs.pod:163
369 msgid ""
370 "Before you can read or write files, create directories and so on in a disk "
371 "image that contains filesystems, you have to mount those filesystems using "
372 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that"
373 " a disk image contains (for example) one partition with a filesystem on that"
374 " partition, then you can mount it directly:"
375 msgstr ""
376
377 #. type: verbatim
378 #: ../src/guestfs.pod:170
379 #, no-wrap
380 msgid ""
381 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
382 "\n"
383 msgstr ""
384
385 #. type: textblock
386 #: ../src/guestfs.pod:172
387 msgid ""
388 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
389 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
390 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
391 "that these are libguestfs virtual devices, and are nothing to do with host "
392 "devices."
393 msgstr ""
394
395 #. type: textblock
396 #: ../src/guestfs.pod:178
397 msgid ""
398 "If you are given a disk image and you don't know what it contains then you "
399 "have to find out.  Libguestfs can do that too: use "
400 "L</guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions "
401 "and LVs, and either try mounting each to see what is mountable, or else "
402 "examine them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
403 "filesystems, use L</guestfs_list_filesystems>."
404 msgstr ""
405
406 #. type: textblock
407 #: ../src/guestfs.pod:186
408 msgid ""
409 "Libguestfs also has a set of APIs for inspection of unknown disk images (see"
410 " L</INSPECTION> below).  But you might find it easier to look at higher "
411 "level programs built on top of libguestfs, in particular L<virt-"
412 "inspector(1)>."
413 msgstr ""
414
415 #. type: textblock
416 #: ../src/guestfs.pod:191
417 msgid ""
418 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
419 "several other variations of the C<guestfs_mount_*> call."
420 msgstr ""
421
422 #. type: =head2
423 #: ../src/guestfs.pod:194
424 msgid "FILESYSTEM ACCESS AND MODIFICATION"
425 msgstr ""
426
427 #. type: textblock
428 #: ../src/guestfs.pod:196
429 msgid ""
430 "The majority of the libguestfs API consists of fairly low-level calls for "
431 "accessing and modifying the files, directories, symlinks etc on mounted "
432 "filesystems.  There are over a hundred such calls which you can find listed "
433 "in detail below in this man page, and we don't even pretend to cover them "
434 "all in this overview."
435 msgstr ""
436
437 #. type: textblock
438 #: ../src/guestfs.pod:202
439 msgid ""
440 "Specify filenames as full paths, starting with C<\"/\"> and including the "
441 "mount point."
442 msgstr ""
443
444 #. type: textblock
445 #: ../src/guestfs.pod:205
446 msgid ""
447 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
448 "the file called C<\"etc/passwd\"> then you could do:"
449 msgstr ""
450
451 #. type: verbatim
452 #: ../src/guestfs.pod:208
453 #, no-wrap
454 msgid ""
455 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
456 "\n"
457 msgstr ""
458
459 #. type: textblock
460 #: ../src/guestfs.pod:210
461 msgid ""
462 "This would return C<data> as a newly allocated buffer containing the full "
463 "content of that file (with some conditions: see also L</DOWNLOADING> below),"
464 " or C<NULL> if there was an error."
465 msgstr ""
466
467 #. type: textblock
468 #: ../src/guestfs.pod:214
469 msgid ""
470 "As another example, to create a top-level directory on that filesystem "
471 "called C<\"var\"> you would do:"
472 msgstr ""
473
474 #. type: verbatim
475 #: ../src/guestfs.pod:217
476 #, no-wrap
477 msgid ""
478 " guestfs_mkdir (g, \"/var\");\n"
479 "\n"
480 msgstr ""
481
482 #. type: textblock
483 #: ../src/guestfs.pod:219
484 msgid "To create a symlink you could do:"
485 msgstr ""
486
487 #. type: verbatim
488 #: ../src/guestfs.pod:221
489 #, no-wrap
490 msgid ""
491 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
492 "               \"/etc/rc3.d/S30portmap\");\n"
493 "\n"
494 msgstr ""
495
496 #. type: textblock
497 #: ../src/guestfs.pod:224
498 msgid ""
499 "Libguestfs will reject attempts to use relative paths and there is no "
500 "concept of a current working directory."
501 msgstr ""
502
503 #. type: textblock
504 #: ../src/guestfs.pod:227
505 msgid ""
506 "Libguestfs can return errors in many situations: for example if the "
507 "filesystem isn't writable, or if a file or directory that you requested "
508 "doesn't exist.  If you are using the C API (documented here)  you have to "
509 "check for those error conditions after each call.  (Other language bindings "
510 "turn these errors into exceptions)."
511 msgstr ""
512
513 #. type: textblock
514 #: ../src/guestfs.pod:233
515 msgid ""
516 "File writes are affected by the per-handle umask, set by calling "
517 "L</guestfs_umask> and defaulting to 022.  See L</UMASK>."
518 msgstr ""
519
520 #. type: =head2
521 #: ../src/guestfs.pod:236
522 msgid "PARTITIONING"
523 msgstr ""
524
525 #. type: textblock
526 #: ../src/guestfs.pod:238
527 msgid ""
528 "Libguestfs contains API calls to read, create and modify partition tables on"
529 " disk images."
530 msgstr ""
531
532 #. type: textblock
533 #: ../src/guestfs.pod:241
534 msgid ""
535 "In the common case where you want to create a single partition covering the "
536 "whole disk, you should use the L</guestfs_part_disk> call:"
537 msgstr ""
538
539 #. type: verbatim
540 #: ../src/guestfs.pod:245
541 #, no-wrap
542 msgid ""
543 " const char *parttype = \"mbr\";\n"
544 " if (disk_is_larger_than_2TB)\n"
545 "   parttype = \"gpt\";\n"
546 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
547 "\n"
548 msgstr ""
549
550 #. type: textblock
551 #: ../src/guestfs.pod:250
552 msgid ""
553 "Obviously this effectively wipes anything that was on that disk image "
554 "before."
555 msgstr ""
556
557 #. type: =head2
558 #: ../src/guestfs.pod:253
559 msgid "LVM2"
560 msgstr ""
561
562 #. type: textblock
563 #: ../src/guestfs.pod:255
564 msgid ""
565 "Libguestfs provides access to a large part of the LVM2 API, such as "
566 "L</guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense "
567 "unless you familiarize yourself with the concepts of physical volumes, "
568 "volume groups and logical volumes."
569 msgstr ""
570
571 #. type: textblock
572 #: ../src/guestfs.pod:260
573 msgid ""
574 "This author strongly recommends reading the LVM HOWTO, online at "
575 "L<http://tldp.org/HOWTO/LVM-HOWTO/>."
576 msgstr ""
577
578 #. type: =head2
579 #: ../src/guestfs.pod:263
580 msgid "DOWNLOADING"
581 msgstr ""
582
583 #. type: textblock
584 #: ../src/guestfs.pod:265
585 msgid ""
586 "Use L</guestfs_cat> to download small, text only files.  This call is "
587 "limited to files which are less than 2 MB and which cannot contain any ASCII"
588 " NUL (C<\\0>) characters.  However the API is very simple to use."
589 msgstr ""
590
591 #. type: textblock
592 #: ../src/guestfs.pod:269
593 msgid ""
594 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
595 "bit data, since it returns a (pointer, size) pair.  However it is still "
596 "limited to \"small\" files, less than 2 MB."
597 msgstr ""
598
599 #. type: textblock
600 #: ../src/guestfs.pod:273
601 msgid ""
602 "L</guestfs_download> can be used to download any file, with no limits on "
603 "content or size (even files larger than 4 GB)."
604 msgstr ""
605
606 #. type: textblock
607 #: ../src/guestfs.pod:276
608 msgid ""
609 "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
610 msgstr ""
611
612 #. type: =head2
613 #: ../src/guestfs.pod:279
614 msgid "UPLOADING"
615 msgstr ""
616
617 #. type: textblock
618 #: ../src/guestfs.pod:281
619 msgid ""
620 "It's often the case that you want to write a file or files to the disk "
621 "image."
622 msgstr ""
623
624 #. type: textblock
625 #: ../src/guestfs.pod:284
626 msgid ""
627 "To write a small file with fixed content, use L</guestfs_write>.  To create "
628 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or "
629 "L</guestfs_fallocate64> (with all disk blocks allocated).  There are a "
630 "variety of other functions for creating test files, for example "
631 "L</guestfs_fill> and L</guestfs_fill_pattern>."
632 msgstr ""
633
634 #. type: textblock
635 #: ../src/guestfs.pod:290
636 msgid ""
637 "To upload a single file, use L</guestfs_upload>.  This call has no limits on"
638 " file content or size (even files larger than 4 GB)."
639 msgstr ""
640
641 #. type: textblock
642 #: ../src/guestfs.pod:293
643 msgid ""
644 "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
645 msgstr ""
646
647 #. type: textblock
648 #: ../src/guestfs.pod:295
649 msgid ""
650 "However the fastest way to upload I<large numbers of arbitrary files> is to "
651 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and "
652 "L<mkisofs(8)>), then attach this using L</guestfs_add_drive_ro>.  If you add"
653 " the drive in a predictable way (eg. adding it last after all other drives) "
654 "then you can get the device name from L</guestfs_list_devices> and mount it "
655 "directly using L</guestfs_mount_ro>.  Note that squashfs images are "
656 "sometimes non-portable between kernel versions, and they don't support "
657 "labels or UUIDs.  If you want to pre-build an image or you need to mount it "
658 "using a label or UUID, use an ISO image instead."
659 msgstr ""
660
661 #. type: =head2
662 #: ../src/guestfs.pod:306
663 msgid "COPYING"
664 msgstr ""
665
666 #. type: textblock
667 #: ../src/guestfs.pod:308
668 msgid ""
669 "There are various different commands for copying between files and devices "
670 "and in and out of the guest filesystem.  These are summarised in the table "
671 "below."
672 msgstr ""
673
674 #. type: =item
675 #: ../src/guestfs.pod:314
676 msgid "B<file> to B<file>"
677 msgstr ""
678
679 #. type: textblock
680 #: ../src/guestfs.pod:316
681 msgid ""
682 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
683 "directories recursively."
684 msgstr ""
685
686 #. type: =item
687 #: ../src/guestfs.pod:319
688 msgid "B<file or device> to B<file or device>"
689 msgstr ""
690
691 #. type: textblock
692 #: ../src/guestfs.pod:321
693 msgid ""
694 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and"
695 " devices in the guest."
696 msgstr ""
697
698 #. type: textblock
699 #: ../src/guestfs.pod:324
700 msgid "Example: duplicate the contents of an LV:"
701 msgstr ""
702
703 #. type: verbatim
704 #: ../src/guestfs.pod:326
705 #, no-wrap
706 msgid ""
707 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
708 "\n"
709 msgstr ""
710
711 #. type: textblock
712 #: ../src/guestfs.pod:328
713 msgid ""
714 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
715 "(C</dev/VG/Original>).  To copy less than the whole source device, use "
716 "L</guestfs_copy_size>."
717 msgstr ""
718
719 #. type: =item
720 #: ../src/guestfs.pod:332
721 msgid "B<file on the host> to B<file or device>"
722 msgstr ""
723
724 #. type: textblock
725 #: ../src/guestfs.pod:334
726 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
727 msgstr ""
728
729 #. type: =item
730 #: ../src/guestfs.pod:336
731 msgid "B<file or device> to B<file on the host>"
732 msgstr ""
733
734 #. type: textblock
735 #: ../src/guestfs.pod:338
736 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
737 msgstr ""
738
739 #. type: =head2
740 #: ../src/guestfs.pod:342
741 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
742 msgstr ""
743
744 #. type: textblock
745 #: ../src/guestfs.pod:344
746 msgid ""
747 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, "
748 "L</guestfs_tar_out> etc appear to only take filenames as arguments, so it "
749 "appears you can only upload and download to files.  However many Un*x-like "
750 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, "
751 "C</dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, "
752 "stderr, and arbitrary file descriptor N."
753 msgstr ""
754
755 #. type: textblock
756 #: ../src/guestfs.pod:352
757 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
758 msgstr ""
759
760 #. type: verbatim
761 #: ../src/guestfs.pod:355
762 #, no-wrap
763 msgid ""
764 " guestfs_download (g, filename, \"/dev/stdout\");\n"
765 "\n"
766 msgstr ""
767
768 #. type: textblock
769 #: ../src/guestfs.pod:357
770 msgid "and you can write tar output to a file descriptor C<fd> by doing:"
771 msgstr ""
772
773 #. type: verbatim
774 #: ../src/guestfs.pod:359
775 #, no-wrap
776 msgid ""
777 " char devfd[64];\n"
778 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
779 " guestfs_tar_out (g, \"/\", devfd);\n"
780 "\n"
781 msgstr ""
782
783 #. type: =head2
784 #: ../src/guestfs.pod:363
785 msgid "LISTING FILES"
786 msgstr ""
787
788 #. type: textblock
789 #: ../src/guestfs.pod:365
790 msgid ""
791 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
792 "L<guestfish(1)>-equivalent command C<ll>)."
793 msgstr ""
794
795 #. type: textblock
796 #: ../src/guestfs.pod:368
797 msgid ""
798 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
799 "programs, as a flat list of strings."
800 msgstr ""
801
802 #. type: textblock
803 #: ../src/guestfs.pod:371
804 msgid ""
805 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
806 "directory, plus additional information about each one.  It is more "
807 "equivalent to using the L<readdir(3)> call on a local filesystem."
808 msgstr ""
809
810 #. type: textblock
811 #: ../src/guestfs.pod:375
812 msgid ""
813 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list "
814 "files."
815 msgstr ""
816
817 #. type: =head2
818 #: ../src/guestfs.pod:378
819 msgid "RUNNING COMMANDS"
820 msgstr ""
821
822 #. type: textblock
823 #: ../src/guestfs.pod:380
824 msgid ""
825 "Although libguestfs is primarily an API for manipulating files inside guest "
826 "images, we also provide some limited facilities for running commands inside "
827 "guests."
828 msgstr ""
829
830 #. type: textblock
831 #: ../src/guestfs.pod:384
832 msgid "There are many limitations to this:"
833 msgstr ""
834
835 #. type: =item
836 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398
837 #: ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411
838 #: ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1064
839 #: ../src/guestfs.pod:1068 ../src/guestfs.pod:1072 ../src/guestfs.pod:1077
840 #: ../src/guestfs.pod:1085 ../src/guestfs.pod:1104 ../src/guestfs.pod:1112
841 #: ../src/guestfs.pod:1134 ../src/guestfs.pod:1138 ../src/guestfs.pod:1142
842 #: ../src/guestfs.pod:1146 ../src/guestfs.pod:1150 ../src/guestfs.pod:1154
843 #: ../src/guestfs.pod:1643 ../src/guestfs.pod:1648 ../src/guestfs.pod:1652
844 #: ../src/guestfs.pod:1754 ../src/guestfs.pod:1759 ../src/guestfs.pod:1763
845 #: ../src/guestfs.pod:1773 ../src/guestfs.pod:2047 ../src/guestfs.pod:2052
846 #: ../src/guestfs.pod:2058 ../src/guestfs.pod:2066 ../src/guestfs.pod:2420
847 #: ../src/guestfs.pod:2426 ../src/guestfs.pod:2431 ../src/guestfs.pod:2437
848 #: ../src/guestfs.pod:3011 ../src/guestfs.pod:3015 ../src/guestfs.pod:3019
849 #: ../src/guestfs.pod:3023 ../src/guestfs-actions.pod:15
850 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:583
851 #: ../src/guestfs-actions.pod:591 ../src/guestfs-actions.pod:598
852 #: ../src/guestfs-actions.pod:605 ../src/guestfs-actions.pod:1662
853 #: ../src/guestfs-actions.pod:1666 ../src/guestfs-actions.pod:1670
854 #: ../src/guestfs-actions.pod:1674 ../src/guestfs-actions.pod:1682
855 #: ../src/guestfs-actions.pod:1686 ../src/guestfs-actions.pod:1690
856 #: ../src/guestfs-actions.pod:1700 ../src/guestfs-actions.pod:1704
857 #: ../src/guestfs-actions.pod:1708 ../src/guestfs-actions.pod:1846
858 #: ../src/guestfs-actions.pod:1850 ../src/guestfs-actions.pod:1855
859 #: ../src/guestfs-actions.pod:1860 ../src/guestfs-actions.pod:1921
860 #: ../src/guestfs-actions.pod:1925 ../src/guestfs-actions.pod:1930
861 #: ../src/guestfs-actions.pod:2857 ../src/guestfs-actions.pod:2863
862 #: ../src/guestfs-actions.pod:2871 ../src/guestfs-actions.pod:2878
863 #: ../src/guestfs-actions.pod:2885 ../fish/guestfish.pod:445
864 #: ../fish/guestfish.pod:449 ../fish/guestfish.pod:453
865 #: ../fish/guestfish.pod:457 ../fish/guestfish-actions.pod:13
866 #: ../fish/guestfish-actions.pod:20 ../fish/guestfish-actions.pod:385
867 #: ../fish/guestfish-actions.pod:393 ../fish/guestfish-actions.pod:400
868 #: ../fish/guestfish-actions.pod:407 ../fish/guestfish-actions.pod:1099
869 #: ../fish/guestfish-actions.pod:1103 ../fish/guestfish-actions.pod:1107
870 #: ../fish/guestfish-actions.pod:1111 ../fish/guestfish-actions.pod:1119
871 #: ../fish/guestfish-actions.pod:1123 ../fish/guestfish-actions.pod:1127
872 #: ../fish/guestfish-actions.pod:1137 ../fish/guestfish-actions.pod:1141
873 #: ../fish/guestfish-actions.pod:1145 ../fish/guestfish-actions.pod:1235
874 #: ../fish/guestfish-actions.pod:1239 ../fish/guestfish-actions.pod:1244
875 #: ../fish/guestfish-actions.pod:1249 ../fish/guestfish-actions.pod:1291
876 #: ../fish/guestfish-actions.pod:1295 ../fish/guestfish-actions.pod:1300
877 #: ../fish/guestfish-actions.pod:1933 ../fish/guestfish-actions.pod:1939
878 #: ../fish/guestfish-actions.pod:1947 ../fish/guestfish-actions.pod:1954
879 #: ../fish/guestfish-actions.pod:1961 ../tools/virt-win-reg.pl:195
880 #: ../tools/virt-win-reg.pl:200 ../tools/virt-win-reg.pl:206
881 #: ../tools/virt-win-reg.pl:708 ../tools/virt-win-reg.pl:714
882 #: ../tools/virt-win-reg.pl:720
883 msgid "*"
884 msgstr ""
885
886 #. type: textblock
887 #: ../src/guestfs.pod:390
888 msgid ""
889 "The kernel version that the command runs under will be different from what "
890 "it expects."
891 msgstr ""
892
893 #. type: textblock
894 #: ../src/guestfs.pod:395
895 msgid ""
896 "If the command needs to communicate with daemons, then most likely they "
897 "won't be running."
898 msgstr ""
899
900 #. type: textblock
901 #: ../src/guestfs.pod:400
902 msgid "The command will be running in limited memory."
903 msgstr ""
904
905 #. type: textblock
906 #: ../src/guestfs.pod:404
907 msgid ""
908 "The network may not be available unless you enable it (see "
909 "L</guestfs_set_network>)."
910 msgstr ""
911
912 #. type: textblock
913 #: ../src/guestfs.pod:409
914 msgid "Only supports Linux guests (not Windows, BSD, etc)."
915 msgstr ""
916
917 #. type: textblock
918 #: ../src/guestfs.pod:413
919 msgid ""
920 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
921 msgstr ""
922
923 #. type: textblock
924 #: ../src/guestfs.pod:418
925 msgid ""
926 "For SELinux guests, you may need to enable SELinux and load policy first.  "
927 "See L</SELINUX> in this manpage."
928 msgstr ""
929
930 #. type: textblock
931 #: ../src/guestfs.pod:423
932 msgid ""
933 "I<Security:> It is not safe to run commands from untrusted, possibly "
934 "malicious guests.  These commands may attempt to exploit your program by "
935 "sending unexpected output.  They could also try to exploit the Linux kernel "
936 "or qemu provided by the libguestfs appliance.  They could use the network "
937 "provided by the libguestfs appliance to bypass ordinary network partitions "
938 "and firewalls.  They could use the elevated privileges or different SELinux "
939 "context of your program to their advantage."
940 msgstr ""
941
942 #. type: textblock
943 #: ../src/guestfs.pod:432
944 msgid ""
945 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
946 "(a script which runs when the guest next boots normally), and to have this "
947 "script run the commands you want in the normal context of the running guest,"
948 " network security and so on.  For information about other security issues, "
949 "see L</SECURITY>."
950 msgstr ""
951
952 #. type: textblock
953 #: ../src/guestfs.pod:440
954 msgid ""
955 "The two main API calls to run commands are L</guestfs_command> and "
956 "L</guestfs_sh> (there are also variations)."
957 msgstr ""
958
959 #. type: textblock
960 #: ../src/guestfs.pod:443
961 msgid ""
962 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
963 "shell globs, redirections, etc will work."
964 msgstr ""
965
966 #. type: =head2
967 #: ../src/guestfs.pod:446
968 msgid "CONFIGURATION FILES"
969 msgstr ""
970
971 #. type: textblock
972 #: ../src/guestfs.pod:448
973 msgid ""
974 "To read and write configuration files in Linux guest filesystems, we "
975 "strongly recommend using Augeas.  For example, Augeas understands how to "
976 "read and write, say, a Linux shadow password file or X.org configuration "
977 "file, and so avoids you having to write that code."
978 msgstr ""
979
980 #. type: textblock
981 #: ../src/guestfs.pod:453
982 msgid ""
983 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't"
984 " document Augeas itself here because there is excellent documentation on the"
985 " L<http://augeas.net/> website."
986 msgstr ""
987
988 #. type: textblock
989 #: ../src/guestfs.pod:457
990 msgid ""
991 "If you don't want to use Augeas (you fool!) then try calling "
992 "L</guestfs_read_lines> to get the file as a list of lines which you can "
993 "iterate over."
994 msgstr ""
995
996 #. type: =head2
997 #: ../src/guestfs.pod:461
998 msgid "SELINUX"
999 msgstr ""
1000
1001 #. type: textblock
1002 #: ../src/guestfs.pod:463
1003 msgid ""
1004 "We support SELinux guests.  To ensure that labeling happens correctly in "
1005 "SELinux guests, you need to enable SELinux and load the guest's policy:"
1006 msgstr ""
1007
1008 #. type: =item
1009 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
1010 #: ../src/guestfs.pod:2465
1011 msgid "1."
1012 msgstr ""
1013
1014 #. type: textblock
1015 #: ../src/guestfs.pod:471
1016 msgid "Before launching, do:"
1017 msgstr ""
1018
1019 #. type: verbatim
1020 #: ../src/guestfs.pod:473
1021 #, no-wrap
1022 msgid ""
1023 " guestfs_set_selinux (g, 1);\n"
1024 "\n"
1025 msgstr ""
1026
1027 #. type: =item
1028 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
1029 #: ../src/guestfs.pod:2490
1030 msgid "2."
1031 msgstr ""
1032
1033 #. type: textblock
1034 #: ../src/guestfs.pod:477
1035 msgid ""
1036 "After mounting the guest's filesystem(s), load the policy.  This is best "
1037 "done by running the L<load_policy(8)> command in the guest itself:"
1038 msgstr ""
1039
1040 #. type: verbatim
1041 #: ../src/guestfs.pod:481
1042 #, no-wrap
1043 msgid ""
1044 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1045 "\n"
1046 msgstr ""
1047
1048 #. type: textblock
1049 #: ../src/guestfs.pod:483
1050 msgid ""
1051 "(Older versions of C<load_policy> require you to specify the name of the "
1052 "policy file)."
1053 msgstr ""
1054
1055 #. type: =item
1056 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
1057 msgid "3."
1058 msgstr ""
1059
1060 #. type: textblock
1061 #: ../src/guestfs.pod:488
1062 msgid ""
1063 "Optionally, set the security context for the API.  The correct security "
1064 "context to use can only be known by inspecting the guest.  As an example:"
1065 msgstr ""
1066
1067 #. type: verbatim
1068 #: ../src/guestfs.pod:492
1069 #, no-wrap
1070 msgid ""
1071 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1072 "\n"
1073 msgstr ""
1074
1075 #. type: textblock
1076 #: ../src/guestfs.pod:496
1077 msgid "This will work for running commands and editing existing files."
1078 msgstr ""
1079
1080 #. type: textblock
1081 #: ../src/guestfs.pod:498
1082 msgid ""
1083 "When new files are created, you may need to label them explicitly, for "
1084 "example by running the external command C<restorecon pathname>."
1085 msgstr ""
1086
1087 #. type: =head2
1088 #: ../src/guestfs.pod:502
1089 msgid "UMASK"
1090 msgstr ""
1091
1092 #. type: textblock
1093 #: ../src/guestfs.pod:504
1094 msgid ""
1095 "Certain calls are affected by the current file mode creation mask (the "
1096 "\"umask\").  In particular ones which create files or directories, such as "
1097 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1098 "either the default mode that the file is created with or modifies the mode "
1099 "that you supply."
1100 msgstr ""
1101
1102 #. type: textblock
1103 #: ../src/guestfs.pod:510
1104 msgid ""
1105 "The default umask is C<022>, so files are created with modes such as C<0644>"
1106 " and directories with C<0755>."
1107 msgstr ""
1108
1109 #. type: textblock
1110 #: ../src/guestfs.pod:513
1111 msgid ""
1112 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1113 "(call C<guestfs_umask (g, 0)> early after launching).  Or call "
1114 "L</guestfs_chmod> after creating each file or directory."
1115 msgstr ""
1116
1117 #. type: textblock
1118 #: ../src/guestfs.pod:517
1119 msgid "For more information about umask, see L<umask(2)>."
1120 msgstr ""
1121
1122 #. type: =head1
1123 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:825
1124 msgid "ENCRYPTED DISKS"
1125 msgstr ""
1126
1127 #. type: textblock
1128 #: ../src/guestfs.pod:521
1129 msgid ""
1130 "Libguestfs allows you to access Linux guests which have been encrypted using"
1131 " whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1132 "standard.  This includes nearly all whole disk encryption systems used by "
1133 "modern Linux guests."
1134 msgstr ""
1135
1136 #. type: textblock
1137 #: ../src/guestfs.pod:527
1138 msgid ""
1139 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1140 "returns the string C<crypto_LUKS>)."
1141 msgstr ""
1142
1143 #. type: textblock
1144 #: ../src/guestfs.pod:530
1145 msgid ""
1146 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1147 "will require the passphrase!"
1148 msgstr ""
1149
1150 #. type: textblock
1151 #: ../src/guestfs.pod:533
1152 msgid ""
1153 "Opening a LUKS device creates a new device mapper device called "
1154 "C</dev/mapper/mapname> (where C<mapname> is the string you supply to "
1155 "L</guestfs_luks_open>).  Reads and writes to this mapper device are "
1156 "decrypted from and encrypted to the underlying block device respectively."
1157 msgstr ""
1158
1159 #. type: textblock
1160 #: ../src/guestfs.pod:539
1161 msgid ""
1162 "LVM volume groups on the device can be made visible by calling "
1163 "L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical "
1164 "volume(s) can now be mounted in the usual way."
1165 msgstr ""
1166
1167 #. type: textblock
1168 #: ../src/guestfs.pod:543
1169 msgid ""
1170 "Use the reverse process to close a LUKS device.  Unmount any logical volumes"
1171 " on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1172 "[\"/dev/VG\"])>.  Then close the mapper device by calling "
1173 "L</guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1174 "underlying encrypted block device)."
1175 msgstr ""
1176
1177 #. type: =head2
1178 #: ../src/guestfs.pod:550
1179 msgid "INSPECTION"
1180 msgstr ""
1181
1182 #. type: textblock
1183 #: ../src/guestfs.pod:552
1184 msgid ""
1185 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1186 "contains operating systems, an install CD or a live CD.  (These APIs used to"
1187 " be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since"
1188 " version 1.5.3 the most frequently used part of this library has been "
1189 "rewritten in C and moved into the core code)."
1190 msgstr ""
1191
1192 #. type: textblock
1193 #: ../src/guestfs.pod:559
1194 msgid ""
1195 "Add all disks belonging to the unknown virtual machine and call "
1196 "L</guestfs_launch> in the usual way."
1197 msgstr ""
1198
1199 #. type: textblock
1200 #: ../src/guestfs.pod:562
1201 msgid ""
1202 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls"
1203 " and certain heuristics, and returns a list of operating systems that were "
1204 "found.  An empty list means none were found.  A single element is the root "
1205 "filesystem of the operating system.  For dual- or multi-boot guests, "
1206 "multiple roots can be returned, each one corresponding to a separate "
1207 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1208 "world of virtualization, but since this scenario can happen, we have built "
1209 "libguestfs to deal with it.)"
1210 msgstr ""
1211
1212 #. type: textblock
1213 #: ../src/guestfs.pod:571
1214 msgid ""
1215 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1216 "to get additional details about that operating system.  For example, call "
1217 "L</guestfs_inspect_get_type> to return the string C<windows> or C<linux> for"
1218 " Windows and Linux-based operating systems respectively."
1219 msgstr ""
1220
1221 #. type: textblock
1222 #: ../src/guestfs.pod:577
1223 msgid ""
1224 "Un*x-like and Linux-based operating systems usually consist of several "
1225 "filesystems which are mounted at boot time (for example, a separate boot "
1226 "partition mounted on C</boot>).  The inspection rules are able to detect how"
1227 " filesystems correspond to mount points.  Call "
1228 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1229 "hash table like this example:"
1230 msgstr ""
1231
1232 #. type: verbatim
1233 #: ../src/guestfs.pod:584
1234 #, no-wrap
1235 msgid ""
1236 " /boot => /dev/sda1\n"
1237 " /     => /dev/vg_guest/lv_root\n"
1238 " /usr  => /dev/vg_guest/lv_usr\n"
1239 "\n"
1240 msgstr ""
1241
1242 #. type: textblock
1243 #: ../src/guestfs.pod:588
1244 msgid ""
1245 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1246 "filesystems as suggested."
1247 msgstr ""
1248
1249 #. type: textblock
1250 #: ../src/guestfs.pod:591
1251 msgid ""
1252 "Be careful to mount filesystems in the right order (eg. C</> before "
1253 "C</usr>).  Sorting the keys of the hash by length, shortest first, should "
1254 "work."
1255 msgstr ""
1256
1257 #. type: textblock
1258 #: ../src/guestfs.pod:595
1259 msgid ""
1260 "Inspection currently only works for some common operating systems.  "
1261 "Contributors are welcome to send patches for other operating systems that we"
1262 " currently cannot detect."
1263 msgstr ""
1264
1265 #. type: textblock
1266 #: ../src/guestfs.pod:599
1267 msgid ""
1268 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1269 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1270 "encrypted devices."
1271 msgstr ""
1272
1273 #. type: textblock
1274 #: ../src/guestfs.pod:603
1275 msgid ""
1276 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1277 "inspection and caches the results in the guest handle.  Subsequent calls to "
1278 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1279 "read the disks.  If you change the content of the guest disks, you can redo "
1280 "inspection by calling L</guestfs_inspect_os> again.  "
1281 "(L</guestfs_inspect_list_applications> works a little differently from the "
1282 "other calls and does read the disks.  See documentation for that function "
1283 "for details)."
1284 msgstr ""
1285
1286 #. type: =head3
1287 #: ../src/guestfs.pod:612
1288 msgid "INSPECTING INSTALL DISKS"
1289 msgstr ""
1290
1291 #. type: textblock
1292 #: ../src/guestfs.pod:614
1293 msgid ""
1294 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1295 "CDs and more."
1296 msgstr ""
1297
1298 #. type: textblock
1299 #: ../src/guestfs.pod:617
1300 msgid ""
1301 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1302 "system, which currently can be C<installed> (a regular operating system) or "
1303 "C<installer> (some sort of install disk)."
1304 msgstr ""
1305
1306 #. type: textblock
1307 #: ../src/guestfs.pod:621
1308 msgid ""
1309 "Further information is available about the operating system that can be "
1310 "installed using the regular inspection APIs like "
1311 "L</guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> "
1312 "etc."
1313 msgstr ""
1314
1315 #. type: textblock
1316 #: ../src/guestfs.pod:626
1317 msgid ""
1318 "Some additional information specific to installer disks is also available "
1319 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and "
1320 "L</guestfs_inspect_is_multipart> calls."
1321 msgstr ""
1322
1323 #. type: =head2
1324 #: ../src/guestfs.pod:631
1325 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1326 msgstr ""
1327
1328 #. type: textblock
1329 #: ../src/guestfs.pod:633
1330 msgid ""
1331 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www"
1332 ".ntfs-3g.org/> driver."
1333 msgstr ""
1334
1335 #. type: =head3
1336 #: ../src/guestfs.pod:636
1337 msgid "DRIVE LETTERS AND PATHS"
1338 msgstr ""
1339
1340 #. type: textblock
1341 #: ../src/guestfs.pod:638
1342 msgid ""
1343 "DOS and Windows still use drive letters, and the filesystems are always "
1344 "treated as case insensitive by Windows itself, and therefore you might find "
1345 "a Windows configuration file referring to a path like "
1346 "C<c:\\windows\\system32>.  When the filesystem is mounted in libguestfs, "
1347 "that directory might be referred to as C</WINDOWS/System32>."
1348 msgstr ""
1349
1350 #. type: textblock
1351 #: ../src/guestfs.pod:644
1352 msgid ""
1353 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1354 "L</guestfs_inspect_get_drive_mappings>)"
1355 msgstr ""
1356
1357 #. type: textblock
1358 #: ../src/guestfs.pod:647
1359 msgid ""
1360 "Dealing with separator characters (backslash vs forward slash) is outside "
1361 "the scope of libguestfs, but usually a simple character replacement will "
1362 "work."
1363 msgstr ""
1364
1365 #. type: textblock
1366 #: ../src/guestfs.pod:651
1367 msgid ""
1368 "To resolve the case insensitivity of paths, call "
1369 "L</guestfs_case_sensitive_path>."
1370 msgstr ""
1371
1372 #. type: =head3
1373 #: ../src/guestfs.pod:654
1374 msgid "ACCESSING THE WINDOWS REGISTRY"
1375 msgstr ""
1376
1377 #. type: textblock
1378 #: ../src/guestfs.pod:656
1379 msgid ""
1380 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1381 "files, through the library C<hivex> which is part of the libguestfs project "
1382 "although ships as a separate tarball.  You have to locate and download the "
1383 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1384 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-"
1385 "win-reg(1)> for more help on this issue."
1386 msgstr ""
1387
1388 #. type: =head3
1389 #: ../src/guestfs.pod:664
1390 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1391 msgstr ""
1392
1393 #. type: textblock
1394 #: ../src/guestfs.pod:666
1395 msgid ""
1396 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1397 "provide something which looks like a Linux symlink.  The way it tries to do "
1398 "the rewriting is described here:"
1399 msgstr ""
1400
1401 #. type: textblock
1402 #: ../src/guestfs.pod:670
1403 msgid ""
1404 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1405 "symbolic-links/>"
1406 msgstr ""
1407
1408 #. type: textblock
1409 #: ../src/guestfs.pod:672
1410 msgid ""
1411 "The essential problem is that ntfs-3g simply does not have enough "
1412 "information to do a correct job.  NTFS links can contain drive letters and "
1413 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1414 "It is almost certainly the case that libguestfs callers should ignore what "
1415 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1416 msgstr ""
1417
1418 #. type: textblock
1419 #: ../src/guestfs.pod:679
1420 msgid ""
1421 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use "
1422 "L</guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1423 "attribute, and read the raw reparse data from that (you can find the format "
1424 "documented in various places around the web)."
1425 msgstr ""
1426
1427 #. type: =head3
1428 #: ../src/guestfs.pod:684
1429 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1430 msgstr ""
1431
1432 #. type: textblock
1433 #: ../src/guestfs.pod:686
1434 msgid ""
1435 "There are other useful extended attributes that can be read from ntfs-3g "
1436 "filesystems (using L</guestfs_getxattr>).  See:"
1437 msgstr ""
1438
1439 #. type: textblock
1440 #: ../src/guestfs.pod:689
1441 msgid ""
1442 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1443 msgstr ""
1444
1445 #. type: =head2
1446 #: ../src/guestfs.pod:691
1447 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1448 msgstr ""
1449
1450 #. type: textblock
1451 #: ../src/guestfs.pod:693
1452 msgid ""
1453 "Although we don't want to discourage you from using the C API, we will "
1454 "mention here that the same API is also available in other languages."
1455 msgstr ""
1456
1457 #. type: textblock
1458 #: ../src/guestfs.pod:696
1459 msgid ""
1460 "The API is broadly identical in all supported languages.  This means that "
1461 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)>"
1462 " in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1463 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1464 "each language."
1465 msgstr ""
1466
1467 #. type: textblock
1468 #: ../src/guestfs.pod:702
1469 msgid ""
1470 "Error messages are automatically transformed into exceptions if the language"
1471 " supports it."
1472 msgstr ""
1473
1474 #. type: textblock
1475 #: ../src/guestfs.pod:705
1476 msgid ""
1477 "We don't try to \"object orientify\" parts of the API in OO languages, "
1478 "although contributors are welcome to write higher level APIs above what we "
1479 "provide in their favourite languages if they wish."
1480 msgstr ""
1481
1482 #. type: =item
1483 #: ../src/guestfs.pod:711
1484 msgid "B<C++>"
1485 msgstr ""
1486
1487 #. type: textblock
1488 #: ../src/guestfs.pod:713
1489 msgid ""
1490 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1491 "identical to the C API.  C++ classes and exceptions are not used."
1492 msgstr ""
1493
1494 #. type: =item
1495 #: ../src/guestfs.pod:717
1496 msgid "B<C#>"
1497 msgstr ""
1498
1499 #. type: textblock
1500 #: ../src/guestfs.pod:719
1501 msgid ""
1502 "The C# bindings are highly experimental.  Please read the warnings at the "
1503 "top of C<csharp/Libguestfs.cs>."
1504 msgstr ""
1505
1506 #. type: =item
1507 #: ../src/guestfs.pod:722
1508 msgid "B<Haskell>"
1509 msgstr ""
1510
1511 #. type: textblock
1512 #: ../src/guestfs.pod:724
1513 msgid ""
1514 "This is the only language binding that is working but incomplete.  Only "
1515 "calls which return simple integers have been bound in Haskell, and we are "
1516 "looking for help to complete this binding."
1517 msgstr ""
1518
1519 #. type: =item
1520 #: ../src/guestfs.pod:728
1521 msgid "B<Java>"
1522 msgstr ""
1523
1524 #. type: textblock
1525 #: ../src/guestfs.pod:730
1526 msgid ""
1527 "Full documentation is contained in the Javadoc which is distributed with "
1528 "libguestfs."
1529 msgstr ""
1530
1531 #. type: =item
1532 #: ../src/guestfs.pod:733
1533 msgid "B<OCaml>"
1534 msgstr ""
1535
1536 #. type: textblock
1537 #: ../src/guestfs.pod:735
1538 msgid "See L<guestfs-ocaml(3)>."
1539 msgstr ""
1540
1541 #. type: =item
1542 #: ../src/guestfs.pod:737
1543 msgid "B<Perl>"
1544 msgstr ""
1545
1546 #. type: textblock
1547 #: ../src/guestfs.pod:739
1548 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1549 msgstr ""
1550
1551 #. type: =item
1552 #: ../src/guestfs.pod:741
1553 msgid "B<PHP>"
1554 msgstr ""
1555
1556 #. type: textblock
1557 #: ../src/guestfs.pod:743
1558 msgid ""
1559 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1560 "the php-libguestfs package for your distribution."
1561 msgstr ""
1562
1563 #. type: textblock
1564 #: ../src/guestfs.pod:746
1565 msgid "The PHP binding only works correctly on 64 bit machines."
1566 msgstr ""
1567
1568 #. type: =item
1569 #: ../src/guestfs.pod:748
1570 msgid "B<Python>"
1571 msgstr ""
1572
1573 #. type: textblock
1574 #: ../src/guestfs.pod:750
1575 msgid "See L<guestfs-python(3)>."
1576 msgstr ""
1577
1578 #. type: =item
1579 #: ../src/guestfs.pod:752
1580 msgid "B<Ruby>"
1581 msgstr ""
1582
1583 #. type: textblock
1584 #: ../src/guestfs.pod:754
1585 msgid "See L<guestfs-ruby(3)>."
1586 msgstr ""
1587
1588 #. type: =item
1589 #: ../src/guestfs.pod:756
1590 msgid "B<shell scripts>"
1591 msgstr ""
1592
1593 #. type: textblock
1594 #: ../src/guestfs.pod:758
1595 msgid "See L<guestfish(1)>."
1596 msgstr ""
1597
1598 #. type: =head2
1599 #: ../src/guestfs.pod:762
1600 msgid "LIBGUESTFS GOTCHAS"
1601 msgstr ""
1602
1603 #. type: textblock
1604 #: ../src/guestfs.pod:764
1605 msgid ""
1606 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1607 "system [...] that works in the way it is documented but is counterintuitive "
1608 "and almost invites mistakes.\""
1609 msgstr ""
1610
1611 #. type: textblock
1612 #: ../src/guestfs.pod:768
1613 msgid ""
1614 "Since we developed libguestfs and the associated tools, there are several "
1615 "things we would have designed differently, but are now stuck with for "
1616 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0"
1617 " release, you can expect these to change.  Beware of them."
1618 msgstr ""
1619
1620 #. type: =item
1621 #: ../src/guestfs.pod:776
1622 msgid "Autosync / forgetting to sync."
1623 msgstr ""
1624
1625 #. type: textblock
1626 #: ../src/guestfs.pod:778
1627 msgid ""
1628 "I<Update:> Autosync is enabled by default for all API users starting from "
1629 "libguestfs 1.5.24.  This section only applies to older versions."
1630 msgstr ""
1631
1632 #. type: textblock
1633 #: ../src/guestfs.pod:781
1634 msgid ""
1635 "When modifying a filesystem from C or another language, you B<must> unmount "
1636 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1637 "libguestfs handle.  You can also call:"
1638 msgstr ""
1639
1640 #. type: verbatim
1641 #: ../src/guestfs.pod:785
1642 #, no-wrap
1643 msgid ""
1644 " guestfs_set_autosync (g, 1);\n"
1645 "\n"
1646 msgstr ""
1647
1648 #. type: textblock
1649 #: ../src/guestfs.pod:787
1650 msgid ""
1651 "to have the unmount/sync done automatically for you when the handle 'g' is "
1652 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> "
1653 "q.v.)"
1654 msgstr ""
1655
1656 #. type: textblock
1657 #: ../src/guestfs.pod:791
1658 msgid ""
1659 "If you forget to do this, then it is entirely possible that your changes "
1660 "won't be written out, or will be partially written, or (very rarely) that "
1661 "you'll get disk corruption."
1662 msgstr ""
1663
1664 #. type: textblock
1665 #: ../src/guestfs.pod:795
1666 msgid ""
1667 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1668 "guestfish scripts that forget to sync will work just fine, which can make "
1669 "this very puzzling if you are trying to debug a problem."
1670 msgstr ""
1671
1672 #. type: =item
1673 #: ../src/guestfs.pod:799
1674 msgid "Mount option C<-o sync> should not be the default."
1675 msgstr ""
1676
1677 #. type: textblock
1678 #: ../src/guestfs.pod:801
1679 msgid ""
1680 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly."
1681 "  However C<-o sync> does not add any reliability benefit, but does have a "
1682 "very large performance impact."
1683 msgstr ""
1684
1685 #. type: textblock
1686 #: ../src/guestfs.pod:805
1687 msgid ""
1688 "The work around is to use L</guestfs_mount_options> and set the mount "
1689 "options that you actually want to use."
1690 msgstr ""
1691
1692 #. type: =item
1693 #: ../src/guestfs.pod:808
1694 msgid "Read-only should be the default."
1695 msgstr ""
1696
1697 #. type: textblock
1698 #: ../src/guestfs.pod:810
1699 msgid ""
1700 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1701 "specify I<--rw> if you want to make changes to the image."
1702 msgstr ""
1703
1704 #. type: textblock
1705 #: ../src/guestfs.pod:813
1706 msgid "This would reduce the potential to corrupt live VM images."
1707 msgstr ""
1708
1709 #. type: textblock
1710 #: ../src/guestfs.pod:815
1711 msgid ""
1712 "Note that many filesystems change the disk when you just mount and unmount, "
1713 "even if you didn't perform any writes.  You need to use "
1714 "L</guestfs_add_drive_ro> to guarantee that the disk is not changed."
1715 msgstr ""
1716
1717 #. type: =item
1718 #: ../src/guestfs.pod:819
1719 msgid "guestfish command line is hard to use."
1720 msgstr ""
1721
1722 #. type: textblock
1723 #: ../src/guestfs.pod:821
1724 msgid ""
1725 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1726 "examination).  It tries to run a guestfish command C<disk.img> which doesn't"
1727 " exist, so it fails.  In earlier versions of guestfish the error message was"
1728 " also unintuitive, but we have corrected this since.  Like the Bourne shell,"
1729 " we should have used C<guestfish -c command> to run commands."
1730 msgstr ""
1731
1732 #. type: =item
1733 #: ../src/guestfs.pod:828
1734 msgid "guestfish megabyte modifiers don't work right on all commands"
1735 msgstr ""
1736
1737 #. type: textblock
1738 #: ../src/guestfs.pod:830
1739 msgid ""
1740 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1741 "other modifiers).  What guestfish actually does is to multiply the number "
1742 "part by the modifier part and pass the result to the C API.  However this "
1743 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1744 "expecting some other unit (eg. megabytes)."
1745 msgstr ""
1746
1747 #. type: textblock
1748 #: ../src/guestfs.pod:837
1749 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1750 msgstr ""
1751
1752 #. type: verbatim
1753 #: ../src/guestfs.pod:839
1754 #, no-wrap
1755 msgid ""
1756 " lvcreate LV VG 100M\n"
1757 "\n"
1758 msgstr ""
1759
1760 #. type: textblock
1761 #: ../src/guestfs.pod:841
1762 msgid ""
1763 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1764 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1765 "megabytes * megabytes) logical volume.  The error message you get from this "
1766 "is also a little obscure."
1767 msgstr ""
1768
1769 #. type: textblock
1770 #: ../src/guestfs.pod:846
1771 msgid ""
1772 "This could be fixed in the generator by specially marking parameters and "
1773 "return values which take bytes or other units."
1774 msgstr ""
1775
1776 #. type: =item
1777 #: ../src/guestfs.pod:849
1778 msgid "Ambiguity between devices and paths"
1779 msgstr ""
1780
1781 #. type: textblock
1782 #: ../src/guestfs.pod:851
1783 msgid ""
1784 "There is a subtle ambiguity in the API between a device name (eg. "
1785 "C</dev/sdb2>) and a similar pathname.  A file might just happen to be called"
1786 " C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1787 msgstr ""
1788
1789 #. type: textblock
1790 #: ../src/guestfs.pod:856
1791 msgid ""
1792 "In the current API we usually resolve this ambiguity by having two separate "
1793 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1794 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1795 "detecting if the path supplied begins with C</dev/>."
1796 msgstr ""
1797
1798 #. type: textblock
1799 #: ../src/guestfs.pod:862
1800 msgid ""
1801 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1802 "make paths/devices into structured names.  One way to do this would be to "
1803 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1804 "aspect of grub.  Another way would be to use a structured type, equivalent "
1805 "to this OCaml type:"
1806 msgstr ""
1807
1808 #. type: verbatim
1809 #: ../src/guestfs.pod:868
1810 #, no-wrap
1811 msgid ""
1812 " type path = Path of string | Device of int | Partition of int * int\n"
1813 "\n"
1814 msgstr ""
1815
1816 #. type: textblock
1817 #: ../src/guestfs.pod:870
1818 msgid "which would allow you to pass arguments like:"
1819 msgstr ""
1820
1821 #. type: verbatim
1822 #: ../src/guestfs.pod:872
1823 #, no-wrap
1824 msgid ""
1825 " Path \"/foo/bar\"\n"
1826 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1827 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1828 " Path \"/dev/sdb2\"    (* not a device *)\n"
1829 "\n"
1830 msgstr ""
1831
1832 #. type: textblock
1833 #: ../src/guestfs.pod:877
1834 msgid ""
1835 "As you can see there are still problems to resolve even with this "
1836 "representation.  Also consider how it might work in guestfish."
1837 msgstr ""
1838
1839 #. type: =head2
1840 #: ../src/guestfs.pod:882
1841 msgid "KEYS AND PASSPHRASES"
1842 msgstr ""
1843
1844 #. type: textblock
1845 #: ../src/guestfs.pod:884
1846 msgid ""
1847 "Certain libguestfs calls take a parameter that contains sensitive key "
1848 "material, passed in as a C string."
1849 msgstr ""
1850
1851 #. type: textblock
1852 #: ../src/guestfs.pod:887
1853 msgid ""
1854 "In the future we would hope to change the libguestfs implementation so that "
1855 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1856 "swap.  However this is I<not> done at the moment, because of the complexity "
1857 "of such an implementation."
1858 msgstr ""
1859
1860 #. type: textblock
1861 #: ../src/guestfs.pod:892
1862 msgid ""
1863 "Therefore you should be aware that any key parameter you pass to libguestfs "
1864 "might end up being written out to the swap partition.  If this is a concern,"
1865 " scrub the swap partition or don't use libguestfs on encrypted devices."
1866 msgstr ""
1867
1868 #. type: =head2
1869 #: ../src/guestfs.pod:897
1870 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1871 msgstr ""
1872
1873 #. type: textblock
1874 #: ../src/guestfs.pod:899
1875 msgid ""
1876 "All high-level libguestfs actions are synchronous.  If you want to use "
1877 "libguestfs asynchronously then you must create a thread."
1878 msgstr ""
1879
1880 #. type: textblock
1881 #: ../src/guestfs.pod:902
1882 msgid ""
1883 "Only use the handle from a single thread.  Either use the handle exclusively"
1884 " from one thread, or provide your own mutex so that two threads cannot issue"
1885 " calls on the same handle at the same time."
1886 msgstr ""
1887
1888 #. type: textblock
1889 #: ../src/guestfs.pod:906
1890 msgid ""
1891 "See the graphical program guestfs-browser for one possible architecture for "
1892 "multithreaded programs using libvirt and libguestfs."
1893 msgstr ""
1894
1895 #. type: =head2
1896 #: ../src/guestfs.pod:909
1897 msgid "PATH"
1898 msgstr ""
1899
1900 #. type: textblock
1901 #: ../src/guestfs.pod:911
1902 msgid ""
1903 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1904 "internal path."
1905 msgstr ""
1906
1907 #. type: textblock
1908 #: ../src/guestfs.pod:914
1909 msgid ""
1910 "By default it looks for these in the directory C<$libdir/guestfs> (eg. "
1911 "C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1912 msgstr ""
1913
1914 #. type: textblock
1915 #: ../src/guestfs.pod:917
1916 msgid ""
1917 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH>"
1918 " to change the directories that libguestfs will search in.  The value is a "
1919 "colon-separated list of paths.  The current directory is I<not> searched "
1920 "unless the path contains an empty element or C<.>.  For example "
1921 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1922 "then C</usr/lib/guestfs>."
1923 msgstr ""
1924
1925 #. type: =head2
1926 #: ../src/guestfs.pod:924
1927 msgid "QEMU WRAPPERS"
1928 msgstr ""
1929
1930 #. type: textblock
1931 #: ../src/guestfs.pod:926
1932 msgid ""
1933 "If you want to compile your own qemu, run qemu from a non-standard location,"
1934 " or pass extra arguments to qemu, then you can write a shell-script wrapper "
1935 "around qemu."
1936 msgstr ""
1937
1938 #. type: textblock
1939 #: ../src/guestfs.pod:930
1940 msgid ""
1941 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1942 "last command in the shell script (so that qemu replaces the shell and "
1943 "becomes the direct child of the libguestfs-using program).  If you don't do "
1944 "this, then the qemu process won't be cleaned up correctly."
1945 msgstr ""
1946
1947 #. type: textblock
1948 #: ../src/guestfs.pod:935
1949 msgid ""
1950 "Here is an example of a wrapper, where I have built my own copy of qemu from"
1951 " source:"
1952 msgstr ""
1953
1954 #. type: verbatim
1955 #: ../src/guestfs.pod:938
1956 #, no-wrap
1957 msgid ""
1958 " #!/bin/sh -\n"
1959 " qemudir=/home/rjones/d/qemu\n"
1960 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
1961 "\n"
1962 msgstr ""
1963
1964 #. type: textblock
1965 #: ../src/guestfs.pod:942
1966 msgid ""
1967 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1968 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1969 "example:"
1970 msgstr ""
1971
1972 #. type: verbatim
1973 #: ../src/guestfs.pod:946
1974 #, no-wrap
1975 msgid ""
1976 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1977 "\n"
1978 msgstr ""
1979
1980 #. type: textblock
1981 #: ../src/guestfs.pod:948
1982 msgid ""
1983 "Note that libguestfs also calls qemu with the -help and -version options in "
1984 "order to determine features."
1985 msgstr ""
1986
1987 #. type: =head2
1988 #: ../src/guestfs.pod:951
1989 msgid "ATTACHING TO RUNNING DAEMONS"
1990 msgstr ""
1991
1992 #. type: textblock
1993 #: ../src/guestfs.pod:953
1994 msgid ""
1995 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
1996 "babies.  Use with caution."
1997 msgstr ""
1998
1999 #. type: textblock
2000 #: ../src/guestfs.pod:956
2001 msgid ""
2002 "I<Note (2):> This section explains how to attach to a running daemon from a "
2003 "low level perspective.  For most users, simply using virt tools such as "
2004 "L<guestfish(1)> with the I<--live> option will \"just work\"."
2005 msgstr ""
2006
2007 #. type: =head3
2008 #: ../src/guestfs.pod:960
2009 msgid "Using guestfs_set_attach_method"
2010 msgstr ""
2011
2012 #. type: textblock
2013 #: ../src/guestfs.pod:962
2014 msgid ""
2015 "By calling L</guestfs_set_attach_method> you can change how the library "
2016 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read "
2017 "L</ARCHITECTURE> for some background)."
2018 msgstr ""
2019
2020 #. type: textblock
2021 #: ../src/guestfs.pod:966
2022 msgid ""
2023 "The normal attach method is C<appliance>, where a small appliance is created"
2024 " containing the daemon, and then the library connects to this."
2025 msgstr ""
2026
2027 #. type: textblock
2028 #: ../src/guestfs.pod:969
2029 msgid ""
2030 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2031 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2032 "daemon over the Unix domain socket."
2033 msgstr ""
2034
2035 #. type: textblock
2036 #: ../src/guestfs.pod:973
2037 msgid ""
2038 "The normal use for this is to connect to a running virtual machine that "
2039 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2040 "files inside the live virtual machine."
2041 msgstr ""
2042
2043 #. type: =head3
2044 #: ../src/guestfs.pod:977
2045 msgid "Using guestfs_add_domain with live flag"
2046 msgstr ""
2047
2048 #. type: textblock
2049 #: ../src/guestfs.pod:979
2050 msgid ""
2051 "L</guestfs_add_domain> provides some help for getting the correct attach "
2052 "method.  If you pass the C<live> option to this function, then (if the "
2053 "virtual machine is running) it will examine the libvirt XML looking for a "
2054 "virtio-serial channel to connect to:"
2055 msgstr ""
2056
2057 #. type: verbatim
2058 #: ../src/guestfs.pod:985
2059 #, no-wrap
2060 msgid ""
2061 " <domain>\n"
2062 "   ...\n"
2063 "   <devices>\n"
2064 "     ...\n"
2065 "     <channel type='unix'>\n"
2066 "       <source mode='bind' path='/path/to/socket'/>\n"
2067 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2068 "     </channel>\n"
2069 "     ...\n"
2070 "   </devices>\n"
2071 " </domain>\n"
2072 "\n"
2073 msgstr ""
2074
2075 #. type: textblock
2076 #: ../src/guestfs.pod:997
2077 msgid ""
2078 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2079 "method to C<unix:/path/to/socket>."
2080 msgstr ""
2081
2082 #. type: textblock
2083 #: ../src/guestfs.pod:1000
2084 msgid ""
2085 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2086 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2087 "to attach to and modify live virtual machines."
2088 msgstr ""
2089
2090 #. type: textblock
2091 #: ../src/guestfs.pod:1004
2092 msgid ""
2093 "The virtual machine needs to have been set up beforehand so that it has the "
2094 "virtio-serial channel and so that guestfsd is running inside it."
2095 msgstr ""
2096
2097 #. type: =head2
2098 #: ../src/guestfs.pod:1008
2099 msgid "ABI GUARANTEE"
2100 msgstr ""
2101
2102 #. type: textblock
2103 #: ../src/guestfs.pod:1010
2104 msgid ""
2105 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2106 "actions as outlined in this section.  Although we will deprecate some "
2107 "actions, for example if they get replaced by newer calls, we will keep the "
2108 "old actions forever.  This allows you the developer to program in confidence"
2109 " against the libguestfs API."
2110 msgstr ""
2111
2112 #. type: =head2
2113 #: ../src/guestfs.pod:1016
2114 msgid "BLOCK DEVICE NAMING"
2115 msgstr ""
2116
2117 #. type: textblock
2118 #: ../src/guestfs.pod:1018
2119 msgid ""
2120 "In the kernel there is now quite a profusion of schemata for naming block "
2121 "devices (in this context, by I<block device> I mean a physical or virtual "
2122 "hard drive).  The original Linux IDE driver used names starting with "
2123 "C</dev/hd*>.  SCSI devices have historically used a different naming scheme,"
2124 " C</dev/sd*>.  When the Linux kernel I<libata> driver became a popular "
2125 "replacement for the old IDE driver (particularly for SATA devices) those "
2126 "devices also used the C</dev/sd*> scheme.  Additionally we now have virtual "
2127 "machines with paravirtualized drivers.  This has created several different "
2128 "naming systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for "
2129 "Xen PV disks."
2130 msgstr ""
2131
2132 #. type: textblock
2133 #: ../src/guestfs.pod:1030
2134 msgid ""
2135 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2136 "Linux kernel to access block devices.  We can run a variety of appliances "
2137 "based on a variety of Linux kernels."
2138 msgstr ""
2139
2140 #. type: textblock
2141 #: ../src/guestfs.pod:1034
2142 msgid ""
2143 "This causes a problem for libguestfs because many API calls use device or "
2144 "partition names.  Working scripts and the recipe (example) scripts that we "
2145 "make available over the internet could fail if the naming scheme changes."
2146 msgstr ""
2147
2148 #. type: textblock
2149 #: ../src/guestfs.pod:1039
2150 msgid ""
2151 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2152 "Internally C</dev/sd*> names are translated, if necessary, to other names as"
2153 " required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any"
2154 " device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2155 msgstr ""
2156
2157 #. type: textblock
2158 #: ../src/guestfs.pod:1045
2159 msgid ""
2160 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>,"
2161 " L</guestfs_list_partitions> and similar calls return the true names of the "
2162 "devices and partitions as known to the appliance."
2163 msgstr ""
2164
2165 #. type: =head3
2166 #: ../src/guestfs.pod:1050
2167 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2168 msgstr ""
2169
2170 #. type: textblock
2171 #: ../src/guestfs.pod:1052
2172 msgid ""
2173 "Usually this translation is transparent.  However in some (very rare)  cases"
2174 " you may need to know the exact algorithm.  Such cases include where you use"
2175 " L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2176 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2177 msgstr ""
2178
2179 #. type: textblock
2180 #: ../src/guestfs.pod:1058
2181 msgid ""
2182 "The algorithm is applied only to I<parameters> which are known to be either "
2183 "device or partition names.  Return values from functions such as "
2184 "L</guestfs_list_devices> are never changed."
2185 msgstr ""
2186
2187 #. type: textblock
2188 #: ../src/guestfs.pod:1066
2189 msgid "Is the string a parameter which is a device or partition name?"
2190 msgstr ""
2191
2192 #. type: textblock
2193 #: ../src/guestfs.pod:1070
2194 msgid "Does the string begin with C</dev/sd>?"
2195 msgstr ""
2196
2197 #. type: textblock
2198 #: ../src/guestfs.pod:1074
2199 msgid ""
2200 "Does the named device exist? If so, we use that device.  However if I<not> "
2201 "then we continue with this algorithm."
2202 msgstr ""
2203
2204 #. type: textblock
2205 #: ../src/guestfs.pod:1079
2206 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2207 msgstr ""
2208
2209 #. type: textblock
2210 #: ../src/guestfs.pod:1081
2211 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2212 msgstr ""
2213
2214 #. type: textblock
2215 #: ../src/guestfs.pod:1083
2216 msgid "If that named device exists, use it.  If not, continue."
2217 msgstr ""
2218
2219 #. type: textblock
2220 #: ../src/guestfs.pod:1087
2221 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2222 msgstr ""
2223
2224 #. type: textblock
2225 #: ../src/guestfs.pod:1089
2226 msgid "If that named device exists, use it.  If not, return an error."
2227 msgstr ""
2228
2229 #. type: =head3
2230 #: ../src/guestfs.pod:1093
2231 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2232 msgstr ""
2233
2234 #. type: textblock
2235 #: ../src/guestfs.pod:1095
2236 msgid ""
2237 "Although the standard naming scheme and automatic translation is useful for "
2238 "simple programs and guestfish scripts, for larger programs it is best not to"
2239 " rely on this mechanism."
2240 msgstr ""
2241
2242 #. type: textblock
2243 #: ../src/guestfs.pod:1099
2244 msgid ""
2245 "Where possible for maximum future portability programs using libguestfs "
2246 "should use these future-proof techniques:"
2247 msgstr ""
2248
2249 #. type: textblock
2250 #: ../src/guestfs.pod:1106
2251 msgid ""
2252 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2253 "device names, and then use those names directly."
2254 msgstr ""
2255
2256 #. type: textblock
2257 #: ../src/guestfs.pod:1109
2258 msgid ""
2259 "Since those device names exist by definition, they will never be translated."
2260 msgstr ""
2261
2262 #. type: textblock
2263 #: ../src/guestfs.pod:1114
2264 msgid ""
2265 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2266 "filesystem labels."
2267 msgstr ""
2268
2269 #. type: =head1
2270 #: ../src/guestfs.pod:1119
2271 msgid "SECURITY"
2272 msgstr ""
2273
2274 #. type: textblock
2275 #: ../src/guestfs.pod:1121
2276 msgid ""
2277 "This section discusses security implications of using libguestfs, "
2278 "particularly with untrusted or malicious guests or disk images."
2279 msgstr ""
2280
2281 #. type: =head2
2282 #: ../src/guestfs.pod:1124
2283 msgid "GENERAL SECURITY CONSIDERATIONS"
2284 msgstr ""
2285
2286 #. type: textblock
2287 #: ../src/guestfs.pod:1126
2288 msgid ""
2289 "Be careful with any files or data that you download from a guest (by "
2290 "\"download\" we mean not just the L</guestfs_download> command but any "
2291 "command that reads files, filenames, directories or anything else from a "
2292 "disk image).  An attacker could manipulate the data to fool your program "
2293 "into doing the wrong thing.  Consider cases such as:"
2294 msgstr ""
2295
2296 #. type: textblock
2297 #: ../src/guestfs.pod:1136
2298 msgid "the data (file etc) not being present"
2299 msgstr ""
2300
2301 #. type: textblock
2302 #: ../src/guestfs.pod:1140
2303 msgid "being present but empty"
2304 msgstr ""
2305
2306 #. type: textblock
2307 #: ../src/guestfs.pod:1144
2308 msgid "being much larger than normal"
2309 msgstr ""
2310
2311 #. type: textblock
2312 #: ../src/guestfs.pod:1148
2313 msgid "containing arbitrary 8 bit data"
2314 msgstr ""
2315
2316 #. type: textblock
2317 #: ../src/guestfs.pod:1152
2318 msgid "being in an unexpected character encoding"
2319 msgstr ""
2320
2321 #. type: textblock
2322 #: ../src/guestfs.pod:1156
2323 msgid "containing homoglyphs."
2324 msgstr ""
2325
2326 #. type: =head2
2327 #: ../src/guestfs.pod:1160
2328 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2329 msgstr ""
2330
2331 #. type: textblock
2332 #: ../src/guestfs.pod:1162
2333 msgid ""
2334 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2335 "(VFS) module can sometimes be escalated into exploits by deliberately "
2336 "creating a malicious, malformed filesystem.  These exploits are very severe "
2337 "for two reasons.  Firstly there are very many filesystem drivers in the "
2338 "kernel, and many of them are infrequently used and not much developer "
2339 "attention has been paid to the code.  Linux userspace helps potential "
2340 "crackers by detecting the filesystem type and automatically choosing the "
2341 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2342 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2343 "exploit (worse in some ways), giving immediate and total access to the "
2344 "system right down to the hardware level."
2345 msgstr ""
2346
2347 #. type: textblock
2348 #: ../src/guestfs.pod:1175
2349 msgid ""
2350 "That explains why you should never mount a filesystem from an untrusted "
2351 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2352 "inside a qemu virtual machine, usually running as a non-root user.  The "
2353 "attacker would need to write a filesystem which first exploited the kernel, "
2354 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2355 "the libguestfs protocol, and finally to be as serious as the host kernel "
2356 "exploit it would need to escalate its privileges to root.  This multi-step "
2357 "escalation, performed by a static piece of data, is thought to be extremely "
2358 "hard to do, although we never say 'never' about security issues."
2359 msgstr ""
2360
2361 #. type: textblock
2362 #: ../src/guestfs.pod:1186
2363 msgid ""
2364 "In any case callers can reduce the attack surface by forcing the filesystem "
2365 "type when mounting (use L</guestfs_mount_vfs>)."
2366 msgstr ""
2367
2368 #. type: =head2
2369 #: ../src/guestfs.pod:1189
2370 msgid "PROTOCOL SECURITY"
2371 msgstr ""
2372
2373 #. type: textblock
2374 #: ../src/guestfs.pod:1191
2375 msgid ""
2376 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a"
2377 " defined upper message size.  However a program that uses libguestfs must "
2378 "also take care - for example you can write a program that downloads a binary"
2379 " from a disk image and executes it locally, and no amount of protocol "
2380 "security will save you from the consequences."
2381 msgstr ""
2382
2383 #. type: =head2
2384 #: ../src/guestfs.pod:1197
2385 msgid "INSPECTION SECURITY"
2386 msgstr ""
2387
2388 #. type: textblock
2389 #: ../src/guestfs.pod:1199
2390 msgid ""
2391 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2392 "directly from the guest, and these could contain any 8 bit data.  Callers "
2393 "should be careful to escape these before printing them to a structured file "
2394 "(for example, use HTML escaping if creating a web page)."
2395 msgstr ""
2396
2397 #. type: textblock
2398 #: ../src/guestfs.pod:1205
2399 msgid ""
2400 "Guest configuration may be altered in unusual ways by the administrator of "
2401 "the virtual machine, and may not reflect reality (particularly for untrusted"
2402 " or actively malicious guests).  For example we parse the hostname from "
2403 "configuration files like C</etc/sysconfig/network> that we find in the "
2404 "guest, but the guest administrator can easily manipulate these files to "
2405 "provide the wrong hostname."
2406 msgstr ""
2407
2408 #. type: textblock
2409 #: ../src/guestfs.pod:1213
2410 msgid ""
2411 "The inspection API parses guest configuration using two external libraries: "
2412 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2413 "designed to be robust in the face of malicious data, although denial of "
2414 "service attacks are still possible, for example with oversized configuration"
2415 " files."
2416 msgstr ""
2417
2418 #. type: =head2
2419 #: ../src/guestfs.pod:1219
2420 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2421 msgstr ""
2422
2423 #. type: textblock
2424 #: ../src/guestfs.pod:1221
2425 msgid ""
2426 "Be very cautious about running commands from the guest.  By running a "
2427 "command in the guest, you are giving CPU time to a binary that you do not "
2428 "control, under the same user account as the library, albeit wrapped in qemu "
2429 "virtualization.  More information and alternatives can be found in the "
2430 "section L</RUNNING COMMANDS>."
2431 msgstr ""
2432
2433 #. type: =head2
2434 #: ../src/guestfs.pod:1227
2435 msgid "CVE-2010-3851"
2436 msgstr ""
2437
2438 #. type: textblock
2439 #: ../src/guestfs.pod:1229
2440 msgid "https://bugzilla.redhat.com/642934"
2441 msgstr ""
2442
2443 #. type: textblock
2444 #: ../src/guestfs.pod:1231
2445 msgid ""
2446 "This security bug concerns the automatic disk format detection that qemu "
2447 "does on disk images."
2448 msgstr ""
2449
2450 #. type: textblock
2451 #: ../src/guestfs.pod:1234
2452 msgid ""
2453 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2454 "images like qcow2 contain a special header.  Qemu deals with this by looking"
2455 " for one of the known headers, and if none is found then assuming the disk "
2456 "image must be raw."
2457 msgstr ""
2458
2459 #. type: textblock
2460 #: ../src/guestfs.pod:1239
2461 msgid ""
2462 "This allows a guest which has been given a raw disk image to write some "
2463 "other header.  At next boot (or when the disk image is accessed by "
2464 "libguestfs) qemu would do autodetection and think the disk image format was,"
2465 " say, qcow2 based on the header written by the guest."
2466 msgstr ""
2467
2468 #. type: textblock
2469 #: ../src/guestfs.pod:1244
2470 msgid ""
2471 "This in itself would not be a problem, but qcow2 offers many features, one "
2472 "of which is to allow a disk image to refer to another image (called the "
2473 "\"backing disk\").  It does this by placing the path to the backing disk "
2474 "into the qcow2 header.  This path is not validated and could point to any "
2475 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2476 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2477 "control of the attacker."
2478 msgstr ""
2479
2480 #. type: textblock
2481 #: ../src/guestfs.pod:1252
2482 msgid ""
2483 "In libguestfs this is rather hard to exploit except under two circumstances:"
2484 msgstr ""
2485
2486 #. type: textblock
2487 #: ../src/guestfs.pod:1259
2488 msgid "You have enabled the network or have opened the disk in write mode."
2489 msgstr ""
2490
2491 #. type: textblock
2492 #: ../src/guestfs.pod:1263
2493 msgid ""
2494 "You are also running untrusted code from the guest (see L</RUNNING "
2495 "COMMANDS>)."
2496 msgstr ""
2497
2498 #. type: textblock
2499 #: ../src/guestfs.pod:1268
2500 msgid ""
2501 "The way to avoid this is to specify the expected disk format when adding "
2502 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2503 "should always do this if the disk is raw format, and it's a good idea for "
2504 "other cases too."
2505 msgstr ""
2506
2507 #. type: textblock
2508 #: ../src/guestfs.pod:1273
2509 msgid ""
2510 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2511 "format is fetched from libvirt and passed through."
2512 msgstr ""
2513
2514 #. type: textblock
2515 #: ../src/guestfs.pod:1276
2516 msgid ""
2517 "For libguestfs tools, use the I<--format> command line parameter as "
2518 "appropriate."
2519 msgstr ""
2520
2521 #. type: =head1
2522 #: ../src/guestfs.pod:1279
2523 msgid "CONNECTION MANAGEMENT"
2524 msgstr ""
2525
2526 #. type: =head2
2527 #: ../src/guestfs.pod:1281
2528 msgid "guestfs_h *"
2529 msgstr ""
2530
2531 #. type: textblock
2532 #: ../src/guestfs.pod:1283
2533 msgid ""
2534 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2535 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2536 "handle and release all resources used."
2537 msgstr ""
2538
2539 #. type: textblock
2540 #: ../src/guestfs.pod:1287
2541 msgid ""
2542 "For information on using multiple handles and threads, see the section "
2543 "L</MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2544 msgstr ""
2545
2546 #. type: =head2
2547 #: ../src/guestfs.pod:1290
2548 msgid "guestfs_create"
2549 msgstr ""
2550
2551 #. type: verbatim
2552 #: ../src/guestfs.pod:1292
2553 #, no-wrap
2554 msgid ""
2555 " guestfs_h *guestfs_create (void);\n"
2556 "\n"
2557 msgstr ""
2558
2559 #. type: textblock
2560 #: ../src/guestfs.pod:1294
2561 msgid "Create a connection handle."
2562 msgstr ""
2563
2564 #. type: textblock
2565 #: ../src/guestfs.pod:1296
2566 msgid ""
2567 "On success this returns a non-NULL pointer to a handle.  On error it returns"
2568 " NULL."
2569 msgstr ""
2570
2571 #. type: textblock
2572 #: ../src/guestfs.pod:1299
2573 msgid ""
2574 "You have to \"configure\" the handle after creating it.  This includes "
2575 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2576 "handle at least once."
2577 msgstr ""
2578
2579 #. type: textblock
2580 #: ../src/guestfs.pod:1303
2581 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2582 msgstr ""
2583
2584 #. type: textblock
2585 #: ../src/guestfs.pod:1305
2586 msgid ""
2587 "You may also want to configure error handling for the handle.  See the "
2588 "L</ERROR HANDLING> section below."
2589 msgstr ""
2590
2591 #. type: =head2
2592 #: ../src/guestfs.pod:1308
2593 msgid "guestfs_close"
2594 msgstr ""
2595
2596 #. type: verbatim
2597 #: ../src/guestfs.pod:1310
2598 #, no-wrap
2599 msgid ""
2600 " void guestfs_close (guestfs_h *g);\n"
2601 "\n"
2602 msgstr ""
2603
2604 #. type: textblock
2605 #: ../src/guestfs.pod:1312
2606 msgid "This closes the connection handle and frees up all resources used."
2607 msgstr ""
2608
2609 #. type: textblock
2610 #: ../src/guestfs.pod:1314
2611 msgid ""
2612 "If autosync was set on the handle and the handle was launched, then this "
2613 "implicitly calls various functions to unmount filesystems and sync the disk."
2614 "  See L</guestfs_set_autosync> for more details."
2615 msgstr ""
2616
2617 #. type: textblock
2618 #: ../src/guestfs.pod:1318
2619 msgid "If a close callback was set on the handle, then it is called."
2620 msgstr ""
2621
2622 #. type: =head1
2623 #: ../src/guestfs.pod:1320
2624 msgid "ERROR HANDLING"
2625 msgstr ""
2626
2627 #. type: textblock
2628 #: ../src/guestfs.pod:1322
2629 msgid ""
2630 "API functions can return errors.  For example, almost all functions that "
2631 "return C<int> will return C<-1> to indicate an error."
2632 msgstr ""
2633
2634 #. type: textblock
2635 #: ../src/guestfs.pod:1325
2636 msgid ""
2637 "Additional information is available for errors: an error message string and "
2638 "optionally an error number (errno) if the thing that failed was a system "
2639 "call."
2640 msgstr ""
2641
2642 #. type: textblock
2643 #: ../src/guestfs.pod:1329
2644 msgid ""
2645 "You can get at the additional information about the last error on the handle"
2646 " by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by "
2647 "setting up an error handler with L</guestfs_set_error_handler>."
2648 msgstr ""
2649
2650 #. type: textblock
2651 #: ../src/guestfs.pod:1334
2652 msgid ""
2653 "When the handle is created, a default error handler is installed which "
2654 "prints the error message string to C<stderr>.  For small short-running "
2655 "command line programs it is sufficient to do:"
2656 msgstr ""
2657
2658 #. type: verbatim
2659 #: ../src/guestfs.pod:1338
2660 #, no-wrap
2661 msgid ""
2662 " if (guestfs_launch (g) == -1)\n"
2663 "   exit (EXIT_FAILURE);\n"
2664 "\n"
2665 msgstr ""
2666
2667 #. type: textblock
2668 #: ../src/guestfs.pod:1341
2669 msgid ""
2670 "since the default error handler will ensure that an error message has been "
2671 "printed to C<stderr> before the program exits."
2672 msgstr ""
2673
2674 #. type: textblock
2675 #: ../src/guestfs.pod:1344
2676 msgid ""
2677 "For other programs the caller will almost certainly want to install an "
2678 "alternate error handler or do error handling in-line like this:"
2679 msgstr ""
2680
2681 #. type: verbatim
2682 #: ../src/guestfs.pod:1347
2683 #, no-wrap
2684 msgid ""
2685 " g = guestfs_create ();\n"
2686 " \n"
2687 msgstr ""
2688
2689 #. type: verbatim
2690 #: ../src/guestfs.pod:1349
2691 #, no-wrap
2692 msgid ""
2693 " /* This disables the default behaviour of printing errors\n"
2694 "    on stderr. */\n"
2695 " guestfs_set_error_handler (g, NULL, NULL);\n"
2696 " \n"
2697 msgstr ""
2698
2699 #. type: verbatim
2700 #: ../src/guestfs.pod:1353
2701 #, no-wrap
2702 msgid ""
2703 " if (guestfs_launch (g) == -1) {\n"
2704 "   /* Examine the error message and print it etc. */\n"
2705 "   char *msg = guestfs_last_error (g);\n"
2706 "   int errnum = guestfs_last_errno (g);\n"
2707 "   fprintf (stderr, \"%s\\n\", msg);\n"
2708 "   /* ... */\n"
2709 "  }\n"
2710 "\n"
2711 msgstr ""
2712
2713 #. type: textblock
2714 #: ../src/guestfs.pod:1361
2715 msgid ""
2716 "Out of memory errors are handled differently.  The default action is to call"
2717 " L<abort(3)>.  If this is undesirable, then you can set a handler using "
2718 "L</guestfs_set_out_of_memory_handler>."
2719 msgstr ""
2720
2721 #. type: textblock
2722 #: ../src/guestfs.pod:1365
2723 msgid ""
2724 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2725 "because there is no handle if this happens there is no way to get additional"
2726 " error information.  However L</guestfs_create> is supposed to be a "
2727 "lightweight operation which can only fail because of insufficient memory (it"
2728 " returns NULL in this case)."
2729 msgstr ""
2730
2731 #. type: =head2
2732 #: ../src/guestfs.pod:1371
2733 msgid "guestfs_last_error"
2734 msgstr ""
2735
2736 #. type: verbatim
2737 #: ../src/guestfs.pod:1373
2738 #, no-wrap
2739 msgid ""
2740 " const char *guestfs_last_error (guestfs_h *g);\n"
2741 "\n"
2742 msgstr ""
2743
2744 #. type: textblock
2745 #: ../src/guestfs.pod:1375
2746 msgid ""
2747 "This returns the last error message that happened on C<g>.  If there has not"
2748 " been an error since the handle was created, then this returns C<NULL>."
2749 msgstr ""
2750
2751 #. type: textblock
2752 #: ../src/guestfs.pod:1379
2753 msgid ""
2754 "The lifetime of the returned string is until the next error occurs, or "
2755 "L</guestfs_close> is called."
2756 msgstr ""
2757
2758 #. type: =head2
2759 #: ../src/guestfs.pod:1382
2760 msgid "guestfs_last_errno"
2761 msgstr ""
2762
2763 #. type: verbatim
2764 #: ../src/guestfs.pod:1384
2765 #, no-wrap
2766 msgid ""
2767 " int guestfs_last_errno (guestfs_h *g);\n"
2768 "\n"
2769 msgstr ""
2770
2771 #. type: textblock
2772 #: ../src/guestfs.pod:1386
2773 msgid "This returns the last error number (errno) that happened on C<g>."
2774 msgstr ""
2775
2776 #. type: textblock
2777 #: ../src/guestfs.pod:1388
2778 msgid "If successful, an errno integer not equal to zero is returned."
2779 msgstr ""
2780
2781 #. type: textblock
2782 #: ../src/guestfs.pod:1390
2783 msgid ""
2784 "If no error, this returns 0.  This call can return 0 in three situations:"
2785 msgstr ""
2786
2787 #. type: textblock
2788 #: ../src/guestfs.pod:1397
2789 msgid "There has not been any error on the handle."
2790 msgstr ""
2791
2792 #. type: textblock
2793 #: ../src/guestfs.pod:1401
2794 msgid ""
2795 "There has been an error but the errno was meaningless.  This corresponds to "
2796 "the case where the error did not come from a failed system call, but for "
2797 "some other reason."
2798 msgstr ""
2799
2800 #. type: textblock
2801 #: ../src/guestfs.pod:1407
2802 msgid ""
2803 "There was an error from a failed system call, but for some reason the errno "
2804 "was not captured and returned.  This usually indicates a bug in libguestfs."
2805 msgstr ""
2806
2807 #. type: textblock
2808 #: ../src/guestfs.pod:1413
2809 msgid ""
2810 "Libguestfs tries to convert the errno from inside the applicance into a "
2811 "corresponding errno for the caller (not entirely trivial: the appliance "
2812 "might be running a completely different operating system from the library "
2813 "and error numbers are not standardized across Un*xen).  If this could not be"
2814 " done, then the error is translated to C<EINVAL>.  In practice this should "
2815 "only happen in very rare circumstances."
2816 msgstr ""
2817
2818 #. type: =head2
2819 #: ../src/guestfs.pod:1421
2820 msgid "guestfs_set_error_handler"
2821 msgstr ""
2822
2823 #. type: verbatim
2824 #: ../src/guestfs.pod:1423
2825 #, no-wrap
2826 msgid ""
2827 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2828 "                                           void *opaque,\n"
2829 "                                           const char *msg);\n"
2830 " void guestfs_set_error_handler (guestfs_h *g,\n"
2831 "                                 guestfs_error_handler_cb cb,\n"
2832 "                                 void *opaque);\n"
2833 "\n"
2834 msgstr ""
2835
2836 #. type: textblock
2837 #: ../src/guestfs.pod:1430
2838 msgid ""
2839 "The callback C<cb> will be called if there is an error.  The parameters "
2840 "passed to the callback are an opaque data pointer and the error message "
2841 "string."
2842 msgstr ""
2843
2844 #. type: textblock
2845 #: ../src/guestfs.pod:1434
2846 msgid ""
2847 "C<errno> is not passed to the callback.  To get that the callback must call "
2848 "L</guestfs_last_errno>."
2849 msgstr ""
2850
2851 #. type: textblock
2852 #: ../src/guestfs.pod:1437
2853 msgid ""
2854 "Note that the message string C<msg> is freed as soon as the callback "
2855 "function returns, so if you want to stash it somewhere you must make your "
2856 "own copy."
2857 msgstr ""
2858
2859 #. type: textblock
2860 #: ../src/guestfs.pod:1441
2861 msgid "The default handler prints messages on C<stderr>."
2862 msgstr ""
2863
2864 #. type: textblock
2865 #: ../src/guestfs.pod:1443
2866 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2867 msgstr ""
2868
2869 #. type: =head2
2870 #: ../src/guestfs.pod:1445
2871 msgid "guestfs_get_error_handler"
2872 msgstr ""
2873
2874 #. type: verbatim
2875 #: ../src/guestfs.pod:1447
2876 #, no-wrap
2877 msgid ""
2878 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2879 "                                                     void **opaque_rtn);\n"
2880 "\n"
2881 msgstr ""
2882
2883 #. type: textblock
2884 #: ../src/guestfs.pod:1450
2885 msgid "Returns the current error handler callback."
2886 msgstr ""
2887
2888 #. type: =head2
2889 #: ../src/guestfs.pod:1452
2890 msgid "guestfs_set_out_of_memory_handler"
2891 msgstr ""
2892
2893 #. type: verbatim
2894 #: ../src/guestfs.pod:1454
2895 #, no-wrap
2896 msgid ""
2897 " typedef void (*guestfs_abort_cb) (void);\n"
2898 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2899 "                                        guestfs_abort_cb);\n"
2900 "\n"
2901 msgstr ""
2902
2903 #. type: textblock
2904 #: ../src/guestfs.pod:1458
2905 msgid ""
2906 "The callback C<cb> will be called if there is an out of memory situation.  "
2907 "I<Note this callback must not return>."
2908 msgstr ""
2909
2910 #. type: textblock
2911 #: ../src/guestfs.pod:1461
2912 msgid "The default is to call L<abort(3)>."
2913 msgstr ""
2914
2915 #. type: textblock
2916 #: ../src/guestfs.pod:1463
2917 msgid ""
2918 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2919 msgstr ""
2920
2921 #. type: =head2
2922 #: ../src/guestfs.pod:1466
2923 msgid "guestfs_get_out_of_memory_handler"
2924 msgstr ""
2925
2926 #. type: verbatim
2927 #: ../src/guestfs.pod:1468
2928 #, no-wrap
2929 msgid ""
2930 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2931 "\n"
2932 msgstr ""
2933
2934 #. type: textblock
2935 #: ../src/guestfs.pod:1470
2936 msgid "This returns the current out of memory handler."
2937 msgstr ""
2938
2939 #. type: =head1
2940 #: ../src/guestfs.pod:1472
2941 msgid "API CALLS"
2942 msgstr ""
2943
2944 #. type: textblock
2945 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1068
2946 msgid "@ACTIONS@"
2947 msgstr ""
2948
2949 #. type: =head1
2950 #: ../src/guestfs.pod:1476
2951 msgid "STRUCTURES"
2952 msgstr ""
2953
2954 #. type: textblock
2955 #: ../src/guestfs.pod:1478
2956 msgid "@STRUCTS@"
2957 msgstr ""
2958
2959 #. type: =head1
2960 #: ../src/guestfs.pod:1480
2961 msgid "AVAILABILITY"
2962 msgstr ""
2963
2964 #. type: =head2
2965 #: ../src/guestfs.pod:1482
2966 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2967 msgstr ""
2968
2969 #. type: textblock
2970 #: ../src/guestfs.pod:1484
2971 msgid ""
2972 "Using L</guestfs_available> you can test availability of the following "
2973 "groups of functions.  This test queries the appliance to see if the "
2974 "appliance you are currently using supports the functionality."
2975 msgstr ""
2976
2977 #. type: textblock
2978 #: ../src/guestfs.pod:1489
2979 msgid "@AVAILABILITY@"
2980 msgstr ""
2981
2982 #. type: =head2
2983 #: ../src/guestfs.pod:1491
2984 msgid "GUESTFISH supported COMMAND"
2985 msgstr ""
2986
2987 #. type: textblock
2988 #: ../src/guestfs.pod:1493
2989 msgid ""
2990 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
2991 "prints out the available groups and whether they are supported by this build"
2992 " of libguestfs.  Note however that you have to do C<run> first."
2993 msgstr ""
2994
2995 #. type: =head2
2996 #: ../src/guestfs.pod:1498
2997 msgid "SINGLE CALLS AT COMPILE TIME"
2998 msgstr ""
2999
3000 #. type: textblock
3001 #: ../src/guestfs.pod:1500
3002 msgid ""
3003 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
3004 "function, such as:"
3005 msgstr ""
3006
3007 #. type: verbatim
3008 #: ../src/guestfs.pod:1503
3009 #, no-wrap
3010 msgid ""
3011 " #define LIBGUESTFS_HAVE_DD 1\n"
3012 "\n"
3013 msgstr ""
3014
3015 #. type: textblock
3016 #: ../src/guestfs.pod:1505
3017 msgid "if L</guestfs_dd> is available."
3018 msgstr ""
3019
3020 #. type: textblock
3021 #: ../src/guestfs.pod:1507
3022 msgid ""
3023 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3024 "function is available at compile time, we recommended using build tools such"
3025 " as autoconf or cmake.  For example in autotools you could use:"
3026 msgstr ""
3027
3028 #. type: verbatim
3029 #: ../src/guestfs.pod:1512
3030 #, no-wrap
3031 msgid ""
3032 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3033 " AC_CHECK_FUNCS([guestfs_dd])\n"
3034 "\n"
3035 msgstr ""
3036
3037 #. type: textblock
3038 #: ../src/guestfs.pod:1515
3039 msgid ""
3040 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined"
3041 " in your program."
3042 msgstr ""
3043
3044 #. type: =head2
3045 #: ../src/guestfs.pod:1518
3046 msgid "SINGLE CALLS AT RUN TIME"
3047 msgstr ""
3048
3049 #. type: textblock
3050 #: ../src/guestfs.pod:1520
3051 msgid ""
3052 "Testing at compile time doesn't guarantee that a function really exists in "
3053 "the library.  The reason is that you might be dynamically linked against a "
3054 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3055 "This situation unfortunately results in a segmentation fault, which is a "
3056 "shortcoming of the C dynamic linking system itself."
3057 msgstr ""
3058
3059 #. type: textblock
3060 #: ../src/guestfs.pod:1527
3061 msgid ""
3062 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3063 "in this example program (note that you still need the compile time check as "
3064 "well):"
3065 msgstr ""
3066
3067 #. type: verbatim
3068 #: ../src/guestfs.pod:1531
3069 #, no-wrap
3070 msgid ""
3071 " #include <stdio.h>\n"
3072 " #include <stdlib.h>\n"
3073 " #include <unistd.h>\n"
3074 " #include <dlfcn.h>\n"
3075 " #include <guestfs.h>\n"
3076 " \n"
3077 msgstr ""
3078
3079 #. type: verbatim
3080 #: ../src/guestfs.pod:1537
3081 #, no-wrap
3082 msgid ""
3083 " main ()\n"
3084 " {\n"
3085 " #ifdef LIBGUESTFS_HAVE_DD\n"
3086 "   void *dl;\n"
3087 "   int has_function;\n"
3088 " \n"
3089 msgstr ""
3090
3091 #. type: verbatim
3092 #: ../src/guestfs.pod:1543
3093 #, no-wrap
3094 msgid ""
3095 "   /* Test if the function guestfs_dd is really available. */\n"
3096 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3097 "   if (!dl) {\n"
3098 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3099 "     exit (EXIT_FAILURE);\n"
3100 "   }\n"
3101 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3102 "   dlclose (dl);\n"
3103 " \n"
3104 msgstr ""
3105
3106 #. type: verbatim
3107 #: ../src/guestfs.pod:1552
3108 #, no-wrap
3109 msgid ""
3110 "   if (!has_function)\n"
3111 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3112 "   else {\n"
3113 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3114 "     /* Now it's safe to call\n"
3115 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3116 "     */\n"
3117 "   }\n"
3118 " #else\n"
3119 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3120 " #endif\n"
3121 "  }\n"
3122 "\n"
3123 msgstr ""
3124
3125 #. type: textblock
3126 #: ../src/guestfs.pod:1565
3127 msgid ""
3128 "You may think the above is an awful lot of hassle, and it is.  There are "
3129 "other ways outside of the C linking system to ensure that this kind of "
3130 "incompatibility never arises, such as using package versioning:"
3131 msgstr ""
3132
3133 #. type: verbatim
3134 #: ../src/guestfs.pod:1570
3135 #, no-wrap
3136 msgid ""
3137 " Requires: libguestfs >= 1.0.80\n"
3138 "\n"
3139 msgstr ""
3140
3141 #. type: =head1
3142 #: ../src/guestfs.pod:1572
3143 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3144 msgstr ""
3145
3146 #. type: textblock
3147 #: ../src/guestfs.pod:1574
3148 msgid ""
3149 "A recent feature of the API is the introduction of calls which take optional"
3150 " arguments.  In C these are declared 3 ways.  The main way is as a call "
3151 "which takes variable arguments (ie. C<...>), as in this example:"
3152 msgstr ""
3153
3154 #. type: verbatim
3155 #: ../src/guestfs.pod:1579
3156 #, no-wrap
3157 msgid ""
3158 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3159 "\n"
3160 msgstr ""
3161
3162 #. type: textblock
3163 #: ../src/guestfs.pod:1581
3164 msgid ""
3165 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3166 "call with no optional arguments specified:"
3167 msgstr ""
3168
3169 #. type: verbatim
3170 #: ../src/guestfs.pod:1584
3171 #, no-wrap
3172 msgid ""
3173 " guestfs_add_drive_opts (g, filename, -1);\n"
3174 "\n"
3175 msgstr ""
3176
3177 #. type: textblock
3178 #: ../src/guestfs.pod:1586
3179 msgid "With a single optional argument:"
3180 msgstr ""
3181
3182 #. type: verbatim
3183 #: ../src/guestfs.pod:1588
3184 #, no-wrap
3185 msgid ""
3186 " guestfs_add_drive_opts (g, filename,\n"
3187 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3188 "                         -1);\n"
3189 "\n"
3190 msgstr ""
3191
3192 #. type: textblock
3193 #: ../src/guestfs.pod:1592
3194 msgid "With two:"
3195 msgstr ""
3196
3197 #. type: verbatim
3198 #: ../src/guestfs.pod:1594
3199 #, no-wrap
3200 msgid ""
3201 " guestfs_add_drive_opts (g, filename,\n"
3202 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3203 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3204 "                         -1);\n"
3205 "\n"
3206 msgstr ""
3207
3208 #. type: textblock
3209 #: ../src/guestfs.pod:1599
3210 msgid ""
3211 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3212 "happen!"
3213 msgstr ""
3214
3215 #. type: =head2
3216 #: ../src/guestfs.pod:1602
3217 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3218 msgstr ""
3219
3220 #. type: textblock
3221 #: ../src/guestfs.pod:1604
3222 msgid ""
3223 "The second variant has the same name with the suffix C<_va>, which works the"
3224 " same way but takes a C<va_list>.  See the C manual for details.  For the "
3225 "example function, this is declared:"
3226 msgstr ""
3227
3228 #. type: verbatim
3229 #: ../src/guestfs.pod:1608
3230 #, no-wrap
3231 msgid ""
3232 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3233 "                                va_list args);\n"
3234 "\n"
3235 msgstr ""
3236
3237 #. type: =head2
3238 #: ../src/guestfs.pod:1611
3239 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3240 msgstr ""
3241
3242 #. type: textblock
3243 #: ../src/guestfs.pod:1613
3244 msgid ""
3245 "The third variant is useful where you need to construct these calls.  You "
3246 "pass in a structure where you fill in the optional fields.  The structure "
3247 "has a bitmask as the first element which you must set to indicate which "
3248 "fields you have filled in.  For our example function the structure and call "
3249 "are declared:"
3250 msgstr ""
3251
3252 #. type: verbatim
3253 #: ../src/guestfs.pod:1619
3254 #, no-wrap
3255 msgid ""
3256 " struct guestfs_add_drive_opts_argv {\n"
3257 "   uint64_t bitmask;\n"
3258 "   int readonly;\n"
3259 "   const char *format;\n"
3260 "   /* ... */\n"
3261 " };\n"
3262 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3263 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3264 "\n"
3265 msgstr ""
3266
3267 #. type: textblock
3268 #: ../src/guestfs.pod:1628
3269 msgid "You could call it like this:"
3270 msgstr ""
3271
3272 #. type: verbatim
3273 #: ../src/guestfs.pod:1630
3274 #, no-wrap
3275 msgid ""
3276 " struct guestfs_add_drive_opts_argv optargs = {\n"
3277 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3278 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3279 "   .readonly = 1,\n"
3280 "   .format = \"qcow2\"\n"
3281 " };\n"
3282 " \n"
3283 msgstr ""
3284
3285 #. type: verbatim
3286 #: ../src/guestfs.pod:1637
3287 #, no-wrap
3288 msgid ""
3289 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3290 "\n"
3291 msgstr ""
3292
3293 #. type: textblock
3294 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
3295 #: ../src/guestfs-actions.pod:1917 ../src/guestfs-actions.pod:2853
3296 #: ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1287
3297 #: ../fish/guestfish-actions.pod:1929 ../tools/virt-win-reg.pl:704
3298 msgid "Notes:"
3299 msgstr ""
3300
3301 #. type: textblock
3302 #: ../src/guestfs.pod:1645
3303 msgid ""
3304 "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3305 msgstr ""
3306
3307 #. type: textblock
3308 #: ../src/guestfs.pod:1650
3309 msgid "You do not need to fill in all fields of the structure."
3310 msgstr ""
3311
3312 #. type: textblock
3313 #: ../src/guestfs.pod:1654
3314 msgid ""
3315 "There must be a one-to-one correspondence between fields of the structure "
3316 "that are filled in, and bits set in the bitmask."
3317 msgstr ""
3318
3319 #. type: =head2
3320 #: ../src/guestfs.pod:1659
3321 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3322 msgstr ""
3323
3324 #. type: textblock
3325 #: ../src/guestfs.pod:1661
3326 msgid ""
3327 "In other languages, optional arguments are expressed in the way that is "
3328 "natural for that language.  We refer you to the language-specific "
3329 "documentation for more details on that."
3330 msgstr ""
3331
3332 #. type: textblock
3333 #: ../src/guestfs.pod:1665
3334 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3335 msgstr ""
3336
3337 #. type: =head2
3338 #: ../src/guestfs.pod:1667
3339 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3340 msgstr ""
3341
3342 #. type: textblock
3343 #: ../src/guestfs.pod:1669
3344 msgid ""
3345 "B<Note:> This section documents the generic event mechanism introduced in "
3346 "libguestfs 1.10, which you should use in new code if possible.  The old "
3347 "functions C<guestfs_set_log_message_callback>, "
3348 "C<guestfs_set_subprocess_quit_callback>, "
3349 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3350 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3351 "page.  Because of the ABI guarantee, the old functions continue to work."
3352 msgstr ""
3353
3354 #. type: textblock
3355 #: ../src/guestfs.pod:1678
3356 msgid ""
3357 "Handles generate events when certain things happen, such as log messages "
3358 "being generated, progress messages during long-running operations, or the "
3359 "handle being closed.  The API calls described below let you register a "
3360 "callback to be called when events happen.  You can register multiple "
3361 "callbacks (for the same, different or overlapping sets of events), and "
3362 "individually remove callbacks.  If callbacks are not removed, then they "
3363 "remain in force until the handle is closed."
3364 msgstr ""
3365
3366 #. type: textblock
3367 #: ../src/guestfs.pod:1686
3368 msgid ""
3369 "In the current implementation, events are only generated synchronously: that"
3370 " means that events (and hence callbacks) can only happen while you are in "
3371 "the middle of making another libguestfs call.  The callback is called in the"
3372 " same thread."
3373 msgstr ""
3374
3375 #. type: textblock
3376 #: ../src/guestfs.pod:1691
3377 msgid ""
3378 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3379 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3380 msgstr ""
3381
3382 #. type: =head3
3383 #: ../src/guestfs.pod:1695
3384 msgid "CLASSES OF EVENTS"
3385 msgstr ""
3386
3387 #. type: =item
3388 #: ../src/guestfs.pod:1699
3389 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3390 msgstr ""
3391
3392 #. type: textblock
3393 #: ../src/guestfs.pod:1702
3394 msgid ""
3395 "The callback function will be called while the handle is being closed "
3396 "(synchronously from L</guestfs_close>)."
3397 msgstr ""
3398
3399 #. type: textblock
3400 #: ../src/guestfs.pod:1705
3401 msgid ""
3402 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3403 "handles that are open when the program exits.  This means that this callback"
3404 " might be called indirectly from L<exit(3)>, which can cause unexpected "
3405 "problems in higher-level languages (eg. if your HLL interpreter has already "
3406 "been cleaned up by the time this is called, and if your callback then jumps "
3407 "into some HLL function)."
3408 msgstr ""
3409
3410 #. type: textblock
3411 #: ../src/guestfs.pod:1712
3412 msgid ""
3413 "If no callback is registered: the handle is closed without any callback "
3414 "being invoked."
3415 msgstr ""
3416
3417 #. type: =item
3418 #: ../src/guestfs.pod:1715
3419 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3420 msgstr ""
3421
3422 #. type: textblock
3423 #: ../src/guestfs.pod:1718
3424 msgid ""
3425 "The callback function will be called when the child process quits, either "
3426 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3427 "corresponds to a transition from any state to the CONFIG state)."
3428 msgstr ""
3429
3430 #. type: textblock
3431 #: ../src/guestfs.pod:1722 ../src/guestfs.pod:1731
3432 msgid "If no callback is registered: the event is ignored."
3433 msgstr ""
3434
3435 #. type: =item
3436 #: ../src/guestfs.pod:1724
3437 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3438 msgstr ""
3439
3440 #. type: textblock
3441 #: ../src/guestfs.pod:1727
3442 msgid ""
3443 "The callback function will be called when the child process becomes ready "
3444 "first time after it has been launched.  (This corresponds to a transition "
3445 "from LAUNCHING to the READY state)."
3446 msgstr ""
3447
3448 #. type: =item
3449 #: ../src/guestfs.pod:1733
3450 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3451 msgstr ""
3452
3453 #. type: textblock
3454 #: ../src/guestfs.pod:1736
3455 msgid ""
3456 "Some long-running operations can generate progress messages.  If this "
3457 "callback is registered, then it will be called each time a progress message "
3458 "is generated (usually two seconds after the operation started, and three "
3459 "times per second thereafter until it completes, although the frequency may "
3460 "change in future versions)."
3461 msgstr ""
3462
3463 #. type: textblock
3464 #: ../src/guestfs.pod:1742
3465 msgid ""
3466 "The callback receives in the payload four unsigned 64 bit numbers which are "
3467 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3468 msgstr ""
3469
3470 #. type: textblock
3471 #: ../src/guestfs.pod:1745
3472 msgid ""
3473 "The units of C<total> are not defined, although for some operations C<total>"
3474 " may relate in some way to the amount of data to be transferred (eg. in "
3475 "bytes or megabytes), and C<position> may be the portion which has been "
3476 "transferred."
3477 msgstr ""
3478
3479 #. type: textblock
3480 #: ../src/guestfs.pod:1750
3481 msgid "The only defined and stable parts of the API are:"
3482 msgstr ""
3483
3484 #. type: textblock
3485 #: ../src/guestfs.pod:1756
3486 msgid ""
3487 "The callback can display to the user some type of progress bar or indicator "
3488 "which shows the ratio of C<position>:C<total>."
3489 msgstr ""
3490
3491 #. type: textblock
3492 #: ../src/guestfs.pod:1761
3493 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3494 msgstr ""
3495
3496 #. type: textblock
3497 #: ../src/guestfs.pod:1765
3498 msgid ""
3499 "If any progress notification is sent during a call, then a final progress "
3500 "notification is always sent when C<position> = C<total> (I<unless> the call "
3501 "fails with an error)."
3502 msgstr ""
3503
3504 #. type: textblock
3505 #: ../src/guestfs.pod:1769
3506 msgid ""
3507 "This is to simplify caller code, so callers can easily set the progress "
3508 "indicator to \"100%\" at the end of the operation, without requiring special"
3509 " code to detect this case."
3510 msgstr ""
3511
3512 #. type: textblock
3513 #: ../src/guestfs.pod:1775
3514 msgid ""
3515 "For some calls we are unable to estimate the progress of the call, but we "
3516 "can still generate progress messages to indicate activity.  This is known as"
3517 " \"pulse mode\", and is directly supported by certain progress bar "
3518 "implementations (eg. GtkProgressBar)."
3519 msgstr ""
3520
3521 #. type: textblock
3522 #: ../src/guestfs.pod:1780
3523 msgid ""
3524 "For these calls, zero or more progress messages are generated with "
3525 "C<position = 0> and C<total = 1>, followed by a final message with "
3526 "C<position = total = 1>."
3527 msgstr ""
3528
3529 #. type: textblock
3530 #: ../src/guestfs.pod:1784
3531 msgid ""
3532 "As noted above, if the call fails with an error then the final message may "
3533 "not be generated."
3534 msgstr ""
3535
3536 #. type: textblock
3537 #: ../src/guestfs.pod:1789
3538 msgid ""
3539 "The callback also receives the procedure number (C<proc_nr>) and serial "
3540 "number (C<serial>) of the call.  These are only useful for debugging "
3541 "protocol issues, and the callback can normally ignore them.  The callback "
3542 "may want to print these numbers in error messages or debugging messages."
3543 msgstr ""
3544
3545 #. type: textblock
3546 #: ../src/guestfs.pod:1795
3547 msgid "If no callback is registered: progress messages are discarded."
3548 msgstr ""
3549
3550 #. type: =item
3551 #: ../src/guestfs.pod:1797
3552 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3553 msgstr ""
3554
3555 #. type: textblock
3556 #: ../src/guestfs.pod:1800
3557 msgid ""
3558 "The callback function is called whenever a log message is generated by qemu,"
3559 " the appliance kernel, guestfsd (daemon), or utility programs."
3560 msgstr ""
3561
3562 #. type: textblock
3563 #: ../src/guestfs.pod:1803
3564 msgid ""
3565 "If the verbose flag (L</guestfs_set_verbose>) is set before launch "
3566 "(L</guestfs_launch>) then additional debug messages are generated."
3567 msgstr ""
3568
3569 #. type: textblock
3570 #: ../src/guestfs.pod:1806 ../src/guestfs.pod:1820
3571 msgid ""
3572 "If no callback is registered: the messages are discarded unless the verbose "
3573 "flag is set in which case they are sent to stderr.  You can override the "
3574 "printing of verbose messages to stderr by setting up a callback."
3575 msgstr ""
3576
3577 #. type: =item
3578 #: ../src/guestfs.pod:1811
3579 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3580 msgstr ""
3581
3582 #. type: textblock
3583 #: ../src/guestfs.pod:1814
3584 msgid ""
3585 "The callback function is called whenever a log message is generated by the "
3586 "library part of libguestfs."
3587 msgstr ""
3588
3589 #. type: textblock
3590 #: ../src/guestfs.pod:1817
3591 msgid ""
3592 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3593 "messages are generated."
3594 msgstr ""
3595
3596 #. type: =item
3597 #: ../src/guestfs.pod:1825
3598 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3599 msgstr ""
3600
3601 #. type: textblock
3602 #: ../src/guestfs.pod:1828
3603 msgid ""
3604 "The callback function is called whenever a trace message is generated.  This"
3605 " only applies if the trace flag (L</guestfs_set_trace>) is set."
3606 msgstr ""
3607
3608 #. type: textblock
3609 #: ../src/guestfs.pod:1831
3610 msgid ""
3611 "If no callback is registered: the messages are sent to stderr.  You can "
3612 "override the printing of trace messages to stderr by setting up a callback."
3613 msgstr ""
3614
3615 #. type: =head3
3616 #: ../src/guestfs.pod:1837
3617 msgid "guestfs_set_event_callback"
3618 msgstr ""
3619
3620 #. type: verbatim
3621 #: ../src/guestfs.pod:1839
3622 #, no-wrap
3623 msgid ""
3624 " int guestfs_set_event_callback (guestfs_h *g,\n"
3625 "                                 guestfs_event_callback cb,\n"
3626 "                                 uint64_t event_bitmask,\n"
3627 "                                 int flags,\n"
3628 "                                 void *opaque);\n"
3629 "\n"
3630 msgstr ""
3631
3632 #. type: textblock
3633 #: ../src/guestfs.pod:1845
3634 msgid ""
3635 "This function registers a callback (C<cb>) for all event classes in the "
3636 "C<event_bitmask>."
3637 msgstr ""
3638
3639 #. type: textblock
3640 #: ../src/guestfs.pod:1848
3641 msgid ""
3642 "For example, to register for all log message events, you could call this "
3643 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>."
3644 "  To register a single callback for all possible classes of events, use "
3645 "C<GUESTFS_EVENT_ALL>."
3646 msgstr ""
3647
3648 #. type: textblock
3649 #: ../src/guestfs.pod:1854
3650 msgid "C<flags> should always be passed as 0."
3651 msgstr ""
3652
3653 #. type: textblock
3654 #: ../src/guestfs.pod:1856
3655 msgid ""
3656 "C<opaque> is an opaque pointer which is passed to the callback.  You can use"
3657 " it for any purpose."
3658 msgstr ""
3659
3660 #. type: textblock
3661 #: ../src/guestfs.pod:1859
3662 msgid ""
3663 "The return value is the event handle (an integer) which you can use to "
3664 "delete the callback (see below)."
3665 msgstr ""
3666
3667 #. type: textblock
3668 #: ../src/guestfs.pod:1862
3669 msgid ""
3670 "If there is an error, this function returns C<-1>, and sets the error in the"
3671 " handle in the usual way (see L</guestfs_last_error> etc.)"
3672 msgstr ""
3673
3674 #. type: textblock
3675 #: ../src/guestfs.pod:1865
3676 msgid ""
3677 "Callbacks remain in effect until they are deleted, or until the handle is "
3678 "closed."
3679 msgstr ""
3680
3681 #. type: textblock
3682 #: ../src/guestfs.pod:1868
3683 msgid ""
3684 "In the case where multiple callbacks are registered for a particular event "
3685 "class, all of the callbacks are called.  The order in which multiple "
3686 "callbacks are called is not defined."
3687 msgstr ""
3688
3689 #. type: =head3
3690 #: ../src/guestfs.pod:1872
3691 msgid "guestfs_delete_event_callback"
3692 msgstr ""
3693
3694 #. type: verbatim
3695 #: ../src/guestfs.pod:1874
3696 #, no-wrap
3697 msgid ""
3698 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3699 "\n"
3700 msgstr ""
3701
3702 #. type: textblock
3703 #: ../src/guestfs.pod:1876
3704 msgid ""
3705 "Delete a callback that was previously registered.  C<event_handle> should be"
3706 " the integer that was returned by a previous call to "
3707 "C<guestfs_set_event_callback> on the same handle."
3708 msgstr ""
3709
3710 #. type: =head3
3711 #: ../src/guestfs.pod:1880
3712 msgid "guestfs_event_callback"
3713 msgstr ""
3714
3715 #. type: verbatim
3716 #: ../src/guestfs.pod:1882
3717 #, no-wrap
3718 msgid ""
3719 " typedef void (*guestfs_event_callback) (\n"
3720 "                  guestfs_h *g,\n"
3721 "                  void *opaque,\n"
3722 "                  uint64_t event,\n"
3723 "                  int event_handle,\n"
3724 "                  int flags,\n"
3725 "                  const char *buf, size_t buf_len,\n"
3726 "                  const uint64_t *array, size_t array_len);\n"
3727 "\n"
3728 msgstr ""
3729
3730 #. type: textblock
3731 #: ../src/guestfs.pod:1891
3732 msgid ""
3733 "This is the type of the event callback function that you have to provide."
3734 msgstr ""
3735
3736 #. type: textblock
3737 #: ../src/guestfs.pod:1894
3738 msgid ""
3739 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3740 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3741 "handle, and C<flags> which in the current API you should ignore."
3742 msgstr ""
3743
3744 #. type: textblock
3745 #: ../src/guestfs.pod:1898
3746 msgid ""
3747 "The remaining parameters contain the event payload (if any).  Each event may"
3748 " contain a payload, which usually relates to the event class, but for future"
3749 " proofing your code should be written to handle any payload for any event "
3750 "class."
3751 msgstr ""
3752
3753 #. type: textblock
3754 #: ../src/guestfs.pod:1903
3755 msgid ""
3756 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3757 "there is no message buffer).  Note that this message buffer can contain "
3758 "arbitrary 8 bit data, including NUL bytes."
3759 msgstr ""
3760
3761 #. type: textblock
3762 #: ../src/guestfs.pod:1907
3763 msgid ""
3764 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3765 "moment this is only used for progress messages."
3766 msgstr ""
3767
3768 #. type: =head3
3769 #: ../src/guestfs.pod:1910
3770 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3771 msgstr ""
3772
3773 #. type: textblock
3774 #: ../src/guestfs.pod:1912
3775 msgid ""
3776 "One motivation for the generic event API was to allow GUI programs to "
3777 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3778 "unconditionally to C<stderr>."
3779 msgstr ""
3780
3781 #. type: textblock
3782 #: ../src/guestfs.pod:1916
3783 msgid ""
3784 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3785 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3786 "messages are not events; you must capture error messages separately)."
3787 msgstr ""
3788
3789 #. type: textblock
3790 #: ../src/guestfs.pod:1921
3791 msgid ""
3792 "Programs have to set up a callback to capture the classes of events of "
3793 "interest:"
3794 msgstr ""
3795
3796 #. type: verbatim
3797 #: ../src/guestfs.pod:1924
3798 #, no-wrap
3799 msgid ""
3800 " int eh =\n"
3801 "   guestfs_set_event_callback\n"
3802 "     (g, message_callback,\n"
3803 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3804 "      GUESTFS_EVENT_TRACE,\n"
3805 "      0, NULL) == -1)\n"
3806 " if (eh == -1) {\n"
3807 "   // handle error in the usual way\n"
3808 " }\n"
3809 "\n"
3810 msgstr ""
3811
3812 #. type: textblock
3813 #: ../src/guestfs.pod:1934
3814 msgid ""
3815 "The callback can then direct messages to the appropriate place.  In this "
3816 "example, messages are directed to syslog:"
3817 msgstr ""
3818
3819 #. type: verbatim
3820 #: ../src/guestfs.pod:1937
3821 #, no-wrap
3822 msgid ""
3823 " static void\n"
3824 " message_callback (\n"
3825 "         guestfs_h *g,\n"
3826 "         void *opaque,\n"
3827 "         uint64_t event,\n"
3828 "         int event_handle,\n"
3829 "         int flags,\n"
3830 "         const char *buf, size_t buf_len,\n"
3831 "         const uint64_t *array, size_t array_len)\n"
3832 " {\n"
3833 "   const int priority = LOG_USER|LOG_INFO;\n"
3834 "   if (buf_len > 0)\n"
3835 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3836 " }\n"
3837 "\n"
3838 msgstr ""
3839
3840 #. type: =head1
3841 #: ../src/guestfs.pod:1952
3842 msgid "CANCELLING LONG TRANSFERS"
3843 msgstr ""
3844
3845 #. type: textblock
3846 #: ../src/guestfs.pod:1954
3847 msgid ""
3848 "Some operations can be cancelled by the caller while they are in progress.  "
3849 "Currently only operations that involve uploading or downloading data can be "
3850 "cancelled (technically: operations that have C<FileIn> or C<FileOut> "
3851 "parameters in the generator)."
3852 msgstr ""
3853
3854 #. type: =head2
3855 #: ../src/guestfs.pod:1959
3856 msgid "guestfs_user_cancel"
3857 msgstr ""
3858
3859 #. type: verbatim
3860 #: ../src/guestfs.pod:1961
3861 #, no-wrap
3862 msgid ""
3863 " void guestfs_user_cancel (guestfs_h *g);\n"
3864 "\n"
3865 msgstr ""
3866
3867 #. type: textblock
3868 #: ../src/guestfs.pod:1963
3869 msgid ""
3870 "C<guestfs_user_cancel> cancels the current upload or download operation."
3871 msgstr ""
3872
3873 #. type: textblock
3874 #: ../src/guestfs.pod:1966
3875 msgid ""
3876 "Unlike most other libguestfs calls, this function is signal safe and thread "
3877 "safe.  You can call it from a signal handler or from another thread, without"
3878 " needing to do any locking."
3879 msgstr ""
3880
3881 #. type: textblock
3882 #: ../src/guestfs.pod:1970
3883 msgid ""
3884 "The transfer that was in progress (if there is one) will stop shortly "
3885 "afterwards, and will return an error.  The errno (see "
3886 "L</guestfs_last_errno>) is set to C<EINTR>, so you can test for this to find"
3887 " out if the operation was cancelled or failed because of another error."
3888 msgstr ""
3889
3890 #. type: textblock
3891 #: ../src/guestfs.pod:1976
3892 msgid ""
3893 "No cleanup is performed: for example, if a file was being uploaded then "
3894 "after cancellation there may be a partially uploaded file.  It is the "
3895 "caller's responsibility to clean up if necessary."
3896 msgstr ""
3897
3898 #. type: textblock
3899 #: ../src/guestfs.pod:1980
3900 msgid ""
3901 "There are two common places that you might call C<guestfs_user_cancel>."
3902 msgstr ""
3903
3904 #. type: textblock
3905 #: ../src/guestfs.pod:1982
3906 msgid ""
3907 "In an interactive text-based program, you might call it from a C<SIGINT> "
3908 "signal handler so that pressing C<^C> cancels the current operation.  (You "
3909 "also need to call L</guestfs_set_pgroup> so that child processes don't "
3910 "receive the C<^C> signal)."
3911 msgstr ""
3912
3913 #. type: textblock
3914 #: ../src/guestfs.pod:1987
3915 msgid ""
3916 "In a graphical program, when the main thread is displaying a progress bar "
3917 "with a cancel button, wire up the cancel button to call this function."
3918 msgstr ""
3919
3920 #. type: =head1
3921 #: ../src/guestfs.pod:1991
3922 msgid "PRIVATE DATA AREA"
3923 msgstr ""
3924
3925 #. type: textblock
3926 #: ../src/guestfs.pod:1993
3927 msgid ""
3928 "You can attach named pieces of private data to the libguestfs handle, fetch "
3929 "them by name, and walk over them, for the lifetime of the handle.  This is "
3930 "called the private data area and is only available from the C API."
3931 msgstr ""
3932
3933 #. type: textblock
3934 #: ../src/guestfs.pod:1998
3935 msgid "To attach a named piece of data, use the following call:"
3936 msgstr ""
3937
3938 #. type: verbatim
3939 #: ../src/guestfs.pod:2000
3940 #, no-wrap
3941 msgid ""
3942 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3943 "\n"
3944 msgstr ""
3945
3946 #. type: textblock
3947 #: ../src/guestfs.pod:2002
3948 msgid ""
3949 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3950 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3951 "overwritten."
3952 msgstr ""
3953
3954 #. type: textblock
3955 #: ../src/guestfs.pod:2006
3956 msgid ""
3957 "You can use any C<key> you want, but your key should I<not> start with an "
3958 "underscore character.  Keys beginning with an underscore character are "
3959 "reserved for internal libguestfs purposes (eg. for implementing language "
3960 "bindings).  It is recommended that you prefix the key with some unique "
3961 "string to avoid collisions with other users."
3962 msgstr ""
3963
3964 #. type: textblock
3965 #: ../src/guestfs.pod:2012
3966 msgid "To retrieve the pointer, use:"
3967 msgstr ""
3968
3969 #. type: verbatim
3970 #: ../src/guestfs.pod:2014
3971 #, no-wrap
3972 msgid ""
3973 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3974 "\n"
3975 msgstr ""
3976
3977 #. type: textblock
3978 #: ../src/guestfs.pod:2016
3979 msgid ""
3980 "This function returns C<NULL> if either no data is found associated with "
3981 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3982 "C<NULL>."
3983 msgstr ""
3984
3985 #. type: textblock
3986 #: ../src/guestfs.pod:2020
3987 msgid ""
3988 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3989 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3990 "all.  In particular, libguestfs does I<not> try to free the data when the "
3991 "handle is closed.  If the data must be freed, then the caller must either "
3992 "free it before calling L</guestfs_close> or must set up a close callback to "
3993 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3994 msgstr ""
3995
3996 #. type: textblock
3997 #: ../src/guestfs.pod:2027
3998 msgid "To walk over all entries, use these two functions:"
3999 msgstr ""
4000
4001 #. type: verbatim
4002 #: ../src/guestfs.pod:2029
4003 #, no-wrap
4004 msgid ""
4005 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
4006 "\n"
4007 msgstr ""
4008
4009 #. type: verbatim
4010 #: ../src/guestfs.pod:2031
4011 #, no-wrap
4012 msgid ""
4013 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
4014 "\n"
4015 msgstr ""
4016
4017 #. type: textblock
4018 #: ../src/guestfs.pod:2033
4019 msgid ""
4020 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does"
4021 " not have any particular meaning -- keys are not returned in any defined "
4022 "order).  A pointer to the key is returned in C<*key_rtn> and the "
4023 "corresponding data pointer is returned from the function.  C<NULL> is "
4024 "returned if there are no keys stored in the handle."
4025 msgstr ""
4026
4027 #. type: textblock
4028 #: ../src/guestfs.pod:2039
4029 msgid ""
4030 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
4031 "value of this function is also C<NULL> is there are no further entries to "
4032 "return."
4033 msgstr ""
4034
4035 #. type: textblock
4036 #: ../src/guestfs.pod:2043
4037 msgid "Notes about walking over entries:"
4038 msgstr ""
4039
4040 #. type: textblock
4041 #: ../src/guestfs.pod:2049
4042 msgid ""
4043 "You must not call C<guestfs_set_private> while walking over the entries."
4044 msgstr ""
4045
4046 #. type: textblock
4047 #: ../src/guestfs.pod:2054
4048 msgid ""
4049 "The handle maintains an internal iterator which is reset when you call "
4050 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
4051 "call C<guestfs_set_private>."
4052 msgstr ""
4053
4054 #. type: textblock
4055 #: ../src/guestfs.pod:2060
4056 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
4057 msgstr ""
4058
4059 #. type: verbatim
4060 #: ../src/guestfs.pod:2062
4061 #, no-wrap
4062 msgid ""
4063 " guestfs_set_private (g, key, NULL);\n"
4064 "\n"
4065 msgstr ""
4066
4067 #. type: textblock
4068 #: ../src/guestfs.pod:2064
4069 msgid "then that C<key> is not returned when walking."
4070 msgstr ""
4071
4072 #. type: textblock
4073 #: ../src/guestfs.pod:2068
4074 msgid ""
4075 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4076 "C<guestfs_next_private> or C<guestfs_set_private>."
4077 msgstr ""
4078
4079 #. type: textblock
4080 #: ../src/guestfs.pod:2074
4081 msgid ""
4082 "The following example code shows how to print all keys and data pointers "
4083 "that are associated with the handle C<g>:"
4084 msgstr ""
4085
4086 #. type: verbatim
4087 #: ../src/guestfs.pod:2077
4088 #, no-wrap
4089 msgid ""
4090 " const char *key;\n"
4091 " void *data = guestfs_first_private (g, &key);\n"
4092 " while (data != NULL)\n"
4093 "   {\n"
4094 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4095 "     data = guestfs_next_private (g, &key);\n"
4096 "   }\n"
4097 "\n"
4098 msgstr ""
4099
4100 #. type: textblock
4101 #: ../src/guestfs.pod:2085
4102 msgid ""
4103 "More commonly you are only interested in keys that begin with an "
4104 "application-specific prefix C<foo_>.  Modify the loop like so:"
4105 msgstr ""
4106
4107 #. type: verbatim
4108 #: ../src/guestfs.pod:2088
4109 #, no-wrap
4110 msgid ""
4111 " const char *key;\n"
4112 " void *data = guestfs_first_private (g, &key);\n"
4113 " while (data != NULL)\n"
4114 "   {\n"
4115 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4116 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4117 "     data = guestfs_next_private (g, &key);\n"
4118 "   }\n"
4119 "\n"
4120 msgstr ""
4121
4122 #. type: textblock
4123 #: ../src/guestfs.pod:2097
4124 msgid ""
4125 "If you need to modify keys while walking, then you have to jump back to the "
4126 "beginning of the loop.  For example, to delete all keys prefixed with "
4127 "C<foo_>:"
4128 msgstr ""
4129
4130 #. type: verbatim
4131 #: ../src/guestfs.pod:2101
4132 #, no-wrap
4133 msgid ""
4134 "  const char *key;\n"
4135 "  void *data;\n"
4136 " again:\n"
4137 "  data = guestfs_first_private (g, &key);\n"
4138 "  while (data != NULL)\n"
4139 "    {\n"
4140 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4141 "        {\n"
4142 "          guestfs_set_private (g, key, NULL);\n"
4143 "          /* note that 'key' pointer is now invalid, and so is\n"
4144 "             the internal iterator */\n"
4145 "          goto again;\n"
4146 "        }\n"
4147 "      data = guestfs_next_private (g, &key);\n"
4148 "    }\n"
4149 "\n"
4150 msgstr ""
4151
4152 #. type: textblock
4153 #: ../src/guestfs.pod:2117
4154 msgid ""
4155 "Note that the above loop is guaranteed to terminate because the keys are "
4156 "being deleted, but other manipulations of keys within the loop might not "
4157 "terminate unless you also maintain an indication of which keys have been "
4158 "visited."
4159 msgstr ""
4160
4161 #. type: =end
4162 #: ../src/guestfs.pod:2122 ../src/guestfs.pod:2127
4163 msgid "html"
4164 msgstr ""
4165
4166 #. type: textblock
4167 #: ../src/guestfs.pod:2124
4168 msgid ""
4169 "<!-- old anchor for the next section --> <a "
4170 "name=\"state_machine_and_low_level_event_api\"/>"
4171 msgstr ""
4172
4173 #. type: =head1
4174 #: ../src/guestfs.pod:2129
4175 msgid "ARCHITECTURE"
4176 msgstr ""
4177
4178 #. type: textblock
4179 #: ../src/guestfs.pod:2131
4180 msgid ""
4181 "Internally, libguestfs is implemented by running an appliance (a special "
4182 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4183 "process of the main program."
4184 msgstr ""
4185
4186 #. type: verbatim
4187 #: ../src/guestfs.pod:2135
4188 #, no-wrap
4189 msgid ""
4190 "  ___________________\n"
4191 " /                   \\\n"
4192 " | main program      |\n"
4193 " |                   |\n"
4194 " |                   |           child process / appliance\n"
4195 " |                   |           __________________________\n"
4196 " |                   |          / qemu                     \\\n"
4197 " +-------------------+   RPC    |      +-----------------+ |\n"
4198 " | libguestfs     <--------------------> guestfsd        | |\n"
4199 " |                   |          |      +-----------------+ |\n"
4200 " \\___________________/          |      | Linux kernel    | |\n"
4201 "                                |      +--^--------------+ |\n"
4202 "                                \\_________|________________/\n"
4203 "                                          |\n"
4204 "                                   _______v______\n"
4205 "                                  /              \\\n"
4206 "                                  | Device or    |\n"
4207 "                                  | disk image   |\n"
4208 "                                  \\______________/\n"
4209 "\n"
4210 msgstr ""
4211
4212 #. type: textblock
4213 #: ../src/guestfs.pod:2155
4214 msgid ""
4215 "The library, linked to the main program, creates the child process and hence"
4216 " the appliance in the L</guestfs_launch> function."
4217 msgstr ""
4218
4219 #. type: textblock
4220 #: ../src/guestfs.pod:2158
4221 msgid ""
4222 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4223 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4224 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4225 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs"
4226 " API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4227 "attached to the qemu process which translates device access by the "
4228 "appliance's Linux kernel into accesses to the image."
4229 msgstr ""
4230
4231 #. type: textblock
4232 #: ../src/guestfs.pod:2167
4233 msgid ""
4234 "A common misunderstanding is that the appliance \"is\" the virtual machine."
4235 "  Although the disk image you are attached to might also be used by some "
4236 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4237 "care if both libguestfs's qemu process and your virtual machine are trying "
4238 "to update the disk image at the same time, since these usually results in "
4239 "massive disk corruption)."
4240 msgstr ""
4241
4242 #. type: =head1
4243 #: ../src/guestfs.pod:2174
4244 msgid "STATE MACHINE"
4245 msgstr ""
4246
4247 #. type: textblock
4248 #: ../src/guestfs.pod:2176
4249 msgid "libguestfs uses a state machine to model the child process:"
4250 msgstr ""
4251
4252 #. type: verbatim
4253 #: ../src/guestfs.pod:2178
4254 #, no-wrap
4255 msgid ""
4256 "                         |\n"
4257 "                    guestfs_create\n"
4258 "                         |\n"
4259 "                         |\n"
4260 "                     ____V_____\n"
4261 "                    /          \\\n"
4262 "                    |  CONFIG  |\n"
4263 "                    \\__________/\n"
4264 "                     ^ ^   ^  \\\n"
4265 "                    /  |    \\  \\ guestfs_launch\n"
4266 "                   /   |    _\\__V______\n"
4267 "                  /    |   /           \\\n"
4268 "                 /     |   | LAUNCHING |\n"
4269 "                /      |   \\___________/\n"
4270 "               /       |       /\n"
4271 "              /        |  guestfs_launch\n"
4272 "             /         |     /\n"
4273 "    ______  /        __|____V\n"
4274 "   /      \\ ------> /        \\\n"
4275 "   | BUSY |         | READY  |\n"
4276 "   \\______/ <------ \\________/\n"
4277 "\n"
4278 msgstr ""
4279
4280 #. type: textblock
4281 #: ../src/guestfs.pod:2200
4282 msgid ""
4283 "The normal transitions are (1) CONFIG (when the handle is created, but there"
4284 " is no child process), (2) LAUNCHING (when the child process is booting up),"
4285 " (3) alternating between READY and BUSY as commands are issued to, and "
4286 "carried out by, the child process."
4287 msgstr ""
4288
4289 #. type: textblock
4290 #: ../src/guestfs.pod:2205
4291 msgid ""
4292 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4293 "asynchronously at any time (eg. due to some internal error), and that causes"
4294 " the state to transition back to CONFIG."
4295 msgstr ""
4296
4297 #. type: textblock
4298 #: ../src/guestfs.pod:2209
4299 msgid ""
4300 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4301 "issued when in the CONFIG state."
4302 msgstr ""
4303
4304 #. type: textblock
4305 #: ../src/guestfs.pod:2212
4306 msgid ""
4307 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4308 "L</guestfs_launch> blocks until the child process is READY to accept "
4309 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4310 "moves the state from CONFIG to LAUNCHING while it is running."
4311 msgstr ""
4312
4313 #. type: textblock
4314 #: ../src/guestfs.pod:2218
4315 msgid ""
4316 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4317 "state.  These API calls block waiting for the command to be carried out (ie."
4318 " the state to transition to BUSY and then back to READY).  There are no non-"
4319 "blocking versions, and no way to issue more than one command per handle at "
4320 "the same time."
4321 msgstr ""
4322
4323 #. type: textblock
4324 #: ../src/guestfs.pod:2224
4325 msgid ""
4326 "Finally, the child process sends asynchronous messages back to the main "
4327 "program, such as kernel log messages.  You can register a callback to "
4328 "receive these messages."
4329 msgstr ""
4330
4331 #. type: =head1
4332 #: ../src/guestfs.pod:2228
4333 msgid "INTERNALS"
4334 msgstr ""
4335
4336 #. type: =head2
4337 #: ../src/guestfs.pod:2230
4338 msgid "COMMUNICATION PROTOCOL"
4339 msgstr ""
4340
4341 #. type: textblock
4342 #: ../src/guestfs.pod:2232
4343 msgid ""
4344 "Don't rely on using this protocol directly.  This section documents how it "
4345 "currently works, but it may change at any time."
4346 msgstr ""
4347
4348 #. type: textblock
4349 #: ../src/guestfs.pod:2235
4350 msgid ""
4351 "The protocol used to talk between the library and the daemon running inside "
4352 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4353 "1014, RFC 1832, RFC 4506)."
4354 msgstr ""
4355
4356 #. type: textblock
4357 #: ../src/guestfs.pod:2239
4358 msgid ""
4359 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4360 "this file is automatically generated)."
4361 msgstr ""
4362
4363 #. type: textblock
4364 #: ../src/guestfs.pod:2242
4365 msgid ""
4366 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4367 "and C<FileOut> parameters, which are handled with very simple request/reply "
4368 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4369 "parameters, which use the same request and reply messages, but they may also"
4370 " be followed by files sent using a chunked encoding."
4371 msgstr ""
4372
4373 #. type: =head3
4374 #: ../src/guestfs.pod:2249
4375 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4376 msgstr ""
4377
4378 #. type: textblock
4379 #: ../src/guestfs.pod:2251
4380 msgid "For ordinary functions, the request message is:"
4381 msgstr ""
4382
4383 #. type: verbatim
4384 #: ../src/guestfs.pod:2253
4385 #, no-wrap
4386 msgid ""
4387 " total length (header + arguments,\n"
4388 "      but not including the length word itself)\n"
4389 " struct guestfs_message_header (encoded as XDR)\n"
4390 " struct guestfs_<foo>_args (encoded as XDR)\n"
4391 "\n"
4392 msgstr ""
4393
4394 #. type: textblock
4395 #: ../src/guestfs.pod:2258
4396 msgid ""
4397 "The total length field allows the daemon to allocate a fixed size buffer "
4398 "into which it slurps the rest of the message.  As a result, the total length"
4399 " is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the"
4400 " effective size of any request is limited to somewhere under this size."
4401 msgstr ""
4402
4403 #. type: textblock
4404 #: ../src/guestfs.pod:2264
4405 msgid ""
4406 "Note also that many functions don't take any arguments, in which case the "
4407 "C<guestfs_I<foo>_args> is completely omitted."
4408 msgstr ""
4409
4410 #. type: textblock
4411 #: ../src/guestfs.pod:2267
4412 msgid ""
4413 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4414 "receiver knows what type of args structure to expect, or none at all."
4415 msgstr ""
4416
4417 #. type: textblock
4418 #: ../src/guestfs.pod:2271
4419 msgid ""
4420 "For functions that take optional arguments, the optional arguments are "
4421 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4422 "arguments.  A bitmask in the header indicates which optional arguments are "
4423 "meaningful.  The bitmask is also checked to see if it contains bits set "
4424 "which the daemon does not know about (eg. if more optional arguments were "
4425 "added in a later version of the library), and this causes the call to be "
4426 "rejected."
4427 msgstr ""
4428
4429 #. type: textblock
4430 #: ../src/guestfs.pod:2279
4431 msgid "The reply message for ordinary functions is:"
4432 msgstr ""
4433
4434 #. type: verbatim
4435 #: ../src/guestfs.pod:2281
4436 #, no-wrap
4437 msgid ""
4438 " total length (header + ret,\n"
4439 "      but not including the length word itself)\n"
4440 " struct guestfs_message_header (encoded as XDR)\n"
4441 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4442 "\n"
4443 msgstr ""
4444
4445 #. type: textblock
4446 #: ../src/guestfs.pod:2286
4447 msgid ""
4448 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4449 "functions that return no formal return values."
4450 msgstr ""
4451
4452 #. type: textblock
4453 #: ../src/guestfs.pod:2289
4454 msgid ""
4455 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4456 msgstr ""
4457
4458 #. type: textblock
4459 #: ../src/guestfs.pod:2292
4460 msgid ""
4461 "In the case of an error, a flag is set in the header, and the reply message "
4462 "is slightly changed:"
4463 msgstr ""
4464
4465 #. type: verbatim
4466 #: ../src/guestfs.pod:2295
4467 #, no-wrap
4468 msgid ""
4469 " total length (header + error,\n"
4470 "      but not including the length word itself)\n"
4471 " struct guestfs_message_header (encoded as XDR)\n"
4472 " struct guestfs_message_error (encoded as XDR)\n"
4473 "\n"
4474 msgstr ""
4475
4476 #. type: textblock
4477 #: ../src/guestfs.pod:2300
4478 msgid ""
4479 "The C<guestfs_message_error> structure contains the error message as a "
4480 "string."
4481 msgstr ""
4482
4483 #. type: =head3
4484 #: ../src/guestfs.pod:2303
4485 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4486 msgstr ""
4487
4488 #. type: textblock
4489 #: ../src/guestfs.pod:2305
4490 msgid ""
4491 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4492 "The normal request message is sent (see above).  However this is followed by"
4493 " a sequence of file chunks."
4494 msgstr ""
4495
4496 #. type: verbatim
4497 #: ../src/guestfs.pod:2309
4498 #, no-wrap
4499 msgid ""
4500 " total length (header + arguments,\n"
4501 "      but not including the length word itself,\n"
4502 "      and not including the chunks)\n"
4503 " struct guestfs_message_header (encoded as XDR)\n"
4504 " struct guestfs_<foo>_args (encoded as XDR)\n"
4505 " sequence of chunks for FileIn param #0\n"
4506 " sequence of chunks for FileIn param #1 etc.\n"
4507 "\n"
4508 msgstr ""
4509
4510 #. type: textblock
4511 #: ../src/guestfs.pod:2317
4512 msgid "The \"sequence of chunks\" is:"
4513 msgstr ""
4514
4515 #. type: verbatim
4516 #: ../src/guestfs.pod:2319
4517 #, no-wrap
4518 msgid ""
4519 " length of chunk (not including length word itself)\n"
4520 " struct guestfs_chunk (encoded as XDR)\n"
4521 " length of chunk\n"
4522 " struct guestfs_chunk (encoded as XDR)\n"
4523 "   ...\n"
4524 " length of chunk\n"
4525 " struct guestfs_chunk (with data.data_len == 0)\n"
4526 "\n"
4527 msgstr ""
4528
4529 #. type: textblock
4530 #: ../src/guestfs.pod:2327
4531 msgid ""
4532 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4533 "is set in the final chunk to indicate either successful completion or early "
4534 "cancellation."
4535 msgstr ""
4536
4537 #. type: textblock
4538 #: ../src/guestfs.pod:2331
4539 msgid ""
4540 "At time of writing there are no functions that have more than one FileIn "
4541 "parameter.  However this is (theoretically) supported, by sending the "
4542 "sequence of chunks for each FileIn parameter one after another (from left to"
4543 " right)."
4544 msgstr ""
4545
4546 #. type: textblock
4547 #: ../src/guestfs.pod:2336
4548 msgid ""
4549 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4550 "transfer.  The library does this by sending a chunk with a special flag set "
4551 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4552 "RPC, does I<not> send any reply, and goes back to reading the next request."
4553 msgstr ""
4554
4555 #. type: textblock
4556 #: ../src/guestfs.pod:2342
4557 msgid ""
4558 "The daemon may also cancel.  It does this by writing a special word "
4559 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4560 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4561 "cancel chunk).  The special word is chosen so that even if cancellation "
4562 "happens right at the end of the transfer (after the library has finished "
4563 "writing and has started listening for the reply), the \"spurious\" cancel "
4564 "flag will not be confused with the reply message."
4565 msgstr ""
4566
4567 #. type: textblock
4568 #: ../src/guestfs.pod:2351
4569 msgid ""
4570 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4571 "limit), and also files where the size is not known in advance (eg. from "
4572 "pipes or sockets).  However the chunks are rather small "
4573 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need"
4574 " to keep much in memory."
4575 msgstr ""
4576
4577 #. type: =head3
4578 #: ../src/guestfs.pod:2357
4579 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4580 msgstr ""
4581
4582 #. type: textblock
4583 #: ../src/guestfs.pod:2359
4584 msgid ""
4585 "The protocol for FileOut parameters is exactly the same as for FileIn "
4586 "parameters, but with the roles of daemon and library reversed."
4587 msgstr ""
4588
4589 #. type: verbatim
4590 #: ../src/guestfs.pod:2362
4591 #, no-wrap
4592 msgid ""
4593 " total length (header + ret,\n"
4594 "      but not including the length word itself,\n"
4595 "      and not including the chunks)\n"
4596 " struct guestfs_message_header (encoded as XDR)\n"
4597 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4598 " sequence of chunks for FileOut param #0\n"
4599 " sequence of chunks for FileOut param #1 etc.\n"
4600 "\n"
4601 msgstr ""
4602
4603 #. type: =head3
4604 #: ../src/guestfs.pod:2370
4605 msgid "INITIAL MESSAGE"
4606 msgstr ""
4607
4608 #. type: textblock
4609 #: ../src/guestfs.pod:2372
4610 msgid ""
4611 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4612 "which indicates that the guest and daemon is alive.  This is what "
4613 "L</guestfs_launch> waits for."
4614 msgstr ""
4615
4616 #. type: =head3
4617 #: ../src/guestfs.pod:2376
4618 msgid "PROGRESS NOTIFICATION MESSAGES"
4619 msgstr ""
4620
4621 #. type: textblock
4622 #: ../src/guestfs.pod:2378
4623 msgid ""
4624 "The daemon may send progress notification messages at any time.  These are "
4625 "distinguished by the normal length word being replaced by "
4626 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4627 msgstr ""
4628
4629 #. type: textblock
4630 #: ../src/guestfs.pod:2382
4631 msgid ""
4632 "The library turns them into progress callbacks (see "
4633 "L</GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards "
4634 "them if not."
4635 msgstr ""
4636
4637 #. type: textblock
4638 #: ../src/guestfs.pod:2386
4639 msgid ""
4640 "The daemon self-limits the frequency of progress messages it sends (see "
4641 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4642 "messages."
4643 msgstr ""
4644
4645 #. type: =head1
4646 #: ../src/guestfs.pod:2390
4647 msgid "LIBGUESTFS VERSION NUMBERS"
4648 msgstr ""
4649
4650 #. type: textblock
4651 #: ../src/guestfs.pod:2392
4652 msgid ""
4653 "Since April 2010, libguestfs has started to make separate development and "
4654 "stable releases, along with corresponding branches in our git repository.  "
4655 "These separate releases can be identified by version number:"
4656 msgstr ""
4657
4658 #. type: verbatim
4659 #: ../src/guestfs.pod:2397
4660 #, no-wrap
4661 msgid ""
4662 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4663 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4664 "       |\n"
4665 "       v\n"
4666 " 1  .  3  .  5\n"
4667 " ^           ^\n"
4668 " |           |\n"
4669 " |           `-------- sub-version\n"
4670 " |\n"
4671 " `------ always '1' because we don't change the ABI\n"
4672 "\n"
4673 msgstr ""
4674
4675 #. type: textblock
4676 #: ../src/guestfs.pod:2408
4677 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4678 msgstr ""
4679
4680 #. type: textblock
4681 #: ../src/guestfs.pod:2410
4682 msgid ""
4683 "As time passes we cherry pick fixes from the development branch and backport"
4684 " those into the stable branch, the effect being that the stable branch "
4685 "should get more stable and less buggy over time.  So the stable releases are"
4686 " ideal for people who don't need new features but would just like the "
4687 "software to work."
4688 msgstr ""
4689
4690 #. type: textblock
4691 #: ../src/guestfs.pod:2416
4692 msgid "Our criteria for backporting changes are:"
4693 msgstr ""
4694
4695 #. type: textblock
4696 #: ../src/guestfs.pod:2422
4697 msgid ""
4698 "Documentation changes which don't affect any code are backported unless the "
4699 "documentation refers to a future feature which is not in stable."
4700 msgstr ""
4701
4702 #. type: textblock
4703 #: ../src/guestfs.pod:2428
4704 msgid ""
4705 "Bug fixes which are not controversial, fix obvious problems, and have been "
4706 "well tested are backported."
4707 msgstr ""
4708
4709 #. type: textblock
4710 #: ../src/guestfs.pod:2433
4711 msgid ""
4712 "Simple rearrangements of code which shouldn't affect how it works get "
4713 "backported.  This is so that the code in the two branches doesn't get too "
4714 "far out of step, allowing us to backport future fixes more easily."
4715 msgstr ""
4716
4717 #. type: textblock
4718 #: ../src/guestfs.pod:2439
4719 msgid ""
4720 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4721 "exceptional case: the new feature is required in order to implement an "
4722 "important bug fix."
4723 msgstr ""
4724
4725 #. type: textblock
4726 #: ../src/guestfs.pod:2445
4727 msgid ""
4728 "A new stable branch starts when we think the new features in development are"
4729 " substantial and compelling enough over the current stable branch to warrant"
4730 " it.  When that happens we create new stable and development versions 1.N.0 "
4731 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4732 "stable at this point, but by backporting fixes from development, that branch"
4733 " will stabilize over time."
4734 msgstr ""
4735
4736 #. type: =head1
4737 #: ../src/guestfs.pod:2453
4738 msgid "EXTENDING LIBGUESTFS"
4739 msgstr ""
4740
4741 #. type: =head2
4742 #: ../src/guestfs.pod:2455
4743 msgid "ADDING A NEW API ACTION"
4744 msgstr ""
4745
4746 #. type: textblock
4747 #: ../src/guestfs.pod:2457
4748 msgid ""
4749 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4750 "documentation) are generated, and this makes it easy to extend the "
4751 "libguestfs API."
4752 msgstr ""
4753
4754 #. type: textblock
4755 #: ../src/guestfs.pod:2461
4756 msgid "To add a new API action there are two changes:"
4757 msgstr ""
4758
4759 #. type: textblock
4760 #: ../src/guestfs.pod:2467
4761 msgid ""
4762 "You need to add a description of the call (name, parameters, return type, "
4763 "tests, documentation) to C<generator/generator_actions.ml>."
4764 msgstr ""
4765
4766 #. type: textblock
4767 #: ../src/guestfs.pod:2470
4768 msgid ""
4769 "There are two sorts of API action, depending on whether the call goes "
4770 "through to the daemon in the appliance, or is serviced entirely by the "
4771 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the"
4772 " former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4773 "an example of the latter, since a trace flag is maintained in the handle and"
4774 " all tracing is done on the library side."
4775 msgstr ""
4776
4777 #. type: textblock
4778 #: ../src/guestfs.pod:2478
4779 msgid ""
4780 "Most new actions are of the first type, and get added to the "
4781 "C<daemon_functions> list.  Each function has a unique procedure number used "
4782 "in the RPC protocol which is assigned to that action when we publish "
4783 "libguestfs and cannot be reused.  Take the latest procedure number and "
4784 "increment it."
4785 msgstr ""
4786
4787 #. type: textblock
4788 #: ../src/guestfs.pod:2484
4789 msgid ""
4790 "For library-only actions of the second type, add to the "
4791 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4792 "library and do not travel over the RPC mechanism to the daemon, these "
4793 "functions do not need a procedure number, and so the procedure number is set"
4794 " to C<-1>."
4795 msgstr ""
4796
4797 #. type: textblock
4798 #: ../src/guestfs.pod:2492
4799 msgid "Implement the action (in C):"
4800 msgstr ""
4801
4802 #. type: textblock
4803 #: ../src/guestfs.pod:2494
4804 msgid ""
4805 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4806 "C<daemon/> directory."
4807 msgstr ""
4808
4809 #. type: textblock
4810 #: ../src/guestfs.pod:2497
4811 msgid ""
4812 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4813 "(note: double underscore) in the C<src/> directory."
4814 msgstr ""
4815
4816 #. type: textblock
4817 #: ../src/guestfs.pod:2500
4818 msgid "In either case, use another function as an example of what to do."
4819 msgstr ""
4820
4821 #. type: textblock
4822 #: ../src/guestfs.pod:2504
4823 msgid "After making these changes, use C<make> to compile."
4824 msgstr ""
4825
4826 #. type: textblock
4827 #: ../src/guestfs.pod:2506
4828 msgid ""
4829 "Note that you don't need to implement the RPC, language bindings, manual "
4830 "pages or anything else.  It's all automatically generated from the OCaml "
4831 "description."
4832 msgstr ""
4833
4834 #. type: =head2
4835 #: ../src/guestfs.pod:2510
4836 msgid "ADDING TESTS FOR AN API ACTION"
4837 msgstr ""
4838
4839 #. type: textblock
4840 #: ../src/guestfs.pod:2512
4841 msgid ""
4842 "You can supply zero or as many tests as you want per API call.  The tests "
4843 "can either be added as part of the API description "
4844 "(C<generator/generator_actions.ml>), or in some rarer cases you may want to "
4845 "drop a script into C<regressions/>.  Note that adding a script to "
4846 "C<regressions/> is slower, so if possible use the first method."
4847 msgstr ""
4848
4849 #. type: textblock
4850 #: ../src/guestfs.pod:2518
4851 msgid ""
4852 "The following describes the test environment used when you add an API test "
4853 "in C<generator_actions.ml>."
4854 msgstr ""
4855
4856 #. type: textblock
4857 #: ../src/guestfs.pod:2521
4858 msgid "The test environment has 4 block devices:"
4859 msgstr ""
4860
4861 #. type: =item
4862 #: ../src/guestfs.pod:2525
4863 msgid "C</dev/sda> 500MB"
4864 msgstr ""
4865
4866 #. type: textblock
4867 #: ../src/guestfs.pod:2527
4868 msgid "General block device for testing."
4869 msgstr ""
4870
4871 #. type: =item
4872 #: ../src/guestfs.pod:2529
4873 msgid "C</dev/sdb> 50MB"
4874 msgstr ""
4875
4876 #. type: textblock
4877 #: ../src/guestfs.pod:2531
4878 msgid ""
4879 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4880 "operations."
4881 msgstr ""
4882
4883 #. type: =item
4884 #: ../src/guestfs.pod:2534
4885 msgid "C</dev/sdc> 10MB"
4886 msgstr ""
4887
4888 #. type: textblock
4889 #: ../src/guestfs.pod:2536
4890 msgid "Used in a few tests where two block devices are needed."
4891 msgstr ""
4892
4893 #. type: =item
4894 #: ../src/guestfs.pod:2538
4895 msgid "C</dev/sdd>"
4896 msgstr ""
4897
4898 #. type: textblock
4899 #: ../src/guestfs.pod:2540
4900 msgid "ISO with fixed content (see C<images/test.iso>)."
4901 msgstr ""
4902
4903 #. type: textblock
4904 #: ../src/guestfs.pod:2544
4905 msgid ""
4906 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4907 "appliance and block devices are reused between tests.  So don't try testing "
4908 "L</guestfs_kill_subprocess> :-x"
4909 msgstr ""
4910
4911 #. type: textblock
4912 #: ../src/guestfs.pod:2548
4913 msgid ""
4914 "Each test starts with an initial scenario, selected using one of the "
4915 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4916 "initialize the disks mentioned above in a particular way as documented in "
4917 "C<generator_types.ml>.  You should not assume anything about the previous "
4918 "contents of other disks that are not initialized."
4919 msgstr ""
4920
4921 #. type: textblock
4922 #: ../src/guestfs.pod:2554
4923 msgid ""
4924 "You can add a prerequisite clause to any individual test.  This is a run-"
4925 "time check, which, if it fails, causes the test to be skipped.  Useful if "
4926 "testing a command which might not work on all variations of libguestfs "
4927 "builds.  A test that has prerequisite of C<Always> means to run "
4928 "unconditionally."
4929 msgstr ""
4930
4931 #. type: textblock
4932 #: ../src/guestfs.pod:2560
4933 msgid ""
4934 "In addition, packagers can skip individual tests by setting environment "
4935 "variables before running C<make check>."
4936 msgstr ""
4937
4938 #. type: verbatim
4939 #: ../src/guestfs.pod:2563
4940 #, no-wrap
4941 msgid ""
4942 " SKIP_TEST_<CMD>_<NUM>=1\n"
4943 "\n"
4944 msgstr ""
4945
4946 #. type: textblock
4947 #: ../src/guestfs.pod:2565
4948 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4949 msgstr ""
4950
4951 #. type: textblock
4952 #: ../src/guestfs.pod:2567
4953 msgid "or:"
4954 msgstr ""
4955
4956 #. type: verbatim
4957 #: ../src/guestfs.pod:2569
4958 #, no-wrap
4959 msgid ""
4960 " SKIP_TEST_<CMD>=1\n"
4961 "\n"
4962 msgstr ""
4963
4964 #. type: textblock
4965 #: ../src/guestfs.pod:2571
4966 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4967 msgstr ""
4968
4969 #. type: textblock
4970 #: ../src/guestfs.pod:2573
4971 msgid "Packagers can run only certain tests by setting for example:"
4972 msgstr ""
4973
4974 #. type: verbatim
4975 #: ../src/guestfs.pod:2575
4976 #, no-wrap
4977 msgid ""
4978 " TEST_ONLY=\"vfs_type zerofree\"\n"
4979 "\n"
4980 msgstr ""
4981
4982 #. type: textblock
4983 #: ../src/guestfs.pod:2577
4984 msgid ""
4985 "See C<capitests/tests.c> for more details of how these environment variables"
4986 " work."
4987 msgstr ""
4988
4989 #. type: =head2
4990 #: ../src/guestfs.pod:2580
4991 msgid "DEBUGGING NEW API ACTIONS"
4992 msgstr ""
4993
4994 #. type: textblock
4995 #: ../src/guestfs.pod:2582
4996 msgid "Test new actions work before submitting them."
4997 msgstr ""
4998
4999 #. type: textblock
5000 #: ../src/guestfs.pod:2584
5001 msgid "You can use guestfish to try out new commands."
5002 msgstr ""
5003
5004 #. type: textblock
5005 #: ../src/guestfs.pod:2586
5006 msgid ""
5007 "Debugging the daemon is a problem because it runs inside a minimal "
5008 "environment.  However you can fprintf messages in the daemon to stderr, and "
5009 "they will show up if you use C<guestfish -v>."
5010 msgstr ""
5011
5012 #. type: =head2
5013 #: ../src/guestfs.pod:2590
5014 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
5015 msgstr ""
5016
5017 #. type: textblock
5018 #: ../src/guestfs.pod:2592
5019 msgid ""
5020 "Our C source code generally adheres to some basic code-formatting "
5021 "conventions.  The existing code base is not totally consistent on this "
5022 "front, but we do prefer that contributed code be formatted similarly.  In "
5023 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
5024 "indentation level, and other than that, follow the K&R style."
5025 msgstr ""
5026
5027 #. type: textblock
5028 #: ../src/guestfs.pod:2598
5029 msgid ""
5030 "If you use Emacs, add the following to one of one of your start-up files "
5031 "(e.g., ~/.emacs), to help ensure that you get indentation right:"
5032 msgstr ""
5033
5034 #. type: verbatim
5035 #: ../src/guestfs.pod:2601
5036 #, no-wrap
5037 msgid ""
5038 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
5039 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
5040 " (add-hook 'find-file-hook\n"
5041 "     '(lambda () (if (and buffer-file-name\n"
5042 "                          (string-match \"/libguestfs\\\\>\"\n"
5043 "                              (buffer-file-name))\n"
5044 "                          (not (string-equal mode-name \"Change Log\"))\n"
5045 "                          (not (string-equal mode-name \"Makefile\")))\n"
5046 "                     (setq indent-tabs-mode nil))))\n"
5047 " \n"
5048 msgstr ""
5049
5050 #. type: verbatim
5051 #: ../src/guestfs.pod:2611
5052 #, no-wrap
5053 msgid ""
5054 " ;;; When editing C sources in libguestfs, use this style.\n"
5055 " (defun libguestfs-c-mode ()\n"
5056 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
5057 "   (interactive)\n"
5058 "   (c-set-style \"K&R\")\n"
5059 "   (setq c-indent-level 2)\n"
5060 "   (setq c-basic-offset 2))\n"
5061 " (add-hook 'c-mode-hook\n"
5062 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5063 "                               (buffer-file-name))\n"
5064 "                           (libguestfs-c-mode))))\n"
5065 "\n"
5066 msgstr ""
5067
5068 #. type: textblock
5069 #: ../src/guestfs.pod:2623
5070 msgid "Enable warnings when compiling (and fix any problems this finds):"
5071 msgstr ""
5072
5073 #. type: verbatim
5074 #: ../src/guestfs.pod:2626
5075 #, no-wrap
5076 msgid ""
5077 " ./configure --enable-gcc-warnings\n"
5078 "\n"
5079 msgstr ""
5080
5081 #. type: textblock
5082 #: ../src/guestfs.pod:2628
5083 msgid "Useful targets are:"
5084 msgstr ""
5085
5086 #. type: verbatim
5087 #: ../src/guestfs.pod:2630
5088 #, no-wrap
5089 msgid ""
5090 " make syntax-check  # checks the syntax of the C code\n"
5091 " make check         # runs the test suite\n"
5092 "\n"
5093 msgstr ""
5094
5095 #. type: =head2
5096 #: ../src/guestfs.pod:2633
5097 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5098 msgstr ""
5099
5100 #. type: textblock
5101 #: ../src/guestfs.pod:2635
5102 msgid ""
5103 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>,"
5104 " which are used to do shell quoting."
5105 msgstr ""
5106
5107 #. type: =item
5108 #: ../src/guestfs.pod:2640
5109 msgid "%Q"
5110 msgstr ""
5111
5112 #. type: textblock
5113 #: ../src/guestfs.pod:2642
5114 msgid ""
5115 "Simple shell quoted string.  Any spaces or other shell characters are "
5116 "escaped for you."
5117 msgstr ""
5118
5119 #. type: =item
5120 #: ../src/guestfs.pod:2645
5121 msgid "%R"
5122 msgstr ""
5123
5124 #. type: textblock
5125 #: ../src/guestfs.pod:2647
5126 msgid ""
5127 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5128 "the sysroot."
5129 msgstr ""
5130
5131 #. type: textblock
5132 #: ../src/guestfs.pod:2652 ../fish/guestfish.pod:242 ../fish/guestfish.pod:673
5133 msgid "For example:"
5134 msgstr ""
5135
5136 #. type: verbatim
5137 #: ../src/guestfs.pod:2654
5138 #, no-wrap
5139 msgid ""
5140 " asprintf (&cmd, \"cat %R\", path);\n"
5141 "\n"
5142 msgstr ""
5143
5144 #. type: textblock
5145 #: ../src/guestfs.pod:2656
5146 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5147 msgstr ""
5148
5149 #. type: textblock
5150 #: ../src/guestfs.pod:2658
5151 msgid ""
5152 "I<Note:> Do I<not> use these when you are passing parameters to the "
5153 "C<command{,r,v,rv}()> functions.  These parameters do NOT need to be quoted "
5154 "because they are not passed via the shell (instead, straight to exec).  You "
5155 "probably want to use the C<sysroot_path()> function however."
5156 msgstr ""
5157
5158 #. type: =head2
5159 #: ../src/guestfs.pod:2664
5160 msgid "SUBMITTING YOUR NEW API ACTIONS"
5161 msgstr ""
5162
5163 #. type: textblock
5164 #: ../src/guestfs.pod:2666
5165 msgid ""
5166 "Submit patches to the mailing list: "
5167 "L<http://www.redhat.com/mailman/listinfo/libguestfs> and CC to "
5168 "L<rjones@redhat.com>."
5169 msgstr ""
5170
5171 #. type: =head2
5172 #: ../src/guestfs.pod:2670
5173 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5174 msgstr ""
5175
5176 #. type: textblock
5177 #: ../src/guestfs.pod:2672
5178 msgid "We support i18n (gettext anyhow) in the library."
5179 msgstr ""
5180
5181 #. type: textblock
5182 #: ../src/guestfs.pod:2674
5183 msgid ""
5184 "However many messages come from the daemon, and we don't translate those at "
5185 "the moment.  One reason is that the appliance generally has all locale files"
5186 " removed from it, because they take up a lot of space.  So we'd have to "
5187 "readd some of those, as well as copying our PO files into the appliance."
5188 msgstr ""
5189
5190 #. type: textblock
5191 #: ../src/guestfs.pod:2680
5192 msgid ""
5193 "Debugging messages are never translated, since they are intended for the "
5194 "programmers."
5195 msgstr ""
5196
5197 #. type: =head2
5198 #: ../src/guestfs.pod:2683
5199 msgid "SOURCE CODE SUBDIRECTORIES"
5200 msgstr ""
5201
5202 #. type: =item
5203 #: ../src/guestfs.pod:2687 ../src/guestfs-actions.pod:6174
5204 #: ../fish/guestfish-actions.pod:4072
5205 msgid "C<appliance>"
5206 msgstr ""
5207
5208 #. type: textblock
5209 #: ../src/guestfs.pod:2689
5210 msgid "The libguestfs appliance, build scripts and so on."
5211 msgstr ""
5212
5213 #. type: =item
5214 #: ../src/guestfs.pod:2691
5215 msgid "C<capitests>"
5216 msgstr ""
5217
5218 #. type: textblock
5219 #: ../src/guestfs.pod:2693
5220 msgid "Automated tests of the C API."
5221 msgstr ""
5222
5223 #. type: =item
5224 #: ../src/guestfs.pod:2695
5225 msgid "C<cat>"
5226 msgstr ""
5227
5228 #. type: textblock
5229 #: ../src/guestfs.pod:2697
5230 msgid ""
5231 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5232 "documentation."
5233 msgstr ""
5234
5235 #. type: =item
5236 #: ../src/guestfs.pod:2700
5237 msgid "C<caution>"
5238 msgstr ""
5239
5240 #. type: textblock
5241 #: ../src/guestfs.pod:2702
5242 msgid ""
5243 "Safety and liveness tests of components that libguestfs depends upon (not of"
5244 " libguestfs itself).  Mainly this is for qemu and the kernel."
5245 msgstr ""
5246
5247 #. type: =item
5248 #: ../src/guestfs.pod:2705
5249 msgid "C<contrib>"
5250 msgstr ""
5251
5252 #. type: textblock
5253 #: ../src/guestfs.pod:2707
5254 msgid "Outside contributions, experimental parts."
5255 msgstr ""
5256
5257 #. type: =item
5258 #: ../src/guestfs.pod:2709
5259 msgid "C<daemon>"
5260 msgstr ""
5261
5262 #. type: textblock
5263 #: ../src/guestfs.pod:2711
5264 msgid ""
5265 "The daemon that runs inside the libguestfs appliance and carries out "
5266 "actions."
5267 msgstr ""
5268
5269 #. type: =item
5270 #: ../src/guestfs.pod:2714
5271 msgid "C<df>"
5272 msgstr ""
5273
5274 #. type: textblock
5275 #: ../src/guestfs.pod:2716
5276 msgid "L<virt-df(1)> command and documentation."
5277 msgstr ""
5278
5279 #. type: =item
5280 #: ../src/guestfs.pod:2718
5281 msgid "C<edit>"
5282 msgstr ""
5283
5284 #. type: textblock
5285 #: ../src/guestfs.pod:2720
5286 msgid "L<virt-edit(1)> command and documentation."
5287 msgstr ""
5288
5289 #. type: =item
5290 #: ../src/guestfs.pod:2722
5291 msgid "C<examples>"
5292 msgstr ""
5293
5294 #. type: textblock
5295 #: ../src/guestfs.pod:2724
5296 msgid "C API example code."
5297 msgstr ""
5298
5299 #. type: =item
5300 #: ../src/guestfs.pod:2726
5301 msgid "C<fish>"
5302 msgstr ""
5303
5304 #. type: textblock
5305 #: ../src/guestfs.pod:2728
5306 msgid ""
5307 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5308 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L"
5309 "<virt-tar-out(1)>."
5310 msgstr ""
5311
5312 #. type: =item
5313 #: ../src/guestfs.pod:2732
5314 msgid "C<fuse>"
5315 msgstr ""
5316
5317 #. type: textblock
5318 #: ../src/guestfs.pod:2734
5319 msgid ""
5320 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5321 msgstr ""
5322
5323 #. type: =item
5324 #: ../src/guestfs.pod:2736
5325 msgid "C<generator>"
5326 msgstr ""
5327
5328 #. type: textblock
5329 #: ../src/guestfs.pod:2738
5330 msgid ""
5331 "The crucially important generator, used to automatically generate large "
5332 "amounts of boilerplate C code for things like RPC and bindings."
5333 msgstr ""
5334
5335 #. type: =item
5336 #: ../src/guestfs.pod:2741
5337 msgid "C<images>"
5338 msgstr ""
5339
5340 #. type: textblock
5341 #: ../src/guestfs.pod:2743
5342 msgid "Files used by the test suite."
5343 msgstr ""
5344
5345 #. type: textblock
5346 #: ../src/guestfs.pod:2745
5347 msgid "Some \"phony\" guest images which we test against."
5348 msgstr ""
5349
5350 #. type: =item
5351 #: ../src/guestfs.pod:2747
5352 msgid "C<inspector>"
5353 msgstr ""
5354
5355 #. type: textblock
5356 #: ../src/guestfs.pod:2749
5357 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5358 msgstr ""
5359
5360 #. type: =item
5361 #: ../src/guestfs.pod:2751
5362 msgid "C<logo>"
5363 msgstr ""
5364
5365 #. type: textblock
5366 #: ../src/guestfs.pod:2753
5367 msgid "Logo used on the website.  The fish is called Arthur by the way."
5368 msgstr ""
5369
5370 #. type: =item
5371 #: ../src/guestfs.pod:2755
5372 msgid "C<m4>"
5373 msgstr ""
5374
5375 #. type: textblock
5376 #: ../src/guestfs.pod:2757
5377 msgid "M4 macros used by autoconf."
5378 msgstr ""
5379
5380 #. type: =item
5381 #: ../src/guestfs.pod:2759
5382 msgid "C<po>"
5383 msgstr ""
5384
5385 #. type: textblock
5386 #: ../src/guestfs.pod:2761
5387 msgid "Translations of simple gettext strings."
5388 msgstr ""
5389
5390 #. type: =item
5391 #: ../src/guestfs.pod:2763
5392 msgid "C<po-docs>"
5393 msgstr ""
5394
5395 #. type: textblock
5396 #: ../src/guestfs.pod:2765
5397 msgid ""
5398 "The build infrastructure and PO files for translations of manpages and POD "
5399 "files.  Eventually this will be combined with the C<po> directory, but that "
5400 "is rather complicated."
5401 msgstr ""
5402
5403 #. type: =item
5404 #: ../src/guestfs.pod:2769
5405 msgid "C<regressions>"
5406 msgstr ""
5407
5408 #. type: textblock
5409 #: ../src/guestfs.pod:2771
5410 msgid "Regression tests."
5411 msgstr ""
5412
5413 #. type: =item
5414 #: ../src/guestfs.pod:2773
5415 msgid "C<rescue>"
5416 msgstr ""
5417
5418 #. type: textblock
5419 #: ../src/guestfs.pod:2775
5420 msgid "L<virt-rescue(1)> command and documentation."
5421 msgstr ""
5422
5423 #. type: =item
5424 #: ../src/guestfs.pod:2777
5425 msgid "C<src>"
5426 msgstr ""
5427
5428 #. type: textblock
5429 #: ../src/guestfs.pod:2779
5430 msgid "Source code to the C library."
5431 msgstr ""
5432
5433 #. type: =item
5434 #: ../src/guestfs.pod:2781
5435 msgid "C<tools>"
5436 msgstr ""
5437
5438 #. type: textblock
5439 #: ../src/guestfs.pod:2783
5440 msgid ""
5441 "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5442 msgstr ""
5443
5444 #. type: =item
5445 #: ../src/guestfs.pod:2785
5446 msgid "C<test-tool>"
5447 msgstr ""
5448
5449 #. type: textblock
5450 #: ../src/guestfs.pod:2787
5451 msgid ""
5452 "Test tool for end users to test if their qemu/kernel combination will work "
5453 "with libguestfs."
5454 msgstr ""
5455
5456 #. type: =item
5457 #: ../src/guestfs.pod:2790
5458 msgid "C<csharp>"
5459 msgstr ""
5460
5461 #. type: =item
5462 #: ../src/guestfs.pod:2792
5463 msgid "C<haskell>"
5464 msgstr ""
5465
5466 #. type: =item
5467 #: ../src/guestfs.pod:2794
5468 msgid "C<java>"
5469 msgstr ""
5470
5471 #. type: =item
5472 #: ../src/guestfs.pod:2796
5473 msgid "C<ocaml>"
5474 msgstr ""
5475
5476 #. type: =item
5477 #: ../src/guestfs.pod:2798
5478 msgid "C<php>"
5479 msgstr ""
5480
5481 #. type: =item
5482 #: ../src/guestfs.pod:2800
5483 msgid "C<perl>"
5484 msgstr ""
5485
5486 #. type: =item
5487 #: ../src/guestfs.pod:2802
5488 msgid "C<python>"
5489 msgstr ""
5490
5491 #. type: =item
5492 #: ../src/guestfs.pod:2804
5493 msgid "C<ruby>"
5494 msgstr ""
5495
5496 #. type: textblock
5497 #: ../src/guestfs.pod:2806
5498 msgid "Language bindings."
5499 msgstr ""
5500
5501 #. type: =head1
5502 #: ../src/guestfs.pod:2810
5503 msgid "LIMITS"
5504 msgstr ""
5505
5506 #. type: =head2
5507 #: ../src/guestfs.pod:2812
5508 msgid "PROTOCOL LIMITS"
5509 msgstr ""
5510
5511 #. type: textblock
5512 #: ../src/guestfs.pod:2814
5513 msgid ""
5514 "Internally libguestfs uses a message-based protocol to pass API calls and "
5515 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5516 "plenty more detail about this).  The maximum message size used by the "
5517 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5518 "aware of this limit.  The API calls which may be affected are individually "
5519 "documented, with a link back to this section of the documentation."
5520 msgstr ""
5521
5522 #. type: textblock
5523 #: ../src/guestfs.pod:2822
5524 msgid ""
5525 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5526 "a simple string.  Because this string is at some point internally encoded as"
5527 " a message, the maximum size that it can return is slightly under 4 MB.  If "
5528 "the requested file is larger than this then you will get an error."
5529 msgstr ""
5530
5531 #. type: textblock
5532 #: ../src/guestfs.pod:2828
5533 msgid ""
5534 "In order to transfer large files into and out of the guest filesystem, you "
5535 "need to use particular calls that support this.  The sections L</UPLOADING> "
5536 "and L</DOWNLOADING> document how to do this."
5537 msgstr ""
5538
5539 #. type: textblock
5540 #: ../src/guestfs.pod:2832
5541 msgid ""
5542 "You might also consider mounting the disk image using our FUSE filesystem "
5543 "support (L<guestmount(1)>)."
5544 msgstr ""
5545
5546 #. type: =head2
5547 #: ../src/guestfs.pod:2835
5548 msgid "MAXIMUM NUMBER OF DISKS"
5549 msgstr ""
5550
5551 #. type: textblock
5552 #: ../src/guestfs.pod:2837
5553 msgid ""
5554 "When using virtio disks (the default) the current limit is B<25> disks."
5555 msgstr ""
5556
5557 #. type: textblock
5558 #: ../src/guestfs.pod:2840
5559 msgid ""
5560 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31"
5561 " slots.  However febootstrap only understands disks with names C</dev/vda> "
5562 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5563 "purposes."
5564 msgstr ""
5565
5566 #. type: textblock
5567 #: ../src/guestfs.pod:2845
5568 msgid ""
5569 "We are working to substantially raise this limit in future versions but it "
5570 "requires complex changes to qemu."
5571 msgstr ""
5572
5573 #. type: textblock
5574 #: ../src/guestfs.pod:2848
5575 msgid ""
5576 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5577 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5578 "requires changes to qemu."
5579 msgstr ""
5580
5581 #. type: =head2
5582 #: ../src/guestfs.pod:2852
5583 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5584 msgstr ""
5585
5586 #. type: textblock
5587 #: ../src/guestfs.pod:2854
5588 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5589 msgstr ""
5590
5591 #. type: textblock
5592 #: ../src/guestfs.pod:2856
5593 msgid ""
5594 "This is because it reserves 4 bits for the minor device number (thus "
5595 "C</dev/vda>, and C</dev/vda1> through C</dev/vda15>)."
5596 msgstr ""
5597
5598 #. type: textblock
5599 #: ../src/guestfs.pod:2859
5600 msgid ""
5601 "If you attach a disk with more than 15 partitions, the extra partitions are "
5602 "ignored by libguestfs."
5603 msgstr ""
5604
5605 #. type: =head2
5606 #: ../src/guestfs.pod:2862
5607 msgid "MAXIMUM SIZE OF A DISK"
5608 msgstr ""
5609
5610 #. type: textblock
5611 #: ../src/guestfs.pod:2864
5612 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5613 msgstr ""
5614
5615 #. type: textblock
5616 #: ../src/guestfs.pod:2866
5617 msgid ""
5618 "We have tested block devices up to 1 exabyte (2**60 or "
5619 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5620 "filesystem."
5621 msgstr ""
5622
5623 #. type: textblock
5624 #: ../src/guestfs.pod:2870
5625 msgid ""
5626 "Although libguestfs probably does not impose any limit, the underlying host "
5627 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5628 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5629 "TB).  If you store disk images as host logical volumes then you are limited "
5630 "by the maximum size of an LV."
5631 msgstr ""
5632
5633 #. type: textblock
5634 #: ../src/guestfs.pod:2876
5635 msgid ""
5636 "For the hugest disk image files, we recommend using XFS on the host for "
5637 "storage."
5638 msgstr ""
5639
5640 #. type: =head2
5641 #: ../src/guestfs.pod:2879
5642 msgid "MAXIMUM SIZE OF A PARTITION"
5643 msgstr ""
5644
5645 #. type: textblock
5646 #: ../src/guestfs.pod:2881
5647 msgid ""
5648 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector numbers."
5649 "  Assuming a 512 byte sector size, this means that MBR cannot address a "
5650 "partition located beyond 2 TB on the disk."
5651 msgstr ""
5652
5653 #. type: textblock
5654 #: ../src/guestfs.pod:2885
5655 msgid ""
5656 "It is recommended that you use GPT partitions on disks which are larger than"
5657 " this size.  GPT uses 64 bit sector numbers and so can address partitions "
5658 "which are theoretically larger than the largest disk we could support."
5659 msgstr ""
5660
5661 #. type: =head2
5662 #: ../src/guestfs.pod:2890
5663 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5664 msgstr ""
5665
5666 #. type: textblock
5667 #: ../src/guestfs.pod:2892
5668 msgid ""
5669 "This depends on the filesystem type.  libguestfs itself does not impose any "
5670 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5671 "what these limits are."
5672 msgstr ""
5673
5674 #. type: =head2
5675 #: ../src/guestfs.pod:2896
5676 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5677 msgstr ""
5678
5679 #. type: textblock
5680 #: ../src/guestfs.pod:2898
5681 msgid ""
5682 "The API functions L</guestfs_upload>, L</guestfs_download>, "
5683 "L</guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5684 "uploads and downloads."
5685 msgstr ""
5686
5687 #. type: =head2
5688 #: ../src/guestfs.pod:2902
5689 msgid "INSPECTION LIMITS"
5690 msgstr ""
5691
5692 #. type: textblock
5693 #: ../src/guestfs.pod:2904
5694 msgid ""
5695 "The inspection code has several arbitrary limits on things like the size of "
5696 "Windows Registry hive it will read, and the length of product name.  These "
5697 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5698 "memory and disk space on the host, and should not be reached in practice.  "
5699 "See the source code for more information."
5700 msgstr ""
5701
5702 #. type: =head1
5703 #: ../src/guestfs.pod:2910 ../fish/guestfish.pod:1075
5704 #: ../test-tool/libguestfs-test-tool.pod:82
5705 msgid "ENVIRONMENT VARIABLES"
5706 msgstr ""
5707
5708 #. type: =item
5709 #: ../src/guestfs.pod:2914 ../fish/guestfish.pod:1106
5710 msgid "LIBGUESTFS_APPEND"
5711 msgstr ""
5712
5713 #. type: textblock
5714 #: ../src/guestfs.pod:2916 ../fish/guestfish.pod:1108
5715 msgid "Pass additional options to the guest kernel."
5716 msgstr ""
5717
5718 #. type: =item
5719 #: ../src/guestfs.pod:2918 ../fish/guestfish.pod:1110
5720 msgid "LIBGUESTFS_DEBUG"
5721 msgstr ""
5722
5723 #. type: textblock
5724 #: ../src/guestfs.pod:2920
5725 msgid ""
5726 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5727 "effect as calling C<guestfs_set_verbose (g, 1)>."
5728 msgstr ""
5729
5730 #. type: =item
5731 #: ../src/guestfs.pod:2923 ../fish/guestfish.pod:1115
5732 msgid "LIBGUESTFS_MEMSIZE"
5733 msgstr ""
5734
5735 #. type: textblock
5736 #: ../src/guestfs.pod:2925 ../fish/guestfish.pod:1117
5737 msgid ""
5738 "Set the memory allocated to the qemu process, in megabytes.  For example:"
5739 msgstr ""
5740
5741 #. type: verbatim
5742 #: ../src/guestfs.pod:2928 ../fish/guestfish.pod:1120
5743 #, no-wrap
5744 msgid ""
5745 " LIBGUESTFS_MEMSIZE=700\n"
5746 "\n"
5747 msgstr ""
5748
5749 #. type: =item
5750 #: ../src/guestfs.pod:2930 ../fish/guestfish.pod:1122
5751 msgid "LIBGUESTFS_PATH"
5752 msgstr ""
5753
5754 #. type: textblock
5755 #: ../src/guestfs.pod:2932
5756 msgid ""
5757 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5758 "the discussion of paths in section L</PATH> above."
5759 msgstr ""
5760
5761 #. type: =item
5762 #: ../src/guestfs.pod:2935 ../fish/guestfish.pod:1127
5763 msgid "LIBGUESTFS_QEMU"
5764 msgstr ""
5765
5766 #. type: textblock
5767 #: ../src/guestfs.pod:2937 ../fish/guestfish.pod:1129
5768 msgid ""
5769 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu"
5770 " which was found at compile time by the configure script is used."
5771 msgstr ""
5772
5773 #. type: textblock
5774 #: ../src/guestfs.pod:2941
5775 msgid "See also L</QEMU WRAPPERS> above."
5776 msgstr ""
5777
5778 #. type: =item
5779 #: ../src/guestfs.pod:2943 ../fish/guestfish.pod:1133
5780 msgid "LIBGUESTFS_TRACE"
5781 msgstr ""
5782
5783 #. type: textblock
5784 #: ../src/guestfs.pod:2945
5785 msgid ""
5786 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5787 "effect as calling C<guestfs_set_trace (g, 1)>."
5788 msgstr ""
5789
5790 #. type: =item
5791 #: ../src/guestfs.pod:2948 ../fish/guestfish.pod:1142
5792 msgid "TMPDIR"
5793 msgstr ""
5794
5795 #. type: textblock
5796 #: ../src/guestfs.pod:2950 ../fish/guestfish.pod:1144
5797 msgid ""
5798 "Location of temporary directory, defaults to C</tmp> except for the cached "
5799 "supermin appliance which defaults to C</var/tmp>."
5800 msgstr ""
5801
5802 #. type: textblock
5803 #: ../src/guestfs.pod:2953 ../fish/guestfish.pod:1147
5804 msgid ""
5805 "If libguestfs was compiled to use the supermin appliance then the real "
5806 "appliance is cached in this directory, shared between all handles belonging "
5807 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5808 "use in case C</var/tmp> is not large enough."
5809 msgstr ""
5810
5811 #. type: =head1
5812 #: ../src/guestfs.pod:2961 ../fish/guestfish.pod:1214
5813 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:279
5814 #: ../tools/virt-win-reg.pl:744 ../tools/virt-list-filesystems.pl:189
5815 #: ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:539
5816 #: ../tools/virt-list-partitions.pl:257
5817 msgid "SEE ALSO"
5818 msgstr ""
5819
5820 #. type: textblock
5821 #: ../src/guestfs.pod:2963
5822 msgid ""
5823 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L"
5824 "<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L"
5825 "<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L"
5826 "<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L"
5827 "<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-"
5828 "rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-"
5829 "win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, "
5830 "L<http://libguestfs.org/>."
5831 msgstr ""
5832
5833 #. type: textblock
5834 #: ../src/guestfs.pod:2990
5835 msgid ""
5836 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, "
5837 "L<lvm(8)>, L<disktype(1)>."
5838 msgstr ""
5839
5840 #. type: =head1
5841 #: ../src/guestfs.pod:2997 ../tools/virt-win-reg.pl:759
5842 #: ../tools/virt-make-fs.pl:553
5843 msgid "BUGS"
5844 msgstr ""
5845
5846 #. type: textblock
5847 #: ../src/guestfs.pod:2999
5848 msgid "To get a list of bugs against libguestfs use this link:"
5849 msgstr ""
5850
5851 #. type: textblock
5852 #: ../src/guestfs.pod:3001
5853 msgid ""
5854 "L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>"
5855 msgstr ""
5856
5857 #. type: textblock
5858 #: ../src/guestfs.pod:3003
5859 msgid "To report a new bug against libguestfs use this link:"
5860 msgstr ""
5861
5862 #. type: textblock
5863 #: ../src/guestfs.pod:3005
5864 msgid ""
5865 "L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>"
5866 msgstr ""
5867
5868 #. type: textblock
5869 #: ../src/guestfs.pod:3007
5870 msgid "When reporting a bug, please check:"
5871 msgstr ""
5872
5873 #. type: textblock
5874 #: ../src/guestfs.pod:3013
5875 msgid "That the bug hasn't been reported already."
5876 msgstr ""
5877
5878 #. type: textblock
5879 #: ../src/guestfs.pod:3017
5880 msgid "That you are testing a recent version."
5881 msgstr ""
5882
5883 #. type: textblock
5884 #: ../src/guestfs.pod:3021
5885 msgid "Describe the bug accurately, and give a way to reproduce it."
5886 msgstr ""
5887
5888 #. type: textblock
5889 #: ../src/guestfs.pod:3025
5890 msgid ""
5891 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the"
5892 " bug report."
5893 msgstr ""
5894
5895 #. type: =head1
5896 #: ../src/guestfs.pod:3030 ../fish/guestfish.pod:1238
5897 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:290
5898 msgid "AUTHORS"
5899 msgstr ""
5900
5901 #. type: textblock
5902 #: ../src/guestfs.pod:3032 ../fish/guestfish.pod:1240
5903 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:292
5904 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5905 msgstr ""
5906
5907 #. type: =head1
5908 #: ../src/guestfs.pod:3034 ../fish/guestfish.pod:1242
5909 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:294
5910 #: ../tools/virt-win-reg.pl:774 ../tools/virt-list-filesystems.pl:206
5911 #: ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:568
5912 #: ../tools/virt-list-partitions.pl:273
5913 msgid "COPYRIGHT"
5914 msgstr ""
5915
5916 #. type: textblock
5917 #: ../src/guestfs.pod:3036 ../fish/guestfish.pod:1244
5918 #: ../test-tool/libguestfs-test-tool.pod:99
5919 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5920 msgstr ""
5921
5922 #. type: textblock
5923 #: ../src/guestfs.pod:3039
5924 msgid ""
5925 "This library is free software; you can redistribute it and/or modify it "
5926 "under the terms of the GNU Lesser General Public License as published by the"
5927 " Free Software Foundation; either version 2 of the License, or (at your "
5928 "option) any later version."
5929 msgstr ""
5930
5931 #. type: textblock
5932 #: ../src/guestfs.pod:3044
5933 msgid ""
5934 "This library is distributed in the hope that it will be useful, but WITHOUT "
5935 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5936 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License"
5937 " for more details."
5938 msgstr ""
5939
5940 #. type: textblock
5941 #: ../src/guestfs.pod:3049
5942 msgid ""
5943 "You should have received a copy of the GNU Lesser General Public License "
5944 "along with this library; if not, write to the Free Software Foundation, "
5945 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5946 msgstr ""
5947
5948 #. type: =head2
5949 #: ../src/guestfs-actions.pod:1
5950 msgid "guestfs_add_cdrom"
5951 msgstr ""
5952
5953 #. type: verbatim
5954 #: ../src/guestfs-actions.pod:3
5955 #, no-wrap
5956 msgid ""
5957 " int\n"
5958 " guestfs_add_cdrom (guestfs_h *g,\n"
5959 "                    const char *filename);\n"
5960 "\n"
5961 msgstr ""
5962
5963 #. type: textblock
5964 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5965 msgid "This function adds a virtual CD-ROM disk image to the guest."
5966 msgstr ""
5967
5968 #. type: textblock
5969 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5970 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5971 msgstr ""
5972
5973 #. type: textblock
5974 #: ../src/guestfs-actions.pod:17
5975 msgid ""
5976 "This call checks for the existence of C<filename>.  This stops you from "
5977 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5978 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call"
5979 " instead."
5980 msgstr ""
5981
5982 #. type: textblock
5983 #: ../src/guestfs-actions.pod:24
5984 msgid ""
5985 "If you just want to add an ISO file (often you use this as an efficient way "
5986 "to transfer large files into the guest), then you should probably use "
5987 "C<guestfs_add_drive_ro> instead."
5988 msgstr ""
5989
5990 #. type: textblock
5991 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:140
5992 #: ../src/guestfs-actions.pod:201 ../src/guestfs-actions.pod:238
5993 #: ../src/guestfs-actions.pod:252 ../src/guestfs-actions.pod:273
5994 #: ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:307
5995 #: ../src/guestfs-actions.pod:422 ../src/guestfs-actions.pod:442
5996 #: ../src/guestfs-actions.pod:456 ../src/guestfs-actions.pod:501
5997 #: ../src/guestfs-actions.pod:529 ../src/guestfs-actions.pod:547
5998 #: ../src/guestfs-actions.pod:614 ../src/guestfs-actions.pod:647
5999 #: ../src/guestfs-actions.pod:661 ../src/guestfs-actions.pod:676
6000 #: ../src/guestfs-actions.pod:775 ../src/guestfs-actions.pod:793
6001 #: ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:821
6002 #: ../src/guestfs-actions.pod:858 ../src/guestfs-actions.pod:1041
6003 #: ../src/guestfs-actions.pod:1061 ../src/guestfs-actions.pod:1079
6004 #: ../src/guestfs-actions.pod:1163 ../src/guestfs-actions.pod:1181
6005 #: ../src/guestfs-actions.pod:1200 ../src/guestfs-actions.pod:1214
6006 #: ../src/guestfs-actions.pod:1234 ../src/guestfs-actions.pod:1304
6007 #: ../src/guestfs-actions.pod:1335 ../src/guestfs-actions.pod:1360
6008 #: ../src/guestfs-actions.pod:1402 ../src/guestfs-actions.pod:1508
6009 #: ../src/guestfs-actions.pod:1542 ../src/guestfs-actions.pod:1757
6010 #: ../src/guestfs-actions.pod:1779 ../src/guestfs-actions.pod:1866
6011 #: ../src/guestfs-actions.pod:2339 ../src/guestfs-actions.pod:2483
6012 #: ../src/guestfs-actions.pod:2544 ../src/guestfs-actions.pod:2579
6013 #: ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3634
6014 #: ../src/guestfs-actions.pod:3659 ../src/guestfs-actions.pod:3848
6015 #: ../src/guestfs-actions.pod:3862 ../src/guestfs-actions.pod:3875
6016 #: ../src/guestfs-actions.pod:3889 ../src/guestfs-actions.pod:3904
6017 #: ../src/guestfs-actions.pod:3940 ../src/guestfs-actions.pod:4012
6018 #: ../src/guestfs-actions.pod:4032 ../src/guestfs-actions.pod:4049
6019 #: ../src/guestfs-actions.pod:4072 ../src/guestfs-actions.pod:4095
6020 #: ../src/guestfs-actions.pod:4130 ../src/guestfs-actions.pod:4149
6021 #: ../src/guestfs-actions.pod:4168 ../src/guestfs-actions.pod:4203
6022 #: ../src/guestfs-actions.pod:4215 ../src/guestfs-actions.pod:4251
6023 #: ../src/guestfs-actions.pod:4267 ../src/guestfs-actions.pod:4280
6024 #: ../src/guestfs-actions.pod:4295 ../src/guestfs-actions.pod:4312
6025 #: ../src/guestfs-actions.pod:4405 ../src/guestfs-actions.pod:4425
6026 #: ../src/guestfs-actions.pod:4438 ../src/guestfs-actions.pod:4489
6027 #: ../src/guestfs-actions.pod:4507 ../src/guestfs-actions.pod:4525
6028 #: ../src/guestfs-actions.pod:4541 ../src/guestfs-actions.pod:4555
6029 #: ../src/guestfs-actions.pod:4569 ../src/guestfs-actions.pod:4586
6030 #: ../src/guestfs-actions.pod:4601 ../src/guestfs-actions.pod:4621
6031 #: ../src/guestfs-actions.pod:4691 ../src/guestfs-actions.pod:4764
6032 #: ../src/guestfs-actions.pod:4795 ../src/guestfs-actions.pod:4814
6033 #: ../src/guestfs-actions.pod:4833 ../src/guestfs-actions.pod:4845
6034 #: ../src/guestfs-actions.pod:4862 ../src/guestfs-actions.pod:4875
6035 #: ../src/guestfs-actions.pod:4890 ../src/guestfs-actions.pod:4905
6036 #: ../src/guestfs-actions.pod:4940 ../src/guestfs-actions.pod:4973
6037 #: ../src/guestfs-actions.pod:5012 ../src/guestfs-actions.pod:5032
6038 #: ../src/guestfs-actions.pod:5046 ../src/guestfs-actions.pod:5063
6039 #: ../src/guestfs-actions.pod:5112 ../src/guestfs-actions.pod:5158
6040 #: ../src/guestfs-actions.pod:5212 ../src/guestfs-actions.pod:5248
6041 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5300
6042 #: ../src/guestfs-actions.pod:5318 ../src/guestfs-actions.pod:5452
6043 #: ../src/guestfs-actions.pod:5509 ../src/guestfs-actions.pod:5531
6044 #: ../src/guestfs-actions.pod:5549 ../src/guestfs-actions.pod:5581
6045 #: ../src/guestfs-actions.pod:5647 ../src/guestfs-actions.pod:5664
6046 #: ../src/guestfs-actions.pod:5677 ../src/guestfs-actions.pod:5691
6047 #: ../src/guestfs-actions.pod:5980 ../src/guestfs-actions.pod:5999
6048 #: ../src/guestfs-actions.pod:6018 ../src/guestfs-actions.pod:6032
6049 #: ../src/guestfs-actions.pod:6044 ../src/guestfs-actions.pod:6058
6050 #: ../src/guestfs-actions.pod:6070 ../src/guestfs-actions.pod:6084
6051 #: ../src/guestfs-actions.pod:6100 ../src/guestfs-actions.pod:6121
6052 #: ../src/guestfs-actions.pod:6140 ../src/guestfs-actions.pod:6159
6053 #: ../src/guestfs-actions.pod:6189 ../src/guestfs-actions.pod:6207
6054 #: ../src/guestfs-actions.pod:6230 ../src/guestfs-actions.pod:6248
6055 #: ../src/guestfs-actions.pod:6267 ../src/guestfs-actions.pod:6288
6056 #: ../src/guestfs-actions.pod:6307 ../src/guestfs-actions.pod:6324
6057 #: ../src/guestfs-actions.pod:6343 ../src/guestfs-actions.pod:6369
6058 #: ../src/guestfs-actions.pod:6393 ../src/guestfs-actions.pod:6412
6059 #: ../src/guestfs-actions.pod:6436 ../src/guestfs-actions.pod:6455
6060 #: ../src/guestfs-actions.pod:6470 ../src/guestfs-actions.pod:6489
6061 #: ../src/guestfs-actions.pod:6526 ../src/guestfs-actions.pod:6556
6062 #: ../src/guestfs-actions.pod:6589 ../src/guestfs-actions.pod:6711
6063 #: ../src/guestfs-actions.pod:6832 ../src/guestfs-actions.pod:6844
6064 #: ../src/guestfs-actions.pod:6857 ../src/guestfs-actions.pod:6870
6065 #: ../src/guestfs-actions.pod:6892 ../src/guestfs-actions.pod:6905
6066 #: ../src/guestfs-actions.pod:6918 ../src/guestfs-actions.pod:6931
6067 #: ../src/guestfs-actions.pod:6946 ../src/guestfs-actions.pod:7005
6068 #: ../src/guestfs-actions.pod:7022 ../src/guestfs-actions.pod:7038
6069 #: ../src/guestfs-actions.pod:7054 ../src/guestfs-actions.pod:7071
6070 #: ../src/guestfs-actions.pod:7084 ../src/guestfs-actions.pod:7104
6071 #: ../src/guestfs-actions.pod:7140 ../src/guestfs-actions.pod:7154
6072 #: ../src/guestfs-actions.pod:7195 ../src/guestfs-actions.pod:7208
6073 #: ../src/guestfs-actions.pod:7226 ../src/guestfs-actions.pod:7260
6074 #: ../src/guestfs-actions.pod:7296 ../src/guestfs-actions.pod:7412
6075 #: ../src/guestfs-actions.pod:7427 ../src/guestfs-actions.pod:7441
6076 #: ../src/guestfs-actions.pod:7496 ../src/guestfs-actions.pod:7509
6077 #: ../src/guestfs-actions.pod:7554 ../src/guestfs-actions.pod:7587
6078 #: ../src/guestfs-actions.pod:7650 ../src/guestfs-actions.pod:7670
6079 #: ../src/guestfs-actions.pod:7694 ../src/guestfs-actions.pod:7761
6080 #: ../src/guestfs-actions.pod:7780 ../src/guestfs-actions.pod:7809
6081 msgid "This function returns 0 on success or -1 on error."
6082 msgstr ""
6083
6084 #. type: textblock
6085 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:254
6086 #: ../src/guestfs-actions.pod:275 ../fish/guestfish-actions.pod:28
6087 #: ../fish/guestfish-actions.pod:163 ../fish/guestfish-actions.pod:177
6088 msgid ""
6089 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6090 "instead."
6091 msgstr ""
6092
6093 #. type: textblock
6094 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257
6095 #: ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1513
6096 #: ../src/guestfs-actions.pod:2008 ../src/guestfs-actions.pod:2029
6097 #: ../src/guestfs-actions.pod:4626 ../src/guestfs-actions.pod:4945
6098 #: ../src/guestfs-actions.pod:5163 ../src/guestfs-actions.pod:5253
6099 #: ../src/guestfs-actions.pod:6534 ../src/guestfs-actions.pod:6564
6100 #: ../src/guestfs-actions.pod:6597 ../src/guestfs-actions.pod:6656
6101 #: ../src/guestfs-actions.pod:7592 ../src/guestfs-actions.pod:7702
6102 #: ../src/guestfs-actions.pod:7872 ../fish/guestfish-actions.pod:31
6103 #: ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180
6104 #: ../fish/guestfish-actions.pod:986 ../fish/guestfish-actions.pod:1346
6105 #: ../fish/guestfish-actions.pod:1360 ../fish/guestfish-actions.pod:3085
6106 #: ../fish/guestfish-actions.pod:3292 ../fish/guestfish-actions.pod:3406
6107 #: ../fish/guestfish-actions.pod:3454 ../fish/guestfish-actions.pod:4349
6108 #: ../fish/guestfish-actions.pod:4372 ../fish/guestfish-actions.pod:4394
6109 #: ../fish/guestfish-actions.pod:4432 ../fish/guestfish-actions.pod:5081
6110 #: ../fish/guestfish-actions.pod:5179
6111 msgid ""
6112 "Deprecated functions will not be removed from the API, but the fact that "
6113 "they are deprecated indicates that there are problems with correct use of "
6114 "these functions."
6115 msgstr ""
6116
6117 #. type: textblock
6118 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142
6119 #: ../src/guestfs-actions.pod:1165 ../src/guestfs-actions.pod:1980
6120 #: ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:2190
6121 #: ../src/guestfs-actions.pod:3621 ../src/guestfs-actions.pod:3641
6122 #: ../src/guestfs-actions.pod:4949 ../src/guestfs-actions.pod:6209
6123 #: ../src/guestfs-actions.pod:6326 ../src/guestfs-actions.pod:6457
6124 #: ../src/guestfs-actions.pod:6948 ../src/guestfs-actions.pod:7073
6125 #: ../src/guestfs-actions.pod:7596
6126 msgid "(Added in 0.3)"
6127 msgstr ""
6128
6129 #. type: =head2
6130 #: ../src/guestfs-actions.pod:41
6131 msgid "guestfs_add_domain"
6132 msgstr ""
6133
6134 #. type: verbatim
6135 #: ../src/guestfs-actions.pod:43
6136 #, no-wrap
6137 msgid ""
6138 " int\n"
6139 " guestfs_add_domain (guestfs_h *g,\n"
6140 "                     const char *dom,\n"
6141 "                     ...);\n"
6142 "\n"
6143 msgstr ""
6144
6145 #. type: textblock
6146 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151
6147 #: ../src/guestfs-actions.pod:832 ../src/guestfs-actions.pod:2824
6148 #: ../src/guestfs-actions.pod:4640 ../src/guestfs-actions.pod:4959
6149 #: ../src/guestfs-actions.pod:5176
6150 msgid ""
6151 "You may supply a list of optional arguments to this call.  Use zero or more "
6152 "of the following pairs of parameters, and terminate the list with C<-1> on "
6153 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6154 msgstr ""
6155
6156 #. type: verbatim
6157 #: ../src/guestfs-actions.pod:53
6158 #, no-wrap
6159 msgid ""
6160 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6161 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6162 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6163 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6164 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
6165 "\n"
6166 msgstr ""
6167
6168 #. type: textblock
6169 #: ../src/guestfs-actions.pod:59
6170 msgid ""
6171 "This function adds the disk(s) attached to the named libvirt domain C<dom>."
6172 "  It works by connecting to libvirt, requesting the domain and domain XML "
6173 "from libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on"
6174 " each one."
6175 msgstr ""
6176
6177 #. type: textblock
6178 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
6179 msgid ""
6180 "The number of disks added is returned.  This operation is atomic: if an "
6181 "error is returned, then no disks are added."
6182 msgstr ""
6183
6184 #. type: textblock
6185 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
6186 msgid ""
6187 "This function does some minimal checks to make sure the libvirt domain is "
6188 "not running (unless C<readonly> is true).  In a future version we will try "
6189 "to acquire the libvirt lock on each disk."
6190 msgstr ""
6191
6192 #. type: textblock
6193 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
6194 msgid ""
6195 "Disks must be accessible locally.  This often means that adding disks from a"
6196 " remote libvirt connection (see L<http://libvirt.org/remote.html>)  will "
6197 "fail unless those disks are accessible via the same device path locally too."
6198 msgstr ""
6199
6200 #. type: textblock
6201 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
6202 msgid ""
6203 "The optional C<libvirturi> parameter sets the libvirt URI (see "
6204 "L<http://libvirt.org/uri.html>).  If this is not set then we connect to the "
6205 "default libvirt URI (or one set through an environment variable, see the "
6206 "libvirt documentation for full details)."
6207 msgstr ""
6208
6209 #. type: textblock
6210 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
6211 msgid ""
6212 "The optional C<live> flag controls whether this call will try to connect to "
6213 "a running virtual machine C<guestfsd> process if it sees a suitable "
6214 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6215 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING"
6216 " DAEMONS> for more information."
6217 msgstr ""
6218
6219 #. type: textblock
6220 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
6221 msgid ""
6222 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
6223 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
6224 "first and looked up, and if that lookup fails then we treat C<dom> as a name"
6225 " as usual."
6226 msgstr ""
6227
6228 #. type: textblock
6229 #: ../src/guestfs-actions.pod:94
6230 msgid ""
6231 "The other optional parameters are passed directly through to "
6232 "C<guestfs_add_drive_opts>."
6233 msgstr ""
6234
6235 #. type: textblock
6236 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350
6237 #: ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693
6238 #: ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742
6239 #: ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1380
6240 #: ../src/guestfs-actions.pod:1736 ../src/guestfs-actions.pod:1939
6241 #: ../src/guestfs-actions.pod:2050 ../src/guestfs-actions.pod:2099
6242 #: ../src/guestfs-actions.pod:2154 ../src/guestfs-actions.pod:2177
6243 #: ../src/guestfs-actions.pod:2470 ../src/guestfs-actions.pod:2942
6244 #: ../src/guestfs-actions.pod:2960 ../src/guestfs-actions.pod:5135
6245 #: ../src/guestfs-actions.pod:5355 ../src/guestfs-actions.pod:5761
6246 #: ../src/guestfs-actions.pod:5787 ../src/guestfs-actions.pod:7181
6247 #: ../src/guestfs-actions.pod:7607 ../src/guestfs-actions.pod:7620
6248 #: ../src/guestfs-actions.pod:7633
6249 msgid "On error this function returns -1."
6250 msgstr ""
6251
6252 #. type: textblock
6253 #: ../src/guestfs-actions.pod:99
6254 msgid "(Added in 1.7.4)"
6255 msgstr ""
6256
6257 #. type: =head2
6258 #: ../src/guestfs-actions.pod:101
6259 msgid "guestfs_add_domain_va"
6260 msgstr ""
6261
6262 #. type: verbatim
6263 #: ../src/guestfs-actions.pod:103
6264 #, no-wrap
6265 msgid ""
6266 " int\n"
6267 " guestfs_add_domain_va (guestfs_h *g,\n"
6268 "                        const char *dom,\n"
6269 "                        va_list args);\n"
6270 "\n"
6271 msgstr ""
6272
6273 #. type: textblock
6274 #: ../src/guestfs-actions.pod:108
6275 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6276 msgstr ""
6277
6278 #. type: textblock
6279 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121
6280 #: ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225
6281 #: ../src/guestfs-actions.pod:871 ../src/guestfs-actions.pod:882
6282 #: ../src/guestfs-actions.pod:2908 ../src/guestfs-actions.pod:2920
6283 #: ../src/guestfs-actions.pod:4705 ../src/guestfs-actions.pod:4717
6284 #: ../src/guestfs-actions.pod:4987 ../src/guestfs-actions.pod:4999
6285 #: ../src/guestfs-actions.pod:5225 ../src/guestfs-actions.pod:5236
6286 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6287 msgstr ""
6288
6289 #. type: =head2
6290 #: ../src/guestfs-actions.pod:112
6291 msgid "guestfs_add_domain_argv"
6292 msgstr ""
6293
6294 #. type: verbatim
6295 #: ../src/guestfs-actions.pod:114
6296 #, no-wrap
6297 msgid ""
6298 " int\n"
6299 " guestfs_add_domain_argv (guestfs_h *g,\n"
6300 "                          const char *dom,\n"
6301 "                          const struct guestfs_add_domain_argv *optargs);\n"
6302 "\n"
6303 msgstr ""
6304
6305 #. type: textblock
6306 #: ../src/guestfs-actions.pod:119
6307 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6308 msgstr ""
6309
6310 #. type: =head2
6311 #: ../src/guestfs-actions.pod:123
6312 msgid "guestfs_add_drive"
6313 msgstr ""
6314
6315 #. type: verbatim
6316 #: ../src/guestfs-actions.pod:125
6317 #, no-wrap
6318 msgid ""
6319 " int\n"
6320 " guestfs_add_drive (guestfs_h *g,\n"
6321 "                    const char *filename);\n"
6322 "\n"
6323 msgstr ""
6324
6325 #. type: textblock
6326 #: ../src/guestfs-actions.pod:129
6327 msgid ""
6328 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no"
6329 " optional parameters, so the disk is added writable, with the format being "
6330 "detected automatically."
6331 msgstr ""
6332
6333 #. type: textblock
6334 #: ../src/guestfs-actions.pod:133
6335 msgid ""
6336 "Automatic detection of the format opens you up to a potential security hole "
6337 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6338 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6339 "you should think about replacing calls to this function with calls to "
6340 "C<guestfs_add_drive_opts>, and specifying the format."
6341 msgstr ""
6342
6343 #. type: =head2
6344 #: ../src/guestfs-actions.pod:144
6345 msgid "guestfs_add_drive_opts"
6346 msgstr ""
6347
6348 #. type: verbatim
6349 #: ../src/guestfs-actions.pod:146
6350 #, no-wrap
6351 msgid ""
6352 " int\n"
6353 " guestfs_add_drive_opts (guestfs_h *g,\n"
6354 "                         const char *filename,\n"
6355 "                         ...);\n"
6356 "\n"
6357 msgstr ""
6358
6359 #. type: verbatim
6360 #: ../src/guestfs-actions.pod:156
6361 #, no-wrap
6362 msgid ""
6363 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6364 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6365 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6366 "\n"
6367 msgstr ""
6368
6369 #. type: textblock
6370 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6371 msgid ""
6372 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6373 "The first time you call this function, the disk appears as C</dev/sda>, the "
6374 "second time as C</dev/sdb>, and so on."
6375 msgstr ""
6376
6377 #. type: textblock
6378 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6379 msgid ""
6380 "You don't necessarily need to be root when using libguestfs.  However you "
6381 "obviously do need sufficient permissions to access the filename for whatever"
6382 " operations you want to perform (ie. read access if you just want to read "
6383 "the image or write access if you want to modify the image)."
6384 msgstr ""
6385
6386 #. type: textblock
6387 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6388 msgid "This call checks that C<filename> exists."
6389 msgstr ""
6390
6391 #. type: textblock
6392 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4653
6393 #: ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3096
6394 msgid "The optional arguments are:"
6395 msgstr ""
6396
6397 #. type: =item
6398 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6399 msgid "C<readonly>"
6400 msgstr ""
6401
6402 #. type: textblock
6403 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6404 msgid ""
6405 "If true then the image is treated as read-only.  Writes are still allowed, "
6406 "but they are stored in a temporary snapshot overlay which is discarded at "
6407 "the end.  The disk that you add is not modified."
6408 msgstr ""
6409
6410 #. type: =item
6411 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6412 msgid "C<format>"
6413 msgstr ""
6414
6415 #. type: textblock
6416 #: ../src/guestfs-actions.pod:185
6417 msgid ""
6418 "This forces the image format.  If you omit this (or use C<guestfs_add_drive>"
6419 " or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6420 "Possible formats include C<raw> and C<qcow2>."
6421 msgstr ""
6422
6423 #. type: textblock
6424 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6425 msgid ""
6426 "Automatic detection of the format opens you up to a potential security hole "
6427 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6428 "RHBZ#642934.  Specifying the format closes this security hole."
6429 msgstr ""
6430
6431 #. type: =item
6432 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6433 msgid "C<iface>"
6434 msgstr ""
6435
6436 #. type: textblock
6437 #: ../src/guestfs-actions.pod:196
6438 msgid ""
6439 "This rarely-used option lets you emulate the behaviour of the deprecated "
6440 "C<guestfs_add_drive_with_if> call (q.v.)"
6441 msgstr ""
6442
6443 #. type: textblock
6444 #: ../src/guestfs-actions.pod:203
6445 msgid "(Added in 1.5.23)"
6446 msgstr ""
6447
6448 #. type: =head2
6449 #: ../src/guestfs-actions.pod:205
6450 msgid "guestfs_add_drive_opts_va"
6451 msgstr ""
6452
6453 #. type: verbatim
6454 #: ../src/guestfs-actions.pod:207
6455 #, no-wrap
6456 msgid ""
6457 " int\n"
6458 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6459 "                            const char *filename,\n"
6460 "                            va_list args);\n"
6461 "\n"
6462 msgstr ""
6463
6464 #. type: textblock
6465 #: ../src/guestfs-actions.pod:212
6466 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6467 msgstr ""
6468
6469 #. type: =head2
6470 #: ../src/guestfs-actions.pod:216
6471 msgid "guestfs_add_drive_opts_argv"
6472 msgstr ""
6473
6474 #. type: verbatim
6475 #: ../src/guestfs-actions.pod:218
6476 #, no-wrap
6477 msgid ""
6478 " int\n"
6479 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6480 "                              const char *filename,\n"
6481 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6482 "\n"
6483 msgstr ""
6484
6485 #. type: textblock
6486 #: ../src/guestfs-actions.pod:223
6487 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6488 msgstr ""
6489
6490 #. type: =head2
6491 #: ../src/guestfs-actions.pod:227
6492 msgid "guestfs_add_drive_ro"
6493 msgstr ""
6494
6495 #. type: verbatim
6496 #: ../src/guestfs-actions.pod:229
6497 #, no-wrap
6498 msgid ""
6499 " int\n"
6500 " guestfs_add_drive_ro (guestfs_h *g,\n"
6501 "                       const char *filename);\n"
6502 "\n"
6503 msgstr ""
6504
6505 #. type: textblock
6506 #: ../src/guestfs-actions.pod:233
6507 msgid ""
6508 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6509 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6510 "disk is added read-only, with the format being detected automatically."
6511 msgstr ""
6512
6513 #. type: textblock
6514 #: ../src/guestfs-actions.pod:240
6515 msgid "(Added in 1.0.38)"
6516 msgstr ""
6517
6518 #. type: =head2
6519 #: ../src/guestfs-actions.pod:242
6520 msgid "guestfs_add_drive_ro_with_if"
6521 msgstr ""
6522
6523 #. type: verbatim
6524 #: ../src/guestfs-actions.pod:244
6525 #, no-wrap
6526 msgid ""
6527 " int\n"
6528 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6529 "                               const char *filename,\n"
6530 "                               const char *iface);\n"
6531 "\n"
6532 msgstr ""
6533
6534 #. type: textblock
6535 #: ../src/guestfs-actions.pod:249
6536 msgid ""
6537 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the"
6538 " QEMU interface emulation to use at run time."
6539 msgstr ""
6540
6541 #. type: textblock
6542 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282
6543 #: ../src/guestfs-actions.pod:2429
6544 msgid "(Added in 1.0.84)"
6545 msgstr ""
6546
6547 #. type: =head2
6548 #: ../src/guestfs-actions.pod:263
6549 msgid "guestfs_add_drive_with_if"
6550 msgstr ""
6551
6552 #. type: verbatim
6553 #: ../src/guestfs-actions.pod:265
6554 #, no-wrap
6555 msgid ""
6556 " int\n"
6557 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6558 "                            const char *filename,\n"
6559 "                            const char *iface);\n"
6560 "\n"
6561 msgstr ""
6562
6563 #. type: textblock
6564 #: ../src/guestfs-actions.pod:270
6565 msgid ""
6566 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6567 "QEMU interface emulation to use at run time."
6568 msgstr ""
6569
6570 #. type: =head2
6571 #: ../src/guestfs-actions.pod:284
6572 msgid "guestfs_aug_clear"
6573 msgstr ""
6574
6575 #. type: verbatim
6576 #: ../src/guestfs-actions.pod:286
6577 #, no-wrap
6578 msgid ""
6579 " int\n"
6580 " guestfs_aug_clear (guestfs_h *g,\n"
6581 "                    const char *augpath);\n"
6582 "\n"
6583 msgstr ""
6584
6585 #. type: textblock
6586 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6587 msgid ""
6588 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6589 "L<augtool(1)> C<clear> command."
6590 msgstr ""
6591
6592 #. type: textblock
6593 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2179
6594 msgid "(Added in 1.3.4)"
6595 msgstr ""
6596
6597 #. type: =head2
6598 #: ../src/guestfs-actions.pod:297
6599 msgid "guestfs_aug_close"
6600 msgstr ""
6601
6602 #. type: verbatim
6603 #: ../src/guestfs-actions.pod:299
6604 #, no-wrap
6605 msgid ""
6606 " int\n"
6607 " guestfs_aug_close (guestfs_h *g);\n"
6608 "\n"
6609 msgstr ""
6610
6611 #. type: textblock
6612 #: ../src/guestfs-actions.pod:302
6613 msgid ""
6614 "Close the current Augeas handle and free up any resources used by it.  After"
6615 " calling this, you have to call C<guestfs_aug_init> again before you can use"
6616 " any other Augeas functions."
6617 msgstr ""
6618
6619 #. type: textblock
6620 #: ../src/guestfs-actions.pod:309 ../src/guestfs-actions.pod:334
6621 #: ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:366
6622 #: ../src/guestfs-actions.pod:424 ../src/guestfs-actions.pod:444
6623 #: ../src/guestfs-actions.pod:458 ../src/guestfs-actions.pod:489
6624 #: ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517
6625 #: ../src/guestfs-actions.pod:531 ../src/guestfs-actions.pod:549
6626 #: ../src/guestfs-actions.pod:5838
6627 msgid "(Added in 0.7)"
6628 msgstr ""
6629
6630 #. type: =head2
6631 #: ../src/guestfs-actions.pod:311
6632 msgid "guestfs_aug_defnode"
6633 msgstr ""
6634
6635 #. type: verbatim
6636 #: ../src/guestfs-actions.pod:313
6637 #, no-wrap
6638 msgid ""
6639 " struct guestfs_int_bool *\n"
6640 " guestfs_aug_defnode (guestfs_h *g,\n"
6641 "                      const char *name,\n"
6642 "                      const char *expr,\n"
6643 "                      const char *val);\n"
6644 "\n"
6645 msgstr ""
6646
6647 #. type: textblock
6648 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6649 msgid ""
6650 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6651 msgstr ""
6652
6653 #. type: textblock
6654 #: ../src/guestfs-actions.pod:322
6655 msgid ""
6656 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6657 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6658 "containing that single node."
6659 msgstr ""
6660
6661 #. type: textblock
6662 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6663 msgid ""
6664 "On success this returns a pair containing the number of nodes in the "
6665 "nodeset, and a boolean flag if a node was created."
6666 msgstr ""
6667
6668 #. type: textblock
6669 #: ../src/guestfs-actions.pod:330
6670 msgid ""
6671 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6672 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6673 msgstr ""
6674
6675 #. type: =head2
6676 #: ../src/guestfs-actions.pod:336
6677 msgid "guestfs_aug_defvar"
6678 msgstr ""
6679
6680 #. type: verbatim
6681 #: ../src/guestfs-actions.pod:338
6682 #, no-wrap
6683 msgid ""
6684 " int\n"
6685 " guestfs_aug_defvar (guestfs_h *g,\n"
6686 "                     const char *name,\n"
6687 "                     const char *expr);\n"
6688 "\n"
6689 msgstr ""
6690
6691 #. type: textblock
6692 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6693 msgid ""
6694 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6695 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6696 msgstr ""
6697
6698 #. type: textblock
6699 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6700 msgid ""
6701 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6702 "evaluates to something which is not a nodeset."
6703 msgstr ""
6704
6705 #. type: =head2
6706 #: ../src/guestfs-actions.pod:354
6707 msgid "guestfs_aug_get"
6708 msgstr ""
6709
6710 #. type: verbatim
6711 #: ../src/guestfs-actions.pod:356
6712 #, no-wrap
6713 msgid ""
6714 " char *\n"
6715 " guestfs_aug_get (guestfs_h *g,\n"
6716 "                  const char *augpath);\n"
6717 "\n"
6718 msgstr ""
6719
6720 #. type: textblock
6721 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6722 msgid ""
6723 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6724 "node, the C<value> is returned."
6725 msgstr ""
6726
6727 #. type: textblock
6728 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:922
6729 #: ../src/guestfs-actions.pod:940 ../src/guestfs-actions.pod:1000
6730 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1119
6731 #: ../src/guestfs-actions.pod:1249 ../src/guestfs-actions.pod:1266
6732 #: ../src/guestfs-actions.pod:1285 ../src/guestfs-actions.pod:1419
6733 #: ../src/guestfs-actions.pod:1607 ../src/guestfs-actions.pod:1719
6734 #: ../src/guestfs-actions.pod:1882 ../src/guestfs-actions.pod:1899
6735 #: ../src/guestfs-actions.pod:1966 ../src/guestfs-actions.pod:2002
6736 #: ../src/guestfs-actions.pod:2023 ../src/guestfs-actions.pod:2202
6737 #: ../src/guestfs-actions.pod:2394 ../src/guestfs-actions.pod:2598
6738 #: ../src/guestfs-actions.pod:2688 ../src/guestfs-actions.pod:2792
6739 #: ../src/guestfs-actions.pod:2811 ../src/guestfs-actions.pod:3025
6740 #: ../src/guestfs-actions.pod:3053 ../src/guestfs-actions.pod:3074
6741 #: ../src/guestfs-actions.pod:3108 ../src/guestfs-actions.pod:3167
6742 #: ../src/guestfs-actions.pod:3187 ../src/guestfs-actions.pod:3207
6743 #: ../src/guestfs-actions.pod:3834 ../src/guestfs-actions.pod:4187
6744 #: ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4467
6745 #: ../src/guestfs-actions.pod:5373 ../src/guestfs-actions.pod:5566
6746 #: ../src/guestfs-actions.pod:5736 ../src/guestfs-actions.pod:5914
6747 #: ../src/guestfs-actions.pod:5963 ../src/guestfs-actions.pod:6617
6748 #: ../src/guestfs-actions.pod:6633 ../src/guestfs-actions.pod:6650
6749 #: ../src/guestfs-actions.pod:6681 ../src/guestfs-actions.pod:7355
6750 #: ../src/guestfs-actions.pod:7374 ../src/guestfs-actions.pod:7392
6751 #: ../src/guestfs-actions.pod:7566 ../src/guestfs-actions.pod:7866
6752 msgid ""
6753 "This function returns a string, or NULL on error.  I<The caller must free "
6754 "the returned string after use>."
6755 msgstr ""
6756
6757 #. type: =head2
6758 #: ../src/guestfs-actions.pod:368
6759 msgid "guestfs_aug_init"
6760 msgstr ""
6761
6762 #. type: verbatim
6763 #: ../src/guestfs-actions.pod:370
6764 #, no-wrap
6765 msgid ""
6766 " int\n"
6767 " guestfs_aug_init (guestfs_h *g,\n"
6768 "                   const char *root,\n"
6769 "                   int flags);\n"
6770 "\n"
6771 msgstr ""
6772
6773 #. type: textblock
6774 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6775 msgid ""
6776 "Create a new Augeas handle for editing configuration files.  If there was "
6777 "any previous Augeas handle associated with this guestfs session, then it is "
6778 "closed."
6779 msgstr ""
6780
6781 #. type: textblock
6782 #: ../src/guestfs-actions.pod:379
6783 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6784 msgstr ""
6785
6786 #. type: textblock
6787 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6788 msgid ""
6789 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6790 msgstr ""
6791
6792 #. type: textblock
6793 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6794 msgid ""
6795 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6796 "logical I<or> of the following integers:"
6797 msgstr ""
6798
6799 #. type: =item
6800 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6801 msgid "C<AUG_SAVE_BACKUP> = 1"
6802 msgstr ""
6803
6804 #. type: textblock
6805 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6806 msgid "Keep the original file with a C<.augsave> extension."
6807 msgstr ""
6808
6809 #. type: =item
6810 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6811 msgid "C<AUG_SAVE_NEWFILE> = 2"
6812 msgstr ""
6813
6814 #. type: textblock
6815 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6816 msgid ""
6817 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6818 "original.  Overrides C<AUG_SAVE_BACKUP>."
6819 msgstr ""
6820
6821 #. type: =item
6822 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6823 msgid "C<AUG_TYPE_CHECK> = 4"
6824 msgstr ""
6825
6826 #. type: textblock
6827 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6828 msgid "Typecheck lenses (can be expensive)."
6829 msgstr ""
6830
6831 #. type: =item
6832 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6833 msgid "C<AUG_NO_STDINC> = 8"
6834 msgstr ""
6835
6836 #. type: textblock
6837 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6838 msgid "Do not use standard load path for modules."
6839 msgstr ""
6840
6841 #. type: =item
6842 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6843 msgid "C<AUG_SAVE_NOOP> = 16"
6844 msgstr ""
6845
6846 #. type: textblock
6847 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6848 msgid "Make save a no-op, just record what would have been changed."
6849 msgstr ""
6850
6851 #. type: =item
6852 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6853 msgid "C<AUG_NO_LOAD> = 32"
6854 msgstr ""
6855
6856 #. type: textblock
6857 #: ../src/guestfs-actions.pod:414
6858 msgid "Do not load the tree in C<guestfs_aug_init>."
6859 msgstr ""
6860
6861 #. type: textblock
6862 #: ../src/guestfs-actions.pod:418
6863 msgid "To close the handle, you can call C<guestfs_aug_close>."
6864 msgstr ""
6865
6866 #. type: textblock
6867 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6868 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6869 msgstr ""
6870
6871 #. type: =head2
6872 #: ../src/guestfs-actions.pod:426
6873 msgid "guestfs_aug_insert"
6874 msgstr ""
6875
6876 #. type: verbatim
6877 #: ../src/guestfs-actions.pod:428
6878 #, no-wrap
6879 msgid ""
6880 " int\n"
6881 " guestfs_aug_insert (guestfs_h *g,\n"
6882 "                     const char *augpath,\n"
6883 "                     const char *label,\n"
6884 "                     int before);\n"
6885 "\n"
6886 msgstr ""
6887
6888 #. type: textblock
6889 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6890 msgid ""
6891 "Create a new sibling C<label> for C<path>, inserting it into the tree before"
6892 " or after C<path> (depending on the boolean flag C<before>)."
6893 msgstr ""
6894
6895 #. type: textblock
6896 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6897 msgid ""
6898 "C<path> must match exactly one existing node in the tree, and C<label> must "
6899 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6900 msgstr ""
6901
6902 #. type: =head2
6903 #: ../src/guestfs-actions.pod:446
6904 msgid "guestfs_aug_load"
6905 msgstr ""
6906
6907 #. type: verbatim
6908 #: ../src/guestfs-actions.pod:448
6909 #, no-wrap
6910 msgid ""
6911 " int\n"
6912 " guestfs_aug_load (guestfs_h *g);\n"
6913 "\n"
6914 msgstr ""
6915
6916 #. type: textblock
6917 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6918 msgid "Load files into the tree."
6919 msgstr ""
6920
6921 #. type: textblock
6922 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6923 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6924 msgstr ""
6925
6926 #. type: =head2
6927 #: ../src/guestfs-actions.pod:460
6928 msgid "guestfs_aug_ls"
6929 msgstr ""
6930
6931 #. type: verbatim
6932 #: ../src/guestfs-actions.pod:462
6933 #, no-wrap
6934 msgid ""
6935 " char **\n"
6936 " guestfs_aug_ls (guestfs_h *g,\n"
6937 "                 const char *augpath);\n"
6938 "\n"
6939 msgstr ""
6940
6941 #. type: textblock
6942 #: ../src/guestfs-actions.pod:466
6943 msgid ""
6944 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6945 "sorting the resulting nodes into alphabetical order."
6946 msgstr ""
6947
6948 #. type: textblock
6949 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485
6950 #: ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1138
6951 #: ../src/guestfs-actions.pod:1434 ../src/guestfs-actions.pod:1453
6952 #: ../src/guestfs-actions.pod:1556 ../src/guestfs-actions.pod:1575
6953 #: ../src/guestfs-actions.pod:1821 ../src/guestfs-actions.pod:2274
6954 #: ../src/guestfs-actions.pod:2290 ../src/guestfs-actions.pod:2309
6955 #: ../src/guestfs-actions.pod:2352 ../src/guestfs-actions.pod:2376
6956 #: ../src/guestfs-actions.pod:2447 ../src/guestfs-actions.pod:2496
6957 #: ../src/guestfs-actions.pod:2753 ../src/guestfs-actions.pod:3127
6958 #: ../src/guestfs-actions.pod:3403 ../src/guestfs-actions.pod:3717
6959 #: ../src/guestfs-actions.pod:3734 ../src/guestfs-actions.pod:3754
6960 #: ../src/guestfs-actions.pod:3816 ../src/guestfs-actions.pod:3921
6961 #: ../src/guestfs-actions.pod:4329 ../src/guestfs-actions.pod:5096
6962 #: ../src/guestfs-actions.pod:5708 ../src/guestfs-actions.pod:5834
6963 #: ../src/guestfs-actions.pod:5948 ../src/guestfs-actions.pod:6697
6964 #: ../src/guestfs-actions.pod:6758 ../src/guestfs-actions.pod:6813
6965 #: ../src/guestfs-actions.pod:6959 ../src/guestfs-actions.pod:6983
6966 #: ../src/guestfs-actions.pod:7459 ../src/guestfs-actions.pod:7479
6967 #: ../src/guestfs-actions.pod:7526 ../src/guestfs-actions.pod:7718
6968 #: ../src/guestfs-actions.pod:7737 ../src/guestfs-actions.pod:7823
6969 #: ../src/guestfs-actions.pod:7842 ../src/guestfs-actions.pod:7888
6970 #: ../src/guestfs-actions.pod:7907
6971 msgid ""
6972 "This function returns a NULL-terminated array of strings (like "
6973 "L<environ(3)>), or NULL if there was an error.  I<The caller must free the "
6974 "strings and the array after use>."
6975 msgstr ""
6976
6977 #. type: textblock
6978 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1063
6979 #: ../src/guestfs-actions.pod:1081 ../src/guestfs-actions.pod:1491
6980 #: ../src/guestfs-actions.pod:3481 ../src/guestfs-actions.pod:3512
6981 #: ../src/guestfs-actions.pod:4170 ../src/guestfs-actions.pod:4220
6982 #: ../src/guestfs-actions.pod:4407 ../src/guestfs-actions.pod:4440
6983 #: ../src/guestfs-actions.pod:4603 ../src/guestfs-actions.pod:5100
6984 #: ../src/guestfs-actions.pod:5649 ../src/guestfs-actions.pod:6046
6985 #: ../src/guestfs-actions.pod:6060 ../src/guestfs-actions.pod:6072
6986 #: ../src/guestfs-actions.pod:6538 ../src/guestfs-actions.pod:7197
6987 #: ../src/guestfs-actions.pod:7210 ../src/guestfs-actions.pod:7443
6988 #: ../src/guestfs-actions.pod:7706
6989 msgid "(Added in 0.8)"
6990 msgstr ""
6991
6992 #. type: =head2
6993 #: ../src/guestfs-actions.pod:475
6994 msgid "guestfs_aug_match"
6995 msgstr ""
6996
6997 #. type: verbatim
6998 #: ../src/guestfs-actions.pod:477
6999 #, no-wrap
7000 msgid ""
7001 " char **\n"
7002 " guestfs_aug_match (guestfs_h *g,\n"
7003 "                    const char *augpath);\n"
7004 "\n"
7005 msgstr ""
7006
7007 #. type: textblock
7008 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
7009 msgid ""
7010 "Returns a list of paths which match the path expression C<path>.  The "
7011 "returned paths are sufficiently qualified so that they match exactly one "
7012 "node in the current tree."
7013 msgstr ""
7014
7015 #. type: =head2
7016 #: ../src/guestfs-actions.pod:491
7017 msgid "guestfs_aug_mv"
7018 msgstr ""
7019
7020 #. type: verbatim
7021 #: ../src/guestfs-actions.pod:493
7022 #, no-wrap
7023 msgid ""
7024 " int\n"
7025 " guestfs_aug_mv (guestfs_h *g,\n"
7026 "                 const char *src,\n"
7027 "                 const char *dest);\n"
7028 "\n"
7029 msgstr ""
7030
7031 #. type: textblock
7032 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
7033 msgid ""
7034 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
7035 "C<dest> is overwritten if it exists."
7036 msgstr ""
7037
7038 #. type: =head2
7039 #: ../src/guestfs-actions.pod:505
7040 msgid "guestfs_aug_rm"
7041 msgstr ""
7042
7043 #. type: verbatim
7044 #: ../src/guestfs-actions.pod:507
7045 #, no-wrap
7046 msgid ""
7047 " int\n"
7048 " guestfs_aug_rm (guestfs_h *g,\n"
7049 "                 const char *augpath);\n"
7050 "\n"
7051 msgstr ""
7052
7053 #. type: textblock
7054 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
7055 msgid "Remove C<path> and all of its children."
7056 msgstr ""
7057
7058 #. type: textblock
7059 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
7060 msgid "On success this returns the number of entries which were removed."
7061 msgstr ""
7062
7063 #. type: =head2
7064 #: ../src/guestfs-actions.pod:519
7065 msgid "guestfs_aug_save"
7066 msgstr ""
7067
7068 #. type: verbatim
7069 #: ../src/guestfs-actions.pod:521
7070 #, no-wrap
7071 msgid ""
7072 " int\n"
7073 " guestfs_aug_save (guestfs_h *g);\n"
7074 "\n"
7075 msgstr ""
7076
7077 #. type: textblock
7078 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
7079 msgid "This writes all pending changes to disk."
7080 msgstr ""
7081
7082 #. type: textblock
7083 #: ../src/guestfs-actions.pod:526
7084 msgid ""
7085 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7086 "are saved."
7087 msgstr ""
7088
7089 #. type: =head2
7090 #: ../src/guestfs-actions.pod:533
7091 msgid "guestfs_aug_set"
7092 msgstr ""
7093
7094 #. type: verbatim
7095 #: ../src/guestfs-actions.pod:535
7096 #, no-wrap
7097 msgid ""
7098 " int\n"
7099 " guestfs_aug_set (guestfs_h *g,\n"
7100 "                  const char *augpath,\n"
7101 "                  const char *val);\n"
7102 "\n"
7103 msgstr ""
7104
7105 #. type: textblock
7106 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
7107 msgid "Set the value associated with C<path> to C<val>."
7108 msgstr ""
7109
7110 #. type: textblock
7111 #: ../src/guestfs-actions.pod:542
7112 msgid ""
7113 "In the Augeas API, it is possible to clear a node by setting the value to "
7114 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7115 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7116 msgstr ""
7117
7118 #. type: =head2
7119 #: ../src/guestfs-actions.pod:551
7120 msgid "guestfs_available"
7121 msgstr ""
7122
7123 #. type: verbatim
7124 #: ../src/guestfs-actions.pod:553
7125 #, no-wrap
7126 msgid ""
7127 " int\n"
7128 " guestfs_available (guestfs_h *g,\n"
7129 "                    char *const *groups);\n"
7130 "\n"
7131 msgstr ""
7132
7133 #. type: textblock
7134 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
7135 msgid ""
7136 "This command is used to check the availability of some groups of "
7137 "functionality in the appliance, which not all builds of the libguestfs "
7138 "appliance will be able to provide."
7139 msgstr ""
7140
7141 #. type: textblock
7142 #: ../src/guestfs-actions.pod:561
7143 msgid ""
7144 "The libguestfs groups, and the functions that those groups correspond to, "
7145 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7146 "runtime by calling C<guestfs_available_all_groups>."
7147 msgstr ""
7148
7149 #. type: textblock
7150 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
7151 msgid ""
7152 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", "
7153 "\"augeas\"]> would check for the availability of the Linux inotify functions"
7154 " and Augeas (configuration file editing) functions."
7155 msgstr ""
7156
7157 #. type: textblock
7158 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
7159 msgid "The command returns no error if I<all> requested groups are available."
7160 msgstr ""
7161
7162 #. type: textblock
7163 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
7164 msgid ""
7165 "It fails with an error if one or more of the requested groups is unavailable"
7166 " in the appliance."
7167 msgstr ""
7168
7169 #. type: textblock
7170 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
7171 msgid ""
7172 "If an unknown group name is included in the list of groups then an error is "
7173 "always returned."
7174 msgstr ""
7175
7176 #. type: textblock
7177 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
7178 msgid "I<Notes:>"
7179 msgstr ""
7180
7181 #. type: textblock
7182 #: ../src/guestfs-actions.pod:585
7183 msgid "You must call C<guestfs_launch> before calling this function."
7184 msgstr ""
7185
7186 #. type: textblock
7187 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
7188 msgid ""
7189 "The reason is because we don't know what groups are supported by the "
7190 "appliance/daemon until it is running and can be queried."
7191 msgstr ""
7192
7193 #. type: textblock
7194 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
7195 msgid ""
7196 "If a group of functions is available, this does not necessarily mean that "
7197 "they will work.  You still have to check for errors when calling individual "
7198 "API functions even if they are available."
7199 msgstr ""
7200
7201 #. type: textblock
7202 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
7203 msgid ""
7204 "It is usually the job of distro packagers to build complete functionality "
7205 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7206 "with all requirements satisfied, will support everything."
7207 msgstr ""
7208
7209 #. type: textblock
7210 #: ../src/guestfs-actions.pod:607
7211 msgid ""
7212 "This call was added in version C<1.0.80>.  In previous versions of "
7213 "libguestfs all you could do would be to speculatively execute a command to "
7214 "find out if the daemon implemented it.  See also C<guestfs_version>."
7215 msgstr ""
7216
7217 #. type: textblock
7218 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1236
7219 msgid "(Added in 1.0.80)"
7220 msgstr ""
7221
7222 #. type: =head2
7223 #: ../src/guestfs-actions.pod:618
7224 msgid "guestfs_available_all_groups"
7225 msgstr ""
7226
7227 #. type: verbatim
7228 #: ../src/guestfs-actions.pod:620
7229 #, no-wrap
7230 msgid ""
7231 " char **\n"
7232 " guestfs_available_all_groups (guestfs_h *g);\n"
7233 "\n"
7234 msgstr ""
7235
7236 #. type: textblock
7237 #: ../src/guestfs-actions.pod:623
7238 msgid ""
7239 "This command returns a list of all optional groups that this daemon knows "
7240 "about.  Note this returns both supported and unsupported groups.  To find "
7241 "out which ones the daemon can actually support you have to call "
7242 "C<guestfs_available> on each member of the returned list."
7243 msgstr ""
7244
7245 #. type: textblock
7246 #: ../src/guestfs-actions.pod:629
7247 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7248 msgstr ""
7249
7250 #. type: textblock
7251 #: ../src/guestfs-actions.pod:635
7252 msgid "(Added in 1.3.15)"
7253 msgstr ""
7254
7255 #. type: =head2
7256 #: ../src/guestfs-actions.pod:637
7257 msgid "guestfs_base64_in"
7258 msgstr ""
7259
7260 #. type: verbatim
7261 #: ../src/guestfs-actions.pod:639
7262 #, no-wrap
7263 msgid ""
7264 " int\n"
7265 " guestfs_base64_in (guestfs_h *g,\n"
7266 "                    const char *base64file,\n"
7267 "                    const char *filename);\n"
7268 "\n"
7269 msgstr ""
7270
7271 #. type: textblock
7272 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
7273 msgid ""
7274 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7275 msgstr ""
7276
7277 #. type: textblock
7278 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
7279 msgid "(Added in 1.3.5)"
7280 msgstr ""
7281
7282 #. type: =head2
7283 #: ../src/guestfs-actions.pod:651
7284 msgid "guestfs_base64_out"
7285 msgstr ""
7286
7287 #. type: verbatim
7288 #: ../src/guestfs-actions.pod:653
7289 #, no-wrap
7290 msgid ""
7291 " int\n"
7292 " guestfs_base64_out (guestfs_h *g,\n"
7293 "                     const char *filename,\n"
7294 "                     const char *base64file);\n"
7295 "\n"
7296 msgstr ""
7297
7298 #. type: textblock
7299 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
7300 msgid ""
7301 "This command downloads the contents of C<filename>, writing it out to local "
7302 "file C<base64file> encoded as base64."
7303 msgstr ""
7304
7305 #. type: =head2
7306 #: ../src/guestfs-actions.pod:665
7307 msgid "guestfs_blockdev_flushbufs"
7308 msgstr ""
7309
7310 #. type: verbatim
7311 #: ../src/guestfs-actions.pod:667
7312 #, no-wrap
7313 msgid ""
7314 " int\n"
7315 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7316 "                             const char *device);\n"
7317 "\n"
7318 msgstr ""
7319
7320 #. type: textblock
7321 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
7322 msgid ""
7323 "This tells the kernel to flush internal buffers associated with C<device>."
7324 msgstr ""
7325
7326 #. type: textblock
7327 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:691
7328 #: ../src/guestfs-actions.pod:706 ../src/guestfs-actions.pod:722
7329 #: ../src/guestfs-actions.pod:740 ../src/guestfs-actions.pod:759
7330 #: ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:791
7331 #: ../src/guestfs-actions.pod:805 ../src/guestfs-actions.pod:819
7332 #: ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464
7333 #: ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483
7334 #: ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508
7335 #: ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527
7336 #: ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
7337 msgid "This uses the L<blockdev(8)> command."
7338 msgstr ""
7339
7340 #. type: textblock
7341 #: ../src/guestfs-actions.pod:678 ../src/guestfs-actions.pod:695
7342 #: ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:726
7343 #: ../src/guestfs-actions.pod:744 ../src/guestfs-actions.pod:763
7344 #: ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:795
7345 #: ../src/guestfs-actions.pod:809 ../src/guestfs-actions.pod:823
7346 msgid "(Added in 0.9.3)"
7347 msgstr ""
7348
7349 #. type: =head2
7350 #: ../src/guestfs-actions.pod:680
7351 msgid "guestfs_blockdev_getbsz"
7352 msgstr ""
7353
7354 #. type: verbatim
7355 #: ../src/guestfs-actions.pod:682
7356 #, no-wrap
7357 msgid ""
7358 " int\n"
7359 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7360 "                          const char *device);\n"
7361 "\n"
7362 msgstr ""
7363
7364 #. type: textblock
7365 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
7366 msgid "This returns the block size of a device."
7367 msgstr ""
7368
7369 #. type: textblock
7370 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788
7371 #: ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
7372 msgid ""
7373 "(Note this is different from both I<size in blocks> and I<filesystem block "
7374 "size>)."
7375 msgstr ""
7376
7377 #. type: =head2
7378 #: ../src/guestfs-actions.pod:697
7379 msgid "guestfs_blockdev_getro"
7380 msgstr ""
7381
7382 #. type: verbatim
7383 #: ../src/guestfs-actions.pod:699
7384 #, no-wrap
7385 msgid ""
7386 " int\n"
7387 " guestfs_blockdev_getro (guestfs_h *g,\n"
7388 "                         const char *device);\n"
7389 "\n"
7390 msgstr ""
7391
7392 #. type: textblock
7393 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
7394 msgid ""
7395 "Returns a boolean indicating if the block device is read-only (true if read-"
7396 "only, false if not)."
7397 msgstr ""
7398
7399 #. type: textblock
7400 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1474
7401 #: ../src/guestfs-actions.pod:1489 ../src/guestfs-actions.pod:1978
7402 #: ../src/guestfs-actions.pod:1989 ../src/guestfs-actions.pod:2061
7403 #: ../src/guestfs-actions.pod:2087 ../src/guestfs-actions.pod:2125
7404 #: ../src/guestfs-actions.pod:2140 ../src/guestfs-actions.pod:2165
7405 #: ../src/guestfs-actions.pod:2188 ../src/guestfs-actions.pod:3224
7406 #: ../src/guestfs-actions.pod:3240 ../src/guestfs-actions.pod:3258
7407 #: ../src/guestfs-actions.pod:3420 ../src/guestfs-actions.pod:3434
7408 #: ../src/guestfs-actions.pod:3449 ../src/guestfs-actions.pod:3463
7409 #: ../src/guestfs-actions.pod:3479 ../src/guestfs-actions.pod:3494
7410 #: ../src/guestfs-actions.pod:3510 ../src/guestfs-actions.pod:3524
7411 #: ../src/guestfs-actions.pod:3537 ../src/guestfs-actions.pod:3551
7412 #: ../src/guestfs-actions.pod:3566 ../src/guestfs-actions.pod:3581
7413 #: ../src/guestfs-actions.pod:3594 ../src/guestfs-actions.pod:3608
7414 #: ../src/guestfs-actions.pod:5337
7415 msgid "This function returns a C truth value on success or -1 on error."
7416 msgstr ""
7417
7418 #. type: =head2
7419 #: ../src/guestfs-actions.pod:712
7420 msgid "guestfs_blockdev_getsize64"
7421 msgstr ""
7422
7423 #. type: verbatim
7424 #: ../src/guestfs-actions.pod:714
7425 #, no-wrap
7426 msgid ""
7427 " int64_t\n"
7428 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7429 "                             const char *device);\n"
7430 "\n"
7431 msgstr ""
7432
7433 #. type: textblock
7434 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7435 msgid "This returns the size of the device in bytes."
7436 msgstr ""
7437
7438 #. type: textblock
7439 #: ../src/guestfs-actions.pod:720
7440 msgid "See also C<guestfs_blockdev_getsz>."
7441 msgstr ""
7442
7443 #. type: =head2
7444 #: ../src/guestfs-actions.pod:728
7445 msgid "guestfs_blockdev_getss"
7446 msgstr ""
7447
7448 #. type: verbatim
7449 #: ../src/guestfs-actions.pod:730
7450 #, no-wrap
7451 msgid ""
7452 " int\n"
7453 " guestfs_blockdev_getss (guestfs_h *g,\n"
7454 "                         const char *device);\n"
7455 "\n"
7456 msgstr ""
7457
7458 #. type: textblock
7459 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7460 msgid ""
7461 "This returns the size of sectors on a block device.  Usually 512, but can be"
7462 " larger for modern devices."
7463 msgstr ""
7464
7465 #. type: textblock
7466 #: ../src/guestfs-actions.pod:737
7467 msgid ""
7468 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7469 "that)."
7470 msgstr ""
7471
7472 #. type: =head2
7473 #: ../src/guestfs-actions.pod:746
7474 msgid "guestfs_blockdev_getsz"
7475 msgstr ""
7476
7477 #. type: verbatim
7478 #: ../src/guestfs-actions.pod:748
7479 #, no-wrap
7480 msgid ""
7481 " int64_t\n"
7482 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7483 "                         const char *device);\n"
7484 "\n"
7485 msgstr ""
7486
7487 #. type: textblock
7488 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7489 msgid ""
7490 "This returns the size of the device in units of 512-byte sectors (even if "
7491 "the sectorsize isn't 512 bytes ... weird)."
7492 msgstr ""
7493
7494 #. type: textblock
7495 #: ../src/guestfs-actions.pod:755
7496 msgid ""
7497 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7498 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7499 msgstr ""
7500
7501 #. type: =head2
7502 #: ../src/guestfs-actions.pod:765
7503 msgid "guestfs_blockdev_rereadpt"
7504 msgstr ""
7505
7506 #. type: verbatim
7507 #: ../src/guestfs-actions.pod:767
7508 #, no-wrap
7509 msgid ""
7510 " int\n"
7511 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7512 "                            const char *device);\n"
7513 "\n"
7514 msgstr ""
7515
7516 #. type: textblock
7517 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7518 msgid "Reread the partition table on C<device>."
7519 msgstr ""
7520
7521 #. type: =head2
7522 #: ../src/guestfs-actions.pod:779
7523 msgid "guestfs_blockdev_setbsz"
7524 msgstr ""
7525
7526 #. type: verbatim
7527 #: ../src/guestfs-actions.pod:781
7528 #, no-wrap
7529 msgid ""
7530 " int\n"
7531 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7532 "                          const char *device,\n"
7533 "                          int blocksize);\n"
7534 "\n"
7535 msgstr ""
7536
7537 #. type: textblock
7538 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7539 msgid "This sets the block size of a device."
7540 msgstr ""
7541
7542 #. type: =head2
7543 #: ../src/guestfs-actions.pod:797
7544 msgid "guestfs_blockdev_setro"
7545 msgstr ""
7546
7547 #. type: verbatim
7548 #: ../src/guestfs-actions.pod:799
7549 #, no-wrap
7550 msgid ""
7551 " int\n"
7552 " guestfs_blockdev_setro (guestfs_h *g,\n"
7553 "                         const char *device);\n"
7554 "\n"
7555 msgstr ""
7556
7557 #. type: textblock
7558 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7559 msgid "Sets the block device named C<device> to read-only."
7560 msgstr ""
7561
7562 #. type: =head2
7563 #: ../src/guestfs-actions.pod:811
7564 msgid "guestfs_blockdev_setrw"
7565 msgstr ""
7566
7567 #. type: verbatim
7568 #: ../src/guestfs-actions.pod:813
7569 #, no-wrap
7570 msgid ""
7571 " int\n"
7572 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7573 "                         const char *device);\n"
7574 "\n"
7575 msgstr ""
7576
7577 #. type: textblock
7578 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7579 msgid "Sets the block device named C<device> to read-write."
7580 msgstr ""
7581
7582 #. type: =head2
7583 #: ../src/guestfs-actions.pod:825
7584 msgid "guestfs_btrfs_filesystem_resize"
7585 msgstr ""
7586
7587 #. type: verbatim
7588 #: ../src/guestfs-actions.pod:827
7589 #, no-wrap
7590 msgid ""
7591 " int\n"
7592 " guestfs_btrfs_filesystem_resize (guestfs_h *g,\n"
7593 "                                  const char *mountpoint,\n"
7594 "                                  ...);\n"
7595 "\n"
7596 msgstr ""
7597
7598 #. type: verbatim
7599 #: ../src/guestfs-actions.pod:837
7600 #, no-wrap
7601 msgid ""
7602 " GUESTFS_BTRFS_FILESYSTEM_RESIZE_SIZE, int64_t size,\n"
7603 "\n"
7604 msgstr ""
7605
7606 #. type: textblock
7607 #: ../src/guestfs-actions.pod:839 ../fish/guestfish-actions.pod:549
7608 msgid "This command resizes a btrfs filesystem."
7609 msgstr ""
7610
7611 #. type: textblock
7612 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:551
7613 msgid ""
7614 "Note that unlike other resize calls, the filesystem has to be mounted and "
7615 "the parameter is the mountpoint not the device (this is a requirement of "
7616 "btrfs itself)."
7617 msgstr ""
7618
7619 #. type: textblock
7620 #: ../src/guestfs-actions.pod:845 ../src/guestfs-actions.pod:5187
7621 #: ../fish/guestfish-actions.pod:555 ../fish/guestfish-actions.pod:3417
7622 msgid "The optional parameters are:"
7623 msgstr ""
7624
7625 #. type: =item
7626 #: ../src/guestfs-actions.pod:849 ../src/guestfs-actions.pod:5191
7627 #: ../fish/guestfish-actions.pod:559 ../fish/guestfish-actions.pod:3421
7628 msgid "C<size>"
7629 msgstr ""
7630
7631 #. type: textblock
7632 #: ../src/guestfs-actions.pod:851 ../fish/guestfish-actions.pod:561
7633 msgid ""
7634 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
7635 "resized to the maximum size."
7636 msgstr ""
7637
7638 #. type: textblock
7639 #: ../src/guestfs-actions.pod:856 ../fish/guestfish-actions.pod:566
7640 msgid "See also L<btrfs(8)>."
7641 msgstr ""
7642
7643 #. type: textblock
7644 #: ../src/guestfs-actions.pod:860
7645 msgid "(Added in 1.11.17)"
7646 msgstr ""
7647
7648 #. type: =head2
7649 #: ../src/guestfs-actions.pod:862
7650 msgid "guestfs_btrfs_filesystem_resize_va"
7651 msgstr ""
7652
7653 #. type: verbatim
7654 #: ../src/guestfs-actions.pod:864
7655 #, no-wrap
7656 msgid ""
7657 " int\n"
7658 " guestfs_btrfs_filesystem_resize_va (guestfs_h *g,\n"
7659 "                                     const char *mountpoint,\n"
7660 "                                     va_list args);\n"
7661 "\n"
7662 msgstr ""
7663
7664 #. type: textblock
7665 #: ../src/guestfs-actions.pod:869
7666 msgid "This is the \"va_list variant\" of L</guestfs_btrfs_filesystem_resize>."
7667 msgstr ""
7668
7669 #. type: =head2
7670 #: ../src/guestfs-actions.pod:873
7671 msgid "guestfs_btrfs_filesystem_resize_argv"
7672 msgstr ""
7673
7674 #. type: verbatim
7675 #: ../src/guestfs-actions.pod:875
7676 #, no-wrap
7677 msgid ""
7678 " int\n"
7679 " guestfs_btrfs_filesystem_resize_argv (guestfs_h *g,\n"
7680 "                                       const char *mountpoint,\n"
7681 "                                       const struct guestfs_btrfs_filesystem_resize_argv *optargs);\n"
7682 "\n"
7683 msgstr ""
7684
7685 #. type: textblock
7686 #: ../src/guestfs-actions.pod:880
7687 msgid "This is the \"argv variant\" of L</guestfs_btrfs_filesystem_resize>."
7688 msgstr ""
7689
7690 #. type: =head2
7691 #: ../src/guestfs-actions.pod:884
7692 msgid "guestfs_case_sensitive_path"
7693 msgstr ""
7694
7695 #. type: verbatim
7696 #: ../src/guestfs-actions.pod:886
7697 #, no-wrap
7698 msgid ""
7699 " char *\n"
7700 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7701 "                              const char *path);\n"
7702 "\n"
7703 msgstr ""
7704
7705 #. type: textblock
7706 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:574
7707 msgid ""
7708 "This can be used to resolve case insensitive paths on a filesystem which is "
7709 "case sensitive.  The use case is to resolve paths which you have read from "
7710 "Windows configuration files or the Windows Registry, to the true path."
7711 msgstr ""
7712
7713 #. type: textblock
7714 #: ../src/guestfs-actions.pod:895 ../fish/guestfish-actions.pod:579
7715 msgid ""
7716 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7717 "(and probably others), which is that although the underlying filesystem is "
7718 "case-insensitive, the driver exports the filesystem to Linux as case-"
7719 "sensitive."
7720 msgstr ""
7721
7722 #. type: textblock
7723 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:584
7724 msgid ""
7725 "One consequence of this is that special directories such as C<c:\\windows> "
7726 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7727 "precise details of how they were created.  In Windows itself this would not "
7728 "be a problem."
7729 msgstr ""
7730
7731 #. type: textblock
7732 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:590
7733 msgid ""
7734 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-"
7735 "faq/#posixfilenames1>"
7736 msgstr ""
7737
7738 #. type: textblock
7739 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:593
7740 msgid ""
7741 "This function resolves the true case of each element in the path and returns"
7742 " the case-sensitive path."
7743 msgstr ""
7744
7745 #. type: textblock
7746 #: ../src/guestfs-actions.pod:912
7747 msgid ""
7748 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return "
7749 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7750 "how the directories were originally created under Windows)."
7751 msgstr ""
7752
7753 #. type: textblock
7754 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:601
7755 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7756 msgstr ""
7757
7758 #. type: textblock
7759 #: ../src/guestfs-actions.pod:920
7760 msgid "See also C<guestfs_realpath>."
7761 msgstr ""
7762
7763 #. type: textblock
7764 #: ../src/guestfs-actions.pod:925 ../src/guestfs-actions.pod:7377
7765 msgid "(Added in 1.0.75)"
7766 msgstr ""
7767
7768 #. type: =head2
7769 #: ../src/guestfs-actions.pod:927
7770 msgid "guestfs_cat"
7771 msgstr ""
7772
7773 #. type: verbatim
7774 #: ../src/guestfs-actions.pod:929
7775 #, no-wrap
7776 msgid ""
7777 " char *\n"
7778 " guestfs_cat (guestfs_h *g,\n"
7779 "              const char *path);\n"
7780 "\n"
7781 msgstr ""
7782
7783 #. type: textblock
7784 #: ../src/guestfs-actions.pod:933 ../src/guestfs-actions.pod:5824
7785 #: ../fish/guestfish-actions.pod:610 ../fish/guestfish-actions.pod:3831
7786 msgid "Return the contents of the file named C<path>."
7787 msgstr ""
7788
7789 #. type: textblock
7790 #: ../src/guestfs-actions.pod:935
7791 msgid ""
7792 "Note that this function cannot correctly handle binary files (specifically, "
7793 "files containing C<\\0> character which is treated as end of string).  For "
7794 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7795 "functions which have a more complex interface."
7796 msgstr ""
7797
7798 #. type: textblock
7799 #: ../src/guestfs-actions.pod:943 ../src/guestfs-actions.pod:1122
7800 #: ../src/guestfs-actions.pod:1142 ../src/guestfs-actions.pod:1438
7801 #: ../src/guestfs-actions.pod:1457 ../src/guestfs-actions.pod:1560
7802 #: ../src/guestfs-actions.pod:1579 ../src/guestfs-actions.pod:1825
7803 #: ../src/guestfs-actions.pod:2294 ../src/guestfs-actions.pod:2313
7804 #: ../src/guestfs-actions.pod:2356 ../src/guestfs-actions.pod:2380
7805 #: ../src/guestfs-actions.pod:2397 ../src/guestfs-actions.pod:2426
7806 #: ../src/guestfs-actions.pod:5606 ../src/guestfs-actions.pod:5632
7807 #: ../src/guestfs-actions.pod:5763 ../src/guestfs-actions.pod:5789
7808 #: ../src/guestfs-actions.pod:5813 ../src/guestfs-actions.pod:6762
7809 #: ../src/guestfs-actions.pod:6817 ../src/guestfs-actions.pod:6963
7810 #: ../src/guestfs-actions.pod:6987 ../src/guestfs-actions.pod:7652
7811 #: ../src/guestfs-actions.pod:7672 ../src/guestfs-actions.pod:7696
7812 #: ../src/guestfs-actions.pod:7722 ../src/guestfs-actions.pod:7741
7813 #: ../src/guestfs-actions.pod:7827 ../src/guestfs-actions.pod:7846
7814 #: ../src/guestfs-actions.pod:7892 ../src/guestfs-actions.pod:7911
7815 #: ../fish/guestfish-actions.pod:617 ../fish/guestfish-actions.pod:752
7816 #: ../fish/guestfish-actions.pod:764 ../fish/guestfish-actions.pod:940
7817 #: ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:1017
7818 #: ../fish/guestfish-actions.pod:1027 ../fish/guestfish-actions.pod:1219
7819 #: ../fish/guestfish-actions.pod:1526 ../fish/guestfish-actions.pod:1536
7820 #: ../fish/guestfish-actions.pod:1564 ../fish/guestfish-actions.pod:1579
7821 #: ../fish/guestfish-actions.pod:1589 ../fish/guestfish-actions.pod:1608
7822 #: ../fish/guestfish-actions.pod:3701 ../fish/guestfish-actions.pod:3716
7823 #: ../fish/guestfish-actions.pod:3792 ../fish/guestfish-actions.pod:3809
7824 #: ../fish/guestfish-actions.pod:3824 ../fish/guestfish-actions.pod:4493
7825 #: ../fish/guestfish-actions.pod:4539 ../fish/guestfish-actions.pod:4624
7826 #: ../fish/guestfish-actions.pod:4639 ../fish/guestfish-actions.pod:5045
7827 #: ../fish/guestfish-actions.pod:5057 ../fish/guestfish-actions.pod:5075
7828 #: ../fish/guestfish-actions.pod:5092 ../fish/guestfish-actions.pod:5102
7829 #: ../fish/guestfish-actions.pod:5151 ../fish/guestfish-actions.pod:5161
7830 #: ../fish/guestfish-actions.pod:5190 ../fish/guestfish-actions.pod:5200
7831 msgid ""
7832 "Because of the message protocol, there is a transfer limit of somewhere "
7833 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7834 msgstr ""
7835
7836 #. type: textblock
7837 #: ../src/guestfs-actions.pod:946 ../src/guestfs-actions.pod:3738
7838 #: ../src/guestfs-actions.pod:3820 ../src/guestfs-actions.pod:3837
7839 #: ../src/guestfs-actions.pod:3925 ../src/guestfs-actions.pod:4333
7840 #: ../src/guestfs-actions.pod:4347 ../src/guestfs-actions.pod:5712
7841 #: ../src/guestfs-actions.pod:5726 ../src/guestfs-actions.pod:7530
7842 #: ../src/guestfs-actions.pod:7544
7843 msgid "(Added in 0.4)"
7844 msgstr ""
7845
7846 #. type: =head2
7847 #: ../src/guestfs-actions.pod:948
7848 msgid "guestfs_checksum"
7849 msgstr ""
7850
7851 #. type: verbatim
7852 #: ../src/guestfs-actions.pod:950
7853 #, no-wrap
7854 msgid ""
7855 " char *\n"
7856 " guestfs_checksum (guestfs_h *g,\n"
7857 "                   const char *csumtype,\n"
7858 "                   const char *path);\n"
7859 "\n"
7860 msgstr ""
7861
7862 #. type: textblock
7863 #: ../src/guestfs-actions.pod:955 ../fish/guestfish-actions.pod:624
7864 msgid ""
7865 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7866 msgstr ""
7867
7868 #. type: textblock
7869 #: ../src/guestfs-actions.pod:958 ../fish/guestfish-actions.pod:627
7870 msgid ""
7871 "The type of checksum to compute is given by the C<csumtype> parameter which "
7872 "must have one of the following values:"
7873 msgstr ""
7874
7875 #. type: =item
7876 #: ../src/guestfs-actions.pod:963 ../fish/guestfish-actions.pod:632
7877 msgid "C<crc>"
7878 msgstr ""
7879
7880 #. type: textblock
7881 #: ../src/guestfs-actions.pod:965 ../fish/guestfish-actions.pod:634
7882 msgid ""
7883 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7884 "C<cksum> command."
7885 msgstr ""
7886
7887 #. type: =item
7888 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:637
7889 msgid "C<md5>"
7890 msgstr ""
7891
7892 #. type: textblock
7893 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:639
7894 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7895 msgstr ""
7896
7897 #. type: =item
7898 #: ../src/guestfs-actions.pod:972 ../fish/guestfish-actions.pod:641
7899 msgid "C<sha1>"
7900 msgstr ""
7901
7902 #. type: textblock
7903 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:643
7904 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7905 msgstr ""
7906
7907 #. type: =item
7908 #: ../src/guestfs-actions.pod:976 ../fish/guestfish-actions.pod:645
7909 msgid "C<sha224>"
7910 msgstr ""
7911
7912 #. type: textblock
7913 #: ../src/guestfs-actions.pod:978 ../fish/guestfish-actions.pod:647
7914 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7915 msgstr ""
7916
7917 #. type: =item
7918 #: ../src/guestfs-actions.pod:980 ../fish/guestfish-actions.pod:649
7919 msgid "C<sha256>"
7920 msgstr ""
7921
7922 #. type: textblock
7923 #: ../src/guestfs-actions.pod:982 ../fish/guestfish-actions.pod:651
7924 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7925 msgstr ""
7926
7927 #. type: =item
7928 #: ../src/guestfs-actions.pod:984 ../fish/guestfish-actions.pod:653
7929 msgid "C<sha384>"
7930 msgstr ""
7931
7932 #. type: textblock
7933 #: ../src/guestfs-actions.pod:986 ../fish/guestfish-actions.pod:655
7934 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7935 msgstr ""
7936
7937 #. type: =item
7938 #: ../src/guestfs-actions.pod:988 ../fish/guestfish-actions.pod:657
7939 msgid "C<sha512>"
7940 msgstr ""
7941
7942 #. type: textblock
7943 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:659
7944 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7945 msgstr ""
7946
7947 #. type: textblock
7948 #: ../src/guestfs-actions.pod:994 ../fish/guestfish-actions.pod:663
7949 msgid "The checksum is returned as a printable string."
7950 msgstr ""
7951
7952 #. type: textblock
7953 #: ../src/guestfs-actions.pod:996
7954 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7955 msgstr ""
7956
7957 #. type: textblock
7958 #: ../src/guestfs-actions.pod:998
7959 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7960 msgstr ""
7961
7962 #. type: textblock
7963 #: ../src/guestfs-actions.pod:1003 ../src/guestfs-actions.pod:1311
7964 #: ../src/guestfs-actions.pod:2156 ../src/guestfs-actions.pod:3436
7965 #: ../src/guestfs-actions.pod:3465 ../src/guestfs-actions.pod:3526
7966 #: ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:7233
7967 msgid "(Added in 1.0.2)"
7968 msgstr ""
7969
7970 #. type: =head2
7971 #: ../src/guestfs-actions.pod:1005
7972 msgid "guestfs_checksum_device"
7973 msgstr ""
7974
7975 #. type: verbatim
7976 #: ../src/guestfs-actions.pod:1007
7977 #, no-wrap
7978 msgid ""
7979 " char *\n"
7980 " guestfs_checksum_device (guestfs_h *g,\n"
7981 "                          const char *csumtype,\n"
7982 "                          const char *device);\n"
7983 "\n"
7984 msgstr ""
7985
7986 #. type: textblock
7987 #: ../src/guestfs-actions.pod:1012
7988 msgid ""
7989 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7990 "device named C<device>.  For the types of checksums supported see the "
7991 "C<guestfs_checksum> command."
7992 msgstr ""
7993
7994 #. type: textblock
7995 #: ../src/guestfs-actions.pod:1019 ../src/guestfs-actions.pod:5167
7996 #: ../src/guestfs-actions.pod:5302 ../src/guestfs-actions.pod:5339
7997 #: ../src/guestfs-actions.pod:5357 ../src/guestfs-actions.pod:5533
7998 #: ../src/guestfs-actions.pod:7142 ../src/guestfs-actions.pod:7156
7999 #: ../src/guestfs-actions.pod:7556
8000 msgid "(Added in 1.3.2)"
8001 msgstr ""
8002
8003 #. type: =head2
8004 #: ../src/guestfs-actions.pod:1021
8005 msgid "guestfs_checksums_out"
8006 msgstr ""
8007
8008 #. type: verbatim
8009 #: ../src/guestfs-actions.pod:1023
8010 #, no-wrap
8011 msgid ""
8012 " int\n"
8013 " guestfs_checksums_out (guestfs_h *g,\n"
8014 "                        const char *csumtype,\n"
8015 "                        const char *directory,\n"
8016 "                        const char *sumsfile);\n"
8017 "\n"
8018 msgstr ""
8019
8020 #. type: textblock
8021 #: ../src/guestfs-actions.pod:1029 ../fish/guestfish-actions.pod:681
8022 msgid ""
8023 "This command computes the checksums of all regular files in C<directory> and"
8024 " then emits a list of those checksums to the local output file C<sumsfile>."
8025 msgstr ""
8026
8027 #. type: textblock
8028 #: ../src/guestfs-actions.pod:1033 ../fish/guestfish-actions.pod:685
8029 msgid ""
8030 "This can be used for verifying the integrity of a virtual machine.  However "
8031 "to be properly secure you should pay attention to the output of the checksum"
8032 " command (it uses the ones from GNU coreutils).  In particular when the "
8033 "filename is not printable, coreutils uses a special backslash syntax.  For "
8034 "more information, see the GNU coreutils info file."
8035 msgstr ""
8036
8037 #. type: textblock
8038 #: ../src/guestfs-actions.pod:1043
8039 msgid "(Added in 1.3.7)"
8040 msgstr ""
8041
8042 #. type: =head2
8043 #: ../src/guestfs-actions.pod:1045
8044 msgid "guestfs_chmod"
8045 msgstr ""
8046
8047 #. type: verbatim
8048 #: ../src/guestfs-actions.pod:1047
8049 #, no-wrap
8050 msgid ""
8051 " int\n"
8052 " guestfs_chmod (guestfs_h *g,\n"
8053 "                int mode,\n"
8054 "                const char *path);\n"
8055 "\n"
8056 msgstr ""
8057
8058 #. type: textblock
8059 #: ../src/guestfs-actions.pod:1052 ../fish/guestfish-actions.pod:699
8060 msgid ""
8061 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are"
8062 " supported."
8063 msgstr ""
8064
8065 #. type: textblock
8066 #: ../src/guestfs-actions.pod:1055 ../fish/guestfish-actions.pod:702
8067 msgid ""
8068 "I<Note>: When using this command from guestfish, C<mode> by default would be"
8069 " decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
8070 "C<700>."
8071 msgstr ""
8072
8073 #. type: textblock
8074 #: ../src/guestfs-actions.pod:1059 ../src/guestfs-actions.pod:4584
8075 #: ../src/guestfs-actions.pod:4793 ../src/guestfs-actions.pod:4812
8076 #: ../src/guestfs-actions.pod:4831 ../fish/guestfish-actions.pod:706
8077 #: ../fish/guestfish-actions.pod:3060 ../fish/guestfish-actions.pod:3199
8078 #: ../fish/guestfish-actions.pod:3209 ../fish/guestfish-actions.pod:3219
8079 msgid "The mode actually set is affected by the umask."
8080 msgstr ""
8081
8082 #. type: =head2
8083 #: ../src/guestfs-actions.pod:1065
8084 msgid "guestfs_chown"
8085 msgstr ""
8086
8087 #. type: verbatim
8088 #: ../src/guestfs-actions.pod:1067
8089 #, no-wrap
8090 msgid ""
8091 " int\n"
8092 " guestfs_chown (guestfs_h *g,\n"
8093 "                int owner,\n"
8094 "                int group,\n"
8095 "                const char *path);\n"
8096 "\n"
8097 msgstr ""
8098
8099 #. type: textblock
8100 #: ../src/guestfs-actions.pod:1073 ../fish/guestfish-actions.pod:712
8101 msgid "Change the file owner to C<owner> and group to C<group>."
8102 msgstr ""
8103
8104 #. type: textblock
8105 #: ../src/guestfs-actions.pod:1075 ../src/guestfs-actions.pod:3655
8106 #: ../fish/guestfish-actions.pod:714 ../fish/guestfish-actions.pod:2495
8107 msgid ""
8108 "Only numeric uid and gid are supported.  If you want to use names, you will "
8109 "need to locate and parse the password file yourself (Augeas support makes "
8110 "this relatively easy)."
8111 msgstr ""
8112
8113 #. type: =head2
8114 #: ../src/guestfs-actions.pod:1083
8115 msgid "guestfs_command"
8116 msgstr ""
8117
8118 #. type: verbatim
8119 #: ../src/guestfs-actions.pod:1085
8120 #, no-wrap
8121 msgid ""
8122 " char *\n"
8123 " guestfs_command (guestfs_h *g,\n"
8124 "                  char *const *arguments);\n"
8125 "\n"
8126 msgstr ""
8127
8128 #. type: textblock
8129 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:722
8130 msgid ""
8131 "This call runs a command from the guest filesystem.  The filesystem must be "
8132 "mounted, and must contain a compatible operating system (ie. something "
8133 "Linux, with the same or compatible processor architecture)."
8134 msgstr ""
8135
8136 #. type: textblock
8137 #: ../src/guestfs-actions.pod:1094
8138 msgid ""
8139 "The single parameter is an argv-style list of arguments.  The first element "
8140 "is the name of the program to run.  Subsequent elements are parameters.  The"
8141 " list must be non-empty (ie. must contain a program name).  Note that the "
8142 "command runs directly, and is I<not> invoked via the shell (see "
8143 "C<guestfs_sh>)."
8144 msgstr ""
8145
8146 #. type: textblock
8147 #: ../src/guestfs-actions.pod:1101 ../fish/guestfish-actions.pod:734
8148 msgid "The return value is anything printed to I<stdout> by the command."
8149 msgstr ""
8150
8151 #. type: textblock
8152 #: ../src/guestfs-actions.pod:1104 ../fish/guestfish-actions.pod:737
8153 msgid ""
8154 "If the command returns a non-zero exit status, then this function returns an"
8155 " error message.  The error message string is the content of I<stderr> from "
8156 "the command."
8157 msgstr ""
8158
8159 #. type: textblock
8160 #: ../src/guestfs-actions.pod:1108 ../fish/guestfish-actions.pod:741
8161 msgid ""
8162 "The C<$PATH> environment variable will contain at least C</usr/bin> and "
8163 "C</bin>.  If you require a program from another location, you should provide"
8164 " the full path in the first parameter."
8165 msgstr ""
8166
8167 #. type: textblock
8168 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:746
8169 msgid ""
8170 "Shared libraries and data files required by the program must be available on"
8171 " filesystems which are mounted in the correct places.  It is the caller's "
8172 "responsibility to ensure all filesystems that are needed are mounted at the "
8173 "right locations."
8174 msgstr ""
8175
8176 #. type: textblock
8177 #: ../src/guestfs-actions.pod:1125 ../src/guestfs-actions.pod:1145
8178 #: ../src/guestfs-actions.pod:1610
8179 msgid "(Added in 0.9.1)"
8180 msgstr ""
8181
8182 #. type: =head2
8183 #: ../src/guestfs-actions.pod:1127
8184 msgid "guestfs_command_lines"
8185 msgstr ""
8186
8187 #. type: verbatim
8188 #: ../src/guestfs-actions.pod:1129
8189 #, no-wrap
8190 msgid ""
8191 " char **\n"
8192 " guestfs_command_lines (guestfs_h *g,\n"
8193 "                        char *const *arguments);\n"
8194 "\n"
8195 msgstr ""
8196
8197 #. type: textblock
8198 #: ../src/guestfs-actions.pod:1133
8199 msgid ""
8200 "This is the same as C<guestfs_command>, but splits the result into a list of"
8201 " lines."
8202 msgstr ""
8203
8204 #. type: textblock
8205 #: ../src/guestfs-actions.pod:1136
8206 msgid "See also: C<guestfs_sh_lines>"
8207 msgstr ""
8208
8209 #. type: =head2
8210 #: ../src/guestfs-actions.pod:1147
8211 msgid "guestfs_config"
8212 msgstr ""
8213
8214 #. type: verbatim
8215 #: ../src/guestfs-actions.pod:1149
8216 #, no-wrap
8217 msgid ""
8218 " int\n"
8219 " guestfs_config (guestfs_h *g,\n"
8220 "                 const char *qemuparam,\n"
8221 "                 const char *qemuvalue);\n"
8222 "\n"
8223 msgstr ""
8224
8225 #. type: textblock
8226 #: ../src/guestfs-actions.pod:1154 ../fish/guestfish-actions.pod:771
8227 msgid ""
8228 "This can be used to add arbitrary qemu command line parameters of the form "
8229 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8230 "setting some parameters which would interfere with parameters that we use."
8231 msgstr ""
8232
8233 #. type: textblock
8234 #: ../src/guestfs-actions.pod:1159 ../fish/guestfish-actions.pod:776
8235 msgid "The first character of C<param> string must be a C<-> (dash)."
8236 msgstr ""
8237
8238 #. type: textblock
8239 #: ../src/guestfs-actions.pod:1161 ../fish/guestfish-actions.pod:778
8240 msgid "C<value> can be NULL."
8241 msgstr ""
8242
8243 #. type: =head2
8244 #: ../src/guestfs-actions.pod:1167
8245 msgid "guestfs_copy_size"
8246 msgstr ""
8247
8248 #. type: verbatim
8249 #: ../src/guestfs-actions.pod:1169
8250 #, no-wrap
8251 msgid ""
8252 " int\n"
8253 " guestfs_copy_size (guestfs_h *g,\n"
8254 "                    const char *src,\n"
8255 "                    const char *dest,\n"
8256 "                    int64_t size);\n"
8257 "\n"
8258 msgstr ""
8259
8260 #. type: textblock
8261 #: ../src/guestfs-actions.pod:1175 ../fish/guestfish-actions.pod:784
8262 msgid ""
8263 "This command copies exactly C<size> bytes from one source device or file "
8264 "C<src> to another destination device or file C<dest>."
8265 msgstr ""
8266
8267 #. type: textblock
8268 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:787
8269 msgid ""
8270 "Note this will fail if the source is too short or if the destination is not "
8271 "large enough."
8272 msgstr ""
8273
8274 #. type: textblock
8275 #: ../src/guestfs-actions.pod:1183 ../src/guestfs-actions.pod:1306
8276 #: ../src/guestfs-actions.pod:1337 ../src/guestfs-actions.pod:1382
8277 #: ../src/guestfs-actions.pod:1759 ../src/guestfs-actions.pod:1781
8278 #: ../src/guestfs-actions.pod:3636 ../src/guestfs-actions.pod:7228
8279 #: ../src/guestfs-actions.pod:7262 ../src/guestfs-actions.pod:7763
8280 #: ../src/guestfs-actions.pod:7782
8281 msgid ""
8282 "This long-running command can generate progress notification messages so "
8283 "that the caller can display a progress bar or indicator.  To receive these "
8284 "messages, the caller must register a progress event callback.  See "
8285 "L<guestfs(3)/GUESTFS_EVENT_PROGRESS>."
8286 msgstr ""
8287
8288 #. type: textblock
8289 #: ../src/guestfs-actions.pod:1188 ../src/guestfs-actions.pod:4360
8290 #: ../src/guestfs-actions.pod:5739 ../src/guestfs-actions.pod:7463
8291 #: ../src/guestfs-actions.pod:7483 ../src/guestfs-actions.pod:7569
8292 msgid "(Added in 1.0.87)"
8293 msgstr ""
8294
8295 #. type: =head2
8296 #: ../src/guestfs-actions.pod:1190
8297 msgid "guestfs_cp"
8298 msgstr ""
8299
8300 #. type: verbatim
8301 #: ../src/guestfs-actions.pod:1192
8302 #, no-wrap
8303 msgid ""
8304 " int\n"
8305 " guestfs_cp (guestfs_h *g,\n"
8306 "             const char *src,\n"
8307 "             const char *dest);\n"
8308 "\n"
8309 msgstr ""
8310
8311 #. type: textblock
8312 #: ../src/guestfs-actions.pod:1197 ../fish/guestfish-actions.pod:794
8313 msgid ""
8314 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8315 "destination filename or destination directory."
8316 msgstr ""
8317
8318 #. type: textblock
8319 #: ../src/guestfs-actions.pod:1202 ../src/guestfs-actions.pod:1216
8320 #: ../src/guestfs-actions.pod:1288 ../src/guestfs-actions.pod:1362
8321 #: ../src/guestfs-actions.pod:1476 ../src/guestfs-actions.pod:5114
8322 #: ../src/guestfs-actions.pod:5583
8323 msgid "(Added in 1.0.18)"
8324 msgstr ""
8325
8326 #. type: =head2
8327 #: ../src/guestfs-actions.pod:1204
8328 msgid "guestfs_cp_a"
8329 msgstr ""
8330
8331 #. type: verbatim
8332 #: ../src/guestfs-actions.pod:1206
8333 #, no-wrap
8334 msgid ""
8335 " int\n"
8336 " guestfs_cp_a (guestfs_h *g,\n"
8337 "               const char *src,\n"
8338 "               const char *dest);\n"
8339 "\n"
8340 msgstr ""
8341
8342 #. type: textblock
8343 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:801
8344 msgid ""
8345 "This copies a file or directory from C<src> to C<dest> recursively using the"
8346 " C<cp -a> command."
8347 msgstr ""
8348
8349 #. type: =head2
8350 #: ../src/guestfs-actions.pod:1218
8351 msgid "guestfs_dd"
8352 msgstr ""
8353
8354 #. type: verbatim
8355 #: ../src/guestfs-actions.pod:1220
8356 #, no-wrap
8357 msgid ""
8358 " int\n"
8359 " guestfs_dd (guestfs_h *g,\n"
8360 "             const char *src,\n"
8361 "             const char *dest);\n"
8362 "\n"
8363 msgstr ""
8364
8365 #. type: textblock
8366 #: ../src/guestfs-actions.pod:1225 ../fish/guestfish-actions.pod:808
8367 msgid ""
8368 "This command copies from one source device or file C<src> to another "
8369 "destination device or file C<dest>.  Normally you would use this to copy to "
8370 "or from a device or partition, for example to duplicate a filesystem."
8371 msgstr ""
8372
8373 #. type: textblock
8374 #: ../src/guestfs-actions.pod:1230
8375 msgid ""
8376 "If the destination is a device, it must be as large or larger than the "
8377 "source file or device, otherwise the copy will fail.  This command cannot do"
8378 " partial copies (see C<guestfs_copy_size>)."
8379 msgstr ""
8380
8381 #. type: =head2
8382 #: ../src/guestfs-actions.pod:1238
8383 msgid "guestfs_df"
8384 msgstr ""
8385
8386 #. type: verbatim
8387 #: ../src/guestfs-actions.pod:1240
8388 #, no-wrap
8389 msgid ""
8390 " char *\n"
8391 " guestfs_df (guestfs_h *g);\n"
8392 "\n"
8393 msgstr ""
8394
8395 #. type: textblock
8396 #: ../src/guestfs-actions.pod:1243 ../fish/guestfish-actions.pod:821
8397 msgid "This command runs the C<df> command to report disk space used."
8398 msgstr ""
8399
8400 #. type: textblock
8401 #: ../src/guestfs-actions.pod:1245 ../src/guestfs-actions.pod:1262
8402 msgid ""
8403 "This command is mostly useful for interactive sessions.  It is I<not> "
8404 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8405 "from programs."
8406 msgstr ""
8407
8408 #. type: textblock
8409 #: ../src/guestfs-actions.pod:1252 ../src/guestfs-actions.pod:1269
8410 #: ../src/guestfs-actions.pod:1387 ../src/guestfs-actions.pod:2359
8411 #: ../src/guestfs-actions.pod:2383 ../src/guestfs-actions.pod:2451
8412 #: ../src/guestfs-actions.pod:4470 ../src/guestfs-actions.pod:5014
8413 #: ../src/guestfs-actions.pod:6966 ../src/guestfs-actions.pod:6990
8414 #: ../src/guestfs-actions.pod:7609 ../src/guestfs-actions.pod:7622
8415 #: ../src/guestfs-actions.pod:7635
8416 msgid "(Added in 1.0.54)"
8417 msgstr ""
8418
8419 #. type: =head2
8420 #: ../src/guestfs-actions.pod:1254
8421 msgid "guestfs_df_h"
8422 msgstr ""
8423
8424 #. type: verbatim
8425 #: ../src/guestfs-actions.pod:1256
8426 #, no-wrap
8427 msgid ""
8428 " char *\n"
8429 " guestfs_df_h (guestfs_h *g);\n"
8430 "\n"
8431 msgstr ""
8432
8433 #. type: textblock
8434 #: ../src/guestfs-actions.pod:1259 ../fish/guestfish-actions.pod:831
8435 msgid ""
8436 "This command runs the C<df -h> command to report disk space used in human-"
8437 "readable format."
8438 msgstr ""
8439
8440 #. type: =head2
8441 #: ../src/guestfs-actions.pod:1271
8442 msgid "guestfs_dmesg"
8443 msgstr ""
8444
8445 #. type: verbatim
8446 #: ../src/guestfs-actions.pod:1273
8447 #, no-wrap
8448 msgid ""
8449 " char *\n"
8450 " guestfs_dmesg (guestfs_h *g);\n"
8451 "\n"
8452 msgstr ""
8453
8454 #. type: textblock
8455 #: ../src/guestfs-actions.pod:1276 ../fish/guestfish-actions.pod:842
8456 msgid ""
8457 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8458 "This is sometimes useful for extended debugging of problems."
8459 msgstr ""
8460
8461 #. type: textblock
8462 #: ../src/guestfs-actions.pod:1280
8463 msgid ""
8464 "Another way to get the same information is to enable verbose messages with "
8465 "C<guestfs_set_verbose> or by setting the environment variable "
8466 "C<LIBGUESTFS_DEBUG=1> before running the program."
8467 msgstr ""
8468
8469 #. type: =head2
8470 #: ../src/guestfs-actions.pod:1290
8471 msgid "guestfs_download"
8472 msgstr ""
8473
8474 #. type: verbatim
8475 #: ../src/guestfs-actions.pod:1292
8476 #, no-wrap
8477 msgid ""
8478 " int\n"
8479 " guestfs_download (guestfs_h *g,\n"
8480 "                   const char *remotefilename,\n"
8481 "                   const char *filename);\n"
8482 "\n"
8483 msgstr ""
8484
8485 #. type: textblock
8486 #: ../src/guestfs-actions.pod:1297 ../src/guestfs-actions.pod:1322
8487 #: ../fish/guestfish-actions.pod:855 ../fish/guestfish-actions.pod:868
8488 msgid ""
8489 "Download file C<remotefilename> and save it as C<filename> on the local "
8490 "machine."
8491 msgstr ""
8492
8493 #. type: textblock
8494 #: ../src/guestfs-actions.pod:1300 ../src/guestfs-actions.pod:7222
8495 #: ../fish/guestfish-actions.pod:858 ../fish/guestfish-actions.pod:4797
8496 msgid "C<filename> can also be a named pipe."
8497 msgstr ""
8498
8499 #. type: textblock
8500 #: ../src/guestfs-actions.pod:1302
8501 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8502 msgstr ""
8503
8504 #. type: =head2
8505 #: ../src/guestfs-actions.pod:1313
8506 msgid "guestfs_download_offset"
8507 msgstr ""
8508
8509 #. type: verbatim
8510 #: ../src/guestfs-actions.pod:1315
8511 #, no-wrap
8512 msgid ""
8513 " int\n"
8514 " guestfs_download_offset (guestfs_h *g,\n"
8515 "                          const char *remotefilename,\n"
8516 "                          const char *filename,\n"
8517 "                          int64_t offset,\n"
8518 "                          int64_t size);\n"
8519 "\n"
8520 msgstr ""
8521
8522 #. type: textblock
8523 #: ../src/guestfs-actions.pod:1325 ../fish/guestfish-actions.pod:871
8524 msgid ""
8525 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8526 "region must be within the file or device)."
8527 msgstr ""
8528
8529 #. type: textblock
8530 #: ../src/guestfs-actions.pod:1328
8531 msgid ""
8532 "Note that there is no limit on the amount of data that can be downloaded "
8533 "with this call, unlike with C<guestfs_pread>, and this call always reads the"
8534 " full amount unless an error occurs."
8535 msgstr ""
8536
8537 #. type: textblock
8538 #: ../src/guestfs-actions.pod:1333
8539 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8540 msgstr ""
8541
8542 #. type: textblock
8543 #: ../src/guestfs-actions.pod:1342 ../src/guestfs-actions.pod:7267
8544 msgid "(Added in 1.5.17)"
8545 msgstr ""
8546
8547 #. type: =head2
8548 #: ../src/guestfs-actions.pod:1344
8549 msgid "guestfs_drop_caches"
8550 msgstr ""
8551
8552 #. type: verbatim
8553 #: ../src/guestfs-actions.pod:1346
8554 #, no-wrap
8555 msgid ""
8556 " int\n"
8557 " guestfs_drop_caches (guestfs_h *g,\n"
8558 "                      int whattodrop);\n"
8559 "\n"
8560 msgstr ""
8561
8562 #. type: textblock
8563 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:887
8564 msgid ""
8565 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8566 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8567 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8568 msgstr ""
8569
8570 #. type: textblock
8571 #: ../src/guestfs-actions.pod:1355 ../fish/guestfish-actions.pod:892
8572 msgid "Setting C<whattodrop> to 3 should drop everything."
8573 msgstr ""
8574
8575 #. type: textblock
8576 #: ../src/guestfs-actions.pod:1357 ../fish/guestfish-actions.pod:894
8577 msgid ""
8578 "This automatically calls L<sync(2)> before the operation, so that the "
8579 "maximum guest memory is freed."
8580 msgstr ""
8581
8582 #. type: =head2
8583 #: ../src/guestfs-actions.pod:1364
8584 msgid "guestfs_du"
8585 msgstr ""
8586
8587 #. type: verbatim
8588 #: ../src/guestfs-actions.pod:1366
8589 #, no-wrap
8590 msgid ""
8591 " int64_t\n"
8592 " guestfs_du (guestfs_h *g,\n"
8593 "             const char *path);\n"
8594 "\n"
8595 msgstr ""
8596
8597 #. type: textblock
8598 #: ../src/guestfs-actions.pod:1370 ../fish/guestfish-actions.pod:901
8599 msgid ""
8600 "This command runs the C<du -s> command to estimate file space usage for "
8601 "C<path>."
8602 msgstr ""
8603
8604 #. type: textblock
8605 #: ../src/guestfs-actions.pod:1373 ../fish/guestfish-actions.pod:904
8606 msgid ""
8607 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8608 "estimate includes the contents of the directory and all subdirectories "
8609 "(recursively)."
8610 msgstr ""
8611
8612 #. type: textblock
8613 #: ../src/guestfs-actions.pod:1377 ../fish/guestfish-actions.pod:908
8614 msgid ""
8615 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8616 msgstr ""
8617
8618 #. type: =head2
8619 #: ../src/guestfs-actions.pod:1389
8620 msgid "guestfs_e2fsck_f"
8621 msgstr ""
8622
8623 #. type: verbatim
8624 #: ../src/guestfs-actions.pod:1391
8625 #, no-wrap
8626 msgid ""
8627 " int\n"
8628 " guestfs_e2fsck_f (guestfs_h *g,\n"
8629 "                   const char *device);\n"
8630 "\n"
8631 msgstr ""
8632
8633 #. type: textblock
8634 #: ../src/guestfs-actions.pod:1395 ../fish/guestfish-actions.pod:915
8635 msgid ""
8636 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8637 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be"
8638 " clean (I<-f>)."
8639 msgstr ""
8640
8641 #. type: textblock
8642 #: ../src/guestfs-actions.pod:1399
8643 msgid ""
8644 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8645 "Normally you should use C<guestfs_fsck>."
8646 msgstr ""
8647
8648 #. type: textblock
8649 #: ../src/guestfs-actions.pod:1404
8650 msgid "(Added in 1.0.29)"
8651 msgstr ""
8652
8653 #. type: =head2
8654 #: ../src/guestfs-actions.pod:1406
8655 msgid "guestfs_echo_daemon"
8656 msgstr ""
8657
8658 #. type: verbatim
8659 #: ../src/guestfs-actions.pod:1408
8660 #, no-wrap
8661 msgid ""
8662 " char *\n"
8663 " guestfs_echo_daemon (guestfs_h *g,\n"
8664 "                      char *const *words);\n"
8665 "\n"
8666 msgstr ""
8667
8668 #. type: textblock
8669 #: ../src/guestfs-actions.pod:1412 ../fish/guestfish-actions.pod:926
8670 msgid ""
8671 "This command concatenates the list of C<words> passed with single spaces "
8672 "between them and returns the resulting string."
8673 msgstr ""
8674
8675 #. type: textblock
8676 #: ../src/guestfs-actions.pod:1415 ../fish/guestfish-actions.pod:929
8677 msgid "You can use this command to test the connection through to the daemon."
8678 msgstr ""
8679
8680 #. type: textblock
8681 #: ../src/guestfs-actions.pod:1417
8682 msgid "See also C<guestfs_ping_daemon>."
8683 msgstr ""
8684
8685 #. type: textblock
8686 #: ../src/guestfs-actions.pod:1422 ../src/guestfs-actions.pod:2167
8687 #: ../src/guestfs-actions.pod:6438
8688 msgid "(Added in 1.0.69)"
8689 msgstr ""
8690
8691 #. type: =head2
8692 #: ../src/guestfs-actions.pod:1424
8693 msgid "guestfs_egrep"
8694 msgstr ""
8695
8696 #. type: verbatim
8697 #: ../src/guestfs-actions.pod:1426
8698 #, no-wrap
8699 msgid ""
8700 " char **\n"
8701 " guestfs_egrep (guestfs_h *g,\n"
8702 "                const char *regex,\n"
8703 "                const char *path);\n"
8704 "\n"
8705 msgstr ""
8706
8707 #. type: textblock
8708 #: ../src/guestfs-actions.pod:1431 ../fish/guestfish-actions.pod:937
8709 msgid ""
8710 "This calls the external C<egrep> program and returns the matching lines."
8711 msgstr ""
8712
8713 #. type: textblock
8714 #: ../src/guestfs-actions.pod:1441 ../src/guestfs-actions.pod:1460
8715 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:1563
8716 #: ../src/guestfs-actions.pod:1582 ../src/guestfs-actions.pod:2297
8717 #: ../src/guestfs-actions.pod:2316 ../src/guestfs-actions.pod:2472
8718 #: ../src/guestfs-actions.pod:2485 ../src/guestfs-actions.pod:2500
8719 #: ../src/guestfs-actions.pod:2546 ../src/guestfs-actions.pod:2568
8720 #: ../src/guestfs-actions.pod:2581 ../src/guestfs-actions.pod:3850
8721 #: ../src/guestfs-actions.pod:3864 ../src/guestfs-actions.pod:3877
8722 #: ../src/guestfs-actions.pod:3891 ../src/guestfs-actions.pod:4892
8723 #: ../src/guestfs-actions.pod:5917 ../src/guestfs-actions.pod:5966
8724 #: ../src/guestfs-actions.pod:6834 ../src/guestfs-actions.pod:6846
8725 #: ../src/guestfs-actions.pod:6859 ../src/guestfs-actions.pod:6872
8726 #: ../src/guestfs-actions.pod:6894 ../src/guestfs-actions.pod:6907
8727 #: ../src/guestfs-actions.pod:6920 ../src/guestfs-actions.pod:6933
8728 #: ../src/guestfs-actions.pod:7725 ../src/guestfs-actions.pod:7744
8729 #: ../src/guestfs-actions.pod:7830 ../src/guestfs-actions.pod:7849
8730 #: ../src/guestfs-actions.pod:7895 ../src/guestfs-actions.pod:7914
8731 msgid "(Added in 1.0.66)"
8732 msgstr ""
8733
8734 #. type: =head2
8735 #: ../src/guestfs-actions.pod:1443
8736 msgid "guestfs_egrepi"
8737 msgstr ""
8738
8739 #. type: verbatim
8740 #: ../src/guestfs-actions.pod:1445
8741 #, no-wrap
8742 msgid ""
8743 " char **\n"
8744 " guestfs_egrepi (guestfs_h *g,\n"
8745 "                 const char *regex,\n"
8746 "                 const char *path);\n"
8747 "\n"
8748 msgstr ""
8749
8750 #. type: textblock
8751 #: ../src/guestfs-actions.pod:1450 ../fish/guestfish-actions.pod:947
8752 msgid ""
8753 "This calls the external C<egrep -i> program and returns the matching lines."
8754 msgstr ""
8755
8756 #. type: =head2
8757 #: ../src/guestfs-actions.pod:1462
8758 msgid "guestfs_equal"
8759 msgstr ""
8760
8761 #. type: verbatim
8762 #: ../src/guestfs-actions.pod:1464
8763 #, no-wrap
8764 msgid ""
8765 " int\n"
8766 " guestfs_equal (guestfs_h *g,\n"
8767 "                const char *file1,\n"
8768 "                const char *file2);\n"
8769 "\n"
8770 msgstr ""
8771
8772 #. type: textblock
8773 #: ../src/guestfs-actions.pod:1469 ../fish/guestfish-actions.pod:957
8774 msgid ""
8775 "This compares the two files C<file1> and C<file2> and returns true if their "
8776 "content is exactly equal, or false otherwise."
8777 msgstr ""
8778
8779 #. type: textblock
8780 #: ../src/guestfs-actions.pod:1472 ../fish/guestfish-actions.pod:960
8781 msgid "The external L<cmp(1)> program is used for the comparison."
8782 msgstr ""
8783
8784 #. type: =head2
8785 #: ../src/guestfs-actions.pod:1478
8786 msgid "guestfs_exists"
8787 msgstr ""
8788
8789 #. type: verbatim
8790 #: ../src/guestfs-actions.pod:1480
8791 #, no-wrap
8792 msgid ""
8793 " int\n"
8794 " guestfs_exists (guestfs_h *g,\n"
8795 "                 const char *path);\n"
8796 "\n"
8797 msgstr ""
8798
8799 #. type: textblock
8800 #: ../src/guestfs-actions.pod:1484 ../fish/guestfish-actions.pod:966
8801 msgid ""
8802 "This returns C<true> if and only if there is a file, directory (or anything)"
8803 " with the given C<path> name."
8804 msgstr ""
8805
8806 #. type: textblock
8807 #: ../src/guestfs-actions.pod:1487
8808 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8809 msgstr ""
8810
8811 #. type: =head2
8812 #: ../src/guestfs-actions.pod:1493
8813 msgid "guestfs_fallocate"
8814 msgstr ""
8815
8816 #. type: verbatim
8817 #: ../src/guestfs-actions.pod:1495
8818 #, no-wrap
8819 msgid ""
8820 " int\n"
8821 " guestfs_fallocate (guestfs_h *g,\n"
8822 "                    const char *path,\n"
8823 "                    int len);\n"
8824 "\n"
8825 msgstr ""
8826
8827 #. type: textblock
8828 #: ../src/guestfs-actions.pod:1500 ../src/guestfs-actions.pod:1526
8829 #: ../fish/guestfish-actions.pod:975 ../fish/guestfish-actions.pod:994
8830 msgid ""
8831 "This command preallocates a file (containing zero bytes) named C<path> of "
8832 "size C<len> bytes.  If the file exists already, it is overwritten."
8833 msgstr ""
8834
8835 #. type: textblock
8836 #: ../src/guestfs-actions.pod:1504 ../fish/guestfish-actions.pod:979
8837 msgid ""
8838 "Do not confuse this with the guestfish-specific C<alloc> command which "
8839 "allocates a file in the host and attaches it as a device."
8840 msgstr ""
8841
8842 #. type: textblock
8843 #: ../src/guestfs-actions.pod:1510 ../fish/guestfish-actions.pod:983
8844 msgid ""
8845 "This function is deprecated.  In new code, use the C<fallocate64> call "
8846 "instead."
8847 msgstr ""
8848
8849 #. type: =head2
8850 #: ../src/guestfs-actions.pod:1519
8851 msgid "guestfs_fallocate64"
8852 msgstr ""
8853
8854 #. type: verbatim
8855 #: ../src/guestfs-actions.pod:1521
8856 #, no-wrap
8857 msgid ""
8858 " int\n"
8859 " guestfs_fallocate64 (guestfs_h *g,\n"
8860 "                      const char *path,\n"
8861 "                      int64_t len);\n"
8862 "\n"
8863 msgstr ""
8864
8865 #. type: textblock
8866 #: ../src/guestfs-actions.pod:1530
8867 msgid ""
8868 "Note that this call allocates disk blocks for the file.  To create a sparse "
8869 "file use C<guestfs_truncate_size> instead."
8870 msgstr ""
8871
8872 #. type: textblock
8873 #: ../src/guestfs-actions.pod:1533
8874 msgid ""
8875 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8876 "oversight it only allowed 30 bit lengths to be specified, effectively "
8877 "limiting the maximum size of files created through that call to 1GB."
8878 msgstr ""
8879
8880 #. type: textblock
8881 #: ../src/guestfs-actions.pod:1538 ../fish/guestfish-actions.pod:1006
8882 msgid ""
8883 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8884 "commands which create a file in the host and attach it as a device."
8885 msgstr ""
8886
8887 #. type: textblock
8888 #: ../src/guestfs-actions.pod:1544
8889 msgid "(Added in 1.3.17)"
8890 msgstr ""
8891
8892 #. type: =head2
8893 #: ../src/guestfs-actions.pod:1546
8894 msgid "guestfs_fgrep"
8895 msgstr ""
8896
8897 #. type: verbatim
8898 #: ../src/guestfs-actions.pod:1548
8899 #, no-wrap
8900 msgid ""
8901 " char **\n"
8902 " guestfs_fgrep (guestfs_h *g,\n"
8903 "                const char *pattern,\n"
8904 "                const char *path);\n"
8905 "\n"
8906 msgstr ""
8907
8908 #. type: textblock
8909 #: ../src/guestfs-actions.pod:1553 ../fish/guestfish-actions.pod:1014
8910 msgid ""
8911 "This calls the external C<fgrep> program and returns the matching lines."
8912 msgstr ""
8913
8914 #. type: =head2
8915 #: ../src/guestfs-actions.pod:1565
8916 msgid "guestfs_fgrepi"
8917 msgstr ""
8918
8919 #. type: verbatim
8920 #: ../src/guestfs-actions.pod:1567
8921 #, no-wrap
8922 msgid ""
8923 " char **\n"
8924 " guestfs_fgrepi (guestfs_h *g,\n"
8925 "                 const char *pattern,\n"
8926 "                 const char *path);\n"
8927 "\n"
8928 msgstr ""
8929
8930 #. type: textblock
8931 #: ../src/guestfs-actions.pod:1572 ../fish/guestfish-actions.pod:1024
8932 msgid ""
8933 "This calls the external C<fgrep -i> program and returns the matching lines."
8934 msgstr ""
8935
8936 #. type: =head2
8937 #: ../src/guestfs-actions.pod:1584
8938 msgid "guestfs_file"
8939 msgstr ""
8940
8941 #. type: verbatim
8942 #: ../src/guestfs-actions.pod:1586
8943 #, no-wrap
8944 msgid ""
8945 " char *\n"
8946 " guestfs_file (guestfs_h *g,\n"
8947 "               const char *path);\n"
8948 "\n"
8949 msgstr ""
8950
8951 #. type: textblock
8952 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1034
8953 msgid ""
8954 "This call uses the standard L<file(1)> command to determine the type or "
8955 "contents of the file."
8956 msgstr ""
8957
8958 #. type: textblock
8959 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1037
8960 msgid ""
8961 "This call will also transparently look inside various types of compressed "
8962 "file."
8963 msgstr ""
8964
8965 #. type: textblock
8966 #: ../src/guestfs-actions.pod:1596 ../fish/guestfish-actions.pod:1040
8967 msgid ""
8968 "The exact command which runs is C<file -zb path>.  Note in particular that "
8969 "the filename is not prepended to the output (the I<-b> option)."
8970 msgstr ""
8971
8972 #. type: textblock
8973 #: ../src/guestfs-actions.pod:1600 ../fish/guestfish-actions.pod:1044
8974 msgid ""
8975 "The output depends on the output of the underlying L<file(1)> command and it"
8976 " can change in future in ways beyond our control.  In other words, the "
8977 "output is not guaranteed by the ABI."
8978 msgstr ""
8979
8980 #. type: textblock
8981 #: ../src/guestfs-actions.pod:1604
8982 msgid ""
8983 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8984 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc), C<guestfs_is_zero>."
8985 msgstr ""
8986
8987 #. type: =head2
8988 #: ../src/guestfs-actions.pod:1612
8989 msgid "guestfs_file_architecture"
8990 msgstr ""
8991
8992 #. type: verbatim
8993 #: ../src/guestfs-actions.pod:1614
8994 #, no-wrap
8995 msgid ""
8996 " char *\n"
8997 " guestfs_file_architecture (guestfs_h *g,\n"
8998 "                            const char *filename);\n"
8999 "\n"
9000 msgstr ""
9001
9002 #. type: textblock
9003 #: ../src/guestfs-actions.pod:1618 ../fish/guestfish-actions.pod:1055
9004 msgid ""
9005 "This detects the architecture of the binary C<filename>, and returns it if "
9006 "known."
9007 msgstr ""
9008
9009 #. type: textblock
9010 #: ../src/guestfs-actions.pod:1621 ../fish/guestfish-actions.pod:1058
9011 msgid "Currently defined architectures are:"
9012 msgstr ""
9013
9014 #. type: =item
9015 #: ../src/guestfs-actions.pod:1625 ../fish/guestfish-actions.pod:1062
9016 msgid "\"i386\""
9017 msgstr ""
9018
9019 #. type: textblock
9020 #: ../src/guestfs-actions.pod:1627 ../fish/guestfish-actions.pod:1064
9021 msgid ""
9022 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
9023 "irrespective of the precise processor requirements of the binary."
9024 msgstr ""
9025
9026 #. type: =item
9027 #: ../src/guestfs-actions.pod:1630 ../fish/guestfish-actions.pod:1067
9028 msgid "\"x86_64\""
9029 msgstr ""
9030
9031 #. type: textblock
9032 #: ../src/guestfs-actions.pod:1632 ../fish/guestfish-actions.pod:1069
9033 msgid "64 bit x86-64."
9034 msgstr ""
9035
9036 #. type: =item
9037 #: ../src/guestfs-actions.pod:1634 ../fish/guestfish-actions.pod:1071
9038 msgid "\"sparc\""
9039 msgstr ""
9040
9041 #. type: textblock
9042 #: ../src/guestfs-actions.pod:1636 ../fish/guestfish-actions.pod:1073
9043 msgid "32 bit SPARC."
9044 msgstr ""
9045
9046 #. type: =item
9047 #: ../src/guestfs-actions.pod:1638 ../fish/guestfish-actions.pod:1075
9048 msgid "\"sparc64\""
9049 msgstr ""
9050
9051 #. type: textblock
9052 #: ../src/guestfs-actions.pod:1640 ../fish/guestfish-actions.pod:1077
9053 msgid "64 bit SPARC V9 and above."
9054 msgstr ""
9055
9056 #. type: =item
9057 #: ../src/guestfs-actions.pod:1642 ../fish/guestfish-actions.pod:1079
9058 msgid "\"ia64\""
9059 msgstr ""
9060
9061 #. type: textblock
9062 #: ../src/guestfs-actions.pod:1644 ../fish/guestfish-actions.pod:1081
9063 msgid "Intel Itanium."
9064 msgstr ""
9065
9066 #. type: =item
9067 #: ../src/guestfs-actions.pod:1646 ../fish/guestfish-actions.pod:1083
9068 msgid "\"ppc\""
9069 msgstr ""
9070
9071 #. type: textblock
9072 #: ../src/guestfs-actions.pod:1648 ../fish/guestfish-actions.pod:1085
9073 msgid "32 bit Power PC."
9074 msgstr ""
9075
9076 #. type: =item
9077 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1087
9078 msgid "\"ppc64\""
9079 msgstr ""
9080
9081 #. type: textblock
9082 #: ../src/guestfs-actions.pod:1652 ../fish/guestfish-actions.pod:1089
9083 msgid "64 bit Power PC."
9084 msgstr ""
9085
9086 #. type: textblock
9087 #: ../src/guestfs-actions.pod:1656 ../fish/guestfish-actions.pod:1093
9088 msgid "Libguestfs may return other architecture strings in future."
9089 msgstr ""
9090
9091 #. type: textblock
9092 #: ../src/guestfs-actions.pod:1658 ../fish/guestfish-actions.pod:1095
9093 msgid "The function works on at least the following types of files:"
9094 msgstr ""
9095
9096 #. type: textblock
9097 #: ../src/guestfs-actions.pod:1664 ../fish/guestfish-actions.pod:1101
9098 msgid "many types of Un*x and Linux binary"
9099 msgstr ""
9100
9101 #. type: textblock
9102 #: ../src/guestfs-actions.pod:1668 ../fish/guestfish-actions.pod:1105
9103 msgid "many types of Un*x and Linux shared library"
9104 msgstr ""
9105
9106 #. type: textblock
9107 #: ../src/guestfs-actions.pod:1672 ../fish/guestfish-actions.pod:1109
9108 msgid "Windows Win32 and Win64 binaries"
9109 msgstr ""
9110
9111 #. type: textblock
9112 #: ../src/guestfs-actions.pod:1676 ../fish/guestfish-actions.pod:1113
9113 msgid "Windows Win32 and Win64 DLLs"
9114 msgstr ""
9115
9116 #. type: textblock
9117 #: ../src/guestfs-actions.pod:1678 ../fish/guestfish-actions.pod:1115
9118 msgid "Win32 binaries and DLLs return C<i386>."
9119 msgstr ""
9120
9121 #. type: textblock
9122 #: ../src/guestfs-actions.pod:1680 ../fish/guestfish-actions.pod:1117
9123 msgid "Win64 binaries and DLLs return C<x86_64>."
9124 msgstr ""
9125
9126 #. type: textblock
9127 #: ../src/guestfs-actions.pod:1684 ../fish/guestfish-actions.pod:1121
9128 msgid "Linux kernel modules"
9129 msgstr ""
9130
9131 #. type: textblock
9132 #: ../src/guestfs-actions.pod:1688 ../fish/guestfish-actions.pod:1125
9133 msgid "Linux new-style initrd images"
9134 msgstr ""
9135
9136 #. type: textblock
9137 #: ../src/guestfs-actions.pod:1692 ../fish/guestfish-actions.pod:1129
9138 msgid "some non-x86 Linux vmlinuz kernels"
9139 msgstr ""
9140
9141 #. type: textblock
9142 #: ../src/guestfs-actions.pod:1696 ../fish/guestfish-actions.pod:1133
9143 msgid "What it can't do currently:"
9144 msgstr ""
9145
9146 #. type: textblock
9147 #: ../src/guestfs-actions.pod:1702 ../fish/guestfish-actions.pod:1139
9148 msgid "static libraries (libfoo.a)"
9149 msgstr ""
9150
9151 #. type: textblock
9152 #: ../src/guestfs-actions.pod:1706 ../fish/guestfish-actions.pod:1143
9153 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
9154 msgstr ""
9155
9156 #. type: textblock
9157 #: ../src/guestfs-actions.pod:1710 ../fish/guestfish-actions.pod:1147
9158 msgid "x86 Linux vmlinuz kernels"
9159 msgstr ""
9160
9161 #. type: textblock
9162 #: ../src/guestfs-actions.pod:1712 ../fish/guestfish-actions.pod:1149
9163 msgid ""
9164 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
9165 "compressed code, and are horribly hard to unpack.  If you want to find the "
9166 "architecture of a kernel, use the architecture of the associated initrd or "
9167 "kernel module(s) instead."
9168 msgstr ""
9169
9170 #. type: textblock
9171 #: ../src/guestfs-actions.pod:1722 ../src/guestfs-actions.pod:1885
9172 #: ../src/guestfs-actions.pod:1902 ../src/guestfs-actions.pod:2601
9173 #: ../src/guestfs-actions.pod:2691 ../src/guestfs-actions.pod:2757
9174 #: ../src/guestfs-actions.pod:2944 ../src/guestfs-actions.pod:2962
9175 #: ../src/guestfs-actions.pod:3002 ../src/guestfs-actions.pod:3077
9176 #: ../src/guestfs-actions.pod:3170 ../src/guestfs-actions.pod:3407
9177 #: ../src/guestfs-actions.pod:3539
9178 msgid "(Added in 1.5.3)"
9179 msgstr ""
9180
9181 #. type: =head2
9182 #: ../src/guestfs-actions.pod:1724
9183 msgid "guestfs_filesize"
9184 msgstr ""
9185
9186 #. type: verbatim
9187 #: ../src/guestfs-actions.pod:1726
9188 #, no-wrap
9189 msgid ""
9190 " int64_t\n"
9191 " guestfs_filesize (guestfs_h *g,\n"
9192 "                   const char *file);\n"
9193 "\n"
9194 msgstr ""
9195
9196 #. type: textblock
9197 #: ../src/guestfs-actions.pod:1730 ../fish/guestfish-actions.pod:1160
9198 msgid "This command returns the size of C<file> in bytes."
9199 msgstr ""
9200
9201 #. type: textblock
9202 #: ../src/guestfs-actions.pod:1732
9203 msgid ""
9204 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9205 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9206 "devices, use C<guestfs_blockdev_getsize64>."
9207 msgstr ""
9208
9209 #. type: textblock
9210 #: ../src/guestfs-actions.pod:1738
9211 msgid "(Added in 1.0.82)"
9212 msgstr ""
9213
9214 #. type: =head2
9215 #: ../src/guestfs-actions.pod:1740
9216 msgid "guestfs_fill"
9217 msgstr ""
9218
9219 #. type: verbatim
9220 #: ../src/guestfs-actions.pod:1742
9221 #, no-wrap
9222 msgid ""
9223 " int\n"
9224 " guestfs_fill (guestfs_h *g,\n"
9225 "               int c,\n"
9226 "               int len,\n"
9227 "               const char *path);\n"
9228 "\n"
9229 msgstr ""
9230
9231 #. type: textblock
9232 #: ../src/guestfs-actions.pod:1748 ../fish/guestfish-actions.pod:1170
9233 msgid ""
9234 "This command creates a new file called C<path>.  The initial content of the "
9235 "file is C<len> octets of C<c>, where C<c> must be a number in the range "
9236 "C<[0..255]>."
9237 msgstr ""
9238
9239 #. type: textblock
9240 #: ../src/guestfs-actions.pod:1752
9241 msgid ""
9242 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9243 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9244 "bytes use C<guestfs_fill_pattern>."
9245 msgstr ""
9246
9247 #. type: textblock
9248 #: ../src/guestfs-actions.pod:1764
9249 msgid "(Added in 1.0.79)"
9250 msgstr ""
9251
9252 #. type: =head2
9253 #: ../src/guestfs-actions.pod:1766
9254 msgid "guestfs_fill_pattern"
9255 msgstr ""
9256
9257 #. type: verbatim
9258 #: ../src/guestfs-actions.pod:1768
9259 #, no-wrap
9260 msgid ""
9261 " int\n"
9262 " guestfs_fill_pattern (guestfs_h *g,\n"
9263 "                       const char *pattern,\n"
9264 "                       int len,\n"
9265 "                       const char *path);\n"
9266 "\n"
9267 msgstr ""
9268
9269 #. type: textblock
9270 #: ../src/guestfs-actions.pod:1774
9271 msgid ""
9272 "This function is like C<guestfs_fill> except that it creates a new file of "
9273 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9274 "pattern is truncated if necessary to ensure the length of the file is "
9275 "exactly C<len> bytes."
9276 msgstr ""
9277
9278 #. type: textblock
9279 #: ../src/guestfs-actions.pod:1786
9280 msgid "(Added in 1.3.12)"
9281 msgstr ""
9282
9283 #. type: =head2
9284 #: ../src/guestfs-actions.pod:1788
9285 msgid "guestfs_find"
9286 msgstr ""
9287
9288 #. type: verbatim
9289 #: ../src/guestfs-actions.pod:1790
9290 #, no-wrap
9291 msgid ""
9292 " char **\n"
9293 " guestfs_find (guestfs_h *g,\n"
9294 "               const char *directory);\n"
9295 "\n"
9296 msgstr ""
9297
9298 #. type: textblock
9299 #: ../src/guestfs-actions.pod:1794 ../fish/guestfish-actions.pod:1192
9300 msgid ""
9301 "This command lists out all files and directories, recursively, starting at "
9302 "C<directory>.  It is essentially equivalent to running the shell command "
9303 "C<find directory -print> but some post-processing happens on the output, "
9304 "described below."
9305 msgstr ""
9306
9307 #. type: textblock
9308 #: ../src/guestfs-actions.pod:1799 ../fish/guestfish-actions.pod:1197
9309 msgid ""
9310 "This returns a list of strings I<without any prefix>.  Thus if the directory"
9311 " structure was:"
9312 msgstr ""
9313
9314 #. type: verbatim
9315 #: ../src/guestfs-actions.pod:1802 ../fish/guestfish-actions.pod:1200
9316 #, no-wrap
9317 msgid ""
9318 " /tmp/a\n"
9319 " /tmp/b\n"
9320 " /tmp/c/d\n"
9321 "\n"
9322 msgstr ""
9323
9324 #. type: textblock
9325 #: ../src/guestfs-actions.pod:1806
9326 msgid ""
9327 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9328 msgstr ""
9329
9330 #. type: verbatim
9331 #: ../src/guestfs-actions.pod:1809 ../fish/guestfish-actions.pod:1207
9332 #, no-wrap
9333 msgid ""
9334 " a\n"
9335 " b\n"
9336 " c\n"
9337 " c/d\n"
9338 "\n"
9339 msgstr ""
9340
9341 #. type: textblock
9342 #: ../src/guestfs-actions.pod:1814 ../fish/guestfish-actions.pod:1212
9343 msgid ""
9344 "If C<directory> is not a directory, then this command returns an error."
9345 msgstr ""
9346
9347 #. type: textblock
9348 #: ../src/guestfs-actions.pod:1817 ../fish/guestfish-actions.pod:1215
9349 msgid "The returned list is sorted."
9350 msgstr ""
9351
9352 #. type: textblock
9353 #: ../src/guestfs-actions.pod:1819
9354 msgid "See also C<guestfs_find0>."
9355 msgstr ""
9356
9357 #. type: textblock
9358 #: ../src/guestfs-actions.pod:1828 ../src/guestfs-actions.pod:4297
9359 #: ../src/guestfs-actions.pod:6001
9360 msgid "(Added in 1.0.27)"
9361 msgstr ""
9362
9363 #. type: =head2
9364 #: ../src/guestfs-actions.pod:1830
9365 msgid "guestfs_find0"
9366 msgstr ""
9367
9368 #. type: verbatim
9369 #: ../src/guestfs-actions.pod:1832
9370 #, no-wrap
9371 msgid ""
9372 " int\n"
9373 " guestfs_find0 (guestfs_h *g,\n"
9374 "                const char *directory,\n"
9375 "                const char *files);\n"
9376 "\n"
9377 msgstr ""
9378
9379 #. type: textblock
9380 #: ../src/guestfs-actions.pod:1837 ../fish/guestfish-actions.pod:1226
9381 msgid ""
9382 "This command lists out all files and directories, recursively, starting at "
9383 "C<directory>, placing the resulting list in the external file called "
9384 "C<files>."
9385 msgstr ""
9386
9387 #. type: textblock
9388 #: ../src/guestfs-actions.pod:1841
9389 msgid ""
9390 "This command works the same way as C<guestfs_find> with the following "
9391 "exceptions:"
9392 msgstr ""
9393
9394 #. type: textblock
9395 #: ../src/guestfs-actions.pod:1848 ../fish/guestfish-actions.pod:1237
9396 msgid "The resulting list is written to an external file."
9397 msgstr ""
9398
9399 #. type: textblock
9400 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1241
9401 msgid ""
9402 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9403 "L<find(1)> option I<-print0>."
9404 msgstr ""
9405
9406 #. type: textblock
9407 #: ../src/guestfs-actions.pod:1857 ../fish/guestfish-actions.pod:1246
9408 msgid "This command is not limited in the number of names that it can return."
9409 msgstr ""
9410
9411 #. type: textblock
9412 #: ../src/guestfs-actions.pod:1862 ../fish/guestfish-actions.pod:1251
9413 msgid "The result list is not sorted."
9414 msgstr ""
9415
9416 #. type: textblock
9417 #: ../src/guestfs-actions.pod:1868
9418 msgid "(Added in 1.0.74)"
9419 msgstr ""
9420
9421 #. type: =head2
9422 #: ../src/guestfs-actions.pod:1870
9423 msgid "guestfs_findfs_label"
9424 msgstr ""
9425
9426 #. type: verbatim
9427 #: ../src/guestfs-actions.pod:1872
9428 #, no-wrap
9429 msgid ""
9430 " char *\n"
9431 " guestfs_findfs_label (guestfs_h *g,\n"
9432 "                       const char *label);\n"
9433 "\n"
9434 msgstr ""
9435
9436 #. type: textblock
9437 #: ../src/guestfs-actions.pod:1876 ../fish/guestfish-actions.pod:1261
9438 msgid ""
9439 "This command searches the filesystems and returns the one which has the "
9440 "given label.  An error is returned if no such filesystem can be found."
9441 msgstr ""
9442
9443 #. type: textblock
9444 #: ../src/guestfs-actions.pod:1880
9445 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9446 msgstr ""
9447
9448 #. type: =head2
9449 #: ../src/guestfs-actions.pod:1887
9450 msgid "guestfs_findfs_uuid"
9451 msgstr ""
9452
9453 #. type: verbatim
9454 #: ../src/guestfs-actions.pod:1889
9455 #, no-wrap
9456 msgid ""
9457 " char *\n"
9458 " guestfs_findfs_uuid (guestfs_h *g,\n"
9459 "                      const char *uuid);\n"
9460 "\n"
9461 msgstr ""
9462
9463 #. type: textblock
9464 #: ../src/guestfs-actions.pod:1893 ../fish/guestfish-actions.pod:1271
9465 msgid ""
9466 "This command searches the filesystems and returns the one which has the "
9467 "given UUID.  An error is returned if no such filesystem can be found."
9468 msgstr ""
9469
9470 #. type: textblock
9471 #: ../src/guestfs-actions.pod:1897
9472 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9473 msgstr ""
9474
9475 #. type: =head2
9476 #: ../src/guestfs-actions.pod:1904
9477 msgid "guestfs_fsck"
9478 msgstr ""
9479
9480 #. type: verbatim
9481 #: ../src/guestfs-actions.pod:1906
9482 #, no-wrap
9483 msgid ""
9484 " int\n"
9485 " guestfs_fsck (guestfs_h *g,\n"
9486 "               const char *fstype,\n"
9487 "               const char *device);\n"
9488 "\n"
9489 msgstr ""
9490
9491 #. type: textblock
9492 #: ../src/guestfs-actions.pod:1911 ../fish/guestfish-actions.pod:1281
9493 msgid ""
9494 "This runs the filesystem checker (fsck) on C<device> which should have "
9495 "filesystem type C<fstype>."
9496 msgstr ""
9497
9498 #. type: textblock
9499 #: ../src/guestfs-actions.pod:1914 ../fish/guestfish-actions.pod:1284
9500 msgid ""
9501 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9502 "codes from C<fsck>."
9503 msgstr ""
9504
9505 #. type: textblock
9506 #: ../src/guestfs-actions.pod:1923 ../fish/guestfish-actions.pod:1293
9507 msgid "Multiple status codes can be summed together."
9508 msgstr ""
9509
9510 #. type: textblock
9511 #: ../src/guestfs-actions.pod:1927 ../fish/guestfish-actions.pod:1297
9512 msgid ""
9513 "A non-zero return code can mean \"success\", for example if errors have been"
9514 " corrected on the filesystem."
9515 msgstr ""
9516
9517 #. type: textblock
9518 #: ../src/guestfs-actions.pod:1932 ../fish/guestfish-actions.pod:1302
9519 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9520 msgstr ""
9521
9522 #. type: textblock
9523 #: ../src/guestfs-actions.pod:1937 ../fish/guestfish-actions.pod:1307
9524 msgid ""
9525 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9526 msgstr ""
9527
9528 #. type: textblock
9529 #: ../src/guestfs-actions.pod:1941 ../src/guestfs-actions.pod:7768
9530 msgid "(Added in 1.0.16)"
9531 msgstr ""
9532
9533 #. type: =head2
9534 #: ../src/guestfs-actions.pod:1943
9535 msgid "guestfs_get_append"
9536 msgstr ""
9537
9538 #. type: verbatim
9539 #: ../src/guestfs-actions.pod:1945
9540 #, no-wrap
9541 msgid ""
9542 " const char *\n"
9543 " guestfs_get_append (guestfs_h *g);\n"
9544 "\n"
9545 msgstr ""
9546
9547 #. type: textblock
9548 #: ../src/guestfs-actions.pod:1948 ../fish/guestfish-actions.pod:1313
9549 msgid ""
9550 "Return the additional kernel options which are added to the guest kernel "
9551 "command line."
9552 msgstr ""
9553
9554 #. type: textblock
9555 #: ../src/guestfs-actions.pod:1951 ../fish/guestfish-actions.pod:1316
9556 msgid "If C<NULL> then no options are added."
9557 msgstr ""
9558
9559 #. type: textblock
9560 #: ../src/guestfs-actions.pod:1953
9561 msgid ""
9562 "This function returns a string which may be NULL.  There is no way to return"
9563 " an error from this function.  The string is owned by the guest handle and "
9564 "must I<not> be freed."
9565 msgstr ""
9566
9567 #. type: textblock
9568 #: ../src/guestfs-actions.pod:1957 ../src/guestfs-actions.pod:5679
9569 #: ../src/guestfs-actions.pod:6161 ../src/guestfs-actions.pod:6601
9570 #: ../src/guestfs-actions.pod:6620 ../src/guestfs-actions.pod:6636
9571 #: ../src/guestfs-actions.pod:6660 ../src/guestfs-actions.pod:7414
9572 #: ../src/guestfs-actions.pod:7429 ../src/guestfs-actions.pod:7811
9573 msgid "(Added in 1.0.26)"
9574 msgstr ""
9575
9576 #. type: =head2
9577 #: ../src/guestfs-actions.pod:1959
9578 msgid "guestfs_get_attach_method"
9579 msgstr ""
9580
9581 #. type: verbatim
9582 #: ../src/guestfs-actions.pod:1961
9583 #, no-wrap
9584 msgid ""
9585 " char *\n"
9586 " guestfs_get_attach_method (guestfs_h *g);\n"
9587 "\n"
9588 msgstr ""
9589
9590 #. type: textblock
9591 #: ../src/guestfs-actions.pod:1964
9592 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9593 msgstr ""
9594
9595 #. type: textblock
9596 #: ../src/guestfs-actions.pod:1969 ../src/guestfs-actions.pod:6191
9597 msgid "(Added in 1.9.8)"
9598 msgstr ""
9599
9600 #. type: =head2
9601 #: ../src/guestfs-actions.pod:1971
9602 msgid "guestfs_get_autosync"
9603 msgstr ""
9604
9605 #. type: verbatim
9606 #: ../src/guestfs-actions.pod:1973
9607 #, no-wrap
9608 msgid ""
9609 " int\n"
9610 " guestfs_get_autosync (guestfs_h *g);\n"
9611 "\n"
9612 msgstr ""
9613
9614 #. type: textblock
9615 #: ../src/guestfs-actions.pod:1976 ../fish/guestfish-actions.pod:1328
9616 msgid "Get the autosync flag."
9617 msgstr ""
9618
9619 #. type: =head2
9620 #: ../src/guestfs-actions.pod:1982
9621 msgid "guestfs_get_direct"
9622 msgstr ""
9623
9624 #. type: verbatim
9625 #: ../src/guestfs-actions.pod:1984
9626 #, no-wrap
9627 msgid ""
9628 " int\n"
9629 " guestfs_get_direct (guestfs_h *g);\n"
9630 "\n"
9631 msgstr ""
9632
9633 #. type: textblock
9634 #: ../src/guestfs-actions.pod:1987 ../fish/guestfish-actions.pod:1334
9635 msgid "Return the direct appliance mode flag."
9636 msgstr ""
9637
9638 #. type: textblock
9639 #: ../src/guestfs-actions.pod:1991 ../src/guestfs-actions.pod:6232
9640 msgid "(Added in 1.0.72)"
9641 msgstr ""
9642
9643 #. type: =head2
9644 #: ../src/guestfs-actions.pod:1993
9645 msgid "guestfs_get_e2label"
9646 msgstr ""
9647
9648 #. type: verbatim
9649 #: ../src/guestfs-actions.pod:1995
9650 #, no-wrap
9651 msgid ""
9652 " char *\n"
9653 " guestfs_get_e2label (guestfs_h *g,\n"
9654 "                      const char *device);\n"
9655 "\n"
9656 msgstr ""
9657
9658 #. type: textblock
9659 #: ../src/guestfs-actions.pod:1999 ../fish/guestfish-actions.pod:1340
9660 msgid ""
9661 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9662 msgstr ""
9663
9664 #. type: textblock
9665 #: ../src/guestfs-actions.pod:2005 ../fish/guestfish-actions.pod:1343
9666 msgid ""
9667 "This function is deprecated.  In new code, use the C<vfs_label> call "
9668 "instead."
9669 msgstr ""
9670
9671 #. type: textblock
9672 #: ../src/guestfs-actions.pod:2012 ../src/guestfs-actions.pod:2033
9673 #: ../src/guestfs-actions.pod:6250 ../src/guestfs-actions.pod:6269
9674 msgid "(Added in 1.0.15)"
9675 msgstr ""
9676
9677 #. type: =head2
9678 #: ../src/guestfs-actions.pod:2014
9679 msgid "guestfs_get_e2uuid"
9680 msgstr ""
9681
9682 #. type: verbatim
9683 #: ../src/guestfs-actions.pod:2016
9684 #, no-wrap
9685 msgid ""
9686 " char *\n"
9687 " guestfs_get_e2uuid (guestfs_h *g,\n"
9688 "                     const char *device);\n"
9689 "\n"
9690 msgstr ""
9691
9692 #. type: textblock
9693 #: ../src/guestfs-actions.pod:2020 ../fish/guestfish-actions.pod:1354
9694 msgid ""
9695 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9696 msgstr ""
9697
9698 #. type: textblock
9699 #: ../src/guestfs-actions.pod:2026 ../fish/guestfish-actions.pod:1357
9700 msgid ""
9701 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9702 msgstr ""
9703
9704 #. type: =head2
9705 #: ../src/guestfs-actions.pod:2035
9706 msgid "guestfs_get_memsize"
9707 msgstr ""
9708
9709 #. type: verbatim
9710 #: ../src/guestfs-actions.pod:2037
9711 #, no-wrap
9712 msgid ""
9713 " int\n"
9714 " guestfs_get_memsize (guestfs_h *g);\n"
9715 "\n"
9716 msgstr ""
9717
9718 #. type: textblock
9719 #: ../src/guestfs-actions.pod:2040 ../fish/guestfish-actions.pod:1368
9720 msgid ""
9721 "This gets the memory size in megabytes allocated to the qemu subprocess."
9722 msgstr ""
9723
9724 #. type: textblock
9725 #: ../src/guestfs-actions.pod:2043
9726 msgid ""
9727 "If C<guestfs_set_memsize> was not called on this handle, and if "
9728 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default"
9729 " value for memsize."
9730 msgstr ""
9731
9732 #. type: textblock
9733 #: ../src/guestfs-actions.pod:2047 ../src/guestfs-actions.pod:2137
9734 #: ../src/guestfs-actions.pod:6285 ../src/guestfs-actions.pod:6409
9735 #: ../fish/guestfish-actions.pod:1375 ../fish/guestfish-actions.pod:1432
9736 #: ../fish/guestfish-actions.pod:4157 ../fish/guestfish-actions.pod:4259
9737 msgid ""
9738 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9739 msgstr ""
9740
9741 #. type: textblock
9742 #: ../src/guestfs-actions.pod:2052 ../src/guestfs-actions.pod:4588
9743 #: ../src/guestfs-actions.pod:4797 ../src/guestfs-actions.pod:4816
9744 #: ../src/guestfs-actions.pod:4835 ../src/guestfs-actions.pod:4847
9745 #: ../src/guestfs-actions.pod:4864 ../src/guestfs-actions.pod:4877
9746 #: ../src/guestfs-actions.pod:5904 ../src/guestfs-actions.pod:6290
9747 #: ../src/guestfs-actions.pod:6568 ../src/guestfs-actions.pod:7183
9748 msgid "(Added in 1.0.55)"
9749 msgstr ""
9750
9751 #. type: =head2
9752 #: ../src/guestfs-actions.pod:2054
9753 msgid "guestfs_get_network"
9754 msgstr ""
9755
9756 #. type: verbatim
9757 #: ../src/guestfs-actions.pod:2056
9758 #, no-wrap
9759 msgid ""
9760 " int\n"
9761 " guestfs_get_network (guestfs_h *g);\n"
9762 "\n"
9763 msgstr ""
9764
9765 #. type: textblock
9766 #: ../src/guestfs-actions.pod:2059 ../fish/guestfish-actions.pod:1382
9767 msgid "This returns the enable network flag."
9768 msgstr ""
9769
9770 #. type: textblock
9771 #: ../src/guestfs-actions.pod:2063 ../src/guestfs-actions.pod:6309
9772 msgid "(Added in 1.5.4)"
9773 msgstr ""
9774
9775 #. type: =head2
9776 #: ../src/guestfs-actions.pod:2065
9777 msgid "guestfs_get_path"
9778 msgstr ""
9779
9780 #. type: verbatim
9781 #: ../src/guestfs-actions.pod:2067
9782 #, no-wrap
9783 msgid ""
9784 " const char *\n"
9785 " guestfs_get_path (guestfs_h *g);\n"
9786 "\n"
9787 msgstr ""
9788
9789 #. type: textblock
9790 #: ../src/guestfs-actions.pod:2070 ../fish/guestfish-actions.pod:1388
9791 msgid "Return the current search path."
9792 msgstr ""
9793
9794 #. type: textblock
9795 #: ../src/guestfs-actions.pod:2072 ../fish/guestfish-actions.pod:1390
9796 msgid ""
9797 "This is always non-NULL.  If it wasn't set already, then this will return "
9798 "the default path."
9799 msgstr ""
9800
9801 #. type: textblock
9802 #: ../src/guestfs-actions.pod:2075 ../src/guestfs-actions.pod:2113
9803 msgid ""
9804 "This function returns a string, or NULL on error.  The string is owned by "
9805 "the guest handle and must I<not> be freed."
9806 msgstr ""
9807
9808 #. type: =head2
9809 #: ../src/guestfs-actions.pod:2080
9810 msgid "guestfs_get_pgroup"
9811 msgstr ""
9812
9813 #. type: verbatim
9814 #: ../src/guestfs-actions.pod:2082
9815 #, no-wrap
9816 msgid ""
9817 " int\n"
9818 " guestfs_get_pgroup (guestfs_h *g);\n"
9819 "\n"
9820 msgstr ""
9821
9822 #. type: textblock
9823 #: ../src/guestfs-actions.pod:2085 ../fish/guestfish-actions.pod:1397
9824 msgid "This returns the process group flag."
9825 msgstr ""
9826
9827 #. type: =head2
9828 #: ../src/guestfs-actions.pod:2089
9829 msgid "guestfs_get_pid"
9830 msgstr ""
9831
9832 #. type: verbatim
9833 #: ../src/guestfs-actions.pod:2091
9834 #, no-wrap
9835 msgid ""
9836 " int\n"
9837 " guestfs_get_pid (guestfs_h *g);\n"
9838 "\n"
9839 msgstr ""
9840
9841 #. type: textblock
9842 #: ../src/guestfs-actions.pod:2094 ../fish/guestfish-actions.pod:1405
9843 msgid ""
9844 "Return the process ID of the qemu subprocess.  If there is no qemu "
9845 "subprocess, then this will return an error."
9846 msgstr ""
9847
9848 #. type: textblock
9849 #: ../src/guestfs-actions.pod:2097 ../fish/guestfish-actions.pod:1408
9850 msgid "This is an internal call used for debugging and testing."
9851 msgstr ""
9852
9853 #. type: textblock
9854 #: ../src/guestfs-actions.pod:2101
9855 msgid "(Added in 1.0.56)"
9856 msgstr ""
9857
9858 #. type: =head2
9859 #: ../src/guestfs-actions.pod:2103
9860 msgid "guestfs_get_qemu"
9861 msgstr ""
9862
9863 #. type: verbatim
9864 #: ../src/guestfs-actions.pod:2105
9865 #, no-wrap
9866 msgid ""
9867 " const char *\n"
9868 " guestfs_get_qemu (guestfs_h *g);\n"
9869 "\n"
9870 msgstr ""
9871
9872 #. type: textblock
9873 #: ../src/guestfs-actions.pod:2108 ../fish/guestfish-actions.pod:1414
9874 msgid "Return the current qemu binary."
9875 msgstr ""
9876
9877 #. type: textblock
9878 #: ../src/guestfs-actions.pod:2110 ../fish/guestfish-actions.pod:1416
9879 msgid ""
9880 "This is always non-NULL.  If it wasn't set already, then this will return "
9881 "the default qemu binary name."
9882 msgstr ""
9883
9884 #. type: textblock
9885 #: ../src/guestfs-actions.pod:2116 ../src/guestfs-actions.pod:6371
9886 msgid "(Added in 1.0.6)"
9887 msgstr ""
9888
9889 #. type: =head2
9890 #: ../src/guestfs-actions.pod:2118
9891 msgid "guestfs_get_recovery_proc"
9892 msgstr ""
9893
9894 #. type: verbatim
9895 #: ../src/guestfs-actions.pod:2120
9896 #, no-wrap
9897 msgid ""
9898 " int\n"
9899 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9900 "\n"
9901 msgstr ""
9902
9903 #. type: textblock
9904 #: ../src/guestfs-actions.pod:2123 ../fish/guestfish-actions.pod:1423
9905 msgid "Return the recovery process enabled flag."
9906 msgstr ""
9907
9908 #. type: textblock
9909 #: ../src/guestfs-actions.pod:2127 ../src/guestfs-actions.pod:3661
9910 #: ../src/guestfs-actions.pod:3992 ../src/guestfs-actions.pod:4395
9911 #: ../src/guestfs-actions.pod:4427 ../src/guestfs-actions.pod:5609
9912 #: ../src/guestfs-actions.pod:5952 ../src/guestfs-actions.pod:6395
9913 #: ../src/guestfs-actions.pod:7086 ../src/guestfs-actions.pod:7106
9914 #: ../src/guestfs-actions.pod:7298
9915 msgid "(Added in 1.0.77)"
9916 msgstr ""
9917
9918 #. type: =head2
9919 #: ../src/guestfs-actions.pod:2129
9920 msgid "guestfs_get_selinux"
9921 msgstr ""
9922
9923 #. type: verbatim
9924 #: ../src/guestfs-actions.pod:2131
9925 #, no-wrap
9926 msgid ""
9927 " int\n"
9928 " guestfs_get_selinux (guestfs_h *g);\n"
9929 "\n"
9930 msgstr ""
9931
9932 #. type: textblock
9933 #: ../src/guestfs-actions.pod:2134
9934 msgid ""
9935 "This returns the current setting of the selinux flag which is passed to the "
9936 "appliance at boot time.  See C<guestfs_set_selinux>."
9937 msgstr ""
9938
9939 #. type: textblock
9940 #: ../src/guestfs-actions.pod:2142 ../src/guestfs-actions.pod:2205
9941 #: ../src/guestfs-actions.pod:6414 ../src/guestfs-actions.pod:6472
9942 msgid "(Added in 1.0.67)"
9943 msgstr ""
9944
9945 #. type: =head2
9946 #: ../src/guestfs-actions.pod:2144
9947 msgid "guestfs_get_state"
9948 msgstr ""
9949
9950 #. type: verbatim
9951 #: ../src/guestfs-actions.pod:2146
9952 #, no-wrap
9953 msgid ""
9954 " int\n"
9955 " guestfs_get_state (guestfs_h *g);\n"
9956 "\n"
9957 msgstr ""
9958
9959 #. type: textblock
9960 #: ../src/guestfs-actions.pod:2149 ../fish/guestfish-actions.pod:1439
9961 msgid ""
9962 "This returns the current state as an opaque integer.  This is only useful "
9963 "for printing debug and internal error messages."
9964 msgstr ""
9965
9966 #. type: textblock
9967 #: ../src/guestfs-actions.pod:2152 ../src/guestfs-actions.pod:3432
9968 #: ../src/guestfs-actions.pod:3461 ../src/guestfs-actions.pod:3522
9969 #: ../src/guestfs-actions.pod:3549 ../fish/guestfish-actions.pod:1442
9970 #: ../fish/guestfish-actions.pod:2362 ../fish/guestfish-actions.pod:2380
9971 #: ../fish/guestfish-actions.pod:2418 ../fish/guestfish-actions.pod:2434
9972 msgid "For more information on states, see L<guestfs(3)>."
9973 msgstr ""
9974
9975 #. type: =head2
9976 #: ../src/guestfs-actions.pod:2158
9977 msgid "guestfs_get_trace"
9978 msgstr ""
9979
9980 #. type: verbatim
9981 #: ../src/guestfs-actions.pod:2160
9982 #, no-wrap
9983 msgid ""
9984 " int\n"
9985 " guestfs_get_trace (guestfs_h *g);\n"
9986 "\n"
9987 msgstr ""
9988
9989 #. type: textblock
9990 #: ../src/guestfs-actions.pod:2163 ../fish/guestfish-actions.pod:1448
9991 msgid "Return the command trace flag."
9992 msgstr ""
9993
9994 #. type: =head2
9995 #: ../src/guestfs-actions.pod:2169
9996 msgid "guestfs_get_umask"
9997 msgstr ""
9998
9999 #. type: verbatim
10000 #: ../src/guestfs-actions.pod:2171
10001 #, no-wrap
10002 msgid ""
10003 " int\n"
10004 " guestfs_get_umask (guestfs_h *g);\n"
10005 "\n"
10006 msgstr ""
10007
10008 #. type: textblock
10009 #: ../src/guestfs-actions.pod:2174
10010 msgid ""
10011 "Return the current umask.  By default the umask is C<022> unless it has been"
10012 " set by calling C<guestfs_umask>."
10013 msgstr ""
10014
10015 #. type: =head2
10016 #: ../src/guestfs-actions.pod:2181
10017 msgid "guestfs_get_verbose"
10018 msgstr ""
10019
10020 #. type: verbatim
10021 #: ../src/guestfs-actions.pod:2183
10022 #, no-wrap
10023 msgid ""
10024 " int\n"
10025 " guestfs_get_verbose (guestfs_h *g);\n"
10026 "\n"
10027 msgstr ""
10028
10029 #. type: textblock
10030 #: ../src/guestfs-actions.pod:2186 ../fish/guestfish-actions.pod:1461
10031 msgid "This returns the verbose messages flag."
10032 msgstr ""
10033
10034 #. type: =head2
10035 #: ../src/guestfs-actions.pod:2192
10036 msgid "guestfs_getcon"
10037 msgstr ""
10038
10039 #. type: verbatim
10040 #: ../src/guestfs-actions.pod:2194
10041 #, no-wrap
10042 msgid ""
10043 " char *\n"
10044 " guestfs_getcon (guestfs_h *g);\n"
10045 "\n"
10046 msgstr ""
10047
10048 #. type: textblock
10049 #: ../src/guestfs-actions.pod:2197 ../fish/guestfish-actions.pod:1467
10050 msgid "This gets the SELinux security context of the daemon."
10051 msgstr ""
10052
10053 #. type: textblock
10054 #: ../src/guestfs-actions.pod:2199
10055 msgid ""
10056 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
10057 msgstr ""
10058
10059 #. type: =head2
10060 #: ../src/guestfs-actions.pod:2207
10061 msgid "guestfs_getxattr"
10062 msgstr ""
10063
10064 #. type: verbatim
10065 #: ../src/guestfs-actions.pod:2209
10066 #, no-wrap
10067 msgid ""
10068 " char *\n"
10069 " guestfs_getxattr (guestfs_h *g,\n"
10070 "                   const char *path,\n"
10071 "                   const char *name,\n"
10072 "                   size_t *size_r);\n"
10073 "\n"
10074 msgstr ""
10075
10076 #. type: textblock
10077 #: ../src/guestfs-actions.pod:2215
10078 msgid ""
10079 "Get a single extended attribute from file C<path> named C<name>.  This call "
10080 "follows symlinks.  If you want to lookup an extended attribute for the "
10081 "symlink itself, use C<guestfs_lgetxattr>."
10082 msgstr ""
10083
10084 #. type: textblock
10085 #: ../src/guestfs-actions.pod:2219 ../src/guestfs-actions.pod:3675
10086 msgid ""
10087 "Normally it is better to get all extended attributes from a file in one go "
10088 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
10089 "implementations are buggy and do not provide a way to list out attributes.  "
10090 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
10091 "extended attributes you want in advance and call this function."
10092 msgstr ""
10093
10094 #. type: textblock
10095 #: ../src/guestfs-actions.pod:2226 ../src/guestfs-actions.pod:3682
10096 #: ../fish/guestfish-actions.pod:1487 ../fish/guestfish-actions.pod:2514
10097 msgid ""
10098 "Extended attribute values are blobs of binary data.  If there is no extended"
10099 " attribute named C<name>, this returns an error."
10100 msgstr ""
10101
10102 #. type: textblock
10103 #: ../src/guestfs-actions.pod:2229
10104 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
10105 msgstr ""
10106
10107 #. type: textblock
10108 #: ../src/guestfs-actions.pod:2231 ../src/guestfs-actions.pod:2422
10109 #: ../src/guestfs-actions.pod:2892 ../src/guestfs-actions.pod:3687
10110 #: ../src/guestfs-actions.pod:5602 ../src/guestfs-actions.pod:5628
10111 #: ../src/guestfs-actions.pod:5809
10112 msgid ""
10113 "This function returns a buffer, or NULL on error.  The size of the returned "
10114 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer"
10115 " after use>."
10116 msgstr ""
10117
10118 #. type: textblock
10119 #: ../src/guestfs-actions.pod:2235 ../src/guestfs-actions.pod:3691
10120 msgid "(Added in 1.7.24)"
10121 msgstr ""
10122
10123 #. type: =head2
10124 #: ../src/guestfs-actions.pod:2237
10125 msgid "guestfs_getxattrs"
10126 msgstr ""
10127
10128 #. type: verbatim
10129 #: ../src/guestfs-actions.pod:2239
10130 #, no-wrap
10131 msgid ""
10132 " struct guestfs_xattr_list *\n"
10133 " guestfs_getxattrs (guestfs_h *g,\n"
10134 "                    const char *path);\n"
10135 "\n"
10136 msgstr ""
10137
10138 #. type: textblock
10139 #: ../src/guestfs-actions.pod:2243 ../fish/guestfish-actions.pod:1496
10140 msgid ""
10141 "This call lists the extended attributes of the file or directory C<path>."
10142 msgstr ""
10143
10144 #. type: textblock
10145 #: ../src/guestfs-actions.pod:2246 ../fish/guestfish-actions.pod:1499
10146 msgid ""
10147 "At the system call level, this is a combination of the L<listxattr(2)> and "
10148 "L<getxattr(2)> calls."
10149 msgstr ""
10150
10151 #. type: textblock
10152 #: ../src/guestfs-actions.pod:2249
10153 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
10154 msgstr ""
10155
10156 #. type: textblock
10157 #: ../src/guestfs-actions.pod:2251 ../src/guestfs-actions.pod:3703
10158 #: ../src/guestfs-actions.pod:4391
10159 msgid ""
10160 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was"
10161 " an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
10162 msgstr ""
10163
10164 #. type: textblock
10165 #: ../src/guestfs-actions.pod:2255 ../src/guestfs-actions.pod:3707
10166 #: ../src/guestfs-actions.pod:3906 ../src/guestfs-actions.pod:3942
10167 #: ../src/guestfs-actions.pod:5982 ../src/guestfs-actions.pod:6491
10168 #: ../src/guestfs-actions.pod:7876
10169 msgid "(Added in 1.0.59)"
10170 msgstr ""
10171
10172 #. type: =head2
10173 #: ../src/guestfs-actions.pod:2257
10174 msgid "guestfs_glob_expand"
10175 msgstr ""
10176
10177 #. type: verbatim
10178 #: ../src/guestfs-actions.pod:2259
10179 #, no-wrap
10180 msgid ""
10181 " char **\n"
10182 " guestfs_glob_expand (guestfs_h *g,\n"
10183 "                      const char *pattern);\n"
10184 "\n"
10185 msgstr ""
10186
10187 #. type: textblock
10188 #: ../src/guestfs-actions.pod:2263 ../fish/guestfish-actions.pod:1508
10189 msgid ""
10190 "This command searches for all the pathnames matching C<pattern> according to"
10191 " the wildcard expansion rules used by the shell."
10192 msgstr ""
10193
10194 #. type: textblock
10195 #: ../src/guestfs-actions.pod:2267 ../fish/guestfish-actions.pod:1512
10196 msgid ""
10197 "If no paths match, then this returns an empty list (note: not an error)."
10198 msgstr ""
10199
10200 #. type: textblock
10201 #: ../src/guestfs-actions.pod:2270 ../fish/guestfish-actions.pod:1515
10202 msgid ""
10203 "It is just a wrapper around the C L<glob(3)> function with flags "
10204 "C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
10205 msgstr ""
10206
10207 #. type: textblock
10208 #: ../src/guestfs-actions.pod:2278 ../src/guestfs-actions.pod:6684
10209 #: ../src/guestfs-actions.pod:6701
10210 msgid "(Added in 1.0.50)"
10211 msgstr ""
10212
10213 #. type: =head2
10214 #: ../src/guestfs-actions.pod:2280
10215 msgid "guestfs_grep"
10216 msgstr ""
10217
10218 #. type: verbatim
10219 #: ../src/guestfs-actions.pod:2282
10220 #, no-wrap
10221 msgid ""
10222 " char **\n"
10223 " guestfs_grep (guestfs_h *g,\n"
10224 "               const char *regex,\n"
10225 "               const char *path);\n"
10226 "\n"
10227 msgstr ""
10228
10229 #. type: textblock
10230 #: ../src/guestfs-actions.pod:2287 ../fish/guestfish-actions.pod:1523
10231 msgid ""
10232 "This calls the external C<grep> program and returns the matching lines."
10233 msgstr ""
10234
10235 #. type: =head2
10236 #: ../src/guestfs-actions.pod:2299
10237 msgid "guestfs_grepi"
10238 msgstr ""
10239
10240 #. type: verbatim
10241 #: ../src/guestfs-actions.pod:2301
10242 #, no-wrap
10243 msgid ""
10244 " char **\n"
10245 " guestfs_grepi (guestfs_h *g,\n"
10246 "                const char *regex,\n"
10247 "                const char *path);\n"
10248 "\n"
10249 msgstr ""
10250
10251 #. type: textblock
10252 #: ../src/guestfs-actions.pod:2306 ../fish/guestfish-actions.pod:1533
10253 msgid ""
10254 "This calls the external C<grep -i> program and returns the matching lines."
10255 msgstr ""
10256
10257 #. type: =head2
10258 #: ../src/guestfs-actions.pod:2318
10259 msgid "guestfs_grub_install"
10260 msgstr ""
10261
10262 #. type: verbatim
10263 #: ../src/guestfs-actions.pod:2320
10264 #, no-wrap
10265 msgid ""
10266 " int\n"
10267 " guestfs_grub_install (guestfs_h *g,\n"
10268 "                       const char *root,\n"
10269 "                       const char *device);\n"
10270 "\n"
10271 msgstr ""
10272
10273 #. type: textblock
10274 #: ../src/guestfs-actions.pod:2325 ../fish/guestfish-actions.pod:1543
10275 msgid ""
10276 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with"
10277 " the root directory being C<root>."
10278 msgstr ""
10279
10280 #. type: textblock
10281 #: ../src/guestfs-actions.pod:2328 ../fish/guestfish-actions.pod:1546
10282 msgid ""
10283 "Note: If grub-install reports the error \"No suitable drive was found in the"
10284 " generated device map.\" it may be that you need to create a "
10285 "C</boot/grub/device.map> file first that contains the mapping between grub "
10286 "device names and Linux device names.  It is usually sufficient to create a "
10287 "file containing:"
10288 msgstr ""
10289
10290 #. type: verbatim
10291 #: ../src/guestfs-actions.pod:2335 ../fish/guestfish-actions.pod:1553
10292 #, no-wrap
10293 msgid ""
10294 " (hd0) /dev/vda\n"
10295 "\n"
10296 msgstr ""
10297
10298 #. type: textblock
10299 #: ../src/guestfs-actions.pod:2337 ../fish/guestfish-actions.pod:1555
10300 msgid "replacing C</dev/vda> with the name of the installation device."
10301 msgstr ""
10302
10303 #. type: textblock
10304 #: ../src/guestfs-actions.pod:2341
10305 msgid "(Added in 1.0.17)"
10306 msgstr ""
10307
10308 #. type: =head2
10309 #: ../src/guestfs-actions.pod:2343
10310 msgid "guestfs_head"
10311 msgstr ""
10312
10313 #. type: verbatim
10314 #: ../src/guestfs-actions.pod:2345
10315 #, no-wrap
10316 msgid ""
10317 " char **\n"
10318 " guestfs_head (guestfs_h *g,\n"
10319 "               const char *path);\n"
10320 "\n"
10321 msgstr ""
10322
10323 #. type: textblock
10324 #: ../src/guestfs-actions.pod:2349 ../fish/guestfish-actions.pod:1561
10325 msgid ""
10326 "This command returns up to the first 10 lines of a file as a list of "
10327 "strings."
10328 msgstr ""
10329
10330 #. type: =head2
10331 #: ../src/guestfs-actions.pod:2361
10332 msgid "guestfs_head_n"
10333 msgstr ""
10334
10335 #. type: verbatim
10336 #: ../src/guestfs-actions.pod:2363
10337 #, no-wrap
10338 msgid ""
10339 " char **\n"
10340 " guestfs_head_n (guestfs_h *g,\n"
10341 "                 int nrlines,\n"
10342 "                 const char *path);\n"
10343 "\n"
10344 msgstr ""
10345
10346 #. type: textblock
10347 #: ../src/guestfs-actions.pod:2368 ../fish/guestfish-actions.pod:1571
10348 msgid ""
10349 "If the parameter C<nrlines> is a positive number, this returns the first "
10350 "C<nrlines> lines of the file C<path>."
10351 msgstr ""
10352
10353 #. type: textblock
10354 #: ../src/guestfs-actions.pod:2371 ../fish/guestfish-actions.pod:1574
10355 msgid ""
10356 "If the parameter C<nrlines> is a negative number, this returns lines from "
10357 "the file C<path>, excluding the last C<nrlines> lines."
10358 msgstr ""
10359
10360 #. type: textblock
10361 #: ../src/guestfs-actions.pod:2374 ../src/guestfs-actions.pod:6981
10362 #: ../fish/guestfish-actions.pod:1577 ../fish/guestfish-actions.pod:4637
10363 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10364 msgstr ""
10365
10366 #. type: =head2
10367 #: ../src/guestfs-actions.pod:2385
10368 msgid "guestfs_hexdump"
10369 msgstr ""
10370
10371 #. type: verbatim
10372 #: ../src/guestfs-actions.pod:2387
10373 #, no-wrap
10374 msgid ""
10375 " char *\n"
10376 " guestfs_hexdump (guestfs_h *g,\n"
10377 "                  const char *path);\n"
10378 "\n"
10379 msgstr ""
10380
10381 #. type: textblock
10382 #: ../src/guestfs-actions.pod:2391 ../fish/guestfish-actions.pod:1586
10383 msgid ""
10384 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
10385 "readable, canonical hex dump of the file."
10386 msgstr ""
10387
10388 #. type: textblock
10389 #: ../src/guestfs-actions.pod:2400 ../src/guestfs-actions.pod:6765
10390 #: ../src/guestfs-actions.pod:6820
10391 msgid "(Added in 1.0.22)"
10392 msgstr ""
10393
10394 #. type: =head2
10395 #: ../src/guestfs-actions.pod:2402
10396 msgid "guestfs_initrd_cat"
10397 msgstr ""
10398
10399 #. type: verbatim
10400 #: ../src/guestfs-actions.pod:2404
10401 #, no-wrap
10402 msgid ""
10403 " char *\n"
10404 " guestfs_initrd_cat (guestfs_h *g,\n"
10405 "                     const char *initrdpath,\n"
10406 "                     const char *filename,\n"
10407 "                     size_t *size_r);\n"
10408 "\n"
10409 msgstr ""
10410
10411 #. type: textblock
10412 #: ../src/guestfs-actions.pod:2410 ../fish/guestfish-actions.pod:1596
10413 msgid ""
10414 "This command unpacks the file C<filename> from the initrd file called "
10415 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
10416 "character."
10417 msgstr ""
10418
10419 #. type: textblock
10420 #: ../src/guestfs-actions.pod:2414 ../fish/guestfish-actions.pod:1600
10421 msgid ""
10422 "For example, in guestfish you could use the following command to examine the"
10423 " boot script (usually called C</init>)  contained in a Linux initrd or "
10424 "initramfs image:"
10425 msgstr ""
10426
10427 #. type: verbatim
10428 #: ../src/guestfs-actions.pod:2418 ../fish/guestfish-actions.pod:1604
10429 #, no-wrap
10430 msgid ""
10431 " initrd-cat /boot/initrd-<version>.img init\n"
10432 "\n"
10433 msgstr ""
10434
10435 #. type: textblock
10436 #: ../src/guestfs-actions.pod:2420
10437 msgid "See also C<guestfs_initrd_list>."
10438 msgstr ""
10439
10440 #. type: =head2
10441 #: ../src/guestfs-actions.pod:2431
10442 msgid "guestfs_initrd_list"
10443 msgstr ""
10444
10445 #. type: verbatim
10446 #: ../src/guestfs-actions.pod:2433
10447 #, no-wrap
10448 msgid ""
10449 " char **\n"
10450 " guestfs_initrd_list (guestfs_h *g,\n"
10451 "                      const char *path);\n"
10452 "\n"
10453 msgstr ""
10454
10455 #. type: textblock
10456 #: ../src/guestfs-actions.pod:2437 ../fish/guestfish-actions.pod:1615
10457 msgid "This command lists out files contained in an initrd."
10458 msgstr ""
10459
10460 #. type: textblock
10461 #: ../src/guestfs-actions.pod:2439 ../fish/guestfish-actions.pod:1617
10462 msgid ""
10463 "The files are listed without any initial C</> character.  The files are "
10464 "listed in the order they appear (not necessarily alphabetical).  Directory "
10465 "names are listed as separate items."
10466 msgstr ""
10467
10468 #. type: textblock
10469 #: ../src/guestfs-actions.pod:2443 ../fish/guestfish-actions.pod:1621
10470 msgid ""
10471 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10472 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10473 "files)."
10474 msgstr ""
10475
10476 #. type: =head2
10477 #: ../src/guestfs-actions.pod:2453
10478 msgid "guestfs_inotify_add_watch"
10479 msgstr ""
10480
10481 #. type: verbatim
10482 #: ../src/guestfs-actions.pod:2455
10483 #, no-wrap
10484 msgid ""
10485 " int64_t\n"
10486 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10487 "                            const char *path,\n"
10488 "                            int mask);\n"
10489 "\n"
10490 msgstr ""
10491
10492 #. type: textblock
10493 #: ../src/guestfs-actions.pod:2460 ../fish/guestfish-actions.pod:1629
10494 msgid "Watch C<path> for the events listed in C<mask>."
10495 msgstr ""
10496
10497 #. type: textblock
10498 #: ../src/guestfs-actions.pod:2462 ../fish/guestfish-actions.pod:1631
10499 msgid ""
10500 "Note that if C<path> is a directory then events within that directory are "
10501 "watched, but this does I<not> happen recursively (in subdirectories)."
10502 msgstr ""
10503
10504 #. type: textblock
10505 #: ../src/guestfs-actions.pod:2466 ../fish/guestfish-actions.pod:1635
10506 msgid ""
10507 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10508 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10509 msgstr ""
10510
10511 #. type: =head2
10512 #: ../src/guestfs-actions.pod:2474
10513 msgid "guestfs_inotify_close"
10514 msgstr ""
10515
10516 #. type: verbatim
10517 #: ../src/guestfs-actions.pod:2476
10518 #, no-wrap
10519 msgid ""
10520 " int\n"
10521 " guestfs_inotify_close (guestfs_h *g);\n"
10522 "\n"
10523 msgstr ""
10524
10525 #. type: textblock
10526 #: ../src/guestfs-actions.pod:2479 ../fish/guestfish-actions.pod:1643
10527 msgid ""
10528 "This closes the inotify handle which was previously opened by inotify_init."
10529 "  It removes all watches, throws away any pending events, and deallocates "
10530 "all resources."
10531 msgstr ""
10532
10533 #. type: =head2
10534 #: ../src/guestfs-actions.pod:2487
10535 msgid "guestfs_inotify_files"
10536 msgstr ""
10537
10538 #. type: verbatim
10539 #: ../src/guestfs-actions.pod:2489
10540 #, no-wrap
10541 msgid ""
10542 " char **\n"
10543 " guestfs_inotify_files (guestfs_h *g);\n"
10544 "\n"
10545 msgstr ""
10546
10547 #. type: textblock
10548 #: ../src/guestfs-actions.pod:2492
10549 msgid ""
10550 "This function is a helpful wrapper around C<guestfs_inotify_read> which just"
10551 " returns a list of pathnames of objects that were touched.  The returned "
10552 "pathnames are sorted and deduplicated."
10553 msgstr ""
10554
10555 #. type: =head2
10556 #: ../src/guestfs-actions.pod:2502
10557 msgid "guestfs_inotify_init"
10558 msgstr ""
10559
10560 #. type: verbatim
10561 #: ../src/guestfs-actions.pod:2504
10562 #, no-wrap
10563 msgid ""
10564 " int\n"
10565 " guestfs_inotify_init (guestfs_h *g,\n"
10566 "                       int maxevents);\n"
10567 "\n"
10568 msgstr ""
10569
10570 #. type: textblock
10571 #: ../src/guestfs-actions.pod:2508 ../fish/guestfish-actions.pod:1659
10572 msgid ""
10573 "This command creates a new inotify handle.  The inotify subsystem can be "
10574 "used to notify events which happen to objects in the guest filesystem."
10575 msgstr ""
10576
10577 #. type: textblock
10578 #: ../src/guestfs-actions.pod:2512
10579 msgid ""
10580 "C<maxevents> is the maximum number of events which will be queued up between"
10581 " calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10582 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10583 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10584 "throws away events, but records the fact that it threw them away by setting "
10585 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10586 "C<guestfs_inotify_read>)."
10587 msgstr ""
10588
10589 #. type: textblock
10590 #: ../src/guestfs-actions.pod:2522
10591 msgid ""
10592 "Before any events are generated, you have to add some watches to the "
10593 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10594 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10595 msgstr ""
10596
10597 #. type: textblock
10598 #: ../src/guestfs-actions.pod:2528
10599 msgid ""
10600 "Queued up events should be read periodically by calling "
10601 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful"
10602 " wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10603 "often enough then you risk the internal queue overflowing."
10604 msgstr ""
10605
10606 #. type: textblock
10607 #: ../src/guestfs-actions.pod:2535
10608 msgid ""
10609 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10610 "This also removes any watches automatically."
10611 msgstr ""
10612
10613 #. type: textblock
10614 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1690
10615 msgid ""
10616 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10617 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10618 "that there is one global inotify handle per libguestfs instance."
10619 msgstr ""
10620
10621 #. type: =head2
10622 #: ../src/guestfs-actions.pod:2548
10623 msgid "guestfs_inotify_read"
10624 msgstr ""
10625
10626 #. type: verbatim
10627 #: ../src/guestfs-actions.pod:2550
10628 #, no-wrap
10629 msgid ""
10630 " struct guestfs_inotify_event_list *\n"
10631 " guestfs_inotify_read (guestfs_h *g);\n"
10632 "\n"
10633 msgstr ""
10634
10635 #. type: textblock
10636 #: ../src/guestfs-actions.pod:2553 ../fish/guestfish-actions.pod:1699
10637 msgid ""
10638 "Return the complete queue of events that have happened since the previous "
10639 "read call."
10640 msgstr ""
10641
10642 #. type: textblock
10643 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1702
10644 msgid "If no events have happened, this returns an empty list."
10645 msgstr ""
10646
10647 #. type: textblock
10648 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1704
10649 msgid ""
10650 "I<Note>: In order to make sure that all events have been read, you must call"
10651 " this function repeatedly until it returns an empty list.  The reason is "
10652 "that the call will read events up to the maximum appliance-to-host message "
10653 "size and leave remaining events in the queue."
10654 msgstr ""
10655
10656 #. type: textblock
10657 #: ../src/guestfs-actions.pod:2564
10658 msgid ""
10659 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10660 "there was an error.  I<The caller must call "
10661 "C<guestfs_free_inotify_event_list> after use>."
10662 msgstr ""
10663
10664 #. type: =head2
10665 #: ../src/guestfs-actions.pod:2570
10666 msgid "guestfs_inotify_rm_watch"
10667 msgstr ""
10668
10669 #. type: verbatim
10670 #: ../src/guestfs-actions.pod:2572
10671 #, no-wrap
10672 msgid ""
10673 " int\n"
10674 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10675 "                           int wd);\n"
10676 "\n"
10677 msgstr ""
10678
10679 #. type: textblock
10680 #: ../src/guestfs-actions.pod:2576
10681 msgid ""
10682 "Remove a previously defined inotify watch.  See "
10683 "C<guestfs_inotify_add_watch>."
10684 msgstr ""
10685
10686 #. type: =head2
10687 #: ../src/guestfs-actions.pod:2583
10688 msgid "guestfs_inspect_get_arch"
10689 msgstr ""
10690
10691 #. type: verbatim
10692 #: ../src/guestfs-actions.pod:2585
10693 #, no-wrap
10694 msgid ""
10695 " char *\n"
10696 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10697 "                           const char *root);\n"
10698 "\n"
10699 msgstr ""
10700
10701 #. type: textblock
10702 #: ../src/guestfs-actions.pod:2589
10703 msgid ""
10704 "This returns the architecture of the inspected operating system.  The "
10705 "possible return values are listed under C<guestfs_file_architecture>."
10706 msgstr ""
10707
10708 #. type: textblock
10709 #: ../src/guestfs-actions.pod:2593 ../fish/guestfish-actions.pod:1725
10710 msgid ""
10711 "If the architecture could not be determined, then the string C<unknown> is "
10712 "returned."
10713 msgstr ""
10714
10715 #. type: textblock
10716 #: ../src/guestfs-actions.pod:2596 ../src/guestfs-actions.pod:2686
10717 #: ../src/guestfs-actions.pod:2790 ../src/guestfs-actions.pod:2809
10718 #: ../src/guestfs-actions.pod:2940 ../src/guestfs-actions.pod:3023
10719 #: ../src/guestfs-actions.pod:3051 ../src/guestfs-actions.pod:3072
10720 #: ../src/guestfs-actions.pod:3125 ../src/guestfs-actions.pod:3165
10721 #: ../src/guestfs-actions.pod:3185 ../src/guestfs-actions.pod:3205
10722 #: ../src/guestfs-actions.pod:3222 ../src/guestfs-actions.pod:3238
10723 #: ../src/guestfs-actions.pod:3256 ../src/guestfs-actions.pod:3358
10724 #: ../src/guestfs-actions.pod:3399 ../fish/guestfish-actions.pod:1728
10725 #: ../fish/guestfish-actions.pod:1811 ../fish/guestfish-actions.pod:1890
10726 #: ../fish/guestfish-actions.pod:1902 ../fish/guestfish-actions.pod:1986
10727 #: ../fish/guestfish-actions.pod:2047 ../fish/guestfish-actions.pod:2068
10728 #: ../fish/guestfish-actions.pod:2082 ../fish/guestfish-actions.pod:2122
10729 #: ../fish/guestfish-actions.pod:2154 ../fish/guestfish-actions.pod:2167
10730 #: ../fish/guestfish-actions.pod:2180 ../fish/guestfish-actions.pod:2190
10731 #: ../fish/guestfish-actions.pod:2200 ../fish/guestfish-actions.pod:2212
10732 #: ../fish/guestfish-actions.pod:2308 ../fish/guestfish-actions.pod:2342
10733 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10734 msgstr ""
10735
10736 #. type: =head2
10737 #: ../src/guestfs-actions.pod:2603
10738 msgid "guestfs_inspect_get_distro"
10739 msgstr ""
10740
10741 #. type: verbatim
10742 #: ../src/guestfs-actions.pod:2605
10743 #, no-wrap
10744 msgid ""
10745 " char *\n"
10746 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10747 "                             const char *root);\n"
10748 "\n"
10749 msgstr ""
10750
10751 #. type: textblock
10752 #: ../src/guestfs-actions.pod:2609 ../fish/guestfish-actions.pod:1734
10753 msgid ""
10754 "This returns the distro (distribution) of the inspected operating system."
10755 msgstr ""
10756
10757 #. type: textblock
10758 #: ../src/guestfs-actions.pod:2612 ../fish/guestfish-actions.pod:1737
10759 msgid "Currently defined distros are:"
10760 msgstr ""
10761
10762 #. type: =item
10763 #: ../src/guestfs-actions.pod:2616 ../fish/guestfish-actions.pod:1741
10764 msgid "\"archlinux\""
10765 msgstr ""
10766
10767 #. type: textblock
10768 #: ../src/guestfs-actions.pod:2618 ../fish/guestfish-actions.pod:1743
10769 msgid "Arch Linux."
10770 msgstr ""
10771
10772 #. type: =item
10773 #: ../src/guestfs-actions.pod:2620 ../fish/guestfish-actions.pod:1745
10774 msgid "\"centos\""
10775 msgstr ""
10776
10777 #. type: textblock
10778 #: ../src/guestfs-actions.pod:2622 ../fish/guestfish-actions.pod:1747
10779 msgid "CentOS."
10780 msgstr ""
10781
10782 #. type: =item
10783 #: ../src/guestfs-actions.pod:2624 ../fish/guestfish-actions.pod:1749
10784 msgid "\"debian\""
10785 msgstr ""
10786
10787 #. type: textblock
10788 #: ../src/guestfs-actions.pod:2626 ../fish/guestfish-actions.pod:1751
10789 msgid "Debian."
10790 msgstr ""
10791
10792 #. type: =item
10793 #: ../src/guestfs-actions.pod:2628 ../fish/guestfish-actions.pod:1753
10794 msgid "\"fedora\""
10795 msgstr ""
10796
10797 #. type: textblock
10798 #: ../src/guestfs-actions.pod:2630 ../fish/guestfish-actions.pod:1755
10799 msgid "Fedora."
10800 msgstr ""
10801
10802 #. type: =item
10803 #: ../src/guestfs-actions.pod:2632 ../fish/guestfish-actions.pod:1757
10804 msgid "\"gentoo\""
10805 msgstr ""
10806
10807 #. type: textblock
10808 #: ../src/guestfs-actions.pod:2634 ../fish/guestfish-actions.pod:1759
10809 msgid "Gentoo."
10810 msgstr ""
10811
10812 #. type: =item
10813 #: ../src/guestfs-actions.pod:2636 ../fish/guestfish-actions.pod:1761
10814 msgid "\"linuxmint\""
10815 msgstr ""
10816
10817 #. type: textblock
10818 #: ../src/guestfs-actions.pod:2638 ../fish/guestfish-actions.pod:1763
10819 msgid "Linux Mint."
10820 msgstr ""
10821
10822 #. type: =item
10823 #: ../src/guestfs-actions.pod:2640 ../fish/guestfish-actions.pod:1765
10824 msgid "\"mandriva\""
10825 msgstr ""
10826
10827 #. type: textblock
10828 #: ../src/guestfs-actions.pod:2642 ../fish/guestfish-actions.pod:1767
10829 msgid "Mandriva."
10830 msgstr ""
10831
10832 #. type: =item
10833 #: ../src/guestfs-actions.pod:2644 ../fish/guestfish-actions.pod:1769
10834 msgid "\"meego\""
10835 msgstr ""
10836
10837 #. type: textblock
10838 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1771
10839 msgid "MeeGo."
10840 msgstr ""
10841
10842 #. type: =item
10843 #: ../src/guestfs-actions.pod:2648 ../fish/guestfish-actions.pod:1773
10844 msgid "\"pardus\""
10845 msgstr ""
10846
10847 #. type: textblock
10848 #: ../src/guestfs-actions.pod:2650 ../fish/guestfish-actions.pod:1775
10849 msgid "Pardus."
10850 msgstr ""
10851
10852 #. type: =item
10853 #: ../src/guestfs-actions.pod:2652 ../fish/guestfish-actions.pod:1777
10854 msgid "\"redhat-based\""
10855 msgstr ""
10856
10857 #. type: textblock
10858 #: ../src/guestfs-actions.pod:2654 ../fish/guestfish-actions.pod:1779
10859 msgid "Some Red Hat-derived distro."
10860 msgstr ""
10861
10862 #. type: =item
10863 #: ../src/guestfs-actions.pod:2656 ../fish/guestfish-actions.pod:1781
10864 msgid "\"rhel\""
10865 msgstr ""
10866
10867 #. type: textblock
10868 #: ../src/guestfs-actions.pod:2658 ../fish/guestfish-actions.pod:1783
10869 msgid "Red Hat Enterprise Linux."
10870 msgstr ""
10871
10872 #. type: =item
10873 #: ../src/guestfs-actions.pod:2660 ../fish/guestfish-actions.pod:1785
10874 msgid "\"scientificlinux\""
10875 msgstr ""
10876
10877 #. type: textblock
10878 #: ../src/guestfs-actions.pod:2662 ../fish/guestfish-actions.pod:1787
10879 msgid "Scientific Linux."
10880 msgstr ""
10881
10882 #. type: =item
10883 #: ../src/guestfs-actions.pod:2664 ../fish/guestfish-actions.pod:1789
10884 msgid "\"slackware\""
10885 msgstr ""
10886
10887 #. type: textblock
10888 #: ../src/guestfs-actions.pod:2666 ../fish/guestfish-actions.pod:1791
10889 msgid "Slackware."
10890 msgstr ""
10891
10892 #. type: =item
10893 #: ../src/guestfs-actions.pod:2668 ../fish/guestfish-actions.pod:1793
10894 msgid "\"ubuntu\""
10895 msgstr ""
10896
10897 #. type: textblock
10898 #: ../src/guestfs-actions.pod:2670 ../fish/guestfish-actions.pod:1795
10899 msgid "Ubuntu."
10900 msgstr ""
10901
10902 #. type: =item
10903 #: ../src/guestfs-actions.pod:2672 ../src/guestfs-actions.pod:2781
10904 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:1797
10905 #: ../fish/guestfish-actions.pod:1881 ../fish/guestfish-actions.pod:2145
10906 msgid "\"unknown\""
10907 msgstr ""
10908
10909 #. type: textblock
10910 #: ../src/guestfs-actions.pod:2674 ../fish/guestfish-actions.pod:1799
10911 msgid "The distro could not be determined."
10912 msgstr ""
10913
10914 #. type: =item
10915 #: ../src/guestfs-actions.pod:2676 ../src/guestfs-actions.pod:3148
10916 #: ../fish/guestfish-actions.pod:1801 ../fish/guestfish-actions.pod:2137
10917 msgid "\"windows\""
10918 msgstr ""
10919
10920 #. type: textblock
10921 #: ../src/guestfs-actions.pod:2678 ../fish/guestfish-actions.pod:1803
10922 msgid ""
10923 "Windows does not have distributions.  This string is returned if the OS type"
10924 " is Windows."
10925 msgstr ""
10926
10927 #. type: textblock
10928 #: ../src/guestfs-actions.pod:2683 ../src/guestfs-actions.pod:2787
10929 #: ../src/guestfs-actions.pod:3162 ../fish/guestfish-actions.pod:1808
10930 #: ../fish/guestfish-actions.pod:1887 ../fish/guestfish-actions.pod:2151
10931 msgid ""
10932 "Future versions of libguestfs may return other strings here.  The caller "
10933 "should be prepared to handle any string."
10934 msgstr ""
10935
10936 #. type: =head2
10937 #: ../src/guestfs-actions.pod:2693
10938 msgid "guestfs_inspect_get_drive_mappings"
10939 msgstr ""
10940
10941 #. type: verbatim
10942 #: ../src/guestfs-actions.pod:2695
10943 #, no-wrap
10944 msgid ""
10945 " char **\n"
10946 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10947 "                                     const char *root);\n"
10948 "\n"
10949 msgstr ""
10950
10951 #. type: textblock
10952 #: ../src/guestfs-actions.pod:2699 ../fish/guestfish-actions.pod:1817
10953 msgid ""
10954 "This call is useful for Windows which uses a primitive system of assigning "
10955 "drive letters (like \"C:\") to partitions.  This inspection API examines the"
10956 " Windows Registry to find out how disks/partitions are mapped to drive "
10957 "letters, and returns a hash table as in the example below:"
10958 msgstr ""
10959
10960 #. type: verbatim
10961 #: ../src/guestfs-actions.pod:2705 ../fish/guestfish-actions.pod:1823
10962 #, no-wrap
10963 msgid ""
10964 " C      =>     /dev/vda2\n"
10965 " E      =>     /dev/vdb1\n"
10966 " F      =>     /dev/vdc1\n"
10967 "\n"
10968 msgstr ""
10969
10970 #. type: textblock
10971 #: ../src/guestfs-actions.pod:2709 ../fish/guestfish-actions.pod:1827
10972 msgid ""
10973 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10974 "and just contains the drive letter, without the customary colon separator "
10975 "character."
10976 msgstr ""
10977
10978 #. type: textblock
10979 #: ../src/guestfs-actions.pod:2713 ../fish/guestfish-actions.pod:1831
10980 msgid ""
10981 "In future we may support other operating systems that also used drive "
10982 "letters, but the keys for those might not be case insensitive and might be "
10983 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>,"
10984 " C<h1> etc."
10985 msgstr ""
10986
10987 #. type: textblock
10988 #: ../src/guestfs-actions.pod:2718 ../fish/guestfish-actions.pod:1836
10989 msgid ""
10990 "For Windows guests, currently only hard drive mappings are returned.  "
10991 "Removable disks (eg. DVD-ROMs) are ignored."
10992 msgstr ""
10993
10994 #. type: textblock
10995 #: ../src/guestfs-actions.pod:2721 ../fish/guestfish-actions.pod:1839
10996 msgid ""
10997 "For guests that do not use drive mappings, or if the drive mappings could "
10998 "not be determined, this returns an empty hash table."
10999 msgstr ""
11000
11001 #. type: textblock
11002 #: ../src/guestfs-actions.pod:2724
11003 msgid ""
11004 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11005 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
11006 msgstr ""
11007
11008 #. type: textblock
11009 #: ../src/guestfs-actions.pod:2728 ../src/guestfs-actions.pod:2996
11010 #: ../src/guestfs-actions.pod:3794 ../src/guestfs-actions.pod:5076
11011 #: ../src/guestfs-actions.pod:7122
11012 msgid ""
11013 "This function returns a NULL-terminated array of strings, or NULL if there "
11014 "was an error.  The array of strings will always have length C<2n+1>, where "
11015 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
11016 "caller must free the strings and the array after use>."
11017 msgstr ""
11018
11019 #. type: textblock
11020 #: ../src/guestfs-actions.pod:2734 ../src/guestfs-actions.pod:3190
11021 msgid "(Added in 1.9.17)"
11022 msgstr ""
11023
11024 #. type: =head2
11025 #: ../src/guestfs-actions.pod:2736
11026 msgid "guestfs_inspect_get_filesystems"
11027 msgstr ""
11028
11029 #. type: verbatim
11030 #: ../src/guestfs-actions.pod:2738
11031 #, no-wrap
11032 msgid ""
11033 " char **\n"
11034 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
11035 "                                  const char *root);\n"
11036 "\n"
11037 msgstr ""
11038
11039 #. type: textblock
11040 #: ../src/guestfs-actions.pod:2742 ../fish/guestfish-actions.pod:1850
11041 msgid ""
11042 "This returns a list of all the filesystems that we think are associated with"
11043 " this operating system.  This includes the root filesystem, other ordinary "
11044 "filesystems, and non-mounted devices like swap partitions."
11045 msgstr ""
11046
11047 #. type: textblock
11048 #: ../src/guestfs-actions.pod:2747 ../fish/guestfish-actions.pod:1855
11049 msgid ""
11050 "In the case of a multi-boot virtual machine, it is possible for a filesystem"
11051 " to be shared between operating systems."
11052 msgstr ""
11053
11054 #. type: textblock
11055 #: ../src/guestfs-actions.pod:2750
11056 msgid ""
11057 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11058 "C<guestfs_inspect_get_mountpoints>."
11059 msgstr ""
11060
11061 #. type: =head2
11062 #: ../src/guestfs-actions.pod:2759
11063 msgid "guestfs_inspect_get_format"
11064 msgstr ""
11065
11066 #. type: verbatim
11067 #: ../src/guestfs-actions.pod:2761
11068 #, no-wrap
11069 msgid ""
11070 " char *\n"
11071 " guestfs_inspect_get_format (guestfs_h *g,\n"
11072 "                             const char *root);\n"
11073 "\n"
11074 msgstr ""
11075
11076 #. type: textblock
11077 #: ../src/guestfs-actions.pod:2765 ../fish/guestfish-actions.pod:1865
11078 msgid ""
11079 "This returns the format of the inspected operating system.  You can use it "
11080 "to detect install images, live CDs and similar."
11081 msgstr ""
11082
11083 #. type: textblock
11084 #: ../src/guestfs-actions.pod:2768 ../fish/guestfish-actions.pod:1868
11085 msgid "Currently defined formats are:"
11086 msgstr ""
11087
11088 #. type: =item
11089 #: ../src/guestfs-actions.pod:2772 ../fish/guestfish-actions.pod:1872
11090 msgid "\"installed\""
11091 msgstr ""
11092
11093 #. type: textblock
11094 #: ../src/guestfs-actions.pod:2774 ../fish/guestfish-actions.pod:1874
11095 msgid "This is an installed operating system."
11096 msgstr ""
11097
11098 #. type: =item
11099 #: ../src/guestfs-actions.pod:2776 ../fish/guestfish-actions.pod:1876
11100 msgid "\"installer\""
11101 msgstr ""
11102
11103 #. type: textblock
11104 #: ../src/guestfs-actions.pod:2778 ../fish/guestfish-actions.pod:1878
11105 msgid ""
11106 "The disk image being inspected is not an installed operating system, but a "
11107 "I<bootable> install disk, live CD, or similar."
11108 msgstr ""
11109
11110 #. type: textblock
11111 #: ../src/guestfs-actions.pod:2783 ../fish/guestfish-actions.pod:1883
11112 msgid "The format of this disk image is not known."
11113 msgstr ""
11114
11115 #. type: textblock
11116 #: ../src/guestfs-actions.pod:2795 ../src/guestfs-actions.pod:3226
11117 #: ../src/guestfs-actions.pod:3242 ../src/guestfs-actions.pod:3260
11118 #: ../src/guestfs-actions.pod:6020
11119 msgid "(Added in 1.9.4)"
11120 msgstr ""
11121
11122 #. type: =head2
11123 #: ../src/guestfs-actions.pod:2797
11124 msgid "guestfs_inspect_get_hostname"
11125 msgstr ""
11126
11127 #. type: verbatim
11128 #: ../src/guestfs-actions.pod:2799
11129 #, no-wrap
11130 msgid ""
11131 " char *\n"
11132 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
11133 "                               const char *root);\n"
11134 "\n"
11135 msgstr ""
11136
11137 #. type: textblock
11138 #: ../src/guestfs-actions.pod:2803 ../fish/guestfish-actions.pod:1896
11139 msgid ""
11140 "This function returns the hostname of the operating system as found by "
11141 "inspection of the guest's configuration files."
11142 msgstr ""
11143
11144 #. type: textblock
11145 #: ../src/guestfs-actions.pod:2806 ../fish/guestfish-actions.pod:1899
11146 msgid ""
11147 "If the hostname could not be determined, then the string C<unknown> is "
11148 "returned."
11149 msgstr ""
11150
11151 #. type: textblock
11152 #: ../src/guestfs-actions.pod:2814
11153 msgid "(Added in 1.7.9)"
11154 msgstr ""
11155
11156 #. type: =head2
11157 #: ../src/guestfs-actions.pod:2816
11158 msgid "guestfs_inspect_get_icon"
11159 msgstr ""
11160
11161 #. type: verbatim
11162 #: ../src/guestfs-actions.pod:2818
11163 #, no-wrap
11164 msgid ""
11165 " char *\n"
11166 " guestfs_inspect_get_icon (guestfs_h *g,\n"
11167 "                           const char *root,\n"
11168 "                           size_t *size_r,\n"
11169 "                           ...);\n"
11170 "\n"
11171 msgstr ""
11172
11173 #. type: verbatim
11174 #: ../src/guestfs-actions.pod:2829
11175 #, no-wrap
11176 msgid ""
11177 " GUESTFS_INSPECT_GET_ICON_FAVICON, int favicon,\n"
11178 " GUESTFS_INSPECT_GET_ICON_HIGHQUALITY, int highquality,\n"
11179 "\n"
11180 msgstr ""
11181
11182 #. type: textblock
11183 #: ../src/guestfs-actions.pod:2832 ../fish/guestfish-actions.pod:1908
11184 msgid ""
11185 "This function returns an icon corresponding to the inspected operating "
11186 "system.  The icon is returned as a buffer containing a PNG image (re-encoded"
11187 " to PNG if necessary)."
11188 msgstr ""
11189
11190 #. type: textblock
11191 #: ../src/guestfs-actions.pod:2836 ../fish/guestfish-actions.pod:1912
11192 msgid ""
11193 "If it was not possible to get an icon this function returns a zero-length "
11194 "(non-NULL) buffer.  I<Callers must check for this case>."
11195 msgstr ""
11196
11197 #. type: textblock
11198 #: ../src/guestfs-actions.pod:2839 ../fish/guestfish-actions.pod:1915
11199 msgid ""
11200 "Libguestfs will start by looking for a file called C</etc/favicon.png> or "
11201 "C<C:\\etc\\favicon.png> and if it has the correct format, the contents of "
11202 "this file will be returned.  You can disable favicons by passing the "
11203 "optional C<favicon> boolean as false (default is true)."
11204 msgstr ""
11205
11206 #. type: textblock
11207 #: ../src/guestfs-actions.pod:2845 ../fish/guestfish-actions.pod:1921
11208 msgid ""
11209 "If finding the favicon fails, then we look in other places in the guest for "
11210 "a suitable icon."
11211 msgstr ""
11212
11213 #. type: textblock
11214 #: ../src/guestfs-actions.pod:2848 ../fish/guestfish-actions.pod:1924
11215 msgid ""
11216 "If the optional C<highquality> boolean is true then only high quality icons "
11217 "are returned, which means only icons of high resolution with an alpha "
11218 "channel.  The default (false) is to return any icon we can, even if it is of"
11219 " substandard quality."
11220 msgstr ""
11221
11222 #. type: textblock
11223 #: ../src/guestfs-actions.pod:2859 ../fish/guestfish-actions.pod:1935
11224 msgid ""
11225 "Unlike most other inspection API calls, the guest's disks must be mounted up"
11226 " before you call this, since it needs to read information from the guest "
11227 "filesystem during the call."
11228 msgstr ""
11229
11230 #. type: textblock
11231 #: ../src/guestfs-actions.pod:2865 ../fish/guestfish-actions.pod:1941
11232 msgid ""
11233 "B<Security:> The icon data comes from the untrusted guest, and should be "
11234 "treated with caution.  PNG files have been known to contain exploits.  "
11235 "Ensure that libpng (or other relevant libraries) are fully up to date before"
11236 " trying to process or display the icon."
11237 msgstr ""
11238
11239 #. type: textblock
11240 #: ../src/guestfs-actions.pod:2873 ../fish/guestfish-actions.pod:1949
11241 msgid ""
11242 "The PNG image returned can be any size.  It might not be square.  Libguestfs"
11243 " tries to return the largest, highest quality icon available.  The "
11244 "application must scale the icon to the required size."
11245 msgstr ""
11246
11247 #. type: textblock
11248 #: ../src/guestfs-actions.pod:2880 ../fish/guestfish-actions.pod:1956
11249 msgid ""
11250 "Extracting icons from Windows guests requires the external C<wrestool> "
11251 "program from the C<icoutils> package, and several programs (C<bmptopnm>, "
11252 "C<pnmtopng>, C<pamcut>)  from the C<netpbm> package.  These must be "
11253 "installed separately."
11254 msgstr ""
11255
11256 #. type: textblock
11257 #: ../src/guestfs-actions.pod:2887 ../fish/guestfish-actions.pod:1963
11258 msgid ""
11259 "Operating system icons are usually trademarks.  Seek legal advice before "
11260 "using trademarks in applications."
11261 msgstr ""
11262
11263 #. type: textblock
11264 #: ../src/guestfs-actions.pod:2896 ../src/guestfs-actions.pod:3721
11265 #: ../src/guestfs-actions.pod:4975
11266 msgid "(Added in 1.11.12)"
11267 msgstr ""
11268
11269 #. type: =head2
11270 #: ../src/guestfs-actions.pod:2898
11271 msgid "guestfs_inspect_get_icon_va"
11272 msgstr ""
11273
11274 #. type: verbatim
11275 #: ../src/guestfs-actions.pod:2900
11276 #, no-wrap
11277 msgid ""
11278 " char *\n"
11279 " guestfs_inspect_get_icon_va (guestfs_h *g,\n"
11280 "                              const char *root,\n"
11281 "                              size_t *size_r,\n"
11282 "                              va_list args);\n"
11283 "\n"
11284 msgstr ""
11285
11286 #. type: textblock
11287 #: ../src/guestfs-actions.pod:2906
11288 msgid "This is the \"va_list variant\" of L</guestfs_inspect_get_icon>."
11289 msgstr ""
11290
11291 #. type: =head2
11292 #: ../src/guestfs-actions.pod:2910
11293 msgid "guestfs_inspect_get_icon_argv"
11294 msgstr ""
11295
11296 #. type: verbatim
11297 #: ../src/guestfs-actions.pod:2912
11298 #, no-wrap
11299 msgid ""
11300 " char *\n"
11301 " guestfs_inspect_get_icon_argv (guestfs_h *g,\n"
11302 "                                const char *root,\n"
11303 "                                size_t *size_r,\n"
11304 "                                const struct guestfs_inspect_get_icon_argv *optargs);\n"
11305 "\n"
11306 msgstr ""
11307
11308 #. type: textblock
11309 #: ../src/guestfs-actions.pod:2918
11310 msgid "This is the \"argv variant\" of L</guestfs_inspect_get_icon>."
11311 msgstr ""
11312
11313 #. type: =head2
11314 #: ../src/guestfs-actions.pod:2922
11315 msgid "guestfs_inspect_get_major_version"
11316 msgstr ""
11317
11318 #. type: verbatim
11319 #: ../src/guestfs-actions.pod:2924
11320 #, no-wrap
11321 msgid ""
11322 " int\n"
11323 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
11324 "                                    const char *root);\n"
11325 "\n"
11326 msgstr ""
11327
11328 #. type: textblock
11329 #: ../src/guestfs-actions.pod:2928 ../fish/guestfish-actions.pod:1974
11330 msgid ""
11331 "This returns the major version number of the inspected operating system."
11332 msgstr ""
11333
11334 #. type: textblock
11335 #: ../src/guestfs-actions.pod:2931 ../fish/guestfish-actions.pod:1977
11336 msgid ""
11337 "Windows uses a consistent versioning scheme which is I<not> reflected in the"
11338 " popular public names used by the operating system.  Notably the operating "
11339 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
11340 "1).  You can find out the real versions corresponding to releases of Windows"
11341 " by consulting Wikipedia or MSDN."
11342 msgstr ""
11343
11344 #. type: textblock
11345 #: ../src/guestfs-actions.pod:2938 ../src/guestfs-actions.pod:2955
11346 #: ../fish/guestfish-actions.pod:1984 ../fish/guestfish-actions.pod:1995
11347 msgid "If the version could not be determined, then C<0> is returned."
11348 msgstr ""
11349
11350 #. type: =head2
11351 #: ../src/guestfs-actions.pod:2946
11352 msgid "guestfs_inspect_get_minor_version"
11353 msgstr ""
11354
11355 #. type: verbatim
11356 #: ../src/guestfs-actions.pod:2948
11357 #, no-wrap
11358 msgid ""
11359 " int\n"
11360 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
11361 "                                    const char *root);\n"
11362 "\n"
11363 msgstr ""
11364
11365 #. type: textblock
11366 #: ../src/guestfs-actions.pod:2952 ../fish/guestfish-actions.pod:1992
11367 msgid ""
11368 "This returns the minor version number of the inspected operating system."
11369 msgstr ""
11370
11371 #. type: textblock
11372 #: ../src/guestfs-actions.pod:2957
11373 msgid ""
11374 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11375 "C<guestfs_inspect_get_major_version>."
11376 msgstr ""
11377
11378 #. type: =head2
11379 #: ../src/guestfs-actions.pod:2964
11380 msgid "guestfs_inspect_get_mountpoints"
11381 msgstr ""
11382
11383 #. type: verbatim
11384 #: ../src/guestfs-actions.pod:2966
11385 #, no-wrap
11386 msgid ""
11387 " char **\n"
11388 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11389 "                                  const char *root);\n"
11390 "\n"
11391 msgstr ""
11392
11393 #. type: textblock
11394 #: ../src/guestfs-actions.pod:2970 ../fish/guestfish-actions.pod:2004
11395 msgid ""
11396 "This returns a hash of where we think the filesystems associated with this "
11397 "operating system should be mounted.  Callers should note that this is at "
11398 "best an educated guess made by reading configuration files such as "
11399 "C</etc/fstab>.  I<In particular note> that this may return filesystems which"
11400 " are non-existent or not mountable and callers should be prepared to handle "
11401 "or ignore failures if they try to mount them."
11402 msgstr ""
11403
11404 #. type: textblock
11405 #: ../src/guestfs-actions.pod:2979 ../fish/guestfish-actions.pod:2013
11406 msgid ""
11407 "Each element in the returned hashtable has a key which is the path of the "
11408 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11409 "mounted there (eg. C</dev/sda1>)."
11410 msgstr ""
11411
11412 #. type: textblock
11413 #: ../src/guestfs-actions.pod:2984 ../fish/guestfish-actions.pod:2018
11414 msgid ""
11415 "Non-mounted devices such as swap devices are I<not> returned in this list."
11416 msgstr ""
11417
11418 #. type: textblock
11419 #: ../src/guestfs-actions.pod:2987
11420 msgid ""
11421 "For operating systems like Windows which still use drive letters, this call "
11422 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11423 "information about the mapping of drive letters to partitions, see "
11424 "C<guestfs_inspect_get_drive_mappings>."
11425 msgstr ""
11426
11427 #. type: textblock
11428 #: ../src/guestfs-actions.pod:2993
11429 msgid ""
11430 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11431 "C<guestfs_inspect_get_filesystems>."
11432 msgstr ""
11433
11434 #. type: =head2
11435 #: ../src/guestfs-actions.pod:3004
11436 msgid "guestfs_inspect_get_package_format"
11437 msgstr ""
11438
11439 #. type: verbatim
11440 #: ../src/guestfs-actions.pod:3006
11441 #, no-wrap
11442 msgid ""
11443 " char *\n"
11444 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
11445 "                                     const char *root);\n"
11446 "\n"
11447 msgstr ""
11448
11449 #. type: textblock
11450 #: ../src/guestfs-actions.pod:3010
11451 msgid ""
11452 "This function and C<guestfs_inspect_get_package_management> return the "
11453 "package format and package management tool used by the inspected operating "
11454 "system.  For example for Fedora these functions would return C<rpm> (package"
11455 " format) and C<yum> (package management)."
11456 msgstr ""
11457
11458 #. type: textblock
11459 #: ../src/guestfs-actions.pod:3016 ../fish/guestfish-actions.pod:2040
11460 msgid ""
11461 "This returns the string C<unknown> if we could not determine the package "
11462 "format I<or> if the operating system does not have a real packaging system "
11463 "(eg. Windows)."
11464 msgstr ""
11465
11466 #. type: textblock
11467 #: ../src/guestfs-actions.pod:3020 ../fish/guestfish-actions.pod:2044
11468 msgid ""
11469 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
11470 "Future versions of libguestfs may return other strings."
11471 msgstr ""
11472
11473 #. type: textblock
11474 #: ../src/guestfs-actions.pod:3028 ../src/guestfs-actions.pod:3056
11475 msgid "(Added in 1.7.5)"
11476 msgstr ""
11477
11478 #. type: =head2
11479 #: ../src/guestfs-actions.pod:3030
11480 msgid "guestfs_inspect_get_package_management"
11481 msgstr ""
11482
11483 #. type: verbatim
11484 #: ../src/guestfs-actions.pod:3032
11485 #, no-wrap
11486 msgid ""
11487 " char *\n"
11488 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
11489 "                                         const char *root);\n"
11490 "\n"
11491 msgstr ""
11492
11493 #. type: textblock
11494 #: ../src/guestfs-actions.pod:3036
11495 msgid ""
11496 "C<guestfs_inspect_get_package_format> and this function return the package "
11497 "format and package management tool used by the inspected operating system.  "
11498 "For example for Fedora these functions would return C<rpm> (package format) "
11499 "and C<yum> (package management)."
11500 msgstr ""
11501
11502 #. type: textblock
11503 #: ../src/guestfs-actions.pod:3042 ../fish/guestfish-actions.pod:2059
11504 msgid ""
11505 "This returns the string C<unknown> if we could not determine the package "
11506 "management tool I<or> if the operating system does not have a real packaging"
11507 " system (eg. Windows)."
11508 msgstr ""
11509
11510 #. type: textblock
11511 #: ../src/guestfs-actions.pod:3046 ../fish/guestfish-actions.pod:2063
11512 msgid ""
11513 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
11514 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
11515 "libguestfs may return other strings."
11516 msgstr ""
11517
11518 #. type: =head2
11519 #: ../src/guestfs-actions.pod:3058
11520 msgid "guestfs_inspect_get_product_name"
11521 msgstr ""
11522
11523 #. type: verbatim
11524 #: ../src/guestfs-actions.pod:3060
11525 #, no-wrap
11526 msgid ""
11527 " char *\n"
11528 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
11529 "                                   const char *root);\n"
11530 "\n"
11531 msgstr ""
11532
11533 #. type: textblock
11534 #: ../src/guestfs-actions.pod:3064 ../fish/guestfish-actions.pod:2074
11535 msgid ""
11536 "This returns the product name of the inspected operating system.  The "
11537 "product name is generally some freeform string which can be displayed to the"
11538 " user, but should not be parsed by programs."
11539 msgstr ""
11540
11541 #. type: textblock
11542 #: ../src/guestfs-actions.pod:3069 ../fish/guestfish-actions.pod:2079
11543 msgid ""
11544 "If the product name could not be determined, then the string C<unknown> is "
11545 "returned."
11546 msgstr ""
11547
11548 #. type: =head2
11549 #: ../src/guestfs-actions.pod:3079
11550 msgid "guestfs_inspect_get_product_variant"
11551 msgstr ""
11552
11553 #. type: verbatim
11554 #: ../src/guestfs-actions.pod:3081
11555 #, no-wrap
11556 msgid ""
11557 " char *\n"
11558 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
11559 "                                      const char *root);\n"
11560 "\n"
11561 msgstr ""
11562
11563 #. type: textblock
11564 #: ../src/guestfs-actions.pod:3085 ../fish/guestfish-actions.pod:2088
11565 msgid "This returns the product variant of the inspected operating system."
11566 msgstr ""
11567
11568 #. type: textblock
11569 #: ../src/guestfs-actions.pod:3088 ../fish/guestfish-actions.pod:2091
11570 msgid ""
11571 "For Windows guests, this returns the contents of the Registry key "
11572 "C<HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType>"
11573 " which is usually a string such as C<Client> or C<Server> (other values are "
11574 "possible).  This can be used to distinguish consumer and enterprise versions"
11575 " of Windows that have the same version number (for example, Windows 7 and "
11576 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11577 "the latter is C<Server>)."
11578 msgstr ""
11579
11580 #. type: textblock
11581 #: ../src/guestfs-actions.pod:3097 ../fish/guestfish-actions.pod:2100
11582 msgid ""
11583 "For enterprise Linux guests, in future we intend this to return the product "
11584 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11585 "implemented at present."
11586 msgstr ""
11587
11588 #. type: textblock
11589 #: ../src/guestfs-actions.pod:3101 ../fish/guestfish-actions.pod:2104
11590 msgid ""
11591 "If the product variant could not be determined, then the string C<unknown> "
11592 "is returned."
11593 msgstr ""
11594
11595 #. type: textblock
11596 #: ../src/guestfs-actions.pod:3104
11597 msgid ""
11598 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11599 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11600 msgstr ""
11601
11602 #. type: textblock
11603 #: ../src/guestfs-actions.pod:3111
11604 msgid "(Added in 1.9.13)"
11605 msgstr ""
11606
11607 #. type: =head2
11608 #: ../src/guestfs-actions.pod:3113
11609 msgid "guestfs_inspect_get_roots"
11610 msgstr ""
11611
11612 #. type: verbatim
11613 #: ../src/guestfs-actions.pod:3115
11614 #, no-wrap
11615 msgid ""
11616 " char **\n"
11617 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11618 "\n"
11619 msgstr ""
11620
11621 #. type: textblock
11622 #: ../src/guestfs-actions.pod:3118
11623 msgid ""
11624 "This function is a convenient way to get the list of root devices, as "
11625 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11626 "the whole inspection process."
11627 msgstr ""
11628
11629 #. type: textblock
11630 #: ../src/guestfs-actions.pod:3122
11631 msgid ""
11632 "This returns an empty list if either no root devices were found or the "
11633 "caller has not called C<guestfs_inspect_os>."
11634 msgstr ""
11635
11636 #. type: textblock
11637 #: ../src/guestfs-actions.pod:3131
11638 msgid "(Added in 1.7.3)"
11639 msgstr ""
11640
11641 #. type: =head2
11642 #: ../src/guestfs-actions.pod:3133
11643 msgid "guestfs_inspect_get_type"
11644 msgstr ""
11645
11646 #. type: verbatim
11647 #: ../src/guestfs-actions.pod:3135
11648 #, no-wrap
11649 msgid ""
11650 " char *\n"
11651 " guestfs_inspect_get_type (guestfs_h *g,\n"
11652 "                           const char *root);\n"
11653 "\n"
11654 msgstr ""
11655
11656 #. type: textblock
11657 #: ../src/guestfs-actions.pod:3139 ../fish/guestfish-actions.pod:2128
11658 msgid ""
11659 "This returns the type of the inspected operating system.  Currently defined "
11660 "types are:"
11661 msgstr ""
11662
11663 #. type: =item
11664 #: ../src/guestfs-actions.pod:3144 ../fish/guestfish-actions.pod:2133
11665 msgid "\"linux\""
11666 msgstr ""
11667
11668 #. type: textblock
11669 #: ../src/guestfs-actions.pod:3146 ../fish/guestfish-actions.pod:2135
11670 msgid "Any Linux-based operating system."
11671 msgstr ""
11672
11673 #. type: textblock
11674 #: ../src/guestfs-actions.pod:3150 ../fish/guestfish-actions.pod:2139
11675 msgid "Any Microsoft Windows operating system."
11676 msgstr ""
11677
11678 #. type: =item
11679 #: ../src/guestfs-actions.pod:3152 ../fish/guestfish-actions.pod:2141
11680 msgid "\"freebsd\""
11681 msgstr ""
11682
11683 #. type: textblock
11684 #: ../src/guestfs-actions.pod:3154 ../fish/guestfish-actions.pod:2143
11685 msgid "FreeBSD."
11686 msgstr ""
11687
11688 #. type: textblock
11689 #: ../src/guestfs-actions.pod:3158 ../fish/guestfish-actions.pod:2147
11690 msgid "The operating system type could not be determined."
11691 msgstr ""
11692
11693 #. type: =head2
11694 #: ../src/guestfs-actions.pod:3172
11695 msgid "guestfs_inspect_get_windows_current_control_set"
11696 msgstr ""
11697
11698 #. type: verbatim
11699 #: ../src/guestfs-actions.pod:3174
11700 #, no-wrap
11701 msgid ""
11702 " char *\n"
11703 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11704 "                                                  const char *root);\n"
11705 "\n"
11706 msgstr ""
11707
11708 #. type: textblock
11709 #: ../src/guestfs-actions.pod:3178 ../fish/guestfish-actions.pod:2160
11710 msgid ""
11711 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11712 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11713 msgstr ""
11714
11715 #. type: textblock
11716 #: ../src/guestfs-actions.pod:3181 ../fish/guestfish-actions.pod:2163
11717 msgid ""
11718 "This call assumes that the guest is Windows and that the Registry could be "
11719 "examined by inspection.  If this is not the case then an error is returned."
11720 msgstr ""
11721
11722 #. type: =head2
11723 #: ../src/guestfs-actions.pod:3192
11724 msgid "guestfs_inspect_get_windows_systemroot"
11725 msgstr ""
11726
11727 #. type: verbatim
11728 #: ../src/guestfs-actions.pod:3194
11729 #, no-wrap
11730 msgid ""
11731 " char *\n"
11732 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11733 "                                         const char *root);\n"
11734 "\n"
11735 msgstr ""
11736
11737 #. type: textblock
11738 #: ../src/guestfs-actions.pod:3198 ../fish/guestfish-actions.pod:2173
11739 msgid ""
11740 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11741 "is a directory path such as C</WINDOWS>."
11742 msgstr ""
11743
11744 #. type: textblock
11745 #: ../src/guestfs-actions.pod:3201 ../fish/guestfish-actions.pod:2176
11746 msgid ""
11747 "This call assumes that the guest is Windows and that the systemroot could be"
11748 " determined by inspection.  If this is not the case then an error is "
11749 "returned."
11750 msgstr ""
11751
11752 #. type: textblock
11753 #: ../src/guestfs-actions.pod:3210
11754 msgid "(Added in 1.5.25)"
11755 msgstr ""
11756
11757 #. type: =head2
11758 #: ../src/guestfs-actions.pod:3212
11759 msgid "guestfs_inspect_is_live"
11760 msgstr ""
11761
11762 #. type: verbatim
11763 #: ../src/guestfs-actions.pod:3214
11764 #, no-wrap
11765 msgid ""
11766 " int\n"
11767 " guestfs_inspect_is_live (guestfs_h *g,\n"
11768 "                          const char *root);\n"
11769 "\n"
11770 msgstr ""
11771
11772 #. type: textblock
11773 #: ../src/guestfs-actions.pod:3218
11774 msgid ""
11775 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11776 "disk), then this returns true if a live image was detected on the disk."
11777 msgstr ""
11778
11779 #. type: =head2
11780 #: ../src/guestfs-actions.pod:3228
11781 msgid "guestfs_inspect_is_multipart"
11782 msgstr ""
11783
11784 #. type: verbatim
11785 #: ../src/guestfs-actions.pod:3230
11786 #, no-wrap
11787 msgid ""
11788 " int\n"
11789 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11790 "                               const char *root);\n"
11791 "\n"
11792 msgstr ""
11793
11794 #. type: textblock
11795 #: ../src/guestfs-actions.pod:3234
11796 msgid ""
11797 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11798 "disk), then this returns true if the disk is part of a set."
11799 msgstr ""
11800
11801 #. type: =head2
11802 #: ../src/guestfs-actions.pod:3244
11803 msgid "guestfs_inspect_is_netinst"
11804 msgstr ""
11805
11806 #. type: verbatim
11807 #: ../src/guestfs-actions.pod:3246
11808 #, no-wrap
11809 msgid ""
11810 " int\n"
11811 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11812 "                             const char *root);\n"
11813 "\n"
11814 msgstr ""
11815
11816 #. type: textblock
11817 #: ../src/guestfs-actions.pod:3250
11818 msgid ""
11819 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11820 "disk), then this returns true if the disk is a network installer, ie. not a "
11821 "self-contained install CD but one which is likely to require network access "
11822 "to complete the install."
11823 msgstr ""
11824
11825 #. type: =head2
11826 #: ../src/guestfs-actions.pod:3262
11827 msgid "guestfs_inspect_list_applications"
11828 msgstr ""
11829
11830 #. type: verbatim
11831 #: ../src/guestfs-actions.pod:3264
11832 #, no-wrap
11833 msgid ""
11834 " struct guestfs_application_list *\n"
11835 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11836 "                                    const char *root);\n"
11837 "\n"
11838 msgstr ""
11839
11840 #. type: textblock
11841 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2218
11842 msgid "Return the list of applications installed in the operating system."
11843 msgstr ""
11844
11845 #. type: textblock
11846 #: ../src/guestfs-actions.pod:3270
11847 msgid ""
11848 "I<Note:> This call works differently from other parts of the inspection API."
11849 "  You have to call C<guestfs_inspect_os>, then "
11850 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11851 "this.  Listing applications is a significantly more difficult operation "
11852 "which requires access to the full filesystem.  Also note that unlike the "
11853 "other C<guestfs_inspect_get_*> calls which are just returning data cached in"
11854 " the libguestfs handle, this call actually reads parts of the mounted "
11855 "filesystems during the call."
11856 msgstr ""
11857
11858 #. type: textblock
11859 #: ../src/guestfs-actions.pod:3280 ../fish/guestfish-actions.pod:2230
11860 msgid ""
11861 "This returns an empty list if the inspection code was not able to determine "
11862 "the list of applications."
11863 msgstr ""
11864
11865 #. type: textblock
11866 #: ../src/guestfs-actions.pod:3283 ../fish/guestfish-actions.pod:2233
11867 msgid "The application structure contains the following fields:"
11868 msgstr ""
11869
11870 #. type: =item
11871 #: ../src/guestfs-actions.pod:3287 ../fish/guestfish-actions.pod:2237
11872 msgid "C<app_name>"
11873 msgstr ""
11874
11875 #. type: textblock
11876 #: ../src/guestfs-actions.pod:3289 ../fish/guestfish-actions.pod:2239
11877 msgid ""
11878 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11879 "guests, this is the package name."
11880 msgstr ""
11881
11882 #. type: =item
11883 #: ../src/guestfs-actions.pod:3292 ../fish/guestfish-actions.pod:2242
11884 msgid "C<app_display_name>"
11885 msgstr ""
11886
11887 #. type: textblock
11888 #: ../src/guestfs-actions.pod:3294 ../fish/guestfish-actions.pod:2244
11889 msgid ""
11890 "The display name of the application, sometimes localized to the install "
11891 "language of the guest operating system."
11892 msgstr ""
11893
11894 #. type: textblock
11895 #: ../src/guestfs-actions.pod:3297 ../fish/guestfish-actions.pod:2247
11896 msgid ""
11897 "If unavailable this is returned as an empty string C<\"\">.  Callers needing"
11898 " to display something can use C<app_name> instead."
11899 msgstr ""
11900
11901 #. type: =item
11902 #: ../src/guestfs-actions.pod:3300 ../fish/guestfish-actions.pod:2250
11903 msgid "C<app_epoch>"
11904 msgstr ""
11905
11906 #. type: textblock
11907 #: ../src/guestfs-actions.pod:3302 ../fish/guestfish-actions.pod:2252
11908 msgid ""
11909 "For package managers which use epochs, this contains the epoch of the "
11910 "package (an integer).  If unavailable, this is returned as C<0>."
11911 msgstr ""
11912
11913 #. type: =item
11914 #: ../src/guestfs-actions.pod:3305 ../fish/guestfish-actions.pod:2255
11915 msgid "C<app_version>"
11916 msgstr ""
11917
11918 #. type: textblock
11919 #: ../src/guestfs-actions.pod:3307 ../fish/guestfish-actions.pod:2257
11920 msgid ""
11921 "The version string of the application or package.  If unavailable this is "
11922 "returned as an empty string C<\"\">."
11923 msgstr ""
11924
11925 #. type: =item
11926 #: ../src/guestfs-actions.pod:3310 ../fish/guestfish-actions.pod:2260
11927 msgid "C<app_release>"
11928 msgstr ""
11929
11930 #. type: textblock
11931 #: ../src/guestfs-actions.pod:3312 ../fish/guestfish-actions.pod:2262
11932 msgid ""
11933 "The release string of the application or package, for package managers that "
11934 "use this.  If unavailable this is returned as an empty string C<\"\">."
11935 msgstr ""
11936
11937 #. type: =item
11938 #: ../src/guestfs-actions.pod:3316 ../fish/guestfish-actions.pod:2266
11939 msgid "C<app_install_path>"
11940 msgstr ""
11941
11942 #. type: textblock
11943 #: ../src/guestfs-actions.pod:3318 ../fish/guestfish-actions.pod:2268
11944 msgid ""
11945 "The installation path of the application (on operating systems such as "
11946 "Windows which use installation paths).  This path is in the format used by "
11947 "the guest operating system, it is not a libguestfs path."
11948 msgstr ""
11949
11950 #. type: textblock
11951 #: ../src/guestfs-actions.pod:3323 ../fish/guestfish-actions.pod:2273
11952 msgid "If unavailable this is returned as an empty string C<\"\">."
11953 msgstr ""
11954
11955 #. type: =item
11956 #: ../src/guestfs-actions.pod:3325 ../fish/guestfish-actions.pod:2275
11957 msgid "C<app_trans_path>"
11958 msgstr ""
11959
11960 #. type: textblock
11961 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2277
11962 msgid ""
11963 "The install path translated into a libguestfs path.  If unavailable this is "
11964 "returned as an empty string C<\"\">."
11965 msgstr ""
11966
11967 #. type: =item
11968 #: ../src/guestfs-actions.pod:3330 ../fish/guestfish-actions.pod:2280
11969 msgid "C<app_publisher>"
11970 msgstr ""
11971
11972 #. type: textblock
11973 #: ../src/guestfs-actions.pod:3332 ../fish/guestfish-actions.pod:2282
11974 msgid ""
11975 "The name of the publisher of the application, for package managers that use "
11976 "this.  If unavailable this is returned as an empty string C<\"\">."
11977 msgstr ""
11978
11979 #. type: =item
11980 #: ../src/guestfs-actions.pod:3336 ../fish/guestfish-actions.pod:2286
11981 msgid "C<app_url>"
11982 msgstr ""
11983
11984 #. type: textblock
11985 #: ../src/guestfs-actions.pod:3338 ../fish/guestfish-actions.pod:2288
11986 msgid ""
11987 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11988 "returned as an empty string C<\"\">."
11989 msgstr ""
11990
11991 #. type: =item
11992 #: ../src/guestfs-actions.pod:3341 ../fish/guestfish-actions.pod:2291
11993 msgid "C<app_source_package>"
11994 msgstr ""
11995
11996 #. type: textblock
11997 #: ../src/guestfs-actions.pod:3343 ../fish/guestfish-actions.pod:2293
11998 msgid ""
11999 "For packaging systems which support this, the name of the source package.  "
12000 "If unavailable this is returned as an empty string C<\"\">."
12001 msgstr ""
12002
12003 #. type: =item
12004 #: ../src/guestfs-actions.pod:3346 ../fish/guestfish-actions.pod:2296
12005 msgid "C<app_summary>"
12006 msgstr ""
12007
12008 #. type: textblock
12009 #: ../src/guestfs-actions.pod:3348 ../fish/guestfish-actions.pod:2298
12010 msgid ""
12011 "A short (usually one line) description of the application or package.  If "
12012 "unavailable this is returned as an empty string C<\"\">."
12013 msgstr ""
12014
12015 #. type: =item
12016 #: ../src/guestfs-actions.pod:3351 ../fish/guestfish-actions.pod:2301
12017 msgid "C<app_description>"
12018 msgstr ""
12019
12020 #. type: textblock
12021 #: ../src/guestfs-actions.pod:3353 ../fish/guestfish-actions.pod:2303
12022 msgid ""
12023 "A longer description of the application or package.  If unavailable this is "
12024 "returned as an empty string C<\"\">."
12025 msgstr ""
12026
12027 #. type: textblock
12028 #: ../src/guestfs-actions.pod:3360
12029 msgid ""
12030 "This function returns a C<struct guestfs_application_list *>, or NULL if "
12031 "there was an error.  I<The caller must call C<guestfs_free_application_list>"
12032 " after use>."
12033 msgstr ""
12034
12035 #. type: textblock
12036 #: ../src/guestfs-actions.pod:3364
12037 msgid "(Added in 1.7.8)"
12038 msgstr ""
12039
12040 #. type: =head2
12041 #: ../src/guestfs-actions.pod:3366
12042 msgid "guestfs_inspect_os"
12043 msgstr ""
12044
12045 #. type: verbatim
12046 #: ../src/guestfs-actions.pod:3368
12047 #, no-wrap
12048 msgid ""
12049 " char **\n"
12050 " guestfs_inspect_os (guestfs_h *g);\n"
12051 "\n"
12052 msgstr ""
12053
12054 #. type: textblock
12055 #: ../src/guestfs-actions.pod:3371 ../fish/guestfish-actions.pod:2314
12056 msgid ""
12057 "This function uses other libguestfs functions and certain heuristics to "
12058 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
12059 "for operating systems."
12060 msgstr ""
12061
12062 #. type: textblock
12063 #: ../src/guestfs-actions.pod:3375 ../fish/guestfish-actions.pod:2318
12064 msgid "The list returned is empty if no operating systems were found."
12065 msgstr ""
12066
12067 #. type: textblock
12068 #: ../src/guestfs-actions.pod:3377 ../fish/guestfish-actions.pod:2320
12069 msgid ""
12070 "If one operating system was found, then this returns a list with a single "
12071 "element, which is the name of the root filesystem of this operating system."
12072 "  It is also possible for this function to return a list containing more "
12073 "than one element, indicating a dual-boot or multi-boot virtual machine, with"
12074 " each element being the root filesystem of one of the operating systems."
12075 msgstr ""
12076
12077 #. type: textblock
12078 #: ../src/guestfs-actions.pod:3384
12079 msgid ""
12080 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
12081 "functions in order to query further information about each operating system,"
12082 " such as the name and version."
12083 msgstr ""
12084
12085 #. type: textblock
12086 #: ../src/guestfs-actions.pod:3389
12087 msgid ""
12088 "This function uses other libguestfs features such as C<guestfs_mount_ro> and"
12089 " C<guestfs_umount_all> in order to mount and unmount filesystems and look at"
12090 " the contents.  This should be called with no disks currently mounted.  The "
12091 "function may also use Augeas, so any existing Augeas handle will be closed."
12092 msgstr ""
12093
12094 #. type: textblock
12095 #: ../src/guestfs-actions.pod:3395 ../fish/guestfish-actions.pod:2338
12096 msgid ""
12097 "This function cannot decrypt encrypted disks.  The caller must do that first"
12098 " (supplying the necessary keys) if the disk is encrypted."
12099 msgstr ""
12100
12101 #. type: textblock
12102 #: ../src/guestfs-actions.pod:3401 ../src/guestfs-actions.pod:3732
12103 #: ../src/guestfs-actions.pod:3814
12104 msgid "See also C<guestfs_list_filesystems>."
12105 msgstr ""
12106
12107 #. type: =head2
12108 #: ../src/guestfs-actions.pod:3409
12109 msgid "guestfs_is_blockdev"
12110 msgstr ""
12111
12112 #. type: verbatim
12113 #: ../src/guestfs-actions.pod:3411
12114 #, no-wrap
12115 msgid ""
12116 " int\n"
12117 " guestfs_is_blockdev (guestfs_h *g,\n"
12118 "                      const char *path);\n"
12119 "\n"
12120 msgstr ""
12121
12122 #. type: textblock
12123 #: ../src/guestfs-actions.pod:3415 ../fish/guestfish-actions.pod:2350
12124 msgid ""
12125 "This returns C<true> if and only if there is a block device with the given "
12126 "C<path> name."
12127 msgstr ""
12128
12129 #. type: textblock
12130 #: ../src/guestfs-actions.pod:3418 ../src/guestfs-actions.pod:3447
12131 #: ../src/guestfs-actions.pod:3477 ../src/guestfs-actions.pod:3492
12132 #: ../src/guestfs-actions.pod:3508 ../src/guestfs-actions.pod:3564
12133 #: ../src/guestfs-actions.pod:3579
12134 msgid "See also C<guestfs_stat>."
12135 msgstr ""
12136
12137 #. type: textblock
12138 #: ../src/guestfs-actions.pod:3422 ../src/guestfs-actions.pod:3451
12139 #: ../src/guestfs-actions.pod:3496 ../src/guestfs-actions.pod:3568
12140 #: ../src/guestfs-actions.pod:3583
12141 msgid "(Added in 1.5.10)"
12142 msgstr ""
12143
12144 #. type: =head2
12145 #: ../src/guestfs-actions.pod:3424
12146 msgid "guestfs_is_busy"
12147 msgstr ""
12148
12149 #. type: verbatim
12150 #: ../src/guestfs-actions.pod:3426
12151 #, no-wrap
12152 msgid ""
12153 " int\n"
12154 " guestfs_is_busy (guestfs_h *g);\n"
12155 "\n"
12156 msgstr ""
12157
12158 #. type: textblock
12159 #: ../src/guestfs-actions.pod:3429 ../fish/guestfish-actions.pod:2359
12160 msgid ""
12161 "This returns true iff this handle is busy processing a command (in the "
12162 "C<BUSY> state)."
12163 msgstr ""
12164
12165 #. type: =head2
12166 #: ../src/guestfs-actions.pod:3438
12167 msgid "guestfs_is_chardev"
12168 msgstr ""
12169
12170 #. type: verbatim
12171 #: ../src/guestfs-actions.pod:3440
12172 #, no-wrap
12173 msgid ""
12174 " int\n"
12175 " guestfs_is_chardev (guestfs_h *g,\n"
12176 "                     const char *path);\n"
12177 "\n"
12178 msgstr ""
12179
12180 #. type: textblock
12181 #: ../src/guestfs-actions.pod:3444 ../fish/guestfish-actions.pod:2368
12182 msgid ""
12183 "This returns C<true> if and only if there is a character device with the "
12184 "given C<path> name."
12185 msgstr ""
12186
12187 #. type: =head2
12188 #: ../src/guestfs-actions.pod:3453
12189 msgid "guestfs_is_config"
12190 msgstr ""
12191
12192 #. type: verbatim
12193 #: ../src/guestfs-actions.pod:3455
12194 #, no-wrap
12195 msgid ""
12196 " int\n"
12197 " guestfs_is_config (guestfs_h *g);\n"
12198 "\n"
12199 msgstr ""
12200
12201 #. type: textblock
12202 #: ../src/guestfs-actions.pod:3458 ../fish/guestfish-actions.pod:2377
12203 msgid ""
12204 "This returns true iff this handle is being configured (in the C<CONFIG> "
12205 "state)."
12206 msgstr ""
12207
12208 #. type: =head2
12209 #: ../src/guestfs-actions.pod:3467
12210 msgid "guestfs_is_dir"
12211 msgstr ""
12212
12213 #. type: verbatim
12214 #: ../src/guestfs-actions.pod:3469
12215 #, no-wrap
12216 msgid ""
12217 " int\n"
12218 " guestfs_is_dir (guestfs_h *g,\n"
12219 "                 const char *path);\n"
12220 "\n"
12221 msgstr ""
12222
12223 #. type: textblock
12224 #: ../src/guestfs-actions.pod:3473 ../fish/guestfish-actions.pod:2386
12225 msgid ""
12226 "This returns C<true> if and only if there is a directory with the given "
12227 "C<path> name.  Note that it returns false for other objects like files."
12228 msgstr ""
12229
12230 #. type: =head2
12231 #: ../src/guestfs-actions.pod:3483
12232 msgid "guestfs_is_fifo"
12233 msgstr ""
12234
12235 #. type: verbatim
12236 #: ../src/guestfs-actions.pod:3485
12237 #, no-wrap
12238 msgid ""
12239 " int\n"
12240 " guestfs_is_fifo (guestfs_h *g,\n"
12241 "                  const char *path);\n"
12242 "\n"
12243 msgstr ""
12244
12245 #. type: textblock
12246 #: ../src/guestfs-actions.pod:3489 ../fish/guestfish-actions.pod:2396
12247 msgid ""
12248 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
12249 "given C<path> name."
12250 msgstr ""
12251
12252 #. type: =head2
12253 #: ../src/guestfs-actions.pod:3498
12254 msgid "guestfs_is_file"
12255 msgstr ""
12256
12257 #. type: verbatim
12258 #: ../src/guestfs-actions.pod:3500
12259 #, no-wrap
12260 msgid ""
12261 " int\n"
12262 " guestfs_is_file (guestfs_h *g,\n"
12263 "                  const char *path);\n"
12264 "\n"
12265 msgstr ""
12266
12267 #. type: textblock
12268 #: ../src/guestfs-actions.pod:3504 ../fish/guestfish-actions.pod:2405
12269 msgid ""
12270 "This returns C<true> if and only if there is a regular file with the given "
12271 "C<path> name.  Note that it returns false for other objects like "
12272 "directories."
12273 msgstr ""
12274
12275 #. type: =head2
12276 #: ../src/guestfs-actions.pod:3514
12277 msgid "guestfs_is_launching"
12278 msgstr ""
12279
12280 #. type: verbatim
12281 #: ../src/guestfs-actions.pod:3516
12282 #, no-wrap
12283 msgid ""
12284 " int\n"
12285 " guestfs_is_launching (guestfs_h *g);\n"
12286 "\n"
12287 msgstr ""
12288
12289 #. type: textblock
12290 #: ../src/guestfs-actions.pod:3519 ../fish/guestfish-actions.pod:2415
12291 msgid ""
12292 "This returns true iff this handle is launching the subprocess (in the "
12293 "C<LAUNCHING> state)."
12294 msgstr ""
12295
12296 #. type: =head2
12297 #: ../src/guestfs-actions.pod:3528
12298 msgid "guestfs_is_lv"
12299 msgstr ""
12300
12301 #. type: verbatim
12302 #: ../src/guestfs-actions.pod:3530
12303 #, no-wrap
12304 msgid ""
12305 " int\n"
12306 " guestfs_is_lv (guestfs_h *g,\n"
12307 "                const char *device);\n"
12308 "\n"
12309 msgstr ""
12310
12311 #. type: textblock
12312 #: ../src/guestfs-actions.pod:3534 ../fish/guestfish-actions.pod:2424
12313 msgid ""
12314 "This command tests whether C<device> is a logical volume, and returns true "
12315 "iff this is the case."
12316 msgstr ""
12317
12318 #. type: =head2
12319 #: ../src/guestfs-actions.pod:3541
12320 msgid "guestfs_is_ready"
12321 msgstr ""
12322
12323 #. type: verbatim
12324 #: ../src/guestfs-actions.pod:3543
12325 #, no-wrap
12326 msgid ""
12327 " int\n"
12328 " guestfs_is_ready (guestfs_h *g);\n"
12329 "\n"
12330 msgstr ""
12331
12332 #. type: textblock
12333 #: ../src/guestfs-actions.pod:3546 ../fish/guestfish-actions.pod:2431
12334 msgid ""
12335 "This returns true iff this handle is ready to accept commands (in the "
12336 "C<READY> state)."
12337 msgstr ""
12338
12339 #. type: =head2
12340 #: ../src/guestfs-actions.pod:3555
12341 msgid "guestfs_is_socket"
12342 msgstr ""
12343
12344 #. type: verbatim
12345 #: ../src/guestfs-actions.pod:3557
12346 #, no-wrap
12347 msgid ""
12348 " int\n"
12349 " guestfs_is_socket (guestfs_h *g,\n"
12350 "                    const char *path);\n"
12351 "\n"
12352 msgstr ""
12353
12354 #. type: textblock
12355 #: ../src/guestfs-actions.pod:3561 ../fish/guestfish-actions.pod:2440
12356 msgid ""
12357 "This returns C<true> if and only if there is a Unix domain socket with the "
12358 "given C<path> name."
12359 msgstr ""
12360
12361 #. type: =head2
12362 #: ../src/guestfs-actions.pod:3570
12363 msgid "guestfs_is_symlink"
12364 msgstr ""
12365
12366 #. type: verbatim
12367 #: ../src/guestfs-actions.pod:3572
12368 #, no-wrap
12369 msgid ""
12370 " int\n"
12371 " guestfs_is_symlink (guestfs_h *g,\n"
12372 "                     const char *path);\n"
12373 "\n"
12374 msgstr ""
12375
12376 #. type: textblock
12377 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2449
12378 msgid ""
12379 "This returns C<true> if and only if there is a symbolic link with the given "
12380 "C<path> name."
12381 msgstr ""
12382
12383 #. type: =head2
12384 #: ../src/guestfs-actions.pod:3585
12385 msgid "guestfs_is_zero"
12386 msgstr ""
12387
12388 #. type: verbatim
12389 #: ../src/guestfs-actions.pod:3587
12390 #, no-wrap
12391 msgid ""
12392 " int\n"
12393 " guestfs_is_zero (guestfs_h *g,\n"
12394 "                  const char *path);\n"
12395 "\n"
12396 msgstr ""
12397
12398 #. type: textblock
12399 #: ../src/guestfs-actions.pod:3591 ../fish/guestfish-actions.pod:2458
12400 msgid ""
12401 "This returns true iff the file exists and the file is empty or it contains "
12402 "all zero bytes."
12403 msgstr ""
12404
12405 #. type: textblock
12406 #: ../src/guestfs-actions.pod:3596 ../src/guestfs-actions.pod:3610
12407 msgid "(Added in 1.11.8)"
12408 msgstr ""
12409
12410 #. type: =head2
12411 #: ../src/guestfs-actions.pod:3598
12412 msgid "guestfs_is_zero_device"
12413 msgstr ""
12414
12415 #. type: verbatim
12416 #: ../src/guestfs-actions.pod:3600
12417 #, no-wrap
12418 msgid ""
12419 " int\n"
12420 " guestfs_is_zero_device (guestfs_h *g,\n"
12421 "                         const char *device);\n"
12422 "\n"
12423 msgstr ""
12424
12425 #. type: textblock
12426 #: ../src/guestfs-actions.pod:3604 ../fish/guestfish-actions.pod:2465
12427 msgid "This returns true iff the device exists and contains all zero bytes."
12428 msgstr ""
12429
12430 #. type: textblock
12431 #: ../src/guestfs-actions.pod:3606 ../fish/guestfish-actions.pod:2467
12432 msgid "Note that for large devices this can take a long time to run."
12433 msgstr ""
12434
12435 #. type: =head2
12436 #: ../src/guestfs-actions.pod:3612
12437 msgid "guestfs_kill_subprocess"
12438 msgstr ""
12439
12440 #. type: verbatim
12441 #: ../src/guestfs-actions.pod:3614
12442 #, no-wrap
12443 msgid ""
12444 " int\n"
12445 " guestfs_kill_subprocess (guestfs_h *g);\n"
12446 "\n"
12447 msgstr ""
12448
12449 #. type: textblock
12450 #: ../src/guestfs-actions.pod:3617 ../fish/guestfish-actions.pod:2473
12451 msgid "This kills the qemu subprocess.  You should never need to call this."
12452 msgstr ""
12453
12454 #. type: =head2
12455 #: ../src/guestfs-actions.pod:3623
12456 msgid "guestfs_launch"
12457 msgstr ""
12458
12459 #. type: verbatim
12460 #: ../src/guestfs-actions.pod:3625
12461 #, no-wrap
12462 msgid ""
12463 " int\n"
12464 " guestfs_launch (guestfs_h *g);\n"
12465 "\n"
12466 msgstr ""
12467
12468 #. type: textblock
12469 #: ../src/guestfs-actions.pod:3628 ../fish/guestfish-actions.pod:2481
12470 msgid ""
12471 "Internally libguestfs is implemented by running a virtual machine using "
12472 "L<qemu(1)>."
12473 msgstr ""
12474
12475 #. type: textblock
12476 #: ../src/guestfs-actions.pod:3631 ../fish/guestfish-actions.pod:2484
12477 msgid ""
12478 "You should call this after configuring the handle (eg. adding drives) but "
12479 "before performing any actions."
12480 msgstr ""
12481
12482 #. type: =head2
12483 #: ../src/guestfs-actions.pod:3643
12484 msgid "guestfs_lchown"
12485 msgstr ""
12486
12487 #. type: verbatim
12488 #: ../src/guestfs-actions.pod:3645
12489 #, no-wrap
12490 msgid ""
12491 " int\n"
12492 " guestfs_lchown (guestfs_h *g,\n"
12493 "                 int owner,\n"
12494 "                 int group,\n"
12495 "                 const char *path);\n"
12496 "\n"
12497 msgstr ""
12498
12499 #. type: textblock
12500 #: ../src/guestfs-actions.pod:3651
12501 msgid ""
12502 "Change the file owner to C<owner> and group to C<group>.  This is like "
12503 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
12504 "changed, not the target."
12505 msgstr ""
12506
12507 #. type: =head2
12508 #: ../src/guestfs-actions.pod:3663
12509 msgid "guestfs_lgetxattr"
12510 msgstr ""
12511
12512 #. type: verbatim
12513 #: ../src/guestfs-actions.pod:3665
12514 #, no-wrap
12515 msgid ""
12516 " char *\n"
12517 " guestfs_lgetxattr (guestfs_h *g,\n"
12518 "                    const char *path,\n"
12519 "                    const char *name,\n"
12520 "                    size_t *size_r);\n"
12521 "\n"
12522 msgstr ""
12523
12524 #. type: textblock
12525 #: ../src/guestfs-actions.pod:3671 ../fish/guestfish-actions.pod:2503
12526 msgid ""
12527 "Get a single extended attribute from file C<path> named C<name>.  If C<path>"
12528 " is a symlink, then this call returns an extended attribute from the "
12529 "symlink."
12530 msgstr ""
12531
12532 #. type: textblock
12533 #: ../src/guestfs-actions.pod:3685
12534 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
12535 msgstr ""
12536
12537 #. type: =head2
12538 #: ../src/guestfs-actions.pod:3693
12539 msgid "guestfs_lgetxattrs"
12540 msgstr ""
12541
12542 #. type: verbatim
12543 #: ../src/guestfs-actions.pod:3695
12544 #, no-wrap
12545 msgid ""
12546 " struct guestfs_xattr_list *\n"
12547 " guestfs_lgetxattrs (guestfs_h *g,\n"
12548 "                     const char *path);\n"
12549 "\n"
12550 msgstr ""
12551
12552 #. type: textblock
12553 #: ../src/guestfs-actions.pod:3699
12554 msgid ""
12555 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link,"
12556 " then it returns the extended attributes of the link itself."
12557 msgstr ""
12558
12559 #. type: =head2
12560 #: ../src/guestfs-actions.pod:3709
12561 msgid "guestfs_list_9p"
12562 msgstr ""
12563
12564 #. type: verbatim
12565 #: ../src/guestfs-actions.pod:3711
12566 #, no-wrap
12567 msgid ""
12568 " char **\n"
12569 " guestfs_list_9p (guestfs_h *g);\n"
12570 "\n"
12571 msgstr ""
12572
12573 #. type: textblock
12574 #: ../src/guestfs-actions.pod:3714 ../fish/guestfish-actions.pod:2531
12575 msgid ""
12576 "List all 9p filesystems attached to the guest.  A list of mount tags is "
12577 "returned."
12578 msgstr ""
12579
12580 #. type: =head2
12581 #: ../src/guestfs-actions.pod:3723
12582 msgid "guestfs_list_devices"
12583 msgstr ""
12584
12585 #. type: verbatim
12586 #: ../src/guestfs-actions.pod:3725
12587 #, no-wrap
12588 msgid ""
12589 " char **\n"
12590 " guestfs_list_devices (guestfs_h *g);\n"
12591 "\n"
12592 msgstr ""
12593
12594 #. type: textblock
12595 #: ../src/guestfs-actions.pod:3728 ../fish/guestfish-actions.pod:2538
12596 msgid "List all the block devices."
12597 msgstr ""
12598
12599 #. type: textblock
12600 #: ../src/guestfs-actions.pod:3730 ../fish/guestfish-actions.pod:2540
12601 msgid "The full block device names are returned, eg. C</dev/sda>."
12602 msgstr ""
12603
12604 #. type: =head2
12605 #: ../src/guestfs-actions.pod:3740
12606 msgid "guestfs_list_dm_devices"
12607 msgstr ""
12608
12609 #. type: verbatim
12610 #: ../src/guestfs-actions.pod:3742
12611 #, no-wrap
12612 msgid ""
12613 " char **\n"
12614 " guestfs_list_dm_devices (guestfs_h *g);\n"
12615 "\n"
12616 msgstr ""
12617
12618 #. type: textblock
12619 #: ../src/guestfs-actions.pod:3745 ../fish/guestfish-actions.pod:2548
12620 msgid "List all device mapper devices."
12621 msgstr ""
12622
12623 #. type: textblock
12624 #: ../src/guestfs-actions.pod:3747
12625 msgid ""
12626 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
12627 "previous call to C<guestfs_luks_open>."
12628 msgstr ""
12629
12630 #. type: textblock
12631 #: ../src/guestfs-actions.pod:3750
12632 msgid ""
12633 "Device mapper devices which correspond to logical volumes are I<not> "
12634 "returned in this list.  Call C<guestfs_lvs> if you want to list logical "
12635 "volumes."
12636 msgstr ""
12637
12638 #. type: textblock
12639 #: ../src/guestfs-actions.pod:3758 ../src/guestfs-actions.pod:5214
12640 msgid "(Added in 1.11.15)"
12641 msgstr ""
12642
12643 #. type: =head2
12644 #: ../src/guestfs-actions.pod:3760
12645 msgid "guestfs_list_filesystems"
12646 msgstr ""
12647
12648 #. type: verbatim
12649 #: ../src/guestfs-actions.pod:3762
12650 #, no-wrap
12651 msgid ""
12652 " char **\n"
12653 " guestfs_list_filesystems (guestfs_h *g);\n"
12654 "\n"
12655 msgstr ""
12656
12657 #. type: textblock
12658 #: ../src/guestfs-actions.pod:3765 ../fish/guestfish-actions.pod:2561
12659 msgid ""
12660 "This inspection command looks for filesystems on partitions, block devices "
12661 "and logical volumes, returning a list of devices containing filesystems and "
12662 "their type."
12663 msgstr ""
12664
12665 #. type: textblock
12666 #: ../src/guestfs-actions.pod:3769 ../fish/guestfish-actions.pod:2565
12667 msgid ""
12668 "The return value is a hash, where the keys are the devices containing "
12669 "filesystems, and the values are the filesystem types.  For example:"
12670 msgstr ""
12671
12672 #. type: verbatim
12673 #: ../src/guestfs-actions.pod:3773 ../fish/guestfish-actions.pod:2569
12674 #, no-wrap
12675 msgid ""
12676 " \"/dev/sda1\" => \"ntfs\"\n"
12677 " \"/dev/sda2\" => \"ext2\"\n"
12678 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12679 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12680 "\n"
12681 msgstr ""
12682
12683 #. type: textblock
12684 #: ../src/guestfs-actions.pod:3778 ../fish/guestfish-actions.pod:2574
12685 msgid ""
12686 "The value can have the special value \"unknown\", meaning the content of the"
12687 " device is undetermined or empty.  \"swap\" means a Linux swap partition."
12688 msgstr ""
12689
12690 #. type: textblock
12691 #: ../src/guestfs-actions.pod:3782
12692 msgid ""
12693 "This command runs other libguestfs commands, which might include "
12694 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12695 "soon after launch and only when nothing is mounted."
12696 msgstr ""
12697
12698 #. type: textblock
12699 #: ../src/guestfs-actions.pod:3786
12700 msgid ""
12701 "Not all of the filesystems returned will be mountable.  In particular, swap "
12702 "partitions are returned in the list.  Also this command does not check that "
12703 "each filesystem found is valid and mountable, and some filesystems might be "
12704 "mountable but require special options.  Filesystems may not all belong to a "
12705 "single logical operating system (use C<guestfs_inspect_os> to look for "
12706 "OSes)."
12707 msgstr ""
12708
12709 #. type: textblock
12710 #: ../src/guestfs-actions.pod:3800 ../src/guestfs-actions.pod:5569
12711 msgid "(Added in 1.5.15)"
12712 msgstr ""
12713
12714 #. type: =head2
12715 #: ../src/guestfs-actions.pod:3802
12716 msgid "guestfs_list_partitions"
12717 msgstr ""
12718
12719 #. type: verbatim
12720 #: ../src/guestfs-actions.pod:3804
12721 #, no-wrap
12722 msgid ""
12723 " char **\n"
12724 " guestfs_list_partitions (guestfs_h *g);\n"
12725 "\n"
12726 msgstr ""
12727
12728 #. type: textblock
12729 #: ../src/guestfs-actions.pod:3807 ../fish/guestfish-actions.pod:2594
12730 msgid "List all the partitions detected on all block devices."
12731 msgstr ""
12732
12733 #. type: textblock
12734 #: ../src/guestfs-actions.pod:3809 ../fish/guestfish-actions.pod:2596
12735 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12736 msgstr ""
12737
12738 #. type: textblock
12739 #: ../src/guestfs-actions.pod:3811
12740 msgid ""
12741 "This does not return logical volumes.  For that you will need to call "
12742 "C<guestfs_lvs>."
12743 msgstr ""
12744
12745 #. type: =head2
12746 #: ../src/guestfs-actions.pod:3822
12747 msgid "guestfs_ll"
12748 msgstr ""
12749
12750 #. type: verbatim
12751 #: ../src/guestfs-actions.pod:3824
12752 #, no-wrap
12753 msgid ""
12754 " char *\n"
12755 " guestfs_ll (guestfs_h *g,\n"
12756 "             const char *directory);\n"
12757 "\n"
12758 msgstr ""
12759
12760 #. type: textblock
12761 #: ../src/guestfs-actions.pod:3828 ../fish/guestfish-actions.pod:2607
12762 msgid ""
12763 "List the files in C<directory> (relative to the root directory, there is no "
12764 "cwd) in the format of 'ls -la'."
12765 msgstr ""
12766
12767 #. type: textblock
12768 #: ../src/guestfs-actions.pod:3831 ../fish/guestfish-actions.pod:2610
12769 msgid ""
12770 "This command is mostly useful for interactive sessions.  It is I<not> "
12771 "intended that you try to parse the output string."
12772 msgstr ""
12773
12774 #. type: =head2
12775 #: ../src/guestfs-actions.pod:3839
12776 msgid "guestfs_ln"
12777 msgstr ""
12778
12779 #. type: verbatim
12780 #: ../src/guestfs-actions.pod:3841
12781 #, no-wrap
12782 msgid ""
12783 " int\n"
12784 " guestfs_ln (guestfs_h *g,\n"
12785 "             const char *target,\n"
12786 "             const char *linkname);\n"
12787 "\n"
12788 msgstr ""
12789
12790 #. type: textblock
12791 #: ../src/guestfs-actions.pod:3846 ../fish/guestfish-actions.pod:2617
12792 msgid "This command creates a hard link using the C<ln> command."
12793 msgstr ""
12794
12795 #. type: =head2
12796 #: ../src/guestfs-actions.pod:3852
12797 msgid "guestfs_ln_f"
12798 msgstr ""
12799
12800 #. type: verbatim
12801 #: ../src/guestfs-actions.pod:3854
12802 #, no-wrap
12803 msgid ""
12804 " int\n"
12805 " guestfs_ln_f (guestfs_h *g,\n"
12806 "               const char *target,\n"
12807 "               const char *linkname);\n"
12808 "\n"
12809 msgstr ""
12810
12811 #. type: textblock
12812 #: ../src/guestfs-actions.pod:3859 ../fish/guestfish-actions.pod:2623
12813 msgid ""
12814 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12815 "option removes the link (C<linkname>) if it exists already."
12816 msgstr ""
12817
12818 #. type: =head2
12819 #: ../src/guestfs-actions.pod:3866
12820 msgid "guestfs_ln_s"
12821 msgstr ""
12822
12823 #. type: verbatim
12824 #: ../src/guestfs-actions.pod:3868
12825 #, no-wrap
12826 msgid ""
12827 " int\n"
12828 " guestfs_ln_s (guestfs_h *g,\n"
12829 "               const char *target,\n"
12830 "               const char *linkname);\n"
12831 "\n"
12832 msgstr ""
12833
12834 #. type: textblock
12835 #: ../src/guestfs-actions.pod:3873 ../fish/guestfish-actions.pod:2630
12836 msgid "This command creates a symbolic link using the C<ln -s> command."
12837 msgstr ""
12838
12839 #. type: =head2
12840 #: ../src/guestfs-actions.pod:3879
12841 msgid "guestfs_ln_sf"
12842 msgstr ""
12843
12844 #. type: verbatim
12845 #: ../src/guestfs-actions.pod:3881
12846 #, no-wrap
12847 msgid ""
12848 " int\n"
12849 " guestfs_ln_sf (guestfs_h *g,\n"
12850 "                const char *target,\n"
12851 "                const char *linkname);\n"
12852 "\n"
12853 msgstr ""
12854
12855 #. type: textblock
12856 #: ../src/guestfs-actions.pod:3886 ../fish/guestfish-actions.pod:2636
12857 msgid ""
12858 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12859 "option removes the link (C<linkname>) if it exists already."
12860 msgstr ""
12861
12862 #. type: =head2
12863 #: ../src/guestfs-actions.pod:3893
12864 msgid "guestfs_lremovexattr"
12865 msgstr ""
12866
12867 #. type: verbatim
12868 #: ../src/guestfs-actions.pod:3895
12869 #, no-wrap
12870 msgid ""
12871 " int\n"
12872 " guestfs_lremovexattr (guestfs_h *g,\n"
12873 "                       const char *xattr,\n"
12874 "                       const char *path);\n"
12875 "\n"
12876 msgstr ""
12877
12878 #. type: textblock
12879 #: ../src/guestfs-actions.pod:3900
12880 msgid ""
12881 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12882 "link, then it removes an extended attribute of the link itself."
12883 msgstr ""
12884
12885 #. type: =head2
12886 #: ../src/guestfs-actions.pod:3908
12887 msgid "guestfs_ls"
12888 msgstr ""
12889
12890 #. type: verbatim
12891 #: ../src/guestfs-actions.pod:3910
12892 #, no-wrap
12893 msgid ""
12894 " char **\n"
12895 " guestfs_ls (guestfs_h *g,\n"
12896 "             const char *directory);\n"
12897 "\n"
12898 msgstr ""
12899
12900 #. type: textblock
12901 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2651
12902 msgid ""
12903 "List the files in C<directory> (relative to the root directory, there is no "
12904 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
12905 "shown."
12906 msgstr ""
12907
12908 #. type: textblock
12909 #: ../src/guestfs-actions.pod:3918
12910 msgid ""
12911 "This command is mostly useful for interactive sessions.  Programs should "
12912 "probably use C<guestfs_readdir> instead."
12913 msgstr ""
12914
12915 #. type: =head2
12916 #: ../src/guestfs-actions.pod:3927
12917 msgid "guestfs_lsetxattr"
12918 msgstr ""
12919
12920 #. type: verbatim
12921 #: ../src/guestfs-actions.pod:3929
12922 #, no-wrap
12923 msgid ""
12924 " int\n"
12925 " guestfs_lsetxattr (guestfs_h *g,\n"
12926 "                    const char *xattr,\n"
12927 "                    const char *val,\n"
12928 "                    int vallen,\n"
12929 "                    const char *path);\n"
12930 "\n"
12931 msgstr ""
12932
12933 #. type: textblock
12934 #: ../src/guestfs-actions.pod:3936
12935 msgid ""
12936 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12937 "then it sets an extended attribute of the link itself."
12938 msgstr ""
12939
12940 #. type: =head2
12941 #: ../src/guestfs-actions.pod:3944
12942 msgid "guestfs_lstat"
12943 msgstr ""
12944
12945 #. type: verbatim
12946 #: ../src/guestfs-actions.pod:3946
12947 #, no-wrap
12948 msgid ""
12949 " struct guestfs_stat *\n"
12950 " guestfs_lstat (guestfs_h *g,\n"
12951 "                const char *path);\n"
12952 "\n"
12953 msgstr ""
12954
12955 #. type: textblock
12956 #: ../src/guestfs-actions.pod:3950 ../src/guestfs-actions.pod:6721
12957 #: ../fish/guestfish-actions.pod:2670 ../fish/guestfish-actions.pod:4472
12958 msgid "Returns file information for the given C<path>."
12959 msgstr ""
12960
12961 #. type: textblock
12962 #: ../src/guestfs-actions.pod:3952
12963 msgid ""
12964 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12965 "link, then the link is stat-ed, not the file it refers to."
12966 msgstr ""
12967
12968 #. type: textblock
12969 #: ../src/guestfs-actions.pod:3956 ../fish/guestfish-actions.pod:2676
12970 msgid "This is the same as the C<lstat(2)> system call."
12971 msgstr ""
12972
12973 #. type: textblock
12974 #: ../src/guestfs-actions.pod:3958 ../src/guestfs-actions.pod:6725
12975 msgid ""
12976 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12977 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12978 msgstr ""
12979
12980 #. type: textblock
12981 #: ../src/guestfs-actions.pod:3962 ../src/guestfs-actions.pod:6729
12982 #: ../src/guestfs-actions.pod:6747 ../src/guestfs-actions.pod:7128
12983 msgid "(Added in 0.9.2)"
12984 msgstr ""
12985
12986 #. type: =head2
12987 #: ../src/guestfs-actions.pod:3964
12988 msgid "guestfs_lstatlist"
12989 msgstr ""
12990
12991 #. type: verbatim
12992 #: ../src/guestfs-actions.pod:3966
12993 #, no-wrap
12994 msgid ""
12995 " struct guestfs_stat_list *\n"
12996 " guestfs_lstatlist (guestfs_h *g,\n"
12997 "                    const char *path,\n"
12998 "                    char *const *names);\n"
12999 "\n"
13000 msgstr ""
13001
13002 #. type: textblock
13003 #: ../src/guestfs-actions.pod:3971
13004 msgid ""
13005 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
13006 "files, where all files are in the directory C<path>.  C<names> is the list "
13007 "of files from this directory."
13008 msgstr ""
13009
13010 #. type: textblock
13011 #: ../src/guestfs-actions.pod:3975 ../fish/guestfish-actions.pod:2686
13012 msgid ""
13013 "On return you get a list of stat structs, with a one-to-one correspondence "
13014 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
13015 "then the C<ino> field of that structure is set to C<-1>."
13016 msgstr ""
13017
13018 #. type: textblock
13019 #: ../src/guestfs-actions.pod:3980
13020 msgid ""
13021 "This call is intended for programs that want to efficiently list a directory"
13022 " contents without making many round-trips.  See also C<guestfs_lxattrlist> "
13023 "for a similarly efficient call for getting extended attributes.  Very long "
13024 "directory listings might cause the protocol message size to be exceeded, "
13025 "causing this call to fail.  The caller must split up such requests into "
13026 "smaller groups of names."
13027 msgstr ""
13028
13029 #. type: textblock
13030 #: ../src/guestfs-actions.pod:3988
13031 msgid ""
13032 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
13033 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
13034 msgstr ""
13035
13036 #. type: =head2
13037 #: ../src/guestfs-actions.pod:3994
13038 msgid "guestfs_luks_add_key"
13039 msgstr ""
13040
13041 #. type: verbatim
13042 #: ../src/guestfs-actions.pod:3996
13043 #, no-wrap
13044 msgid ""
13045 " int\n"
13046 " guestfs_luks_add_key (guestfs_h *g,\n"
13047 "                       const char *device,\n"
13048 "                       const char *key,\n"
13049 "                       const char *newkey,\n"
13050 "                       int keyslot);\n"
13051 "\n"
13052 msgstr ""
13053
13054 #. type: textblock
13055 #: ../src/guestfs-actions.pod:4003 ../fish/guestfish-actions.pod:2703
13056 msgid ""
13057 "This command adds a new key on LUKS device C<device>.  C<key> is any "
13058 "existing key, and is used to access the device.  C<newkey> is the new key to"
13059 " add.  C<keyslot> is the key slot that will be replaced."
13060 msgstr ""
13061
13062 #. type: textblock
13063 #: ../src/guestfs-actions.pod:4008
13064 msgid ""
13065 "Note that if C<keyslot> already contains a key, then this command will fail."
13066 "  You have to use C<guestfs_luks_kill_slot> first to remove that key."
13067 msgstr ""
13068
13069 #. type: textblock
13070 #: ../src/guestfs-actions.pod:4014 ../src/guestfs-actions.pod:4054
13071 #: ../src/guestfs-actions.pod:4077 ../src/guestfs-actions.pod:4097
13072 #: ../src/guestfs-actions.pod:4132 ../src/guestfs-actions.pod:4151
13073 msgid ""
13074 "This function takes a key or passphrase parameter which could contain "
13075 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
13076 "information."
13077 msgstr ""
13078
13079 #. type: textblock
13080 #: ../src/guestfs-actions.pod:4018 ../src/guestfs-actions.pod:4058
13081 #: ../src/guestfs-actions.pod:4081 ../src/guestfs-actions.pod:4101
13082 msgid "(Added in 1.5.2)"
13083 msgstr ""
13084
13085 #. type: =head2
13086 #: ../src/guestfs-actions.pod:4020
13087 msgid "guestfs_luks_close"
13088 msgstr ""
13089
13090 #. type: verbatim
13091 #: ../src/guestfs-actions.pod:4022
13092 #, no-wrap
13093 msgid ""
13094 " int\n"
13095 " guestfs_luks_close (guestfs_h *g,\n"
13096 "                     const char *device);\n"
13097 "\n"
13098 msgstr ""
13099
13100 #. type: textblock
13101 #: ../src/guestfs-actions.pod:4026
13102 msgid ""
13103 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
13104 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the"
13105 " LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the"
13106 " underlying block device."
13107 msgstr ""
13108
13109 #. type: textblock
13110 #: ../src/guestfs-actions.pod:4034 ../src/guestfs-actions.pod:4136
13111 #: ../src/guestfs-actions.pod:4155 ../src/guestfs-actions.pod:4205
13112 #: ../src/guestfs-actions.pod:4253
13113 msgid "(Added in 1.5.1)"
13114 msgstr ""
13115
13116 #. type: =head2
13117 #: ../src/guestfs-actions.pod:4036
13118 msgid "guestfs_luks_format"
13119 msgstr ""
13120
13121 #. type: verbatim
13122 #: ../src/guestfs-actions.pod:4038
13123 #, no-wrap
13124 msgid ""
13125 " int\n"
13126 " guestfs_luks_format (guestfs_h *g,\n"
13127 "                      const char *device,\n"
13128 "                      const char *key,\n"
13129 "                      int keyslot);\n"
13130 "\n"
13131 msgstr ""
13132
13133 #. type: textblock
13134 #: ../src/guestfs-actions.pod:4044 ../fish/guestfish-actions.pod:2729
13135 msgid ""
13136 "This command erases existing data on C<device> and formats the device as a "
13137 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
13138 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
13139 msgstr ""
13140
13141 #. type: textblock
13142 #: ../src/guestfs-actions.pod:4051 ../src/guestfs-actions.pod:4074
13143 #: ../src/guestfs-actions.pod:4217 ../src/guestfs-actions.pod:5320
13144 #: ../src/guestfs-actions.pod:6102 ../src/guestfs-actions.pod:6528
13145 #: ../src/guestfs-actions.pod:6558 ../src/guestfs-actions.pod:6591
13146 #: ../src/guestfs-actions.pod:7787 ../fish/guestfish-actions.pod:2737
13147 #: ../fish/guestfish-actions.pod:2750 ../fish/guestfish-actions.pod:2837
13148 #: ../fish/guestfish-actions.pod:3498 ../fish/guestfish-actions.pod:4018
13149 #: ../fish/guestfish-actions.pod:4343 ../fish/guestfish-actions.pod:4366
13150 #: ../fish/guestfish-actions.pod:4388 ../fish/guestfish-actions.pod:5126
13151 msgid ""
13152 "B<This command is dangerous.  Without careful use you can easily destroy all"
13153 " your data>."
13154 msgstr ""
13155
13156 #. type: =head2
13157 #: ../src/guestfs-actions.pod:4060
13158 msgid "guestfs_luks_format_cipher"
13159 msgstr ""
13160
13161 #. type: verbatim
13162 #: ../src/guestfs-actions.pod:4062
13163 #, no-wrap
13164 msgid ""
13165 " int\n"
13166 " guestfs_luks_format_cipher (guestfs_h *g,\n"
13167 "                             const char *device,\n"
13168 "                             const char *key,\n"
13169 "                             int keyslot,\n"
13170 "                             const char *cipher);\n"
13171 "\n"
13172 msgstr ""
13173
13174 #. type: textblock
13175 #: ../src/guestfs-actions.pod:4069
13176 msgid ""
13177 "This command is the same as C<guestfs_luks_format> but it also allows you to"
13178 " set the C<cipher> used."
13179 msgstr ""
13180
13181 #. type: =head2
13182 #: ../src/guestfs-actions.pod:4083
13183 msgid "guestfs_luks_kill_slot"
13184 msgstr ""
13185
13186 #. type: verbatim
13187 #: ../src/guestfs-actions.pod:4085
13188 #, no-wrap
13189 msgid ""
13190 " int\n"
13191 " guestfs_luks_kill_slot (guestfs_h *g,\n"
13192 "                         const char *device,\n"
13193 "                         const char *key,\n"
13194 "                         int keyslot);\n"
13195 "\n"
13196 msgstr ""
13197
13198 #. type: textblock
13199 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2757
13200 msgid ""
13201 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
13202 "device C<device>.  C<key> must be one of the I<other> keys."
13203 msgstr ""
13204
13205 #. type: =head2
13206 #: ../src/guestfs-actions.pod:4103
13207 msgid "guestfs_luks_open"
13208 msgstr ""
13209
13210 #. type: verbatim
13211 #: ../src/guestfs-actions.pod:4105
13212 #, no-wrap
13213 msgid ""
13214 " int\n"
13215 " guestfs_luks_open (guestfs_h *g,\n"
13216 "                    const char *device,\n"
13217 "                    const char *key,\n"
13218 "                    const char *mapname);\n"
13219 "\n"
13220 msgstr ""
13221
13222 #. type: textblock
13223 #: ../src/guestfs-actions.pod:4111 ../fish/guestfish-actions.pod:2768
13224 msgid ""
13225 "This command opens a block device which has been encrypted according to the "
13226 "Linux Unified Key Setup (LUKS) standard."
13227 msgstr ""
13228
13229 #. type: textblock
13230 #: ../src/guestfs-actions.pod:4114 ../fish/guestfish-actions.pod:2771
13231 msgid "C<device> is the encrypted block device or partition."
13232 msgstr ""
13233
13234 #. type: textblock
13235 #: ../src/guestfs-actions.pod:4116 ../fish/guestfish-actions.pod:2773
13236 msgid ""
13237 "The caller must supply one of the keys associated with the LUKS block "
13238 "device, in the C<key> parameter."
13239 msgstr ""
13240
13241 #. type: textblock
13242 #: ../src/guestfs-actions.pod:4119 ../fish/guestfish-actions.pod:2776
13243 msgid ""
13244 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
13245 "writes to this block device are decrypted from and encrypted to the "
13246 "underlying C<device> respectively."
13247 msgstr ""
13248
13249 #. type: textblock
13250 #: ../src/guestfs-actions.pod:4123
13251 msgid ""
13252 "If this block device contains LVM volume groups, then calling "
13253 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
13254 "visible."
13255 msgstr ""
13256
13257 #. type: textblock
13258 #: ../src/guestfs-actions.pod:4127
13259 msgid "Use C<guestfs_list_dm_devices> to list all device mapper devices."
13260 msgstr ""
13261
13262 #. type: =head2
13263 #: ../src/guestfs-actions.pod:4138
13264 msgid "guestfs_luks_open_ro"
13265 msgstr ""
13266
13267 #. type: verbatim
13268 #: ../src/guestfs-actions.pod:4140
13269 #, no-wrap
13270 msgid ""
13271 " int\n"
13272 " guestfs_luks_open_ro (guestfs_h *g,\n"
13273 "                       const char *device,\n"
13274 "                       const char *key,\n"
13275 "                       const char *mapname);\n"
13276 "\n"
13277 msgstr ""
13278
13279 #. type: textblock
13280 #: ../src/guestfs-actions.pod:4146
13281 msgid ""
13282 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
13283 "created."
13284 msgstr ""
13285
13286 #. type: =head2
13287 #: ../src/guestfs-actions.pod:4157
13288 msgid "guestfs_lvcreate"
13289 msgstr ""
13290
13291 #. type: verbatim
13292 #: ../src/guestfs-actions.pod:4159
13293 #, no-wrap
13294 msgid ""
13295 " int\n"
13296 " guestfs_lvcreate (guestfs_h *g,\n"
13297 "                   const char *logvol,\n"
13298 "                   const char *volgroup,\n"
13299 "                   int mbytes);\n"
13300 "\n"
13301 msgstr ""
13302
13303 #. type: textblock
13304 #: ../src/guestfs-actions.pod:4165 ../fish/guestfish-actions.pod:2804
13305 msgid ""
13306 "This creates an LVM logical volume called C<logvol> on the volume group "
13307 "C<volgroup>, with C<size> megabytes."
13308 msgstr ""
13309
13310 #. type: =head2
13311 #: ../src/guestfs-actions.pod:4172
13312 msgid "guestfs_lvm_canonical_lv_name"
13313 msgstr ""
13314
13315 #. type: verbatim
13316 #: ../src/guestfs-actions.pod:4174
13317 #, no-wrap
13318 msgid ""
13319 " char *\n"
13320 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
13321 "                                const char *lvname);\n"
13322 "\n"
13323 msgstr ""
13324
13325 #. type: textblock
13326 #: ../src/guestfs-actions.pod:4178 ../fish/guestfish-actions.pod:2811
13327 msgid ""
13328 "This converts alternative naming schemes for LVs that you might find to the "
13329 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
13330 "C</dev/VG/LV>."
13331 msgstr ""
13332
13333 #. type: textblock
13334 #: ../src/guestfs-actions.pod:4182 ../fish/guestfish-actions.pod:2815
13335 msgid ""
13336 "This command returns an error if the C<lvname> parameter does not refer to a"
13337 " logical volume."
13338 msgstr ""
13339
13340 #. type: textblock
13341 #: ../src/guestfs-actions.pod:4185
13342 msgid "See also C<guestfs_is_lv>."
13343 msgstr ""
13344
13345 #. type: textblock
13346 #: ../src/guestfs-actions.pod:4190
13347 msgid "(Added in 1.5.24)"
13348 msgstr ""
13349
13350 #. type: =head2
13351 #: ../src/guestfs-actions.pod:4192
13352 msgid "guestfs_lvm_clear_filter"
13353 msgstr ""
13354
13355 #. type: verbatim
13356 #: ../src/guestfs-actions.pod:4194
13357 #, no-wrap
13358 msgid ""
13359 " int\n"
13360 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
13361 "\n"
13362 msgstr ""
13363
13364 #. type: textblock
13365 #: ../src/guestfs-actions.pod:4197
13366 msgid ""
13367 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
13368 "see every block device."
13369 msgstr ""
13370
13371 #. type: textblock
13372 #: ../src/guestfs-actions.pod:4200 ../src/guestfs-actions.pod:4242
13373 #: ../fish/guestfish-actions.pod:2827 ../fish/guestfish-actions.pod:2858
13374 msgid ""
13375 "This command also clears the LVM cache and performs a volume group scan."
13376 msgstr ""
13377
13378 #. type: =head2
13379 #: ../src/guestfs-actions.pod:4207
13380 msgid "guestfs_lvm_remove_all"
13381 msgstr ""
13382
13383 #. type: verbatim
13384 #: ../src/guestfs-actions.pod:4209
13385 #, no-wrap
13386 msgid ""
13387 " int\n"
13388 " guestfs_lvm_remove_all (guestfs_h *g);\n"
13389 "\n"
13390 msgstr ""
13391
13392 #. type: textblock
13393 #: ../src/guestfs-actions.pod:4212 ../fish/guestfish-actions.pod:2834
13394 msgid ""
13395 "This command removes all LVM logical volumes, volume groups and physical "
13396 "volumes."
13397 msgstr ""
13398
13399 #. type: =head2
13400 #: ../src/guestfs-actions.pod:4222
13401 msgid "guestfs_lvm_set_filter"
13402 msgstr ""
13403
13404 #. type: verbatim
13405 #: ../src/guestfs-actions.pod:4224
13406 #, no-wrap
13407 msgid ""
13408 " int\n"
13409 " guestfs_lvm_set_filter (guestfs_h *g,\n"
13410 "                         char *const *devices);\n"
13411 "\n"
13412 msgstr ""
13413
13414 #. type: textblock
13415 #: ../src/guestfs-actions.pod:4228 ../fish/guestfish-actions.pod:2844
13416 msgid ""
13417 "This sets the LVM device filter so that LVM will only be able to \"see\" the"
13418 " block devices in the list C<devices>, and will ignore all other attached "
13419 "block devices."
13420 msgstr ""
13421
13422 #. type: textblock
13423 #: ../src/guestfs-actions.pod:4232 ../fish/guestfish-actions.pod:2848
13424 msgid ""
13425 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
13426 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also"
13427 " there are two types of duplication possible: either cloned PVs/VGs which "
13428 "have identical UUIDs; or VGs that are not cloned but just happen to have the"
13429 " same name.  In normal operation you cannot create this situation, but you "
13430 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
13431 "inside the LVM metadata."
13432 msgstr ""
13433
13434 #. type: textblock
13435 #: ../src/guestfs-actions.pod:4245 ../fish/guestfish-actions.pod:2861
13436 msgid "You can filter whole block devices or individual partitions."
13437 msgstr ""
13438
13439 #. type: textblock
13440 #: ../src/guestfs-actions.pod:4247 ../fish/guestfish-actions.pod:2863
13441 msgid ""
13442 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
13443 "filesystem), even if you are not filtering out that VG."
13444 msgstr ""
13445
13446 #. type: =head2
13447 #: ../src/guestfs-actions.pod:4255
13448 msgid "guestfs_lvremove"
13449 msgstr ""
13450
13451 #. type: verbatim
13452 #: ../src/guestfs-actions.pod:4257
13453 #, no-wrap
13454 msgid ""
13455 " int\n"
13456 " guestfs_lvremove (guestfs_h *g,\n"
13457 "                   const char *device);\n"
13458 "\n"
13459 msgstr ""
13460
13461 #. type: textblock
13462 #: ../src/guestfs-actions.pod:4261 ../fish/guestfish-actions.pod:2871
13463 msgid ""
13464 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
13465 "LV, such as C</dev/VG/LV>."
13466 msgstr ""
13467
13468 #. type: textblock
13469 #: ../src/guestfs-actions.pod:4264 ../fish/guestfish-actions.pod:2874
13470 msgid ""
13471 "You can also remove all LVs in a volume group by specifying the VG name, "
13472 "C</dev/VG>."
13473 msgstr ""
13474
13475 #. type: textblock
13476 #: ../src/guestfs-actions.pod:4269 ../src/guestfs-actions.pod:5666
13477 #: ../src/guestfs-actions.pod:7498
13478 msgid "(Added in 1.0.13)"
13479 msgstr ""
13480
13481 #. type: =head2
13482 #: ../src/guestfs-actions.pod:4271
13483 msgid "guestfs_lvrename"
13484 msgstr ""
13485
13486 #. type: verbatim
13487 #: ../src/guestfs-actions.pod:4273
13488 #, no-wrap
13489 msgid ""
13490 " int\n"
13491 " guestfs_lvrename (guestfs_h *g,\n"
13492 "                   const char *logvol,\n"
13493 "                   const char *newlogvol);\n"
13494 "\n"
13495 msgstr ""
13496
13497 #. type: textblock
13498 #: ../src/guestfs-actions.pod:4278 ../fish/guestfish-actions.pod:2881
13499 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
13500 msgstr ""
13501
13502 #. type: textblock
13503 #: ../src/guestfs-actions.pod:4282 ../src/guestfs-actions.pod:7511
13504 msgid "(Added in 1.0.83)"
13505 msgstr ""
13506
13507 #. type: =head2
13508 #: ../src/guestfs-actions.pod:4284
13509 msgid "guestfs_lvresize"
13510 msgstr ""
13511
13512 #. type: verbatim
13513 #: ../src/guestfs-actions.pod:4286
13514 #, no-wrap
13515 msgid ""
13516 " int\n"
13517 " guestfs_lvresize (guestfs_h *g,\n"
13518 "                   const char *device,\n"
13519 "                   int mbytes);\n"
13520 "\n"
13521 msgstr ""
13522
13523 #. type: textblock
13524 #: ../src/guestfs-actions.pod:4291 ../fish/guestfish-actions.pod:2887
13525 msgid ""
13526 "This resizes (expands or shrinks) an existing LVM logical volume to "
13527 "C<mbytes>.  When reducing, data in the reduced part is lost."
13528 msgstr ""
13529
13530 #. type: =head2
13531 #: ../src/guestfs-actions.pod:4299
13532 msgid "guestfs_lvresize_free"
13533 msgstr ""
13534
13535 #. type: verbatim
13536 #: ../src/guestfs-actions.pod:4301
13537 #, no-wrap
13538 msgid ""
13539 " int\n"
13540 " guestfs_lvresize_free (guestfs_h *g,\n"
13541 "                        const char *lv,\n"
13542 "                        int percent);\n"
13543 "\n"
13544 msgstr ""
13545
13546 #. type: textblock
13547 #: ../src/guestfs-actions.pod:4306 ../fish/guestfish-actions.pod:2895
13548 msgid ""
13549 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the"
13550 " remaining free space in the volume group.  Commonly you would call this "
13551 "with pc = 100 which expands the logical volume as much as possible, using "
13552 "all remaining free space in the volume group."
13553 msgstr ""
13554
13555 #. type: textblock
13556 #: ../src/guestfs-actions.pod:4314
13557 msgid "(Added in 1.3.3)"
13558 msgstr ""
13559
13560 #. type: =head2
13561 #: ../src/guestfs-actions.pod:4316
13562 msgid "guestfs_lvs"
13563 msgstr ""
13564
13565 #. type: verbatim
13566 #: ../src/guestfs-actions.pod:4318
13567 #, no-wrap
13568 msgid ""
13569 " char **\n"
13570 " guestfs_lvs (guestfs_h *g);\n"
13571 "\n"
13572 msgstr ""
13573
13574 #. type: textblock
13575 #: ../src/guestfs-actions.pod:4321 ../fish/guestfish-actions.pod:2905
13576 msgid ""
13577 "List all the logical volumes detected.  This is the equivalent of the "
13578 "L<lvs(8)> command."
13579 msgstr ""
13580
13581 #. type: textblock
13582 #: ../src/guestfs-actions.pod:4324 ../fish/guestfish-actions.pod:2908
13583 msgid ""
13584 "This returns a list of the logical volume device names (eg. "
13585 "C</dev/VolGroup00/LogVol00>)."
13586 msgstr ""
13587
13588 #. type: textblock
13589 #: ../src/guestfs-actions.pod:4327
13590 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
13591 msgstr ""
13592
13593 #. type: =head2
13594 #: ../src/guestfs-actions.pod:4335
13595 msgid "guestfs_lvs_full"
13596 msgstr ""
13597
13598 #. type: verbatim
13599 #: ../src/guestfs-actions.pod:4337
13600 #, no-wrap
13601 msgid ""
13602 " struct guestfs_lvm_lv_list *\n"
13603 " guestfs_lvs_full (guestfs_h *g);\n"
13604 "\n"
13605 msgstr ""
13606
13607 #. type: textblock
13608 #: ../src/guestfs-actions.pod:4340 ../fish/guestfish-actions.pod:2917
13609 msgid ""
13610 "List all the logical volumes detected.  This is the equivalent of the "
13611 "L<lvs(8)> command.  The \"full\" version includes all fields."
13612 msgstr ""
13613
13614 #. type: textblock
13615 #: ../src/guestfs-actions.pod:4343
13616 msgid ""
13617 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
13618 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
13619 "use>."
13620 msgstr ""
13621
13622 #. type: =head2
13623 #: ../src/guestfs-actions.pod:4349
13624 msgid "guestfs_lvuuid"
13625 msgstr ""
13626
13627 #. type: verbatim
13628 #: ../src/guestfs-actions.pod:4351
13629 #, no-wrap
13630 msgid ""
13631 " char *\n"
13632 " guestfs_lvuuid (guestfs_h *g,\n"
13633 "                 const char *device);\n"
13634 "\n"
13635 msgstr ""
13636
13637 #. type: textblock
13638 #: ../src/guestfs-actions.pod:4355 ../fish/guestfish-actions.pod:2924
13639 msgid "This command returns the UUID of the LVM LV C<device>."
13640 msgstr ""
13641
13642 #. type: =head2
13643 #: ../src/guestfs-actions.pod:4362
13644 msgid "guestfs_lxattrlist"
13645 msgstr ""
13646
13647 #. type: verbatim
13648 #: ../src/guestfs-actions.pod:4364
13649 #, no-wrap
13650 msgid ""
13651 " struct guestfs_xattr_list *\n"
13652 " guestfs_lxattrlist (guestfs_h *g,\n"
13653 "                     const char *path,\n"
13654 "                     char *const *names);\n"
13655 "\n"
13656 msgstr ""
13657
13658 #. type: textblock
13659 #: ../src/guestfs-actions.pod:4369 ../fish/guestfish-actions.pod:2930
13660 msgid ""
13661 "This call allows you to get the extended attributes of multiple files, where"
13662 " all files are in the directory C<path>.  C<names> is the list of files from"
13663 " this directory."
13664 msgstr ""
13665
13666 #. type: textblock
13667 #: ../src/guestfs-actions.pod:4373 ../fish/guestfish-actions.pod:2934
13668 msgid ""
13669 "On return you get a flat list of xattr structs which must be interpreted "
13670 "sequentially.  The first xattr struct always has a zero-length C<attrname>."
13671 "  C<attrval> in this struct is zero-length to indicate there was an error "
13672 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13673 "number (the number of following attributes for this file, which could be "
13674 "C<\"0\">).  Then after the first xattr struct are the zero or more "
13675 "attributes for the first named file.  This repeats for the second and "
13676 "subsequent files."
13677 msgstr ""
13678
13679 #. type: textblock
13680 #: ../src/guestfs-actions.pod:4383
13681 msgid ""
13682 "This call is intended for programs that want to efficiently list a directory"
13683 " contents without making many round-trips.  See also C<guestfs_lstatlist> "
13684 "for a similarly efficient call for getting standard stats.  Very long "
13685 "directory listings might cause the protocol message size to be exceeded, "
13686 "causing this call to fail.  The caller must split up such requests into "
13687 "smaller groups of names."
13688 msgstr ""
13689
13690 #. type: =head2
13691 #: ../src/guestfs-actions.pod:4397
13692 msgid "guestfs_mkdir"
13693 msgstr ""
13694
13695 #. type: verbatim
13696 #: ../src/guestfs-actions.pod:4399
13697 #, no-wrap
13698 msgid ""
13699 " int\n"
13700 " guestfs_mkdir (guestfs_h *g,\n"
13701 "                const char *path);\n"
13702 "\n"
13703 msgstr ""
13704
13705 #. type: textblock
13706 #: ../src/guestfs-actions.pod:4403 ../fish/guestfish-actions.pod:2956
13707 msgid "Create a directory named C<path>."
13708 msgstr ""
13709
13710 #. type: =head2
13711 #: ../src/guestfs-actions.pod:4409
13712 msgid "guestfs_mkdir_mode"
13713 msgstr ""
13714
13715 #. type: verbatim
13716 #: ../src/guestfs-actions.pod:4411
13717 #, no-wrap
13718 msgid ""
13719 " int\n"
13720 " guestfs_mkdir_mode (guestfs_h *g,\n"
13721 "                     const char *path,\n"
13722 "                     int mode);\n"
13723 "\n"
13724 msgstr ""
13725
13726 #. type: textblock
13727 #: ../src/guestfs-actions.pod:4416 ../fish/guestfish-actions.pod:2962
13728 msgid ""
13729 "This command creates a directory, setting the initial permissions of the "
13730 "directory to C<mode>."
13731 msgstr ""
13732
13733 #. type: textblock
13734 #: ../src/guestfs-actions.pod:4419 ../fish/guestfish-actions.pod:2965
13735 msgid ""
13736 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13737 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13738 "other ways."
13739 msgstr ""
13740
13741 #. type: textblock
13742 #: ../src/guestfs-actions.pod:4423
13743 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13744 msgstr ""
13745
13746 #. type: =head2
13747 #: ../src/guestfs-actions.pod:4429
13748 msgid "guestfs_mkdir_p"
13749 msgstr ""
13750
13751 #. type: verbatim
13752 #: ../src/guestfs-actions.pod:4431
13753 #, no-wrap
13754 msgid ""
13755 " int\n"
13756 " guestfs_mkdir_p (guestfs_h *g,\n"
13757 "                  const char *path);\n"
13758 "\n"
13759 msgstr ""
13760
13761 #. type: textblock
13762 #: ../src/guestfs-actions.pod:4435 ../fish/guestfish-actions.pod:2975
13763 msgid ""
13764 "Create a directory named C<path>, creating any parent directories as "
13765 "necessary.  This is like the C<mkdir -p> shell command."
13766 msgstr ""
13767
13768 #. type: =head2
13769 #: ../src/guestfs-actions.pod:4442
13770 msgid "guestfs_mkdtemp"
13771 msgstr ""
13772
13773 #. type: verbatim
13774 #: ../src/guestfs-actions.pod:4444
13775 #, no-wrap
13776 msgid ""
13777 " char *\n"
13778 " guestfs_mkdtemp (guestfs_h *g,\n"
13779 "                  const char *template);\n"
13780 "\n"
13781 msgstr ""
13782
13783 #. type: textblock
13784 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:2982
13785 msgid ""
13786 "This command creates a temporary directory.  The C<template> parameter "
13787 "should be a full pathname for the temporary directory name with the final "
13788 "six characters being \"XXXXXX\"."
13789 msgstr ""
13790
13791 #. type: textblock
13792 #: ../src/guestfs-actions.pod:4453 ../fish/guestfish-actions.pod:2987
13793 msgid ""
13794 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one"
13795 " being suitable for Windows filesystems."
13796 msgstr ""
13797
13798 #. type: textblock
13799 #: ../src/guestfs-actions.pod:4456 ../fish/guestfish-actions.pod:2990
13800 msgid "The name of the temporary directory that was created is returned."
13801 msgstr ""
13802
13803 #. type: textblock
13804 #: ../src/guestfs-actions.pod:4459 ../fish/guestfish-actions.pod:2993
13805 msgid ""
13806 "The temporary directory is created with mode 0700 and is owned by root."
13807 msgstr ""
13808
13809 #. type: textblock
13810 #: ../src/guestfs-actions.pod:4462 ../fish/guestfish-actions.pod:2996
13811 msgid ""
13812 "The caller is responsible for deleting the temporary directory and its "
13813 "contents after use."
13814 msgstr ""
13815
13816 #. type: textblock
13817 #: ../src/guestfs-actions.pod:4465 ../fish/guestfish-actions.pod:2999
13818 msgid "See also: L<mkdtemp(3)>"
13819 msgstr ""
13820
13821 #. type: =head2
13822 #: ../src/guestfs-actions.pod:4472
13823 msgid "guestfs_mke2fs_J"
13824 msgstr ""
13825
13826 #. type: verbatim
13827 #: ../src/guestfs-actions.pod:4474
13828 #, no-wrap
13829 msgid ""
13830 " int\n"
13831 " guestfs_mke2fs_J (guestfs_h *g,\n"
13832 "                   const char *fstype,\n"
13833 "                   int blocksize,\n"
13834 "                   const char *device,\n"
13835 "                   const char *journal);\n"
13836 "\n"
13837 msgstr ""
13838
13839 #. type: textblock
13840 #: ../src/guestfs-actions.pod:4481 ../fish/guestfish-actions.pod:3005
13841 msgid ""
13842 "This creates an ext2/3/4 filesystem on C<device> with an external journal on"
13843 " C<journal>.  It is equivalent to the command:"
13844 msgstr ""
13845
13846 #. type: verbatim
13847 #: ../src/guestfs-actions.pod:4485 ../fish/guestfish-actions.pod:3009
13848 #, no-wrap
13849 msgid ""
13850 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13851 "\n"
13852 msgstr ""
13853
13854 #. type: textblock
13855 #: ../src/guestfs-actions.pod:4487
13856 msgid "See also C<guestfs_mke2journal>."
13857 msgstr ""
13858
13859 #. type: textblock
13860 #: ../src/guestfs-actions.pod:4491 ../src/guestfs-actions.pod:4509
13861 #: ../src/guestfs-actions.pod:4527 ../src/guestfs-actions.pod:4543
13862 #: ../src/guestfs-actions.pod:4557 ../src/guestfs-actions.pod:4571
13863 #: ../src/guestfs-actions.pod:4630 ../src/guestfs-actions.pod:4907
13864 msgid "(Added in 1.0.68)"
13865 msgstr ""
13866
13867 #. type: =head2
13868 #: ../src/guestfs-actions.pod:4493
13869 msgid "guestfs_mke2fs_JL"
13870 msgstr ""
13871
13872 #. type: verbatim
13873 #: ../src/guestfs-actions.pod:4495
13874 #, no-wrap
13875 msgid ""
13876 " int\n"
13877 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13878 "                    const char *fstype,\n"
13879 "                    int blocksize,\n"
13880 "                    const char *device,\n"
13881 "                    const char *label);\n"
13882 "\n"
13883 msgstr ""
13884
13885 #. type: textblock
13886 #: ../src/guestfs-actions.pod:4502 ../fish/guestfish-actions.pod:3017
13887 msgid ""
13888 "This creates an ext2/3/4 filesystem on C<device> with an external journal on"
13889 " the journal labeled C<label>."
13890 msgstr ""
13891
13892 #. type: textblock
13893 #: ../src/guestfs-actions.pod:4505
13894 msgid "See also C<guestfs_mke2journal_L>."
13895 msgstr ""
13896
13897 #. type: =head2
13898 #: ../src/guestfs-actions.pod:4511
13899 msgid "guestfs_mke2fs_JU"
13900 msgstr ""
13901
13902 #. type: verbatim
13903 #: ../src/guestfs-actions.pod:4513
13904 #, no-wrap
13905 msgid ""
13906 " int\n"
13907 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13908 "                    const char *fstype,\n"
13909 "                    int blocksize,\n"
13910 "                    const char *device,\n"
13911 "                    const char *uuid);\n"
13912 "\n"
13913 msgstr ""
13914
13915 #. type: textblock
13916 #: ../src/guestfs-actions.pod:4520 ../fish/guestfish-actions.pod:3026
13917 msgid ""
13918 "This creates an ext2/3/4 filesystem on C<device> with an external journal on"
13919 " the journal with UUID C<uuid>."
13920 msgstr ""
13921
13922 #. type: textblock
13923 #: ../src/guestfs-actions.pod:4523
13924 msgid "See also C<guestfs_mke2journal_U>."
13925 msgstr ""
13926
13927 #. type: =head2
13928 #: ../src/guestfs-actions.pod:4529
13929 msgid "guestfs_mke2journal"
13930 msgstr ""
13931
13932 #. type: verbatim
13933 #: ../src/guestfs-actions.pod:4531
13934 #, no-wrap
13935 msgid ""
13936 " int\n"
13937 " guestfs_mke2journal (guestfs_h *g,\n"
13938 "                      int blocksize,\n"
13939 "                      const char *device);\n"
13940 "\n"
13941 msgstr ""
13942
13943 #. type: textblock
13944 #: ../src/guestfs-actions.pod:4536 ../fish/guestfish-actions.pod:3035
13945 msgid ""
13946 "This creates an ext2 external journal on C<device>.  It is equivalent to the"
13947 " command:"
13948 msgstr ""
13949
13950 #. type: verbatim
13951 #: ../src/guestfs-actions.pod:4539 ../fish/guestfish-actions.pod:3038
13952 #, no-wrap
13953 msgid ""
13954 " mke2fs -O journal_dev -b blocksize device\n"
13955 "\n"
13956 msgstr ""
13957
13958 #. type: =head2
13959 #: ../src/guestfs-actions.pod:4545
13960 msgid "guestfs_mke2journal_L"
13961 msgstr ""
13962
13963 #. type: verbatim
13964 #: ../src/guestfs-actions.pod:4547
13965 #, no-wrap
13966 msgid ""
13967 " int\n"
13968 " guestfs_mke2journal_L (guestfs_h *g,\n"
13969 "                        int blocksize,\n"
13970 "                        const char *label,\n"
13971 "                        const char *device);\n"
13972 "\n"
13973 msgstr ""
13974
13975 #. type: textblock
13976 #: ../src/guestfs-actions.pod:4553 ../fish/guestfish-actions.pod:3044
13977 msgid ""
13978 "This creates an ext2 external journal on C<device> with label C<label>."
13979 msgstr ""
13980
13981 #. type: =head2
13982 #: ../src/guestfs-actions.pod:4559
13983 msgid "guestfs_mke2journal_U"
13984 msgstr ""
13985
13986 #. type: verbatim
13987 #: ../src/guestfs-actions.pod:4561
13988 #, no-wrap
13989 msgid ""
13990 " int\n"
13991 " guestfs_mke2journal_U (guestfs_h *g,\n"
13992 "                        int blocksize,\n"
13993 "                        const char *uuid,\n"
13994 "                        const char *device);\n"
13995 "\n"
13996 msgstr ""
13997
13998 #. type: textblock
13999 #: ../src/guestfs-actions.pod:4567 ../fish/guestfish-actions.pod:3050
14000 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
14001 msgstr ""
14002
14003 #. type: =head2
14004 #: ../src/guestfs-actions.pod:4573
14005 msgid "guestfs_mkfifo"
14006 msgstr ""
14007
14008 #. type: verbatim
14009 #: ../src/guestfs-actions.pod:4575
14010 #, no-wrap
14011 msgid ""
14012 " int\n"
14013 " guestfs_mkfifo (guestfs_h *g,\n"
14014 "                 int mode,\n"
14015 "                 const char *path);\n"
14016 "\n"
14017 msgstr ""
14018
14019 #. type: textblock
14020 #: ../src/guestfs-actions.pod:4580
14021 msgid ""
14022 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
14023 "is just a convenient wrapper around C<guestfs_mknod>."
14024 msgstr ""
14025
14026 #. type: =head2
14027 #: ../src/guestfs-actions.pod:4590
14028 msgid "guestfs_mkfs"
14029 msgstr ""
14030
14031 #. type: verbatim
14032 #: ../src/guestfs-actions.pod:4592
14033 #, no-wrap
14034 msgid ""
14035 " int\n"
14036 " guestfs_mkfs (guestfs_h *g,\n"
14037 "               const char *fstype,\n"
14038 "               const char *device);\n"
14039 "\n"
14040 msgstr ""
14041
14042 #. type: textblock
14043 #: ../src/guestfs-actions.pod:4597 ../fish/guestfish-actions.pod:3066
14044 msgid ""
14045 "This creates a filesystem on C<device> (usually a partition or LVM logical "
14046 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
14047 msgstr ""
14048
14049 #. type: =head2
14050 #: ../src/guestfs-actions.pod:4605
14051 msgid "guestfs_mkfs_b"
14052 msgstr ""
14053
14054 #. type: verbatim
14055 #: ../src/guestfs-actions.pod:4607
14056 #, no-wrap
14057 msgid ""
14058 " int\n"
14059 " guestfs_mkfs_b (guestfs_h *g,\n"
14060 "                 const char *fstype,\n"
14061 "                 int blocksize,\n"
14062 "                 const char *device);\n"
14063 "\n"
14064 msgstr ""
14065
14066 #. type: textblock
14067 #: ../src/guestfs-actions.pod:4613
14068 msgid ""
14069 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
14070 "block size of the resulting filesystem.  Supported block sizes depend on the"
14071 " filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
14072 msgstr ""
14073
14074 #. type: textblock
14075 #: ../src/guestfs-actions.pod:4618 ../src/guestfs-actions.pod:4663
14076 #: ../fish/guestfish-actions.pod:3079 ../fish/guestfish-actions.pod:3106
14077 msgid ""
14078 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
14079 "cluster size."
14080 msgstr ""
14081
14082 #. type: textblock
14083 #: ../src/guestfs-actions.pod:4623 ../fish/guestfish-actions.pod:3082
14084 msgid ""
14085 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
14086 "instead."
14087 msgstr ""
14088
14089 #. type: =head2
14090 #: ../src/guestfs-actions.pod:4632
14091 msgid "guestfs_mkfs_opts"
14092 msgstr ""
14093
14094 #. type: verbatim
14095 #: ../src/guestfs-actions.pod:4634
14096 #, no-wrap
14097 msgid ""
14098 " int\n"
14099 " guestfs_mkfs_opts (guestfs_h *g,\n"
14100 "                    const char *fstype,\n"
14101 "                    const char *device,\n"
14102 "                    ...);\n"
14103 "\n"
14104 msgstr ""
14105
14106 #. type: verbatim
14107 #: ../src/guestfs-actions.pod:4645
14108 #, no-wrap
14109 msgid ""
14110 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
14111 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
14112 " GUESTFS_MKFS_OPTS_INODE, int inode,\n"
14113 " GUESTFS_MKFS_OPTS_SECTORSIZE, int sectorsize,\n"
14114 "\n"
14115 msgstr ""
14116
14117 #. type: textblock
14118 #: ../src/guestfs-actions.pod:4650 ../fish/guestfish-actions.pod:3093
14119 msgid ""
14120 "This function creates a filesystem on C<device>.  The filesystem type is "
14121 "C<fstype>, for example C<ext3>."
14122 msgstr ""
14123
14124 #. type: =item
14125 #: ../src/guestfs-actions.pod:4657 ../fish/guestfish-actions.pod:3100
14126 msgid "C<blocksize>"
14127 msgstr ""
14128
14129 #. type: textblock
14130 #: ../src/guestfs-actions.pod:4659 ../fish/guestfish-actions.pod:3102
14131 msgid ""
14132 "The filesystem block size.  Supported block sizes depend on the filesystem "
14133 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
14134 "filesystems."
14135 msgstr ""
14136
14137 #. type: textblock
14138 #: ../src/guestfs-actions.pod:4666 ../fish/guestfish-actions.pod:3109
14139 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
14140 msgstr ""
14141
14142 #. type: =item
14143 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3111
14144 msgid "C<features>"
14145 msgstr ""
14146
14147 #. type: textblock
14148 #: ../src/guestfs-actions.pod:4670 ../fish/guestfish-actions.pod:3113
14149 msgid "This passes the I<-O> parameter to the external mkfs program."
14150 msgstr ""
14151
14152 #. type: textblock
14153 #: ../src/guestfs-actions.pod:4672 ../fish/guestfish-actions.pod:3115
14154 msgid ""
14155 "For certain filesystem types, this allows extra filesystem features to be "
14156 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
14157 msgstr ""
14158
14159 #. type: textblock
14160 #: ../src/guestfs-actions.pod:4676 ../fish/guestfish-actions.pod:3119
14161 msgid ""
14162 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem"
14163 " type."
14164 msgstr ""
14165
14166 #. type: =item
14167 #: ../src/guestfs-actions.pod:4679 ../fish/guestfish-actions.pod:3122
14168 msgid "C<inode>"
14169 msgstr ""
14170
14171 #. type: textblock
14172 #: ../src/guestfs-actions.pod:4681 ../fish/guestfish-actions.pod:3124
14173 msgid ""
14174 "This passes the I<-I> parameter to the external L<mke2fs(8)> program which "
14175 "sets the inode size (only for ext2/3/4 filesystems at present)."
14176 msgstr ""
14177
14178 #. type: =item
14179 #: ../src/guestfs-actions.pod:4684 ../fish/guestfish-actions.pod:3127
14180 msgid "C<sectorsize>"
14181 msgstr ""
14182
14183 #. type: textblock
14184 #: ../src/guestfs-actions.pod:4686 ../fish/guestfish-actions.pod:3129
14185 msgid ""
14186 "This passes the I<-S> parameter to external L<mkfs.ufs(8)> program, which "
14187 "sets sector size for ufs filesystem."
14188 msgstr ""
14189
14190 #. type: textblock
14191 #: ../src/guestfs-actions.pod:4693
14192 msgid "(Added in 1.7.19)"
14193 msgstr ""
14194
14195 #. type: =head2
14196 #: ../src/guestfs-actions.pod:4695
14197 msgid "guestfs_mkfs_opts_va"
14198 msgstr ""
14199
14200 #. type: verbatim
14201 #: ../src/guestfs-actions.pod:4697
14202 #, no-wrap
14203 msgid ""
14204 " int\n"
14205 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
14206 "                       const char *fstype,\n"
14207 "                       const char *device,\n"
14208 "                       va_list args);\n"
14209 "\n"
14210 msgstr ""
14211
14212 #. type: textblock
14213 #: ../src/guestfs-actions.pod:4703
14214 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
14215 msgstr ""
14216
14217 #. type: =head2
14218 #: ../src/guestfs-actions.pod:4707
14219 msgid "guestfs_mkfs_opts_argv"
14220 msgstr ""
14221
14222 #. type: verbatim
14223 #: ../src/guestfs-actions.pod:4709
14224 #, no-wrap
14225 msgid ""
14226 " int\n"
14227 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
14228 "                         const char *fstype,\n"
14229 "                         const char *device,\n"
14230 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
14231 "\n"
14232 msgstr ""
14233
14234 #. type: textblock
14235 #: ../src/guestfs-actions.pod:4715
14236 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
14237 msgstr ""
14238
14239 #. type: =head2
14240 #: ../src/guestfs-actions.pod:4719
14241 msgid "guestfs_mkmountpoint"
14242 msgstr ""
14243
14244 #. type: verbatim
14245 #: ../src/guestfs-actions.pod:4721
14246 #, no-wrap
14247 msgid ""
14248 " int\n"
14249 " guestfs_mkmountpoint (guestfs_h *g,\n"
14250 "                       const char *exemptpath);\n"
14251 "\n"
14252 msgstr ""
14253
14254 #. type: textblock
14255 #: ../src/guestfs-actions.pod:4725
14256 msgid ""
14257 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
14258 "that can be used to create extra mountpoints before mounting the first "
14259 "filesystem."
14260 msgstr ""
14261
14262 #. type: textblock
14263 #: ../src/guestfs-actions.pod:4729 ../fish/guestfish-actions.pod:3144
14264 msgid ""
14265 "These calls are I<only> necessary in some very limited circumstances, mainly"
14266 " the case where you want to mount a mix of unrelated and/or read-only "
14267 "filesystems together."
14268 msgstr ""
14269
14270 #. type: textblock
14271 #: ../src/guestfs-actions.pod:4733 ../fish/guestfish-actions.pod:3148
14272 msgid ""
14273 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
14274 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
14275 "inside that.  You can unpack this as follows in guestfish:"
14276 msgstr ""
14277
14278 #. type: verbatim
14279 #: ../src/guestfs-actions.pod:4738 ../fish/guestfish-actions.pod:3153
14280 #, no-wrap
14281 msgid ""
14282 " add-ro Fedora-11-i686-Live.iso\n"
14283 " run\n"
14284 " mkmountpoint /cd\n"
14285 " mkmountpoint /sqsh\n"
14286 " mkmountpoint /ext3fs\n"
14287 " mount /dev/sda /cd\n"
14288 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
14289 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
14290 "\n"
14291 msgstr ""
14292
14293 #. type: textblock
14294 #: ../src/guestfs-actions.pod:4747 ../fish/guestfish-actions.pod:3162
14295 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
14296 msgstr ""
14297
14298 #. type: textblock
14299 #: ../src/guestfs-actions.pod:4749
14300 msgid ""
14301 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
14302 "may get unexpected errors if you try to mix these calls.  It is safest to "
14303 "manually unmount filesystems and remove mountpoints after use."
14304 msgstr ""
14305
14306 #. type: textblock
14307 #: ../src/guestfs-actions.pod:4753
14308 msgid ""
14309 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
14310 "first, so for this to work for manual mountpoints, you must ensure that the "
14311 "innermost mountpoints have the longest pathnames, as in the example code "
14312 "above."
14313 msgstr ""
14314
14315 #. type: textblock
14316 #: ../src/guestfs-actions.pod:4758 ../fish/guestfish-actions.pod:3173
14317 msgid ""
14318 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
14319 msgstr ""
14320
14321 #. type: textblock
14322 #: ../src/guestfs-actions.pod:4760
14323 msgid ""
14324 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
14325 "can cause C<guestfs_umount_all> to be called when the handle is closed which"
14326 " can also trigger these issues."
14327 msgstr ""
14328
14329 #. type: textblock
14330 #: ../src/guestfs-actions.pod:4766 ../src/guestfs-actions.pod:5082
14331 #: ../src/guestfs-actions.pod:6086
14332 msgid "(Added in 1.0.62)"
14333 msgstr ""
14334
14335 #. type: =head2
14336 #: ../src/guestfs-actions.pod:4768
14337 msgid "guestfs_mknod"
14338 msgstr ""
14339
14340 #. type: verbatim
14341 #: ../src/guestfs-actions.pod:4770
14342 #, no-wrap
14343 msgid ""
14344 " int\n"
14345 " guestfs_mknod (guestfs_h *g,\n"
14346 "                int mode,\n"
14347 "                int devmajor,\n"
14348 "                int devminor,\n"
14349 "                const char *path);\n"
14350 "\n"
14351 msgstr ""
14352
14353 #. type: textblock
14354 #: ../src/guestfs-actions.pod:4777 ../fish/guestfish-actions.pod:3183
14355 msgid ""
14356 "This call creates block or character special devices, or named pipes "
14357 "(FIFOs)."
14358 msgstr ""
14359
14360 #. type: textblock
14361 #: ../src/guestfs-actions.pod:4780 ../fish/guestfish-actions.pod:3186
14362 msgid ""
14363 "The C<mode> parameter should be the mode, using the standard constants.  "
14364 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
14365 "used when creating block and character special devices."
14366 msgstr ""
14367
14368 #. type: textblock
14369 #: ../src/guestfs-actions.pod:4785
14370 msgid ""
14371 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
14372 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
14373 "regular file).  These constants are available in the standard Linux header "
14374 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
14375 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in"
14376 " the appropriate constant for you."
14377 msgstr ""
14378
14379 #. type: =head2
14380 #: ../src/guestfs-actions.pod:4799
14381 msgid "guestfs_mknod_b"
14382 msgstr ""
14383
14384 #. type: verbatim
14385 #: ../src/guestfs-actions.pod:4801
14386 #, no-wrap
14387 msgid ""
14388 " int\n"
14389 " guestfs_mknod_b (guestfs_h *g,\n"
14390 "                  int mode,\n"
14391 "                  int devmajor,\n"
14392 "                  int devminor,\n"
14393 "                  const char *path);\n"
14394 "\n"
14395 msgstr ""
14396
14397 #. type: textblock
14398 #: ../src/guestfs-actions.pod:4808
14399 msgid ""
14400 "This call creates a block device node called C<path> with mode C<mode> and "
14401 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14402 "wrapper around C<guestfs_mknod>."
14403 msgstr ""
14404
14405 #. type: =head2
14406 #: ../src/guestfs-actions.pod:4818
14407 msgid "guestfs_mknod_c"
14408 msgstr ""
14409
14410 #. type: verbatim
14411 #: ../src/guestfs-actions.pod:4820
14412 #, no-wrap
14413 msgid ""
14414 " int\n"
14415 " guestfs_mknod_c (guestfs_h *g,\n"
14416 "                  int mode,\n"
14417 "                  int devmajor,\n"
14418 "                  int devminor,\n"
14419 "                  const char *path);\n"
14420 "\n"
14421 msgstr ""
14422
14423 #. type: textblock
14424 #: ../src/guestfs-actions.pod:4827
14425 msgid ""
14426 "This call creates a char device node called C<path> with mode C<mode> and "
14427 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14428 "wrapper around C<guestfs_mknod>."
14429 msgstr ""
14430
14431 #. type: =head2
14432 #: ../src/guestfs-actions.pod:4837
14433 msgid "guestfs_mkswap"
14434 msgstr ""
14435
14436 #. type: verbatim
14437 #: ../src/guestfs-actions.pod:4839
14438 #, no-wrap
14439 msgid ""
14440 " int\n"
14441 " guestfs_mkswap (guestfs_h *g,\n"
14442 "                 const char *device);\n"
14443 "\n"
14444 msgstr ""
14445
14446 #. type: textblock
14447 #: ../src/guestfs-actions.pod:4843 ../fish/guestfish-actions.pod:3225
14448 msgid "Create a swap partition on C<device>."
14449 msgstr ""
14450
14451 #. type: =head2
14452 #: ../src/guestfs-actions.pod:4849
14453 msgid "guestfs_mkswap_L"
14454 msgstr ""
14455
14456 #. type: verbatim
14457 #: ../src/guestfs-actions.pod:4851
14458 #, no-wrap
14459 msgid ""
14460 " int\n"
14461 " guestfs_mkswap_L (guestfs_h *g,\n"
14462 "                   const char *label,\n"
14463 "                   const char *device);\n"
14464 "\n"
14465 msgstr ""
14466
14467 #. type: textblock
14468 #: ../src/guestfs-actions.pod:4856 ../fish/guestfish-actions.pod:3231
14469 msgid "Create a swap partition on C<device> with label C<label>."
14470 msgstr ""
14471
14472 #. type: textblock
14473 #: ../src/guestfs-actions.pod:4858 ../fish/guestfish-actions.pod:3233
14474 msgid ""
14475 "Note that you cannot attach a swap label to a block device (eg. "
14476 "C</dev/sda>), just to a partition.  This appears to be a limitation of the "
14477 "kernel or swap tools."
14478 msgstr ""
14479
14480 #. type: =head2
14481 #: ../src/guestfs-actions.pod:4866
14482 msgid "guestfs_mkswap_U"
14483 msgstr ""
14484
14485 #. type: verbatim
14486 #: ../src/guestfs-actions.pod:4868
14487 #, no-wrap
14488 msgid ""
14489 " int\n"
14490 " guestfs_mkswap_U (guestfs_h *g,\n"
14491 "                   const char *uuid,\n"
14492 "                   const char *device);\n"
14493 "\n"
14494 msgstr ""
14495
14496 #. type: textblock
14497 #: ../src/guestfs-actions.pod:4873 ../fish/guestfish-actions.pod:3241
14498 msgid "Create a swap partition on C<device> with UUID C<uuid>."
14499 msgstr ""
14500
14501 #. type: =head2
14502 #: ../src/guestfs-actions.pod:4879
14503 msgid "guestfs_mkswap_file"
14504 msgstr ""
14505
14506 #. type: verbatim
14507 #: ../src/guestfs-actions.pod:4881
14508 #, no-wrap
14509 msgid ""
14510 " int\n"
14511 " guestfs_mkswap_file (guestfs_h *g,\n"
14512 "                      const char *path);\n"
14513 "\n"
14514 msgstr ""
14515
14516 #. type: textblock
14517 #: ../src/guestfs-actions.pod:4885 ../fish/guestfish-actions.pod:3247
14518 msgid "Create a swap file."
14519 msgstr ""
14520
14521 #. type: textblock
14522 #: ../src/guestfs-actions.pod:4887
14523 msgid ""
14524 "This command just writes a swap file signature to an existing file.  To "
14525 "create the file itself, use something like C<guestfs_fallocate>."
14526 msgstr ""
14527
14528 #. type: =head2
14529 #: ../src/guestfs-actions.pod:4894
14530 msgid "guestfs_modprobe"
14531 msgstr ""
14532
14533 #. type: verbatim
14534 #: ../src/guestfs-actions.pod:4896
14535 #, no-wrap
14536 msgid ""
14537 " int\n"
14538 " guestfs_modprobe (guestfs_h *g,\n"
14539 "                   const char *modulename);\n"
14540 "\n"
14541 msgstr ""
14542
14543 #. type: textblock
14544 #: ../src/guestfs-actions.pod:4900 ../fish/guestfish-actions.pod:3256
14545 msgid "This loads a kernel module in the appliance."
14546 msgstr ""
14547
14548 #. type: textblock
14549 #: ../src/guestfs-actions.pod:4902 ../fish/guestfish-actions.pod:3258
14550 msgid ""
14551 "The kernel module must have been whitelisted when libguestfs was built (see "
14552 "C<appliance/kmod.whitelist.in> in the source)."
14553 msgstr ""
14554
14555 #. type: =head2
14556 #: ../src/guestfs-actions.pod:4909
14557 msgid "guestfs_mount"
14558 msgstr ""
14559
14560 #. type: verbatim
14561 #: ../src/guestfs-actions.pod:4911
14562 #, no-wrap
14563 msgid ""
14564 " int\n"
14565 " guestfs_mount (guestfs_h *g,\n"
14566 "                const char *device,\n"
14567 "                const char *mountpoint);\n"
14568 "\n"
14569 msgstr ""
14570
14571 #. type: textblock
14572 #: ../src/guestfs-actions.pod:4916 ../fish/guestfish-actions.pod:3265
14573 msgid ""
14574 "Mount a guest disk at a position in the filesystem.  Block devices are named"
14575 " C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
14576 "those block devices contain partitions, they will have the usual names (eg. "
14577 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
14578 msgstr ""
14579
14580 #. type: textblock
14581 #: ../src/guestfs-actions.pod:4922 ../fish/guestfish-actions.pod:3271
14582 msgid ""
14583 "The rules are the same as for L<mount(2)>: A filesystem must first be "
14584 "mounted on C</> before others can be mounted.  Other filesystems can only be"
14585 " mounted on directories which already exist."
14586 msgstr ""
14587
14588 #. type: textblock
14589 #: ../src/guestfs-actions.pod:4927 ../fish/guestfish-actions.pod:3276
14590 msgid ""
14591 "The mounted filesystem is writable, if we have sufficient permissions on the"
14592 " underlying device."
14593 msgstr ""
14594
14595 #. type: textblock
14596 #: ../src/guestfs-actions.pod:4930
14597 msgid ""
14598 "B<Important note:> When you use this call, the filesystem options C<sync> "
14599 "and C<noatime> are set implicitly.  This was originally done because we "
14600 "thought it would improve reliability, but it turns out that I<-o sync> has a"
14601 " very large negative performance impact and negligible effect on "
14602 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
14603 "in any code that needs performance, and instead use C<guestfs_mount_options>"
14604 " (use an empty string for the first parameter if you don't want any "
14605 "options)."
14606 msgstr ""
14607
14608 #. type: textblock
14609 #: ../src/guestfs-actions.pod:4942 ../fish/guestfish-actions.pod:3289
14610 msgid ""
14611 "This function is deprecated.  In new code, use the C<mount_options> call "
14612 "instead."
14613 msgstr ""
14614
14615 #. type: =head2
14616 #: ../src/guestfs-actions.pod:4951
14617 msgid "guestfs_mount_9p"
14618 msgstr ""
14619
14620 #. type: verbatim
14621 #: ../src/guestfs-actions.pod:4953
14622 #, no-wrap
14623 msgid ""
14624 " int\n"
14625 " guestfs_mount_9p (guestfs_h *g,\n"
14626 "                   const char *mounttag,\n"
14627 "                   const char *mountpoint,\n"
14628 "                   ...);\n"
14629 "\n"
14630 msgstr ""
14631
14632 #. type: verbatim
14633 #: ../src/guestfs-actions.pod:4964
14634 #, no-wrap
14635 msgid ""
14636 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
14637 "\n"
14638 msgstr ""
14639
14640 #. type: textblock
14641 #: ../src/guestfs-actions.pod:4966 ../fish/guestfish-actions.pod:3300
14642 msgid ""
14643 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
14644 "C<mountpoint>."
14645 msgstr ""
14646
14647 #. type: textblock
14648 #: ../src/guestfs-actions.pod:4969 ../fish/guestfish-actions.pod:3303
14649 msgid ""
14650 "If required, C<trans=virtio> will be automatically added to the options.  "
14651 "Any other options required can be passed in the optional C<options> "
14652 "parameter."
14653 msgstr ""
14654
14655 #. type: =head2
14656 #: ../src/guestfs-actions.pod:4977
14657 msgid "guestfs_mount_9p_va"
14658 msgstr ""
14659
14660 #. type: verbatim
14661 #: ../src/guestfs-actions.pod:4979
14662 #, no-wrap
14663 msgid ""
14664 " int\n"
14665 " guestfs_mount_9p_va (guestfs_h *g,\n"
14666 "                      const char *mounttag,\n"
14667 "                      const char *mountpoint,\n"
14668 "                      va_list args);\n"
14669 "\n"
14670 msgstr ""
14671
14672 #. type: textblock
14673 #: ../src/guestfs-actions.pod:4985
14674 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
14675 msgstr ""
14676
14677 #. type: =head2
14678 #: ../src/guestfs-actions.pod:4989
14679 msgid "guestfs_mount_9p_argv"
14680 msgstr ""
14681
14682 #. type: verbatim
14683 #: ../src/guestfs-actions.pod:4991
14684 #, no-wrap
14685 msgid ""
14686 " int\n"
14687 " guestfs_mount_9p_argv (guestfs_h *g,\n"
14688 "                        const char *mounttag,\n"
14689 "                        const char *mountpoint,\n"
14690 "                        const struct guestfs_mount_9p_argv *optargs);\n"
14691 "\n"
14692 msgstr ""
14693
14694 #. type: textblock
14695 #: ../src/guestfs-actions.pod:4997
14696 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
14697 msgstr ""
14698
14699 #. type: =head2
14700 #: ../src/guestfs-actions.pod:5001
14701 msgid "guestfs_mount_loop"
14702 msgstr ""
14703
14704 #. type: verbatim
14705 #: ../src/guestfs-actions.pod:5003
14706 #, no-wrap
14707 msgid ""
14708 " int\n"
14709 " guestfs_mount_loop (guestfs_h *g,\n"
14710 "                     const char *file,\n"
14711 "                     const char *mountpoint);\n"
14712 "\n"
14713 msgstr ""
14714
14715 #. type: textblock
14716 #: ../src/guestfs-actions.pod:5008 ../fish/guestfish-actions.pod:3313
14717 msgid ""
14718 "This command lets you mount C<file> (a filesystem image in a file) on a "
14719 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14720 "mountpoint>."
14721 msgstr ""
14722
14723 #. type: =head2
14724 #: ../src/guestfs-actions.pod:5016
14725 msgid "guestfs_mount_options"
14726 msgstr ""
14727
14728 #. type: verbatim
14729 #: ../src/guestfs-actions.pod:5018
14730 #, no-wrap
14731 msgid ""
14732 " int\n"
14733 " guestfs_mount_options (guestfs_h *g,\n"
14734 "                        const char *options,\n"
14735 "                        const char *device,\n"
14736 "                        const char *mountpoint);\n"
14737 "\n"
14738 msgstr ""
14739
14740 #. type: textblock
14741 #: ../src/guestfs-actions.pod:5024
14742 msgid ""
14743 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14744 "the mount options as for the L<mount(8)> I<-o> flag."
14745 msgstr ""
14746
14747 #. type: textblock
14748 #: ../src/guestfs-actions.pod:5028 ../fish/guestfish-actions.pod:3325
14749 msgid ""
14750 "If the C<options> parameter is an empty string, then no options are passed "
14751 "(all options default to whatever the filesystem uses)."
14752 msgstr ""
14753
14754 #. type: textblock
14755 #: ../src/guestfs-actions.pod:5034 ../src/guestfs-actions.pod:5048
14756 #: ../src/guestfs-actions.pod:5065
14757 msgid "(Added in 1.0.10)"
14758 msgstr ""
14759
14760 #. type: =head2
14761 #: ../src/guestfs-actions.pod:5036
14762 msgid "guestfs_mount_ro"
14763 msgstr ""
14764
14765 #. type: verbatim
14766 #: ../src/guestfs-actions.pod:5038
14767 #, no-wrap
14768 msgid ""
14769 " int\n"
14770 " guestfs_mount_ro (guestfs_h *g,\n"
14771 "                   const char *device,\n"
14772 "                   const char *mountpoint);\n"
14773 "\n"
14774 msgstr ""
14775
14776 #. type: textblock
14777 #: ../src/guestfs-actions.pod:5043
14778 msgid ""
14779 "This is the same as the C<guestfs_mount> command, but it mounts the "
14780 "filesystem with the read-only (I<-o ro>) flag."
14781 msgstr ""
14782
14783 #. type: =head2
14784 #: ../src/guestfs-actions.pod:5050
14785 msgid "guestfs_mount_vfs"
14786 msgstr ""
14787
14788 #. type: verbatim
14789 #: ../src/guestfs-actions.pod:5052
14790 #, no-wrap
14791 msgid ""
14792 " int\n"
14793 " guestfs_mount_vfs (guestfs_h *g,\n"
14794 "                    const char *options,\n"
14795 "                    const char *vfstype,\n"
14796 "                    const char *device,\n"
14797 "                    const char *mountpoint);\n"
14798 "\n"
14799 msgstr ""
14800
14801 #. type: textblock
14802 #: ../src/guestfs-actions.pod:5059
14803 msgid ""
14804 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14805 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
14806 "I<-t> flags."
14807 msgstr ""
14808
14809 #. type: =head2
14810 #: ../src/guestfs-actions.pod:5067
14811 msgid "guestfs_mountpoints"
14812 msgstr ""
14813
14814 #. type: verbatim
14815 #: ../src/guestfs-actions.pod:5069
14816 #, no-wrap
14817 msgid ""
14818 " char **\n"
14819 " guestfs_mountpoints (guestfs_h *g);\n"
14820 "\n"
14821 msgstr ""
14822
14823 #. type: textblock
14824 #: ../src/guestfs-actions.pod:5072
14825 msgid ""
14826 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14827 "devices.  This one returns a hash table (map) of device name to directory "
14828 "where the device is mounted."
14829 msgstr ""
14830
14831 #. type: =head2
14832 #: ../src/guestfs-actions.pod:5084
14833 msgid "guestfs_mounts"
14834 msgstr ""
14835
14836 #. type: verbatim
14837 #: ../src/guestfs-actions.pod:5086
14838 #, no-wrap
14839 msgid ""
14840 " char **\n"
14841 " guestfs_mounts (guestfs_h *g);\n"
14842 "\n"
14843 msgstr ""
14844
14845 #. type: textblock
14846 #: ../src/guestfs-actions.pod:5089 ../fish/guestfish-actions.pod:3356
14847 msgid ""
14848 "This returns the list of currently mounted filesystems.  It returns the list"
14849 " of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14850 msgstr ""
14851
14852 #. type: textblock
14853 #: ../src/guestfs-actions.pod:5092 ../fish/guestfish-actions.pod:3359
14854 msgid "Some internal mounts are not shown."
14855 msgstr ""
14856
14857 #. type: textblock
14858 #: ../src/guestfs-actions.pod:5094
14859 msgid "See also: C<guestfs_mountpoints>"
14860 msgstr ""
14861
14862 #. type: =head2
14863 #: ../src/guestfs-actions.pod:5102
14864 msgid "guestfs_mv"
14865 msgstr ""
14866
14867 #. type: verbatim
14868 #: ../src/guestfs-actions.pod:5104
14869 #, no-wrap
14870 msgid ""
14871 " int\n"
14872 " guestfs_mv (guestfs_h *g,\n"
14873 "             const char *src,\n"
14874 "             const char *dest);\n"
14875 "\n"
14876 msgstr ""
14877
14878 #. type: textblock
14879 #: ../src/guestfs-actions.pod:5109 ../fish/guestfish-actions.pod:3367
14880 msgid ""
14881 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14882 "destination filename or destination directory."
14883 msgstr ""
14884
14885 #. type: =head2
14886 #: ../src/guestfs-actions.pod:5116
14887 msgid "guestfs_ntfs_3g_probe"
14888 msgstr ""
14889
14890 #. type: verbatim
14891 #: ../src/guestfs-actions.pod:5118
14892 #, no-wrap
14893 msgid ""
14894 " int\n"
14895 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14896 "                        int rw,\n"
14897 "                        const char *device);\n"
14898 "\n"
14899 msgstr ""
14900
14901 #. type: textblock
14902 #: ../src/guestfs-actions.pod:5123 ../fish/guestfish-actions.pod:3374
14903 msgid ""
14904 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14905 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14906 "write, and some cannot be mounted at all)."
14907 msgstr ""
14908
14909 #. type: textblock
14910 #: ../src/guestfs-actions.pod:5127 ../fish/guestfish-actions.pod:3378
14911 msgid ""
14912 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14913 "can be mounted read-write.  Set it to false if you want to test if the "
14914 "volume can be mounted read-only."
14915 msgstr ""
14916
14917 #. type: textblock
14918 #: ../src/guestfs-actions.pod:5131 ../fish/guestfish-actions.pod:3382
14919 msgid ""
14920 "The return value is an integer which C<0> if the operation would succeed, or"
14921 " some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14922 msgstr ""
14923
14924 #. type: textblock
14925 #: ../src/guestfs-actions.pod:5137
14926 msgid "(Added in 1.0.43)"
14927 msgstr ""
14928
14929 #. type: =head2
14930 #: ../src/guestfs-actions.pod:5139
14931 msgid "guestfs_ntfsresize"
14932 msgstr ""
14933
14934 #. type: verbatim
14935 #: ../src/guestfs-actions.pod:5141
14936 #, no-wrap
14937 msgid ""
14938 " int\n"
14939 " guestfs_ntfsresize (guestfs_h *g,\n"
14940 "                     const char *device);\n"
14941 "\n"
14942 msgstr ""
14943
14944 #. type: textblock
14945 #: ../src/guestfs-actions.pod:5145 ../src/guestfs-actions.pod:5184
14946 #: ../fish/guestfish-actions.pod:3390 ../fish/guestfish-actions.pod:3414
14947 msgid ""
14948 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14949 "size of the underlying device."
14950 msgstr ""
14951
14952 #. type: textblock
14953 #: ../src/guestfs-actions.pod:5148 ../fish/guestfish-actions.pod:3393
14954 msgid ""
14955 "I<Note:> After the resize operation, the filesystem is marked as requiring a"
14956 " consistency check (for safety).  You have to boot into Windows to perform "
14957 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14958 "resize filesystems which have been marked in this way.  So in effect it is "
14959 "not possible to call ntfsresize multiple times on a single filesystem "
14960 "without booting into Windows between each resize."
14961 msgstr ""
14962
14963 #. type: textblock
14964 #: ../src/guestfs-actions.pod:5156 ../src/guestfs-actions.pod:5210
14965 #: ../fish/guestfish-actions.pod:3401 ../fish/guestfish-actions.pod:3440
14966 msgid "See also L<ntfsresize(8)>."
14967 msgstr ""
14968
14969 #. type: textblock
14970 #: ../src/guestfs-actions.pod:5160 ../src/guestfs-actions.pod:5250
14971 #: ../fish/guestfish-actions.pod:3403 ../fish/guestfish-actions.pod:3451
14972 msgid ""
14973 "This function is deprecated.  In new code, use the C<ntfsresize_opts> call "
14974 "instead."
14975 msgstr ""
14976
14977 #. type: =head2
14978 #: ../src/guestfs-actions.pod:5169
14979 msgid "guestfs_ntfsresize_opts"
14980 msgstr ""
14981
14982 #. type: verbatim
14983 #: ../src/guestfs-actions.pod:5171
14984 #, no-wrap
14985 msgid ""
14986 " int\n"
14987 " guestfs_ntfsresize_opts (guestfs_h *g,\n"
14988 "                          const char *device,\n"
14989 "                          ...);\n"
14990 "\n"
14991 msgstr ""
14992
14993 #. type: verbatim
14994 #: ../src/guestfs-actions.pod:5181
14995 #, no-wrap
14996 msgid ""
14997 " GUESTFS_NTFSRESIZE_OPTS_SIZE, int64_t size,\n"
14998 " GUESTFS_NTFSRESIZE_OPTS_FORCE, int force,\n"
14999 "\n"
15000 msgstr ""
15001
15002 #. type: textblock
15003 #: ../src/guestfs-actions.pod:5193 ../fish/guestfish-actions.pod:3423
15004 msgid ""
15005 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
15006 "resized to fit the container (eg. partition)."
15007 msgstr ""
15008
15009 #. type: =item
15010 #: ../src/guestfs-actions.pod:5196 ../fish/guestfish-actions.pod:3426
15011 msgid "C<force>"
15012 msgstr ""
15013
15014 #. type: textblock
15015 #: ../src/guestfs-actions.pod:5198 ../fish/guestfish-actions.pod:3428
15016 msgid ""
15017 "If this option is true, then force the resize of the filesystem even if the "
15018 "filesystem is marked as requiring a consistency check."
15019 msgstr ""
15020
15021 #. type: textblock
15022 #: ../src/guestfs-actions.pod:5201
15023 msgid ""
15024 "After the resize operation, the filesystem is always marked as requiring a "
15025 "consistency check (for safety).  You have to boot into Windows to perform "
15026 "this check and clear this condition.  If you I<don't> set the C<force> "
15027 "option then it is not possible to call C<guestfs_ntfsresize_opts> multiple "
15028 "times on a single filesystem without booting into Windows between each "
15029 "resize."
15030 msgstr ""
15031
15032 #. type: =head2
15033 #: ../src/guestfs-actions.pod:5216
15034 msgid "guestfs_ntfsresize_opts_va"
15035 msgstr ""
15036
15037 #. type: verbatim
15038 #: ../src/guestfs-actions.pod:5218
15039 #, no-wrap
15040 msgid ""
15041 " int\n"
15042 " guestfs_ntfsresize_opts_va (guestfs_h *g,\n"
15043 "                             const char *device,\n"
15044 "                             va_list args);\n"
15045 "\n"
15046 msgstr ""
15047
15048 #. type: textblock
15049 #: ../src/guestfs-actions.pod:5223
15050 msgid "This is the \"va_list variant\" of L</guestfs_ntfsresize_opts>."
15051 msgstr ""
15052
15053 #. type: =head2
15054 #: ../src/guestfs-actions.pod:5227
15055 msgid "guestfs_ntfsresize_opts_argv"
15056 msgstr ""
15057
15058 #. type: verbatim
15059 #: ../src/guestfs-actions.pod:5229
15060 #, no-wrap
15061 msgid ""
15062 " int\n"
15063 " guestfs_ntfsresize_opts_argv (guestfs_h *g,\n"
15064 "                               const char *device,\n"
15065 "                               const struct guestfs_ntfsresize_opts_argv *optargs);\n"
15066 "\n"
15067 msgstr ""
15068
15069 #. type: textblock
15070 #: ../src/guestfs-actions.pod:5234
15071 msgid "This is the \"argv variant\" of L</guestfs_ntfsresize_opts>."
15072 msgstr ""
15073
15074 #. type: =head2
15075 #: ../src/guestfs-actions.pod:5238
15076 msgid "guestfs_ntfsresize_size"
15077 msgstr ""
15078
15079 #. type: verbatim
15080 #: ../src/guestfs-actions.pod:5240
15081 #, no-wrap
15082 msgid ""
15083 " int\n"
15084 " guestfs_ntfsresize_size (guestfs_h *g,\n"
15085 "                          const char *device,\n"
15086 "                          int64_t size);\n"
15087 "\n"
15088 msgstr ""
15089
15090 #. type: textblock
15091 #: ../src/guestfs-actions.pod:5245
15092 msgid ""
15093 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
15094 "to specify the new size (in bytes) explicitly."
15095 msgstr ""
15096
15097 #. type: textblock
15098 #: ../src/guestfs-actions.pod:5257 ../src/guestfs-actions.pod:5693
15099 #: ../src/guestfs-actions.pod:5766 ../src/guestfs-actions.pod:6034
15100 #: ../src/guestfs-actions.pod:7655
15101 msgid "(Added in 1.3.14)"
15102 msgstr ""
15103
15104 #. type: =head2
15105 #: ../src/guestfs-actions.pod:5259
15106 msgid "guestfs_part_add"
15107 msgstr ""
15108
15109 #. type: verbatim
15110 #: ../src/guestfs-actions.pod:5261
15111 #, no-wrap
15112 msgid ""
15113 " int\n"
15114 " guestfs_part_add (guestfs_h *g,\n"
15115 "                   const char *device,\n"
15116 "                   const char *prlogex,\n"
15117 "                   int64_t startsect,\n"
15118 "                   int64_t endsect);\n"
15119 "\n"
15120 msgstr ""
15121
15122 #. type: textblock
15123 #: ../src/guestfs-actions.pod:5268
15124 msgid ""
15125 "This command adds a partition to C<device>.  If there is no partition table "
15126 "on the device, call C<guestfs_part_init> first."
15127 msgstr ""
15128
15129 #. type: textblock
15130 #: ../src/guestfs-actions.pod:5271 ../fish/guestfish-actions.pod:3465
15131 msgid ""
15132 "The C<prlogex> parameter is the type of partition.  Normally you should pass"
15133 " C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
15134 "C<logical>) and C<e> (or C<extended>) partition types."
15135 msgstr ""
15136
15137 #. type: textblock
15138 #: ../src/guestfs-actions.pod:5276 ../fish/guestfish-actions.pod:3470
15139 msgid ""
15140 "C<startsect> and C<endsect> are the start and end of the partition in "
15141 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
15142 "from the end of the disk (C<-1> is the last sector)."
15143 msgstr ""
15144
15145 #. type: textblock
15146 #: ../src/guestfs-actions.pod:5280
15147 msgid ""
15148 "Creating a partition which covers the whole disk is not so easy.  Use "
15149 "C<guestfs_part_disk> to do that."
15150 msgstr ""
15151
15152 #. type: textblock
15153 #: ../src/guestfs-actions.pod:5285 ../src/guestfs-actions.pod:5323
15154 #: ../src/guestfs-actions.pod:5376 ../src/guestfs-actions.pod:5454
15155 #: ../src/guestfs-actions.pod:5492 ../src/guestfs-actions.pod:5511
15156 #: ../src/guestfs-actions.pod:5551
15157 msgid "(Added in 1.0.78)"
15158 msgstr ""
15159
15160 #. type: =head2
15161 #: ../src/guestfs-actions.pod:5287
15162 msgid "guestfs_part_del"
15163 msgstr ""
15164
15165 #. type: verbatim
15166 #: ../src/guestfs-actions.pod:5289
15167 #, no-wrap
15168 msgid ""
15169 " int\n"
15170 " guestfs_part_del (guestfs_h *g,\n"
15171 "                   const char *device,\n"
15172 "                   int partnum);\n"
15173 "\n"
15174 msgstr ""
15175
15176 #. type: textblock
15177 #: ../src/guestfs-actions.pod:5294 ../fish/guestfish-actions.pod:3481
15178 msgid "This command deletes the partition numbered C<partnum> on C<device>."
15179 msgstr ""
15180
15181 #. type: textblock
15182 #: ../src/guestfs-actions.pod:5296 ../fish/guestfish-actions.pod:3483
15183 msgid ""
15184 "Note that in the case of MBR partitioning, deleting an extended partition "
15185 "also deletes any logical partitions it contains."
15186 msgstr ""
15187
15188 #. type: =head2
15189 #: ../src/guestfs-actions.pod:5304
15190 msgid "guestfs_part_disk"
15191 msgstr ""
15192
15193 #. type: verbatim
15194 #: ../src/guestfs-actions.pod:5306
15195 #, no-wrap
15196 msgid ""
15197 " int\n"
15198 " guestfs_part_disk (guestfs_h *g,\n"
15199 "                    const char *device,\n"
15200 "                    const char *parttype);\n"
15201 "\n"
15202 msgstr ""
15203
15204 #. type: textblock
15205 #: ../src/guestfs-actions.pod:5311
15206 msgid ""
15207 "This command is simply a combination of C<guestfs_part_init> followed by "
15208 "C<guestfs_part_add> to create a single primary partition covering the whole "
15209 "disk."
15210 msgstr ""
15211
15212 #. type: textblock
15213 #: ../src/guestfs-actions.pod:5315
15214 msgid ""
15215 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other"
15216 " possible values are described in C<guestfs_part_init>."
15217 msgstr ""
15218
15219 #. type: =head2
15220 #: ../src/guestfs-actions.pod:5325
15221 msgid "guestfs_part_get_bootable"
15222 msgstr ""
15223
15224 #. type: verbatim
15225 #: ../src/guestfs-actions.pod:5327
15226 #, no-wrap
15227 msgid ""
15228 " int\n"
15229 " guestfs_part_get_bootable (guestfs_h *g,\n"
15230 "                            const char *device,\n"
15231 "                            int partnum);\n"
15232 "\n"
15233 msgstr ""
15234
15235 #. type: textblock
15236 #: ../src/guestfs-actions.pod:5332 ../fish/guestfish-actions.pod:3505
15237 msgid ""
15238 "This command returns true if the partition C<partnum> on C<device> has the "
15239 "bootable flag set."
15240 msgstr ""
15241
15242 #. type: textblock
15243 #: ../src/guestfs-actions.pod:5335
15244 msgid "See also C<guestfs_part_set_bootable>."
15245 msgstr ""
15246
15247 #. type: =head2
15248 #: ../src/guestfs-actions.pod:5341
15249 msgid "guestfs_part_get_mbr_id"
15250 msgstr ""
15251
15252 #. type: verbatim
15253 #: ../src/guestfs-actions.pod:5343
15254 #, no-wrap
15255 msgid ""
15256 " int\n"
15257 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
15258 "                          const char *device,\n"
15259 "                          int partnum);\n"
15260 "\n"
15261 msgstr ""
15262
15263 #. type: textblock
15264 #: ../src/guestfs-actions.pod:5348 ../fish/guestfish-actions.pod:3514
15265 msgid ""
15266 "Returns the MBR type byte (also known as the ID byte) from the numbered "
15267 "partition C<partnum>."
15268 msgstr ""
15269
15270 #. type: textblock
15271 #: ../src/guestfs-actions.pod:5351 ../src/guestfs-actions.pod:5527
15272 msgid ""
15273 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get"
15274 " undefined results for other partition table types (see "
15275 "C<guestfs_part_get_parttype>)."
15276 msgstr ""
15277
15278 #. type: =head2
15279 #: ../src/guestfs-actions.pod:5359
15280 msgid "guestfs_part_get_parttype"
15281 msgstr ""
15282
15283 #. type: verbatim
15284 #: ../src/guestfs-actions.pod:5361
15285 #, no-wrap
15286 msgid ""
15287 " char *\n"
15288 " guestfs_part_get_parttype (guestfs_h *g,\n"
15289 "                            const char *device);\n"
15290 "\n"
15291 msgstr ""
15292
15293 #. type: textblock
15294 #: ../src/guestfs-actions.pod:5365 ../fish/guestfish-actions.pod:3525
15295 msgid ""
15296 "This command examines the partition table on C<device> and returns the "
15297 "partition table type (format) being used."
15298 msgstr ""
15299
15300 #. type: textblock
15301 #: ../src/guestfs-actions.pod:5368
15302 msgid ""
15303 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
15304 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
15305 "possible, although unusual.  See C<guestfs_part_init> for a full list."
15306 msgstr ""
15307
15308 #. type: =head2
15309 #: ../src/guestfs-actions.pod:5378
15310 msgid "guestfs_part_init"
15311 msgstr ""
15312
15313 #. type: verbatim
15314 #: ../src/guestfs-actions.pod:5380
15315 #, no-wrap
15316 msgid ""
15317 " int\n"
15318 " guestfs_part_init (guestfs_h *g,\n"
15319 "                    const char *device,\n"
15320 "                    const char *parttype);\n"
15321 "\n"
15322 msgstr ""
15323
15324 #. type: textblock
15325 #: ../src/guestfs-actions.pod:5385 ../fish/guestfish-actions.pod:3537
15326 msgid ""
15327 "This creates an empty partition table on C<device> of one of the partition "
15328 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt>"
15329 " (for large disks)."
15330 msgstr ""
15331
15332 #. type: textblock
15333 #: ../src/guestfs-actions.pod:5389
15334 msgid ""
15335 "Initially there are no partitions.  Following this, you should call "
15336 "C<guestfs_part_add> for each partition required."
15337 msgstr ""
15338
15339 #. type: textblock
15340 #: ../src/guestfs-actions.pod:5392 ../fish/guestfish-actions.pod:3544
15341 msgid "Possible values for C<parttype> are:"
15342 msgstr ""
15343
15344 #. type: =item
15345 #: ../src/guestfs-actions.pod:5396 ../fish/guestfish-actions.pod:3548
15346 msgid "B<efi> | B<gpt>"
15347 msgstr ""
15348
15349 #. type: textblock
15350 #: ../src/guestfs-actions.pod:5398 ../fish/guestfish-actions.pod:3550
15351 msgid "Intel EFI / GPT partition table."
15352 msgstr ""
15353
15354 #. type: textblock
15355 #: ../src/guestfs-actions.pod:5400 ../fish/guestfish-actions.pod:3552
15356 msgid ""
15357 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
15358 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
15359 "the C<mbr> format."
15360 msgstr ""
15361
15362 #. type: =item
15363 #: ../src/guestfs-actions.pod:5404 ../fish/guestfish-actions.pod:3556
15364 msgid "B<mbr> | B<msdos>"
15365 msgstr ""
15366
15367 #. type: textblock
15368 #: ../src/guestfs-actions.pod:5406 ../fish/guestfish-actions.pod:3558
15369 msgid ""
15370 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
15371 "Windows.  This partition type will B<only> work for device sizes up to 2 TB."
15372 "  For large disks we recommend using C<gpt>."
15373 msgstr ""
15374
15375 #. type: textblock
15376 #: ../src/guestfs-actions.pod:5413 ../fish/guestfish-actions.pod:3565
15377 msgid ""
15378 "Other partition table types that may work but are not supported include:"
15379 msgstr ""
15380
15381 #. type: =item
15382 #: ../src/guestfs-actions.pod:5418 ../fish/guestfish-actions.pod:3570
15383 msgid "B<aix>"
15384 msgstr ""
15385
15386 #. type: textblock
15387 #: ../src/guestfs-actions.pod:5420 ../fish/guestfish-actions.pod:3572
15388 msgid "AIX disk labels."
15389 msgstr ""
15390
15391 #. type: =item
15392 #: ../src/guestfs-actions.pod:5422 ../fish/guestfish-actions.pod:3574
15393 msgid "B<amiga> | B<rdb>"
15394 msgstr ""
15395
15396 #. type: textblock
15397 #: ../src/guestfs-actions.pod:5424 ../fish/guestfish-actions.pod:3576
15398 msgid "Amiga \"Rigid Disk Block\" format."
15399 msgstr ""
15400
15401 #. type: =item
15402 #: ../src/guestfs-actions.pod:5426 ../fish/guestfish-actions.pod:3578
15403 msgid "B<bsd>"
15404 msgstr ""
15405
15406 #. type: textblock
15407 #: ../src/guestfs-actions.pod:5428 ../fish/guestfish-actions.pod:3580
15408 msgid "BSD disk labels."
15409 msgstr ""
15410
15411 #. type: =item
15412 #: ../src/guestfs-actions.pod:5430 ../fish/guestfish-actions.pod:3582
15413 msgid "B<dasd>"
15414 msgstr ""
15415
15416 #. type: textblock
15417 #: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3584
15418 msgid "DASD, used on IBM mainframes."
15419 msgstr ""
15420
15421 #. type: =item
15422 #: ../src/guestfs-actions.pod:5434 ../fish/guestfish-actions.pod:3586
15423 msgid "B<dvh>"
15424 msgstr ""
15425
15426 #. type: textblock
15427 #: ../src/guestfs-actions.pod:5436 ../fish/guestfish-actions.pod:3588
15428 msgid "MIPS/SGI volumes."
15429 msgstr ""
15430
15431 #. type: =item
15432 #: ../src/guestfs-actions.pod:5438 ../fish/guestfish-actions.pod:3590
15433 msgid "B<mac>"
15434 msgstr ""
15435
15436 #. type: textblock
15437 #: ../src/guestfs-actions.pod:5440 ../fish/guestfish-actions.pod:3592
15438 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
15439 msgstr ""
15440
15441 #. type: =item
15442 #: ../src/guestfs-actions.pod:5442 ../fish/guestfish-actions.pod:3594
15443 msgid "B<pc98>"
15444 msgstr ""
15445
15446 #. type: textblock
15447 #: ../src/guestfs-actions.pod:5444 ../fish/guestfish-actions.pod:3596
15448 msgid "NEC PC-98 format, common in Japan apparently."
15449 msgstr ""
15450
15451 #. type: =item
15452 #: ../src/guestfs-actions.pod:5446 ../fish/guestfish-actions.pod:3598
15453 msgid "B<sun>"
15454 msgstr ""
15455
15456 #. type: textblock
15457 #: ../src/guestfs-actions.pod:5448 ../fish/guestfish-actions.pod:3600
15458 msgid "Sun disk labels."
15459 msgstr ""
15460
15461 #. type: =head2
15462 #: ../src/guestfs-actions.pod:5456
15463 msgid "guestfs_part_list"
15464 msgstr ""
15465
15466 #. type: verbatim
15467 #: ../src/guestfs-actions.pod:5458
15468 #, no-wrap
15469 msgid ""
15470 " struct guestfs_partition_list *\n"
15471 " guestfs_part_list (guestfs_h *g,\n"
15472 "                    const char *device);\n"
15473 "\n"
15474 msgstr ""
15475
15476 #. type: textblock
15477 #: ../src/guestfs-actions.pod:5462 ../fish/guestfish-actions.pod:3608
15478 msgid ""
15479 "This command parses the partition table on C<device> and returns the list of"
15480 " partitions found."
15481 msgstr ""
15482
15483 #. type: textblock
15484 #: ../src/guestfs-actions.pod:5465 ../fish/guestfish-actions.pod:3611
15485 msgid "The fields in the returned structure are:"
15486 msgstr ""
15487
15488 #. type: =item
15489 #: ../src/guestfs-actions.pod:5469 ../fish/guestfish-actions.pod:3615
15490 msgid "B<part_num>"
15491 msgstr ""
15492
15493 #. type: textblock
15494 #: ../src/guestfs-actions.pod:5471 ../fish/guestfish-actions.pod:3617
15495 msgid "Partition number, counting from 1."
15496 msgstr ""
15497
15498 #. type: =item
15499 #: ../src/guestfs-actions.pod:5473 ../fish/guestfish-actions.pod:3619
15500 msgid "B<part_start>"
15501 msgstr ""
15502
15503 #. type: textblock
15504 #: ../src/guestfs-actions.pod:5475
15505 msgid ""
15506 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
15507 "the device's sector size, see C<guestfs_blockdev_getss>."
15508 msgstr ""
15509
15510 #. type: =item
15511 #: ../src/guestfs-actions.pod:5478 ../fish/guestfish-actions.pod:3624
15512 msgid "B<part_end>"
15513 msgstr ""
15514
15515 #. type: textblock
15516 #: ../src/guestfs-actions.pod:5480 ../fish/guestfish-actions.pod:3626
15517 msgid "End of the partition in bytes."
15518 msgstr ""
15519
15520 #. type: =item
15521 #: ../src/guestfs-actions.pod:5482 ../fish/guestfish-actions.pod:3628
15522 msgid "B<part_size>"
15523 msgstr ""
15524
15525 #. type: textblock
15526 #: ../src/guestfs-actions.pod:5484 ../fish/guestfish-actions.pod:3630
15527 msgid "Size of the partition in bytes."
15528 msgstr ""
15529
15530 #. type: textblock
15531 #: ../src/guestfs-actions.pod:5488
15532 msgid ""
15533 "This function returns a C<struct guestfs_partition_list *>, or NULL if there"
15534 " was an error.  I<The caller must call C<guestfs_free_partition_list> after "
15535 "use>."
15536 msgstr ""
15537
15538 #. type: =head2
15539 #: ../src/guestfs-actions.pod:5494
15540 msgid "guestfs_part_set_bootable"
15541 msgstr ""
15542
15543 #. type: verbatim
15544 #: ../src/guestfs-actions.pod:5496
15545 #, no-wrap
15546 msgid ""
15547 " int\n"
15548 " guestfs_part_set_bootable (guestfs_h *g,\n"
15549 "                            const char *device,\n"
15550 "                            int partnum,\n"
15551 "                            int bootable);\n"
15552 "\n"
15553 msgstr ""
15554
15555 #. type: textblock
15556 #: ../src/guestfs-actions.pod:5502 ../fish/guestfish-actions.pod:3638
15557 msgid ""
15558 "This sets the bootable flag on partition numbered C<partnum> on device "
15559 "C<device>.  Note that partitions are numbered from 1."
15560 msgstr ""
15561
15562 #. type: textblock
15563 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3641
15564 msgid ""
15565 "The bootable flag is used by some operating systems (notably Windows) to "
15566 "determine which partition to boot from.  It is by no means universally "
15567 "recognized."
15568 msgstr ""
15569
15570 #. type: =head2
15571 #: ../src/guestfs-actions.pod:5513
15572 msgid "guestfs_part_set_mbr_id"
15573 msgstr ""
15574
15575 #. type: verbatim
15576 #: ../src/guestfs-actions.pod:5515
15577 #, no-wrap
15578 msgid ""
15579 " int\n"
15580 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
15581 "                          const char *device,\n"
15582 "                          int partnum,\n"
15583 "                          int idbyte);\n"
15584 "\n"
15585 msgstr ""
15586
15587 #. type: textblock
15588 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3649
15589 msgid ""
15590 "Sets the MBR type byte (also known as the ID byte) of the numbered partition"
15591 " C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
15592 "documentation are in fact hexadecimal numbers, but usually documented "
15593 "without any leading \"0x\" which might be confusing."
15594 msgstr ""
15595
15596 #. type: =head2
15597 #: ../src/guestfs-actions.pod:5535
15598 msgid "guestfs_part_set_name"
15599 msgstr ""
15600
15601 #. type: verbatim
15602 #: ../src/guestfs-actions.pod:5537
15603 #, no-wrap
15604 msgid ""
15605 " int\n"
15606 " guestfs_part_set_name (guestfs_h *g,\n"
15607 "                        const char *device,\n"
15608 "                        int partnum,\n"
15609 "                        const char *name);\n"
15610 "\n"
15611 msgstr ""
15612
15613 #. type: textblock
15614 #: ../src/guestfs-actions.pod:5543 ../fish/guestfish-actions.pod:3663
15615 msgid ""
15616 "This sets the partition name on partition numbered C<partnum> on device "
15617 "C<device>.  Note that partitions are numbered from 1."
15618 msgstr ""
15619
15620 #. type: textblock
15621 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3666
15622 msgid ""
15623 "The partition name can only be set on certain types of partition table.  "
15624 "This works on C<gpt> but not on C<mbr> partitions."
15625 msgstr ""
15626
15627 #. type: =head2
15628 #: ../src/guestfs-actions.pod:5553
15629 msgid "guestfs_part_to_dev"
15630 msgstr ""
15631
15632 #. type: verbatim
15633 #: ../src/guestfs-actions.pod:5555
15634 #, no-wrap
15635 msgid ""
15636 " char *\n"
15637 " guestfs_part_to_dev (guestfs_h *g,\n"
15638 "                      const char *partition);\n"
15639 "\n"
15640 msgstr ""
15641
15642 #. type: textblock
15643 #: ../src/guestfs-actions.pod:5559 ../fish/guestfish-actions.pod:3673
15644 msgid ""
15645 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
15646 "partition number, returning the device name (eg. \"/dev/sdb\")."
15647 msgstr ""
15648
15649 #. type: textblock
15650 #: ../src/guestfs-actions.pod:5563
15651 msgid ""
15652 "The named partition must exist, for example as a string returned from "
15653 "C<guestfs_list_partitions>."
15654 msgstr ""
15655
15656 #. type: =head2
15657 #: ../src/guestfs-actions.pod:5571
15658 msgid "guestfs_ping_daemon"
15659 msgstr ""
15660
15661 #. type: verbatim
15662 #: ../src/guestfs-actions.pod:5573
15663 #, no-wrap
15664 msgid ""
15665 " int\n"
15666 " guestfs_ping_daemon (guestfs_h *g);\n"
15667 "\n"
15668 msgstr ""
15669
15670 #. type: textblock
15671 #: ../src/guestfs-actions.pod:5576 ../fish/guestfish-actions.pod:3684
15672 msgid ""
15673 "This is a test probe into the guestfs daemon running inside the qemu "
15674 "subprocess.  Calling this function checks that the daemon responds to the "
15675 "ping message, without affecting the daemon or attached block device(s) in "
15676 "any other way."
15677 msgstr ""
15678
15679 #. type: =head2
15680 #: ../src/guestfs-actions.pod:5585
15681 msgid "guestfs_pread"
15682 msgstr ""
15683
15684 #. type: verbatim
15685 #: ../src/guestfs-actions.pod:5587
15686 #, no-wrap
15687 msgid ""
15688 " char *\n"
15689 " guestfs_pread (guestfs_h *g,\n"
15690 "                const char *path,\n"
15691 "                int count,\n"
15692 "                int64_t offset,\n"
15693 "                size_t *size_r);\n"
15694 "\n"
15695 msgstr ""
15696
15697 #. type: textblock
15698 #: ../src/guestfs-actions.pod:5594 ../fish/guestfish-actions.pod:3693
15699 msgid ""
15700 "This command lets you read part of a file.  It reads C<count> bytes of the "
15701 "file, starting at C<offset>, from file C<path>."
15702 msgstr ""
15703
15704 #. type: textblock
15705 #: ../src/guestfs-actions.pod:5597 ../src/guestfs-actions.pod:5623
15706 #: ../fish/guestfish-actions.pod:3696 ../fish/guestfish-actions.pod:3711
15707 msgid ""
15708 "This may read fewer bytes than requested.  For further details see the "
15709 "L<pread(2)> system call."
15710 msgstr ""
15711
15712 #. type: textblock
15713 #: ../src/guestfs-actions.pod:5600
15714 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
15715 msgstr ""
15716
15717 #. type: =head2
15718 #: ../src/guestfs-actions.pod:5611
15719 msgid "guestfs_pread_device"
15720 msgstr ""
15721
15722 #. type: verbatim
15723 #: ../src/guestfs-actions.pod:5613
15724 #, no-wrap
15725 msgid ""
15726 " char *\n"
15727 " guestfs_pread_device (guestfs_h *g,\n"
15728 "                       const char *device,\n"
15729 "                       int count,\n"
15730 "                       int64_t offset,\n"
15731 "                       size_t *size_r);\n"
15732 "\n"
15733 msgstr ""
15734
15735 #. type: textblock
15736 #: ../src/guestfs-actions.pod:5620 ../fish/guestfish-actions.pod:3708
15737 msgid ""
15738 "This command lets you read part of a file.  It reads C<count> bytes of "
15739 "C<device>, starting at C<offset>."
15740 msgstr ""
15741
15742 #. type: textblock
15743 #: ../src/guestfs-actions.pod:5626
15744 msgid "See also C<guestfs_pread>."
15745 msgstr ""
15746
15747 #. type: textblock
15748 #: ../src/guestfs-actions.pod:5635
15749 msgid "(Added in 1.5.21)"
15750 msgstr ""
15751
15752 #. type: =head2
15753 #: ../src/guestfs-actions.pod:5637
15754 msgid "guestfs_pvcreate"
15755 msgstr ""
15756
15757 #. type: verbatim
15758 #: ../src/guestfs-actions.pod:5639
15759 #, no-wrap
15760 msgid ""
15761 " int\n"
15762 " guestfs_pvcreate (guestfs_h *g,\n"
15763 "                   const char *device);\n"
15764 "\n"
15765 msgstr ""
15766
15767 #. type: textblock
15768 #: ../src/guestfs-actions.pod:5643 ../fish/guestfish-actions.pod:3723
15769 msgid ""
15770 "This creates an LVM physical volume on the named C<device>, where C<device> "
15771 "should usually be a partition name such as C</dev/sda1>."
15772 msgstr ""
15773
15774 #. type: =head2
15775 #: ../src/guestfs-actions.pod:5651
15776 msgid "guestfs_pvremove"
15777 msgstr ""
15778
15779 #. type: verbatim
15780 #: ../src/guestfs-actions.pod:5653
15781 #, no-wrap
15782 msgid ""
15783 " int\n"
15784 " guestfs_pvremove (guestfs_h *g,\n"
15785 "                   const char *device);\n"
15786 "\n"
15787 msgstr ""
15788
15789 #. type: textblock
15790 #: ../src/guestfs-actions.pod:5657 ../fish/guestfish-actions.pod:3731
15791 msgid ""
15792 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15793 "it."
15794 msgstr ""
15795
15796 #. type: textblock
15797 #: ../src/guestfs-actions.pod:5660 ../fish/guestfish-actions.pod:3734
15798 msgid ""
15799 "The implementation uses the C<pvremove> command which refuses to wipe "
15800 "physical volumes that contain any volume groups, so you have to remove those"
15801 " first."
15802 msgstr ""
15803
15804 #. type: =head2
15805 #: ../src/guestfs-actions.pod:5668
15806 msgid "guestfs_pvresize"
15807 msgstr ""
15808
15809 #. type: verbatim
15810 #: ../src/guestfs-actions.pod:5670
15811 #, no-wrap
15812 msgid ""
15813 " int\n"
15814 " guestfs_pvresize (guestfs_h *g,\n"
15815 "                   const char *device);\n"
15816 "\n"
15817 msgstr ""
15818
15819 #. type: textblock
15820 #: ../src/guestfs-actions.pod:5674 ../fish/guestfish-actions.pod:3742
15821 msgid ""
15822 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15823 "the new size of the underlying device."
15824 msgstr ""
15825
15826 #. type: =head2
15827 #: ../src/guestfs-actions.pod:5681
15828 msgid "guestfs_pvresize_size"
15829 msgstr ""
15830
15831 #. type: verbatim
15832 #: ../src/guestfs-actions.pod:5683
15833 #, no-wrap
15834 msgid ""
15835 " int\n"
15836 " guestfs_pvresize_size (guestfs_h *g,\n"
15837 "                        const char *device,\n"
15838 "                        int64_t size);\n"
15839 "\n"
15840 msgstr ""
15841
15842 #. type: textblock
15843 #: ../src/guestfs-actions.pod:5688
15844 msgid ""
15845 "This command is the same as C<guestfs_pvresize> except that it allows you to"
15846 " specify the new size (in bytes) explicitly."
15847 msgstr ""
15848
15849 #. type: =head2
15850 #: ../src/guestfs-actions.pod:5695
15851 msgid "guestfs_pvs"
15852 msgstr ""
15853
15854 #. type: verbatim
15855 #: ../src/guestfs-actions.pod:5697
15856 #, no-wrap
15857 msgid ""
15858 " char **\n"
15859 " guestfs_pvs (guestfs_h *g);\n"
15860 "\n"
15861 msgstr ""
15862
15863 #. type: textblock
15864 #: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3756
15865 msgid ""
15866 "List all the physical volumes detected.  This is the equivalent of the "
15867 "L<pvs(8)> command."
15868 msgstr ""
15869
15870 #. type: textblock
15871 #: ../src/guestfs-actions.pod:5703 ../fish/guestfish-actions.pod:3759
15872 msgid ""
15873 "This returns a list of just the device names that contain PVs (eg. "
15874 "C</dev/sda2>)."
15875 msgstr ""
15876
15877 #. type: textblock
15878 #: ../src/guestfs-actions.pod:5706
15879 msgid "See also C<guestfs_pvs_full>."
15880 msgstr ""
15881
15882 #. type: =head2
15883 #: ../src/guestfs-actions.pod:5714
15884 msgid "guestfs_pvs_full"
15885 msgstr ""
15886
15887 #. type: verbatim
15888 #: ../src/guestfs-actions.pod:5716
15889 #, no-wrap
15890 msgid ""
15891 " struct guestfs_lvm_pv_list *\n"
15892 " guestfs_pvs_full (guestfs_h *g);\n"
15893 "\n"
15894 msgstr ""
15895
15896 #. type: textblock
15897 #: ../src/guestfs-actions.pod:5719 ../fish/guestfish-actions.pod:3768
15898 msgid ""
15899 "List all the physical volumes detected.  This is the equivalent of the "
15900 "L<pvs(8)> command.  The \"full\" version includes all fields."
15901 msgstr ""
15902
15903 #. type: textblock
15904 #: ../src/guestfs-actions.pod:5722
15905 msgid ""
15906 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15907 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
15908 "use>."
15909 msgstr ""
15910
15911 #. type: =head2
15912 #: ../src/guestfs-actions.pod:5728
15913 msgid "guestfs_pvuuid"
15914 msgstr ""
15915
15916 #. type: verbatim
15917 #: ../src/guestfs-actions.pod:5730
15918 #, no-wrap
15919 msgid ""
15920 " char *\n"
15921 " guestfs_pvuuid (guestfs_h *g,\n"
15922 "                 const char *device);\n"
15923 "\n"
15924 msgstr ""
15925
15926 #. type: textblock
15927 #: ../src/guestfs-actions.pod:5734 ../fish/guestfish-actions.pod:3775
15928 msgid "This command returns the UUID of the LVM PV C<device>."
15929 msgstr ""
15930
15931 #. type: =head2
15932 #: ../src/guestfs-actions.pod:5741
15933 msgid "guestfs_pwrite"
15934 msgstr ""
15935
15936 #. type: verbatim
15937 #: ../src/guestfs-actions.pod:5743
15938 #, no-wrap
15939 msgid ""
15940 " int\n"
15941 " guestfs_pwrite (guestfs_h *g,\n"
15942 "                 const char *path,\n"
15943 "                 const char *content,\n"
15944 "                 size_t content_size,\n"
15945 "                 int64_t offset);\n"
15946 "\n"
15947 msgstr ""
15948
15949 #. type: textblock
15950 #: ../src/guestfs-actions.pod:5750 ../fish/guestfish-actions.pod:3781
15951 msgid ""
15952 "This command writes to part of a file.  It writes the data buffer C<content>"
15953 " to the file C<path> starting at offset C<offset>."
15954 msgstr ""
15955
15956 #. type: textblock
15957 #: ../src/guestfs-actions.pod:5753 ../fish/guestfish-actions.pod:3784
15958 msgid ""
15959 "This command implements the L<pwrite(2)> system call, and like that system "
15960 "call it may not write the full data requested.  The return value is the "
15961 "number of bytes that were actually written to the file.  This could even be "
15962 "0, although short writes are unlikely for regular files in ordinary "
15963 "circumstances."
15964 msgstr ""
15965
15966 #. type: textblock
15967 #: ../src/guestfs-actions.pod:5759
15968 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15969 msgstr ""
15970
15971 #. type: =head2
15972 #: ../src/guestfs-actions.pod:5768
15973 msgid "guestfs_pwrite_device"
15974 msgstr ""
15975
15976 #. type: verbatim
15977 #: ../src/guestfs-actions.pod:5770
15978 #, no-wrap
15979 msgid ""
15980 " int\n"
15981 " guestfs_pwrite_device (guestfs_h *g,\n"
15982 "                        const char *device,\n"
15983 "                        const char *content,\n"
15984 "                        size_t content_size,\n"
15985 "                        int64_t offset);\n"
15986 "\n"
15987 msgstr ""
15988
15989 #. type: textblock
15990 #: ../src/guestfs-actions.pod:5777 ../fish/guestfish-actions.pod:3799
15991 msgid ""
15992 "This command writes to part of a device.  It writes the data buffer "
15993 "C<content> to C<device> starting at offset C<offset>."
15994 msgstr ""
15995
15996 #. type: textblock
15997 #: ../src/guestfs-actions.pod:5780 ../fish/guestfish-actions.pod:3802
15998 msgid ""
15999 "This command implements the L<pwrite(2)> system call, and like that system "
16000 "call it may not write the full data requested (although short writes to disk"
16001 " devices and partitions are probably impossible with standard Linux "
16002 "kernels)."
16003 msgstr ""
16004
16005 #. type: textblock
16006 #: ../src/guestfs-actions.pod:5785
16007 msgid "See also C<guestfs_pwrite>."
16008 msgstr ""
16009
16010 #. type: textblock
16011 #: ../src/guestfs-actions.pod:5792
16012 msgid "(Added in 1.5.20)"
16013 msgstr ""
16014
16015 #. type: =head2
16016 #: ../src/guestfs-actions.pod:5794
16017 msgid "guestfs_read_file"
16018 msgstr ""
16019
16020 #. type: verbatim
16021 #: ../src/guestfs-actions.pod:5796
16022 #, no-wrap
16023 msgid ""
16024 " char *\n"
16025 " guestfs_read_file (guestfs_h *g,\n"
16026 "                    const char *path,\n"
16027 "                    size_t *size_r);\n"
16028 "\n"
16029 msgstr ""
16030
16031 #. type: textblock
16032 #: ../src/guestfs-actions.pod:5801 ../fish/guestfish-actions.pod:3816
16033 msgid "This calls returns the contents of the file C<path> as a buffer."
16034 msgstr ""
16035
16036 #. type: textblock
16037 #: ../src/guestfs-actions.pod:5804
16038 msgid ""
16039 "Unlike C<guestfs_cat>, this function can correctly handle files that contain"
16040 " embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
16041 "function is limited in the total size of file that can be handled."
16042 msgstr ""
16043
16044 #. type: textblock
16045 #: ../src/guestfs-actions.pod:5816
16046 msgid "(Added in 1.0.63)"
16047 msgstr ""
16048
16049 #. type: =head2
16050 #: ../src/guestfs-actions.pod:5818
16051 msgid "guestfs_read_lines"
16052 msgstr ""
16053
16054 #. type: verbatim
16055 #: ../src/guestfs-actions.pod:5820
16056 #, no-wrap
16057 msgid ""
16058 " char **\n"
16059 " guestfs_read_lines (guestfs_h *g,\n"
16060 "                     const char *path);\n"
16061 "\n"
16062 msgstr ""
16063
16064 #. type: textblock
16065 #: ../src/guestfs-actions.pod:5826 ../fish/guestfish-actions.pod:3833
16066 msgid ""
16067 "The file contents are returned as a list of lines.  Trailing C<LF> and "
16068 "C<CRLF> character sequences are I<not> returned."
16069 msgstr ""
16070
16071 #. type: textblock
16072 #: ../src/guestfs-actions.pod:5829
16073 msgid ""
16074 "Note that this function cannot correctly handle binary files (specifically, "
16075 "files containing C<\\0> character which is treated as end of line).  For "
16076 "those you need to use the C<guestfs_read_file> function which has a more "
16077 "complex interface."
16078 msgstr ""
16079
16080 #. type: =head2
16081 #: ../src/guestfs-actions.pod:5840
16082 msgid "guestfs_readdir"
16083 msgstr ""
16084
16085 #. type: verbatim
16086 #: ../src/guestfs-actions.pod:5842
16087 #, no-wrap
16088 msgid ""
16089 " struct guestfs_dirent_list *\n"
16090 " guestfs_readdir (guestfs_h *g,\n"
16091 "                  const char *dir);\n"
16092 "\n"
16093 msgstr ""
16094
16095 #. type: textblock
16096 #: ../src/guestfs-actions.pod:5846 ../fish/guestfish-actions.pod:3845
16097 msgid "This returns the list of directory entries in directory C<dir>."
16098 msgstr ""
16099
16100 #. type: textblock
16101 #: ../src/guestfs-actions.pod:5848 ../fish/guestfish-actions.pod:3847
16102 msgid ""
16103 "All entries in the directory are returned, including C<.> and C<..>.  The "
16104 "entries are I<not> sorted, but returned in the same order as the underlying "
16105 "filesystem."
16106 msgstr ""
16107
16108 #. type: textblock
16109 #: ../src/guestfs-actions.pod:5852 ../fish/guestfish-actions.pod:3851
16110 msgid ""
16111 "Also this call returns basic file type information about each file.  The "
16112 "C<ftyp> field will contain one of the following characters:"
16113 msgstr ""
16114
16115 #. type: =item
16116 #: ../src/guestfs-actions.pod:5857 ../fish/guestfish-actions.pod:3856
16117 msgid "'b'"
16118 msgstr ""
16119
16120 #. type: textblock
16121 #: ../src/guestfs-actions.pod:5859 ../fish/guestfish-actions.pod:3858
16122 msgid "Block special"
16123 msgstr ""
16124
16125 #. type: =item
16126 #: ../src/guestfs-actions.pod:5861 ../fish/guestfish-actions.pod:3860
16127 msgid "'c'"
16128 msgstr ""
16129
16130 #. type: textblock
16131 #: ../src/guestfs-actions.pod:5863 ../fish/guestfish-actions.pod:3862
16132 msgid "Char special"
16133 msgstr ""
16134
16135 #. type: =item
16136 #: ../src/guestfs-actions.pod:5865 ../fish/guestfish-actions.pod:3864
16137 msgid "'d'"
16138 msgstr ""
16139
16140 #. type: textblock
16141 #: ../src/guestfs-actions.pod:5867 ../fish/guestfish-actions.pod:3866
16142 msgid "Directory"
16143 msgstr ""
16144
16145 #. type: =item
16146 #: ../src/guestfs-actions.pod:5869 ../fish/guestfish-actions.pod:3868
16147 msgid "'f'"
16148 msgstr ""
16149
16150 #. type: textblock
16151 #: ../src/guestfs-actions.pod:5871 ../fish/guestfish-actions.pod:3870
16152 msgid "FIFO (named pipe)"
16153 msgstr ""
16154
16155 #. type: =item
16156 #: ../src/guestfs-actions.pod:5873 ../fish/guestfish-actions.pod:3872
16157 msgid "'l'"
16158 msgstr ""
16159
16160 #. type: textblock
16161 #: ../src/guestfs-actions.pod:5875 ../fish/guestfish-actions.pod:3874
16162 msgid "Symbolic link"
16163 msgstr ""
16164
16165 #. type: =item
16166 #: ../src/guestfs-actions.pod:5877 ../fish/guestfish-actions.pod:3876
16167 msgid "'r'"
16168 msgstr ""
16169
16170 #. type: textblock
16171 #: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3878
16172 msgid "Regular file"
16173 msgstr ""
16174
16175 #. type: =item
16176 #: ../src/guestfs-actions.pod:5881 ../fish/guestfish-actions.pod:3880
16177 msgid "'s'"
16178 msgstr ""
16179
16180 #. type: textblock
16181 #: ../src/guestfs-actions.pod:5883 ../fish/guestfish-actions.pod:3882
16182 msgid "Socket"
16183 msgstr ""
16184
16185 #. type: =item
16186 #: ../src/guestfs-actions.pod:5885 ../fish/guestfish-actions.pod:3884
16187 msgid "'u'"
16188 msgstr ""
16189
16190 #. type: textblock
16191 #: ../src/guestfs-actions.pod:5887 ../fish/guestfish-actions.pod:3886
16192 msgid "Unknown file type"
16193 msgstr ""
16194
16195 #. type: =item
16196 #: ../src/guestfs-actions.pod:5889 ../fish/guestfish-actions.pod:3888
16197 msgid "'?'"
16198 msgstr ""
16199
16200 #. type: textblock
16201 #: ../src/guestfs-actions.pod:5891 ../fish/guestfish-actions.pod:3890
16202 msgid ""
16203 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
16204 msgstr ""
16205
16206 #. type: textblock
16207 #: ../src/guestfs-actions.pod:5896
16208 msgid ""
16209 "This function is primarily intended for use by programs.  To get a simple "
16210 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
16211 "consumption, use C<guestfs_ll>."
16212 msgstr ""
16213
16214 #. type: textblock
16215 #: ../src/guestfs-actions.pod:5900
16216 msgid ""
16217 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
16218 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
16219 "use>."
16220 msgstr ""
16221
16222 #. type: =head2
16223 #: ../src/guestfs-actions.pod:5906
16224 msgid "guestfs_readlink"
16225 msgstr ""
16226
16227 #. type: verbatim
16228 #: ../src/guestfs-actions.pod:5908
16229 #, no-wrap
16230 msgid ""
16231 " char *\n"
16232 " guestfs_readlink (guestfs_h *g,\n"
16233 "                   const char *path);\n"
16234 "\n"
16235 msgstr ""
16236
16237 #. type: textblock
16238 #: ../src/guestfs-actions.pod:5912 ../fish/guestfish-actions.pod:3903
16239 msgid "This command reads the target of a symbolic link."
16240 msgstr ""
16241
16242 #. type: =head2
16243 #: ../src/guestfs-actions.pod:5919
16244 msgid "guestfs_readlinklist"
16245 msgstr ""
16246
16247 #. type: verbatim
16248 #: ../src/guestfs-actions.pod:5921
16249 #, no-wrap
16250 msgid ""
16251 " char **\n"
16252 " guestfs_readlinklist (guestfs_h *g,\n"
16253 "                       const char *path,\n"
16254 "                       char *const *names);\n"
16255 "\n"
16256 msgstr ""
16257
16258 #. type: textblock
16259 #: ../src/guestfs-actions.pod:5926 ../fish/guestfish-actions.pod:3909
16260 msgid ""
16261 "This call allows you to do a C<readlink> operation on multiple files, where "
16262 "all files are in the directory C<path>.  C<names> is the list of files from "
16263 "this directory."
16264 msgstr ""
16265
16266 #. type: textblock
16267 #: ../src/guestfs-actions.pod:5930 ../fish/guestfish-actions.pod:3913
16268 msgid ""
16269 "On return you get a list of strings, with a one-to-one correspondence to the"
16270 " C<names> list.  Each string is the value of the symbolic link."
16271 msgstr ""
16272
16273 #. type: textblock
16274 #: ../src/guestfs-actions.pod:5934 ../fish/guestfish-actions.pod:3917
16275 msgid ""
16276 "If the C<readlink(2)> operation fails on any name, then the corresponding "
16277 "result string is the empty string C<\"\">.  However the whole operation is "
16278 "completed even if there were C<readlink(2)> errors, and so you can call this"
16279 " function with names where you don't know if they are symbolic links already"
16280 " (albeit slightly less efficient)."
16281 msgstr ""
16282
16283 #. type: textblock
16284 #: ../src/guestfs-actions.pod:5941 ../fish/guestfish-actions.pod:3924
16285 msgid ""
16286 "This call is intended for programs that want to efficiently list a directory"
16287 " contents without making many round-trips.  Very long directory listings "
16288 "might cause the protocol message size to be exceeded, causing this call to "
16289 "fail.  The caller must split up such requests into smaller groups of names."
16290 msgstr ""
16291
16292 #. type: =head2
16293 #: ../src/guestfs-actions.pod:5954
16294 msgid "guestfs_realpath"
16295 msgstr ""
16296
16297 #. type: verbatim
16298 #: ../src/guestfs-actions.pod:5956
16299 #, no-wrap
16300 msgid ""
16301 " char *\n"
16302 " guestfs_realpath (guestfs_h *g,\n"
16303 "                   const char *path);\n"
16304 "\n"
16305 msgstr ""
16306
16307 #. type: textblock
16308 #: ../src/guestfs-actions.pod:5960 ../fish/guestfish-actions.pod:3935
16309 msgid ""
16310 "Return the canonicalized absolute pathname of C<path>.  The returned path "
16311 "has no C<.>, C<..> or symbolic link path elements."
16312 msgstr ""
16313
16314 #. type: =head2
16315 #: ../src/guestfs-actions.pod:5968
16316 msgid "guestfs_removexattr"
16317 msgstr ""
16318
16319 #. type: verbatim
16320 #: ../src/guestfs-actions.pod:5970
16321 #, no-wrap
16322 msgid ""
16323 " int\n"
16324 " guestfs_removexattr (guestfs_h *g,\n"
16325 "                      const char *xattr,\n"
16326 "                      const char *path);\n"
16327 "\n"
16328 msgstr ""
16329
16330 #. type: textblock
16331 #: ../src/guestfs-actions.pod:5975 ../fish/guestfish-actions.pod:3942
16332 msgid ""
16333 "This call removes the extended attribute named C<xattr> of the file C<path>."
16334 msgstr ""
16335
16336 #. type: textblock
16337 #: ../src/guestfs-actions.pod:5978
16338 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
16339 msgstr ""
16340
16341 #. type: =head2
16342 #: ../src/guestfs-actions.pod:5984
16343 msgid "guestfs_resize2fs"
16344 msgstr ""
16345
16346 #. type: verbatim
16347 #: ../src/guestfs-actions.pod:5986
16348 #, no-wrap
16349 msgid ""
16350 " int\n"
16351 " guestfs_resize2fs (guestfs_h *g,\n"
16352 "                    const char *device);\n"
16353 "\n"
16354 msgstr ""
16355
16356 #. type: textblock
16357 #: ../src/guestfs-actions.pod:5990 ../fish/guestfish-actions.pod:3951
16358 msgid ""
16359 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
16360 "underlying device."
16361 msgstr ""
16362
16363 #. type: textblock
16364 #: ../src/guestfs-actions.pod:5993
16365 msgid ""
16366 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
16367 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
16368 "sometimes gives an error about this and sometimes not.  In any case, it is "
16369 "always safe to call C<guestfs_e2fsck_f> before calling this function."
16370 msgstr ""
16371
16372 #. type: =head2
16373 #: ../src/guestfs-actions.pod:6003
16374 msgid "guestfs_resize2fs_M"
16375 msgstr ""
16376
16377 #. type: verbatim
16378 #: ../src/guestfs-actions.pod:6005
16379 #, no-wrap
16380 msgid ""
16381 " int\n"
16382 " guestfs_resize2fs_M (guestfs_h *g,\n"
16383 "                      const char *device);\n"
16384 "\n"
16385 msgstr ""
16386
16387 #. type: textblock
16388 #: ../src/guestfs-actions.pod:6009
16389 msgid ""
16390 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
16391 "resized to its minimum size.  This works like the I<-M> option to the "
16392 "C<resize2fs> command."
16393 msgstr ""
16394
16395 #. type: textblock
16396 #: ../src/guestfs-actions.pod:6013
16397 msgid ""
16398 "To get the resulting size of the filesystem you should call "
16399 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
16400 "These two numbers, multiplied together, give the resulting size of the "
16401 "minimal filesystem in bytes."
16402 msgstr ""
16403
16404 #. type: =head2
16405 #: ../src/guestfs-actions.pod:6022
16406 msgid "guestfs_resize2fs_size"
16407 msgstr ""
16408
16409 #. type: verbatim
16410 #: ../src/guestfs-actions.pod:6024
16411 #, no-wrap
16412 msgid ""
16413 " int\n"
16414 " guestfs_resize2fs_size (guestfs_h *g,\n"
16415 "                         const char *device,\n"
16416 "                         int64_t size);\n"
16417 "\n"
16418 msgstr ""
16419
16420 #. type: textblock
16421 #: ../src/guestfs-actions.pod:6029
16422 msgid ""
16423 "This command is the same as C<guestfs_resize2fs> except that it allows you "
16424 "to specify the new size (in bytes) explicitly."
16425 msgstr ""
16426
16427 #. type: =head2
16428 #: ../src/guestfs-actions.pod:6036
16429 msgid "guestfs_rm"
16430 msgstr ""
16431
16432 #. type: verbatim
16433 #: ../src/guestfs-actions.pod:6038
16434 #, no-wrap
16435 msgid ""
16436 " int\n"
16437 " guestfs_rm (guestfs_h *g,\n"
16438 "             const char *path);\n"
16439 "\n"
16440 msgstr ""
16441
16442 #. type: textblock
16443 #: ../src/guestfs-actions.pod:6042 ../fish/guestfish-actions.pod:3984
16444 msgid "Remove the single file C<path>."
16445 msgstr ""
16446
16447 #. type: =head2
16448 #: ../src/guestfs-actions.pod:6048
16449 msgid "guestfs_rm_rf"
16450 msgstr ""
16451
16452 #. type: verbatim
16453 #: ../src/guestfs-actions.pod:6050
16454 #, no-wrap
16455 msgid ""
16456 " int\n"
16457 " guestfs_rm_rf (guestfs_h *g,\n"
16458 "                const char *path);\n"
16459 "\n"
16460 msgstr ""
16461
16462 #. type: textblock
16463 #: ../src/guestfs-actions.pod:6054 ../fish/guestfish-actions.pod:3990
16464 msgid ""
16465 "Remove the file or directory C<path>, recursively removing the contents if "
16466 "its a directory.  This is like the C<rm -rf> shell command."
16467 msgstr ""
16468
16469 #. type: =head2
16470 #: ../src/guestfs-actions.pod:6062
16471 msgid "guestfs_rmdir"
16472 msgstr ""
16473
16474 #. type: verbatim
16475 #: ../src/guestfs-actions.pod:6064
16476 #, no-wrap
16477 msgid ""
16478 " int\n"
16479 " guestfs_rmdir (guestfs_h *g,\n"
16480 "                const char *path);\n"
16481 "\n"
16482 msgstr ""
16483
16484 #. type: textblock
16485 #: ../src/guestfs-actions.pod:6068 ../fish/guestfish-actions.pod:3998
16486 msgid "Remove the single directory C<path>."
16487 msgstr ""
16488
16489 #. type: =head2
16490 #: ../src/guestfs-actions.pod:6074
16491 msgid "guestfs_rmmountpoint"
16492 msgstr ""
16493
16494 #. type: verbatim
16495 #: ../src/guestfs-actions.pod:6076
16496 #, no-wrap
16497 msgid ""
16498 " int\n"
16499 " guestfs_rmmountpoint (guestfs_h *g,\n"
16500 "                       const char *exemptpath);\n"
16501 "\n"
16502 msgstr ""
16503
16504 #. type: textblock
16505 #: ../src/guestfs-actions.pod:6080
16506 msgid ""
16507 "This calls removes a mountpoint that was previously created with "
16508 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
16509 msgstr ""
16510
16511 #. type: =head2
16512 #: ../src/guestfs-actions.pod:6088
16513 msgid "guestfs_scrub_device"
16514 msgstr ""
16515
16516 #. type: verbatim
16517 #: ../src/guestfs-actions.pod:6090
16518 #, no-wrap
16519 msgid ""
16520 " int\n"
16521 " guestfs_scrub_device (guestfs_h *g,\n"
16522 "                       const char *device);\n"
16523 "\n"
16524 msgstr ""
16525
16526 #. type: textblock
16527 #: ../src/guestfs-actions.pod:6094 ../fish/guestfish-actions.pod:4012
16528 msgid ""
16529 "This command writes patterns over C<device> to make data retrieval more "
16530 "difficult."
16531 msgstr ""
16532
16533 #. type: textblock
16534 #: ../src/guestfs-actions.pod:6097 ../src/guestfs-actions.pod:6118
16535 #: ../src/guestfs-actions.pod:6137 ../fish/guestfish-actions.pod:4015
16536 #: ../fish/guestfish-actions.pod:4030 ../fish/guestfish-actions.pod:4043
16537 msgid ""
16538 "It is an interface to the L<scrub(1)> program.  See that manual page for "
16539 "more details."
16540 msgstr ""
16541
16542 #. type: textblock
16543 #: ../src/guestfs-actions.pod:6105 ../src/guestfs-actions.pod:6123
16544 #: ../src/guestfs-actions.pod:6142
16545 msgid "(Added in 1.0.52)"
16546 msgstr ""
16547
16548 #. type: =head2
16549 #: ../src/guestfs-actions.pod:6107
16550 msgid "guestfs_scrub_file"
16551 msgstr ""
16552
16553 #. type: verbatim
16554 #: ../src/guestfs-actions.pod:6109
16555 #, no-wrap
16556 msgid ""
16557 " int\n"
16558 " guestfs_scrub_file (guestfs_h *g,\n"
16559 "                     const char *file);\n"
16560 "\n"
16561 msgstr ""
16562
16563 #. type: textblock
16564 #: ../src/guestfs-actions.pod:6113 ../fish/guestfish-actions.pod:4025
16565 msgid ""
16566 "This command writes patterns over a file to make data retrieval more "
16567 "difficult."
16568 msgstr ""
16569
16570 #. type: textblock
16571 #: ../src/guestfs-actions.pod:6116 ../fish/guestfish-actions.pod:4028
16572 msgid "The file is I<removed> after scrubbing."
16573 msgstr ""
16574
16575 #. type: =head2
16576 #: ../src/guestfs-actions.pod:6125
16577 msgid "guestfs_scrub_freespace"
16578 msgstr ""
16579
16580 #. type: verbatim
16581 #: ../src/guestfs-actions.pod:6127
16582 #, no-wrap
16583 msgid ""
16584 " int\n"
16585 " guestfs_scrub_freespace (guestfs_h *g,\n"
16586 "                          const char *dir);\n"
16587 "\n"
16588 msgstr ""
16589
16590 #. type: textblock
16591 #: ../src/guestfs-actions.pod:6131
16592 msgid ""
16593 "This command creates the directory C<dir> and then fills it with files until"
16594 " the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
16595 "and deletes them.  The intention is to scrub any free space on the partition"
16596 " containing C<dir>."
16597 msgstr ""
16598
16599 #. type: =head2
16600 #: ../src/guestfs-actions.pod:6144
16601 msgid "guestfs_set_append"
16602 msgstr ""
16603
16604 #. type: verbatim
16605 #: ../src/guestfs-actions.pod:6146
16606 #, no-wrap
16607 msgid ""
16608 " int\n"
16609 " guestfs_set_append (guestfs_h *g,\n"
16610 "                     const char *append);\n"
16611 "\n"
16612 msgstr ""
16613
16614 #. type: textblock
16615 #: ../src/guestfs-actions.pod:6150 ../fish/guestfish-actions.pod:4052
16616 msgid ""
16617 "This function is used to add additional options to the guest kernel command "
16618 "line."
16619 msgstr ""
16620
16621 #. type: textblock
16622 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4055
16623 msgid ""
16624 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
16625 "environment variable."
16626 msgstr ""
16627
16628 #. type: textblock
16629 #: ../src/guestfs-actions.pod:6156 ../fish/guestfish-actions.pod:4058
16630 msgid ""
16631 "Setting C<append> to C<NULL> means I<no> additional options are passed "
16632 "(libguestfs always adds a few of its own)."
16633 msgstr ""
16634
16635 #. type: =head2
16636 #: ../src/guestfs-actions.pod:6163
16637 msgid "guestfs_set_attach_method"
16638 msgstr ""
16639
16640 #. type: verbatim
16641 #: ../src/guestfs-actions.pod:6165
16642 #, no-wrap
16643 msgid ""
16644 " int\n"
16645 " guestfs_set_attach_method (guestfs_h *g,\n"
16646 "                            const char *attachmethod);\n"
16647 "\n"
16648 msgstr ""
16649
16650 #. type: textblock
16651 #: ../src/guestfs-actions.pod:6169 ../fish/guestfish-actions.pod:4067
16652 msgid ""
16653 "Set the method that libguestfs uses to connect to the back end guestfsd "
16654 "daemon.  Possible methods are:"
16655 msgstr ""
16656
16657 #. type: textblock
16658 #: ../src/guestfs-actions.pod:6176 ../fish/guestfish-actions.pod:4074
16659 msgid ""
16660 "Launch an appliance and connect to it.  This is the ordinary method and the "
16661 "default."
16662 msgstr ""
16663
16664 #. type: =item
16665 #: ../src/guestfs-actions.pod:6179 ../fish/guestfish-actions.pod:4077
16666 msgid "C<unix:I<path>>"
16667 msgstr ""
16668
16669 #. type: textblock
16670 #: ../src/guestfs-actions.pod:6181 ../fish/guestfish-actions.pod:4079
16671 msgid "Connect to the Unix domain socket I<path>."
16672 msgstr ""
16673
16674 #. type: textblock
16675 #: ../src/guestfs-actions.pod:6183 ../fish/guestfish-actions.pod:4081
16676 msgid ""
16677 "This method lets you connect to an existing daemon or (using virtio-serial) "
16678 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
16679 "RUNNING DAEMONS>."
16680 msgstr ""
16681
16682 #. type: =head2
16683 #: ../src/guestfs-actions.pod:6193
16684 msgid "guestfs_set_autosync"
16685 msgstr ""
16686
16687 #. type: verbatim
16688 #: ../src/guestfs-actions.pod:6195
16689 #, no-wrap
16690 msgid ""
16691 " int\n"
16692 " guestfs_set_autosync (guestfs_h *g,\n"
16693 "                       int autosync);\n"
16694 "\n"
16695 msgstr ""
16696
16697 #. type: textblock
16698 #: ../src/guestfs-actions.pod:6199 ../fish/guestfish-actions.pod:4093
16699 msgid ""
16700 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
16701 "effort attempt to make filesystems consistent and synchronized when the "
16702 "handle is closed (also if the program exits without closing handles)."
16703 msgstr ""
16704
16705 #. type: textblock
16706 #: ../src/guestfs-actions.pod:6204 ../fish/guestfish-actions.pod:4098
16707 msgid ""
16708 "This is enabled by default (since libguestfs 1.5.24, previously it was "
16709 "disabled by default)."
16710 msgstr ""
16711
16712 #. type: =head2
16713 #: ../src/guestfs-actions.pod:6211
16714 msgid "guestfs_set_direct"
16715 msgstr ""
16716
16717 #. type: verbatim
16718 #: ../src/guestfs-actions.pod:6213
16719 #, no-wrap
16720 msgid ""
16721 " int\n"
16722 " guestfs_set_direct (guestfs_h *g,\n"
16723 "                     int direct);\n"
16724 "\n"
16725 msgstr ""
16726
16727 #. type: textblock
16728 #: ../src/guestfs-actions.pod:6217 ../fish/guestfish-actions.pod:4107
16729 msgid ""
16730 "If the direct appliance mode flag is enabled, then stdin and stdout are "
16731 "passed directly through to the appliance once it is launched."
16732 msgstr ""
16733
16734 #. type: textblock
16735 #: ../src/guestfs-actions.pod:6221
16736 msgid ""
16737 "One consequence of this is that log messages aren't caught by the library "
16738 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
16739 "stdout."
16740 msgstr ""
16741
16742 #. type: textblock
16743 #: ../src/guestfs-actions.pod:6225 ../fish/guestfish-actions.pod:4115
16744 msgid ""
16745 "You probably don't want to use this unless you know what you are doing."
16746 msgstr ""
16747
16748 #. type: textblock
16749 #: ../src/guestfs-actions.pod:6228 ../fish/guestfish-actions.pod:4118
16750 msgid "The default is disabled."
16751 msgstr ""
16752
16753 #. type: =head2
16754 #: ../src/guestfs-actions.pod:6234
16755 msgid "guestfs_set_e2label"
16756 msgstr ""
16757
16758 #. type: verbatim
16759 #: ../src/guestfs-actions.pod:6236
16760 #, no-wrap
16761 msgid ""
16762 " int\n"
16763 " guestfs_set_e2label (guestfs_h *g,\n"
16764 "                      const char *device,\n"
16765 "                      const char *label);\n"
16766 "\n"
16767 msgstr ""
16768
16769 #. type: textblock
16770 #: ../src/guestfs-actions.pod:6241 ../fish/guestfish-actions.pod:4124
16771 msgid ""
16772 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16773 "C<label>.  Filesystem labels are limited to 16 characters."
16774 msgstr ""
16775
16776 #. type: textblock
16777 #: ../src/guestfs-actions.pod:6245
16778 msgid ""
16779 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16780 "the existing label on a filesystem."
16781 msgstr ""
16782
16783 #. type: =head2
16784 #: ../src/guestfs-actions.pod:6252
16785 msgid "guestfs_set_e2uuid"
16786 msgstr ""
16787
16788 #. type: verbatim
16789 #: ../src/guestfs-actions.pod:6254
16790 #, no-wrap
16791 msgid ""
16792 " int\n"
16793 " guestfs_set_e2uuid (guestfs_h *g,\n"
16794 "                     const char *device,\n"
16795 "                     const char *uuid);\n"
16796 "\n"
16797 msgstr ""
16798
16799 #. type: textblock
16800 #: ../src/guestfs-actions.pod:6259 ../fish/guestfish-actions.pod:4135
16801 msgid ""
16802 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16803 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16804 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16805 msgstr ""
16806
16807 #. type: textblock
16808 #: ../src/guestfs-actions.pod:6264
16809 msgid ""
16810 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16811 "the existing UUID of a filesystem."
16812 msgstr ""
16813
16814 #. type: =head2
16815 #: ../src/guestfs-actions.pod:6271
16816 msgid "guestfs_set_memsize"
16817 msgstr ""
16818
16819 #. type: verbatim
16820 #: ../src/guestfs-actions.pod:6273
16821 #, no-wrap
16822 msgid ""
16823 " int\n"
16824 " guestfs_set_memsize (guestfs_h *g,\n"
16825 "                      int memsize);\n"
16826 "\n"
16827 msgstr ""
16828
16829 #. type: textblock
16830 #: ../src/guestfs-actions.pod:6277
16831 msgid ""
16832 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16833 "This only has any effect if called before C<guestfs_launch>."
16834 msgstr ""
16835
16836 #. type: textblock
16837 #: ../src/guestfs-actions.pod:6281 ../fish/guestfish-actions.pod:4153
16838 msgid ""
16839 "You can also change this by setting the environment variable "
16840 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16841 msgstr ""
16842
16843 #. type: =head2
16844 #: ../src/guestfs-actions.pod:6292
16845 msgid "guestfs_set_network"
16846 msgstr ""
16847
16848 #. type: verbatim
16849 #: ../src/guestfs-actions.pod:6294
16850 #, no-wrap
16851 msgid ""
16852 " int\n"
16853 " guestfs_set_network (guestfs_h *g,\n"
16854 "                      int network);\n"
16855 "\n"
16856 msgstr ""
16857
16858 #. type: textblock
16859 #: ../src/guestfs-actions.pod:6298 ../fish/guestfish-actions.pod:4166
16860 msgid ""
16861 "If C<network> is true, then the network is enabled in the libguestfs "
16862 "appliance.  The default is false."
16863 msgstr ""
16864
16865 #. type: textblock
16866 #: ../src/guestfs-actions.pod:6301 ../fish/guestfish-actions.pod:4169
16867 msgid ""
16868 "This affects whether commands are able to access the network (see "
16869 "L<guestfs(3)/RUNNING COMMANDS>)."
16870 msgstr ""
16871
16872 #. type: textblock
16873 #: ../src/guestfs-actions.pod:6304
16874 msgid ""
16875 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16876 "effect."
16877 msgstr ""
16878
16879 #. type: =head2
16880 #: ../src/guestfs-actions.pod:6311
16881 msgid "guestfs_set_path"
16882 msgstr ""
16883
16884 #. type: verbatim
16885 #: ../src/guestfs-actions.pod:6313
16886 #, no-wrap
16887 msgid ""
16888 " int\n"
16889 " guestfs_set_path (guestfs_h *g,\n"
16890 "                   const char *searchpath);\n"
16891 "\n"
16892 msgstr ""
16893
16894 #. type: textblock
16895 #: ../src/guestfs-actions.pod:6317 ../fish/guestfish-actions.pod:4181
16896 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16897 msgstr ""
16898
16899 #. type: textblock
16900 #: ../src/guestfs-actions.pod:6319 ../fish/guestfish-actions.pod:4183
16901 msgid ""
16902 "The default is C<$libdir/guestfs> unless overridden by setting "
16903 "C<LIBGUESTFS_PATH> environment variable."
16904 msgstr ""
16905
16906 #. type: textblock
16907 #: ../src/guestfs-actions.pod:6322 ../fish/guestfish-actions.pod:4186
16908 msgid "Setting C<path> to C<NULL> restores the default path."
16909 msgstr ""
16910
16911 #. type: =head2
16912 #: ../src/guestfs-actions.pod:6328
16913 msgid "guestfs_set_pgroup"
16914 msgstr ""
16915
16916 #. type: verbatim
16917 #: ../src/guestfs-actions.pod:6330
16918 #, no-wrap
16919 msgid ""
16920 " int\n"
16921 " guestfs_set_pgroup (guestfs_h *g,\n"
16922 "                     int pgroup);\n"
16923 "\n"
16924 msgstr ""
16925
16926 #. type: textblock
16927 #: ../src/guestfs-actions.pod:6334 ../fish/guestfish-actions.pod:4194
16928 msgid ""
16929 "If C<pgroup> is true, child processes are placed into their own process "
16930 "group."
16931 msgstr ""
16932
16933 #. type: textblock
16934 #: ../src/guestfs-actions.pod:6337 ../fish/guestfish-actions.pod:4197
16935 msgid ""
16936 "The practical upshot of this is that signals like C<SIGINT> (from users "
16937 "pressing C<^C>) won't be received by the child process."
16938 msgstr ""
16939
16940 #. type: textblock
16941 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4200
16942 msgid ""
16943 "The default for this flag is false, because usually you want C<^C> to kill "
16944 "the subprocess."
16945 msgstr ""
16946
16947 #. type: =head2
16948 #: ../src/guestfs-actions.pod:6345
16949 msgid "guestfs_set_qemu"
16950 msgstr ""
16951
16952 #. type: verbatim
16953 #: ../src/guestfs-actions.pod:6347
16954 #, no-wrap
16955 msgid ""
16956 " int\n"
16957 " guestfs_set_qemu (guestfs_h *g,\n"
16958 "                   const char *qemu);\n"
16959 "\n"
16960 msgstr ""
16961
16962 #. type: textblock
16963 #: ../src/guestfs-actions.pod:6351 ../fish/guestfish-actions.pod:4209
16964 msgid "Set the qemu binary that we will use."
16965 msgstr ""
16966
16967 #. type: textblock
16968 #: ../src/guestfs-actions.pod:6353 ../fish/guestfish-actions.pod:4211
16969 msgid ""
16970 "The default is chosen when the library was compiled by the configure script."
16971 msgstr ""
16972
16973 #. type: textblock
16974 #: ../src/guestfs-actions.pod:6356 ../fish/guestfish-actions.pod:4214
16975 msgid ""
16976 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16977 "variable."
16978 msgstr ""
16979
16980 #. type: textblock
16981 #: ../src/guestfs-actions.pod:6359 ../fish/guestfish-actions.pod:4217
16982 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16983 msgstr ""
16984
16985 #. type: textblock
16986 #: ../src/guestfs-actions.pod:6361 ../fish/guestfish-actions.pod:4219
16987 msgid ""
16988 "Note that you should call this function as early as possible after creating "
16989 "the handle.  This is because some pre-launch operations depend on testing "
16990 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16991 "don't retest features, and so you might see inconsistent results.  Using the"
16992 " environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16993 "the qemu binary at the same time as the handle is created."
16994 msgstr ""
16995
16996 #. type: =head2
16997 #: ../src/guestfs-actions.pod:6373
16998 msgid "guestfs_set_recovery_proc"
16999 msgstr ""
17000
17001 #. type: verbatim
17002 #: ../src/guestfs-actions.pod:6375
17003 #, no-wrap
17004 msgid ""
17005 " int\n"
17006 " guestfs_set_recovery_proc (guestfs_h *g,\n"
17007 "                            int recoveryproc);\n"
17008 "\n"
17009 msgstr ""
17010
17011 #. type: textblock
17012 #: ../src/guestfs-actions.pod:6379
17013 msgid ""
17014 "If this is called with the parameter C<false> then C<guestfs_launch> does "
17015 "not create a recovery process.  The purpose of the recovery process is to "
17016 "stop runaway qemu processes in the case where the main program aborts "
17017 "abruptly."
17018 msgstr ""
17019
17020 #. type: textblock
17021 #: ../src/guestfs-actions.pod:6384
17022 msgid ""
17023 "This only has any effect if called before C<guestfs_launch>, and the default"
17024 " is true."
17025 msgstr ""
17026
17027 #. type: textblock
17028 #: ../src/guestfs-actions.pod:6387 ../fish/guestfish-actions.pod:4241
17029 msgid ""
17030 "About the only time when you would want to disable this is if the main "
17031 "process will fork itself into the background (\"daemonize\" itself).  In "
17032 "this case the recovery process thinks that the main program has disappeared "
17033 "and so kills qemu, which is not very helpful."
17034 msgstr ""
17035
17036 #. type: =head2
17037 #: ../src/guestfs-actions.pod:6397
17038 msgid "guestfs_set_selinux"
17039 msgstr ""
17040
17041 #. type: verbatim
17042 #: ../src/guestfs-actions.pod:6399
17043 #, no-wrap
17044 msgid ""
17045 " int\n"
17046 " guestfs_set_selinux (guestfs_h *g,\n"
17047 "                      int selinux);\n"
17048 "\n"
17049 msgstr ""
17050
17051 #. type: textblock
17052 #: ../src/guestfs-actions.pod:6403 ../fish/guestfish-actions.pod:4253
17053 msgid ""
17054 "This sets the selinux flag that is passed to the appliance at boot time.  "
17055 "The default is C<selinux=0> (disabled)."
17056 msgstr ""
17057
17058 #. type: textblock
17059 #: ../src/guestfs-actions.pod:6406 ../fish/guestfish-actions.pod:4256
17060 msgid ""
17061 "Note that if SELinux is enabled, it is always in Permissive mode "
17062 "(C<enforcing=0>)."
17063 msgstr ""
17064
17065 #. type: =head2
17066 #: ../src/guestfs-actions.pod:6416
17067 msgid "guestfs_set_trace"
17068 msgstr ""
17069
17070 #. type: verbatim
17071 #: ../src/guestfs-actions.pod:6418
17072 #, no-wrap
17073 msgid ""
17074 " int\n"
17075 " guestfs_set_trace (guestfs_h *g,\n"
17076 "                    int trace);\n"
17077 "\n"
17078 msgstr ""
17079
17080 #. type: textblock
17081 #: ../src/guestfs-actions.pod:6422 ../fish/guestfish-actions.pod:4268
17082 msgid ""
17083 "If the command trace flag is set to 1, then libguestfs calls, parameters and"
17084 " return values are traced."
17085 msgstr ""
17086
17087 #. type: textblock
17088 #: ../src/guestfs-actions.pod:6425 ../fish/guestfish-actions.pod:4271
17089 msgid ""
17090 "If you want to trace C API calls into libguestfs (and other libraries) then "
17091 "possibly a better way is to use the external ltrace(1) command."
17092 msgstr ""
17093
17094 #. type: textblock
17095 #: ../src/guestfs-actions.pod:6429 ../fish/guestfish-actions.pod:4275
17096 msgid ""
17097 "Command traces are disabled unless the environment variable "
17098 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
17099 msgstr ""
17100
17101 #. type: textblock
17102 #: ../src/guestfs-actions.pod:6432
17103 msgid ""
17104 "Trace messages are normally sent to C<stderr>, unless you register a "
17105 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
17106 msgstr ""
17107
17108 #. type: =head2
17109 #: ../src/guestfs-actions.pod:6440
17110 msgid "guestfs_set_verbose"
17111 msgstr ""
17112
17113 #. type: verbatim
17114 #: ../src/guestfs-actions.pod:6442
17115 #, no-wrap
17116 msgid ""
17117 " int\n"
17118 " guestfs_set_verbose (guestfs_h *g,\n"
17119 "                      int verbose);\n"
17120 "\n"
17121 msgstr ""
17122
17123 #. type: textblock
17124 #: ../src/guestfs-actions.pod:6446 ../fish/guestfish-actions.pod:4288
17125 msgid "If C<verbose> is true, this turns on verbose messages."
17126 msgstr ""
17127
17128 #. type: textblock
17129 #: ../src/guestfs-actions.pod:6448 ../fish/guestfish-actions.pod:4290
17130 msgid ""
17131 "Verbose messages are disabled unless the environment variable "
17132 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
17133 msgstr ""
17134
17135 #. type: textblock
17136 #: ../src/guestfs-actions.pod:6451
17137 msgid ""
17138 "Verbose messages are normally sent to C<stderr>, unless you register a "
17139 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
17140 msgstr ""
17141
17142 #. type: =head2
17143 #: ../src/guestfs-actions.pod:6459
17144 msgid "guestfs_setcon"
17145 msgstr ""
17146
17147 #. type: verbatim
17148 #: ../src/guestfs-actions.pod:6461
17149 #, no-wrap
17150 msgid ""
17151 " int\n"
17152 " guestfs_setcon (guestfs_h *g,\n"
17153 "                 const char *context);\n"
17154 "\n"
17155 msgstr ""
17156
17157 #. type: textblock
17158 #: ../src/guestfs-actions.pod:6465 ../fish/guestfish-actions.pod:4301
17159 msgid ""
17160 "This sets the SELinux security context of the daemon to the string "
17161 "C<context>."
17162 msgstr ""
17163
17164 #. type: textblock
17165 #: ../src/guestfs-actions.pod:6468 ../fish/guestfish-actions.pod:4304
17166 msgid "See the documentation about SELINUX in L<guestfs(3)>."
17167 msgstr ""
17168
17169 #. type: =head2
17170 #: ../src/guestfs-actions.pod:6474
17171 msgid "guestfs_setxattr"
17172 msgstr ""
17173
17174 #. type: verbatim
17175 #: ../src/guestfs-actions.pod:6476
17176 #, no-wrap
17177 msgid ""
17178 " int\n"
17179 " guestfs_setxattr (guestfs_h *g,\n"
17180 "                   const char *xattr,\n"
17181 "                   const char *val,\n"
17182 "                   int vallen,\n"
17183 "                   const char *path);\n"
17184 "\n"
17185 msgstr ""
17186
17187 #. type: textblock
17188 #: ../src/guestfs-actions.pod:6483 ../fish/guestfish-actions.pod:4310
17189 msgid ""
17190 "This call sets the extended attribute named C<xattr> of the file C<path> to "
17191 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
17192 msgstr ""
17193
17194 #. type: textblock
17195 #: ../src/guestfs-actions.pod:6487
17196 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
17197 msgstr ""
17198
17199 #. type: =head2
17200 #: ../src/guestfs-actions.pod:6493
17201 msgid "guestfs_sfdisk"
17202 msgstr ""
17203
17204 #. type: verbatim
17205 #: ../src/guestfs-actions.pod:6495
17206 #, no-wrap
17207 msgid ""
17208 " int\n"
17209 " guestfs_sfdisk (guestfs_h *g,\n"
17210 "                 const char *device,\n"
17211 "                 int cyls,\n"
17212 "                 int heads,\n"
17213 "                 int sectors,\n"
17214 "                 char *const *lines);\n"
17215 "\n"
17216 msgstr ""
17217
17218 #. type: textblock
17219 #: ../src/guestfs-actions.pod:6503 ../fish/guestfish-actions.pod:4320
17220 msgid ""
17221 "This is a direct interface to the L<sfdisk(8)> program for creating "
17222 "partitions on block devices."
17223 msgstr ""
17224
17225 #. type: textblock
17226 #: ../src/guestfs-actions.pod:6506 ../fish/guestfish-actions.pod:4323
17227 msgid "C<device> should be a block device, for example C</dev/sda>."
17228 msgstr ""
17229
17230 #. type: textblock
17231 #: ../src/guestfs-actions.pod:6508 ../fish/guestfish-actions.pod:4325
17232 msgid ""
17233 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
17234 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
17235 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
17236 "corresponding parameter is omitted.  Usually for 'large' disks, you can just"
17237 " pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather,"
17238 " the kernel) cannot work out the right geometry and you will need to tell "
17239 "it."
17240 msgstr ""
17241
17242 #. type: textblock
17243 #: ../src/guestfs-actions.pod:6516 ../fish/guestfish-actions.pod:4333
17244 msgid ""
17245 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information"
17246 " refer to the L<sfdisk(8)> manpage."
17247 msgstr ""
17248
17249 #. type: textblock
17250 #: ../src/guestfs-actions.pod:6519 ../fish/guestfish-actions.pod:4336
17251 msgid ""
17252 "To create a single partition occupying the whole disk, you would pass "
17253 "C<lines> as a single element list, when the single element being the string "
17254 "C<,> (comma)."
17255 msgstr ""
17256
17257 #. type: textblock
17258 #: ../src/guestfs-actions.pod:6523
17259 msgid ""
17260 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
17261 msgstr ""
17262
17263 #. type: textblock
17264 #: ../src/guestfs-actions.pod:6531 ../src/guestfs-actions.pod:6561
17265 #: ../src/guestfs-actions.pod:6594 ../fish/guestfish-actions.pod:4346
17266 #: ../fish/guestfish-actions.pod:4369 ../fish/guestfish-actions.pod:4391
17267 msgid ""
17268 "This function is deprecated.  In new code, use the C<part_add> call instead."
17269 msgstr ""
17270
17271 #. type: =head2
17272 #: ../src/guestfs-actions.pod:6540
17273 msgid "guestfs_sfdiskM"
17274 msgstr ""
17275
17276 #. type: verbatim
17277 #: ../src/guestfs-actions.pod:6542
17278 #, no-wrap
17279 msgid ""
17280 " int\n"
17281 " guestfs_sfdiskM (guestfs_h *g,\n"
17282 "                  const char *device,\n"
17283 "                  char *const *lines);\n"
17284 "\n"
17285 msgstr ""
17286
17287 #. type: textblock
17288 #: ../src/guestfs-actions.pod:6547
17289 msgid ""
17290 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
17291 "partition sizes are specified in megabytes only (rounded to the nearest "
17292 "cylinder) and you don't need to specify the cyls, heads and sectors "
17293 "parameters which were rarely if ever used anyway."
17294 msgstr ""
17295
17296 #. type: textblock
17297 #: ../src/guestfs-actions.pod:6553
17298 msgid ""
17299 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
17300 "C<guestfs_part_disk>"
17301 msgstr ""
17302
17303 #. type: =head2
17304 #: ../src/guestfs-actions.pod:6570
17305 msgid "guestfs_sfdisk_N"
17306 msgstr ""
17307
17308 #. type: verbatim
17309 #: ../src/guestfs-actions.pod:6572
17310 #, no-wrap
17311 msgid ""
17312 " int\n"
17313 " guestfs_sfdisk_N (guestfs_h *g,\n"
17314 "                   const char *device,\n"
17315 "                   int partnum,\n"
17316 "                   int cyls,\n"
17317 "                   int heads,\n"
17318 "                   int sectors,\n"
17319 "                   const char *line);\n"
17320 "\n"
17321 msgstr ""
17322
17323 #. type: textblock
17324 #: ../src/guestfs-actions.pod:6581 ../fish/guestfish-actions.pod:4380
17325 msgid ""
17326 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
17327 "(note: C<n> counts from 1)."
17328 msgstr ""
17329
17330 #. type: textblock
17331 #: ../src/guestfs-actions.pod:6584
17332 msgid ""
17333 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
17334 "for the cyls/heads/sectors parameters."
17335 msgstr ""
17336
17337 #. type: textblock
17338 #: ../src/guestfs-actions.pod:6587
17339 msgid "See also: C<guestfs_part_add>"
17340 msgstr ""
17341
17342 #. type: =head2
17343 #: ../src/guestfs-actions.pod:6603
17344 msgid "guestfs_sfdisk_disk_geometry"
17345 msgstr ""
17346
17347 #. type: verbatim
17348 #: ../src/guestfs-actions.pod:6605
17349 #, no-wrap
17350 msgid ""
17351 " char *\n"
17352 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
17353 "                               const char *device);\n"
17354 "\n"
17355 msgstr ""
17356
17357 #. type: textblock
17358 #: ../src/guestfs-actions.pod:6609
17359 msgid ""
17360 "This displays the disk geometry of C<device> read from the partition table."
17361 "  Especially in the case where the underlying block device has been resized,"
17362 " this can be different from the kernel's idea of the geometry (see "
17363 "C<guestfs_sfdisk_kernel_geometry>)."
17364 msgstr ""
17365
17366 #. type: textblock
17367 #: ../src/guestfs-actions.pod:6614 ../src/guestfs-actions.pod:6630
17368 #: ../fish/guestfish-actions.pod:4407 ../fish/guestfish-actions.pod:4416
17369 msgid "The result is in human-readable format, and not designed to be parsed."
17370 msgstr ""
17371
17372 #. type: =head2
17373 #: ../src/guestfs-actions.pod:6622
17374 msgid "guestfs_sfdisk_kernel_geometry"
17375 msgstr ""
17376
17377 #. type: verbatim
17378 #: ../src/guestfs-actions.pod:6624
17379 #, no-wrap
17380 msgid ""
17381 " char *\n"
17382 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
17383 "                                 const char *device);\n"
17384 "\n"
17385 msgstr ""
17386
17387 #. type: textblock
17388 #: ../src/guestfs-actions.pod:6628 ../fish/guestfish-actions.pod:4414
17389 msgid "This displays the kernel's idea of the geometry of C<device>."
17390 msgstr ""
17391
17392 #. type: =head2
17393 #: ../src/guestfs-actions.pod:6638
17394 msgid "guestfs_sfdisk_l"
17395 msgstr ""
17396
17397 #. type: verbatim
17398 #: ../src/guestfs-actions.pod:6640
17399 #, no-wrap
17400 msgid ""
17401 " char *\n"
17402 " guestfs_sfdisk_l (guestfs_h *g,\n"
17403 "                   const char *device);\n"
17404 "\n"
17405 msgstr ""
17406
17407 #. type: textblock
17408 #: ../src/guestfs-actions.pod:6644 ../fish/guestfish-actions.pod:4423
17409 msgid ""
17410 "This displays the partition table on C<device>, in the human-readable output"
17411 " of the L<sfdisk(8)> command.  It is not intended to be parsed."
17412 msgstr ""
17413
17414 #. type: textblock
17415 #: ../src/guestfs-actions.pod:6648
17416 msgid "See also: C<guestfs_part_list>"
17417 msgstr ""
17418
17419 #. type: textblock
17420 #: ../src/guestfs-actions.pod:6653 ../fish/guestfish-actions.pod:4429
17421 msgid ""
17422 "This function is deprecated.  In new code, use the C<part_list> call "
17423 "instead."
17424 msgstr ""
17425
17426 #. type: =head2
17427 #: ../src/guestfs-actions.pod:6662
17428 msgid "guestfs_sh"
17429 msgstr ""
17430
17431 #. type: verbatim
17432 #: ../src/guestfs-actions.pod:6664
17433 #, no-wrap
17434 msgid ""
17435 " char *\n"
17436 " guestfs_sh (guestfs_h *g,\n"
17437 "             const char *command);\n"
17438 "\n"
17439 msgstr ""
17440
17441 #. type: textblock
17442 #: ../src/guestfs-actions.pod:6668 ../fish/guestfish-actions.pod:4440
17443 msgid ""
17444 "This call runs a command from the guest filesystem via the guest's "
17445 "C</bin/sh>."
17446 msgstr ""
17447
17448 #. type: textblock
17449 #: ../src/guestfs-actions.pod:6671
17450 msgid "This is like C<guestfs_command>, but passes the command to:"
17451 msgstr ""
17452
17453 #. type: verbatim
17454 #: ../src/guestfs-actions.pod:6673 ../fish/guestfish-actions.pod:4445
17455 #, no-wrap
17456 msgid ""
17457 " /bin/sh -c \"command\"\n"
17458 "\n"
17459 msgstr ""
17460
17461 #. type: textblock
17462 #: ../src/guestfs-actions.pod:6675 ../fish/guestfish-actions.pod:4447
17463 msgid ""
17464 "Depending on the guest's shell, this usually results in wildcards being "
17465 "expanded, shell expressions being interpolated and so on."
17466 msgstr ""
17467
17468 #. type: textblock
17469 #: ../src/guestfs-actions.pod:6679
17470 msgid "All the provisos about C<guestfs_command> apply to this call."
17471 msgstr ""
17472
17473 #. type: =head2
17474 #: ../src/guestfs-actions.pod:6686
17475 msgid "guestfs_sh_lines"
17476 msgstr ""
17477
17478 #. type: verbatim
17479 #: ../src/guestfs-actions.pod:6688
17480 #, no-wrap
17481 msgid ""
17482 " char **\n"
17483 " guestfs_sh_lines (guestfs_h *g,\n"
17484 "                   const char *command);\n"
17485 "\n"
17486 msgstr ""
17487
17488 #. type: textblock
17489 #: ../src/guestfs-actions.pod:6692
17490 msgid ""
17491 "This is the same as C<guestfs_sh>, but splits the result into a list of "
17492 "lines."
17493 msgstr ""
17494
17495 #. type: textblock
17496 #: ../src/guestfs-actions.pod:6695
17497 msgid "See also: C<guestfs_command_lines>"
17498 msgstr ""
17499
17500 #. type: =head2
17501 #: ../src/guestfs-actions.pod:6703
17502 msgid "guestfs_sleep"
17503 msgstr ""
17504
17505 #. type: verbatim
17506 #: ../src/guestfs-actions.pod:6705
17507 #, no-wrap
17508 msgid ""
17509 " int\n"
17510 " guestfs_sleep (guestfs_h *g,\n"
17511 "                int secs);\n"
17512 "\n"
17513 msgstr ""
17514
17515 #. type: textblock
17516 #: ../src/guestfs-actions.pod:6709 ../fish/guestfish-actions.pod:4466
17517 msgid "Sleep for C<secs> seconds."
17518 msgstr ""
17519
17520 #. type: textblock
17521 #: ../src/guestfs-actions.pod:6713
17522 msgid "(Added in 1.0.41)"
17523 msgstr ""
17524
17525 #. type: =head2
17526 #: ../src/guestfs-actions.pod:6715 ../src/guestfs-structs.pod:109
17527 msgid "guestfs_stat"
17528 msgstr ""
17529
17530 #. type: verbatim
17531 #: ../src/guestfs-actions.pod:6717
17532 #, no-wrap
17533 msgid ""
17534 " struct guestfs_stat *\n"
17535 " guestfs_stat (guestfs_h *g,\n"
17536 "               const char *path);\n"
17537 "\n"
17538 msgstr ""
17539
17540 #. type: textblock
17541 #: ../src/guestfs-actions.pod:6723 ../fish/guestfish-actions.pod:4474
17542 msgid "This is the same as the C<stat(2)> system call."
17543 msgstr ""
17544
17545 #. type: =head2
17546 #: ../src/guestfs-actions.pod:6731 ../src/guestfs-structs.pod:135
17547 msgid "guestfs_statvfs"
17548 msgstr ""
17549
17550 #. type: verbatim
17551 #: ../src/guestfs-actions.pod:6733
17552 #, no-wrap
17553 msgid ""
17554 " struct guestfs_statvfs *\n"
17555 " guestfs_statvfs (guestfs_h *g,\n"
17556 "                  const char *path);\n"
17557 "\n"
17558 msgstr ""
17559
17560 #. type: textblock
17561 #: ../src/guestfs-actions.pod:6737 ../fish/guestfish-actions.pod:4480
17562 msgid ""
17563 "Returns file system statistics for any mounted file system.  C<path> should "
17564 "be a file or directory in the mounted file system (typically it is the mount"
17565 " point itself, but it doesn't need to be)."
17566 msgstr ""
17567
17568 #. type: textblock
17569 #: ../src/guestfs-actions.pod:6741 ../fish/guestfish-actions.pod:4484
17570 msgid "This is the same as the C<statvfs(2)> system call."
17571 msgstr ""
17572
17573 #. type: textblock
17574 #: ../src/guestfs-actions.pod:6743
17575 msgid ""
17576 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an"
17577 " error.  I<The caller must call C<guestfs_free_statvfs> after use>."
17578 msgstr ""
17579
17580 #. type: =head2
17581 #: ../src/guestfs-actions.pod:6749
17582 msgid "guestfs_strings"
17583 msgstr ""
17584
17585 #. type: verbatim
17586 #: ../src/guestfs-actions.pod:6751
17587 #, no-wrap
17588 msgid ""
17589 " char **\n"
17590 " guestfs_strings (guestfs_h *g,\n"
17591 "                  const char *path);\n"
17592 "\n"
17593 msgstr ""
17594
17595 #. type: textblock
17596 #: ../src/guestfs-actions.pod:6755 ../fish/guestfish-actions.pod:4490
17597 msgid ""
17598 "This runs the L<strings(1)> command on a file and returns the list of "
17599 "printable strings found."
17600 msgstr ""
17601
17602 #. type: =head2
17603 #: ../src/guestfs-actions.pod:6767
17604 msgid "guestfs_strings_e"
17605 msgstr ""
17606
17607 #. type: verbatim
17608 #: ../src/guestfs-actions.pod:6769
17609 #, no-wrap
17610 msgid ""
17611 " char **\n"
17612 " guestfs_strings_e (guestfs_h *g,\n"
17613 "                    const char *encoding,\n"
17614 "                    const char *path);\n"
17615 "\n"
17616 msgstr ""
17617
17618 #. type: textblock
17619 #: ../src/guestfs-actions.pod:6774
17620 msgid ""
17621 "This is like the C<guestfs_strings> command, but allows you to specify the "
17622 "encoding of strings that are looked for in the source file C<path>."
17623 msgstr ""
17624
17625 #. type: textblock
17626 #: ../src/guestfs-actions.pod:6778 ../fish/guestfish-actions.pod:4504
17627 msgid "Allowed encodings are:"
17628 msgstr ""
17629
17630 #. type: =item
17631 #: ../src/guestfs-actions.pod:6782 ../fish/guestfish-actions.pod:4508
17632 msgid "s"
17633 msgstr ""
17634
17635 #. type: textblock
17636 #: ../src/guestfs-actions.pod:6784
17637 msgid ""
17638 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
17639 "ISO-8859-X (this is what C<guestfs_strings> uses)."
17640 msgstr ""
17641
17642 #. type: =item
17643 #: ../src/guestfs-actions.pod:6787 ../fish/guestfish-actions.pod:4513
17644 msgid "S"
17645 msgstr ""
17646
17647 #. type: textblock
17648 #: ../src/guestfs-actions.pod:6789 ../fish/guestfish-actions.pod:4515
17649 msgid "Single 8-bit-byte characters."
17650 msgstr ""
17651
17652 #. type: =item
17653 #: ../src/guestfs-actions.pod:6791 ../fish/guestfish-actions.pod:4517
17654 msgid "b"
17655 msgstr ""
17656
17657 #. type: textblock
17658 #: ../src/guestfs-actions.pod:6793 ../fish/guestfish-actions.pod:4519
17659 msgid ""
17660 "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
17661 msgstr ""
17662
17663 #. type: =item
17664 #: ../src/guestfs-actions.pod:6796 ../fish/guestfish-actions.pod:4522
17665 msgid "l (lower case letter L)"
17666 msgstr ""
17667
17668 #. type: textblock
17669 #: ../src/guestfs-actions.pod:6798 ../fish/guestfish-actions.pod:4524
17670 msgid ""
17671 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
17672 "examining binaries in Windows guests."
17673 msgstr ""
17674
17675 #. type: =item
17676 #: ../src/guestfs-actions.pod:6801 ../fish/guestfish-actions.pod:4527
17677 msgid "B"
17678 msgstr ""
17679
17680 #. type: textblock
17681 #: ../src/guestfs-actions.pod:6803 ../fish/guestfish-actions.pod:4529
17682 msgid "32-bit big endian such as UCS-4BE."
17683 msgstr ""
17684
17685 #. type: =item
17686 #: ../src/guestfs-actions.pod:6805 ../fish/guestfish-actions.pod:4531
17687 msgid "L"
17688 msgstr ""
17689
17690 #. type: textblock
17691 #: ../src/guestfs-actions.pod:6807 ../fish/guestfish-actions.pod:4533
17692 msgid "32-bit little endian such as UCS-4LE."
17693 msgstr ""
17694
17695 #. type: textblock
17696 #: ../src/guestfs-actions.pod:6811 ../fish/guestfish-actions.pod:4537
17697 msgid "The returned strings are transcoded to UTF-8."
17698 msgstr ""
17699
17700 #. type: =head2
17701 #: ../src/guestfs-actions.pod:6822
17702 msgid "guestfs_swapoff_device"
17703 msgstr ""
17704
17705 #. type: verbatim
17706 #: ../src/guestfs-actions.pod:6824
17707 #, no-wrap
17708 msgid ""
17709 " int\n"
17710 " guestfs_swapoff_device (guestfs_h *g,\n"
17711 "                         const char *device);\n"
17712 "\n"
17713 msgstr ""
17714
17715 #. type: textblock
17716 #: ../src/guestfs-actions.pod:6828
17717 msgid ""
17718 "This command disables the libguestfs appliance swap device or partition "
17719 "named C<device>.  See C<guestfs_swapon_device>."
17720 msgstr ""
17721
17722 #. type: =head2
17723 #: ../src/guestfs-actions.pod:6836
17724 msgid "guestfs_swapoff_file"
17725 msgstr ""
17726
17727 #. type: verbatim
17728 #: ../src/guestfs-actions.pod:6838
17729 #, no-wrap
17730 msgid ""
17731 " int\n"
17732 " guestfs_swapoff_file (guestfs_h *g,\n"
17733 "                       const char *file);\n"
17734 "\n"
17735 msgstr ""
17736
17737 #. type: textblock
17738 #: ../src/guestfs-actions.pod:6842 ../fish/guestfish-actions.pod:4554
17739 msgid "This command disables the libguestfs appliance swap on file."
17740 msgstr ""
17741
17742 #. type: =head2
17743 #: ../src/guestfs-actions.pod:6848
17744 msgid "guestfs_swapoff_label"
17745 msgstr ""
17746
17747 #. type: verbatim
17748 #: ../src/guestfs-actions.pod:6850
17749 #, no-wrap
17750 msgid ""
17751 " int\n"
17752 " guestfs_swapoff_label (guestfs_h *g,\n"
17753 "                        const char *label);\n"
17754 "\n"
17755 msgstr ""
17756
17757 #. type: textblock
17758 #: ../src/guestfs-actions.pod:6854 ../fish/guestfish-actions.pod:4560
17759 msgid ""
17760 "This command disables the libguestfs appliance swap on labeled swap "
17761 "partition."
17762 msgstr ""
17763
17764 #. type: =head2
17765 #: ../src/guestfs-actions.pod:6861
17766 msgid "guestfs_swapoff_uuid"
17767 msgstr ""
17768
17769 #. type: verbatim
17770 #: ../src/guestfs-actions.pod:6863
17771 #, no-wrap
17772 msgid ""
17773 " int\n"
17774 " guestfs_swapoff_uuid (guestfs_h *g,\n"
17775 "                       const char *uuid);\n"
17776 "\n"
17777 msgstr ""
17778
17779 #. type: textblock
17780 #: ../src/guestfs-actions.pod:6867 ../fish/guestfish-actions.pod:4567
17781 msgid ""
17782 "This command disables the libguestfs appliance swap partition with the given"
17783 " UUID."
17784 msgstr ""
17785
17786 #. type: =head2
17787 #: ../src/guestfs-actions.pod:6874
17788 msgid "guestfs_swapon_device"
17789 msgstr ""
17790
17791 #. type: verbatim
17792 #: ../src/guestfs-actions.pod:6876
17793 #, no-wrap
17794 msgid ""
17795 " int\n"
17796 " guestfs_swapon_device (guestfs_h *g,\n"
17797 "                        const char *device);\n"
17798 "\n"
17799 msgstr ""
17800
17801 #. type: textblock
17802 #: ../src/guestfs-actions.pod:6880
17803 msgid ""
17804 "This command enables the libguestfs appliance to use the swap device or "
17805 "partition named C<device>.  The increased memory is made available for all "
17806 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17807 msgstr ""
17808
17809 #. type: textblock
17810 #: ../src/guestfs-actions.pod:6885 ../fish/guestfish-actions.pod:4579
17811 msgid ""
17812 "Note that you should not swap to existing guest swap partitions unless you "
17813 "know what you are doing.  They may contain hibernation information, or other"
17814 " information that the guest doesn't want you to trash.  You also risk "
17815 "leaking information about the host to the guest this way.  Instead, attach a"
17816 " new host device to the guest and swap on that."
17817 msgstr ""
17818
17819 #. type: =head2
17820 #: ../src/guestfs-actions.pod:6896
17821 msgid "guestfs_swapon_file"
17822 msgstr ""
17823
17824 #. type: verbatim
17825 #: ../src/guestfs-actions.pod:6898
17826 #, no-wrap
17827 msgid ""
17828 " int\n"
17829 " guestfs_swapon_file (guestfs_h *g,\n"
17830 "                      const char *file);\n"
17831 "\n"
17832 msgstr ""
17833
17834 #. type: textblock
17835 #: ../src/guestfs-actions.pod:6902
17836 msgid ""
17837 "This command enables swap to a file.  See C<guestfs_swapon_device> for other"
17838 " notes."
17839 msgstr ""
17840
17841 #. type: =head2
17842 #: ../src/guestfs-actions.pod:6909
17843 msgid "guestfs_swapon_label"
17844 msgstr ""
17845
17846 #. type: verbatim
17847 #: ../src/guestfs-actions.pod:6911
17848 #, no-wrap
17849 msgid ""
17850 " int\n"
17851 " guestfs_swapon_label (guestfs_h *g,\n"
17852 "                       const char *label);\n"
17853 "\n"
17854 msgstr ""
17855
17856 #. type: textblock
17857 #: ../src/guestfs-actions.pod:6915
17858 msgid ""
17859 "This command enables swap to a labeled swap partition.  See "
17860 "C<guestfs_swapon_device> for other notes."
17861 msgstr ""
17862
17863 #. type: =head2
17864 #: ../src/guestfs-actions.pod:6922
17865 msgid "guestfs_swapon_uuid"
17866 msgstr ""
17867
17868 #. type: verbatim
17869 #: ../src/guestfs-actions.pod:6924
17870 #, no-wrap
17871 msgid ""
17872 " int\n"
17873 " guestfs_swapon_uuid (guestfs_h *g,\n"
17874 "                      const char *uuid);\n"
17875 "\n"
17876 msgstr ""
17877
17878 #. type: textblock
17879 #: ../src/guestfs-actions.pod:6928
17880 msgid ""
17881 "This command enables swap to a swap partition with the given UUID.  See "
17882 "C<guestfs_swapon_device> for other notes."
17883 msgstr ""
17884
17885 #. type: =head2
17886 #: ../src/guestfs-actions.pod:6935
17887 msgid "guestfs_sync"
17888 msgstr ""
17889
17890 #. type: verbatim
17891 #: ../src/guestfs-actions.pod:6937
17892 #, no-wrap
17893 msgid ""
17894 " int\n"
17895 " guestfs_sync (guestfs_h *g);\n"
17896 "\n"
17897 msgstr ""
17898
17899 #. type: textblock
17900 #: ../src/guestfs-actions.pod:6940 ../fish/guestfish-actions.pod:4611
17901 msgid ""
17902 "This syncs the disk, so that any writes are flushed through to the "
17903 "underlying disk image."
17904 msgstr ""
17905
17906 #. type: textblock
17907 #: ../src/guestfs-actions.pod:6943 ../fish/guestfish-actions.pod:4614
17908 msgid ""
17909 "You should always call this if you have modified a disk image, before "
17910 "closing the handle."
17911 msgstr ""
17912
17913 #. type: =head2
17914 #: ../src/guestfs-actions.pod:6950
17915 msgid "guestfs_tail"
17916 msgstr ""
17917
17918 #. type: verbatim
17919 #: ../src/guestfs-actions.pod:6952
17920 #, no-wrap
17921 msgid ""
17922 " char **\n"
17923 " guestfs_tail (guestfs_h *g,\n"
17924 "               const char *path);\n"
17925 "\n"
17926 msgstr ""
17927
17928 #. type: textblock
17929 #: ../src/guestfs-actions.pod:6956 ../fish/guestfish-actions.pod:4621
17930 msgid ""
17931 "This command returns up to the last 10 lines of a file as a list of strings."
17932 msgstr ""
17933
17934 #. type: =head2
17935 #: ../src/guestfs-actions.pod:6968
17936 msgid "guestfs_tail_n"
17937 msgstr ""
17938
17939 #. type: verbatim
17940 #: ../src/guestfs-actions.pod:6970
17941 #, no-wrap
17942 msgid ""
17943 " char **\n"
17944 " guestfs_tail_n (guestfs_h *g,\n"
17945 "                 int nrlines,\n"
17946 "                 const char *path);\n"
17947 "\n"
17948 msgstr ""
17949
17950 #. type: textblock
17951 #: ../src/guestfs-actions.pod:6975 ../fish/guestfish-actions.pod:4631
17952 msgid ""
17953 "If the parameter C<nrlines> is a positive number, this returns the last "
17954 "C<nrlines> lines of the file C<path>."
17955 msgstr ""
17956
17957 #. type: textblock
17958 #: ../src/guestfs-actions.pod:6978 ../fish/guestfish-actions.pod:4634
17959 msgid ""
17960 "If the parameter C<nrlines> is a negative number, this returns lines from "
17961 "the file C<path>, starting with the C<-nrlines>th line."
17962 msgstr ""
17963
17964 #. type: =head2
17965 #: ../src/guestfs-actions.pod:6992
17966 msgid "guestfs_tar_in"
17967 msgstr ""
17968
17969 #. type: verbatim
17970 #: ../src/guestfs-actions.pod:6994
17971 #, no-wrap
17972 msgid ""
17973 " int\n"
17974 " guestfs_tar_in (guestfs_h *g,\n"
17975 "                 const char *tarfile,\n"
17976 "                 const char *directory);\n"
17977 "\n"
17978 msgstr ""
17979
17980 #. type: textblock
17981 #: ../src/guestfs-actions.pod:6999 ../fish/guestfish-actions.pod:4646
17982 msgid ""
17983 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17984 "tar file) into C<directory>."
17985 msgstr ""
17986
17987 #. type: textblock
17988 #: ../src/guestfs-actions.pod:7002
17989 msgid ""
17990 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17991 msgstr ""
17992
17993 #. type: textblock
17994 #: ../src/guestfs-actions.pod:7007 ../src/guestfs-actions.pod:7024
17995 #: ../src/guestfs-actions.pod:7040 ../src/guestfs-actions.pod:7056
17996 msgid "(Added in 1.0.3)"
17997 msgstr ""
17998
17999 #. type: =head2
18000 #: ../src/guestfs-actions.pod:7009
18001 msgid "guestfs_tar_out"
18002 msgstr ""
18003
18004 #. type: verbatim
18005 #: ../src/guestfs-actions.pod:7011
18006 #, no-wrap
18007 msgid ""
18008 " int\n"
18009 " guestfs_tar_out (guestfs_h *g,\n"
18010 "                  const char *directory,\n"
18011 "                  const char *tarfile);\n"
18012 "\n"
18013 msgstr ""
18014
18015 #. type: textblock
18016 #: ../src/guestfs-actions.pod:7016 ../fish/guestfish-actions.pod:4658
18017 msgid ""
18018 "This command packs the contents of C<directory> and downloads it to local "
18019 "file C<tarfile>."
18020 msgstr ""
18021
18022 #. type: textblock
18023 #: ../src/guestfs-actions.pod:7019
18024 msgid ""
18025 "To download a compressed tarball, use C<guestfs_tgz_out> or "
18026 "C<guestfs_txz_out>."
18027 msgstr ""
18028
18029 #. type: =head2
18030 #: ../src/guestfs-actions.pod:7026
18031 msgid "guestfs_tgz_in"
18032 msgstr ""
18033
18034 #. type: verbatim
18035 #: ../src/guestfs-actions.pod:7028
18036 #, no-wrap
18037 msgid ""
18038 " int\n"
18039 " guestfs_tgz_in (guestfs_h *g,\n"
18040 "                 const char *tarball,\n"
18041 "                 const char *directory);\n"
18042 "\n"
18043 msgstr ""
18044
18045 #. type: textblock
18046 #: ../src/guestfs-actions.pod:7033 ../fish/guestfish-actions.pod:4670
18047 msgid ""
18048 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed>"
18049 " tar file) into C<directory>."
18050 msgstr ""
18051
18052 #. type: textblock
18053 #: ../src/guestfs-actions.pod:7036
18054 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
18055 msgstr ""
18056
18057 #. type: =head2
18058 #: ../src/guestfs-actions.pod:7042
18059 msgid "guestfs_tgz_out"
18060 msgstr ""
18061
18062 #. type: verbatim
18063 #: ../src/guestfs-actions.pod:7044
18064 #, no-wrap
18065 msgid ""
18066 " int\n"
18067 " guestfs_tgz_out (guestfs_h *g,\n"
18068 "                  const char *directory,\n"
18069 "                  const char *tarball);\n"
18070 "\n"
18071 msgstr ""
18072
18073 #. type: textblock
18074 #: ../src/guestfs-actions.pod:7049 ../fish/guestfish-actions.pod:4681
18075 msgid ""
18076 "This command packs the contents of C<directory> and downloads it to local "
18077 "file C<tarball>."
18078 msgstr ""
18079
18080 #. type: textblock
18081 #: ../src/guestfs-actions.pod:7052
18082 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
18083 msgstr ""
18084
18085 #. type: =head2
18086 #: ../src/guestfs-actions.pod:7058
18087 msgid "guestfs_touch"
18088 msgstr ""
18089
18090 #. type: verbatim
18091 #: ../src/guestfs-actions.pod:7060
18092 #, no-wrap
18093 msgid ""
18094 " int\n"
18095 " guestfs_touch (guestfs_h *g,\n"
18096 "                const char *path);\n"
18097 "\n"
18098 msgstr ""
18099
18100 #. type: textblock
18101 #: ../src/guestfs-actions.pod:7064 ../fish/guestfish-actions.pod:4692
18102 msgid ""
18103 "Touch acts like the L<touch(1)> command.  It can be used to update the "
18104 "timestamps on a file, or, if the file does not exist, to create a new zero-"
18105 "length file."
18106 msgstr ""
18107
18108 #. type: textblock
18109 #: ../src/guestfs-actions.pod:7068 ../fish/guestfish-actions.pod:4696
18110 msgid ""
18111 "This command only works on regular files, and will fail on other file types "
18112 "such as directories, symbolic links, block special etc."
18113 msgstr ""
18114
18115 #. type: =head2
18116 #: ../src/guestfs-actions.pod:7075
18117 msgid "guestfs_truncate"
18118 msgstr ""
18119
18120 #. type: verbatim
18121 #: ../src/guestfs-actions.pod:7077
18122 #, no-wrap
18123 msgid ""
18124 " int\n"
18125 " guestfs_truncate (guestfs_h *g,\n"
18126 "                   const char *path);\n"
18127 "\n"
18128 msgstr ""
18129
18130 #. type: textblock
18131 #: ../src/guestfs-actions.pod:7081 ../fish/guestfish-actions.pod:4703
18132 msgid ""
18133 "This command truncates C<path> to a zero-length file.  The file must exist "
18134 "already."
18135 msgstr ""
18136
18137 #. type: =head2
18138 #: ../src/guestfs-actions.pod:7088
18139 msgid "guestfs_truncate_size"
18140 msgstr ""
18141
18142 #. type: verbatim
18143 #: ../src/guestfs-actions.pod:7090
18144 #, no-wrap
18145 msgid ""
18146 " int\n"
18147 " guestfs_truncate_size (guestfs_h *g,\n"
18148 "                        const char *path,\n"
18149 "                        int64_t size);\n"
18150 "\n"
18151 msgstr ""
18152
18153 #. type: textblock
18154 #: ../src/guestfs-actions.pod:7095 ../fish/guestfish-actions.pod:4710
18155 msgid ""
18156 "This command truncates C<path> to size C<size> bytes.  The file must exist "
18157 "already."
18158 msgstr ""
18159
18160 #. type: textblock
18161 #: ../src/guestfs-actions.pod:7098
18162 msgid ""
18163 "If the current file size is less than C<size> then the file is extended to "
18164 "the required size with zero bytes.  This creates a sparse file (ie. disk "
18165 "blocks are not allocated for the file until you write to it).  To create a "
18166 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
18167 msgstr ""
18168
18169 #. type: =head2
18170 #: ../src/guestfs-actions.pod:7108
18171 msgid "guestfs_tune2fs_l"
18172 msgstr ""
18173
18174 #. type: verbatim
18175 #: ../src/guestfs-actions.pod:7110
18176 #, no-wrap
18177 msgid ""
18178 " char **\n"
18179 " guestfs_tune2fs_l (guestfs_h *g,\n"
18180 "                    const char *device);\n"
18181 "\n"
18182 msgstr ""
18183
18184 #. type: textblock
18185 #: ../src/guestfs-actions.pod:7114 ../fish/guestfish-actions.pod:4723
18186 msgid ""
18187 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on"
18188 " C<device>."
18189 msgstr ""
18190
18191 #. type: textblock
18192 #: ../src/guestfs-actions.pod:7117 ../fish/guestfish-actions.pod:4726
18193 msgid ""
18194 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
18195 "for more details.  The list of fields returned isn't clearly defined, and "
18196 "depends on both the version of C<tune2fs> that libguestfs was built against,"
18197 " and the filesystem itself."
18198 msgstr ""
18199
18200 #. type: =head2
18201 #: ../src/guestfs-actions.pod:7130
18202 msgid "guestfs_txz_in"
18203 msgstr ""
18204
18205 #. type: verbatim
18206 #: ../src/guestfs-actions.pod:7132
18207 #, no-wrap
18208 msgid ""
18209 " int\n"
18210 " guestfs_txz_in (guestfs_h *g,\n"
18211 "                 const char *tarball,\n"
18212 "                 const char *directory);\n"
18213 "\n"
18214 msgstr ""
18215
18216 #. type: textblock
18217 #: ../src/guestfs-actions.pod:7137 ../fish/guestfish-actions.pod:4735
18218 msgid ""
18219 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
18220 "tar file) into C<directory>."
18221 msgstr ""
18222
18223 #. type: =head2
18224 #: ../src/guestfs-actions.pod:7144
18225 msgid "guestfs_txz_out"
18226 msgstr ""
18227
18228 #. type: verbatim
18229 #: ../src/guestfs-actions.pod:7146
18230 #, no-wrap
18231 msgid ""
18232 " int\n"
18233 " guestfs_txz_out (guestfs_h *g,\n"
18234 "                  const char *directory,\n"
18235 "                  const char *tarball);\n"
18236 "\n"
18237 msgstr ""
18238
18239 #. type: textblock
18240 #: ../src/guestfs-actions.pod:7151 ../fish/guestfish-actions.pod:4744
18241 msgid ""
18242 "This command packs the contents of C<directory> and downloads it to local "
18243 "file C<tarball> (as an xz compressed tar archive)."
18244 msgstr ""
18245
18246 #. type: =head2
18247 #: ../src/guestfs-actions.pod:7158
18248 msgid "guestfs_umask"
18249 msgstr ""
18250
18251 #. type: verbatim
18252 #: ../src/guestfs-actions.pod:7160
18253 #, no-wrap
18254 msgid ""
18255 " int\n"
18256 " guestfs_umask (guestfs_h *g,\n"
18257 "                int mask);\n"
18258 "\n"
18259 msgstr ""
18260
18261 #. type: textblock
18262 #: ../src/guestfs-actions.pod:7164 ../fish/guestfish-actions.pod:4753
18263 msgid ""
18264 "This function sets the mask used for creating new files and device nodes to "
18265 "C<mask & 0777>."
18266 msgstr ""
18267
18268 #. type: textblock
18269 #: ../src/guestfs-actions.pod:7167 ../fish/guestfish-actions.pod:4756
18270 msgid ""
18271 "Typical umask values would be C<022> which creates new files with "
18272 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
18273 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
18274 msgstr ""
18275
18276 #. type: textblock
18277 #: ../src/guestfs-actions.pod:7172 ../fish/guestfish-actions.pod:4761
18278 msgid ""
18279 "The default umask is C<022>.  This is important because it means that "
18280 "directories and device nodes will be created with C<0644> or C<0755> mode "
18281 "even if you specify C<0777>."
18282 msgstr ""
18283
18284 #. type: textblock
18285 #: ../src/guestfs-actions.pod:7176
18286 msgid ""
18287 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
18288 "C<guestfs_mkdir>."
18289 msgstr ""
18290
18291 #. type: textblock
18292 #: ../src/guestfs-actions.pod:7179 ../fish/guestfish-actions.pod:4768
18293 msgid "This call returns the previous umask."
18294 msgstr ""
18295
18296 #. type: =head2
18297 #: ../src/guestfs-actions.pod:7185
18298 msgid "guestfs_umount"
18299 msgstr ""
18300
18301 #. type: verbatim
18302 #: ../src/guestfs-actions.pod:7187
18303 #, no-wrap
18304 msgid ""
18305 " int\n"
18306 " guestfs_umount (guestfs_h *g,\n"
18307 "                 const char *pathordevice);\n"
18308 "\n"
18309 msgstr ""
18310
18311 #. type: textblock
18312 #: ../src/guestfs-actions.pod:7191 ../fish/guestfish-actions.pod:4776
18313 msgid ""
18314 "This unmounts the given filesystem.  The filesystem may be specified either "
18315 "by its mountpoint (path) or the device which contains the filesystem."
18316 msgstr ""
18317
18318 #. type: =head2
18319 #: ../src/guestfs-actions.pod:7199
18320 msgid "guestfs_umount_all"
18321 msgstr ""
18322
18323 #. type: verbatim
18324 #: ../src/guestfs-actions.pod:7201
18325 #, no-wrap
18326 msgid ""
18327 " int\n"
18328 " guestfs_umount_all (guestfs_h *g);\n"
18329 "\n"
18330 msgstr ""
18331
18332 #. type: textblock
18333 #: ../src/guestfs-actions.pod:7204 ../fish/guestfish-actions.pod:4786
18334 msgid "This unmounts all mounted filesystems."
18335 msgstr ""
18336
18337 #. type: textblock
18338 #: ../src/guestfs-actions.pod:7206 ../fish/guestfish-actions.pod:4788
18339 msgid "Some internal mounts are not unmounted by this call."
18340 msgstr ""
18341
18342 #. type: =head2
18343 #: ../src/guestfs-actions.pod:7212
18344 msgid "guestfs_upload"
18345 msgstr ""
18346
18347 #. type: verbatim
18348 #: ../src/guestfs-actions.pod:7214
18349 #, no-wrap
18350 msgid ""
18351 " int\n"
18352 " guestfs_upload (guestfs_h *g,\n"
18353 "                 const char *filename,\n"
18354 "                 const char *remotefilename);\n"
18355 "\n"
18356 msgstr ""
18357
18358 #. type: textblock
18359 #: ../src/guestfs-actions.pod:7219 ../src/guestfs-actions.pod:7243
18360 #: ../fish/guestfish-actions.pod:4794 ../fish/guestfish-actions.pod:4807
18361 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
18362 msgstr ""
18363
18364 #. type: textblock
18365 #: ../src/guestfs-actions.pod:7224
18366 msgid "See also C<guestfs_download>."
18367 msgstr ""
18368
18369 #. type: =head2
18370 #: ../src/guestfs-actions.pod:7235
18371 msgid "guestfs_upload_offset"
18372 msgstr ""
18373
18374 #. type: verbatim
18375 #: ../src/guestfs-actions.pod:7237
18376 #, no-wrap
18377 msgid ""
18378 " int\n"
18379 " guestfs_upload_offset (guestfs_h *g,\n"
18380 "                        const char *filename,\n"
18381 "                        const char *remotefilename,\n"
18382 "                        int64_t offset);\n"
18383 "\n"
18384 msgstr ""
18385
18386 #. type: textblock
18387 #: ../src/guestfs-actions.pod:7246 ../fish/guestfish-actions.pod:4810
18388 msgid ""
18389 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
18390 "The intention is to overwrite parts of existing files or devices, although "
18391 "if a non-existant file is specified then it is created with a \"hole\" "
18392 "before C<offset>.  The size of the data written is implicit in the size of "
18393 "the source C<filename>."
18394 msgstr ""
18395
18396 #. type: textblock
18397 #: ../src/guestfs-actions.pod:7253
18398 msgid ""
18399 "Note that there is no limit on the amount of data that can be uploaded with "
18400 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
18401 "full amount unless an error occurs."
18402 msgstr ""
18403
18404 #. type: textblock
18405 #: ../src/guestfs-actions.pod:7258
18406 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
18407 msgstr ""
18408
18409 #. type: =head2
18410 #: ../src/guestfs-actions.pod:7269
18411 msgid "guestfs_utimens"
18412 msgstr ""
18413
18414 #. type: verbatim
18415 #: ../src/guestfs-actions.pod:7271
18416 #, no-wrap
18417 msgid ""
18418 " int\n"
18419 " guestfs_utimens (guestfs_h *g,\n"
18420 "                  const char *path,\n"
18421 "                  int64_t atsecs,\n"
18422 "                  int64_t atnsecs,\n"
18423 "                  int64_t mtsecs,\n"
18424 "                  int64_t mtnsecs);\n"
18425 "\n"
18426 msgstr ""
18427
18428 #. type: textblock
18429 #: ../src/guestfs-actions.pod:7279 ../fish/guestfish-actions.pod:4830
18430 msgid "This command sets the timestamps of a file with nanosecond precision."
18431 msgstr ""
18432
18433 #. type: textblock
18434 #: ../src/guestfs-actions.pod:7282 ../fish/guestfish-actions.pod:4833
18435 msgid ""
18436 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
18437 "from the epoch."
18438 msgstr ""
18439
18440 #. type: textblock
18441 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4836
18442 msgid ""
18443 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
18444 "nanoseconds from the epoch."
18445 msgstr ""
18446
18447 #. type: textblock
18448 #: ../src/guestfs-actions.pod:7288 ../fish/guestfish-actions.pod:4839
18449 msgid ""
18450 "If the C<*nsecs> field contains the special value C<-1> then the "
18451 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
18452 "ignored in this case)."
18453 msgstr ""
18454
18455 #. type: textblock
18456 #: ../src/guestfs-actions.pod:7292 ../fish/guestfish-actions.pod:4843
18457 msgid ""
18458 "If the C<*nsecs> field contains the special value C<-2> then the "
18459 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
18460 "in this case)."
18461 msgstr ""
18462
18463 #. type: =head2
18464 #: ../src/guestfs-actions.pod:7300 ../src/guestfs-structs.pod:175
18465 msgid "guestfs_version"
18466 msgstr ""
18467
18468 #. type: verbatim
18469 #: ../src/guestfs-actions.pod:7302
18470 #, no-wrap
18471 msgid ""
18472 " struct guestfs_version *\n"
18473 " guestfs_version (guestfs_h *g);\n"
18474 "\n"
18475 msgstr ""
18476
18477 #. type: textblock
18478 #: ../src/guestfs-actions.pod:7305 ../fish/guestfish-actions.pod:4851
18479 msgid ""
18480 "Return the libguestfs version number that the program is linked against."
18481 msgstr ""
18482
18483 #. type: textblock
18484 #: ../src/guestfs-actions.pod:7308 ../fish/guestfish-actions.pod:4854
18485 msgid ""
18486 "Note that because of dynamic linking this is not necessarily the version of "
18487 "libguestfs that you compiled against.  You can compile the program, and then"
18488 " at runtime dynamically link against a completely different C<libguestfs.so>"
18489 " library."
18490 msgstr ""
18491
18492 #. type: textblock
18493 #: ../src/guestfs-actions.pod:7313 ../fish/guestfish-actions.pod:4859
18494 msgid ""
18495 "This call was added in version C<1.0.58>.  In previous versions of "
18496 "libguestfs there was no way to get the version number.  From C code you can "
18497 "use dynamic linker functions to find out if this symbol exists (if it "
18498 "doesn't, then it's an earlier version)."
18499 msgstr ""
18500
18501 #. type: textblock
18502 #: ../src/guestfs-actions.pod:7319 ../fish/guestfish-actions.pod:4865
18503 msgid ""
18504 "The call returns a structure with four elements.  The first three (C<major>,"
18505 " C<minor> and C<release>) are numbers and correspond to the usual version "
18506 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
18507 "but may be used for distro-specific information."
18508 msgstr ""
18509
18510 #. type: textblock
18511 #: ../src/guestfs-actions.pod:7325 ../fish/guestfish-actions.pod:4871
18512 msgid ""
18513 "To construct the original version string: C<$major.$minor.$release$extra>"
18514 msgstr ""
18515
18516 #. type: textblock
18517 #: ../src/guestfs-actions.pod:7328 ../fish/guestfish-actions.pod:4874
18518 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
18519 msgstr ""
18520
18521 #. type: textblock
18522 #: ../src/guestfs-actions.pod:7330
18523 msgid ""
18524 "I<Note:> Don't use this call to test for availability of features.  In "
18525 "enterprise distributions we backport features from later versions into "
18526 "earlier versions, making this an unreliable way to test for features.  Use "
18527 "C<guestfs_available> instead."
18528 msgstr ""
18529
18530 #. type: textblock
18531 #: ../src/guestfs-actions.pod:7336
18532 msgid ""
18533 "This function returns a C<struct guestfs_version *>, or NULL if there was an"
18534 " error.  I<The caller must call C<guestfs_free_version> after use>."
18535 msgstr ""
18536
18537 #. type: textblock
18538 #: ../src/guestfs-actions.pod:7340
18539 msgid "(Added in 1.0.58)"
18540 msgstr ""
18541
18542 #. type: =head2
18543 #: ../src/guestfs-actions.pod:7342
18544 msgid "guestfs_vfs_label"
18545 msgstr ""
18546
18547 #. type: verbatim
18548 #: ../src/guestfs-actions.pod:7344
18549 #, no-wrap
18550 msgid ""
18551 " char *\n"
18552 " guestfs_vfs_label (guestfs_h *g,\n"
18553 "                    const char *device);\n"
18554 "\n"
18555 msgstr ""
18556
18557 #. type: textblock
18558 #: ../src/guestfs-actions.pod:7348 ../fish/guestfish-actions.pod:4886
18559 msgid "This returns the filesystem label of the filesystem on C<device>."
18560 msgstr ""
18561
18562 #. type: textblock
18563 #: ../src/guestfs-actions.pod:7351 ../fish/guestfish-actions.pod:4889
18564 msgid "If the filesystem is unlabeled, this returns the empty string."
18565 msgstr ""
18566
18567 #. type: textblock
18568 #: ../src/guestfs-actions.pod:7353
18569 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
18570 msgstr ""
18571
18572 #. type: textblock
18573 #: ../src/guestfs-actions.pod:7358 ../src/guestfs-actions.pod:7395
18574 msgid "(Added in 1.3.18)"
18575 msgstr ""
18576
18577 #. type: =head2
18578 #: ../src/guestfs-actions.pod:7360
18579 msgid "guestfs_vfs_type"
18580 msgstr ""
18581
18582 #. type: verbatim
18583 #: ../src/guestfs-actions.pod:7362
18584 #, no-wrap
18585 msgid ""
18586 " char *\n"
18587 " guestfs_vfs_type (guestfs_h *g,\n"
18588 "                   const char *device);\n"
18589 "\n"
18590 msgstr ""
18591
18592 #. type: textblock
18593 #: ../src/guestfs-actions.pod:7366 ../fish/guestfish-actions.pod:4897
18594 msgid ""
18595 "This command gets the filesystem type corresponding to the filesystem on "
18596 "C<device>."
18597 msgstr ""
18598
18599 #. type: textblock
18600 #: ../src/guestfs-actions.pod:7369 ../fish/guestfish-actions.pod:4900
18601 msgid ""
18602 "For most filesystems, the result is the name of the Linux VFS module which "
18603 "would be used to mount this filesystem if you mounted it without specifying "
18604 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
18605 msgstr ""
18606
18607 #. type: =head2
18608 #: ../src/guestfs-actions.pod:7379
18609 msgid "guestfs_vfs_uuid"
18610 msgstr ""
18611
18612 #. type: verbatim
18613 #: ../src/guestfs-actions.pod:7381
18614 #, no-wrap
18615 msgid ""
18616 " char *\n"
18617 " guestfs_vfs_uuid (guestfs_h *g,\n"
18618 "                   const char *device);\n"
18619 "\n"
18620 msgstr ""
18621
18622 #. type: textblock
18623 #: ../src/guestfs-actions.pod:7385 ../fish/guestfish-actions.pod:4909
18624 msgid "This returns the filesystem UUID of the filesystem on C<device>."
18625 msgstr ""
18626
18627 #. type: textblock
18628 #: ../src/guestfs-actions.pod:7388 ../fish/guestfish-actions.pod:4912
18629 msgid "If the filesystem does not have a UUID, this returns the empty string."
18630 msgstr ""
18631
18632 #. type: textblock
18633 #: ../src/guestfs-actions.pod:7390
18634 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
18635 msgstr ""
18636
18637 #. type: =head2
18638 #: ../src/guestfs-actions.pod:7397
18639 msgid "guestfs_vg_activate"
18640 msgstr ""
18641
18642 #. type: verbatim
18643 #: ../src/guestfs-actions.pod:7399
18644 #, no-wrap
18645 msgid ""
18646 " int\n"
18647 " guestfs_vg_activate (guestfs_h *g,\n"
18648 "                      int activate,\n"
18649 "                      char *const *volgroups);\n"
18650 "\n"
18651 msgstr ""
18652
18653 #. type: textblock
18654 #: ../src/guestfs-actions.pod:7404 ../fish/guestfish-actions.pod:4920
18655 msgid ""
18656 "This command activates or (if C<activate> is false) deactivates all logical "
18657 "volumes in the listed volume groups C<volgroups>."
18658 msgstr ""
18659
18660 #. type: textblock
18661 #: ../src/guestfs-actions.pod:7407 ../fish/guestfish-actions.pod:4923
18662 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
18663 msgstr ""
18664
18665 #. type: textblock
18666 #: ../src/guestfs-actions.pod:7409 ../fish/guestfish-actions.pod:4925
18667 msgid ""
18668 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
18669 "activated or deactivated."
18670 msgstr ""
18671
18672 #. type: =head2
18673 #: ../src/guestfs-actions.pod:7416
18674 msgid "guestfs_vg_activate_all"
18675 msgstr ""
18676
18677 #. type: verbatim
18678 #: ../src/guestfs-actions.pod:7418
18679 #, no-wrap
18680 msgid ""
18681 " int\n"
18682 " guestfs_vg_activate_all (guestfs_h *g,\n"
18683 "                          int activate);\n"
18684 "\n"
18685 msgstr ""
18686
18687 #. type: textblock
18688 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4932
18689 msgid ""
18690 "This command activates or (if C<activate> is false) deactivates all logical "
18691 "volumes in all volume groups."
18692 msgstr ""
18693
18694 #. type: textblock
18695 #: ../src/guestfs-actions.pod:7425 ../fish/guestfish-actions.pod:4935
18696 msgid "This command is the same as running C<vgchange -a y|n>"
18697 msgstr ""
18698
18699 #. type: =head2
18700 #: ../src/guestfs-actions.pod:7431
18701 msgid "guestfs_vgcreate"
18702 msgstr ""
18703
18704 #. type: verbatim
18705 #: ../src/guestfs-actions.pod:7433
18706 #, no-wrap
18707 msgid ""
18708 " int\n"
18709 " guestfs_vgcreate (guestfs_h *g,\n"
18710 "                   const char *volgroup,\n"
18711 "                   char *const *physvols);\n"
18712 "\n"
18713 msgstr ""
18714
18715 #. type: textblock
18716 #: ../src/guestfs-actions.pod:7438 ../fish/guestfish-actions.pod:4941
18717 msgid ""
18718 "This creates an LVM volume group called C<volgroup> from the non-empty list "
18719 "of physical volumes C<physvols>."
18720 msgstr ""
18721
18722 #. type: =head2
18723 #: ../src/guestfs-actions.pod:7445
18724 msgid "guestfs_vglvuuids"
18725 msgstr ""
18726
18727 #. type: verbatim
18728 #: ../src/guestfs-actions.pod:7447
18729 #, no-wrap
18730 msgid ""
18731 " char **\n"
18732 " guestfs_vglvuuids (guestfs_h *g,\n"
18733 "                    const char *vgname);\n"
18734 "\n"
18735 msgstr ""
18736
18737 #. type: textblock
18738 #: ../src/guestfs-actions.pod:7451 ../fish/guestfish-actions.pod:4948
18739 msgid ""
18740 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
18741 "volumes created in this volume group."
18742 msgstr ""
18743
18744 #. type: textblock
18745 #: ../src/guestfs-actions.pod:7454
18746 msgid ""
18747 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
18748 "associate logical volumes and volume groups."
18749 msgstr ""
18750
18751 #. type: textblock
18752 #: ../src/guestfs-actions.pod:7457
18753 msgid "See also C<guestfs_vgpvuuids>."
18754 msgstr ""
18755
18756 #. type: =head2
18757 #: ../src/guestfs-actions.pod:7465
18758 msgid "guestfs_vgpvuuids"
18759 msgstr ""
18760
18761 #. type: verbatim
18762 #: ../src/guestfs-actions.pod:7467
18763 #, no-wrap
18764 msgid ""
18765 " char **\n"
18766 " guestfs_vgpvuuids (guestfs_h *g,\n"
18767 "                    const char *vgname);\n"
18768 "\n"
18769 msgstr ""
18770
18771 #. type: textblock
18772 #: ../src/guestfs-actions.pod:7471 ../fish/guestfish-actions.pod:4960
18773 msgid ""
18774 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
18775 "volumes that this volume group resides on."
18776 msgstr ""
18777
18778 #. type: textblock
18779 #: ../src/guestfs-actions.pod:7474
18780 msgid ""
18781 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
18782 "associate physical volumes and volume groups."
18783 msgstr ""
18784
18785 #. type: textblock
18786 #: ../src/guestfs-actions.pod:7477
18787 msgid "See also C<guestfs_vglvuuids>."
18788 msgstr ""
18789
18790 #. type: =head2
18791 #: ../src/guestfs-actions.pod:7485
18792 msgid "guestfs_vgremove"
18793 msgstr ""
18794
18795 #. type: verbatim
18796 #: ../src/guestfs-actions.pod:7487
18797 #, no-wrap
18798 msgid ""
18799 " int\n"
18800 " guestfs_vgremove (guestfs_h *g,\n"
18801 "                   const char *vgname);\n"
18802 "\n"
18803 msgstr ""
18804
18805 #. type: textblock
18806 #: ../src/guestfs-actions.pod:7491 ../fish/guestfish-actions.pod:4972
18807 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
18808 msgstr ""
18809
18810 #. type: textblock
18811 #: ../src/guestfs-actions.pod:7493 ../fish/guestfish-actions.pod:4974
18812 msgid ""
18813 "This also forcibly removes all logical volumes in the volume group (if any)."
18814 msgstr ""
18815
18816 #. type: =head2
18817 #: ../src/guestfs-actions.pod:7500
18818 msgid "guestfs_vgrename"
18819 msgstr ""
18820
18821 #. type: verbatim
18822 #: ../src/guestfs-actions.pod:7502
18823 #, no-wrap
18824 msgid ""
18825 " int\n"
18826 " guestfs_vgrename (guestfs_h *g,\n"
18827 "                   const char *volgroup,\n"
18828 "                   const char *newvolgroup);\n"
18829 "\n"
18830 msgstr ""
18831
18832 #. type: textblock
18833 #: ../src/guestfs-actions.pod:7507 ../fish/guestfish-actions.pod:4981
18834 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18835 msgstr ""
18836
18837 #. type: =head2
18838 #: ../src/guestfs-actions.pod:7513
18839 msgid "guestfs_vgs"
18840 msgstr ""
18841
18842 #. type: verbatim
18843 #: ../src/guestfs-actions.pod:7515
18844 #, no-wrap
18845 msgid ""
18846 " char **\n"
18847 " guestfs_vgs (guestfs_h *g);\n"
18848 "\n"
18849 msgstr ""
18850
18851 #. type: textblock
18852 #: ../src/guestfs-actions.pod:7518 ../fish/guestfish-actions.pod:4987
18853 msgid ""
18854 "List all the volumes groups detected.  This is the equivalent of the "
18855 "L<vgs(8)> command."
18856 msgstr ""
18857
18858 #. type: textblock
18859 #: ../src/guestfs-actions.pod:7521 ../fish/guestfish-actions.pod:4990
18860 msgid ""
18861 "This returns a list of just the volume group names that were detected (eg. "
18862 "C<VolGroup00>)."
18863 msgstr ""
18864
18865 #. type: textblock
18866 #: ../src/guestfs-actions.pod:7524
18867 msgid "See also C<guestfs_vgs_full>."
18868 msgstr ""
18869
18870 #. type: =head2
18871 #: ../src/guestfs-actions.pod:7532
18872 msgid "guestfs_vgs_full"
18873 msgstr ""
18874
18875 #. type: verbatim
18876 #: ../src/guestfs-actions.pod:7534
18877 #, no-wrap
18878 msgid ""
18879 " struct guestfs_lvm_vg_list *\n"
18880 " guestfs_vgs_full (guestfs_h *g);\n"
18881 "\n"
18882 msgstr ""
18883
18884 #. type: textblock
18885 #: ../src/guestfs-actions.pod:7537 ../fish/guestfish-actions.pod:4999
18886 msgid ""
18887 "List all the volumes groups detected.  This is the equivalent of the "
18888 "L<vgs(8)> command.  The \"full\" version includes all fields."
18889 msgstr ""
18890
18891 #. type: textblock
18892 #: ../src/guestfs-actions.pod:7540
18893 msgid ""
18894 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18895 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
18896 "use>."
18897 msgstr ""
18898
18899 #. type: =head2
18900 #: ../src/guestfs-actions.pod:7546
18901 msgid "guestfs_vgscan"
18902 msgstr ""
18903
18904 #. type: verbatim
18905 #: ../src/guestfs-actions.pod:7548
18906 #, no-wrap
18907 msgid ""
18908 " int\n"
18909 " guestfs_vgscan (guestfs_h *g);\n"
18910 "\n"
18911 msgstr ""
18912
18913 #. type: textblock
18914 #: ../src/guestfs-actions.pod:7551 ../fish/guestfish-actions.pod:5006
18915 msgid ""
18916 "This rescans all block devices and rebuilds the list of LVM physical "
18917 "volumes, volume groups and logical volumes."
18918 msgstr ""
18919
18920 #. type: =head2
18921 #: ../src/guestfs-actions.pod:7558
18922 msgid "guestfs_vguuid"
18923 msgstr ""
18924
18925 #. type: verbatim
18926 #: ../src/guestfs-actions.pod:7560
18927 #, no-wrap
18928 msgid ""
18929 " char *\n"
18930 " guestfs_vguuid (guestfs_h *g,\n"
18931 "                 const char *vgname);\n"
18932 "\n"
18933 msgstr ""
18934
18935 #. type: textblock
18936 #: ../src/guestfs-actions.pod:7564 ../fish/guestfish-actions.pod:5013
18937 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18938 msgstr ""
18939
18940 #. type: =head2
18941 #: ../src/guestfs-actions.pod:7571
18942 msgid "guestfs_wait_ready"
18943 msgstr ""
18944
18945 #. type: verbatim
18946 #: ../src/guestfs-actions.pod:7573
18947 #, no-wrap
18948 msgid ""
18949 " int\n"
18950 " guestfs_wait_ready (guestfs_h *g);\n"
18951 "\n"
18952 msgstr ""
18953
18954 #. type: textblock
18955 #: ../src/guestfs-actions.pod:7576
18956 msgid "This function is a no op."
18957 msgstr ""
18958
18959 #. type: textblock
18960 #: ../src/guestfs-actions.pod:7578
18961 msgid ""
18962 "In versions of the API E<lt> 1.0.71 you had to call this function just after"
18963 " calling C<guestfs_launch> to wait for the launch to complete.  However this"
18964 " is no longer necessary because C<guestfs_launch> now does the waiting."
18965 msgstr ""
18966
18967 #. type: textblock
18968 #: ../src/guestfs-actions.pod:7583
18969 msgid ""
18970 "If you see any calls to this function in code then you can just remove them,"
18971 " unless you want to retain compatibility with older versions of the API."
18972 msgstr ""
18973
18974 #. type: textblock
18975 #: ../src/guestfs-actions.pod:7589
18976 msgid ""
18977 "This function is deprecated.  In new code, use the C<launch> call instead."
18978 msgstr ""
18979
18980 #. type: =head2
18981 #: ../src/guestfs-actions.pod:7598
18982 msgid "guestfs_wc_c"
18983 msgstr ""
18984
18985 #. type: verbatim
18986 #: ../src/guestfs-actions.pod:7600
18987 #, no-wrap
18988 msgid ""
18989 " int\n"
18990 " guestfs_wc_c (guestfs_h *g,\n"
18991 "               const char *path);\n"
18992 "\n"
18993 msgstr ""
18994
18995 #. type: textblock
18996 #: ../src/guestfs-actions.pod:7604 ../fish/guestfish-actions.pod:5019
18997 msgid ""
18998 "This command counts the characters in a file, using the C<wc -c> external "
18999 "command."
19000 msgstr ""
19001
19002 #. type: =head2
19003 #: ../src/guestfs-actions.pod:7611
19004 msgid "guestfs_wc_l"
19005 msgstr ""
19006
19007 #. type: verbatim
19008 #: ../src/guestfs-actions.pod:7613
19009 #, no-wrap
19010 msgid ""
19011 " int\n"
19012 " guestfs_wc_l (guestfs_h *g,\n"
19013 "               const char *path);\n"
19014 "\n"
19015 msgstr ""
19016
19017 #. type: textblock
19018 #: ../src/guestfs-actions.pod:7617 ../fish/guestfish-actions.pod:5026
19019 msgid ""
19020 "This command counts the lines in a file, using the C<wc -l> external "
19021 "command."
19022 msgstr ""
19023
19024 #. type: =head2
19025 #: ../src/guestfs-actions.pod:7624
19026 msgid "guestfs_wc_w"
19027 msgstr ""
19028
19029 #. type: verbatim
19030 #: ../src/guestfs-actions.pod:7626
19031 #, no-wrap
19032 msgid ""
19033 " int\n"
19034 " guestfs_wc_w (guestfs_h *g,\n"
19035 "               const char *path);\n"
19036 "\n"
19037 msgstr ""
19038
19039 #. type: textblock
19040 #: ../src/guestfs-actions.pod:7630 ../fish/guestfish-actions.pod:5033
19041 msgid ""
19042 "This command counts the words in a file, using the C<wc -w> external "
19043 "command."
19044 msgstr ""
19045
19046 #. type: =head2
19047 #: ../src/guestfs-actions.pod:7637
19048 msgid "guestfs_write"
19049 msgstr ""
19050
19051 #. type: verbatim
19052 #: ../src/guestfs-actions.pod:7639
19053 #, no-wrap
19054 msgid ""
19055 " int\n"
19056 " guestfs_write (guestfs_h *g,\n"
19057 "                const char *path,\n"
19058 "                const char *content,\n"
19059 "                size_t content_size);\n"
19060 "\n"
19061 msgstr ""
19062
19063 #. type: textblock
19064 #: ../src/guestfs-actions.pod:7645 ../fish/guestfish-actions.pod:5040
19065 msgid ""
19066 "This call creates a file called C<path>.  The content of the file is the "
19067 "string C<content> (which can contain any 8 bit data)."
19068 msgstr ""
19069
19070 #. type: textblock
19071 #: ../src/guestfs-actions.pod:7648
19072 msgid "See also C<guestfs_write_append>."
19073 msgstr ""
19074
19075 #. type: =head2
19076 #: ../src/guestfs-actions.pod:7657
19077 msgid "guestfs_write_append"
19078 msgstr ""
19079
19080 #. type: verbatim
19081 #: ../src/guestfs-actions.pod:7659
19082 #, no-wrap
19083 msgid ""
19084 " int\n"
19085 " guestfs_write_append (guestfs_h *g,\n"
19086 "                       const char *path,\n"
19087 "                       const char *content,\n"
19088 "                       size_t content_size);\n"
19089 "\n"
19090 msgstr ""
19091
19092 #. type: textblock
19093 #: ../src/guestfs-actions.pod:7665 ../fish/guestfish-actions.pod:5052
19094 msgid ""
19095 "This call appends C<content> to the end of file C<path>.  If C<path> does "
19096 "not exist, then a new file is created."
19097 msgstr ""
19098
19099 #. type: textblock
19100 #: ../src/guestfs-actions.pod:7668
19101 msgid "See also C<guestfs_write>."
19102 msgstr ""
19103
19104 #. type: =head2
19105 #: ../src/guestfs-actions.pod:7675
19106 msgid "guestfs_write_file"
19107 msgstr ""
19108
19109 #. type: verbatim
19110 #: ../src/guestfs-actions.pod:7677
19111 #, no-wrap
19112 msgid ""
19113 " int\n"
19114 " guestfs_write_file (guestfs_h *g,\n"
19115 "                     const char *path,\n"
19116 "                     const char *content,\n"
19117 "                     int size);\n"
19118 "\n"
19119 msgstr ""
19120
19121 #. type: textblock
19122 #: ../src/guestfs-actions.pod:7683 ../fish/guestfish-actions.pod:5064
19123 msgid ""
19124 "This call creates a file called C<path>.  The contents of the file is the "
19125 "string C<content> (which can contain any 8 bit data), with length C<size>."
19126 msgstr ""
19127
19128 #. type: textblock
19129 #: ../src/guestfs-actions.pod:7687 ../fish/guestfish-actions.pod:5068
19130 msgid ""
19131 "As a special case, if C<size> is C<0> then the length is calculated using "
19132 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
19133 msgstr ""
19134
19135 #. type: textblock
19136 #: ../src/guestfs-actions.pod:7691 ../fish/guestfish-actions.pod:5072
19137 msgid ""
19138 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
19139 "I<not> work, even if the length is specified."
19140 msgstr ""
19141
19142 #. type: textblock
19143 #: ../src/guestfs-actions.pod:7699 ../fish/guestfish-actions.pod:5078
19144 msgid ""
19145 "This function is deprecated.  In new code, use the C<write> call instead."
19146 msgstr ""
19147
19148 #. type: =head2
19149 #: ../src/guestfs-actions.pod:7708
19150 msgid "guestfs_zegrep"
19151 msgstr ""
19152
19153 #. type: verbatim
19154 #: ../src/guestfs-actions.pod:7710
19155 #, no-wrap
19156 msgid ""
19157 " char **\n"
19158 " guestfs_zegrep (guestfs_h *g,\n"
19159 "                 const char *regex,\n"
19160 "                 const char *path);\n"
19161 "\n"
19162 msgstr ""
19163
19164 #. type: textblock
19165 #: ../src/guestfs-actions.pod:7715 ../fish/guestfish-actions.pod:5089
19166 msgid ""
19167 "This calls the external C<zegrep> program and returns the matching lines."
19168 msgstr ""
19169
19170 #. type: =head2
19171 #: ../src/guestfs-actions.pod:7727
19172 msgid "guestfs_zegrepi"
19173 msgstr ""
19174
19175 #. type: verbatim
19176 #: ../src/guestfs-actions.pod:7729
19177 #, no-wrap
19178 msgid ""
19179 " char **\n"
19180 " guestfs_zegrepi (guestfs_h *g,\n"
19181 "                  const char *regex,\n"
19182 "                  const char *path);\n"
19183 "\n"
19184 msgstr ""
19185
19186 #. type: textblock
19187 #: ../src/guestfs-actions.pod:7734 ../fish/guestfish-actions.pod:5099
19188 msgid ""
19189 "This calls the external C<zegrep -i> program and returns the matching lines."
19190 msgstr ""
19191
19192 #. type: =head2
19193 #: ../src/guestfs-actions.pod:7746
19194 msgid "guestfs_zero"
19195 msgstr ""
19196
19197 #. type: verbatim
19198 #: ../src/guestfs-actions.pod:7748
19199 #, no-wrap
19200 msgid ""
19201 " int\n"
19202 " guestfs_zero (guestfs_h *g,\n"
19203 "               const char *device);\n"
19204 "\n"
19205 msgstr ""
19206
19207 #. type: textblock
19208 #: ../src/guestfs-actions.pod:7752 ../fish/guestfish-actions.pod:5109
19209 msgid "This command writes zeroes over the first few blocks of C<device>."
19210 msgstr ""
19211
19212 #. type: textblock
19213 #: ../src/guestfs-actions.pod:7754 ../fish/guestfish-actions.pod:5111
19214 msgid ""
19215 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
19216 "securely wipe the device).  It should be sufficient to remove any partition "
19217 "tables, filesystem superblocks and so on."
19218 msgstr ""
19219
19220 #. type: textblock
19221 #: ../src/guestfs-actions.pod:7758
19222 msgid ""
19223 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
19224 "C<guestfs_is_zero_device>"
19225 msgstr ""
19226
19227 #. type: =head2
19228 #: ../src/guestfs-actions.pod:7770
19229 msgid "guestfs_zero_device"
19230 msgstr ""
19231
19232 #. type: verbatim
19233 #: ../src/guestfs-actions.pod:7772
19234 #, no-wrap
19235 msgid ""
19236 " int\n"
19237 " guestfs_zero_device (guestfs_h *g,\n"
19238 "                      const char *device);\n"
19239 "\n"
19240 msgstr ""
19241
19242 #. type: textblock
19243 #: ../src/guestfs-actions.pod:7776
19244 msgid ""
19245 "This command writes zeroes over the entire C<device>.  Compare with "
19246 "C<guestfs_zero> which just zeroes the first few blocks of a device."
19247 msgstr ""
19248
19249 #. type: textblock
19250 #: ../src/guestfs-actions.pod:7790
19251 msgid "(Added in 1.3.1)"
19252 msgstr ""
19253
19254 #. type: =head2
19255 #: ../src/guestfs-actions.pod:7792
19256 msgid "guestfs_zerofree"
19257 msgstr ""
19258
19259 #. type: verbatim
19260 #: ../src/guestfs-actions.pod:7794
19261 #, no-wrap
19262 msgid ""
19263 " int\n"
19264 " guestfs_zerofree (guestfs_h *g,\n"
19265 "                   const char *device);\n"
19266 "\n"
19267 msgstr ""
19268
19269 #. type: textblock
19270 #: ../src/guestfs-actions.pod:7798 ../fish/guestfish-actions.pod:5133
19271 msgid ""
19272 "This runs the I<zerofree> program on C<device>.  This program claims to zero"
19273 " unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
19274 "possible to compress the filesystem more effectively."
19275 msgstr ""
19276
19277 #. type: textblock
19278 #: ../src/guestfs-actions.pod:7803 ../fish/guestfish-actions.pod:5138
19279 msgid "You should B<not> run this program if the filesystem is mounted."
19280 msgstr ""
19281
19282 #. type: textblock
19283 #: ../src/guestfs-actions.pod:7806 ../fish/guestfish-actions.pod:5141
19284 msgid ""
19285 "It is possible that using this program can damage the filesystem or data on "
19286 "the filesystem."
19287 msgstr ""
19288
19289 #. type: =head2
19290 #: ../src/guestfs-actions.pod:7813
19291 msgid "guestfs_zfgrep"
19292 msgstr ""
19293
19294 #. type: verbatim
19295 #: ../src/guestfs-actions.pod:7815
19296 #, no-wrap
19297 msgid ""
19298 " char **\n"
19299 " guestfs_zfgrep (guestfs_h *g,\n"
19300 "                 const char *pattern,\n"
19301 "                 const char *path);\n"
19302 "\n"
19303 msgstr ""
19304
19305 #. type: textblock
19306 #: ../src/guestfs-actions.pod:7820 ../fish/guestfish-actions.pod:5148
19307 msgid ""
19308 "This calls the external C<zfgrep> program and returns the matching lines."
19309 msgstr ""
19310
19311 #. type: =head2
19312 #: ../src/guestfs-actions.pod:7832
19313 msgid "guestfs_zfgrepi"
19314 msgstr ""
19315
19316 #. type: verbatim
19317 #: ../src/guestfs-actions.pod:7834
19318 #, no-wrap
19319 msgid ""
19320 " char **\n"
19321 " guestfs_zfgrepi (guestfs_h *g,\n"
19322 "                  const char *pattern,\n"
19323 "                  const char *path);\n"
19324 "\n"
19325 msgstr ""
19326
19327 #. type: textblock
19328 #: ../src/guestfs-actions.pod:7839 ../fish/guestfish-actions.pod:5158
19329 msgid ""
19330 "This calls the external C<zfgrep -i> program and returns the matching lines."
19331 msgstr ""
19332
19333 #. type: =head2
19334 #: ../src/guestfs-actions.pod:7851
19335 msgid "guestfs_zfile"
19336 msgstr ""
19337
19338 #. type: verbatim
19339 #: ../src/guestfs-actions.pod:7853
19340 #, no-wrap
19341 msgid ""
19342 " char *\n"
19343 " guestfs_zfile (guestfs_h *g,\n"
19344 "                const char *meth,\n"
19345 "                const char *path);\n"
19346 "\n"
19347 msgstr ""
19348
19349 #. type: textblock
19350 #: ../src/guestfs-actions.pod:7858 ../fish/guestfish-actions.pod:5168
19351 msgid ""
19352 "This command runs C<file> after first decompressing C<path> using C<method>."
19353 msgstr ""
19354
19355 #. type: textblock
19356 #: ../src/guestfs-actions.pod:7861 ../fish/guestfish-actions.pod:5171
19357 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
19358 msgstr ""
19359
19360 #. type: textblock
19361 #: ../src/guestfs-actions.pod:7863
19362 msgid ""
19363 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
19364 "files."
19365 msgstr ""
19366
19367 #. type: textblock
19368 #: ../src/guestfs-actions.pod:7869 ../fish/guestfish-actions.pod:5176
19369 msgid ""
19370 "This function is deprecated.  In new code, use the C<file> call instead."
19371 msgstr ""
19372
19373 #. type: =head2
19374 #: ../src/guestfs-actions.pod:7878
19375 msgid "guestfs_zgrep"
19376 msgstr ""
19377
19378 #. type: verbatim
19379 #: ../src/guestfs-actions.pod:7880
19380 #, no-wrap
19381 msgid ""
19382 " char **\n"
19383 " guestfs_zgrep (guestfs_h *g,\n"
19384 "                const char *regex,\n"
19385 "                const char *path);\n"
19386 "\n"
19387 msgstr ""
19388
19389 #. type: textblock
19390 #: ../src/guestfs-actions.pod:7885 ../fish/guestfish-actions.pod:5187
19391 msgid ""
19392 "This calls the external C<zgrep> program and returns the matching lines."
19393 msgstr ""
19394
19395 #. type: =head2
19396 #: ../src/guestfs-actions.pod:7897
19397 msgid "guestfs_zgrepi"
19398 msgstr ""
19399
19400 #. type: verbatim
19401 #: ../src/guestfs-actions.pod:7899
19402 #, no-wrap
19403 msgid ""
19404 " char **\n"
19405 " guestfs_zgrepi (guestfs_h *g,\n"
19406 "                 const char *regex,\n"
19407 "                 const char *path);\n"
19408 "\n"
19409 msgstr ""
19410
19411 #. type: textblock
19412 #: ../src/guestfs-actions.pod:7904 ../fish/guestfish-actions.pod:5197
19413 msgid ""
19414 "This calls the external C<zgrep -i> program and returns the matching lines."
19415 msgstr ""
19416
19417 #. type: =item
19418 #: ../src/guestfs-availability.pod:3
19419 msgid "B<augeas>"
19420 msgstr ""
19421
19422 #. type: textblock
19423 #: ../src/guestfs-availability.pod:5
19424 msgid ""
19425 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
19426 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
19427 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
19428 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
19429 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
19430 msgstr ""
19431
19432 #. type: =item
19433 #: ../src/guestfs-availability.pod:21
19434 msgid "B<btrfs>"
19435 msgstr ""
19436
19437 #. type: textblock
19438 #: ../src/guestfs-availability.pod:23
19439 msgid "The following functions: L</guestfs_btrfs_filesystem_resize>"
19440 msgstr ""
19441
19442 #. type: =item
19443 #: ../src/guestfs-availability.pod:26
19444 msgid "B<inotify>"
19445 msgstr ""
19446
19447 #. type: textblock
19448 #: ../src/guestfs-availability.pod:28
19449 msgid ""
19450 "The following functions: L</guestfs_inotify_add_watch> "
19451 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init>"
19452 " L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
19453 msgstr ""
19454
19455 #. type: =item
19456 #: ../src/guestfs-availability.pod:36
19457 msgid "B<linuxfsuuid>"
19458 msgstr ""
19459
19460 #. type: textblock
19461 #: ../src/guestfs-availability.pod:38
19462 msgid ""
19463 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
19464 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
19465 msgstr ""
19466
19467 #. type: =item
19468 #: ../src/guestfs-availability.pod:45
19469 msgid "B<linuxmodules>"
19470 msgstr ""
19471
19472 #. type: textblock
19473 #: ../src/guestfs-availability.pod:47
19474 msgid "The following functions: L</guestfs_modprobe>"
19475 msgstr ""
19476
19477 #. type: =item
19478 #: ../src/guestfs-availability.pod:50
19479 msgid "B<linuxxattrs>"
19480 msgstr ""
19481
19482 #. type: textblock
19483 #: ../src/guestfs-availability.pod:52
19484 msgid ""
19485 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
19486 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
19487 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
19488 "L</guestfs_setxattr>"
19489 msgstr ""
19490
19491 #. type: =item
19492 #: ../src/guestfs-availability.pod:63
19493 msgid "B<luks>"
19494 msgstr ""
19495
19496 #. type: textblock
19497 #: ../src/guestfs-availability.pod:65
19498 msgid ""
19499 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
19500 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
19501 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
19502 msgstr ""
19503
19504 #. type: =item
19505 #: ../src/guestfs-availability.pod:74
19506 msgid "B<lvm2>"
19507 msgstr ""
19508
19509 #. type: textblock
19510 #: ../src/guestfs-availability.pod:76
19511 msgid ""
19512 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
19513 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
19514 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
19515 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
19516 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
19517 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
19518 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
19519 "L</guestfs_vgs_full>"
19520 msgstr ""
19521
19522 #. type: =item
19523 #: ../src/guestfs-availability.pod:99
19524 msgid "B<mknod>"
19525 msgstr ""
19526
19527 #. type: textblock
19528 #: ../src/guestfs-availability.pod:101
19529 msgid ""
19530 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
19531 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
19532 msgstr ""
19533
19534 #. type: =item
19535 #: ../src/guestfs-availability.pod:107
19536 msgid "B<ntfs3g>"
19537 msgstr ""
19538
19539 #. type: textblock
19540 #: ../src/guestfs-availability.pod:109
19541 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
19542 msgstr ""
19543
19544 #. type: =item
19545 #: ../src/guestfs-availability.pod:112
19546 msgid "B<ntfsprogs>"
19547 msgstr ""
19548
19549 #. type: textblock
19550 #: ../src/guestfs-availability.pod:114
19551 msgid ""
19552 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_opts> "
19553 "L</guestfs_ntfsresize_size>"
19554 msgstr ""
19555
19556 #. type: =item
19557 #: ../src/guestfs-availability.pod:119
19558 msgid "B<realpath>"
19559 msgstr ""
19560
19561 #. type: textblock
19562 #: ../src/guestfs-availability.pod:121
19563 msgid "The following functions: L</guestfs_realpath>"
19564 msgstr ""
19565
19566 #. type: =item
19567 #: ../src/guestfs-availability.pod:124
19568 msgid "B<scrub>"
19569 msgstr ""
19570
19571 #. type: textblock
19572 #: ../src/guestfs-availability.pod:126
19573 msgid ""
19574 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
19575 "L</guestfs_scrub_freespace>"
19576 msgstr ""
19577
19578 #. type: =item
19579 #: ../src/guestfs-availability.pod:131
19580 msgid "B<selinux>"
19581 msgstr ""
19582
19583 #. type: textblock
19584 #: ../src/guestfs-availability.pod:133
19585 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
19586 msgstr ""
19587
19588 #. type: =item
19589 #: ../src/guestfs-availability.pod:137
19590 msgid "B<xz>"
19591 msgstr ""
19592
19593 #. type: textblock
19594 #: ../src/guestfs-availability.pod:139
19595 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
19596 msgstr ""
19597
19598 #. type: =item
19599 #: ../src/guestfs-availability.pod:143
19600 msgid "B<zerofree>"
19601 msgstr ""
19602
19603 #. type: textblock
19604 #: ../src/guestfs-availability.pod:145
19605 msgid "The following functions: L</guestfs_zerofree>"
19606 msgstr ""
19607
19608 #. type: =head2
19609 #: ../src/guestfs-structs.pod:1
19610 msgid "guestfs_int_bool"
19611 msgstr ""
19612
19613 #. type: verbatim
19614 #: ../src/guestfs-structs.pod:3
19615 #, no-wrap
19616 msgid ""
19617 " struct guestfs_int_bool {\n"
19618 "   int32_t i;\n"
19619 "   int32_t b;\n"
19620 " };\n"
19621 " \n"
19622 msgstr ""
19623
19624 #. type: verbatim
19625 #: ../src/guestfs-structs.pod:8
19626 #, no-wrap
19627 msgid ""
19628 " struct guestfs_int_bool_list {\n"
19629 "   uint32_t len; /* Number of elements in list. */\n"
19630 "   struct guestfs_int_bool *val; /* Elements. */\n"
19631 " };\n"
19632 " \n"
19633 msgstr ""
19634
19635 #. type: verbatim
19636 #: ../src/guestfs-structs.pod:13
19637 #, no-wrap
19638 msgid ""
19639 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
19640 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
19641 "\n"
19642 msgstr ""
19643
19644 #. type: =head2
19645 #: ../src/guestfs-structs.pod:16
19646 msgid "guestfs_lvm_pv"
19647 msgstr ""
19648
19649 #. type: verbatim
19650 #: ../src/guestfs-structs.pod:18
19651 #, no-wrap
19652 msgid ""
19653 " struct guestfs_lvm_pv {\n"
19654 "   char *pv_name;\n"
19655 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19656 "   char pv_uuid[32];\n"
19657 "   char *pv_fmt;\n"
19658 "   uint64_t pv_size;\n"
19659 "   uint64_t dev_size;\n"
19660 "   uint64_t pv_free;\n"
19661 "   uint64_t pv_used;\n"
19662 "   char *pv_attr;\n"
19663 "   int64_t pv_pe_count;\n"
19664 "   int64_t pv_pe_alloc_count;\n"
19665 "   char *pv_tags;\n"
19666 "   uint64_t pe_start;\n"
19667 "   int64_t pv_mda_count;\n"
19668 "   uint64_t pv_mda_free;\n"
19669 " };\n"
19670 " \n"
19671 msgstr ""
19672
19673 #. type: verbatim
19674 #: ../src/guestfs-structs.pod:36
19675 #, no-wrap
19676 msgid ""
19677 " struct guestfs_lvm_pv_list {\n"
19678 "   uint32_t len; /* Number of elements in list. */\n"
19679 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
19680 " };\n"
19681 " \n"
19682 msgstr ""
19683
19684 #. type: verbatim
19685 #: ../src/guestfs-structs.pod:41
19686 #, no-wrap
19687 msgid ""
19688 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
19689 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
19690 "\n"
19691 msgstr ""
19692
19693 #. type: =head2
19694 #: ../src/guestfs-structs.pod:44
19695 msgid "guestfs_lvm_vg"
19696 msgstr ""
19697
19698 #. type: verbatim
19699 #: ../src/guestfs-structs.pod:46
19700 #, no-wrap
19701 msgid ""
19702 " struct guestfs_lvm_vg {\n"
19703 "   char *vg_name;\n"
19704 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19705 "   char vg_uuid[32];\n"
19706 "   char *vg_fmt;\n"
19707 "   char *vg_attr;\n"
19708 "   uint64_t vg_size;\n"
19709 "   uint64_t vg_free;\n"
19710 "   char *vg_sysid;\n"
19711 "   uint64_t vg_extent_size;\n"
19712 "   int64_t vg_extent_count;\n"
19713 "   int64_t vg_free_count;\n"
19714 "   int64_t max_lv;\n"
19715 "   int64_t max_pv;\n"
19716 "   int64_t pv_count;\n"
19717 "   int64_t lv_count;\n"
19718 "   int64_t snap_count;\n"
19719 "   int64_t vg_seqno;\n"
19720 "   char *vg_tags;\n"
19721 "   int64_t vg_mda_count;\n"
19722 "   uint64_t vg_mda_free;\n"
19723 " };\n"
19724 " \n"
19725 msgstr ""
19726
19727 #. type: verbatim
19728 #: ../src/guestfs-structs.pod:69
19729 #, no-wrap
19730 msgid ""
19731 " struct guestfs_lvm_vg_list {\n"
19732 "   uint32_t len; /* Number of elements in list. */\n"
19733 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
19734 " };\n"
19735 " \n"
19736 msgstr ""
19737
19738 #. type: verbatim
19739 #: ../src/guestfs-structs.pod:74
19740 #, no-wrap
19741 msgid ""
19742 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
19743 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
19744 "\n"
19745 msgstr ""
19746
19747 #. type: =head2
19748 #: ../src/guestfs-structs.pod:77
19749 msgid "guestfs_lvm_lv"
19750 msgstr ""
19751
19752 #. type: verbatim
19753 #: ../src/guestfs-structs.pod:79
19754 #, no-wrap
19755 msgid ""
19756 " struct guestfs_lvm_lv {\n"
19757 "   char *lv_name;\n"
19758 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19759 "   char lv_uuid[32];\n"
19760 "   char *lv_attr;\n"
19761 "   int64_t lv_major;\n"
19762 "   int64_t lv_minor;\n"
19763 "   int64_t lv_kernel_major;\n"
19764 "   int64_t lv_kernel_minor;\n"
19765 "   uint64_t lv_size;\n"
19766 "   int64_t seg_count;\n"
19767 "   char *origin;\n"
19768 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19769 "   float snap_percent;\n"
19770 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19771 "   float copy_percent;\n"
19772 "   char *move_pv;\n"
19773 "   char *lv_tags;\n"
19774 "   char *mirror_log;\n"
19775 "   char *modules;\n"
19776 " };\n"
19777 " \n"
19778 msgstr ""
19779
19780 #. type: verbatim
19781 #: ../src/guestfs-structs.pod:101
19782 #, no-wrap
19783 msgid ""
19784 " struct guestfs_lvm_lv_list {\n"
19785 "   uint32_t len; /* Number of elements in list. */\n"
19786 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
19787 " };\n"
19788 " \n"
19789 msgstr ""
19790
19791 #. type: verbatim
19792 #: ../src/guestfs-structs.pod:106
19793 #, no-wrap
19794 msgid ""
19795 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
19796 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
19797 "\n"
19798 msgstr ""
19799
19800 #. type: verbatim
19801 #: ../src/guestfs-structs.pod:111
19802 #, no-wrap
19803 msgid ""
19804 " struct guestfs_stat {\n"
19805 "   int64_t dev;\n"
19806 "   int64_t ino;\n"
19807 "   int64_t mode;\n"
19808 "   int64_t nlink;\n"
19809 "   int64_t uid;\n"
19810 "   int64_t gid;\n"
19811 "   int64_t rdev;\n"
19812 "   int64_t size;\n"
19813 "   int64_t blksize;\n"
19814 "   int64_t blocks;\n"
19815 "   int64_t atime;\n"
19816 "   int64_t mtime;\n"
19817 "   int64_t ctime;\n"
19818 " };\n"
19819 " \n"
19820 msgstr ""
19821
19822 #. type: verbatim
19823 #: ../src/guestfs-structs.pod:127
19824 #, no-wrap
19825 msgid ""
19826 " struct guestfs_stat_list {\n"
19827 "   uint32_t len; /* Number of elements in list. */\n"
19828 "   struct guestfs_stat *val; /* Elements. */\n"
19829 " };\n"
19830 " \n"
19831 msgstr ""
19832
19833 #. type: verbatim
19834 #: ../src/guestfs-structs.pod:132
19835 #, no-wrap
19836 msgid ""
19837 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
19838 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
19839 "\n"
19840 msgstr ""
19841
19842 #. type: verbatim
19843 #: ../src/guestfs-structs.pod:137
19844 #, no-wrap
19845 msgid ""
19846 " struct guestfs_statvfs {\n"
19847 "   int64_t bsize;\n"
19848 "   int64_t frsize;\n"
19849 "   int64_t blocks;\n"
19850 "   int64_t bfree;\n"
19851 "   int64_t bavail;\n"
19852 "   int64_t files;\n"
19853 "   int64_t ffree;\n"
19854 "   int64_t favail;\n"
19855 "   int64_t fsid;\n"
19856 "   int64_t flag;\n"
19857 "   int64_t namemax;\n"
19858 " };\n"
19859 " \n"
19860 msgstr ""
19861
19862 #. type: verbatim
19863 #: ../src/guestfs-structs.pod:151
19864 #, no-wrap
19865 msgid ""
19866 " struct guestfs_statvfs_list {\n"
19867 "   uint32_t len; /* Number of elements in list. */\n"
19868 "   struct guestfs_statvfs *val; /* Elements. */\n"
19869 " };\n"
19870 " \n"
19871 msgstr ""
19872
19873 #. type: verbatim
19874 #: ../src/guestfs-structs.pod:156
19875 #, no-wrap
19876 msgid ""
19877 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19878 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19879 "\n"
19880 msgstr ""
19881
19882 #. type: =head2
19883 #: ../src/guestfs-structs.pod:159
19884 msgid "guestfs_dirent"
19885 msgstr ""
19886
19887 #. type: verbatim
19888 #: ../src/guestfs-structs.pod:161
19889 #, no-wrap
19890 msgid ""
19891 " struct guestfs_dirent {\n"
19892 "   int64_t ino;\n"
19893 "   char ftyp;\n"
19894 "   char *name;\n"
19895 " };\n"
19896 " \n"
19897 msgstr ""
19898
19899 #. type: verbatim
19900 #: ../src/guestfs-structs.pod:167
19901 #, no-wrap
19902 msgid ""
19903 " struct guestfs_dirent_list {\n"
19904 "   uint32_t len; /* Number of elements in list. */\n"
19905 "   struct guestfs_dirent *val; /* Elements. */\n"
19906 " };\n"
19907 " \n"
19908 msgstr ""
19909
19910 #. type: verbatim
19911 #: ../src/guestfs-structs.pod:172
19912 #, no-wrap
19913 msgid ""
19914 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19915 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19916 "\n"
19917 msgstr ""
19918
19919 #. type: verbatim
19920 #: ../src/guestfs-structs.pod:177
19921 #, no-wrap
19922 msgid ""
19923 " struct guestfs_version {\n"
19924 "   int64_t major;\n"
19925 "   int64_t minor;\n"
19926 "   int64_t release;\n"
19927 "   char *extra;\n"
19928 " };\n"
19929 " \n"
19930 msgstr ""
19931
19932 #. type: verbatim
19933 #: ../src/guestfs-structs.pod:184
19934 #, no-wrap
19935 msgid ""
19936 " struct guestfs_version_list {\n"
19937 "   uint32_t len; /* Number of elements in list. */\n"
19938 "   struct guestfs_version *val; /* Elements. */\n"
19939 " };\n"
19940 " \n"
19941 msgstr ""
19942
19943 #. type: verbatim
19944 #: ../src/guestfs-structs.pod:189
19945 #, no-wrap
19946 msgid ""
19947 " void guestfs_free_version (struct guestfs_free_version *);\n"
19948 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19949 "\n"
19950 msgstr ""
19951
19952 #. type: =head2
19953 #: ../src/guestfs-structs.pod:192
19954 msgid "guestfs_xattr"
19955 msgstr ""
19956
19957 #. type: verbatim
19958 #: ../src/guestfs-structs.pod:194
19959 #, no-wrap
19960 msgid ""
19961 " struct guestfs_xattr {\n"
19962 "   char *attrname;\n"
19963 "   /* The next two fields describe a byte array. */\n"
19964 "   uint32_t attrval_len;\n"
19965 "   char *attrval;\n"
19966 " };\n"
19967 " \n"
19968 msgstr ""
19969
19970 #. type: verbatim
19971 #: ../src/guestfs-structs.pod:201
19972 #, no-wrap
19973 msgid ""
19974 " struct guestfs_xattr_list {\n"
19975 "   uint32_t len; /* Number of elements in list. */\n"
19976 "   struct guestfs_xattr *val; /* Elements. */\n"
19977 " };\n"
19978 " \n"
19979 msgstr ""
19980
19981 #. type: verbatim
19982 #: ../src/guestfs-structs.pod:206
19983 #, no-wrap
19984 msgid ""
19985 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19986 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19987 "\n"
19988 msgstr ""
19989
19990 #. type: =head2
19991 #: ../src/guestfs-structs.pod:209
19992 msgid "guestfs_inotify_event"
19993 msgstr ""
19994
19995 #. type: verbatim
19996 #: ../src/guestfs-structs.pod:211
19997 #, no-wrap
19998 msgid ""
19999 " struct guestfs_inotify_event {\n"
20000 "   int64_t in_wd;\n"
20001 "   uint32_t in_mask;\n"
20002 "   uint32_t in_cookie;\n"
20003 "   char *in_name;\n"
20004 " };\n"
20005 " \n"
20006 msgstr ""
20007
20008 #. type: verbatim
20009 #: ../src/guestfs-structs.pod:218
20010 #, no-wrap
20011 msgid ""
20012 " struct guestfs_inotify_event_list {\n"
20013 "   uint32_t len; /* Number of elements in list. */\n"
20014 "   struct guestfs_inotify_event *val; /* Elements. */\n"
20015 " };\n"
20016 " \n"
20017 msgstr ""
20018
20019 #. type: verbatim
20020 #: ../src/guestfs-structs.pod:223
20021 #, no-wrap
20022 msgid ""
20023 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
20024 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
20025 "\n"
20026 msgstr ""
20027
20028 #. type: =head2
20029 #: ../src/guestfs-structs.pod:226
20030 msgid "guestfs_partition"
20031 msgstr ""
20032
20033 #. type: verbatim
20034 #: ../src/guestfs-structs.pod:228
20035 #, no-wrap
20036 msgid ""
20037 " struct guestfs_partition {\n"
20038 "   int32_t part_num;\n"
20039 "   uint64_t part_start;\n"
20040 "   uint64_t part_end;\n"
20041 "   uint64_t part_size;\n"
20042 " };\n"
20043 " \n"
20044 msgstr ""
20045
20046 #. type: verbatim
20047 #: ../src/guestfs-structs.pod:235
20048 #, no-wrap
20049 msgid ""
20050 " struct guestfs_partition_list {\n"
20051 "   uint32_t len; /* Number of elements in list. */\n"
20052 "   struct guestfs_partition *val; /* Elements. */\n"
20053 " };\n"
20054 " \n"
20055 msgstr ""
20056
20057 #. type: verbatim
20058 #: ../src/guestfs-structs.pod:240
20059 #, no-wrap
20060 msgid ""
20061 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
20062 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
20063 "\n"
20064 msgstr ""
20065
20066 #. type: =head2
20067 #: ../src/guestfs-structs.pod:243
20068 msgid "guestfs_application"
20069 msgstr ""
20070
20071 #. type: verbatim
20072 #: ../src/guestfs-structs.pod:245
20073 #, no-wrap
20074 msgid ""
20075 " struct guestfs_application {\n"
20076 "   char *app_name;\n"
20077 "   char *app_display_name;\n"
20078 "   int32_t app_epoch;\n"
20079 "   char *app_version;\n"
20080 "   char *app_release;\n"
20081 "   char *app_install_path;\n"
20082 "   char *app_trans_path;\n"
20083 "   char *app_publisher;\n"
20084 "   char *app_url;\n"
20085 "   char *app_source_package;\n"
20086 "   char *app_summary;\n"
20087 "   char *app_description;\n"
20088 " };\n"
20089 " \n"
20090 msgstr ""
20091
20092 #. type: verbatim
20093 #: ../src/guestfs-structs.pod:260
20094 #, no-wrap
20095 msgid ""
20096 " struct guestfs_application_list {\n"
20097 "   uint32_t len; /* Number of elements in list. */\n"
20098 "   struct guestfs_application *val; /* Elements. */\n"
20099 " };\n"
20100 " \n"
20101 msgstr ""
20102
20103 #. type: verbatim
20104 #: ../src/guestfs-structs.pod:265
20105 #, no-wrap
20106 msgid ""
20107 " void guestfs_free_application (struct guestfs_free_application *);\n"
20108 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
20109 "\n"
20110 msgstr ""
20111
20112 #. type: textblock
20113 #: ../fish/guestfish.pod:5
20114 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
20115 msgstr ""
20116
20117 #. type: verbatim
20118 #: ../fish/guestfish.pod:9
20119 #, no-wrap
20120 msgid ""
20121 " guestfish [--options] [commands]\n"
20122 "\n"
20123 msgstr ""
20124
20125 #. type: verbatim
20126 #: ../fish/guestfish.pod:11
20127 #, no-wrap
20128 msgid ""
20129 " guestfish\n"
20130 "\n"
20131 msgstr ""
20132
20133 #. type: verbatim
20134 #: ../fish/guestfish.pod:13
20135 #, no-wrap
20136 msgid ""
20137 " guestfish [--ro|--rw] -a disk.img\n"
20138 "\n"
20139 msgstr ""
20140
20141 #. type: verbatim
20142 #: ../fish/guestfish.pod:15
20143 #, no-wrap
20144 msgid ""
20145 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
20146 "\n"
20147 msgstr ""
20148
20149 #. type: verbatim
20150 #: ../fish/guestfish.pod:17
20151 #, no-wrap
20152 msgid ""
20153 " guestfish -d libvirt-domain\n"
20154 "\n"
20155 msgstr ""
20156
20157 #. type: verbatim
20158 #: ../fish/guestfish.pod:19
20159 #, no-wrap
20160 msgid ""
20161 " guestfish [--ro|--rw] -a disk.img -i\n"
20162 "\n"
20163 msgstr ""
20164
20165 #. type: verbatim
20166 #: ../fish/guestfish.pod:21
20167 #, no-wrap
20168 msgid ""
20169 " guestfish -d libvirt-domain -i\n"
20170 "\n"
20171 msgstr ""
20172
20173 #. type: =head1
20174 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15
20175 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
20176 msgid "WARNING"
20177 msgstr ""
20178
20179 #. type: textblock
20180 #: ../fish/guestfish.pod:25
20181 msgid ""
20182 "Using guestfish in read/write mode on live virtual machines can be "
20183 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only)"
20184 " option to use guestfish safely if the disk image or virtual machine might "
20185 "be live."
20186 msgstr ""
20187
20188 #. type: textblock
20189 #: ../fish/guestfish.pod:32
20190 msgid ""
20191 "Guestfish is a shell and command-line tool for examining and modifying "
20192 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
20193 "functionality of the guestfs API, see L<guestfs(3)>."
20194 msgstr ""
20195
20196 #. type: textblock
20197 #: ../fish/guestfish.pod:36
20198 msgid ""
20199 "Guestfish gives you structured access to the libguestfs API, from shell "
20200 "scripts or the command line or interactively.  If you want to rescue a "
20201 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
20202 "command."
20203 msgstr ""
20204
20205 #. type: =head1
20206 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:1007
20207 #: ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
20208 msgid "EXAMPLES"
20209 msgstr ""
20210
20211 #. type: =head2
20212 #: ../fish/guestfish.pod:43
20213 msgid "As an interactive shell"
20214 msgstr ""
20215
20216 #. type: verbatim
20217 #: ../fish/guestfish.pod:45
20218 #, no-wrap
20219 msgid ""
20220 " $ guestfish\n"
20221 " \n"
20222 msgstr ""
20223
20224 #. type: verbatim
20225 #: ../fish/guestfish.pod:47
20226 #, no-wrap
20227 msgid ""
20228 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
20229 " editing virtual machine filesystems.\n"
20230 " \n"
20231 msgstr ""
20232
20233 #. type: verbatim
20234 #: ../fish/guestfish.pod:50
20235 #, no-wrap
20236 msgid ""
20237 " Type: 'help' for a list of commands\n"
20238 "       'man' to read the manual\n"
20239 "       'quit' to quit the shell\n"
20240 " \n"
20241 msgstr ""
20242
20243 #. type: verbatim
20244 #: ../fish/guestfish.pod:54
20245 #, no-wrap
20246 msgid ""
20247 " ><fs> add-ro disk.img\n"
20248 " ><fs> run\n"
20249 " ><fs> list-filesystems\n"
20250 " /dev/sda1: ext4\n"
20251 " /dev/vg_guest/lv_root: ext4\n"
20252 " /dev/vg_guest/lv_swap: swap\n"
20253 " ><fs> mount /dev/vg_guest/lv_root /\n"
20254 " ><fs> cat /etc/fstab\n"
20255 " # /etc/fstab\n"
20256 " # Created by anaconda\n"
20257 " [...]\n"
20258 " ><fs> exit\n"
20259 "\n"
20260 msgstr ""
20261
20262 #. type: =head2
20263 #: ../fish/guestfish.pod:67
20264 msgid "From shell scripts"
20265 msgstr ""
20266
20267 #. type: textblock
20268 #: ../fish/guestfish.pod:69
20269 msgid "Create a new C</etc/motd> file in a guest or disk image:"
20270 msgstr ""
20271
20272 #. type: verbatim
20273 #: ../fish/guestfish.pod:71
20274 #, no-wrap
20275 msgid ""
20276 " guestfish <<_EOF_\n"
20277 " add disk.img\n"
20278 " run\n"
20279 " mount /dev/vg_guest/lv_root /\n"
20280 " write /etc/motd \"Welcome, new users\"\n"
20281 " _EOF_\n"
20282 "\n"
20283 msgstr ""
20284
20285 #. type: textblock
20286 #: ../fish/guestfish.pod:78
20287 msgid "List the LVM logical volumes in a disk image:"
20288 msgstr ""
20289
20290 #. type: verbatim
20291 #: ../fish/guestfish.pod:80
20292 #, no-wrap
20293 msgid ""
20294 " guestfish -a disk.img --ro <<_EOF_\n"
20295 " run\n"
20296 " lvs\n"
20297 " _EOF_\n"
20298 "\n"
20299 msgstr ""
20300
20301 #. type: textblock
20302 #: ../fish/guestfish.pod:85
20303 msgid "List all the filesystems in a disk image:"
20304 msgstr ""
20305
20306 #. type: verbatim
20307 #: ../fish/guestfish.pod:87
20308 #, no-wrap
20309 msgid ""
20310 " guestfish -a disk.img --ro <<_EOF_\n"
20311 " run\n"
20312 " list-filesystems\n"
20313 " _EOF_\n"
20314 "\n"
20315 msgstr ""
20316
20317 #. type: =head2
20318 #: ../fish/guestfish.pod:92
20319 msgid "On one command line"
20320 msgstr ""
20321
20322 #. type: textblock
20323 #: ../fish/guestfish.pod:94
20324 msgid "Update C</etc/resolv.conf> in a guest:"
20325 msgstr ""
20326
20327 #. type: verbatim
20328 #: ../fish/guestfish.pod:96
20329 #, no-wrap
20330 msgid ""
20331 " guestfish \\\n"
20332 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
20333 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
20334 "\n"
20335 msgstr ""
20336
20337 #. type: textblock
20338 #: ../fish/guestfish.pod:100
20339 msgid "Edit C</boot/grub/grub.conf> interactively:"
20340 msgstr ""
20341
20342 #. type: verbatim
20343 #: ../fish/guestfish.pod:102
20344 #, no-wrap
20345 msgid ""
20346 " guestfish --rw --add disk.img \\\n"
20347 "   --mount /dev/vg_guest/lv_root \\\n"
20348 "   --mount /dev/sda1:/boot \\\n"
20349 "   edit /boot/grub/grub.conf\n"
20350 "\n"
20351 msgstr ""
20352
20353 #. type: =head2
20354 #: ../fish/guestfish.pod:107
20355 msgid "Mount disks automatically"
20356 msgstr ""
20357
20358 #. type: textblock
20359 #: ../fish/guestfish.pod:109
20360 msgid ""
20361 "Use the I<-i> option to automatically mount the disks from a virtual "
20362 "machine:"
20363 msgstr ""
20364
20365 #. type: verbatim
20366 #: ../fish/guestfish.pod:112
20367 #, no-wrap
20368 msgid ""
20369 " guestfish --ro -a disk.img -i cat /etc/group\n"
20370 "\n"
20371 msgstr ""
20372
20373 #. type: verbatim
20374 #: ../fish/guestfish.pod:114
20375 #, no-wrap
20376 msgid ""
20377 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
20378 "\n"
20379 msgstr ""
20380
20381 #. type: textblock
20382 #: ../fish/guestfish.pod:116
20383 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
20384 msgstr ""
20385
20386 #. type: verbatim
20387 #: ../fish/guestfish.pod:118
20388 #, no-wrap
20389 msgid ""
20390 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
20391 "\n"
20392 msgstr ""
20393
20394 #. type: =head2
20395 #: ../fish/guestfish.pod:120
20396 msgid "As a script interpreter"
20397 msgstr ""
20398
20399 #. type: textblock
20400 #: ../fish/guestfish.pod:122
20401 msgid "Create a 100MB disk containing an ext2-formatted partition:"
20402 msgstr ""
20403
20404 #. type: verbatim
20405 #: ../fish/guestfish.pod:124
20406 #, no-wrap
20407 msgid ""
20408 " #!/usr/bin/guestfish -f\n"
20409 " sparse test1.img 100M\n"
20410 " run\n"
20411 " part-disk /dev/sda mbr\n"
20412 " mkfs ext2 /dev/sda1\n"
20413 "\n"
20414 msgstr ""
20415
20416 #. type: =head2
20417 #: ../fish/guestfish.pod:130
20418 msgid "Start with a prepared disk"
20419 msgstr ""
20420
20421 #. type: textblock
20422 #: ../fish/guestfish.pod:132
20423 msgid ""
20424 "An alternate way to create a 100MB disk called C<test1.img> containing a "
20425 "single ext2-formatted partition:"
20426 msgstr ""
20427
20428 #. type: verbatim
20429 #: ../fish/guestfish.pod:135
20430 #, no-wrap
20431 msgid ""
20432 " guestfish -N fs\n"
20433 "\n"
20434 msgstr ""
20435
20436 #. type: textblock
20437 #: ../fish/guestfish.pod:137
20438 msgid "To list what is available do:"
20439 msgstr ""
20440
20441 #. type: verbatim
20442 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:998
20443 #, no-wrap
20444 msgid ""
20445 " guestfish -N help | less\n"
20446 "\n"
20447 msgstr ""
20448
20449 #. type: =head2
20450 #: ../fish/guestfish.pod:141
20451 msgid "Remote control"
20452 msgstr ""
20453
20454 #. type: verbatim
20455 #: ../fish/guestfish.pod:143
20456 #, no-wrap
20457 msgid ""
20458 " eval \"`guestfish --listen`\"\n"
20459 " guestfish --remote add-ro disk.img\n"
20460 " guestfish --remote run\n"
20461 " guestfish --remote lvs\n"
20462 "\n"
20463 msgstr ""
20464
20465 #. type: =head1
20466 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
20467 #: ../fuse/guestmount.pod:83 ../tools/virt-win-reg.pl:96
20468 #: ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:103
20469 #: ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
20470 msgid "OPTIONS"
20471 msgstr ""
20472
20473 #. type: =item
20474 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:143
20475 #: ../tools/virt-win-reg.pl:104 ../tools/virt-list-filesystems.pl:61
20476 #: ../tools/virt-tar.pl:111 ../tools/virt-make-fs.pl:161
20477 #: ../tools/virt-list-partitions.pl:62
20478 msgid "B<--help>"
20479 msgstr ""
20480
20481 #. type: textblock
20482 #: ../fish/guestfish.pod:154
20483 msgid "Displays general help on options."
20484 msgstr ""
20485
20486 #. type: =item
20487 #: ../fish/guestfish.pod:156
20488 msgid "B<-h>"
20489 msgstr ""
20490
20491 #. type: =item
20492 #: ../fish/guestfish.pod:158
20493 msgid "B<--cmd-help>"
20494 msgstr ""
20495
20496 #. type: textblock
20497 #: ../fish/guestfish.pod:160
20498 msgid "Lists all available guestfish commands."
20499 msgstr ""
20500
20501 #. type: =item
20502 #: ../fish/guestfish.pod:162
20503 msgid "B<-h cmd>"
20504 msgstr ""
20505
20506 #. type: =item
20507 #: ../fish/guestfish.pod:164
20508 msgid "B<--cmd-help cmd>"
20509 msgstr ""
20510
20511 #. type: textblock
20512 #: ../fish/guestfish.pod:166
20513 msgid "Displays detailed help on a single command C<cmd>."
20514 msgstr ""
20515
20516 #. type: =item
20517 #: ../fish/guestfish.pod:168
20518 msgid "B<-a image>"
20519 msgstr ""
20520
20521 #. type: =item
20522 #: ../fish/guestfish.pod:170
20523 msgid "B<--add image>"
20524 msgstr ""
20525
20526 #. type: textblock
20527 #: ../fish/guestfish.pod:172
20528 msgid "Add a block device or virtual machine image to the shell."
20529 msgstr ""
20530
20531 #. type: textblock
20532 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
20533 msgid ""
20534 "The format of the disk image is auto-detected.  To override this and force a"
20535 " particular format use the I<--format=..> option."
20536 msgstr ""
20537
20538 #. type: textblock
20539 #: ../fish/guestfish.pod:177
20540 msgid ""
20541 "Using this flag is mostly equivalent to using the C<add> command, with "
20542 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
20543 "the I<--format=...> flag was given."
20544 msgstr ""
20545
20546 #. type: =item
20547 #: ../fish/guestfish.pod:181
20548 msgid "B<-c URI>"
20549 msgstr ""
20550
20551 #. type: =item
20552 #: ../fish/guestfish.pod:183
20553 msgid "B<--connect URI>"
20554 msgstr ""
20555
20556 #. type: textblock
20557 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
20558 msgid ""
20559 "When used in conjunction with the I<-d> option, this specifies the libvirt "
20560 "URI to use.  The default is to use the default libvirt connection."
20561 msgstr ""
20562
20563 #. type: =item
20564 #: ../fish/guestfish.pod:189
20565 msgid "B<--csh>"
20566 msgstr ""
20567
20568 #. type: textblock
20569 #: ../fish/guestfish.pod:191
20570 msgid ""
20571 "If using the I<--listen> option and a csh-like shell, use this option.  See "
20572 "section L</REMOTE CONTROL AND CSH> below."
20573 msgstr ""
20574
20575 #. type: =item
20576 #: ../fish/guestfish.pod:194
20577 msgid "B<-d libvirt-domain>"
20578 msgstr ""
20579
20580 #. type: =item
20581 #: ../fish/guestfish.pod:196
20582 msgid "B<--domain libvirt-domain>"
20583 msgstr ""
20584
20585 #. type: textblock
20586 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
20587 msgid ""
20588 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
20589 "used, then any libvirt domain can be used.  However in write mode, only "
20590 "libvirt domains which are shut down can be named here."
20591 msgstr ""
20592
20593 #. type: textblock
20594 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
20595 msgid "Domain UUIDs can be used instead of names."
20596 msgstr ""
20597
20598 #. type: textblock
20599 #: ../fish/guestfish.pod:204
20600 msgid ""
20601 "Using this flag is mostly equivalent to using the C<add-domain> command, "
20602 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
20603 "if the I<--format:...> flag was given."
20604 msgstr ""
20605
20606 #. type: =item
20607 #: ../fish/guestfish.pod:208
20608 msgid "B<-D>"
20609 msgstr ""
20610
20611 #. type: =item
20612 #: ../fish/guestfish.pod:210
20613 msgid "B<--no-dest-paths>"
20614 msgstr ""
20615
20616 #. type: textblock
20617 #: ../fish/guestfish.pod:212
20618 msgid ""
20619 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
20620 "to hit the tab key to complete paths on the guest filesystem, but this "
20621 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
20622 "allow this feature to be disabled."
20623 msgstr ""
20624
20625 #. type: =item
20626 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
20627 msgid "B<--echo-keys>"
20628 msgstr ""
20629
20630 #. type: textblock
20631 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
20632 msgid ""
20633 "When prompting for keys and passphrases, guestfish normally turns echoing "
20634 "off so you cannot see what you are typing.  If you are not worried about "
20635 "Tempest attacks and there is no one else in the room you can specify this "
20636 "flag to see what you are typing."
20637 msgstr ""
20638
20639 #. type: =item
20640 #: ../fish/guestfish.pod:224
20641 msgid "B<-f file>"
20642 msgstr ""
20643
20644 #. type: =item
20645 #: ../fish/guestfish.pod:226
20646 msgid "B<--file file>"
20647 msgstr ""
20648
20649 #. type: textblock
20650 #: ../fish/guestfish.pod:228
20651 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
20652 msgstr ""
20653
20654 #. type: verbatim
20655 #: ../fish/guestfish.pod:231
20656 #, no-wrap
20657 msgid ""
20658 " #!/usr/bin/guestfish -f\n"
20659 "\n"
20660 msgstr ""
20661
20662 #. type: =item
20663 #: ../fish/guestfish.pod:233
20664 msgid "B<--format=raw|qcow2|..>"
20665 msgstr ""
20666
20667 #. type: =item
20668 #: ../fish/guestfish.pod:235
20669 msgid "B<--format>"
20670 msgstr ""
20671
20672 #. type: textblock
20673 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
20674 msgid ""
20675 "The default for the I<-a> option is to auto-detect the format of the disk "
20676 "image.  Using this forces the disk format for I<-a> options which follow on "
20677 "the command line.  Using I<--format> with no argument switches back to auto-"
20678 "detection for subsequent I<-a> options."
20679 msgstr ""
20680
20681 #. type: verbatim
20682 #: ../fish/guestfish.pod:244
20683 #, no-wrap
20684 msgid ""
20685 " guestfish --format=raw -a disk.img\n"
20686 "\n"
20687 msgstr ""
20688
20689 #. type: textblock
20690 #: ../fish/guestfish.pod:246
20691 msgid "forces raw format (no auto-detection) for C<disk.img>."
20692 msgstr ""
20693
20694 #. type: verbatim
20695 #: ../fish/guestfish.pod:248
20696 #, no-wrap
20697 msgid ""
20698 " guestfish --format=raw -a disk.img --format -a another.img\n"
20699 "\n"
20700 msgstr ""
20701
20702 #. type: textblock
20703 #: ../fish/guestfish.pod:250
20704 msgid ""
20705 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
20706 "detection for C<another.img>."
20707 msgstr ""
20708
20709 #. type: textblock
20710 #: ../fish/guestfish.pod:253
20711 msgid ""
20712 "If you have untrusted raw-format guest disk images, you should use this "
20713 "option to specify the disk format.  This avoids a possible security problem "
20714 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
20715 msgstr ""
20716
20717 #. type: =item
20718 #: ../fish/guestfish.pod:258
20719 msgid "B<-i>"
20720 msgstr ""
20721
20722 #. type: =item
20723 #: ../fish/guestfish.pod:260
20724 msgid "B<--inspector>"
20725 msgstr ""
20726
20727 #. type: textblock
20728 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
20729 msgid ""
20730 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
20731 "system and mount filesystems as they would be mounted on the real virtual "
20732 "machine."
20733 msgstr ""
20734
20735 #. type: textblock
20736 #: ../fish/guestfish.pod:266
20737 msgid "Typical usage is either:"
20738 msgstr ""
20739
20740 #. type: verbatim
20741 #: ../fish/guestfish.pod:268
20742 #, no-wrap
20743 msgid ""
20744 " guestfish -d myguest -i\n"
20745 "\n"
20746 msgstr ""
20747
20748 #. type: textblock
20749 #: ../fish/guestfish.pod:270
20750 msgid "(for an inactive libvirt domain called I<myguest>), or:"
20751 msgstr ""
20752
20753 #. type: verbatim
20754 #: ../fish/guestfish.pod:272
20755 #, no-wrap
20756 msgid ""
20757 " guestfish --ro -d myguest -i\n"
20758 "\n"
20759 msgstr ""
20760
20761 #. type: textblock
20762 #: ../fish/guestfish.pod:274
20763 msgid "(for active domains, readonly), or specify the block device directly:"
20764 msgstr ""
20765
20766 #. type: verbatim
20767 #: ../fish/guestfish.pod:276
20768 #, no-wrap
20769 msgid ""
20770 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
20771 "\n"
20772 msgstr ""
20773
20774 #. type: textblock
20775 #: ../fish/guestfish.pod:278
20776 msgid ""
20777 "Note that the command line syntax changed slightly over older versions of "
20778 "guestfish.  You can still use the old syntax:"
20779 msgstr ""
20780
20781 #. type: verbatim
20782 #: ../fish/guestfish.pod:281
20783 #, no-wrap
20784 msgid ""
20785 " guestfish [--ro] -i disk.img\n"
20786 "\n"
20787 msgstr ""
20788
20789 #. type: verbatim
20790 #: ../fish/guestfish.pod:283
20791 #, no-wrap
20792 msgid ""
20793 " guestfish [--ro] -i libvirt-domain\n"
20794 "\n"
20795 msgstr ""
20796
20797 #. type: textblock
20798 #: ../fish/guestfish.pod:285
20799 msgid ""
20800 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
20801 "then using other commands to mount the filesystems that were found."
20802 msgstr ""
20803
20804 #. type: =item
20805 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
20806 msgid "B<--keys-from-stdin>"
20807 msgstr ""
20808
20809 #. type: textblock
20810 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
20811 msgid ""
20812 "Read key or passphrase parameters from stdin.  The default is to try to read"
20813 " passphrases from the user by opening C</dev/tty>."
20814 msgstr ""
20815
20816 #. type: =item
20817 #: ../fish/guestfish.pod:294
20818 msgid "B<--listen>"
20819 msgstr ""
20820
20821 #. type: textblock
20822 #: ../fish/guestfish.pod:296
20823 msgid ""
20824 "Fork into the background and listen for remote commands.  See section "
20825 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
20826 msgstr ""
20827
20828 #. type: =item
20829 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
20830 msgid "B<--live>"
20831 msgstr ""
20832
20833 #. type: textblock
20834 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
20835 msgid ""
20836 "Connect to a live virtual machine.  (Experimental, see "
20837 "L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
20838 msgstr ""
20839
20840 #. type: =item
20841 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
20842 msgid "B<-m dev[:mountpoint[:options]]>"
20843 msgstr ""
20844
20845 #. type: =item
20846 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
20847 msgid "B<--mount dev[:mountpoint[:options]]>"
20848 msgstr ""
20849
20850 #. type: textblock
20851 #: ../fish/guestfish.pod:308
20852 msgid "Mount the named partition or logical volume on the given mountpoint."
20853 msgstr ""
20854
20855 #. type: textblock
20856 #: ../fish/guestfish.pod:310
20857 msgid "If the mountpoint is omitted, it defaults to C</>."
20858 msgstr ""
20859
20860 #. type: textblock
20861 #: ../fish/guestfish.pod:312
20862 msgid "You have to mount something on C</> before most commands will work."
20863 msgstr ""
20864
20865 #. type: textblock
20866 #: ../fish/guestfish.pod:314
20867 msgid ""
20868 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20869 "launched."
20870 msgstr ""
20871
20872 #. type: textblock
20873 #: ../fish/guestfish.pod:317
20874 msgid ""
20875 "If you don't know what filesystems a disk image contains, you can either run"
20876 " guestfish without this option, then list the partitions, filesystems and "
20877 "LVs available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20878 "commands), or you can use the L<virt-filesystems(1)> program."
20879 msgstr ""
20880
20881 #. type: textblock
20882 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
20883 msgid ""
20884 "The third (and rarely used) part of the mount parameter is the list of mount"
20885 " options used to mount the underlying filesystem.  If this is not given, "
20886 "then the mount options are either the empty string or C<ro> (the latter if "
20887 "the I<--ro> flag is used).  By specifying the mount options, you override "
20888 "this default choice.  Probably the only time you would use this is to enable"
20889 " ACLs and/or extended attributes if the filesystem can support them:"
20890 msgstr ""
20891
20892 #. type: verbatim
20893 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
20894 #, no-wrap
20895 msgid ""
20896 " -m /dev/sda1:/:acl,user_xattr\n"
20897 "\n"
20898 msgstr ""
20899
20900 #. type: textblock
20901 #: ../fish/guestfish.pod:333
20902 msgid "Using this flag is equivalent to using the C<mount-options> command."
20903 msgstr ""
20904
20905 #. type: =item
20906 #: ../fish/guestfish.pod:335
20907 msgid "B<-n>"
20908 msgstr ""
20909
20910 #. type: =item
20911 #: ../fish/guestfish.pod:337
20912 msgid "B<--no-sync>"
20913 msgstr ""
20914
20915 #. type: textblock
20916 #: ../fish/guestfish.pod:339
20917 msgid ""
20918 "Disable autosync.  This is enabled by default.  See the discussion of "
20919 "autosync in the L<guestfs(3)> manpage."
20920 msgstr ""
20921
20922 #. type: =item
20923 #: ../fish/guestfish.pod:342
20924 msgid "B<-N type>"
20925 msgstr ""
20926
20927 #. type: =item
20928 #: ../fish/guestfish.pod:344
20929 msgid "B<--new type>"
20930 msgstr ""
20931
20932 #. type: =item
20933 #: ../fish/guestfish.pod:346
20934 msgid "B<-N help>"
20935 msgstr ""
20936
20937 #. type: textblock
20938 #: ../fish/guestfish.pod:348
20939 msgid ""
20940 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to"
20941 " the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20942 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20943 "IMAGES> below."
20944 msgstr ""
20945
20946 #. type: =item
20947 #: ../fish/guestfish.pod:353
20948 msgid "B<--progress-bars>"
20949 msgstr ""
20950
20951 #. type: textblock
20952 #: ../fish/guestfish.pod:355
20953 msgid "Enable progress bars, even when guestfish is used non-interactively."
20954 msgstr ""
20955
20956 #. type: textblock
20957 #: ../fish/guestfish.pod:357
20958 msgid ""
20959 "Progress bars are enabled by default when guestfish is used as an "
20960 "interactive shell."
20961 msgstr ""
20962
20963 #. type: =item
20964 #: ../fish/guestfish.pod:360
20965 msgid "B<--no-progress-bars>"
20966 msgstr ""
20967
20968 #. type: textblock
20969 #: ../fish/guestfish.pod:362
20970 msgid "Disable progress bars."
20971 msgstr ""
20972
20973 #. type: =item
20974 #: ../fish/guestfish.pod:364
20975 msgid "B<--remote[=pid]>"
20976 msgstr ""
20977
20978 #. type: textblock
20979 #: ../fish/guestfish.pod:366
20980 msgid ""
20981 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20982 "CONTROL GUESTFISH OVER A SOCKET> below."
20983 msgstr ""
20984
20985 #. type: =item
20986 #: ../fish/guestfish.pod:369
20987 msgid "B<-r>"
20988 msgstr ""
20989
20990 #. type: =item
20991 #: ../fish/guestfish.pod:371
20992 msgid "B<--ro>"
20993 msgstr ""
20994
20995 #. type: textblock
20996 #: ../fish/guestfish.pod:373
20997 msgid ""
20998 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20999 "mounts are done read-only."
21000 msgstr ""
21001
21002 #. type: textblock
21003 #: ../fish/guestfish.pod:376
21004 msgid ""
21005 "The option must always be used if the disk image or virtual machine might be"
21006 " running, and is generally recommended in cases where you don't need write "
21007 "access to the disk."
21008 msgstr ""
21009
21010 #. type: textblock
21011 #: ../fish/guestfish.pod:380
21012 msgid ""
21013 "Note that prepared disk images created with I<-N> are not affected by this "
21014 "option.  Also commands like C<add> are not affected - you have to specify "
21015 "the C<readonly:true> option explicitly if you need it."
21016 msgstr ""
21017
21018 #. type: textblock
21019 #: ../fish/guestfish.pod:384
21020 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
21021 msgstr ""
21022
21023 #. type: =item
21024 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
21025 msgid "B<--selinux>"
21026 msgstr ""
21027
21028 #. type: textblock
21029 #: ../fish/guestfish.pod:388
21030 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
21031 msgstr ""
21032
21033 #. type: =item
21034 #: ../fish/guestfish.pod:390
21035 msgid "B<-v>"
21036 msgstr ""
21037
21038 #. type: =item
21039 #: ../fish/guestfish.pod:392
21040 msgid "B<--verbose>"
21041 msgstr ""
21042
21043 #. type: textblock
21044 #: ../fish/guestfish.pod:394
21045 msgid ""
21046 "Enable very verbose messages.  This is particularly useful if you find a "
21047 "bug."
21048 msgstr ""
21049
21050 #. type: =item
21051 #: ../fish/guestfish.pod:397
21052 msgid "B<-V>"
21053 msgstr ""
21054
21055 #. type: =item
21056 #: ../fish/guestfish.pod:399 ../tools/virt-win-reg.pl:112
21057 #: ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:119
21058 #: ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
21059 msgid "B<--version>"
21060 msgstr ""
21061
21062 #. type: textblock
21063 #: ../fish/guestfish.pod:401
21064 msgid "Display the guestfish / libguestfs version number and exit."
21065 msgstr ""
21066
21067 #. type: =item
21068 #: ../fish/guestfish.pod:403
21069 msgid "B<-w>"
21070 msgstr ""
21071
21072 #. type: =item
21073 #: ../fish/guestfish.pod:405
21074 msgid "B<--rw>"
21075 msgstr ""
21076
21077 #. type: textblock
21078 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
21079 msgid ""
21080 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
21081 "mounts are done read-write."
21082 msgstr ""
21083
21084 #. type: textblock
21085 #: ../fish/guestfish.pod:410
21086 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
21087 msgstr ""
21088
21089 #. type: =item
21090 #: ../fish/guestfish.pod:412
21091 msgid "B<-x>"
21092 msgstr ""
21093
21094 #. type: textblock
21095 #: ../fish/guestfish.pod:414
21096 msgid "Echo each command before executing it."
21097 msgstr ""
21098
21099 #. type: =head1
21100 #: ../fish/guestfish.pod:418
21101 msgid "COMMANDS ON COMMAND LINE"
21102 msgstr ""
21103
21104 #. type: textblock
21105 #: ../fish/guestfish.pod:420
21106 msgid ""
21107 "Any additional (non-option) arguments are treated as commands to execute."
21108 msgstr ""
21109
21110 #. type: textblock
21111 #: ../fish/guestfish.pod:423
21112 msgid ""
21113 "Commands to execute should be separated by a colon (C<:>), where the colon "
21114 "is a separate parameter.  Thus:"
21115 msgstr ""
21116
21117 #. type: verbatim
21118 #: ../fish/guestfish.pod:426
21119 #, no-wrap
21120 msgid ""
21121 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
21122 "\n"
21123 msgstr ""
21124
21125 #. type: textblock
21126 #: ../fish/guestfish.pod:428
21127 msgid ""
21128 "If there are no additional arguments, then we enter a shell, either an "
21129 "interactive shell with a prompt (if the input is a terminal) or a non-"
21130 "interactive shell."
21131 msgstr ""
21132
21133 #. type: textblock
21134 #: ../fish/guestfish.pod:432
21135 msgid ""
21136 "In either command line mode or non-interactive shell, the first command that"
21137 " gives an error causes the whole shell to exit.  In interactive mode (with a"
21138 " prompt) if a command fails, you can continue to enter commands."
21139 msgstr ""
21140
21141 #. type: =head1
21142 #: ../fish/guestfish.pod:437
21143 msgid "USING launch (OR run)"
21144 msgstr ""
21145
21146 #. type: textblock
21147 #: ../fish/guestfish.pod:439
21148 msgid ""
21149 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
21150 "then launch it, then mount any disks you need, and finally issue "
21151 "actions/commands.  So the general order of the day is:"
21152 msgstr ""
21153
21154 #. type: textblock
21155 #: ../fish/guestfish.pod:447
21156 msgid "add or -a/--add"
21157 msgstr ""
21158
21159 #. type: textblock
21160 #: ../fish/guestfish.pod:451
21161 msgid "launch (aka run)"
21162 msgstr ""
21163
21164 #. type: textblock
21165 #: ../fish/guestfish.pod:455
21166 msgid "mount or -m/--mount"
21167 msgstr ""
21168
21169 #. type: textblock
21170 #: ../fish/guestfish.pod:459
21171 msgid "any other commands"
21172 msgstr ""
21173
21174 #. type: textblock
21175 #: ../fish/guestfish.pod:463
21176 msgid ""
21177 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
21178 "guest before mounting or performing any other commands."
21179 msgstr ""
21180
21181 #. type: textblock
21182 #: ../fish/guestfish.pod:466
21183 msgid ""
21184 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
21185 "I<--new> options were given then C<run> is done automatically, simply "
21186 "because guestfish can't perform the action you asked for without doing this."
21187 msgstr ""
21188
21189 #. type: =head1
21190 #: ../fish/guestfish.pod:471
21191 msgid "OPENING DISKS FOR READ AND WRITE"
21192 msgstr ""
21193
21194 #. type: textblock
21195 #: ../fish/guestfish.pod:473
21196 msgid ""
21197 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
21198 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
21199 "I<-i> and I<-m> open disk images read-only or for writing."
21200 msgstr ""
21201
21202 #. type: textblock
21203 #: ../fish/guestfish.pod:478
21204 msgid ""
21205 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to"
21206 " opening disk images supplied on the command line for write.  To open a disk"
21207 " image read-only you have to do I<-a image --ro>."
21208 msgstr ""
21209
21210 #. type: textblock
21211 #: ../fish/guestfish.pod:482
21212 msgid ""
21213 "This matters: If you accidentally open a live VM disk image writable then "
21214 "you will cause irreversible disk corruption."
21215 msgstr ""
21216
21217 #. type: textblock
21218 #: ../fish/guestfish.pod:485
21219 msgid ""
21220 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
21221 "images will be opened read-only.  You will have to either specify "
21222 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
21223 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
21224 "access for disk images specified by those other command line options."
21225 msgstr ""
21226
21227 #. type: textblock
21228 #: ../fish/guestfish.pod:492
21229 msgid ""
21230 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
21231 "which does nothing (it is already the default).  However it is highly "
21232 "recommended that you use this option to indicate that you need write access,"
21233 " and prepare your scripts for the day when this option will be required for "
21234 "write access."
21235 msgstr ""
21236
21237 #. type: textblock
21238 #: ../fish/guestfish.pod:498
21239 msgid ""
21240 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any"
21241 " other libguestfs program apart from guestfish and guestmount."
21242 msgstr ""
21243
21244 #. type: =head1
21245 #: ../fish/guestfish.pod:501
21246 msgid "QUOTING"
21247 msgstr ""
21248
21249 #. type: textblock
21250 #: ../fish/guestfish.pod:503
21251 msgid ""
21252 "You can quote ordinary parameters using either single or double quotes.  For"
21253 " example:"
21254 msgstr ""
21255
21256 #. type: verbatim
21257 #: ../fish/guestfish.pod:506
21258 #, no-wrap
21259 msgid ""
21260 " add \"file with a space.img\"\n"
21261 "\n"
21262 msgstr ""
21263
21264 #. type: verbatim
21265 #: ../fish/guestfish.pod:508
21266 #, no-wrap
21267 msgid ""
21268 " rm '/file name'\n"
21269 "\n"
21270 msgstr ""
21271
21272 #. type: verbatim
21273 #: ../fish/guestfish.pod:510
21274 #, no-wrap
21275 msgid ""
21276 " rm '/\"'\n"
21277 "\n"
21278 msgstr ""
21279
21280 #. type: textblock
21281 #: ../fish/guestfish.pod:512
21282 msgid ""
21283 "A few commands require a list of strings to be passed.  For these, use a "
21284 "whitespace-separated list, enclosed in quotes.  Strings containing "
21285 "whitespace to be passed through must be enclosed in single quotes.  A "
21286 "literal single quote must be escaped with a backslash."
21287 msgstr ""
21288
21289 #. type: verbatim
21290 #: ../fish/guestfish.pod:517
21291 #, no-wrap
21292 msgid ""
21293 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
21294 " command \"/bin/echo 'foo      bar'\"\n"
21295 " command \"/bin/echo \\'foo\\'\"\n"
21296 "\n"
21297 msgstr ""
21298
21299 #. type: =head2
21300 #: ../fish/guestfish.pod:521
21301 msgid "ESCAPE SEQUENCES IN DOUBLE QUOTED ARGUMENTS"
21302 msgstr ""
21303
21304 #. type: textblock
21305 #: ../fish/guestfish.pod:523
21306 msgid ""
21307 "In double-quoted arguments (only) use backslash to insert special "
21308 "characters:"
21309 msgstr ""
21310
21311 #. type: =item
21312 #: ../fish/guestfish.pod:528
21313 msgid "C<\\a>"
21314 msgstr ""
21315
21316 #. type: textblock
21317 #: ../fish/guestfish.pod:530
21318 msgid "Alert (bell) character."
21319 msgstr ""
21320
21321 #. type: =item
21322 #: ../fish/guestfish.pod:532
21323 msgid "C<\\b>"
21324 msgstr ""
21325
21326 #. type: textblock
21327 #: ../fish/guestfish.pod:534
21328 msgid "Backspace character."
21329 msgstr ""
21330
21331 #. type: =item
21332 #: ../fish/guestfish.pod:536
21333 msgid "C<\\f>"
21334 msgstr ""
21335
21336 #. type: textblock
21337 #: ../fish/guestfish.pod:538
21338 msgid "Form feed character."
21339 msgstr ""
21340
21341 #. type: =item
21342 #: ../fish/guestfish.pod:540
21343 msgid "C<\\n>"
21344 msgstr ""
21345
21346 #. type: textblock
21347 #: ../fish/guestfish.pod:542
21348 msgid "Newline character."
21349 msgstr ""
21350
21351 #. type: =item
21352 #: ../fish/guestfish.pod:544
21353 msgid "C<\\r>"
21354 msgstr ""
21355
21356 #. type: textblock
21357 #: ../fish/guestfish.pod:546
21358 msgid "Carriage return character."
21359 msgstr ""
21360
21361 #. type: =item
21362 #: ../fish/guestfish.pod:548
21363 msgid "C<\\t>"
21364 msgstr ""
21365
21366 #. type: textblock
21367 #: ../fish/guestfish.pod:550
21368 msgid "Horizontal tab character."
21369 msgstr ""
21370
21371 #. type: =item
21372 #: ../fish/guestfish.pod:552
21373 msgid "C<\\v>"
21374 msgstr ""
21375
21376 #. type: textblock
21377 #: ../fish/guestfish.pod:554
21378 msgid "Vertical tab character."
21379 msgstr ""
21380
21381 #. type: =item
21382 #: ../fish/guestfish.pod:556
21383 msgid "C<\\\">"
21384 msgstr ""
21385
21386 #. type: textblock
21387 #: ../fish/guestfish.pod:558
21388 msgid "A literal double quote character."
21389 msgstr ""
21390
21391 #. type: =item
21392 #: ../fish/guestfish.pod:560
21393 msgid "C<\\ooo>"
21394 msgstr ""
21395
21396 #. type: textblock
21397 #: ../fish/guestfish.pod:562
21398 msgid ""
21399 "A character with octal value I<ooo>.  There must be precisely 3 octal digits"
21400 " (unlike C)."
21401 msgstr ""
21402
21403 #. type: =item
21404 #: ../fish/guestfish.pod:565
21405 msgid "C<\\xhh>"
21406 msgstr ""
21407
21408 #. type: textblock
21409 #: ../fish/guestfish.pod:567
21410 msgid ""
21411 "A character with hex value I<hh>.  There must be precisely 2 hex digits."
21412 msgstr ""
21413
21414 #. type: textblock
21415 #: ../fish/guestfish.pod:570
21416 msgid ""
21417 "In the current implementation C<\\000> and C<\\x00> cannot be used in "
21418 "strings."
21419 msgstr ""
21420
21421 #. type: =item
21422 #: ../fish/guestfish.pod:573
21423 msgid "C<\\\\>"
21424 msgstr ""
21425
21426 #. type: textblock
21427 #: ../fish/guestfish.pod:575
21428 msgid "A literal backslash character."
21429 msgstr ""
21430
21431 #. type: =head1
21432 #: ../fish/guestfish.pod:579
21433 msgid "OPTIONAL ARGUMENTS"
21434 msgstr ""
21435
21436 #. type: textblock
21437 #: ../fish/guestfish.pod:581
21438 msgid ""
21439 "Some commands take optional arguments.  These arguments appear in this "
21440 "documentation as C<[argname:..]>.  You can use them as in these examples:"
21441 msgstr ""
21442
21443 #. type: verbatim
21444 #: ../fish/guestfish.pod:585
21445 #, no-wrap
21446 msgid ""
21447 " add-drive-opts filename\n"
21448 "\n"
21449 msgstr ""
21450
21451 #. type: verbatim
21452 #: ../fish/guestfish.pod:587
21453 #, no-wrap
21454 msgid ""
21455 " add-drive-opts filename readonly:true\n"
21456 "\n"
21457 msgstr ""
21458
21459 #. type: verbatim
21460 #: ../fish/guestfish.pod:589
21461 #, no-wrap
21462 msgid ""
21463 " add-drive-opts filename format:qcow2 readonly:false\n"
21464 "\n"
21465 msgstr ""
21466
21467 #. type: textblock
21468 #: ../fish/guestfish.pod:591
21469 msgid ""
21470 "Each optional argument can appear at most once.  All optional arguments must"
21471 " appear after the required ones."
21472 msgstr ""
21473
21474 #. type: =head1
21475 #: ../fish/guestfish.pod:594
21476 msgid "NUMBERS"
21477 msgstr ""
21478
21479 #. type: textblock
21480 #: ../fish/guestfish.pod:596
21481 msgid ""
21482 "This section applies to all commands which can take integers as parameters."
21483 msgstr ""
21484
21485 #. type: =head2
21486 #: ../fish/guestfish.pod:599
21487 msgid "SIZE SUFFIX"
21488 msgstr ""
21489
21490 #. type: textblock
21491 #: ../fish/guestfish.pod:601
21492 msgid ""
21493 "When the command takes a parameter measured in bytes, you can use one of the"
21494 " following suffixes to specify kilobytes, megabytes and larger sizes:"
21495 msgstr ""
21496
21497 #. type: =item
21498 #: ../fish/guestfish.pod:607
21499 msgid "B<k> or B<K> or B<KiB>"
21500 msgstr ""
21501
21502 #. type: textblock
21503 #: ../fish/guestfish.pod:609
21504 msgid "The size in kilobytes (multiplied by 1024)."
21505 msgstr ""
21506
21507 #. type: =item
21508 #: ../fish/guestfish.pod:611
21509 msgid "B<KB>"
21510 msgstr ""
21511
21512 #. type: textblock
21513 #: ../fish/guestfish.pod:613
21514 msgid "The size in SI 1000 byte units."
21515 msgstr ""
21516
21517 #. type: =item
21518 #: ../fish/guestfish.pod:615
21519 msgid "B<M> or B<MiB>"
21520 msgstr ""
21521
21522 #. type: textblock
21523 #: ../fish/guestfish.pod:617
21524 msgid "The size in megabytes (multiplied by 1048576)."
21525 msgstr ""
21526
21527 #. type: =item
21528 #: ../fish/guestfish.pod:619
21529 msgid "B<MB>"
21530 msgstr ""
21531
21532 #. type: textblock
21533 #: ../fish/guestfish.pod:621
21534 msgid "The size in SI 1000000 byte units."
21535 msgstr ""
21536
21537 #. type: =item
21538 #: ../fish/guestfish.pod:623
21539 msgid "B<G> or B<GiB>"
21540 msgstr ""
21541
21542 #. type: textblock
21543 #: ../fish/guestfish.pod:625
21544 msgid "The size in gigabytes (multiplied by 2**30)."
21545 msgstr ""
21546
21547 #. type: =item
21548 #: ../fish/guestfish.pod:627
21549 msgid "B<GB>"
21550 msgstr ""
21551
21552 #. type: textblock
21553 #: ../fish/guestfish.pod:629
21554 msgid "The size in SI 10**9 byte units."
21555 msgstr ""
21556
21557 #. type: =item
21558 #: ../fish/guestfish.pod:631
21559 msgid "B<T> or B<TiB>"
21560 msgstr ""
21561
21562 #. type: textblock
21563 #: ../fish/guestfish.pod:633
21564 msgid "The size in terabytes (multiplied by 2**40)."
21565 msgstr ""
21566
21567 #. type: =item
21568 #: ../fish/guestfish.pod:635
21569 msgid "B<TB>"
21570 msgstr ""
21571
21572 #. type: textblock
21573 #: ../fish/guestfish.pod:637
21574 msgid "The size in SI 10**12 byte units."
21575 msgstr ""
21576
21577 #. type: =item
21578 #: ../fish/guestfish.pod:639
21579 msgid "B<P> or B<PiB>"
21580 msgstr ""
21581
21582 #. type: textblock
21583 #: ../fish/guestfish.pod:641
21584 msgid "The size in petabytes (multiplied by 2**50)."
21585 msgstr ""
21586
21587 #. type: =item
21588 #: ../fish/guestfish.pod:643
21589 msgid "B<PB>"
21590 msgstr ""
21591
21592 #. type: textblock
21593 #: ../fish/guestfish.pod:645
21594 msgid "The size in SI 10**15 byte units."
21595 msgstr ""
21596
21597 #. type: =item
21598 #: ../fish/guestfish.pod:647
21599 msgid "B<E> or B<EiB>"
21600 msgstr ""
21601
21602 #. type: textblock
21603 #: ../fish/guestfish.pod:649
21604 msgid "The size in exabytes (multiplied by 2**60)."
21605 msgstr ""
21606
21607 #. type: =item
21608 #: ../fish/guestfish.pod:651
21609 msgid "B<EB>"
21610 msgstr ""
21611
21612 #. type: textblock
21613 #: ../fish/guestfish.pod:653
21614 msgid "The size in SI 10**18 byte units."
21615 msgstr ""
21616
21617 #. type: =item
21618 #: ../fish/guestfish.pod:655
21619 msgid "B<Z> or B<ZiB>"
21620 msgstr ""
21621
21622 #. type: textblock
21623 #: ../fish/guestfish.pod:657
21624 msgid "The size in zettabytes (multiplied by 2**70)."
21625 msgstr ""
21626
21627 #. type: =item
21628 #: ../fish/guestfish.pod:659
21629 msgid "B<ZB>"
21630 msgstr ""
21631
21632 #. type: textblock
21633 #: ../fish/guestfish.pod:661
21634 msgid "The size in SI 10**21 byte units."
21635 msgstr ""
21636
21637 #. type: =item
21638 #: ../fish/guestfish.pod:663
21639 msgid "B<Y> or B<YiB>"
21640 msgstr ""
21641
21642 #. type: textblock
21643 #: ../fish/guestfish.pod:665
21644 msgid "The size in yottabytes (multiplied by 2**80)."
21645 msgstr ""
21646
21647 #. type: =item
21648 #: ../fish/guestfish.pod:667
21649 msgid "B<YB>"
21650 msgstr ""
21651
21652 #. type: textblock
21653 #: ../fish/guestfish.pod:669
21654 msgid "The size in SI 10**24 byte units."
21655 msgstr ""
21656
21657 #. type: verbatim
21658 #: ../fish/guestfish.pod:675
21659 #, no-wrap
21660 msgid ""
21661 " truncate-size /file 1G\n"
21662 "\n"
21663 msgstr ""
21664
21665 #. type: textblock
21666 #: ../fish/guestfish.pod:677
21667 msgid "would truncate the file to 1 gigabyte."
21668 msgstr ""
21669
21670 #. type: textblock
21671 #: ../fish/guestfish.pod:679
21672 msgid ""
21673 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
21674 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
21675 "suffix will probably not do what you expect."
21676 msgstr ""
21677
21678 #. type: =head2
21679 #: ../fish/guestfish.pod:683
21680 msgid "OCTAL AND HEXADECIMAL NUMBERS"
21681 msgstr ""
21682
21683 #. type: textblock
21684 #: ../fish/guestfish.pod:685
21685 msgid ""
21686 "For specifying the radix (base) use the C convention: C<0> to prefix an "
21687 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
21688 msgstr ""
21689
21690 #. type: verbatim
21691 #: ../fish/guestfish.pod:688
21692 #, no-wrap
21693 msgid ""
21694 " 1234      decimal number 1234\n"
21695 " 02322     octal number, equivalent to decimal 1234\n"
21696 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
21697 "\n"
21698 msgstr ""
21699
21700 #. type: textblock
21701 #: ../fish/guestfish.pod:692
21702 msgid ""
21703 "When using the C<chmod> command, you almost always want to specify an octal "
21704 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
21705 "L<chmod(1)> program):"
21706 msgstr ""
21707
21708 #. type: verbatim
21709 #: ../fish/guestfish.pod:696
21710 #, no-wrap
21711 msgid ""
21712 " chmod 0777 /public  # OK\n"
21713 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
21714 "\n"
21715 msgstr ""
21716
21717 #. type: textblock
21718 #: ../fish/guestfish.pod:699
21719 msgid ""
21720 "Commands that return numbers usually print them in decimal, but some "
21721 "commands print numbers in other radices (eg. C<umask> prints the mode in "
21722 "octal, preceeded by C<0>)."
21723 msgstr ""
21724
21725 #. type: =head1
21726 #: ../fish/guestfish.pod:703
21727 msgid "WILDCARDS AND GLOBBING"
21728 msgstr ""
21729
21730 #. type: textblock
21731 #: ../fish/guestfish.pod:705
21732 msgid ""
21733 "Neither guestfish nor the underlying guestfs API performs wildcard expansion"
21734 " (globbing) by default.  So for example the following will not do what you "
21735 "expect:"
21736 msgstr ""
21737
21738 #. type: verbatim
21739 #: ../fish/guestfish.pod:709
21740 #, no-wrap
21741 msgid ""
21742 " rm-rf /home/*\n"
21743 "\n"
21744 msgstr ""
21745
21746 #. type: textblock
21747 #: ../fish/guestfish.pod:711
21748 msgid ""
21749 "Assuming you don't have a directory called literally C</home/*> then the "
21750 "above command will return an error."
21751 msgstr ""
21752
21753 #. type: textblock
21754 #: ../fish/guestfish.pod:714
21755 msgid "To perform wildcard expansion, use the C<glob> command."
21756 msgstr ""
21757
21758 #. type: verbatim
21759 #: ../fish/guestfish.pod:716
21760 #, no-wrap
21761 msgid ""
21762 " glob rm-rf /home/*\n"
21763 "\n"
21764 msgstr ""
21765
21766 #. type: textblock
21767 #: ../fish/guestfish.pod:718
21768 msgid ""
21769 "runs C<rm-rf> on each path that matches (ie. potentially running the command"
21770 " many times), equivalent to:"
21771 msgstr ""
21772
21773 #. type: verbatim
21774 #: ../fish/guestfish.pod:721
21775 #, no-wrap
21776 msgid ""
21777 " rm-rf /home/jim\n"
21778 " rm-rf /home/joe\n"
21779 " rm-rf /home/mary\n"
21780 "\n"
21781 msgstr ""
21782
21783 #. type: textblock
21784 #: ../fish/guestfish.pod:725
21785 msgid "C<glob> only works on simple guest paths and not on device names."
21786 msgstr ""
21787
21788 #. type: textblock
21789 #: ../fish/guestfish.pod:727
21790 msgid ""
21791 "If you have several parameters, each containing a wildcard, then glob will "
21792 "perform a Cartesian product."
21793 msgstr ""
21794
21795 #. type: =head1
21796 #: ../fish/guestfish.pod:730
21797 msgid "COMMENTS"
21798 msgstr ""
21799
21800 #. type: textblock
21801 #: ../fish/guestfish.pod:732
21802 msgid ""
21803 "Any line which starts with a I<#> character is treated as a comment and "
21804 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
21805 "a command.  For example:"
21806 msgstr ""
21807
21808 #. type: verbatim
21809 #: ../fish/guestfish.pod:736
21810 #, no-wrap
21811 msgid ""
21812 " # this is a comment\n"
21813 "         # this is a comment\n"
21814 " foo # NOT a comment\n"
21815 "\n"
21816 msgstr ""
21817
21818 #. type: textblock
21819 #: ../fish/guestfish.pod:740
21820 msgid "Blank lines are also ignored."
21821 msgstr ""
21822
21823 #. type: =head1
21824 #: ../fish/guestfish.pod:742
21825 msgid "RUNNING COMMANDS LOCALLY"
21826 msgstr ""
21827
21828 #. type: textblock
21829 #: ../fish/guestfish.pod:744
21830 msgid ""
21831 "Any line which starts with a I<!> character is treated as a command sent to "
21832 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
21833 msgstr ""
21834
21835 #. type: verbatim
21836 #: ../fish/guestfish.pod:748
21837 #, no-wrap
21838 msgid ""
21839 " !mkdir local\n"
21840 " tgz-out /remote local/remote-data.tar.gz\n"
21841 "\n"
21842 msgstr ""
21843
21844 #. type: textblock
21845 #: ../fish/guestfish.pod:751
21846 msgid ""
21847 "will create a directory C<local> on the host, and then export the contents "
21848 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
21849 "(See C<tgz-out>)."
21850 msgstr ""
21851
21852 #. type: textblock
21853 #: ../fish/guestfish.pod:755
21854 msgid ""
21855 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
21856 "effect, due to the way that subprocesses work in Unix."
21857 msgstr ""
21858
21859 #. type: =head2
21860 #: ../fish/guestfish.pod:758
21861 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
21862 msgstr ""
21863
21864 #. type: textblock
21865 #: ../fish/guestfish.pod:760
21866 msgid ""
21867 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
21868 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
21869 "and executed as guestfish commands."
21870 msgstr ""
21871
21872 #. type: textblock
21873 #: ../fish/guestfish.pod:764
21874 msgid ""
21875 "Thus you can use shell script to construct arbitrary guestfish commands "
21876 "which are then parsed by guestfish."
21877 msgstr ""
21878
21879 #. type: textblock
21880 #: ../fish/guestfish.pod:767
21881 msgid ""
21882 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
21883 "through C</foo.100>) using guestfish commands alone.  However this is simple"
21884 " if we use a shell script to create the guestfish commands for us:"
21885 msgstr ""
21886
21887 #. type: verbatim
21888 #: ../fish/guestfish.pod:772
21889 #, no-wrap
21890 msgid ""
21891 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
21892 "\n"
21893 msgstr ""
21894
21895 #. type: textblock
21896 #: ../fish/guestfish.pod:774
21897 msgid "or with names like C</foo.001>:"
21898 msgstr ""
21899
21900 #. type: verbatim
21901 #: ../fish/guestfish.pod:776
21902 #, no-wrap
21903 msgid ""
21904 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
21905 "\n"
21906 msgstr ""
21907
21908 #. type: textblock
21909 #: ../fish/guestfish.pod:778
21910 msgid ""
21911 "When using guestfish interactively it can be helpful to just run the shell "
21912 "script first (ie. remove the initial C<E<lt>> character so it is just an "
21913 "ordinary I<!> local command), see what guestfish commands it would run, and "
21914 "when you are happy with those prepend the C<E<lt>> character to run the "
21915 "guestfish commands for real."
21916 msgstr ""
21917
21918 #. type: =head1
21919 #: ../fish/guestfish.pod:784
21920 msgid "PIPES"
21921 msgstr ""
21922
21923 #. type: textblock
21924 #: ../fish/guestfish.pod:786
21925 msgid ""
21926 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
21927 "command (a guestfish command) to the second command (any host command).  For"
21928 " example:"
21929 msgstr ""
21930
21931 #. type: verbatim
21932 #: ../fish/guestfish.pod:790
21933 #, no-wrap
21934 msgid ""
21935 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
21936 "\n"
21937 msgstr ""
21938
21939 #. type: textblock
21940 #: ../fish/guestfish.pod:792
21941 msgid ""
21942 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
21943 "program).  The above command would list all accounts in the guest filesystem"
21944 " which have UID 0, ie. root accounts including backdoors.  Other examples:"
21945 msgstr ""
21946
21947 #. type: verbatim
21948 #: ../fish/guestfish.pod:797
21949 #, no-wrap
21950 msgid ""
21951 " hexdump /bin/ls | head\n"
21952 " list-devices | tail -1\n"
21953 " tgz-out / - | tar ztf -\n"
21954 "\n"
21955 msgstr ""
21956
21957 #. type: textblock
21958 #: ../fish/guestfish.pod:801
21959 msgid ""
21960 "The space before the pipe symbol is required, any space after the pipe "
21961 "symbol is optional.  Everything after the pipe symbol is just passed "
21962 "straight to the host shell, so it can contain redirections, globs and "
21963 "anything else that makes sense on the host side."
21964 msgstr ""
21965
21966 #. type: textblock
21967 #: ../fish/guestfish.pod:806
21968 msgid ""
21969 "To use a literal argument which begins with a pipe symbol, you have to quote"
21970 " it, eg:"
21971 msgstr ""
21972
21973 #. type: verbatim
21974 #: ../fish/guestfish.pod:809
21975 #, no-wrap
21976 msgid ""
21977 " echo \"|\"\n"
21978 "\n"
21979 msgstr ""
21980
21981 #. type: =head1
21982 #: ../fish/guestfish.pod:811
21983 msgid "HOME DIRECTORIES"
21984 msgstr ""
21985
21986 #. type: textblock
21987 #: ../fish/guestfish.pod:813
21988 msgid ""
21989 "If a parameter starts with the character C<~> then the tilde may be expanded"
21990 " as a home directory path (either C<~> for the current user's home "
21991 "directory, or C<~user> for another user)."
21992 msgstr ""
21993
21994 #. type: textblock
21995 #: ../fish/guestfish.pod:817
21996 msgid ""
21997 "Note that home directory expansion happens for users known I<on the host>, "
21998 "not in the guest filesystem."
21999 msgstr ""
22000
22001 #. type: textblock
22002 #: ../fish/guestfish.pod:820
22003 msgid ""
22004 "To use a literal argument which begins with a tilde, you have to quote it, "
22005 "eg:"
22006 msgstr ""
22007
22008 #. type: verbatim
22009 #: ../fish/guestfish.pod:823
22010 #, no-wrap
22011 msgid ""
22012 " echo \"~\"\n"
22013 "\n"
22014 msgstr ""
22015
22016 #. type: textblock
22017 #: ../fish/guestfish.pod:827
22018 msgid ""
22019 "Libguestfs has some support for Linux guests encrypted according to the "
22020 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
22021 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
22022 "LUKS is supported."
22023 msgstr ""
22024
22025 #. type: textblock
22026 #: ../fish/guestfish.pod:832
22027 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
22028 msgstr ""
22029
22030 #. type: verbatim
22031 #: ../fish/guestfish.pod:834
22032 #, no-wrap
22033 msgid ""
22034 " ><fs> vfs-type /dev/sda2\n"
22035 " crypto_LUKS\n"
22036 "\n"
22037 msgstr ""
22038
22039 #. type: textblock
22040 #: ../fish/guestfish.pod:837
22041 msgid ""
22042 "Then open those devices using L</luks-open>.  This creates a device-mapper "
22043 "device called C</dev/mapper/luksdev>."
22044 msgstr ""
22045
22046 #. type: verbatim
22047 #: ../fish/guestfish.pod:840
22048 #, no-wrap
22049 msgid ""
22050 " ><fs> luks-open /dev/sda2 luksdev\n"
22051 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
22052 "\n"
22053 msgstr ""
22054
22055 #. type: textblock
22056 #: ../fish/guestfish.pod:843
22057 msgid ""
22058 "Finally you have to tell LVM to scan for volume groups on the newly created "
22059 "mapper device:"
22060 msgstr ""
22061
22062 #. type: verbatim
22063 #: ../fish/guestfish.pod:846
22064 #, no-wrap
22065 msgid ""
22066 " vgscan\n"
22067 " vg-activate-all true\n"
22068 "\n"
22069 msgstr ""
22070
22071 #. type: textblock
22072 #: ../fish/guestfish.pod:849
22073 msgid "The logical volume(s) can now be mounted in the usual way."
22074 msgstr ""
22075
22076 #. type: textblock
22077 #: ../fish/guestfish.pod:851
22078 msgid ""
22079 "Before closing a LUKS device you must unmount any logical volumes on it and "
22080 "deactivate the volume groups by calling C<vg-activate false VG> on each one."
22081 "  Then you can close the mapper device:"
22082 msgstr ""
22083
22084 #. type: verbatim
22085 #: ../fish/guestfish.pod:855
22086 #, no-wrap
22087 msgid ""
22088 " vg-activate false /dev/VG\n"
22089 " luks-close /dev/mapper/luksdev\n"
22090 "\n"
22091 msgstr ""
22092
22093 #. type: =head1
22094 #: ../fish/guestfish.pod:858
22095 msgid "WINDOWS PATHS"
22096 msgstr ""
22097
22098 #. type: textblock
22099 #: ../fish/guestfish.pod:860
22100 msgid ""
22101 "If a path is prefixed with C<win:> then you can use Windows-style drive "
22102 "letters and paths (with some limitations).  The following commands are "
22103 "equivalent:"
22104 msgstr ""
22105
22106 #. type: verbatim
22107 #: ../fish/guestfish.pod:864
22108 #, no-wrap
22109 msgid ""
22110 " file /WINDOWS/system32/config/system.LOG\n"
22111 "\n"
22112 msgstr ""
22113
22114 #. type: verbatim
22115 #: ../fish/guestfish.pod:866
22116 #, no-wrap
22117 msgid ""
22118 " file win:\\windows\\system32\\config\\system.log\n"
22119 "\n"
22120 msgstr ""
22121
22122 #. type: verbatim
22123 #: ../fish/guestfish.pod:868
22124 #, no-wrap
22125 msgid ""
22126 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
22127 "\n"
22128 msgstr ""
22129
22130 #. type: textblock
22131 #: ../fish/guestfish.pod:870
22132 msgid ""
22133 "The parameter is rewritten \"behind the scenes\" by looking up the position "
22134 "where the drive is mounted, prepending that to the path, changing all "
22135 "backslash characters to forward slash, then resolving the result using L"
22136 "</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
22137 "then the parameter might be rewritten like this:"
22138 msgstr ""
22139
22140 #. type: verbatim
22141 #: ../fish/guestfish.pod:876
22142 #, no-wrap
22143 msgid ""
22144 " win:e:\\foo\\bar => /e/FOO/bar\n"
22145 "\n"
22146 msgstr ""
22147
22148 #. type: textblock
22149 #: ../fish/guestfish.pod:878
22150 msgid "This only works in argument positions that expect a path."
22151 msgstr ""
22152
22153 #. type: =head1
22154 #: ../fish/guestfish.pod:880
22155 msgid "UPLOADING AND DOWNLOADING FILES"
22156 msgstr ""
22157
22158 #. type: textblock
22159 #: ../fish/guestfish.pod:882
22160 msgid ""
22161 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
22162 "others which upload from or download to a local file, you can use the "
22163 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
22164 msgstr ""
22165
22166 #. type: verbatim
22167 #: ../fish/guestfish.pod:886
22168 #, no-wrap
22169 msgid ""
22170 " upload - /foo\n"
22171 "\n"
22172 msgstr ""
22173
22174 #. type: textblock
22175 #: ../fish/guestfish.pod:888
22176 msgid ""
22177 "reads stdin and creates from that a file C</foo> in the disk image, and:"
22178 msgstr ""
22179
22180 #. type: verbatim
22181 #: ../fish/guestfish.pod:891
22182 #, no-wrap
22183 msgid ""
22184 " tar-out /etc - | tar tf -\n"
22185 "\n"
22186 msgstr ""
22187
22188 #. type: textblock
22189 #: ../fish/guestfish.pod:893
22190 msgid ""
22191 "writes the tarball to stdout and then pipes that into the external \"tar\" "
22192 "command (see L</PIPES>)."
22193 msgstr ""
22194
22195 #. type: textblock
22196 #: ../fish/guestfish.pod:896
22197 msgid ""
22198 "When using C<-> to read from stdin, the input is read up to the end of "
22199 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
22200 "some arbitrary end marker:"
22201 msgstr ""
22202
22203 #. type: verbatim
22204 #: ../fish/guestfish.pod:900
22205 #, no-wrap
22206 msgid ""
22207 " upload -<<END /foo\n"
22208 " input line 1\n"
22209 " input line 2\n"
22210 " input line 3\n"
22211 " END\n"
22212 "\n"
22213 msgstr ""
22214
22215 #. type: textblock
22216 #: ../fish/guestfish.pod:906
22217 msgid ""
22218 "Any string of characters can be used instead of C<END>.  The end marker must"
22219 " appear on a line of its own, without any preceeding or following characters"
22220 " (not even spaces)."
22221 msgstr ""
22222
22223 #. type: textblock
22224 #: ../fish/guestfish.pod:910
22225 msgid ""
22226 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
22227 "upload local files (so-called \"FileIn\" parameters in the generator)."
22228 msgstr ""
22229
22230 #. type: =head1
22231 #: ../fish/guestfish.pod:913
22232 msgid "EXIT ON ERROR BEHAVIOUR"
22233 msgstr ""
22234
22235 #. type: textblock
22236 #: ../fish/guestfish.pod:915
22237 msgid ""
22238 "By default, guestfish will ignore any errors when in interactive mode (ie. "
22239 "taking commands from a human over a tty), and will exit on the first error "
22240 "in non-interactive mode (scripts, commands given on the command line)."
22241 msgstr ""
22242
22243 #. type: textblock
22244 #: ../fish/guestfish.pod:920
22245 msgid ""
22246 "If you prefix a command with a I<-> character, then that command will not "
22247 "cause guestfish to exit, even if that (one) command returns an error."
22248 msgstr ""
22249
22250 #. type: =head1
22251 #: ../fish/guestfish.pod:924
22252 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
22253 msgstr ""
22254
22255 #. type: textblock
22256 #: ../fish/guestfish.pod:926
22257 msgid ""
22258 "Guestfish can be remote-controlled over a socket.  This is useful "
22259 "particularly in shell scripts where you want to make several different "
22260 "changes to a filesystem, but you don't want the overhead of starting up a "
22261 "guestfish process each time."
22262 msgstr ""
22263
22264 #. type: textblock
22265 #: ../fish/guestfish.pod:931
22266 msgid "Start a guestfish server process using:"
22267 msgstr ""
22268
22269 #. type: verbatim
22270 #: ../fish/guestfish.pod:933
22271 #, no-wrap
22272 msgid ""
22273 " eval \"`guestfish --listen`\"\n"
22274 "\n"
22275 msgstr ""
22276
22277 #. type: textblock
22278 #: ../fish/guestfish.pod:935
22279 msgid "and then send it commands by doing:"
22280 msgstr ""
22281
22282 #. type: verbatim
22283 #: ../fish/guestfish.pod:937
22284 #, no-wrap
22285 msgid ""
22286 " guestfish --remote cmd [...]\n"
22287 "\n"
22288 msgstr ""
22289
22290 #. type: textblock
22291 #: ../fish/guestfish.pod:939
22292 msgid "To cause the server to exit, send it the exit command:"
22293 msgstr ""
22294
22295 #. type: verbatim
22296 #: ../fish/guestfish.pod:941
22297 #, no-wrap
22298 msgid ""
22299 " guestfish --remote exit\n"
22300 "\n"
22301 msgstr ""
22302
22303 #. type: textblock
22304 #: ../fish/guestfish.pod:943
22305 msgid ""
22306 "Note that the server will normally exit if there is an error in a command.  "
22307 "You can change this in the usual way.  See section L</EXIT ON ERROR "
22308 "BEHAVIOUR>."
22309 msgstr ""
22310
22311 #. type: =head2
22312 #: ../fish/guestfish.pod:947
22313 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
22314 msgstr ""
22315
22316 #. type: textblock
22317 #: ../fish/guestfish.pod:949
22318 msgid ""
22319 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which"
22320 " is how the I<--remote> option knows where to send the commands.  You can "
22321 "have several guestfish listener processes running using:"
22322 msgstr ""
22323
22324 #. type: verbatim
22325 #: ../fish/guestfish.pod:953
22326 #, no-wrap
22327 msgid ""
22328 " eval \"`guestfish --listen`\"\n"
22329 " pid1=$GUESTFISH_PID\n"
22330 " eval \"`guestfish --listen`\"\n"
22331 " pid2=$GUESTFISH_PID\n"
22332 " ...\n"
22333 " guestfish --remote=$pid1 cmd\n"
22334 " guestfish --remote=$pid2 cmd\n"
22335 "\n"
22336 msgstr ""
22337
22338 #. type: =head2
22339 #: ../fish/guestfish.pod:961
22340 msgid "REMOTE CONTROL AND CSH"
22341 msgstr ""
22342
22343 #. type: textblock
22344 #: ../fish/guestfish.pod:963
22345 msgid ""
22346 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
22347 "option:"
22348 msgstr ""
22349
22350 #. type: verbatim
22351 #: ../fish/guestfish.pod:966
22352 #, no-wrap
22353 msgid ""
22354 " eval \"`guestfish --listen --csh`\"\n"
22355 "\n"
22356 msgstr ""
22357
22358 #. type: =head2
22359 #: ../fish/guestfish.pod:968
22360 msgid "REMOTE CONTROL DETAILS"
22361 msgstr ""
22362
22363 #. type: textblock
22364 #: ../fish/guestfish.pod:970
22365 msgid ""
22366 "Remote control happens over a Unix domain socket called "
22367 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
22368 "of the process, and C<$PID> is the process ID of the server."
22369 msgstr ""
22370
22371 #. type: textblock
22372 #: ../fish/guestfish.pod:974
22373 msgid "Guestfish client and server versions must match exactly."
22374 msgstr ""
22375
22376 #. type: =head1
22377 #: ../fish/guestfish.pod:976
22378 msgid "PREPARED DISK IMAGES"
22379 msgstr ""
22380
22381 #. type: textblock
22382 #: ../fish/guestfish.pod:978
22383 msgid ""
22384 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
22385 "preformatted disk images that guestfish can make for you to save typing.  "
22386 "This is particularly useful for testing purposes.  This option is used "
22387 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
22388 "can be mixed with I<-a>)."
22389 msgstr ""
22390
22391 #. type: textblock
22392 #: ../fish/guestfish.pod:984
22393 msgid ""
22394 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
22395 "the second and so on.  Existing files in the current directory are "
22396 "I<overwritten>."
22397 msgstr ""
22398
22399 #. type: textblock
22400 #: ../fish/guestfish.pod:988
22401 msgid ""
22402 "The type briefly describes how the disk should be sized, partitioned, how "
22403 "filesystem(s) should be created, and how content should be added.  "
22404 "Optionally the type can be followed by extra parameters, separated by C<:> "
22405 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
22406 "sparsely-allocated disk, containing a single partition, with the partition "
22407 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem"
22408 " on a 1GB disk instead."
22409 msgstr ""
22410
22411 #. type: textblock
22412 #: ../fish/guestfish.pod:996
22413 msgid "To list the available types and any extra parameters they take, run:"
22414 msgstr ""
22415
22416 #. type: textblock
22417 #: ../fish/guestfish.pod:1000
22418 msgid ""
22419 "Note that the prepared filesystem is not mounted.  You would usually have to"
22420 " use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
22421 msgstr ""
22422
22423 #. type: textblock
22424 #: ../fish/guestfish.pod:1004
22425 msgid ""
22426 "If any I<-N> or I<--new> options are given, the guest is automatically "
22427 "launched."
22428 msgstr ""
22429
22430 #. type: textblock
22431 #: ../fish/guestfish.pod:1009
22432 msgid "Create a 100MB disk with an ext4-formatted partition:"
22433 msgstr ""
22434
22435 #. type: verbatim
22436 #: ../fish/guestfish.pod:1011
22437 #, no-wrap
22438 msgid ""
22439 " guestfish -N fs:ext4\n"
22440 "\n"
22441 msgstr ""
22442
22443 #. type: textblock
22444 #: ../fish/guestfish.pod:1013
22445 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
22446 msgstr ""
22447
22448 #. type: verbatim
22449 #: ../fish/guestfish.pod:1015
22450 #, no-wrap
22451 msgid ""
22452 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
22453 "\n"
22454 msgstr ""
22455
22456 #. type: textblock
22457 #: ../fish/guestfish.pod:1017
22458 msgid "Create a blank 200MB disk:"
22459 msgstr ""
22460
22461 #. type: verbatim
22462 #: ../fish/guestfish.pod:1019
22463 #, no-wrap
22464 msgid ""
22465 " guestfish -N disk:200M\n"
22466 "\n"
22467 msgstr ""
22468
22469 #. type: =head1
22470 #: ../fish/guestfish.pod:1021
22471 msgid "PROGRESS BARS"
22472 msgstr ""
22473
22474 #. type: textblock
22475 #: ../fish/guestfish.pod:1023
22476 msgid ""
22477 "Some (not all) long-running commands send progress notification messages as "
22478 "they are running.  Guestfish turns these messages into progress bars."
22479 msgstr ""
22480
22481 #. type: textblock
22482 #: ../fish/guestfish.pod:1027
22483 msgid ""
22484 "When a command that supports progress bars takes longer than two seconds to "
22485 "run, and if progress bars are enabled, then you will see one appearing below"
22486 " the command:"
22487 msgstr ""
22488
22489 #. type: verbatim
22490 #: ../fish/guestfish.pod:1031
22491 #, no-wrap
22492 msgid ""
22493 " ><fs> copy-size /large-file /another-file 2048M\n"
22494 " / 10% [#####-----------------------------------------] 00:30\n"
22495 "\n"
22496 msgstr ""
22497
22498 #. type: textblock
22499 #: ../fish/guestfish.pod:1034
22500 msgid ""
22501 "The spinner on the left hand side moves round once for every progress "
22502 "notification received from the backend.  This is a (reasonably) golden "
22503 "assurance that the command is \"doing something\" even if the progress bar "
22504 "is not moving, because the command is able to send the progress "
22505 "notifications.  When the bar reaches 100% and the command finishes, the "
22506 "spinner disappears."
22507 msgstr ""
22508
22509 #. type: textblock
22510 #: ../fish/guestfish.pod:1041
22511 msgid ""
22512 "Progress bars are enabled by default when guestfish is used interactively.  "
22513 "You can enable them even for non-interactive modes using I<--progress-bars>,"
22514 " and you can disable them completely using I<--no-progress-bars>."
22515 msgstr ""
22516
22517 #. type: =head1
22518 #: ../fish/guestfish.pod:1046
22519 msgid "GUESTFISH COMMANDS"
22520 msgstr ""
22521
22522 #. type: textblock
22523 #: ../fish/guestfish.pod:1048
22524 msgid ""
22525 "The commands in this section are guestfish convenience commands, in other "
22526 "words, they are not part of the L<guestfs(3)> API."
22527 msgstr ""
22528
22529 #. type: =head2
22530 #: ../fish/guestfish.pod:1051
22531 msgid "help"
22532 msgstr ""
22533
22534 #. type: verbatim
22535 #: ../fish/guestfish.pod:1053
22536 #, no-wrap
22537 msgid ""
22538 " help\n"
22539 " help cmd\n"
22540 "\n"
22541 msgstr ""
22542
22543 #. type: textblock
22544 #: ../fish/guestfish.pod:1056
22545 msgid "Without any parameter, this provides general help."
22546 msgstr ""
22547
22548 #. type: textblock
22549 #: ../fish/guestfish.pod:1058
22550 msgid "With a C<cmd> parameter, this displays detailed help for that command."
22551 msgstr ""
22552
22553 #. type: =head2
22554 #: ../fish/guestfish.pod:1060
22555 msgid "quit | exit"
22556 msgstr ""
22557
22558 #. type: textblock
22559 #: ../fish/guestfish.pod:1062
22560 msgid "This exits guestfish.  You can also use C<^D> key."
22561 msgstr ""
22562
22563 #. type: textblock
22564 #: ../fish/guestfish.pod:1064
22565 msgid "@FISH_COMMANDS@"
22566 msgstr ""
22567
22568 #. type: =head1
22569 #: ../fish/guestfish.pod:1066
22570 msgid "COMMANDS"
22571 msgstr ""
22572
22573 #. type: =head1
22574 #: ../fish/guestfish.pod:1070 ../test-tool/libguestfs-test-tool.pod:77
22575 msgid "EXIT CODE"
22576 msgstr ""
22577
22578 #. type: textblock
22579 #: ../fish/guestfish.pod:1072
22580 msgid ""
22581 "guestfish returns 0 if the commands completed without error, or 1 if there "
22582 "was an error."
22583 msgstr ""
22584
22585 #. type: =item
22586 #: ../fish/guestfish.pod:1079
22587 msgid "EDITOR"
22588 msgstr ""
22589
22590 #. type: textblock
22591 #: ../fish/guestfish.pod:1081
22592 msgid ""
22593 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
22594 "C<vi>."
22595 msgstr ""
22596
22597 #. type: =item
22598 #: ../fish/guestfish.pod:1084
22599 msgid "GUESTFISH_DISPLAY_IMAGE"
22600 msgstr ""
22601
22602 #. type: textblock
22603 #: ../fish/guestfish.pod:1086
22604 msgid ""
22605 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
22606 "If not set, it uses L<display(1)>."
22607 msgstr ""
22608
22609 #. type: =item
22610 #: ../fish/guestfish.pod:1089
22611 msgid "GUESTFISH_PID"
22612 msgstr ""
22613
22614 #. type: textblock
22615 #: ../fish/guestfish.pod:1091
22616 msgid ""
22617 "Used with the I<--remote> option to specify the remote guestfish process to "
22618 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
22619 msgstr ""
22620
22621 #. type: =item
22622 #: ../fish/guestfish.pod:1095
22623 msgid "HEXEDITOR"
22624 msgstr ""
22625
22626 #. type: textblock
22627 #: ../fish/guestfish.pod:1097
22628 msgid ""
22629 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
22630 "not specified, the external L<hexedit(1)> program is used."
22631 msgstr ""
22632
22633 #. type: =item
22634 #: ../fish/guestfish.pod:1101
22635 msgid "HOME"
22636 msgstr ""
22637
22638 #. type: textblock
22639 #: ../fish/guestfish.pod:1103
22640 msgid ""
22641 "If compiled with GNU readline support, various files in the home directory "
22642 "can be used.  See L</FILES>."
22643 msgstr ""
22644
22645 #. type: textblock
22646 #: ../fish/guestfish.pod:1112
22647 msgid ""
22648 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
22649 "effect as using the B<-v> option."
22650 msgstr ""
22651
22652 #. type: textblock
22653 #: ../fish/guestfish.pod:1124
22654 msgid ""
22655 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
22656 "the discussion of paths in L<guestfs(3)>."
22657 msgstr ""
22658
22659 #. type: textblock
22660 #: ../fish/guestfish.pod:1135
22661 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
22662 msgstr ""
22663
22664 #. type: =item
22665 #: ../fish/guestfish.pod:1137
22666 msgid "PAGER"
22667 msgstr ""
22668
22669 #. type: textblock
22670 #: ../fish/guestfish.pod:1139
22671 msgid ""
22672 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
22673 "C<more>."
22674 msgstr ""
22675
22676 #. type: =head1
22677 #: ../fish/guestfish.pod:1155 ../fuse/guestmount.pod:264
22678 msgid "FILES"
22679 msgstr ""
22680
22681 #. type: =item
22682 #: ../fish/guestfish.pod:1159 ../fuse/guestmount.pod:268
22683 msgid "$HOME/.libguestfs-tools.rc"
22684 msgstr ""
22685
22686 #. type: =item
22687 #: ../fish/guestfish.pod:1161 ../fuse/guestmount.pod:270
22688 msgid "/etc/libguestfs-tools.conf"
22689 msgstr ""
22690
22691 #. type: textblock
22692 #: ../fish/guestfish.pod:1163 ../fuse/guestmount.pod:272
22693 msgid ""
22694 "This configuration file controls the default read-only or read-write mode "
22695 "(I<--ro> or I<--rw>)."
22696 msgstr ""
22697
22698 #. type: textblock
22699 #: ../fish/guestfish.pod:1166
22700 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
22701 msgstr ""
22702
22703 #. type: =item
22704 #: ../fish/guestfish.pod:1168
22705 msgid "$HOME/.guestfish"
22706 msgstr ""
22707
22708 #. type: textblock
22709 #: ../fish/guestfish.pod:1170
22710 msgid ""
22711 "If compiled with GNU readline support, then the command history is saved in "
22712 "this file."
22713 msgstr ""
22714
22715 #. type: =item
22716 #: ../fish/guestfish.pod:1173
22717 msgid "$HOME/.inputrc"
22718 msgstr ""
22719
22720 #. type: =item
22721 #: ../fish/guestfish.pod:1175
22722 msgid "/etc/inputrc"
22723 msgstr ""
22724
22725 #. type: textblock
22726 #: ../fish/guestfish.pod:1177
22727 msgid ""
22728 "If compiled with GNU readline support, then these files can be used to "
22729 "configure readline.  For further information, please see "
22730 "L<readline(3)/INITIALIZATION FILE>."
22731 msgstr ""
22732
22733 #. type: textblock
22734 #: ../fish/guestfish.pod:1181
22735 msgid "To write rules which only apply to guestfish, use:"
22736 msgstr ""
22737
22738 #. type: verbatim
22739 #: ../fish/guestfish.pod:1183
22740 #, no-wrap
22741 msgid ""
22742 " $if guestfish\n"
22743 " ...\n"
22744 " $endif\n"
22745 "\n"
22746 msgstr ""
22747
22748 #. type: textblock
22749 #: ../fish/guestfish.pod:1187
22750 msgid ""
22751 "Variables that you can set in inputrc that change the behaviour of guestfish"
22752 " in useful ways include:"
22753 msgstr ""
22754
22755 #. type: =item
22756 #: ../fish/guestfish.pod:1192
22757 msgid "completion-ignore-case (default: on)"
22758 msgstr ""
22759
22760 #. type: textblock
22761 #: ../fish/guestfish.pod:1194
22762 msgid ""
22763 "By default, guestfish will ignore case when tab-completing paths on the "
22764 "disk.  Use:"
22765 msgstr ""
22766
22767 #. type: verbatim
22768 #: ../fish/guestfish.pod:1197
22769 #, no-wrap
22770 msgid ""
22771 " set completion-ignore-case off\n"
22772 "\n"
22773 msgstr ""
22774
22775 #. type: textblock
22776 #: ../fish/guestfish.pod:1199
22777 msgid "to make guestfish case sensitive."
22778 msgstr ""
22779
22780 #. type: =item
22781 #: ../fish/guestfish.pod:1203
22782 msgid "test1.img"
22783 msgstr ""
22784
22785 #. type: =item
22786 #: ../fish/guestfish.pod:1205
22787 msgid "test2.img (etc)"
22788 msgstr ""
22789
22790 #. type: textblock
22791 #: ../fish/guestfish.pod:1207
22792 msgid ""
22793 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
22794 "will be created in the file C<test1.img> in the current directory.  The "
22795 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with"
22796 " the same name will be overwritten."
22797 msgstr ""
22798
22799 #. type: textblock
22800 #: ../fish/guestfish.pod:1216
22801 msgid ""
22802 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-"
22803 "in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-"
22804 "filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-"
22805 "list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L"
22806 "<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L"
22807 "<virt-win-reg(1)>, L<display(1)>, L<hexedit(1)>."
22808 msgstr ""
22809
22810 #. type: textblock
22811 #: ../fish/guestfish.pod:1247 ../test-tool/libguestfs-test-tool.pod:102
22812 #: ../fuse/guestmount.pod:299 ../tools/virt-win-reg.pl:778
22813 #: ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309
22814 #: ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
22815 msgid ""
22816 "This program is free software; you can redistribute it and/or modify it "
22817 "under the terms of the GNU General Public License as published by the Free "
22818 "Software Foundation; either version 2 of the License, or (at your option) "
22819 "any later version."
22820 msgstr ""
22821
22822 #. type: textblock
22823 #: ../fish/guestfish.pod:1252 ../test-tool/libguestfs-test-tool.pod:107
22824 #: ../fuse/guestmount.pod:304 ../tools/virt-win-reg.pl:783
22825 #: ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314
22826 #: ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
22827 msgid ""
22828 "This program is distributed in the hope that it will be useful, but WITHOUT "
22829 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
22830 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
22831 "more details."
22832 msgstr ""
22833
22834 #. type: textblock
22835 #: ../fish/guestfish.pod:1257 ../test-tool/libguestfs-test-tool.pod:112
22836 #: ../fuse/guestmount.pod:309 ../tools/virt-win-reg.pl:788
22837 #: ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319
22838 #: ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
22839 msgid ""
22840 "You should have received a copy of the GNU General Public License along with"
22841 " this program; if not, write to the Free Software Foundation, Inc., 675 Mass"
22842 " Ave, Cambridge, MA 02139, USA."
22843 msgstr ""
22844
22845 #. type: =head2
22846 #: ../fish/guestfish-actions.pod:1
22847 msgid "add-cdrom"
22848 msgstr ""
22849
22850 #. type: verbatim
22851 #: ../fish/guestfish-actions.pod:3
22852 #, no-wrap
22853 msgid ""
22854 " add-cdrom filename\n"
22855 "\n"
22856 msgstr ""
22857
22858 #. type: textblock
22859 #: ../fish/guestfish-actions.pod:15
22860 msgid ""
22861 "This call checks for the existence of C<filename>.  This stops you from "
22862 "specifying other types of drive which are supported by qemu such as C<nbd:> "
22863 "and C<http:> URLs.  To specify those, use the general L</config> call "
22864 "instead."
22865 msgstr ""
22866
22867 #. type: textblock
22868 #: ../fish/guestfish-actions.pod:22
22869 msgid ""
22870 "If you just want to add an ISO file (often you use this as an efficient way "
22871 "to transfer large files into the guest), then you should probably use L"
22872 "</add-drive-ro> instead."
22873 msgstr ""
22874
22875 #. type: =head2
22876 #: ../fish/guestfish-actions.pod:35
22877 msgid "add-domain"
22878 msgstr ""
22879
22880 #. type: =head2
22881 #: ../fish/guestfish-actions.pod:37
22882 msgid "domain"
22883 msgstr ""
22884
22885 #. type: verbatim
22886 #: ../fish/guestfish-actions.pod:39
22887 #, no-wrap
22888 msgid ""
22889 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] [allowuuid:..]\n"
22890 "\n"
22891 msgstr ""
22892
22893 #. type: textblock
22894 #: ../fish/guestfish-actions.pod:41
22895 msgid ""
22896 "This function adds the disk(s) attached to the named libvirt domain C<dom>."
22897 "  It works by connecting to libvirt, requesting the domain and domain XML "
22898 "from libvirt, parsing it for disks, and calling L</add-drive-opts> on each "
22899 "one."
22900 msgstr ""
22901
22902 #. type: textblock
22903 #: ../fish/guestfish-actions.pod:76
22904 msgid ""
22905 "The other optional parameters are passed directly through to L</add-drive-"
22906 "opts>."
22907 msgstr ""
22908
22909 #. type: textblock
22910 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143
22911 #: ../fish/guestfish-actions.pod:568 ../fish/guestfish-actions.pod:1968
22912 #: ../fish/guestfish-actions.pod:3134 ../fish/guestfish-actions.pod:3307
22913 #: ../fish/guestfish-actions.pod:3442
22914 msgid ""
22915 "This command has one or more optional arguments.  See L</OPTIONAL "
22916 "ARGUMENTS>."
22917 msgstr ""
22918
22919 #. type: =head2
22920 #: ../fish/guestfish-actions.pod:81
22921 msgid "add-drive"
22922 msgstr ""
22923
22924 #. type: verbatim
22925 #: ../fish/guestfish-actions.pod:83
22926 #, no-wrap
22927 msgid ""
22928 " add-drive filename\n"
22929 "\n"
22930 msgstr ""
22931
22932 #. type: textblock
22933 #: ../fish/guestfish-actions.pod:85
22934 msgid ""
22935 "This function is the equivalent of calling L</add-drive-opts> with no "
22936 "optional parameters, so the disk is added writable, with the format being "
22937 "detected automatically."
22938 msgstr ""
22939
22940 #. type: textblock
22941 #: ../fish/guestfish-actions.pod:89
22942 msgid ""
22943 "Automatic detection of the format opens you up to a potential security hole "
22944 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
22945 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
22946 "you should think about replacing calls to this function with calls to L"
22947 "</add-drive-opts>, and specifying the format."
22948 msgstr ""
22949
22950 #. type: =head2
22951 #: ../fish/guestfish-actions.pod:96
22952 msgid "add-drive-opts"
22953 msgstr ""
22954
22955 #. type: =head2
22956 #: ../fish/guestfish-actions.pod:98
22957 msgid "add"
22958 msgstr ""
22959
22960 #. type: verbatim
22961 #: ../fish/guestfish-actions.pod:100
22962 #, no-wrap
22963 msgid ""
22964 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
22965 "\n"
22966 msgstr ""
22967
22968 #. type: textblock
22969 #: ../fish/guestfish-actions.pod:127
22970 msgid ""
22971 "This forces the image format.  If you omit this (or use L</add-drive> or L"
22972 "</add-drive-ro>) then the format is automatically detected.  Possible "
22973 "formats include C<raw> and C<qcow2>."
22974 msgstr ""
22975
22976 #. type: textblock
22977 #: ../fish/guestfish-actions.pod:138
22978 msgid ""
22979 "This rarely-used option lets you emulate the behaviour of the deprecated L"
22980 "</add-drive-with-if> call (q.v.)"
22981 msgstr ""
22982
22983 #. type: =head2
22984 #: ../fish/guestfish-actions.pod:145
22985 msgid "add-drive-ro"
22986 msgstr ""
22987
22988 #. type: =head2
22989 #: ../fish/guestfish-actions.pod:147
22990 msgid "add-ro"
22991 msgstr ""
22992
22993 #. type: verbatim
22994 #: ../fish/guestfish-actions.pod:149
22995 #, no-wrap
22996 msgid ""
22997 " add-drive-ro filename\n"
22998 "\n"
22999 msgstr ""
23000
23001 #. type: textblock
23002 #: ../fish/guestfish-actions.pod:151
23003 msgid ""
23004 "This function is the equivalent of calling L</add-drive-opts> with the "
23005 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
23006 "is added read-only, with the format being detected automatically."
23007 msgstr ""
23008
23009 #. type: =head2
23010 #: ../fish/guestfish-actions.pod:156
23011 msgid "add-drive-ro-with-if"
23012 msgstr ""
23013
23014 #. type: verbatim
23015 #: ../fish/guestfish-actions.pod:158
23016 #, no-wrap
23017 msgid ""
23018 " add-drive-ro-with-if filename iface\n"
23019 "\n"
23020 msgstr ""
23021
23022 #. type: textblock
23023 #: ../fish/guestfish-actions.pod:160
23024 msgid ""
23025 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
23026 "interface emulation to use at run time."
23027 msgstr ""
23028
23029 #. type: =head2
23030 #: ../fish/guestfish-actions.pod:170
23031 msgid "add-drive-with-if"
23032 msgstr ""
23033
23034 #. type: verbatim
23035 #: ../fish/guestfish-actions.pod:172
23036 #, no-wrap
23037 msgid ""
23038 " add-drive-with-if filename iface\n"
23039 "\n"
23040 msgstr ""
23041
23042 #. type: textblock
23043 #: ../fish/guestfish-actions.pod:174
23044 msgid ""
23045 "This is the same as L</add-drive> but it allows you to specify the QEMU "
23046 "interface emulation to use at run time."
23047 msgstr ""
23048
23049 #. type: =head2
23050 #: ../fish/guestfish-actions.pod:184
23051 msgid "aug-clear"
23052 msgstr ""
23053
23054 #. type: verbatim
23055 #: ../fish/guestfish-actions.pod:186
23056 #, no-wrap
23057 msgid ""
23058 " aug-clear augpath\n"
23059 "\n"
23060 msgstr ""
23061
23062 #. type: =head2
23063 #: ../fish/guestfish-actions.pod:191
23064 msgid "aug-close"
23065 msgstr ""
23066
23067 #. type: verbatim
23068 #: ../fish/guestfish-actions.pod:193
23069 #, no-wrap
23070 msgid ""
23071 " aug-close\n"
23072 "\n"
23073 msgstr ""
23074
23075 #. type: textblock
23076 #: ../fish/guestfish-actions.pod:195
23077 msgid ""
23078 "Close the current Augeas handle and free up any resources used by it.  After"
23079 " calling this, you have to call L</aug-init> again before you can use any "
23080 "other Augeas functions."
23081 msgstr ""
23082
23083 #. type: =head2
23084 #: ../fish/guestfish-actions.pod:200
23085 msgid "aug-defnode"
23086 msgstr ""
23087
23088 #. type: verbatim
23089 #: ../fish/guestfish-actions.pod:202
23090 #, no-wrap
23091 msgid ""
23092 " aug-defnode name expr val\n"
23093 "\n"
23094 msgstr ""
23095
23096 #. type: textblock
23097 #: ../fish/guestfish-actions.pod:207
23098 msgid ""
23099 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
23100 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
23101 "containing that single node."
23102 msgstr ""
23103
23104 #. type: =head2
23105 #: ../fish/guestfish-actions.pod:215
23106 msgid "aug-defvar"
23107 msgstr ""
23108
23109 #. type: verbatim
23110 #: ../fish/guestfish-actions.pod:217
23111 #, no-wrap
23112 msgid ""
23113 " aug-defvar name expr\n"
23114 "\n"
23115 msgstr ""
23116
23117 #. type: =head2
23118 #: ../fish/guestfish-actions.pod:226
23119 msgid "aug-get"
23120 msgstr ""
23121
23122 #. type: verbatim
23123 #: ../fish/guestfish-actions.pod:228
23124 #, no-wrap
23125 msgid ""
23126 " aug-get augpath\n"
23127 "\n"
23128 msgstr ""
23129
23130 #. type: =head2
23131 #: ../fish/guestfish-actions.pod:233
23132 msgid "aug-init"
23133 msgstr ""
23134
23135 #. type: verbatim
23136 #: ../fish/guestfish-actions.pod:235
23137 #, no-wrap
23138 msgid ""
23139 " aug-init root flags\n"
23140 "\n"
23141 msgstr ""
23142
23143 #. type: textblock
23144 #: ../fish/guestfish-actions.pod:241
23145 msgid "You must call this before using any other L</aug-*> commands."
23146 msgstr ""
23147
23148 #. type: textblock
23149 #: ../fish/guestfish-actions.pod:276
23150 msgid "Do not load the tree in L</aug-init>."
23151 msgstr ""
23152
23153 #. type: textblock
23154 #: ../fish/guestfish-actions.pod:280
23155 msgid "To close the handle, you can call L</aug-close>."
23156 msgstr ""
23157
23158 #. type: =head2
23159 #: ../fish/guestfish-actions.pod:284
23160 msgid "aug-insert"
23161 msgstr ""
23162
23163 #. type: verbatim
23164 #: ../fish/guestfish-actions.pod:286
23165 #, no-wrap
23166 msgid ""
23167 " aug-insert augpath label true|false\n"
23168 "\n"
23169 msgstr ""
23170
23171 #. type: =head2
23172 #: ../fish/guestfish-actions.pod:296
23173 msgid "aug-load"
23174 msgstr ""
23175
23176 #. type: verbatim
23177 #: ../fish/guestfish-actions.pod:298
23178 #, no-wrap
23179 msgid ""
23180 " aug-load\n"
23181 "\n"
23182 msgstr ""
23183
23184 #. type: =head2
23185 #: ../fish/guestfish-actions.pod:305
23186 msgid "aug-ls"
23187 msgstr ""
23188
23189 #. type: verbatim
23190 #: ../fish/guestfish-actions.pod:307
23191 #, no-wrap
23192 msgid ""
23193 " aug-ls augpath\n"
23194 "\n"
23195 msgstr ""
23196
23197 #. type: textblock
23198 #: ../fish/guestfish-actions.pod:309
23199 msgid ""
23200 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
23201 "resulting nodes into alphabetical order."
23202 msgstr ""
23203
23204 #. type: =head2
23205 #: ../fish/guestfish-actions.pod:312
23206 msgid "aug-match"
23207 msgstr ""
23208
23209 #. type: verbatim
23210 #: ../fish/guestfish-actions.pod:314
23211 #, no-wrap
23212 msgid ""
23213 " aug-match augpath\n"
23214 "\n"
23215 msgstr ""
23216
23217 #. type: =head2
23218 #: ../fish/guestfish-actions.pod:320
23219 msgid "aug-mv"
23220 msgstr ""
23221
23222 #. type: verbatim
23223 #: ../fish/guestfish-actions.pod:322
23224 #, no-wrap
23225 msgid ""
23226 " aug-mv src dest\n"
23227 "\n"
23228 msgstr ""
23229
23230 #. type: =head2
23231 #: ../fish/guestfish-actions.pod:327
23232 msgid "aug-rm"
23233 msgstr ""
23234
23235 #. type: verbatim
23236 #: ../fish/guestfish-actions.pod:329
23237 #, no-wrap
23238 msgid ""
23239 " aug-rm augpath\n"
23240 "\n"
23241 msgstr ""
23242
23243 #. type: =head2
23244 #: ../fish/guestfish-actions.pod:335
23245 msgid "aug-save"
23246 msgstr ""
23247
23248 #. type: verbatim
23249 #: ../fish/guestfish-actions.pod:337
23250 #, no-wrap
23251 msgid ""
23252 " aug-save\n"
23253 "\n"
23254 msgstr ""
23255
23256 #. type: textblock
23257 #: ../fish/guestfish-actions.pod:341
23258 msgid ""
23259 "The flags which were passed to L</aug-init> affect exactly how files are "
23260 "saved."
23261 msgstr ""
23262
23263 #. type: =head2
23264 #: ../fish/guestfish-actions.pod:344
23265 msgid "aug-set"
23266 msgstr ""
23267
23268 #. type: verbatim
23269 #: ../fish/guestfish-actions.pod:346
23270 #, no-wrap
23271 msgid ""
23272 " aug-set augpath val\n"
23273 "\n"
23274 msgstr ""
23275
23276 #. type: textblock
23277 #: ../fish/guestfish-actions.pod:350
23278 msgid ""
23279 "In the Augeas API, it is possible to clear a node by setting the value to "
23280 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
23281 "this call.  Instead you must use the L</aug-clear> call."
23282 msgstr ""
23283
23284 #. type: =head2
23285 #: ../fish/guestfish-actions.pod:355
23286 msgid "available"
23287 msgstr ""
23288
23289 #. type: verbatim
23290 #: ../fish/guestfish-actions.pod:357
23291 #, no-wrap
23292 msgid ""
23293 " available 'groups ...'\n"
23294 "\n"
23295 msgstr ""
23296
23297 #. type: textblock
23298 #: ../fish/guestfish-actions.pod:363
23299 msgid ""
23300 "The libguestfs groups, and the functions that those groups correspond to, "
23301 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
23302 "runtime by calling L</available-all-groups>."
23303 msgstr ""
23304
23305 #. type: textblock
23306 #: ../fish/guestfish-actions.pod:387
23307 msgid "You must call L</launch> before calling this function."
23308 msgstr ""
23309
23310 #. type: textblock
23311 #: ../fish/guestfish-actions.pod:409
23312 msgid ""
23313 "This call was added in version C<1.0.80>.  In previous versions of "
23314 "libguestfs all you could do would be to speculatively execute a command to "
23315 "find out if the daemon implemented it.  See also L</version>."
23316 msgstr ""
23317
23318 #. type: =head2
23319 #: ../fish/guestfish-actions.pod:416
23320 msgid "available-all-groups"
23321 msgstr ""
23322
23323 #. type: verbatim
23324 #: ../fish/guestfish-actions.pod:418
23325 #, no-wrap
23326 msgid ""
23327 " available-all-groups\n"
23328 "\n"
23329 msgstr ""
23330
23331 #. type: textblock
23332 #: ../fish/guestfish-actions.pod:420
23333 msgid ""
23334 "This command returns a list of all optional groups that this daemon knows "
23335 "about.  Note this returns both supported and unsupported groups.  To find "
23336 "out which ones the daemon can actually support you have to call "
23337 "L</available> on each member of the returned list."
23338 msgstr ""
23339
23340 #. type: textblock
23341 #: ../fish/guestfish-actions.pod:426
23342 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
23343 msgstr ""
23344
23345 #. type: =head2
23346 #: ../fish/guestfish-actions.pod:428
23347 msgid "base64-in"
23348 msgstr ""
23349
23350 #. type: verbatim
23351 #: ../fish/guestfish-actions.pod:430
23352 #, no-wrap
23353 msgid ""
23354 " base64-in (base64file|-) filename\n"
23355 "\n"
23356 msgstr ""
23357
23358 #. type: textblock
23359 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444
23360 #: ../fish/guestfish-actions.pod:693 ../fish/guestfish-actions.pod:862
23361 #: ../fish/guestfish-actions.pod:881 ../fish/guestfish-actions.pod:1255
23362 #: ../fish/guestfish-actions.pod:4652 ../fish/guestfish-actions.pod:4664
23363 #: ../fish/guestfish-actions.pod:4675 ../fish/guestfish-actions.pod:4686
23364 #: ../fish/guestfish-actions.pod:4738 ../fish/guestfish-actions.pod:4747
23365 #: ../fish/guestfish-actions.pod:4801 ../fish/guestfish-actions.pod:4824
23366 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
23367 msgstr ""
23368
23369 #. type: =head2
23370 #: ../fish/guestfish-actions.pod:437
23371 msgid "base64-out"
23372 msgstr ""
23373
23374 #. type: verbatim
23375 #: ../fish/guestfish-actions.pod:439
23376 #, no-wrap
23377 msgid ""
23378 " base64-out filename (base64file|-)\n"
23379 "\n"
23380 msgstr ""
23381
23382 #. type: =head2
23383 #: ../fish/guestfish-actions.pod:446
23384 msgid "blockdev-flushbufs"
23385 msgstr ""
23386
23387 #. type: verbatim
23388 #: ../fish/guestfish-actions.pod:448
23389 #, no-wrap
23390 msgid ""
23391 " blockdev-flushbufs device\n"
23392 "\n"
23393 msgstr ""
23394
23395 #. type: =head2
23396 #: ../fish/guestfish-actions.pod:455
23397 msgid "blockdev-getbsz"
23398 msgstr ""
23399
23400 #. type: verbatim
23401 #: ../fish/guestfish-actions.pod:457
23402 #, no-wrap
23403 msgid ""
23404 " blockdev-getbsz device\n"
23405 "\n"
23406 msgstr ""
23407
23408 #. type: =head2
23409 #: ../fish/guestfish-actions.pod:466
23410 msgid "blockdev-getro"
23411 msgstr ""
23412
23413 #. type: verbatim
23414 #: ../fish/guestfish-actions.pod:468
23415 #, no-wrap
23416 msgid ""
23417 " blockdev-getro device\n"
23418 "\n"
23419 msgstr ""
23420
23421 #. type: =head2
23422 #: ../fish/guestfish-actions.pod:475
23423 msgid "blockdev-getsize64"
23424 msgstr ""
23425
23426 #. type: verbatim
23427 #: ../fish/guestfish-actions.pod:477
23428 #, no-wrap
23429 msgid ""
23430 " blockdev-getsize64 device\n"
23431 "\n"
23432 msgstr ""
23433
23434 #. type: textblock
23435 #: ../fish/guestfish-actions.pod:481
23436 msgid "See also L</blockdev-getsz>."
23437 msgstr ""
23438
23439 #. type: =head2
23440 #: ../fish/guestfish-actions.pod:485
23441 msgid "blockdev-getss"
23442 msgstr ""
23443
23444 #. type: verbatim
23445 #: ../fish/guestfish-actions.pod:487
23446 #, no-wrap
23447 msgid ""
23448 " blockdev-getss device\n"
23449 "\n"
23450 msgstr ""
23451
23452 #. type: textblock
23453 #: ../fish/guestfish-actions.pod:492
23454 msgid ""
23455 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
23456 msgstr ""
23457
23458 #. type: =head2
23459 #: ../fish/guestfish-actions.pod:497
23460 msgid "blockdev-getsz"
23461 msgstr ""
23462
23463 #. type: verbatim
23464 #: ../fish/guestfish-actions.pod:499
23465 #, no-wrap
23466 msgid ""
23467 " blockdev-getsz device\n"
23468 "\n"
23469 msgstr ""
23470
23471 #. type: textblock
23472 #: ../fish/guestfish-actions.pod:504
23473 msgid ""
23474 "See also L</blockdev-getss> for the real sector size of the device, and L"
23475 "</blockdev-getsize64> for the more useful I<size in bytes>."
23476 msgstr ""
23477
23478 #. type: =head2
23479 #: ../fish/guestfish-actions.pod:510
23480 msgid "blockdev-rereadpt"
23481 msgstr ""
23482
23483 #. type: verbatim
23484 #: ../fish/guestfish-actions.pod:512
23485 #, no-wrap
23486 msgid ""
23487 " blockdev-rereadpt device\n"
23488 "\n"
23489 msgstr ""
23490
23491 #. type: =head2
23492 #: ../fish/guestfish-actions.pod:518
23493 msgid "blockdev-setbsz"
23494 msgstr ""
23495
23496 #. type: verbatim
23497 #: ../fish/guestfish-actions.pod:520
23498 #, no-wrap
23499 msgid ""
23500 " blockdev-setbsz device blocksize\n"
23501 "\n"
23502 msgstr ""
23503
23504 #. type: =head2
23505 #: ../fish/guestfish-actions.pod:529
23506 msgid "blockdev-setro"
23507 msgstr ""
23508
23509 #. type: verbatim
23510 #: ../fish/guestfish-actions.pod:531
23511 #, no-wrap
23512 msgid ""
23513 " blockdev-setro device\n"
23514 "\n"
23515 msgstr ""
23516
23517 #. type: =head2
23518 #: ../fish/guestfish-actions.pod:537
23519 msgid "blockdev-setrw"
23520 msgstr ""
23521
23522 #. type: verbatim
23523 #: ../fish/guestfish-actions.pod:539
23524 #, no-wrap
23525 msgid ""
23526 " blockdev-setrw device\n"
23527 "\n"
23528 msgstr ""
23529
23530 #. type: =head2
23531 #: ../fish/guestfish-actions.pod:545
23532 msgid "btrfs-filesystem-resize"
23533 msgstr ""
23534
23535 #. type: verbatim
23536 #: ../fish/guestfish-actions.pod:547
23537 #, no-wrap
23538 msgid ""
23539 " btrfs-filesystem-resize mountpoint [size:..]\n"
23540 "\n"
23541 msgstr ""
23542
23543 #. type: =head2
23544 #: ../fish/guestfish-actions.pod:570
23545 msgid "case-sensitive-path"
23546 msgstr ""
23547
23548 #. type: verbatim
23549 #: ../fish/guestfish-actions.pod:572
23550 #, no-wrap
23551 msgid ""
23552 " case-sensitive-path path\n"
23553 "\n"
23554 msgstr ""
23555
23556 #. type: textblock
23557 #: ../fish/guestfish-actions.pod:596
23558 msgid ""
23559 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
23560 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
23561 "how the directories were originally created under Windows)."
23562 msgstr ""
23563
23564 #. type: textblock
23565 #: ../fish/guestfish-actions.pod:604
23566 msgid "See also L</realpath>."
23567 msgstr ""
23568
23569 #. type: =head2
23570 #: ../fish/guestfish-actions.pod:606
23571 msgid "cat"
23572 msgstr ""
23573
23574 #. type: verbatim
23575 #: ../fish/guestfish-actions.pod:608
23576 #, no-wrap
23577 msgid ""
23578 " cat path\n"
23579 "\n"
23580 msgstr ""
23581
23582 #. type: textblock
23583 #: ../fish/guestfish-actions.pod:612
23584 msgid ""
23585 "Note that this function cannot correctly handle binary files (specifically, "
23586 "files containing C<\\0> character which is treated as end of string).  For "
23587 "those you need to use the L</read-file> or L</download> functions which have"
23588 " a more complex interface."
23589 msgstr ""
23590
23591 #. type: =head2
23592 #: ../fish/guestfish-actions.pod:620
23593 msgid "checksum"
23594 msgstr ""
23595
23596 #. type: verbatim
23597 #: ../fish/guestfish-actions.pod:622
23598 #, no-wrap
23599 msgid ""
23600 " checksum csumtype path\n"
23601 "\n"
23602 msgstr ""
23603
23604 #. type: textblock
23605 #: ../fish/guestfish-actions.pod:665
23606 msgid "To get the checksum for a device, use L</checksum-device>."
23607 msgstr ""
23608
23609 #. type: textblock
23610 #: ../fish/guestfish-actions.pod:667
23611 msgid "To get the checksums for many files, use L</checksums-out>."
23612 msgstr ""
23613
23614 #. type: =head2
23615 #: ../fish/guestfish-actions.pod:669
23616 msgid "checksum-device"
23617 msgstr ""
23618
23619 #. type: verbatim
23620 #: ../fish/guestfish-actions.pod:671
23621 #, no-wrap
23622 msgid ""
23623 " checksum-device csumtype device\n"
23624 "\n"
23625 msgstr ""
23626
23627 #. type: textblock
23628 #: ../fish/guestfish-actions.pod:673
23629 msgid ""
23630 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
23631 "device named C<device>.  For the types of checksums supported see the "
23632 "L</checksum> command."
23633 msgstr ""
23634
23635 #. type: =head2
23636 #: ../fish/guestfish-actions.pod:677
23637 msgid "checksums-out"
23638 msgstr ""
23639
23640 #. type: verbatim
23641 #: ../fish/guestfish-actions.pod:679
23642 #, no-wrap
23643 msgid ""
23644 " checksums-out csumtype directory (sumsfile|-)\n"
23645 "\n"
23646 msgstr ""
23647
23648 #. type: =head2
23649 #: ../fish/guestfish-actions.pod:695
23650 msgid "chmod"
23651 msgstr ""
23652
23653 #. type: verbatim
23654 #: ../fish/guestfish-actions.pod:697
23655 #, no-wrap
23656 msgid ""
23657 " chmod mode path\n"
23658 "\n"
23659 msgstr ""
23660
23661 #. type: =head2
23662 #: ../fish/guestfish-actions.pod:708
23663 msgid "chown"
23664 msgstr ""
23665
23666 #. type: verbatim
23667 #: ../fish/guestfish-actions.pod:710
23668 #, no-wrap
23669 msgid ""
23670 " chown owner group path\n"
23671 "\n"
23672 msgstr ""
23673
23674 #. type: =head2
23675 #: ../fish/guestfish-actions.pod:718
23676 msgid "command"
23677 msgstr ""
23678
23679 #. type: verbatim
23680 #: ../fish/guestfish-actions.pod:720
23681 #, no-wrap
23682 msgid ""
23683 " command 'arguments ...'\n"
23684 "\n"
23685 msgstr ""
23686
23687 #. type: textblock
23688 #: ../fish/guestfish-actions.pod:727
23689 msgid ""
23690 "The single parameter is an argv-style list of arguments.  The first element "
23691 "is the name of the program to run.  Subsequent elements are parameters.  The"
23692 " list must be non-empty (ie. must contain a program name).  Note that the "
23693 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
23694 msgstr ""
23695
23696 #. type: =head2
23697 #: ../fish/guestfish-actions.pod:755
23698 msgid "command-lines"
23699 msgstr ""
23700
23701 #. type: verbatim
23702 #: ../fish/guestfish-actions.pod:757
23703 #, no-wrap
23704 msgid ""
23705 " command-lines 'arguments ...'\n"
23706 "\n"
23707 msgstr ""
23708
23709 #. type: textblock
23710 #: ../fish/guestfish-actions.pod:759
23711 msgid ""
23712 "This is the same as L</command>, but splits the result into a list of lines."
23713 msgstr ""
23714
23715 #. type: textblock
23716 #: ../fish/guestfish-actions.pod:762
23717 msgid "See also: L</sh-lines>"
23718 msgstr ""
23719
23720 #. type: =head2
23721 #: ../fish/guestfish-actions.pod:767
23722 msgid "config"
23723 msgstr ""
23724
23725 #. type: verbatim
23726 #: ../fish/guestfish-actions.pod:769
23727 #, no-wrap
23728 msgid ""
23729 " config qemuparam qemuvalue\n"
23730 "\n"
23731 msgstr ""
23732
23733 #. type: =head2
23734 #: ../fish/guestfish-actions.pod:780
23735 msgid "copy-size"
23736 msgstr ""
23737
23738 #. type: verbatim
23739 #: ../fish/guestfish-actions.pod:782
23740 #, no-wrap
23741 msgid ""
23742 " copy-size src dest size\n"
23743 "\n"
23744 msgstr ""
23745
23746 #. type: =head2
23747 #: ../fish/guestfish-actions.pod:790
23748 msgid "cp"
23749 msgstr ""
23750
23751 #. type: verbatim
23752 #: ../fish/guestfish-actions.pod:792
23753 #, no-wrap
23754 msgid ""
23755 " cp src dest\n"
23756 "\n"
23757 msgstr ""
23758
23759 #. type: =head2
23760 #: ../fish/guestfish-actions.pod:797
23761 msgid "cp-a"
23762 msgstr ""
23763
23764 #. type: verbatim
23765 #: ../fish/guestfish-actions.pod:799
23766 #, no-wrap
23767 msgid ""
23768 " cp-a src dest\n"
23769 "\n"
23770 msgstr ""
23771
23772 #. type: =head2
23773 #: ../fish/guestfish-actions.pod:804
23774 msgid "dd"
23775 msgstr ""
23776
23777 #. type: verbatim
23778 #: ../fish/guestfish-actions.pod:806
23779 #, no-wrap
23780 msgid ""
23781 " dd src dest\n"
23782 "\n"
23783 msgstr ""
23784
23785 #. type: textblock
23786 #: ../fish/guestfish-actions.pod:813
23787 msgid ""
23788 "If the destination is a device, it must be as large or larger than the "
23789 "source file or device, otherwise the copy will fail.  This command cannot do"
23790 " partial copies (see L</copy-size>)."
23791 msgstr ""
23792
23793 #. type: =head2
23794 #: ../fish/guestfish-actions.pod:817
23795 msgid "df"
23796 msgstr ""
23797
23798 #. type: verbatim
23799 #: ../fish/guestfish-actions.pod:819
23800 #, no-wrap
23801 msgid ""
23802 " df\n"
23803 "\n"
23804 msgstr ""
23805
23806 #. type: textblock
23807 #: ../fish/guestfish-actions.pod:823 ../fish/guestfish-actions.pod:834
23808 msgid ""
23809 "This command is mostly useful for interactive sessions.  It is I<not> "
23810 "intended that you try to parse the output string.  Use L</statvfs> from "
23811 "programs."
23812 msgstr ""
23813
23814 #. type: =head2
23815 #: ../fish/guestfish-actions.pod:827
23816 msgid "df-h"
23817 msgstr ""
23818
23819 #. type: verbatim
23820 #: ../fish/guestfish-actions.pod:829
23821 #, no-wrap
23822 msgid ""
23823 " df-h\n"
23824 "\n"
23825 msgstr ""
23826
23827 #. type: =head2
23828 #: ../fish/guestfish-actions.pod:838
23829 msgid "dmesg"
23830 msgstr ""
23831
23832 #. type: verbatim
23833 #: ../fish/guestfish-actions.pod:840
23834 #, no-wrap
23835 msgid ""
23836 " dmesg\n"
23837 "\n"
23838 msgstr ""
23839
23840 #. type: textblock
23841 #: ../fish/guestfish-actions.pod:846
23842 msgid ""
23843 "Another way to get the same information is to enable verbose messages with L"
23844 "</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
23845 "before running the program."
23846 msgstr ""
23847
23848 #. type: =head2
23849 #: ../fish/guestfish-actions.pod:851
23850 msgid "download"
23851 msgstr ""
23852
23853 #. type: verbatim
23854 #: ../fish/guestfish-actions.pod:853
23855 #, no-wrap
23856 msgid ""
23857 " download remotefilename (filename|-)\n"
23858 "\n"
23859 msgstr ""
23860
23861 #. type: textblock
23862 #: ../fish/guestfish-actions.pod:860
23863 msgid "See also L</upload>, L</cat>."
23864 msgstr ""
23865
23866 #. type: =head2
23867 #: ../fish/guestfish-actions.pod:864
23868 msgid "download-offset"
23869 msgstr ""
23870
23871 #. type: verbatim
23872 #: ../fish/guestfish-actions.pod:866
23873 #, no-wrap
23874 msgid ""
23875 " download-offset remotefilename (filename|-) offset size\n"
23876 "\n"
23877 msgstr ""
23878
23879 #. type: textblock
23880 #: ../fish/guestfish-actions.pod:874
23881 msgid ""
23882 "Note that there is no limit on the amount of data that can be downloaded "
23883 "with this call, unlike with L</pread>, and this call always reads the full "
23884 "amount unless an error occurs."
23885 msgstr ""
23886
23887 #. type: textblock
23888 #: ../fish/guestfish-actions.pod:879
23889 msgid "See also L</download>, L</pread>."
23890 msgstr ""
23891
23892 #. type: =head2
23893 #: ../fish/guestfish-actions.pod:883
23894 msgid "drop-caches"
23895 msgstr ""
23896
23897 #. type: verbatim
23898 #: ../fish/guestfish-actions.pod:885
23899 #, no-wrap
23900 msgid ""
23901 " drop-caches whattodrop\n"
23902 "\n"
23903 msgstr ""
23904
23905 #. type: =head2
23906 #: ../fish/guestfish-actions.pod:897
23907 msgid "du"
23908 msgstr ""
23909
23910 #. type: verbatim
23911 #: ../fish/guestfish-actions.pod:899
23912 #, no-wrap
23913 msgid ""
23914 " du path\n"
23915 "\n"
23916 msgstr ""
23917
23918 #. type: =head2
23919 #: ../fish/guestfish-actions.pod:911
23920 msgid "e2fsck-f"
23921 msgstr ""
23922
23923 #. type: verbatim
23924 #: ../fish/guestfish-actions.pod:913
23925 #, no-wrap
23926 msgid ""
23927 " e2fsck-f device\n"
23928 "\n"
23929 msgstr ""
23930
23931 #. type: textblock
23932 #: ../fish/guestfish-actions.pod:919
23933 msgid ""
23934 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
23935 "should use L</fsck>."
23936 msgstr ""
23937
23938 #. type: =head2
23939 #: ../fish/guestfish-actions.pod:922
23940 msgid "echo-daemon"
23941 msgstr ""
23942
23943 #. type: verbatim
23944 #: ../fish/guestfish-actions.pod:924
23945 #, no-wrap
23946 msgid ""
23947 " echo-daemon 'words ...'\n"
23948 "\n"
23949 msgstr ""
23950
23951 #. type: textblock
23952 #: ../fish/guestfish-actions.pod:931
23953 msgid "See also L</ping-daemon>."
23954 msgstr ""
23955
23956 #. type: =head2
23957 #: ../fish/guestfish-actions.pod:933
23958 msgid "egrep"
23959 msgstr ""
23960
23961 #. type: verbatim
23962 #: ../fish/guestfish-actions.pod:935
23963 #, no-wrap
23964 msgid ""
23965 " egrep regex path\n"
23966 "\n"
23967 msgstr ""
23968
23969 #. type: =head2
23970 #: ../fish/guestfish-actions.pod:943
23971 msgid "egrepi"
23972 msgstr ""
23973
23974 #. type: verbatim
23975 #: ../fish/guestfish-actions.pod:945
23976 #, no-wrap
23977 msgid ""
23978 " egrepi regex path\n"
23979 "\n"
23980 msgstr ""
23981
23982 #. type: =head2
23983 #: ../fish/guestfish-actions.pod:953
23984 msgid "equal"
23985 msgstr ""
23986
23987 #. type: verbatim
23988 #: ../fish/guestfish-actions.pod:955
23989 #, no-wrap
23990 msgid ""
23991 " equal file1 file2\n"
23992 "\n"
23993 msgstr ""
23994
23995 #. type: =head2
23996 #: ../fish/guestfish-actions.pod:962
23997 msgid "exists"
23998 msgstr ""
23999
24000 #. type: verbatim
24001 #: ../fish/guestfish-actions.pod:964
24002 #, no-wrap
24003 msgid ""
24004 " exists path\n"
24005 "\n"
24006 msgstr ""
24007
24008 #. type: textblock
24009 #: ../fish/guestfish-actions.pod:969
24010 msgid "See also L</is-file>, L</is-dir>, L</stat>."
24011 msgstr ""
24012
24013 #. type: =head2
24014 #: ../fish/guestfish-actions.pod:971
24015 msgid "fallocate"
24016 msgstr ""
24017
24018 #. type: verbatim
24019 #: ../fish/guestfish-actions.pod:973
24020 #, no-wrap
24021 msgid ""
24022 " fallocate path len\n"
24023 "\n"
24024 msgstr ""
24025
24026 #. type: =head2
24027 #: ../fish/guestfish-actions.pod:990
24028 msgid "fallocate64"
24029 msgstr ""
24030
24031 #. type: verbatim
24032 #: ../fish/guestfish-actions.pod:992
24033 #, no-wrap
24034 msgid ""
24035 " fallocate64 path len\n"
24036 "\n"
24037 msgstr ""
24038
24039 #. type: textblock
24040 #: ../fish/guestfish-actions.pod:998
24041 msgid ""
24042 "Note that this call allocates disk blocks for the file.  To create a sparse "
24043 "file use L</truncate-size> instead."
24044 msgstr ""
24045
24046 #. type: textblock
24047 #: ../fish/guestfish-actions.pod:1001
24048 msgid ""
24049 "The deprecated call L</fallocate> does the same, but owing to an oversight "
24050 "it only allowed 30 bit lengths to be specified, effectively limiting the "
24051 "maximum size of files created through that call to 1GB."
24052 msgstr ""
24053
24054 #. type: =head2
24055 #: ../fish/guestfish-actions.pod:1010
24056 msgid "fgrep"
24057 msgstr ""
24058
24059 #. type: verbatim
24060 #: ../fish/guestfish-actions.pod:1012
24061 #, no-wrap
24062 msgid ""
24063 " fgrep pattern path\n"
24064 "\n"
24065 msgstr ""
24066
24067 #. type: =head2
24068 #: ../fish/guestfish-actions.pod:1020
24069 msgid "fgrepi"
24070 msgstr ""
24071
24072 #. type: verbatim
24073 #: ../fish/guestfish-actions.pod:1022
24074 #, no-wrap
24075 msgid ""
24076 " fgrepi pattern path\n"
24077 "\n"
24078 msgstr ""
24079
24080 #. type: =head2
24081 #: ../fish/guestfish-actions.pod:1030
24082 msgid "file"
24083 msgstr ""
24084
24085 #. type: verbatim
24086 #: ../fish/guestfish-actions.pod:1032
24087 #, no-wrap
24088 msgid ""
24089 " file path\n"
24090 "\n"
24091 msgstr ""
24092
24093 #. type: textblock
24094 #: ../fish/guestfish-actions.pod:1048
24095 msgid ""
24096 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
24097 "(etc), L</is-zero>."
24098 msgstr ""
24099
24100 #. type: =head2
24101 #: ../fish/guestfish-actions.pod:1051
24102 msgid "file-architecture"
24103 msgstr ""
24104
24105 #. type: verbatim
24106 #: ../fish/guestfish-actions.pod:1053
24107 #, no-wrap
24108 msgid ""
24109 " file-architecture filename\n"
24110 "\n"
24111 msgstr ""
24112
24113 #. type: =head2
24114 #: ../fish/guestfish-actions.pod:1156
24115 msgid "filesize"
24116 msgstr ""
24117
24118 #. type: verbatim
24119 #: ../fish/guestfish-actions.pod:1158
24120 #, no-wrap
24121 msgid ""
24122 " filesize file\n"
24123 "\n"
24124 msgstr ""
24125
24126 #. type: textblock
24127 #: ../fish/guestfish-actions.pod:1162
24128 msgid ""
24129 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
24130 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
24131 msgstr ""
24132
24133 #. type: =head2
24134 #: ../fish/guestfish-actions.pod:1166
24135 msgid "fill"
24136 msgstr ""
24137
24138 #. type: verbatim
24139 #: ../fish/guestfish-actions.pod:1168
24140 #, no-wrap
24141 msgid ""
24142 " fill c len path\n"
24143 "\n"
24144 msgstr ""
24145
24146 #. type: textblock
24147 #: ../fish/guestfish-actions.pod:1174
24148 msgid ""
24149 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
24150 "L</truncate-size>.  To create a file with a pattern of repeating bytes use L"
24151 "</fill-pattern>."
24152 msgstr ""
24153
24154 #. type: =head2
24155 #: ../fish/guestfish-actions.pod:1179
24156 msgid "fill-pattern"
24157 msgstr ""
24158
24159 #. type: verbatim
24160 #: ../fish/guestfish-actions.pod:1181
24161 #, no-wrap
24162 msgid ""
24163 " fill-pattern pattern len path\n"
24164 "\n"
24165 msgstr ""
24166
24167 #. type: textblock
24168 #: ../fish/guestfish-actions.pod:1183
24169 msgid ""
24170 "This function is like L</fill> except that it creates a new file of length "
24171 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern"
24172 " is truncated if necessary to ensure the length of the file is exactly "
24173 "C<len> bytes."
24174 msgstr ""
24175
24176 #. type: =head2
24177 #: ../fish/guestfish-actions.pod:1188
24178 msgid "find"
24179 msgstr ""
24180
24181 #. type: verbatim
24182 #: ../fish/guestfish-actions.pod:1190
24183 #, no-wrap
24184 msgid ""
24185 " find directory\n"
24186 "\n"
24187 msgstr ""
24188
24189 #. type: textblock
24190 #: ../fish/guestfish-actions.pod:1204
24191 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
24192 msgstr ""
24193
24194 #. type: textblock
24195 #: ../fish/guestfish-actions.pod:1217
24196 msgid "See also L</find0>."
24197 msgstr ""
24198
24199 #. type: =head2
24200 #: ../fish/guestfish-actions.pod:1222
24201 msgid "find0"
24202 msgstr ""
24203
24204 #. type: verbatim
24205 #: ../fish/guestfish-actions.pod:1224
24206 #, no-wrap
24207 msgid ""
24208 " find0 directory (files|-)\n"
24209 "\n"
24210 msgstr ""
24211
24212 #. type: textblock
24213 #: ../fish/guestfish-actions.pod:1230
24214 msgid ""
24215 "This command works the same way as L</find> with the following exceptions:"
24216 msgstr ""
24217
24218 #. type: =head2
24219 #: ../fish/guestfish-actions.pod:1257
24220 msgid "findfs-label"
24221 msgstr ""
24222
24223 #. type: verbatim
24224 #: ../fish/guestfish-actions.pod:1259
24225 #, no-wrap
24226 msgid ""
24227 " findfs-label label\n"
24228 "\n"
24229 msgstr ""
24230
24231 #. type: textblock
24232 #: ../fish/guestfish-actions.pod:1265
24233 msgid "To find the label of a filesystem, use L</vfs-label>."
24234 msgstr ""
24235
24236 #. type: =head2
24237 #: ../fish/guestfish-actions.pod:1267
24238 msgid "findfs-uuid"
24239 msgstr ""
24240
24241 #. type: verbatim
24242 #: ../fish/guestfish-actions.pod:1269
24243 #, no-wrap
24244 msgid ""
24245 " findfs-uuid uuid\n"
24246 "\n"
24247 msgstr ""
24248
24249 #. type: textblock
24250 #: ../fish/guestfish-actions.pod:1275
24251 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
24252 msgstr ""
24253
24254 #. type: =head2
24255 #: ../fish/guestfish-actions.pod:1277
24256 msgid "fsck"
24257 msgstr ""
24258
24259 #. type: verbatim
24260 #: ../fish/guestfish-actions.pod:1279
24261 #, no-wrap
24262 msgid ""
24263 " fsck fstype device\n"
24264 "\n"
24265 msgstr ""
24266
24267 #. type: =head2
24268 #: ../fish/guestfish-actions.pod:1309
24269 msgid "get-append"
24270 msgstr ""
24271
24272 #. type: verbatim
24273 #: ../fish/guestfish-actions.pod:1311
24274 #, no-wrap
24275 msgid ""
24276 " get-append\n"
24277 "\n"
24278 msgstr ""
24279
24280 #. type: =head2
24281 #: ../fish/guestfish-actions.pod:1318
24282 msgid "get-attach-method"
24283 msgstr ""
24284
24285 #. type: verbatim
24286 #: ../fish/guestfish-actions.pod:1320
24287 #, no-wrap
24288 msgid ""
24289 " get-attach-method\n"
24290 "\n"
24291 msgstr ""
24292
24293 #. type: textblock
24294 #: ../fish/guestfish-actions.pod:1322
24295 msgid "Return the current attach method.  See L</set-attach-method>."
24296 msgstr ""
24297
24298 #. type: =head2
24299 #: ../fish/guestfish-actions.pod:1324
24300 msgid "get-autosync"
24301 msgstr ""
24302
24303 #. type: verbatim
24304 #: ../fish/guestfish-actions.pod:1326
24305 #, no-wrap
24306 msgid ""
24307 " get-autosync\n"
24308 "\n"
24309 msgstr ""
24310
24311 #. type: =head2
24312 #: ../fish/guestfish-actions.pod:1330
24313 msgid "get-direct"
24314 msgstr ""
24315
24316 #. type: verbatim
24317 #: ../fish/guestfish-actions.pod:1332
24318 #, no-wrap
24319 msgid ""
24320 " get-direct\n"
24321 "\n"
24322 msgstr ""
24323
24324 #. type: =head2
24325 #: ../fish/guestfish-actions.pod:1336
24326 msgid "get-e2label"
24327 msgstr ""
24328
24329 #. type: verbatim
24330 #: ../fish/guestfish-actions.pod:1338
24331 #, no-wrap
24332 msgid ""
24333 " get-e2label device\n"
24334 "\n"
24335 msgstr ""
24336
24337 #. type: =head2
24338 #: ../fish/guestfish-actions.pod:1350
24339 msgid "get-e2uuid"
24340 msgstr ""
24341
24342 #. type: verbatim
24343 #: ../fish/guestfish-actions.pod:1352
24344 #, no-wrap
24345 msgid ""
24346 " get-e2uuid device\n"
24347 "\n"
24348 msgstr ""
24349
24350 #. type: =head2
24351 #: ../fish/guestfish-actions.pod:1364
24352 msgid "get-memsize"
24353 msgstr ""
24354
24355 #. type: verbatim
24356 #: ../fish/guestfish-actions.pod:1366
24357 #, no-wrap
24358 msgid ""
24359 " get-memsize\n"
24360 "\n"
24361 msgstr ""
24362
24363 #. type: textblock
24364 #: ../fish/guestfish-actions.pod:1371
24365 msgid ""
24366 "If L</set-memsize> was not called on this handle, and if "
24367 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default"
24368 " value for memsize."
24369 msgstr ""
24370
24371 #. type: =head2
24372 #: ../fish/guestfish-actions.pod:1378
24373 msgid "get-network"
24374 msgstr ""
24375
24376 #. type: verbatim
24377 #: ../fish/guestfish-actions.pod:1380
24378 #, no-wrap
24379 msgid ""
24380 " get-network\n"
24381 "\n"
24382 msgstr ""
24383
24384 #. type: =head2
24385 #: ../fish/guestfish-actions.pod:1384
24386 msgid "get-path"
24387 msgstr ""
24388
24389 #. type: verbatim
24390 #: ../fish/guestfish-actions.pod:1386
24391 #, no-wrap
24392 msgid ""
24393 " get-path\n"
24394 "\n"
24395 msgstr ""
24396
24397 #. type: =head2
24398 #: ../fish/guestfish-actions.pod:1393
24399 msgid "get-pgroup"
24400 msgstr ""
24401
24402 #. type: verbatim
24403 #: ../fish/guestfish-actions.pod:1395
24404 #, no-wrap
24405 msgid ""
24406 " get-pgroup\n"
24407 "\n"
24408 msgstr ""
24409
24410 #. type: =head2
24411 #: ../fish/guestfish-actions.pod:1399
24412 msgid "get-pid"
24413 msgstr ""
24414
24415 #. type: =head2
24416 #: ../fish/guestfish-actions.pod:1401
24417 msgid "pid"
24418 msgstr ""
24419
24420 #. type: verbatim
24421 #: ../fish/guestfish-actions.pod:1403
24422 #, no-wrap
24423 msgid ""
24424 " get-pid\n"
24425 "\n"
24426 msgstr ""
24427
24428 #. type: =head2
24429 #: ../fish/guestfish-actions.pod:1410
24430 msgid "get-qemu"
24431 msgstr ""
24432
24433 #. type: verbatim
24434 #: ../fish/guestfish-actions.pod:1412
24435 #, no-wrap
24436 msgid ""
24437 " get-qemu\n"
24438 "\n"
24439 msgstr ""
24440
24441 #. type: =head2
24442 #: ../fish/guestfish-actions.pod:1419
24443 msgid "get-recovery-proc"
24444 msgstr ""
24445
24446 #. type: verbatim
24447 #: ../fish/guestfish-actions.pod:1421
24448 #, no-wrap
24449 msgid ""
24450 " get-recovery-proc\n"
24451 "\n"
24452 msgstr ""
24453
24454 #. type: =head2
24455 #: ../fish/guestfish-actions.pod:1425
24456 msgid "get-selinux"
24457 msgstr ""
24458
24459 #. type: verbatim
24460 #: ../fish/guestfish-actions.pod:1427
24461 #, no-wrap
24462 msgid ""
24463 " get-selinux\n"
24464 "\n"
24465 msgstr ""
24466
24467 #. type: textblock
24468 #: ../fish/guestfish-actions.pod:1429
24469 msgid ""
24470 "This returns the current setting of the selinux flag which is passed to the "
24471 "appliance at boot time.  See L</set-selinux>."
24472 msgstr ""
24473
24474 #. type: =head2
24475 #: ../fish/guestfish-actions.pod:1435
24476 msgid "get-state"
24477 msgstr ""
24478
24479 #. type: verbatim
24480 #: ../fish/guestfish-actions.pod:1437
24481 #, no-wrap
24482 msgid ""
24483 " get-state\n"
24484 "\n"
24485 msgstr ""
24486
24487 #. type: =head2
24488 #: ../fish/guestfish-actions.pod:1444
24489 msgid "get-trace"
24490 msgstr ""
24491
24492 #. type: verbatim
24493 #: ../fish/guestfish-actions.pod:1446
24494 #, no-wrap
24495 msgid ""
24496 " get-trace\n"
24497 "\n"
24498 msgstr ""
24499
24500 #. type: =head2
24501 #: ../fish/guestfish-actions.pod:1450
24502 msgid "get-umask"
24503 msgstr ""
24504
24505 #. type: verbatim
24506 #: ../fish/guestfish-actions.pod:1452
24507 #, no-wrap
24508 msgid ""
24509 " get-umask\n"
24510 "\n"
24511 msgstr ""
24512
24513 #. type: textblock
24514 #: ../fish/guestfish-actions.pod:1454
24515 msgid ""
24516 "Return the current umask.  By default the umask is C<022> unless it has been"
24517 " set by calling L</umask>."
24518 msgstr ""
24519
24520 #. type: =head2
24521 #: ../fish/guestfish-actions.pod:1457
24522 msgid "get-verbose"
24523 msgstr ""
24524
24525 #. type: verbatim
24526 #: ../fish/guestfish-actions.pod:1459
24527 #, no-wrap
24528 msgid ""
24529 " get-verbose\n"
24530 "\n"
24531 msgstr ""
24532
24533 #. type: =head2
24534 #: ../fish/guestfish-actions.pod:1463
24535 msgid "getcon"
24536 msgstr ""
24537
24538 #. type: verbatim
24539 #: ../fish/guestfish-actions.pod:1465
24540 #, no-wrap
24541 msgid ""
24542 " getcon\n"
24543 "\n"
24544 msgstr ""
24545
24546 #. type: textblock
24547 #: ../fish/guestfish-actions.pod:1469
24548 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
24549 msgstr ""
24550
24551 #. type: =head2
24552 #: ../fish/guestfish-actions.pod:1472
24553 msgid "getxattr"
24554 msgstr ""
24555
24556 #. type: verbatim
24557 #: ../fish/guestfish-actions.pod:1474
24558 #, no-wrap
24559 msgid ""
24560 " getxattr path name\n"
24561 "\n"
24562 msgstr ""
24563
24564 #. type: textblock
24565 #: ../fish/guestfish-actions.pod:1476
24566 msgid ""
24567 "Get a single extended attribute from file C<path> named C<name>.  This call "
24568 "follows symlinks.  If you want to lookup an extended attribute for the "
24569 "symlink itself, use L</lgetxattr>."
24570 msgstr ""
24571
24572 #. type: textblock
24573 #: ../fish/guestfish-actions.pod:1480 ../fish/guestfish-actions.pod:2507
24574 msgid ""
24575 "Normally it is better to get all extended attributes from a file in one go "
24576 "by calling L</getxattrs>.  However some Linux filesystem implementations are"
24577 " buggy and do not provide a way to list out attributes.  For these "
24578 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
24579 "attributes you want in advance and call this function."
24580 msgstr ""
24581
24582 #. type: textblock
24583 #: ../fish/guestfish-actions.pod:1490
24584 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
24585 msgstr ""
24586
24587 #. type: =head2
24588 #: ../fish/guestfish-actions.pod:1492
24589 msgid "getxattrs"
24590 msgstr ""
24591
24592 #. type: verbatim
24593 #: ../fish/guestfish-actions.pod:1494
24594 #, no-wrap
24595 msgid ""
24596 " getxattrs path\n"
24597 "\n"
24598 msgstr ""
24599
24600 #. type: textblock
24601 #: ../fish/guestfish-actions.pod:1502
24602 msgid "See also: L</lgetxattrs>, L<attr(5)>."
24603 msgstr ""
24604
24605 #. type: =head2
24606 #: ../fish/guestfish-actions.pod:1504
24607 msgid "glob-expand"
24608 msgstr ""
24609
24610 #. type: verbatim
24611 #: ../fish/guestfish-actions.pod:1506
24612 #, no-wrap
24613 msgid ""
24614 " glob-expand pattern\n"
24615 "\n"
24616 msgstr ""
24617
24618 #. type: =head2
24619 #: ../fish/guestfish-actions.pod:1519
24620 msgid "grep"
24621 msgstr ""
24622
24623 #. type: verbatim
24624 #: ../fish/guestfish-actions.pod:1521
24625 #, no-wrap
24626 msgid ""
24627 " grep regex path\n"
24628 "\n"
24629 msgstr ""
24630
24631 #. type: =head2
24632 #: ../fish/guestfish-actions.pod:1529
24633 msgid "grepi"
24634 msgstr ""
24635
24636 #. type: verbatim
24637 #: ../fish/guestfish-actions.pod:1531
24638 #, no-wrap
24639 msgid ""
24640 " grepi regex path\n"
24641 "\n"
24642 msgstr ""
24643
24644 #. type: =head2
24645 #: ../fish/guestfish-actions.pod:1539
24646 msgid "grub-install"
24647 msgstr ""
24648
24649 #. type: verbatim
24650 #: ../fish/guestfish-actions.pod:1541
24651 #, no-wrap
24652 msgid ""
24653 " grub-install root device\n"
24654 "\n"
24655 msgstr ""
24656
24657 #. type: =head2
24658 #: ../fish/guestfish-actions.pod:1557
24659 msgid "head"
24660 msgstr ""
24661
24662 #. type: verbatim
24663 #: ../fish/guestfish-actions.pod:1559
24664 #, no-wrap
24665 msgid ""
24666 " head path\n"
24667 "\n"
24668 msgstr ""
24669
24670 #. type: =head2
24671 #: ../fish/guestfish-actions.pod:1567
24672 msgid "head-n"
24673 msgstr ""
24674
24675 #. type: verbatim
24676 #: ../fish/guestfish-actions.pod:1569
24677 #, no-wrap
24678 msgid ""
24679 " head-n nrlines path\n"
24680 "\n"
24681 msgstr ""
24682
24683 #. type: =head2
24684 #: ../fish/guestfish-actions.pod:1582
24685 msgid "hexdump"
24686 msgstr ""
24687
24688 #. type: verbatim
24689 #: ../fish/guestfish-actions.pod:1584
24690 #, no-wrap
24691 msgid ""
24692 " hexdump path\n"
24693 "\n"
24694 msgstr ""
24695
24696 #. type: =head2
24697 #: ../fish/guestfish-actions.pod:1592
24698 msgid "initrd-cat"
24699 msgstr ""
24700
24701 #. type: verbatim
24702 #: ../fish/guestfish-actions.pod:1594
24703 #, no-wrap
24704 msgid ""
24705 " initrd-cat initrdpath filename\n"
24706 "\n"
24707 msgstr ""
24708
24709 #. type: textblock
24710 #: ../fish/guestfish-actions.pod:1606
24711 msgid "See also L</initrd-list>."
24712 msgstr ""
24713
24714 #. type: =head2
24715 #: ../fish/guestfish-actions.pod:1611
24716 msgid "initrd-list"
24717 msgstr ""
24718
24719 #. type: verbatim
24720 #: ../fish/guestfish-actions.pod:1613
24721 #, no-wrap
24722 msgid ""
24723 " initrd-list path\n"
24724 "\n"
24725 msgstr ""
24726
24727 #. type: =head2
24728 #: ../fish/guestfish-actions.pod:1625
24729 msgid "inotify-add-watch"
24730 msgstr ""
24731
24732 #. type: verbatim
24733 #: ../fish/guestfish-actions.pod:1627
24734 #, no-wrap
24735 msgid ""
24736 " inotify-add-watch path mask\n"
24737 "\n"
24738 msgstr ""
24739
24740 #. type: =head2
24741 #: ../fish/guestfish-actions.pod:1639
24742 msgid "inotify-close"
24743 msgstr ""
24744
24745 #. type: verbatim
24746 #: ../fish/guestfish-actions.pod:1641
24747 #, no-wrap
24748 msgid ""
24749 " inotify-close\n"
24750 "\n"
24751 msgstr ""
24752
24753 #. type: =head2
24754 #: ../fish/guestfish-actions.pod:1647
24755 msgid "inotify-files"
24756 msgstr ""
24757
24758 #. type: verbatim
24759 #: ../fish/guestfish-actions.pod:1649
24760 #, no-wrap
24761 msgid ""
24762 " inotify-files\n"
24763 "\n"
24764 msgstr ""
24765
24766 #. type: textblock
24767 #: ../fish/guestfish-actions.pod:1651
24768 msgid ""
24769 "This function is a helpful wrapper around L</inotify-read> which just "
24770 "returns a list of pathnames of objects that were touched.  The returned "
24771 "pathnames are sorted and deduplicated."
24772 msgstr ""
24773
24774 #. type: =head2
24775 #: ../fish/guestfish-actions.pod:1655
24776 msgid "inotify-init"
24777 msgstr ""
24778
24779 #. type: verbatim
24780 #: ../fish/guestfish-actions.pod:1657
24781 #, no-wrap
24782 msgid ""
24783 " inotify-init maxevents\n"
24784 "\n"
24785 msgstr ""
24786
24787 #. type: textblock
24788 #: ../fish/guestfish-actions.pod:1663
24789 msgid ""
24790 "C<maxevents> is the maximum number of events which will be queued up between"
24791 " calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>,"
24792 " then the kernel (or previously set)  default is used.  For Linux 2.6.29 the"
24793 " default was 16384 events.  Beyond this limit, the kernel throws away "
24794 "events, but records the fact that it threw them away by setting a flag "
24795 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
24796 msgstr ""
24797
24798 #. type: textblock
24799 #: ../fish/guestfish-actions.pod:1673
24800 msgid ""
24801 "Before any events are generated, you have to add some watches to the "
24802 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and L"
24803 "</inotify-watch-all>."
24804 msgstr ""
24805
24806 #. type: textblock
24807 #: ../fish/guestfish-actions.pod:1679
24808 msgid ""
24809 "Queued up events should be read periodically by calling L</inotify-read> (or"
24810 " L</inotify-files> which is just a helpful wrapper around L</inotify-read>)."
24811 "  If you don't read the events out often enough then you risk the internal "
24812 "queue overflowing."
24813 msgstr ""
24814
24815 #. type: textblock
24816 #: ../fish/guestfish-actions.pod:1686
24817 msgid ""
24818 "The handle should be closed after use by calling L</inotify-close>.  This "
24819 "also removes any watches automatically."
24820 msgstr ""
24821
24822 #. type: =head2
24823 #: ../fish/guestfish-actions.pod:1695
24824 msgid "inotify-read"
24825 msgstr ""
24826
24827 #. type: verbatim
24828 #: ../fish/guestfish-actions.pod:1697
24829 #, no-wrap
24830 msgid ""
24831 " inotify-read\n"
24832 "\n"
24833 msgstr ""
24834
24835 #. type: =head2
24836 #: ../fish/guestfish-actions.pod:1710
24837 msgid "inotify-rm-watch"
24838 msgstr ""
24839
24840 #. type: verbatim
24841 #: ../fish/guestfish-actions.pod:1712
24842 #, no-wrap
24843 msgid ""
24844 " inotify-rm-watch wd\n"
24845 "\n"
24846 msgstr ""
24847
24848 #. type: textblock
24849 #: ../fish/guestfish-actions.pod:1714
24850 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
24851 msgstr ""
24852
24853 #. type: =head2
24854 #: ../fish/guestfish-actions.pod:1717
24855 msgid "inspect-get-arch"
24856 msgstr ""
24857
24858 #. type: verbatim
24859 #: ../fish/guestfish-actions.pod:1719
24860 #, no-wrap
24861 msgid ""
24862 " inspect-get-arch root\n"
24863 "\n"
24864 msgstr ""
24865
24866 #. type: textblock
24867 #: ../fish/guestfish-actions.pod:1721
24868 msgid ""
24869 "This returns the architecture of the inspected operating system.  The "
24870 "possible return values are listed under L</file-architecture>."
24871 msgstr ""
24872
24873 #. type: =head2
24874 #: ../fish/guestfish-actions.pod:1730
24875 msgid "inspect-get-distro"
24876 msgstr ""
24877
24878 #. type: verbatim
24879 #: ../fish/guestfish-actions.pod:1732
24880 #, no-wrap
24881 msgid ""
24882 " inspect-get-distro root\n"
24883 "\n"
24884 msgstr ""
24885
24886 #. type: =head2
24887 #: ../fish/guestfish-actions.pod:1813
24888 msgid "inspect-get-drive-mappings"
24889 msgstr ""
24890
24891 #. type: verbatim
24892 #: ../fish/guestfish-actions.pod:1815
24893 #, no-wrap
24894 msgid ""
24895 " inspect-get-drive-mappings root\n"
24896 "\n"
24897 msgstr ""
24898
24899 #. type: textblock
24900 #: ../fish/guestfish-actions.pod:1842
24901 msgid ""
24902 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24903 "get-mountpoints>, L</inspect-get-filesystems>."
24904 msgstr ""
24905
24906 #. type: =head2
24907 #: ../fish/guestfish-actions.pod:1846
24908 msgid "inspect-get-filesystems"
24909 msgstr ""
24910
24911 #. type: verbatim
24912 #: ../fish/guestfish-actions.pod:1848
24913 #, no-wrap
24914 msgid ""
24915 " inspect-get-filesystems root\n"
24916 "\n"
24917 msgstr ""
24918
24919 #. type: textblock
24920 #: ../fish/guestfish-actions.pod:1858
24921 msgid ""
24922 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24923 "get-mountpoints>."
24924 msgstr ""
24925
24926 #. type: =head2
24927 #: ../fish/guestfish-actions.pod:1861
24928 msgid "inspect-get-format"
24929 msgstr ""
24930
24931 #. type: verbatim
24932 #: ../fish/guestfish-actions.pod:1863
24933 #, no-wrap
24934 msgid ""
24935 " inspect-get-format root\n"
24936 "\n"
24937 msgstr ""
24938
24939 #. type: =head2
24940 #: ../fish/guestfish-actions.pod:1892
24941 msgid "inspect-get-hostname"
24942 msgstr ""
24943
24944 #. type: verbatim
24945 #: ../fish/guestfish-actions.pod:1894
24946 #, no-wrap
24947 msgid ""
24948 " inspect-get-hostname root\n"
24949 "\n"
24950 msgstr ""
24951
24952 #. type: =head2
24953 #: ../fish/guestfish-actions.pod:1904
24954 msgid "inspect-get-icon"
24955 msgstr ""
24956
24957 #. type: verbatim
24958 #: ../fish/guestfish-actions.pod:1906
24959 #, no-wrap
24960 msgid ""
24961 " inspect-get-icon root [favicon:..] [highquality:..]\n"
24962 "\n"
24963 msgstr ""
24964
24965 #. type: =head2
24966 #: ../fish/guestfish-actions.pod:1970
24967 msgid "inspect-get-major-version"
24968 msgstr ""
24969
24970 #. type: verbatim
24971 #: ../fish/guestfish-actions.pod:1972
24972 #, no-wrap
24973 msgid ""
24974 " inspect-get-major-version root\n"
24975 "\n"
24976 msgstr ""
24977
24978 #. type: =head2
24979 #: ../fish/guestfish-actions.pod:1988
24980 msgid "inspect-get-minor-version"
24981 msgstr ""
24982
24983 #. type: verbatim
24984 #: ../fish/guestfish-actions.pod:1990
24985 #, no-wrap
24986 msgid ""
24987 " inspect-get-minor-version root\n"
24988 "\n"
24989 msgstr ""
24990
24991 #. type: textblock
24992 #: ../fish/guestfish-actions.pod:1997
24993 msgid ""
24994 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24995 "get-major-version>."
24996 msgstr ""
24997
24998 #. type: =head2
24999 #: ../fish/guestfish-actions.pod:2000
25000 msgid "inspect-get-mountpoints"
25001 msgstr ""
25002
25003 #. type: verbatim
25004 #: ../fish/guestfish-actions.pod:2002
25005 #, no-wrap
25006 msgid ""
25007 " inspect-get-mountpoints root\n"
25008 "\n"
25009 msgstr ""
25010
25011 #. type: textblock
25012 #: ../fish/guestfish-actions.pod:2021
25013 msgid ""
25014 "For operating systems like Windows which still use drive letters, this call "
25015 "will only return an entry for the first drive \"mounted on\" C</>.  For "
25016 "information about the mapping of drive letters to partitions, see L"
25017 "</inspect-get-drive-mappings>."
25018 msgstr ""
25019
25020 #. type: textblock
25021 #: ../fish/guestfish-actions.pod:2027
25022 msgid ""
25023 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
25024 "get-filesystems>."
25025 msgstr ""
25026
25027 #. type: =head2
25028 #: ../fish/guestfish-actions.pod:2030
25029 msgid "inspect-get-package-format"
25030 msgstr ""
25031
25032 #. type: verbatim
25033 #: ../fish/guestfish-actions.pod:2032
25034 #, no-wrap
25035 msgid ""
25036 " inspect-get-package-format root\n"
25037 "\n"
25038 msgstr ""
25039
25040 #. type: textblock
25041 #: ../fish/guestfish-actions.pod:2034
25042 msgid ""
25043 "This function and L</inspect-get-package-management> return the package "
25044 "format and package management tool used by the inspected operating system.  "
25045 "For example for Fedora these functions would return C<rpm> (package format) "
25046 "and C<yum> (package management)."
25047 msgstr ""
25048
25049 #. type: =head2
25050 #: ../fish/guestfish-actions.pod:2049
25051 msgid "inspect-get-package-management"
25052 msgstr ""
25053
25054 #. type: verbatim
25055 #: ../fish/guestfish-actions.pod:2051
25056 #, no-wrap
25057 msgid ""
25058 " inspect-get-package-management root\n"
25059 "\n"
25060 msgstr ""
25061
25062 #. type: textblock
25063 #: ../fish/guestfish-actions.pod:2053
25064 msgid ""
25065 "L</inspect-get-package-format> and this function return the package format "
25066 "and package management tool used by the inspected operating system.  For "
25067 "example for Fedora these functions would return C<rpm> (package format) and "
25068 "C<yum> (package management)."
25069 msgstr ""
25070
25071 #. type: =head2
25072 #: ../fish/guestfish-actions.pod:2070
25073 msgid "inspect-get-product-name"
25074 msgstr ""
25075
25076 #. type: verbatim
25077 #: ../fish/guestfish-actions.pod:2072
25078 #, no-wrap
25079 msgid ""
25080 " inspect-get-product-name root\n"
25081 "\n"
25082 msgstr ""
25083
25084 #. type: =head2
25085 #: ../fish/guestfish-actions.pod:2084
25086 msgid "inspect-get-product-variant"
25087 msgstr ""
25088
25089 #. type: verbatim
25090 #: ../fish/guestfish-actions.pod:2086
25091 #, no-wrap
25092 msgid ""
25093 " inspect-get-product-variant root\n"
25094 "\n"
25095 msgstr ""
25096
25097 #. type: textblock
25098 #: ../fish/guestfish-actions.pod:2107
25099 msgid ""
25100 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
25101 "get-product-name>, L</inspect-get-major-version>."
25102 msgstr ""
25103
25104 #. type: =head2
25105 #: ../fish/guestfish-actions.pod:2111
25106 msgid "inspect-get-roots"
25107 msgstr ""
25108
25109 #. type: verbatim
25110 #: ../fish/guestfish-actions.pod:2113
25111 #, no-wrap
25112 msgid ""
25113 " inspect-get-roots\n"
25114 "\n"
25115 msgstr ""
25116
25117 #. type: textblock
25118 #: ../fish/guestfish-actions.pod:2115
25119 msgid ""
25120 "This function is a convenient way to get the list of root devices, as "
25121 "returned from a previous call to L</inspect-os>, but without redoing the "
25122 "whole inspection process."
25123 msgstr ""
25124
25125 #. type: textblock
25126 #: ../fish/guestfish-actions.pod:2119
25127 msgid ""
25128 "This returns an empty list if either no root devices were found or the "
25129 "caller has not called L</inspect-os>."
25130 msgstr ""
25131
25132 #. type: =head2
25133 #: ../fish/guestfish-actions.pod:2124
25134 msgid "inspect-get-type"
25135 msgstr ""
25136
25137 #. type: verbatim
25138 #: ../fish/guestfish-actions.pod:2126
25139 #, no-wrap
25140 msgid ""
25141 " inspect-get-type root\n"
25142 "\n"
25143 msgstr ""
25144
25145 #. type: =head2
25146 #: ../fish/guestfish-actions.pod:2156
25147 msgid "inspect-get-windows-current-control-set"
25148 msgstr ""
25149
25150 #. type: verbatim
25151 #: ../fish/guestfish-actions.pod:2158
25152 #, no-wrap
25153 msgid ""
25154 " inspect-get-windows-current-control-set root\n"
25155 "\n"
25156 msgstr ""
25157
25158 #. type: =head2
25159 #: ../fish/guestfish-actions.pod:2169
25160 msgid "inspect-get-windows-systemroot"
25161 msgstr ""
25162
25163 #. type: verbatim
25164 #: ../fish/guestfish-actions.pod:2171
25165 #, no-wrap
25166 msgid ""
25167 " inspect-get-windows-systemroot root\n"
25168 "\n"
25169 msgstr ""
25170
25171 #. type: =head2
25172 #: ../fish/guestfish-actions.pod:2182
25173 msgid "inspect-is-live"
25174 msgstr ""
25175
25176 #. type: verbatim
25177 #: ../fish/guestfish-actions.pod:2184
25178 #, no-wrap
25179 msgid ""
25180 " inspect-is-live root\n"
25181 "\n"
25182 msgstr ""
25183
25184 #. type: textblock
25185 #: ../fish/guestfish-actions.pod:2186
25186 msgid ""
25187 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
25188 "then this returns true if a live image was detected on the disk."
25189 msgstr ""
25190
25191 #. type: =head2
25192 #: ../fish/guestfish-actions.pod:2192
25193 msgid "inspect-is-multipart"
25194 msgstr ""
25195
25196 #. type: verbatim
25197 #: ../fish/guestfish-actions.pod:2194
25198 #, no-wrap
25199 msgid ""
25200 " inspect-is-multipart root\n"
25201 "\n"
25202 msgstr ""
25203
25204 #. type: textblock
25205 #: ../fish/guestfish-actions.pod:2196
25206 msgid ""
25207 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
25208 "then this returns true if the disk is part of a set."
25209 msgstr ""
25210
25211 #. type: =head2
25212 #: ../fish/guestfish-actions.pod:2202
25213 msgid "inspect-is-netinst"
25214 msgstr ""
25215
25216 #. type: verbatim
25217 #: ../fish/guestfish-actions.pod:2204
25218 #, no-wrap
25219 msgid ""
25220 " inspect-is-netinst root\n"
25221 "\n"
25222 msgstr ""
25223
25224 #. type: textblock
25225 #: ../fish/guestfish-actions.pod:2206
25226 msgid ""
25227 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
25228 "then this returns true if the disk is a network installer, ie. not a self-"
25229 "contained install CD but one which is likely to require network access to "
25230 "complete the install."
25231 msgstr ""
25232
25233 #. type: =head2
25234 #: ../fish/guestfish-actions.pod:2214
25235 msgid "inspect-list-applications"
25236 msgstr ""
25237
25238 #. type: verbatim
25239 #: ../fish/guestfish-actions.pod:2216
25240 #, no-wrap
25241 msgid ""
25242 " inspect-list-applications root\n"
25243 "\n"
25244 msgstr ""
25245
25246 #. type: textblock
25247 #: ../fish/guestfish-actions.pod:2220
25248 msgid ""
25249 "I<Note:> This call works differently from other parts of the inspection API."
25250 "  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, then "
25251 "mount up the disks, before calling this.  Listing applications is a "
25252 "significantly more difficult operation which requires access to the full "
25253 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
25254 "are just returning data cached in the libguestfs handle, this call actually "
25255 "reads parts of the mounted filesystems during the call."
25256 msgstr ""
25257
25258 #. type: =head2
25259 #: ../fish/guestfish-actions.pod:2310
25260 msgid "inspect-os"
25261 msgstr ""
25262
25263 #. type: verbatim
25264 #: ../fish/guestfish-actions.pod:2312
25265 #, no-wrap
25266 msgid ""
25267 " inspect-os\n"
25268 "\n"
25269 msgstr ""
25270
25271 #. type: textblock
25272 #: ../fish/guestfish-actions.pod:2327
25273 msgid ""
25274 "You can pass the root string(s) returned to other L</inspect-get-*> "
25275 "functions in order to query further information about each operating system,"
25276 " such as the name and version."
25277 msgstr ""
25278
25279 #. type: textblock
25280 #: ../fish/guestfish-actions.pod:2332
25281 msgid ""
25282 "This function uses other libguestfs features such as L</mount-ro> and L"
25283 "</umount-all> in order to mount and unmount filesystems and look at the "
25284 "contents.  This should be called with no disks currently mounted.  The "
25285 "function may also use Augeas, so any existing Augeas handle will be closed."
25286 msgstr ""
25287
25288 #. type: textblock
25289 #: ../fish/guestfish-actions.pod:2344 ../fish/guestfish-actions.pod:2542
25290 #: ../fish/guestfish-actions.pod:2601
25291 msgid "See also L</list-filesystems>."
25292 msgstr ""
25293
25294 #. type: =head2
25295 #: ../fish/guestfish-actions.pod:2346
25296 msgid "is-blockdev"
25297 msgstr ""
25298
25299 #. type: verbatim
25300 #: ../fish/guestfish-actions.pod:2348
25301 #, no-wrap
25302 msgid ""
25303 " is-blockdev path\n"
25304 "\n"
25305 msgstr ""
25306
25307 #. type: textblock
25308 #: ../fish/guestfish-actions.pod:2353 ../fish/guestfish-actions.pod:2371
25309 #: ../fish/guestfish-actions.pod:2390 ../fish/guestfish-actions.pod:2399
25310 #: ../fish/guestfish-actions.pod:2409 ../fish/guestfish-actions.pod:2443
25311 #: ../fish/guestfish-actions.pod:2452
25312 msgid "See also L</stat>."
25313 msgstr ""
25314
25315 #. type: =head2
25316 #: ../fish/guestfish-actions.pod:2355
25317 msgid "is-busy"
25318 msgstr ""
25319
25320 #. type: verbatim
25321 #: ../fish/guestfish-actions.pod:2357
25322 #, no-wrap
25323 msgid ""
25324 " is-busy\n"
25325 "\n"
25326 msgstr ""
25327
25328 #. type: =head2
25329 #: ../fish/guestfish-actions.pod:2364
25330 msgid "is-chardev"
25331 msgstr ""
25332
25333 #. type: verbatim
25334 #: ../fish/guestfish-actions.pod:2366
25335 #, no-wrap
25336 msgid ""
25337 " is-chardev path\n"
25338 "\n"
25339 msgstr ""
25340
25341 #. type: =head2
25342 #: ../fish/guestfish-actions.pod:2373
25343 msgid "is-config"
25344 msgstr ""
25345
25346 #. type: verbatim
25347 #: ../fish/guestfish-actions.pod:2375
25348 #, no-wrap
25349 msgid ""
25350 " is-config\n"
25351 "\n"
25352 msgstr ""
25353
25354 #. type: =head2
25355 #: ../fish/guestfish-actions.pod:2382
25356 msgid "is-dir"
25357 msgstr ""
25358
25359 #. type: verbatim
25360 #: ../fish/guestfish-actions.pod:2384
25361 #, no-wrap
25362 msgid ""
25363 " is-dir path\n"
25364 "\n"
25365 msgstr ""
25366
25367 #. type: =head2
25368 #: ../fish/guestfish-actions.pod:2392
25369 msgid "is-fifo"
25370 msgstr ""
25371
25372 #. type: verbatim
25373 #: ../fish/guestfish-actions.pod:2394
25374 #, no-wrap
25375 msgid ""
25376 " is-fifo path\n"
25377 "\n"
25378 msgstr ""
25379
25380 #. type: =head2
25381 #: ../fish/guestfish-actions.pod:2401
25382 msgid "is-file"
25383 msgstr ""
25384
25385 #. type: verbatim
25386 #: ../fish/guestfish-actions.pod:2403
25387 #, no-wrap
25388 msgid ""
25389 " is-file path\n"
25390 "\n"
25391 msgstr ""
25392
25393 #. type: =head2
25394 #: ../fish/guestfish-actions.pod:2411
25395 msgid "is-launching"
25396 msgstr ""
25397
25398 #. type: verbatim
25399 #: ../fish/guestfish-actions.pod:2413
25400 #, no-wrap
25401 msgid ""
25402 " is-launching\n"
25403 "\n"
25404 msgstr ""
25405
25406 #. type: =head2
25407 #: ../fish/guestfish-actions.pod:2420
25408 msgid "is-lv"
25409 msgstr ""
25410
25411 #. type: verbatim
25412 #: ../fish/guestfish-actions.pod:2422
25413 #, no-wrap
25414 msgid ""
25415 " is-lv device\n"
25416 "\n"
25417 msgstr ""
25418
25419 #. type: =head2
25420 #: ../fish/guestfish-actions.pod:2427
25421 msgid "is-ready"
25422 msgstr ""
25423
25424 #. type: verbatim
25425 #: ../fish/guestfish-actions.pod:2429
25426 #, no-wrap
25427 msgid ""
25428 " is-ready\n"
25429 "\n"
25430 msgstr ""
25431
25432 #. type: =head2
25433 #: ../fish/guestfish-actions.pod:2436
25434 msgid "is-socket"
25435 msgstr ""
25436
25437 #. type: verbatim
25438 #: ../fish/guestfish-actions.pod:2438
25439 #, no-wrap
25440 msgid ""
25441 " is-socket path\n"
25442 "\n"
25443 msgstr ""
25444
25445 #. type: =head2
25446 #: ../fish/guestfish-actions.pod:2445
25447 msgid "is-symlink"
25448 msgstr ""
25449
25450 #. type: verbatim
25451 #: ../fish/guestfish-actions.pod:2447
25452 #, no-wrap
25453 msgid ""
25454 " is-symlink path\n"
25455 "\n"
25456 msgstr ""
25457
25458 #. type: =head2
25459 #: ../fish/guestfish-actions.pod:2454
25460 msgid "is-zero"
25461 msgstr ""
25462
25463 #. type: verbatim
25464 #: ../fish/guestfish-actions.pod:2456
25465 #, no-wrap
25466 msgid ""
25467 " is-zero path\n"
25468 "\n"
25469 msgstr ""
25470
25471 #. type: =head2
25472 #: ../fish/guestfish-actions.pod:2461
25473 msgid "is-zero-device"
25474 msgstr ""
25475
25476 #. type: verbatim
25477 #: ../fish/guestfish-actions.pod:2463
25478 #, no-wrap
25479 msgid ""
25480 " is-zero-device device\n"
25481 "\n"
25482 msgstr ""
25483
25484 #. type: =head2
25485 #: ../fish/guestfish-actions.pod:2469
25486 msgid "kill-subprocess"
25487 msgstr ""
25488
25489 #. type: verbatim
25490 #: ../fish/guestfish-actions.pod:2471
25491 #, no-wrap
25492 msgid ""
25493 " kill-subprocess\n"
25494 "\n"
25495 msgstr ""
25496
25497 #. type: =head2
25498 #: ../fish/guestfish-actions.pod:2475
25499 msgid "launch"
25500 msgstr ""
25501
25502 #. type: =head2
25503 #: ../fish/guestfish-actions.pod:2477
25504 msgid "run"
25505 msgstr ""
25506
25507 #. type: verbatim
25508 #: ../fish/guestfish-actions.pod:2479
25509 #, no-wrap
25510 msgid ""
25511 " launch\n"
25512 "\n"
25513 msgstr ""
25514
25515 #. type: =head2
25516 #: ../fish/guestfish-actions.pod:2487
25517 msgid "lchown"
25518 msgstr ""
25519
25520 #. type: verbatim
25521 #: ../fish/guestfish-actions.pod:2489
25522 #, no-wrap
25523 msgid ""
25524 " lchown owner group path\n"
25525 "\n"
25526 msgstr ""
25527
25528 #. type: textblock
25529 #: ../fish/guestfish-actions.pod:2491
25530 msgid ""
25531 "Change the file owner to C<owner> and group to C<group>.  This is like "
25532 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
25533 "the target."
25534 msgstr ""
25535
25536 #. type: =head2
25537 #: ../fish/guestfish-actions.pod:2499
25538 msgid "lgetxattr"
25539 msgstr ""
25540
25541 #. type: verbatim
25542 #: ../fish/guestfish-actions.pod:2501
25543 #, no-wrap
25544 msgid ""
25545 " lgetxattr path name\n"
25546 "\n"
25547 msgstr ""
25548
25549 #. type: textblock
25550 #: ../fish/guestfish-actions.pod:2517
25551 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
25552 msgstr ""
25553
25554 #. type: =head2
25555 #: ../fish/guestfish-actions.pod:2519
25556 msgid "lgetxattrs"
25557 msgstr ""
25558
25559 #. type: verbatim
25560 #: ../fish/guestfish-actions.pod:2521
25561 #, no-wrap
25562 msgid ""
25563 " lgetxattrs path\n"
25564 "\n"
25565 msgstr ""
25566
25567 #. type: textblock
25568 #: ../fish/guestfish-actions.pod:2523
25569 msgid ""
25570 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
25571 "it returns the extended attributes of the link itself."
25572 msgstr ""
25573
25574 #. type: =head2
25575 #: ../fish/guestfish-actions.pod:2527
25576 msgid "list-9p"
25577 msgstr ""
25578
25579 #. type: verbatim
25580 #: ../fish/guestfish-actions.pod:2529
25581 #, no-wrap
25582 msgid ""
25583 " list-9p\n"
25584 "\n"
25585 msgstr ""
25586
25587 #. type: =head2
25588 #: ../fish/guestfish-actions.pod:2534
25589 msgid "list-devices"
25590 msgstr ""
25591
25592 #. type: verbatim
25593 #: ../fish/guestfish-actions.pod:2536
25594 #, no-wrap
25595 msgid ""
25596 " list-devices\n"
25597 "\n"
25598 msgstr ""
25599
25600 #. type: =head2
25601 #: ../fish/guestfish-actions.pod:2544
25602 msgid "list-dm-devices"
25603 msgstr ""
25604
25605 #. type: verbatim
25606 #: ../fish/guestfish-actions.pod:2546
25607 #, no-wrap
25608 msgid ""
25609 " list-dm-devices\n"
25610 "\n"
25611 msgstr ""
25612
25613 #. type: textblock
25614 #: ../fish/guestfish-actions.pod:2550
25615 msgid ""
25616 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
25617 "previous call to L</luks-open>."
25618 msgstr ""
25619
25620 #. type: textblock
25621 #: ../fish/guestfish-actions.pod:2553
25622 msgid ""
25623 "Device mapper devices which correspond to logical volumes are I<not> "
25624 "returned in this list.  Call L</lvs> if you want to list logical volumes."
25625 msgstr ""
25626
25627 #. type: =head2
25628 #: ../fish/guestfish-actions.pod:2557
25629 msgid "list-filesystems"
25630 msgstr ""
25631
25632 #. type: verbatim
25633 #: ../fish/guestfish-actions.pod:2559
25634 #, no-wrap
25635 msgid ""
25636 " list-filesystems\n"
25637 "\n"
25638 msgstr ""
25639
25640 #. type: textblock
25641 #: ../fish/guestfish-actions.pod:2578
25642 msgid ""
25643 "This command runs other libguestfs commands, which might include L</mount> "
25644 "and L</umount>, and therefore you should use this soon after launch and only"
25645 " when nothing is mounted."
25646 msgstr ""
25647
25648 #. type: textblock
25649 #: ../fish/guestfish-actions.pod:2582
25650 msgid ""
25651 "Not all of the filesystems returned will be mountable.  In particular, swap "
25652 "partitions are returned in the list.  Also this command does not check that "
25653 "each filesystem found is valid and mountable, and some filesystems might be "
25654 "mountable but require special options.  Filesystems may not all belong to a "
25655 "single logical operating system (use L</inspect-os> to look for OSes)."
25656 msgstr ""
25657
25658 #. type: =head2
25659 #: ../fish/guestfish-actions.pod:2590
25660 msgid "list-partitions"
25661 msgstr ""
25662
25663 #. type: verbatim
25664 #: ../fish/guestfish-actions.pod:2592
25665 #, no-wrap
25666 msgid ""
25667 " list-partitions\n"
25668 "\n"
25669 msgstr ""
25670
25671 #. type: textblock
25672 #: ../fish/guestfish-actions.pod:2598
25673 msgid ""
25674 "This does not return logical volumes.  For that you will need to call "
25675 "L</lvs>."
25676 msgstr ""
25677
25678 #. type: =head2
25679 #: ../fish/guestfish-actions.pod:2603
25680 msgid "ll"
25681 msgstr ""
25682
25683 #. type: verbatim
25684 #: ../fish/guestfish-actions.pod:2605
25685 #, no-wrap
25686 msgid ""
25687 " ll directory\n"
25688 "\n"
25689 msgstr ""
25690
25691 #. type: =head2
25692 #: ../fish/guestfish-actions.pod:2613
25693 msgid "ln"
25694 msgstr ""
25695
25696 #. type: verbatim
25697 #: ../fish/guestfish-actions.pod:2615
25698 #, no-wrap
25699 msgid ""
25700 " ln target linkname\n"
25701 "\n"
25702 msgstr ""
25703
25704 #. type: =head2
25705 #: ../fish/guestfish-actions.pod:2619
25706 msgid "ln-f"
25707 msgstr ""
25708
25709 #. type: verbatim
25710 #: ../fish/guestfish-actions.pod:2621
25711 #, no-wrap
25712 msgid ""
25713 " ln-f target linkname\n"
25714 "\n"
25715 msgstr ""
25716
25717 #. type: =head2
25718 #: ../fish/guestfish-actions.pod:2626
25719 msgid "ln-s"
25720 msgstr ""
25721
25722 #. type: verbatim
25723 #: ../fish/guestfish-actions.pod:2628
25724 #, no-wrap
25725 msgid ""
25726 " ln-s target linkname\n"
25727 "\n"
25728 msgstr ""
25729
25730 #. type: =head2
25731 #: ../fish/guestfish-actions.pod:2632
25732 msgid "ln-sf"
25733 msgstr ""
25734
25735 #. type: verbatim
25736 #: ../fish/guestfish-actions.pod:2634
25737 #, no-wrap
25738 msgid ""
25739 " ln-sf target linkname\n"
25740 "\n"
25741 msgstr ""
25742
25743 #. type: =head2
25744 #: ../fish/guestfish-actions.pod:2639
25745 msgid "lremovexattr"
25746 msgstr ""
25747
25748 #. type: verbatim
25749 #: ../fish/guestfish-actions.pod:2641
25750 #, no-wrap
25751 msgid ""
25752 " lremovexattr xattr path\n"
25753 "\n"
25754 msgstr ""
25755
25756 #. type: textblock
25757 #: ../fish/guestfish-actions.pod:2643
25758 msgid ""
25759 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then"
25760 " it removes an extended attribute of the link itself."
25761 msgstr ""
25762
25763 #. type: =head2
25764 #: ../fish/guestfish-actions.pod:2647
25765 msgid "ls"
25766 msgstr ""
25767
25768 #. type: verbatim
25769 #: ../fish/guestfish-actions.pod:2649
25770 #, no-wrap
25771 msgid ""
25772 " ls directory\n"
25773 "\n"
25774 msgstr ""
25775
25776 #. type: textblock
25777 #: ../fish/guestfish-actions.pod:2655
25778 msgid ""
25779 "This command is mostly useful for interactive sessions.  Programs should "
25780 "probably use L</readdir> instead."
25781 msgstr ""
25782
25783 #. type: =head2
25784 #: ../fish/guestfish-actions.pod:2658
25785 msgid "lsetxattr"
25786 msgstr ""
25787
25788 #. type: verbatim
25789 #: ../fish/guestfish-actions.pod:2660
25790 #, no-wrap
25791 msgid ""
25792 " lsetxattr xattr val vallen path\n"
25793 "\n"
25794 msgstr ""
25795
25796 #. type: textblock
25797 #: ../fish/guestfish-actions.pod:2662
25798 msgid ""
25799 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it"
25800 " sets an extended attribute of the link itself."
25801 msgstr ""
25802
25803 #. type: =head2
25804 #: ../fish/guestfish-actions.pod:2666
25805 msgid "lstat"
25806 msgstr ""
25807
25808 #. type: verbatim
25809 #: ../fish/guestfish-actions.pod:2668
25810 #, no-wrap
25811 msgid ""
25812 " lstat path\n"
25813 "\n"
25814 msgstr ""
25815
25816 #. type: textblock
25817 #: ../fish/guestfish-actions.pod:2672
25818 msgid ""
25819 "This is the same as L</stat> except that if C<path> is a symbolic link, then"
25820 " the link is stat-ed, not the file it refers to."
25821 msgstr ""
25822
25823 #. type: =head2
25824 #: ../fish/guestfish-actions.pod:2678
25825 msgid "lstatlist"
25826 msgstr ""
25827
25828 #. type: verbatim
25829 #: ../fish/guestfish-actions.pod:2680
25830 #, no-wrap
25831 msgid ""
25832 " lstatlist path 'names ...'\n"
25833 "\n"
25834 msgstr ""
25835
25836 #. type: textblock
25837 #: ../fish/guestfish-actions.pod:2682
25838 msgid ""
25839 "This call allows you to perform the L</lstat> operation on multiple files, "
25840 "where all files are in the directory C<path>.  C<names> is the list of files"
25841 " from this directory."
25842 msgstr ""
25843
25844 #. type: textblock
25845 #: ../fish/guestfish-actions.pod:2691
25846 msgid ""
25847 "This call is intended for programs that want to efficiently list a directory"
25848 " contents without making many round-trips.  See also L</lxattrlist> for a "
25849 "similarly efficient call for getting extended attributes.  Very long "
25850 "directory listings might cause the protocol message size to be exceeded, "
25851 "causing this call to fail.  The caller must split up such requests into "
25852 "smaller groups of names."
25853 msgstr ""
25854
25855 #. type: =head2
25856 #: ../fish/guestfish-actions.pod:2699
25857 msgid "luks-add-key"
25858 msgstr ""
25859
25860 #. type: verbatim
25861 #: ../fish/guestfish-actions.pod:2701
25862 #, no-wrap
25863 msgid ""
25864 " luks-add-key device keyslot\n"
25865 "\n"
25866 msgstr ""
25867
25868 #. type: textblock
25869 #: ../fish/guestfish-actions.pod:2708
25870 msgid ""
25871 "Note that if C<keyslot> already contains a key, then this command will fail."
25872 "  You have to use L</luks-kill-slot> first to remove that key."
25873 msgstr ""
25874
25875 #. type: textblock
25876 #: ../fish/guestfish-actions.pod:2712 ../fish/guestfish-actions.pod:2734
25877 #: ../fish/guestfish-actions.pod:2747 ../fish/guestfish-actions.pod:2761
25878 #: ../fish/guestfish-actions.pod:2787 ../fish/guestfish-actions.pod:2797
25879 msgid ""
25880 "This command has one or more key or passphrase parameters.  Guestfish will "
25881 "prompt for these separately."
25882 msgstr ""
25883
25884 #. type: =head2
25885 #: ../fish/guestfish-actions.pod:2715
25886 msgid "luks-close"
25887 msgstr ""
25888
25889 #. type: verbatim
25890 #: ../fish/guestfish-actions.pod:2717
25891 #, no-wrap
25892 msgid ""
25893 " luks-close device\n"
25894 "\n"
25895 msgstr ""
25896
25897 #. type: textblock
25898 #: ../fish/guestfish-actions.pod:2719
25899 msgid ""
25900 "This closes a LUKS device that was created earlier by L</luks-open> or L"
25901 "</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
25902 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
25903 "underlying block device."
25904 msgstr ""
25905
25906 #. type: =head2
25907 #: ../fish/guestfish-actions.pod:2725
25908 msgid "luks-format"
25909 msgstr ""
25910
25911 #. type: verbatim
25912 #: ../fish/guestfish-actions.pod:2727
25913 #, no-wrap
25914 msgid ""
25915 " luks-format device keyslot\n"
25916 "\n"
25917 msgstr ""
25918
25919 #. type: =head2
25920 #: ../fish/guestfish-actions.pod:2740
25921 msgid "luks-format-cipher"
25922 msgstr ""
25923
25924 #. type: verbatim
25925 #: ../fish/guestfish-actions.pod:2742
25926 #, no-wrap
25927 msgid ""
25928 " luks-format-cipher device keyslot cipher\n"
25929 "\n"
25930 msgstr ""
25931
25932 #. type: textblock
25933 #: ../fish/guestfish-actions.pod:2744
25934 msgid ""
25935 "This command is the same as L</luks-format> but it also allows you to set "
25936 "the C<cipher> used."
25937 msgstr ""
25938
25939 #. type: =head2
25940 #: ../fish/guestfish-actions.pod:2753
25941 msgid "luks-kill-slot"
25942 msgstr ""
25943
25944 #. type: verbatim
25945 #: ../fish/guestfish-actions.pod:2755
25946 #, no-wrap
25947 msgid ""
25948 " luks-kill-slot device keyslot\n"
25949 "\n"
25950 msgstr ""
25951
25952 #. type: =head2
25953 #: ../fish/guestfish-actions.pod:2764
25954 msgid "luks-open"
25955 msgstr ""
25956
25957 #. type: verbatim
25958 #: ../fish/guestfish-actions.pod:2766
25959 #, no-wrap
25960 msgid ""
25961 " luks-open device mapname\n"
25962 "\n"
25963 msgstr ""
25964
25965 #. type: textblock
25966 #: ../fish/guestfish-actions.pod:2780
25967 msgid ""
25968 "If this block device contains LVM volume groups, then calling L</vgscan> "
25969 "followed by L</vg-activate-all> will make them visible."
25970 msgstr ""
25971
25972 #. type: textblock
25973 #: ../fish/guestfish-actions.pod:2784
25974 msgid "Use L</list-dm-devices> to list all device mapper devices."
25975 msgstr ""
25976
25977 #. type: =head2
25978 #: ../fish/guestfish-actions.pod:2790
25979 msgid "luks-open-ro"
25980 msgstr ""
25981
25982 #. type: verbatim
25983 #: ../fish/guestfish-actions.pod:2792
25984 #, no-wrap
25985 msgid ""
25986 " luks-open-ro device mapname\n"
25987 "\n"
25988 msgstr ""
25989
25990 #. type: textblock
25991 #: ../fish/guestfish-actions.pod:2794
25992 msgid ""
25993 "This is the same as L</luks-open> except that a read-only mapping is "
25994 "created."
25995 msgstr ""
25996
25997 #. type: =head2
25998 #: ../fish/guestfish-actions.pod:2800
25999 msgid "lvcreate"
26000 msgstr ""
26001
26002 #. type: verbatim
26003 #: ../fish/guestfish-actions.pod:2802
26004 #, no-wrap
26005 msgid ""
26006 " lvcreate logvol volgroup mbytes\n"
26007 "\n"
26008 msgstr ""
26009
26010 #. type: =head2
26011 #: ../fish/guestfish-actions.pod:2807
26012 msgid "lvm-canonical-lv-name"
26013 msgstr ""
26014
26015 #. type: verbatim
26016 #: ../fish/guestfish-actions.pod:2809
26017 #, no-wrap
26018 msgid ""
26019 " lvm-canonical-lv-name lvname\n"
26020 "\n"
26021 msgstr ""
26022
26023 #. type: textblock
26024 #: ../fish/guestfish-actions.pod:2818
26025 msgid "See also L</is-lv>."
26026 msgstr ""
26027
26028 #. type: =head2
26029 #: ../fish/guestfish-actions.pod:2820
26030 msgid "lvm-clear-filter"
26031 msgstr ""
26032
26033 #. type: verbatim
26034 #: ../fish/guestfish-actions.pod:2822
26035 #, no-wrap
26036 msgid ""
26037 " lvm-clear-filter\n"
26038 "\n"
26039 msgstr ""
26040
26041 #. type: textblock
26042 #: ../fish/guestfish-actions.pod:2824
26043 msgid ""
26044 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every"
26045 " block device."
26046 msgstr ""
26047
26048 #. type: =head2
26049 #: ../fish/guestfish-actions.pod:2830
26050 msgid "lvm-remove-all"
26051 msgstr ""
26052
26053 #. type: verbatim
26054 #: ../fish/guestfish-actions.pod:2832
26055 #, no-wrap
26056 msgid ""
26057 " lvm-remove-all\n"
26058 "\n"
26059 msgstr ""
26060
26061 #. type: =head2
26062 #: ../fish/guestfish-actions.pod:2840
26063 msgid "lvm-set-filter"
26064 msgstr ""
26065
26066 #. type: verbatim
26067 #: ../fish/guestfish-actions.pod:2842
26068 #, no-wrap
26069 msgid ""
26070 " lvm-set-filter 'devices ...'\n"
26071 "\n"
26072 msgstr ""
26073
26074 #. type: =head2
26075 #: ../fish/guestfish-actions.pod:2867
26076 msgid "lvremove"
26077 msgstr ""
26078
26079 #. type: verbatim
26080 #: ../fish/guestfish-actions.pod:2869
26081 #, no-wrap
26082 msgid ""
26083 " lvremove device\n"
26084 "\n"
26085 msgstr ""
26086
26087 #. type: =head2
26088 #: ../fish/guestfish-actions.pod:2877
26089 msgid "lvrename"
26090 msgstr ""
26091
26092 #. type: verbatim
26093 #: ../fish/guestfish-actions.pod:2879
26094 #, no-wrap
26095 msgid ""
26096 " lvrename logvol newlogvol\n"
26097 "\n"
26098 msgstr ""
26099
26100 #. type: =head2
26101 #: ../fish/guestfish-actions.pod:2883
26102 msgid "lvresize"
26103 msgstr ""
26104
26105 #. type: verbatim
26106 #: ../fish/guestfish-actions.pod:2885
26107 #, no-wrap
26108 msgid ""
26109 " lvresize device mbytes\n"
26110 "\n"
26111 msgstr ""
26112
26113 #. type: =head2
26114 #: ../fish/guestfish-actions.pod:2891
26115 msgid "lvresize-free"
26116 msgstr ""
26117
26118 #. type: verbatim
26119 #: ../fish/guestfish-actions.pod:2893
26120 #, no-wrap
26121 msgid ""
26122 " lvresize-free lv percent\n"
26123 "\n"
26124 msgstr ""
26125
26126 #. type: =head2
26127 #: ../fish/guestfish-actions.pod:2901
26128 msgid "lvs"
26129 msgstr ""
26130
26131 #. type: verbatim
26132 #: ../fish/guestfish-actions.pod:2903
26133 #, no-wrap
26134 msgid ""
26135 " lvs\n"
26136 "\n"
26137 msgstr ""
26138
26139 #. type: textblock
26140 #: ../fish/guestfish-actions.pod:2911
26141 msgid "See also L</lvs-full>, L</list-filesystems>."
26142 msgstr ""
26143
26144 #. type: =head2
26145 #: ../fish/guestfish-actions.pod:2913
26146 msgid "lvs-full"
26147 msgstr ""
26148
26149 #. type: verbatim
26150 #: ../fish/guestfish-actions.pod:2915
26151 #, no-wrap
26152 msgid ""
26153 " lvs-full\n"
26154 "\n"
26155 msgstr ""
26156
26157 #. type: =head2
26158 #: ../fish/guestfish-actions.pod:2920
26159 msgid "lvuuid"
26160 msgstr ""
26161
26162 #. type: verbatim
26163 #: ../fish/guestfish-actions.pod:2922
26164 #, no-wrap
26165 msgid ""
26166 " lvuuid device\n"
26167 "\n"
26168 msgstr ""
26169
26170 #. type: =head2
26171 #: ../fish/guestfish-actions.pod:2926
26172 msgid "lxattrlist"
26173 msgstr ""
26174
26175 #. type: verbatim
26176 #: ../fish/guestfish-actions.pod:2928
26177 #, no-wrap
26178 msgid ""
26179 " lxattrlist path 'names ...'\n"
26180 "\n"
26181 msgstr ""
26182
26183 #. type: textblock
26184 #: ../fish/guestfish-actions.pod:2944
26185 msgid ""
26186 "This call is intended for programs that want to efficiently list a directory"
26187 " contents without making many round-trips.  See also L</lstatlist> for a "
26188 "similarly efficient call for getting standard stats.  Very long directory "
26189 "listings might cause the protocol message size to be exceeded, causing this "
26190 "call to fail.  The caller must split up such requests into smaller groups of"
26191 " names."
26192 msgstr ""
26193
26194 #. type: =head2
26195 #: ../fish/guestfish-actions.pod:2952
26196 msgid "mkdir"
26197 msgstr ""
26198
26199 #. type: verbatim
26200 #: ../fish/guestfish-actions.pod:2954
26201 #, no-wrap
26202 msgid ""
26203 " mkdir path\n"
26204 "\n"
26205 msgstr ""
26206
26207 #. type: =head2
26208 #: ../fish/guestfish-actions.pod:2958
26209 msgid "mkdir-mode"
26210 msgstr ""
26211
26212 #. type: verbatim
26213 #: ../fish/guestfish-actions.pod:2960
26214 #, no-wrap
26215 msgid ""
26216 " mkdir-mode path mode\n"
26217 "\n"
26218 msgstr ""
26219
26220 #. type: textblock
26221 #: ../fish/guestfish-actions.pod:2969
26222 msgid "See also L</mkdir>, L</umask>"
26223 msgstr ""
26224
26225 #. type: =head2
26226 #: ../fish/guestfish-actions.pod:2971
26227 msgid "mkdir-p"
26228 msgstr ""
26229
26230 #. type: verbatim
26231 #: ../fish/guestfish-actions.pod:2973
26232 #, no-wrap
26233 msgid ""
26234 " mkdir-p path\n"
26235 "\n"
26236 msgstr ""
26237
26238 #. type: =head2
26239 #: ../fish/guestfish-actions.pod:2978
26240 msgid "mkdtemp"
26241 msgstr ""
26242
26243 #. type: verbatim
26244 #: ../fish/guestfish-actions.pod:2980
26245 #, no-wrap
26246 msgid ""
26247 " mkdtemp template\n"
26248 "\n"
26249 msgstr ""
26250
26251 #. type: =head2
26252 #: ../fish/guestfish-actions.pod:3001
26253 msgid "mke2fs-J"
26254 msgstr ""
26255
26256 #. type: verbatim
26257 #: ../fish/guestfish-actions.pod:3003
26258 #, no-wrap
26259 msgid ""
26260 " mke2fs-J fstype blocksize device journal\n"
26261 "\n"
26262 msgstr ""
26263
26264 #. type: textblock
26265 #: ../fish/guestfish-actions.pod:3011
26266 msgid "See also L</mke2journal>."
26267 msgstr ""
26268
26269 #. type: =head2
26270 #: ../fish/guestfish-actions.pod:3013
26271 msgid "mke2fs-JL"
26272 msgstr ""
26273
26274 #. type: verbatim
26275 #: ../fish/guestfish-actions.pod:3015
26276 #, no-wrap
26277 msgid ""
26278 " mke2fs-JL fstype blocksize device label\n"
26279 "\n"
26280 msgstr ""
26281
26282 #. type: textblock
26283 #: ../fish/guestfish-actions.pod:3020
26284 msgid "See also L</mke2journal-L>."
26285 msgstr ""
26286
26287 #. type: =head2
26288 #: ../fish/guestfish-actions.pod:3022
26289 msgid "mke2fs-JU"
26290 msgstr ""
26291
26292 #. type: verbatim
26293 #: ../fish/guestfish-actions.pod:3024
26294 #, no-wrap
26295 msgid ""
26296 " mke2fs-JU fstype blocksize device uuid\n"
26297 "\n"
26298 msgstr ""
26299
26300 #. type: textblock
26301 #: ../fish/guestfish-actions.pod:3029
26302 msgid "See also L</mke2journal-U>."
26303 msgstr ""
26304
26305 #. type: =head2
26306 #: ../fish/guestfish-actions.pod:3031
26307 msgid "mke2journal"
26308 msgstr ""
26309
26310 #. type: verbatim
26311 #: ../fish/guestfish-actions.pod:3033
26312 #, no-wrap
26313 msgid ""
26314 " mke2journal blocksize device\n"
26315 "\n"
26316 msgstr ""
26317
26318 #. type: =head2
26319 #: ../fish/guestfish-actions.pod:3040
26320 msgid "mke2journal-L"
26321 msgstr ""
26322
26323 #. type: verbatim
26324 #: ../fish/guestfish-actions.pod:3042
26325 #, no-wrap
26326 msgid ""
26327 " mke2journal-L blocksize label device\n"
26328 "\n"
26329 msgstr ""
26330
26331 #. type: =head2
26332 #: ../fish/guestfish-actions.pod:3046
26333 msgid "mke2journal-U"
26334 msgstr ""
26335
26336 #. type: verbatim
26337 #: ../fish/guestfish-actions.pod:3048
26338 #, no-wrap
26339 msgid ""
26340 " mke2journal-U blocksize uuid device\n"
26341 "\n"
26342 msgstr ""
26343
26344 #. type: =head2
26345 #: ../fish/guestfish-actions.pod:3052
26346 msgid "mkfifo"
26347 msgstr ""
26348
26349 #. type: verbatim
26350 #: ../fish/guestfish-actions.pod:3054
26351 #, no-wrap
26352 msgid ""
26353 " mkfifo mode path\n"
26354 "\n"
26355 msgstr ""
26356
26357 #. type: textblock
26358 #: ../fish/guestfish-actions.pod:3056
26359 msgid ""
26360 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
26361 "is just a convenient wrapper around L</mknod>."
26362 msgstr ""
26363
26364 #. type: =head2
26365 #: ../fish/guestfish-actions.pod:3062
26366 msgid "mkfs"
26367 msgstr ""
26368
26369 #. type: verbatim
26370 #: ../fish/guestfish-actions.pod:3064
26371 #, no-wrap
26372 msgid ""
26373 " mkfs fstype device\n"
26374 "\n"
26375 msgstr ""
26376
26377 #. type: =head2
26378 #: ../fish/guestfish-actions.pod:3070
26379 msgid "mkfs-b"
26380 msgstr ""
26381
26382 #. type: verbatim
26383 #: ../fish/guestfish-actions.pod:3072
26384 #, no-wrap
26385 msgid ""
26386 " mkfs-b fstype blocksize device\n"
26387 "\n"
26388 msgstr ""
26389
26390 #. type: textblock
26391 #: ../fish/guestfish-actions.pod:3074
26392 msgid ""
26393 "This call is similar to L</mkfs>, but it allows you to control the block "
26394 "size of the resulting filesystem.  Supported block sizes depend on the "
26395 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
26396 msgstr ""
26397
26398 #. type: =head2
26399 #: ../fish/guestfish-actions.pod:3089
26400 msgid "mkfs-opts"
26401 msgstr ""
26402
26403 #. type: verbatim
26404 #: ../fish/guestfish-actions.pod:3091
26405 #, no-wrap
26406 msgid ""
26407 " mkfs-opts fstype device [blocksize:..] [features:..] [inode:..] [sectorsize:..]\n"
26408 "\n"
26409 msgstr ""
26410
26411 #. type: =head2
26412 #: ../fish/guestfish-actions.pod:3136
26413 msgid "mkmountpoint"
26414 msgstr ""
26415
26416 #. type: verbatim
26417 #: ../fish/guestfish-actions.pod:3138
26418 #, no-wrap
26419 msgid ""
26420 " mkmountpoint exemptpath\n"
26421 "\n"
26422 msgstr ""
26423
26424 #. type: textblock
26425 #: ../fish/guestfish-actions.pod:3140
26426 msgid ""
26427 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used"
26428 " to create extra mountpoints before mounting the first filesystem."
26429 msgstr ""
26430
26431 #. type: textblock
26432 #: ../fish/guestfish-actions.pod:3164
26433 msgid ""
26434 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
26435 "unexpected errors if you try to mix these calls.  It is safest to manually "
26436 "unmount filesystems and remove mountpoints after use."
26437 msgstr ""
26438
26439 #. type: textblock
26440 #: ../fish/guestfish-actions.pod:3168
26441 msgid ""
26442 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
26443 "for this to work for manual mountpoints, you must ensure that the innermost "
26444 "mountpoints have the longest pathnames, as in the example code above."
26445 msgstr ""
26446
26447 #. type: textblock
26448 #: ../fish/guestfish-actions.pod:3175
26449 msgid ""
26450 "Autosync [see L</set-autosync>, this is set by default on handles] can cause"
26451 " L</umount-all> to be called when the handle is closed which can also "
26452 "trigger these issues."
26453 msgstr ""
26454
26455 #. type: =head2
26456 #: ../fish/guestfish-actions.pod:3179
26457 msgid "mknod"
26458 msgstr ""
26459
26460 #. type: verbatim
26461 #: ../fish/guestfish-actions.pod:3181
26462 #, no-wrap
26463 msgid ""
26464 " mknod mode devmajor devminor path\n"
26465 "\n"
26466 msgstr ""
26467
26468 #. type: textblock
26469 #: ../fish/guestfish-actions.pod:3191
26470 msgid ""
26471 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
26472 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
26473 "regular file).  These constants are available in the standard Linux header "
26474 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
26475 "wrappers around this command which bitwise OR in the appropriate constant "
26476 "for you."
26477 msgstr ""
26478
26479 #. type: =head2
26480 #: ../fish/guestfish-actions.pod:3201
26481 msgid "mknod-b"
26482 msgstr ""
26483
26484 #. type: verbatim
26485 #: ../fish/guestfish-actions.pod:3203
26486 #, no-wrap
26487 msgid ""
26488 " mknod-b mode devmajor devminor path\n"
26489 "\n"
26490 msgstr ""
26491
26492 #. type: textblock
26493 #: ../fish/guestfish-actions.pod:3205
26494 msgid ""
26495 "This call creates a block device node called C<path> with mode C<mode> and "
26496 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26497 "wrapper around L</mknod>."
26498 msgstr ""
26499
26500 #. type: =head2
26501 #: ../fish/guestfish-actions.pod:3211
26502 msgid "mknod-c"
26503 msgstr ""
26504
26505 #. type: verbatim
26506 #: ../fish/guestfish-actions.pod:3213
26507 #, no-wrap
26508 msgid ""
26509 " mknod-c mode devmajor devminor path\n"
26510 "\n"
26511 msgstr ""
26512
26513 #. type: textblock
26514 #: ../fish/guestfish-actions.pod:3215
26515 msgid ""
26516 "This call creates a char device node called C<path> with mode C<mode> and "
26517 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26518 "wrapper around L</mknod>."
26519 msgstr ""
26520
26521 #. type: =head2
26522 #: ../fish/guestfish-actions.pod:3221
26523 msgid "mkswap"
26524 msgstr ""
26525
26526 #. type: verbatim
26527 #: ../fish/guestfish-actions.pod:3223
26528 #, no-wrap
26529 msgid ""
26530 " mkswap device\n"
26531 "\n"
26532 msgstr ""
26533
26534 #. type: =head2
26535 #: ../fish/guestfish-actions.pod:3227
26536 msgid "mkswap-L"
26537 msgstr ""
26538
26539 #. type: verbatim
26540 #: ../fish/guestfish-actions.pod:3229
26541 #, no-wrap
26542 msgid ""
26543 " mkswap-L label device\n"
26544 "\n"
26545 msgstr ""
26546
26547 #. type: =head2
26548 #: ../fish/guestfish-actions.pod:3237
26549 msgid "mkswap-U"
26550 msgstr ""
26551
26552 #. type: verbatim
26553 #: ../fish/guestfish-actions.pod:3239
26554 #, no-wrap
26555 msgid ""
26556 " mkswap-U uuid device\n"
26557 "\n"
26558 msgstr ""
26559
26560 #. type: =head2
26561 #: ../fish/guestfish-actions.pod:3243
26562 msgid "mkswap-file"
26563 msgstr ""
26564
26565 #. type: verbatim
26566 #: ../fish/guestfish-actions.pod:3245
26567 #, no-wrap
26568 msgid ""
26569 " mkswap-file path\n"
26570 "\n"
26571 msgstr ""
26572
26573 #. type: textblock
26574 #: ../fish/guestfish-actions.pod:3249
26575 msgid ""
26576 "This command just writes a swap file signature to an existing file.  To "
26577 "create the file itself, use something like L</fallocate>."
26578 msgstr ""
26579
26580 #. type: =head2
26581 #: ../fish/guestfish-actions.pod:3252
26582 msgid "modprobe"
26583 msgstr ""
26584
26585 #. type: verbatim
26586 #: ../fish/guestfish-actions.pod:3254
26587 #, no-wrap
26588 msgid ""
26589 " modprobe modulename\n"
26590 "\n"
26591 msgstr ""
26592
26593 #. type: =head2
26594 #: ../fish/guestfish-actions.pod:3261
26595 msgid "mount"
26596 msgstr ""
26597
26598 #. type: verbatim
26599 #: ../fish/guestfish-actions.pod:3263
26600 #, no-wrap
26601 msgid ""
26602 " mount device mountpoint\n"
26603 "\n"
26604 msgstr ""
26605
26606 #. type: textblock
26607 #: ../fish/guestfish-actions.pod:3279
26608 msgid ""
26609 "B<Important note:> When you use this call, the filesystem options C<sync> "
26610 "and C<noatime> are set implicitly.  This was originally done because we "
26611 "thought it would improve reliability, but it turns out that I<-o sync> has a"
26612 " very large negative performance impact and negligible effect on "
26613 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
26614 "code that needs performance, and instead use L</mount-options> (use an empty"
26615 " string for the first parameter if you don't want any options)."
26616 msgstr ""
26617
26618 #. type: =head2
26619 #: ../fish/guestfish-actions.pod:3296
26620 msgid "mount-9p"
26621 msgstr ""
26622
26623 #. type: verbatim
26624 #: ../fish/guestfish-actions.pod:3298
26625 #, no-wrap
26626 msgid ""
26627 " mount-9p mounttag mountpoint [options:..]\n"
26628 "\n"
26629 msgstr ""
26630
26631 #. type: =head2
26632 #: ../fish/guestfish-actions.pod:3309
26633 msgid "mount-loop"
26634 msgstr ""
26635
26636 #. type: verbatim
26637 #: ../fish/guestfish-actions.pod:3311
26638 #, no-wrap
26639 msgid ""
26640 " mount-loop file mountpoint\n"
26641 "\n"
26642 msgstr ""
26643
26644 #. type: =head2
26645 #: ../fish/guestfish-actions.pod:3317
26646 msgid "mount-options"
26647 msgstr ""
26648
26649 #. type: verbatim
26650 #: ../fish/guestfish-actions.pod:3319
26651 #, no-wrap
26652 msgid ""
26653 " mount-options options device mountpoint\n"
26654 "\n"
26655 msgstr ""
26656
26657 #. type: textblock
26658 #: ../fish/guestfish-actions.pod:3321
26659 msgid ""
26660 "This is the same as the L</mount> command, but it allows you to set the "
26661 "mount options as for the L<mount(8)> I<-o> flag."
26662 msgstr ""
26663
26664 #. type: =head2
26665 #: ../fish/guestfish-actions.pod:3329
26666 msgid "mount-ro"
26667 msgstr ""
26668
26669 #. type: verbatim
26670 #: ../fish/guestfish-actions.pod:3331
26671 #, no-wrap
26672 msgid ""
26673 " mount-ro device mountpoint\n"
26674 "\n"
26675 msgstr ""
26676
26677 #. type: textblock
26678 #: ../fish/guestfish-actions.pod:3333
26679 msgid ""
26680 "This is the same as the L</mount> command, but it mounts the filesystem with"
26681 " the read-only (I<-o ro>) flag."
26682 msgstr ""
26683
26684 #. type: =head2
26685 #: ../fish/guestfish-actions.pod:3336
26686 msgid "mount-vfs"
26687 msgstr ""
26688
26689 #. type: verbatim
26690 #: ../fish/guestfish-actions.pod:3338
26691 #, no-wrap
26692 msgid ""
26693 " mount-vfs options vfstype device mountpoint\n"
26694 "\n"
26695 msgstr ""
26696
26697 #. type: textblock
26698 #: ../fish/guestfish-actions.pod:3340
26699 msgid ""
26700 "This is the same as the L</mount> command, but it allows you to set both the"
26701 " mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
26702 msgstr ""
26703
26704 #. type: =head2
26705 #: ../fish/guestfish-actions.pod:3344
26706 msgid "mountpoints"
26707 msgstr ""
26708
26709 #. type: verbatim
26710 #: ../fish/guestfish-actions.pod:3346
26711 #, no-wrap
26712 msgid ""
26713 " mountpoints\n"
26714 "\n"
26715 msgstr ""
26716
26717 #. type: textblock
26718 #: ../fish/guestfish-actions.pod:3348
26719 msgid ""
26720 "This call is similar to L</mounts>.  That call returns a list of devices.  "
26721 "This one returns a hash table (map) of device name to directory where the "
26722 "device is mounted."
26723 msgstr ""
26724
26725 #. type: =head2
26726 #: ../fish/guestfish-actions.pod:3352
26727 msgid "mounts"
26728 msgstr ""
26729
26730 #. type: verbatim
26731 #: ../fish/guestfish-actions.pod:3354
26732 #, no-wrap
26733 msgid ""
26734 " mounts\n"
26735 "\n"
26736 msgstr ""
26737
26738 #. type: textblock
26739 #: ../fish/guestfish-actions.pod:3361
26740 msgid "See also: L</mountpoints>"
26741 msgstr ""
26742
26743 #. type: =head2
26744 #: ../fish/guestfish-actions.pod:3363
26745 msgid "mv"
26746 msgstr ""
26747
26748 #. type: verbatim
26749 #: ../fish/guestfish-actions.pod:3365
26750 #, no-wrap
26751 msgid ""
26752 " mv src dest\n"
26753 "\n"
26754 msgstr ""
26755
26756 #. type: =head2
26757 #: ../fish/guestfish-actions.pod:3370
26758 msgid "ntfs-3g-probe"
26759 msgstr ""
26760
26761 #. type: verbatim
26762 #: ../fish/guestfish-actions.pod:3372
26763 #, no-wrap
26764 msgid ""
26765 " ntfs-3g-probe true|false device\n"
26766 "\n"
26767 msgstr ""
26768
26769 #. type: =head2
26770 #: ../fish/guestfish-actions.pod:3386
26771 msgid "ntfsresize"
26772 msgstr ""
26773
26774 #. type: verbatim
26775 #: ../fish/guestfish-actions.pod:3388
26776 #, no-wrap
26777 msgid ""
26778 " ntfsresize device\n"
26779 "\n"
26780 msgstr ""
26781
26782 #. type: =head2
26783 #: ../fish/guestfish-actions.pod:3410
26784 msgid "ntfsresize-opts"
26785 msgstr ""
26786
26787 #. type: verbatim
26788 #: ../fish/guestfish-actions.pod:3412
26789 #, no-wrap
26790 msgid ""
26791 " ntfsresize-opts device [size:..] [force:..]\n"
26792 "\n"
26793 msgstr ""
26794
26795 #. type: textblock
26796 #: ../fish/guestfish-actions.pod:3431
26797 msgid ""
26798 "After the resize operation, the filesystem is always marked as requiring a "
26799 "consistency check (for safety).  You have to boot into Windows to perform "
26800 "this check and clear this condition.  If you I<don't> set the C<force> "
26801 "option then it is not possible to call L</ntfsresize-opts> multiple times on"
26802 " a single filesystem without booting into Windows between each resize."
26803 msgstr ""
26804
26805 #. type: =head2
26806 #: ../fish/guestfish-actions.pod:3444
26807 msgid "ntfsresize-size"
26808 msgstr ""
26809
26810 #. type: verbatim
26811 #: ../fish/guestfish-actions.pod:3446
26812 #, no-wrap
26813 msgid ""
26814 " ntfsresize-size device size\n"
26815 "\n"
26816 msgstr ""
26817
26818 #. type: textblock
26819 #: ../fish/guestfish-actions.pod:3448
26820 msgid ""
26821 "This command is the same as L</ntfsresize> except that it allows you to "
26822 "specify the new size (in bytes) explicitly."
26823 msgstr ""
26824
26825 #. type: =head2
26826 #: ../fish/guestfish-actions.pod:3458
26827 msgid "part-add"
26828 msgstr ""
26829
26830 #. type: verbatim
26831 #: ../fish/guestfish-actions.pod:3460
26832 #, no-wrap
26833 msgid ""
26834 " part-add device prlogex startsect endsect\n"
26835 "\n"
26836 msgstr ""
26837
26838 #. type: textblock
26839 #: ../fish/guestfish-actions.pod:3462
26840 msgid ""
26841 "This command adds a partition to C<device>.  If there is no partition table "
26842 "on the device, call L</part-init> first."
26843 msgstr ""
26844
26845 #. type: textblock
26846 #: ../fish/guestfish-actions.pod:3474
26847 msgid ""
26848 "Creating a partition which covers the whole disk is not so easy.  Use L"
26849 "</part-disk> to do that."
26850 msgstr ""
26851
26852 #. type: =head2
26853 #: ../fish/guestfish-actions.pod:3477
26854 msgid "part-del"
26855 msgstr ""
26856
26857 #. type: verbatim
26858 #: ../fish/guestfish-actions.pod:3479
26859 #, no-wrap
26860 msgid ""
26861 " part-del device partnum\n"
26862 "\n"
26863 msgstr ""
26864
26865 #. type: =head2
26866 #: ../fish/guestfish-actions.pod:3487
26867 msgid "part-disk"
26868 msgstr ""
26869
26870 #. type: verbatim
26871 #: ../fish/guestfish-actions.pod:3489
26872 #, no-wrap
26873 msgid ""
26874 " part-disk device parttype\n"
26875 "\n"
26876 msgstr ""
26877
26878 #. type: textblock
26879 #: ../fish/guestfish-actions.pod:3491
26880 msgid ""
26881 "This command is simply a combination of L</part-init> followed by L</part-"
26882 "add> to create a single primary partition covering the whole disk."
26883 msgstr ""
26884
26885 #. type: textblock
26886 #: ../fish/guestfish-actions.pod:3495
26887 msgid ""
26888 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other"
26889 " possible values are described in L</part-init>."
26890 msgstr ""
26891
26892 #. type: =head2
26893 #: ../fish/guestfish-actions.pod:3501
26894 msgid "part-get-bootable"
26895 msgstr ""
26896
26897 #. type: verbatim
26898 #: ../fish/guestfish-actions.pod:3503
26899 #, no-wrap
26900 msgid ""
26901 " part-get-bootable device partnum\n"
26902 "\n"
26903 msgstr ""
26904
26905 #. type: textblock
26906 #: ../fish/guestfish-actions.pod:3508
26907 msgid "See also L</part-set-bootable>."
26908 msgstr ""
26909
26910 #. type: =head2
26911 #: ../fish/guestfish-actions.pod:3510
26912 msgid "part-get-mbr-id"
26913 msgstr ""
26914
26915 #. type: verbatim
26916 #: ../fish/guestfish-actions.pod:3512
26917 #, no-wrap
26918 msgid ""
26919 " part-get-mbr-id device partnum\n"
26920 "\n"
26921 msgstr ""
26922
26923 #. type: textblock
26924 #: ../fish/guestfish-actions.pod:3517 ../fish/guestfish-actions.pod:3655
26925 msgid ""
26926 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get"
26927 " undefined results for other partition table types (see L</part-get-"
26928 "parttype>)."
26929 msgstr ""
26930
26931 #. type: =head2
26932 #: ../fish/guestfish-actions.pod:3521
26933 msgid "part-get-parttype"
26934 msgstr ""
26935
26936 #. type: verbatim
26937 #: ../fish/guestfish-actions.pod:3523
26938 #, no-wrap
26939 msgid ""
26940 " part-get-parttype device\n"
26941 "\n"
26942 msgstr ""
26943
26944 #. type: textblock
26945 #: ../fish/guestfish-actions.pod:3528
26946 msgid ""
26947 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
26948 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
26949 "possible, although unusual.  See L</part-init> for a full list."
26950 msgstr ""
26951
26952 #. type: =head2
26953 #: ../fish/guestfish-actions.pod:3533
26954 msgid "part-init"
26955 msgstr ""
26956
26957 #. type: verbatim
26958 #: ../fish/guestfish-actions.pod:3535
26959 #, no-wrap
26960 msgid ""
26961 " part-init device parttype\n"
26962 "\n"
26963 msgstr ""
26964
26965 #. type: textblock
26966 #: ../fish/guestfish-actions.pod:3541
26967 msgid ""
26968 "Initially there are no partitions.  Following this, you should call L</part-"
26969 "add> for each partition required."
26970 msgstr ""
26971
26972 #. type: =head2
26973 #: ../fish/guestfish-actions.pod:3604
26974 msgid "part-list"
26975 msgstr ""
26976
26977 #. type: verbatim
26978 #: ../fish/guestfish-actions.pod:3606
26979 #, no-wrap
26980 msgid ""
26981 " part-list device\n"
26982 "\n"
26983 msgstr ""
26984
26985 #. type: textblock
26986 #: ../fish/guestfish-actions.pod:3621
26987 msgid ""
26988 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
26989 "the device's sector size, see L</blockdev-getss>."
26990 msgstr ""
26991
26992 #. type: =head2
26993 #: ../fish/guestfish-actions.pod:3634
26994 msgid "part-set-bootable"
26995 msgstr ""
26996
26997 #. type: verbatim
26998 #: ../fish/guestfish-actions.pod:3636
26999 #, no-wrap
27000 msgid ""
27001 " part-set-bootable device partnum true|false\n"
27002 "\n"
27003 msgstr ""
27004
27005 #. type: =head2
27006 #: ../fish/guestfish-actions.pod:3645
27007 msgid "part-set-mbr-id"
27008 msgstr ""
27009
27010 #. type: verbatim
27011 #: ../fish/guestfish-actions.pod:3647
27012 #, no-wrap
27013 msgid ""
27014 " part-set-mbr-id device partnum idbyte\n"
27015 "\n"
27016 msgstr ""
27017
27018 #. type: =head2
27019 #: ../fish/guestfish-actions.pod:3659
27020 msgid "part-set-name"
27021 msgstr ""
27022
27023 #. type: verbatim
27024 #: ../fish/guestfish-actions.pod:3661
27025 #, no-wrap
27026 msgid ""
27027 " part-set-name device partnum name\n"
27028 "\n"
27029 msgstr ""
27030
27031 #. type: =head2
27032 #: ../fish/guestfish-actions.pod:3669
27033 msgid "part-to-dev"
27034 msgstr ""
27035
27036 #. type: verbatim
27037 #: ../fish/guestfish-actions.pod:3671
27038 #, no-wrap
27039 msgid ""
27040 " part-to-dev partition\n"
27041 "\n"
27042 msgstr ""
27043
27044 #. type: textblock
27045 #: ../fish/guestfish-actions.pod:3677
27046 msgid ""
27047 "The named partition must exist, for example as a string returned from L"
27048 "</list-partitions>."
27049 msgstr ""
27050
27051 #. type: =head2
27052 #: ../fish/guestfish-actions.pod:3680
27053 msgid "ping-daemon"
27054 msgstr ""
27055
27056 #. type: verbatim
27057 #: ../fish/guestfish-actions.pod:3682
27058 #, no-wrap
27059 msgid ""
27060 " ping-daemon\n"
27061 "\n"
27062 msgstr ""
27063
27064 #. type: =head2
27065 #: ../fish/guestfish-actions.pod:3689
27066 msgid "pread"
27067 msgstr ""
27068
27069 #. type: verbatim
27070 #: ../fish/guestfish-actions.pod:3691
27071 #, no-wrap
27072 msgid ""
27073 " pread path count offset\n"
27074 "\n"
27075 msgstr ""
27076
27077 #. type: textblock
27078 #: ../fish/guestfish-actions.pod:3699
27079 msgid "See also L</pwrite>, L</pread-device>."
27080 msgstr ""
27081
27082 #. type: =head2
27083 #: ../fish/guestfish-actions.pod:3704
27084 msgid "pread-device"
27085 msgstr ""
27086
27087 #. type: verbatim
27088 #: ../fish/guestfish-actions.pod:3706
27089 #, no-wrap
27090 msgid ""
27091 " pread-device device count offset\n"
27092 "\n"
27093 msgstr ""
27094
27095 #. type: textblock
27096 #: ../fish/guestfish-actions.pod:3714
27097 msgid "See also L</pread>."
27098 msgstr ""
27099
27100 #. type: =head2
27101 #: ../fish/guestfish-actions.pod:3719
27102 msgid "pvcreate"
27103 msgstr ""
27104
27105 #. type: verbatim
27106 #: ../fish/guestfish-actions.pod:3721
27107 #, no-wrap
27108 msgid ""
27109 " pvcreate device\n"
27110 "\n"
27111 msgstr ""
27112
27113 #. type: =head2
27114 #: ../fish/guestfish-actions.pod:3727
27115 msgid "pvremove"
27116 msgstr ""
27117
27118 #. type: verbatim
27119 #: ../fish/guestfish-actions.pod:3729
27120 #, no-wrap
27121 msgid ""
27122 " pvremove device\n"
27123 "\n"
27124 msgstr ""
27125
27126 #. type: =head2
27127 #: ../fish/guestfish-actions.pod:3738
27128 msgid "pvresize"
27129 msgstr ""
27130
27131 #. type: verbatim
27132 #: ../fish/guestfish-actions.pod:3740
27133 #, no-wrap
27134 msgid ""
27135 " pvresize device\n"
27136 "\n"
27137 msgstr ""
27138
27139 #. type: =head2
27140 #: ../fish/guestfish-actions.pod:3745
27141 msgid "pvresize-size"
27142 msgstr ""
27143
27144 #. type: verbatim
27145 #: ../fish/guestfish-actions.pod:3747
27146 #, no-wrap
27147 msgid ""
27148 " pvresize-size device size\n"
27149 "\n"
27150 msgstr ""
27151
27152 #. type: textblock
27153 #: ../fish/guestfish-actions.pod:3749
27154 msgid ""
27155 "This command is the same as L</pvresize> except that it allows you to "
27156 "specify the new size (in bytes) explicitly."
27157 msgstr ""
27158
27159 #. type: =head2
27160 #: ../fish/guestfish-actions.pod:3752
27161 msgid "pvs"
27162 msgstr ""
27163
27164 #. type: verbatim
27165 #: ../fish/guestfish-actions.pod:3754
27166 #, no-wrap
27167 msgid ""
27168 " pvs\n"
27169 "\n"
27170 msgstr ""
27171
27172 #. type: textblock
27173 #: ../fish/guestfish-actions.pod:3762
27174 msgid "See also L</pvs-full>."
27175 msgstr ""
27176
27177 #. type: =head2
27178 #: ../fish/guestfish-actions.pod:3764
27179 msgid "pvs-full"
27180 msgstr ""
27181
27182 #. type: verbatim
27183 #: ../fish/guestfish-actions.pod:3766
27184 #, no-wrap
27185 msgid ""
27186 " pvs-full\n"
27187 "\n"
27188 msgstr ""
27189
27190 #. type: =head2
27191 #: ../fish/guestfish-actions.pod:3771
27192 msgid "pvuuid"
27193 msgstr ""
27194
27195 #. type: verbatim
27196 #: ../fish/guestfish-actions.pod:3773
27197 #, no-wrap
27198 msgid ""
27199 " pvuuid device\n"
27200 "\n"
27201 msgstr ""
27202
27203 #. type: =head2
27204 #: ../fish/guestfish-actions.pod:3777
27205 msgid "pwrite"
27206 msgstr ""
27207
27208 #. type: verbatim
27209 #: ../fish/guestfish-actions.pod:3779
27210 #, no-wrap
27211 msgid ""
27212 " pwrite path content offset\n"
27213 "\n"
27214 msgstr ""
27215
27216 #. type: textblock
27217 #: ../fish/guestfish-actions.pod:3790
27218 msgid "See also L</pread>, L</pwrite-device>."
27219 msgstr ""
27220
27221 #. type: =head2
27222 #: ../fish/guestfish-actions.pod:3795
27223 msgid "pwrite-device"
27224 msgstr ""
27225
27226 #. type: verbatim
27227 #: ../fish/guestfish-actions.pod:3797
27228 #, no-wrap
27229 msgid ""
27230 " pwrite-device device content offset\n"
27231 "\n"
27232 msgstr ""
27233
27234 #. type: textblock
27235 #: ../fish/guestfish-actions.pod:3807
27236 msgid "See also L</pwrite>."
27237 msgstr ""
27238
27239 #. type: =head2
27240 #: ../fish/guestfish-actions.pod:3812
27241 msgid "read-file"
27242 msgstr ""
27243
27244 #. type: verbatim
27245 #: ../fish/guestfish-actions.pod:3814
27246 #, no-wrap
27247 msgid ""
27248 " read-file path\n"
27249 "\n"
27250 msgstr ""
27251
27252 #. type: textblock
27253 #: ../fish/guestfish-actions.pod:3819
27254 msgid ""
27255 "Unlike L</cat>, this function can correctly handle files that contain "
27256 "embedded ASCII NUL characters.  However unlike L</download>, this function "
27257 "is limited in the total size of file that can be handled."
27258 msgstr ""
27259
27260 #. type: =head2
27261 #: ../fish/guestfish-actions.pod:3827
27262 msgid "read-lines"
27263 msgstr ""
27264
27265 #. type: verbatim
27266 #: ../fish/guestfish-actions.pod:3829
27267 #, no-wrap
27268 msgid ""
27269 " read-lines path\n"
27270 "\n"
27271 msgstr ""
27272
27273 #. type: textblock
27274 #: ../fish/guestfish-actions.pod:3836
27275 msgid ""
27276 "Note that this function cannot correctly handle binary files (specifically, "
27277 "files containing C<\\0> character which is treated as end of line).  For "
27278 "those you need to use the L</read-file> function which has a more complex "
27279 "interface."
27280 msgstr ""
27281
27282 #. type: =head2
27283 #: ../fish/guestfish-actions.pod:3841
27284 msgid "readdir"
27285 msgstr ""
27286
27287 #. type: verbatim
27288 #: ../fish/guestfish-actions.pod:3843
27289 #, no-wrap
27290 msgid ""
27291 " readdir dir\n"
27292 "\n"
27293 msgstr ""
27294
27295 #. type: textblock
27296 #: ../fish/guestfish-actions.pod:3895
27297 msgid ""
27298 "This function is primarily intended for use by programs.  To get a simple "
27299 "list of names, use L</ls>.  To get a printable directory for human "
27300 "consumption, use L</ll>."
27301 msgstr ""
27302
27303 #. type: =head2
27304 #: ../fish/guestfish-actions.pod:3899
27305 msgid "readlink"
27306 msgstr ""
27307
27308 #. type: verbatim
27309 #: ../fish/guestfish-actions.pod:3901
27310 #, no-wrap
27311 msgid ""
27312 " readlink path\n"
27313 "\n"
27314 msgstr ""
27315
27316 #. type: =head2
27317 #: ../fish/guestfish-actions.pod:3905
27318 msgid "readlinklist"
27319 msgstr ""
27320
27321 #. type: verbatim
27322 #: ../fish/guestfish-actions.pod:3907
27323 #, no-wrap
27324 msgid ""
27325 " readlinklist path 'names ...'\n"
27326 "\n"
27327 msgstr ""
27328
27329 #. type: =head2
27330 #: ../fish/guestfish-actions.pod:3931
27331 msgid "realpath"
27332 msgstr ""
27333
27334 #. type: verbatim
27335 #: ../fish/guestfish-actions.pod:3933
27336 #, no-wrap
27337 msgid ""
27338 " realpath path\n"
27339 "\n"
27340 msgstr ""
27341
27342 #. type: =head2
27343 #: ../fish/guestfish-actions.pod:3938
27344 msgid "removexattr"
27345 msgstr ""
27346
27347 #. type: verbatim
27348 #: ../fish/guestfish-actions.pod:3940
27349 #, no-wrap
27350 msgid ""
27351 " removexattr xattr path\n"
27352 "\n"
27353 msgstr ""
27354
27355 #. type: textblock
27356 #: ../fish/guestfish-actions.pod:3945
27357 msgid "See also: L</lremovexattr>, L<attr(5)>."
27358 msgstr ""
27359
27360 #. type: =head2
27361 #: ../fish/guestfish-actions.pod:3947
27362 msgid "resize2fs"
27363 msgstr ""
27364
27365 #. type: verbatim
27366 #: ../fish/guestfish-actions.pod:3949
27367 #, no-wrap
27368 msgid ""
27369 " resize2fs device\n"
27370 "\n"
27371 msgstr ""
27372
27373 #. type: textblock
27374 #: ../fish/guestfish-actions.pod:3954
27375 msgid ""
27376 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device>"
27377 " before calling this command.  For unknown reasons C<resize2fs> sometimes "
27378 "gives an error about this and sometimes not.  In any case, it is always safe"
27379 " to call L</e2fsck-f> before calling this function."
27380 msgstr ""
27381
27382 #. type: =head2
27383 #: ../fish/guestfish-actions.pod:3960
27384 msgid "resize2fs-M"
27385 msgstr ""
27386
27387 #. type: verbatim
27388 #: ../fish/guestfish-actions.pod:3962
27389 #, no-wrap
27390 msgid ""
27391 " resize2fs-M device\n"
27392 "\n"
27393 msgstr ""
27394
27395 #. type: textblock
27396 #: ../fish/guestfish-actions.pod:3964
27397 msgid ""
27398 "This command is the same as L</resize2fs>, but the filesystem is resized to "
27399 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
27400 "command."
27401 msgstr ""
27402
27403 #. type: textblock
27404 #: ../fish/guestfish-actions.pod:3968
27405 msgid ""
27406 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
27407 "and read the C<Block size> and C<Block count> values.  These two numbers, "
27408 "multiplied together, give the resulting size of the minimal filesystem in "
27409 "bytes."
27410 msgstr ""
27411
27412 #. type: =head2
27413 #: ../fish/guestfish-actions.pod:3973
27414 msgid "resize2fs-size"
27415 msgstr ""
27416
27417 #. type: verbatim
27418 #: ../fish/guestfish-actions.pod:3975
27419 #, no-wrap
27420 msgid ""
27421 " resize2fs-size device size\n"
27422 "\n"
27423 msgstr ""
27424
27425 #. type: textblock
27426 #: ../fish/guestfish-actions.pod:3977
27427 msgid ""
27428 "This command is the same as L</resize2fs> except that it allows you to "
27429 "specify the new size (in bytes) explicitly."
27430 msgstr ""
27431
27432 #. type: =head2
27433 #: ../fish/guestfish-actions.pod:3980
27434 msgid "rm"
27435 msgstr ""
27436
27437 #. type: verbatim
27438 #: ../fish/guestfish-actions.pod:3982
27439 #, no-wrap
27440 msgid ""
27441 " rm path\n"
27442 "\n"
27443 msgstr ""
27444
27445 #. type: =head2
27446 #: ../fish/guestfish-actions.pod:3986
27447 msgid "rm-rf"
27448 msgstr ""
27449
27450 #. type: verbatim
27451 #: ../fish/guestfish-actions.pod:3988
27452 #, no-wrap
27453 msgid ""
27454 " rm-rf path\n"
27455 "\n"
27456 msgstr ""
27457
27458 #. type: =head2
27459 #: ../fish/guestfish-actions.pod:3994
27460 msgid "rmdir"
27461 msgstr ""
27462
27463 #. type: verbatim
27464 #: ../fish/guestfish-actions.pod:3996
27465 #, no-wrap
27466 msgid ""
27467 " rmdir path\n"
27468 "\n"
27469 msgstr ""
27470
27471 #. type: =head2
27472 #: ../fish/guestfish-actions.pod:4000
27473 msgid "rmmountpoint"
27474 msgstr ""
27475
27476 #. type: verbatim
27477 #: ../fish/guestfish-actions.pod:4002
27478 #, no-wrap
27479 msgid ""
27480 " rmmountpoint exemptpath\n"
27481 "\n"
27482 msgstr ""
27483
27484 #. type: textblock
27485 #: ../fish/guestfish-actions.pod:4004
27486 msgid ""
27487 "This calls removes a mountpoint that was previously created with "
27488 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
27489 msgstr ""
27490
27491 #. type: =head2
27492 #: ../fish/guestfish-actions.pod:4008
27493 msgid "scrub-device"
27494 msgstr ""
27495
27496 #. type: verbatim
27497 #: ../fish/guestfish-actions.pod:4010
27498 #, no-wrap
27499 msgid ""
27500 " scrub-device device\n"
27501 "\n"
27502 msgstr ""
27503
27504 #. type: =head2
27505 #: ../fish/guestfish-actions.pod:4021
27506 msgid "scrub-file"
27507 msgstr ""
27508
27509 #. type: verbatim
27510 #: ../fish/guestfish-actions.pod:4023
27511 #, no-wrap
27512 msgid ""
27513 " scrub-file file\n"
27514 "\n"
27515 msgstr ""
27516
27517 #. type: =head2
27518 #: ../fish/guestfish-actions.pod:4033
27519 msgid "scrub-freespace"
27520 msgstr ""
27521
27522 #. type: verbatim
27523 #: ../fish/guestfish-actions.pod:4035
27524 #, no-wrap
27525 msgid ""
27526 " scrub-freespace dir\n"
27527 "\n"
27528 msgstr ""
27529
27530 #. type: textblock
27531 #: ../fish/guestfish-actions.pod:4037
27532 msgid ""
27533 "This command creates the directory C<dir> and then fills it with files until"
27534 " the filesystem is full, and scrubs the files as for L</scrub-file>, and "
27535 "deletes them.  The intention is to scrub any free space on the partition "
27536 "containing C<dir>."
27537 msgstr ""
27538
27539 #. type: =head2
27540 #: ../fish/guestfish-actions.pod:4046
27541 msgid "set-append"
27542 msgstr ""
27543
27544 #. type: =head2
27545 #: ../fish/guestfish-actions.pod:4048
27546 msgid "append"
27547 msgstr ""
27548
27549 #. type: verbatim
27550 #: ../fish/guestfish-actions.pod:4050
27551 #, no-wrap
27552 msgid ""
27553 " set-append append\n"
27554 "\n"
27555 msgstr ""
27556
27557 #. type: =head2
27558 #: ../fish/guestfish-actions.pod:4061
27559 msgid "set-attach-method"
27560 msgstr ""
27561
27562 #. type: =head2
27563 #: ../fish/guestfish-actions.pod:4063
27564 msgid "attach-method"
27565 msgstr ""
27566
27567 #. type: verbatim
27568 #: ../fish/guestfish-actions.pod:4065
27569 #, no-wrap
27570 msgid ""
27571 " set-attach-method attachmethod\n"
27572 "\n"
27573 msgstr ""
27574
27575 #. type: =head2
27576 #: ../fish/guestfish-actions.pod:4087
27577 msgid "set-autosync"
27578 msgstr ""
27579
27580 #. type: =head2
27581 #: ../fish/guestfish-actions.pod:4089
27582 msgid "autosync"
27583 msgstr ""
27584
27585 #. type: verbatim
27586 #: ../fish/guestfish-actions.pod:4091
27587 #, no-wrap
27588 msgid ""
27589 " set-autosync true|false\n"
27590 "\n"
27591 msgstr ""
27592
27593 #. type: =head2
27594 #: ../fish/guestfish-actions.pod:4101
27595 msgid "set-direct"
27596 msgstr ""
27597
27598 #. type: =head2
27599 #: ../fish/guestfish-actions.pod:4103
27600 msgid "direct"
27601 msgstr ""
27602
27603 #. type: verbatim
27604 #: ../fish/guestfish-actions.pod:4105
27605 #, no-wrap
27606 msgid ""
27607 " set-direct true|false\n"
27608 "\n"
27609 msgstr ""
27610
27611 #. type: textblock
27612 #: ../fish/guestfish-actions.pod:4111
27613 msgid ""
27614 "One consequence of this is that log messages aren't caught by the library "
27615 "and handled by L</set-log-message-callback>, but go straight to stdout."
27616 msgstr ""
27617
27618 #. type: =head2
27619 #: ../fish/guestfish-actions.pod:4120
27620 msgid "set-e2label"
27621 msgstr ""
27622
27623 #. type: verbatim
27624 #: ../fish/guestfish-actions.pod:4122
27625 #, no-wrap
27626 msgid ""
27627 " set-e2label device label\n"
27628 "\n"
27629 msgstr ""
27630
27631 #. type: textblock
27632 #: ../fish/guestfish-actions.pod:4128
27633 msgid ""
27634 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
27635 "label on a filesystem."
27636 msgstr ""
27637
27638 #. type: =head2
27639 #: ../fish/guestfish-actions.pod:4131
27640 msgid "set-e2uuid"
27641 msgstr ""
27642
27643 #. type: verbatim
27644 #: ../fish/guestfish-actions.pod:4133
27645 #, no-wrap
27646 msgid ""
27647 " set-e2uuid device uuid\n"
27648 "\n"
27649 msgstr ""
27650
27651 #. type: textblock
27652 #: ../fish/guestfish-actions.pod:4140
27653 msgid ""
27654 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
27655 "UUID of a filesystem."
27656 msgstr ""
27657
27658 #. type: =head2
27659 #: ../fish/guestfish-actions.pod:4143
27660 msgid "set-memsize"
27661 msgstr ""
27662
27663 #. type: =head2
27664 #: ../fish/guestfish-actions.pod:4145
27665 msgid "memsize"
27666 msgstr ""
27667
27668 #. type: verbatim
27669 #: ../fish/guestfish-actions.pod:4147
27670 #, no-wrap
27671 msgid ""
27672 " set-memsize memsize\n"
27673 "\n"
27674 msgstr ""
27675
27676 #. type: textblock
27677 #: ../fish/guestfish-actions.pod:4149
27678 msgid ""
27679 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
27680 "This only has any effect if called before L</launch>."
27681 msgstr ""
27682
27683 #. type: =head2
27684 #: ../fish/guestfish-actions.pod:4160
27685 msgid "set-network"
27686 msgstr ""
27687
27688 #. type: =head2
27689 #: ../fish/guestfish-actions.pod:4162
27690 msgid "network"
27691 msgstr ""
27692
27693 #. type: verbatim
27694 #: ../fish/guestfish-actions.pod:4164
27695 #, no-wrap
27696 msgid ""
27697 " set-network true|false\n"
27698 "\n"
27699 msgstr ""
27700
27701 #. type: textblock
27702 #: ../fish/guestfish-actions.pod:4172
27703 msgid ""
27704 "You must call this before calling L</launch>, otherwise it has no effect."
27705 msgstr ""
27706
27707 #. type: =head2
27708 #: ../fish/guestfish-actions.pod:4175
27709 msgid "set-path"
27710 msgstr ""
27711
27712 #. type: =head2
27713 #: ../fish/guestfish-actions.pod:4177
27714 msgid "path"
27715 msgstr ""
27716
27717 #. type: verbatim
27718 #: ../fish/guestfish-actions.pod:4179
27719 #, no-wrap
27720 msgid ""
27721 " set-path searchpath\n"
27722 "\n"
27723 msgstr ""
27724
27725 #. type: =head2
27726 #: ../fish/guestfish-actions.pod:4188
27727 msgid "set-pgroup"
27728 msgstr ""
27729
27730 #. type: =head2
27731 #: ../fish/guestfish-actions.pod:4190
27732 msgid "pgroup"
27733 msgstr ""
27734
27735 #. type: verbatim
27736 #: ../fish/guestfish-actions.pod:4192
27737 #, no-wrap
27738 msgid ""
27739 " set-pgroup true|false\n"
27740 "\n"
27741 msgstr ""
27742
27743 #. type: =head2
27744 #: ../fish/guestfish-actions.pod:4203
27745 msgid "set-qemu"
27746 msgstr ""
27747
27748 #. type: =head2
27749 #: ../fish/guestfish-actions.pod:4205
27750 msgid "qemu"
27751 msgstr ""
27752
27753 #. type: verbatim
27754 #: ../fish/guestfish-actions.pod:4207
27755 #, no-wrap
27756 msgid ""
27757 " set-qemu qemu\n"
27758 "\n"
27759 msgstr ""
27760
27761 #. type: =head2
27762 #: ../fish/guestfish-actions.pod:4227
27763 msgid "set-recovery-proc"
27764 msgstr ""
27765
27766 #. type: =head2
27767 #: ../fish/guestfish-actions.pod:4229
27768 msgid "recovery-proc"
27769 msgstr ""
27770
27771 #. type: verbatim
27772 #: ../fish/guestfish-actions.pod:4231
27773 #, no-wrap
27774 msgid ""
27775 " set-recovery-proc true|false\n"
27776 "\n"
27777 msgstr ""
27778
27779 #. type: textblock
27780 #: ../fish/guestfish-actions.pod:4233
27781 msgid ""
27782 "If this is called with the parameter C<false> then L</launch> does not "
27783 "create a recovery process.  The purpose of the recovery process is to stop "
27784 "runaway qemu processes in the case where the main program aborts abruptly."
27785 msgstr ""
27786
27787 #. type: textblock
27788 #: ../fish/guestfish-actions.pod:4238
27789 msgid ""
27790 "This only has any effect if called before L</launch>, and the default is "
27791 "true."
27792 msgstr ""
27793
27794 #. type: =head2
27795 #: ../fish/guestfish-actions.pod:4247
27796 msgid "set-selinux"
27797 msgstr ""
27798
27799 #. type: =head2
27800 #: ../fish/guestfish-actions.pod:4249
27801 msgid "selinux"
27802 msgstr ""
27803
27804 #. type: verbatim
27805 #: ../fish/guestfish-actions.pod:4251
27806 #, no-wrap
27807 msgid ""
27808 " set-selinux true|false\n"
27809 "\n"
27810 msgstr ""
27811
27812 #. type: =head2
27813 #: ../fish/guestfish-actions.pod:4262
27814 msgid "set-trace"
27815 msgstr ""
27816
27817 #. type: =head2
27818 #: ../fish/guestfish-actions.pod:4264
27819 msgid "trace"
27820 msgstr ""
27821
27822 #. type: verbatim
27823 #: ../fish/guestfish-actions.pod:4266
27824 #, no-wrap
27825 msgid ""
27826 " set-trace true|false\n"
27827 "\n"
27828 msgstr ""
27829
27830 #. type: textblock
27831 #: ../fish/guestfish-actions.pod:4278
27832 msgid ""
27833 "Trace messages are normally sent to C<stderr>, unless you register a "
27834 "callback to send them somewhere else (see L</set-event-callback>)."
27835 msgstr ""
27836
27837 #. type: =head2
27838 #: ../fish/guestfish-actions.pod:4282
27839 msgid "set-verbose"
27840 msgstr ""
27841
27842 #. type: =head2
27843 #: ../fish/guestfish-actions.pod:4284
27844 msgid "verbose"
27845 msgstr ""
27846
27847 #. type: verbatim
27848 #: ../fish/guestfish-actions.pod:4286
27849 #, no-wrap
27850 msgid ""
27851 " set-verbose true|false\n"
27852 "\n"
27853 msgstr ""
27854
27855 #. type: textblock
27856 #: ../fish/guestfish-actions.pod:4293
27857 msgid ""
27858 "Verbose messages are normally sent to C<stderr>, unless you register a "
27859 "callback to send them somewhere else (see L</set-event-callback>)."
27860 msgstr ""
27861
27862 #. type: =head2
27863 #: ../fish/guestfish-actions.pod:4297
27864 msgid "setcon"
27865 msgstr ""
27866
27867 #. type: verbatim
27868 #: ../fish/guestfish-actions.pod:4299
27869 #, no-wrap
27870 msgid ""
27871 " setcon context\n"
27872 "\n"
27873 msgstr ""
27874
27875 #. type: =head2
27876 #: ../fish/guestfish-actions.pod:4306
27877 msgid "setxattr"
27878 msgstr ""
27879
27880 #. type: verbatim
27881 #: ../fish/guestfish-actions.pod:4308
27882 #, no-wrap
27883 msgid ""
27884 " setxattr xattr val vallen path\n"
27885 "\n"
27886 msgstr ""
27887
27888 #. type: textblock
27889 #: ../fish/guestfish-actions.pod:4314
27890 msgid "See also: L</lsetxattr>, L<attr(5)>."
27891 msgstr ""
27892
27893 #. type: =head2
27894 #: ../fish/guestfish-actions.pod:4316
27895 msgid "sfdisk"
27896 msgstr ""
27897
27898 #. type: verbatim
27899 #: ../fish/guestfish-actions.pod:4318
27900 #, no-wrap
27901 msgid ""
27902 " sfdisk device cyls heads sectors 'lines ...'\n"
27903 "\n"
27904 msgstr ""
27905
27906 #. type: textblock
27907 #: ../fish/guestfish-actions.pod:4340
27908 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
27909 msgstr ""
27910
27911 #. type: =head2
27912 #: ../fish/guestfish-actions.pod:4353
27913 msgid "sfdiskM"
27914 msgstr ""
27915
27916 #. type: verbatim
27917 #: ../fish/guestfish-actions.pod:4355
27918 #, no-wrap
27919 msgid ""
27920 " sfdiskM device 'lines ...'\n"
27921 "\n"
27922 msgstr ""
27923
27924 #. type: textblock
27925 #: ../fish/guestfish-actions.pod:4357
27926 msgid ""
27927 "This is a simplified interface to the L</sfdisk> command, where partition "
27928 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
27929 "you don't need to specify the cyls, heads and sectors parameters which were "
27930 "rarely if ever used anyway."
27931 msgstr ""
27932
27933 #. type: textblock
27934 #: ../fish/guestfish-actions.pod:4363
27935 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
27936 msgstr ""
27937
27938 #. type: =head2
27939 #: ../fish/guestfish-actions.pod:4376
27940 msgid "sfdisk-N"
27941 msgstr ""
27942
27943 #. type: verbatim
27944 #: ../fish/guestfish-actions.pod:4378
27945 #, no-wrap
27946 msgid ""
27947 " sfdisk-N device partnum cyls heads sectors line\n"
27948 "\n"
27949 msgstr ""
27950
27951 #. type: textblock
27952 #: ../fish/guestfish-actions.pod:4383
27953 msgid ""
27954 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
27955 "cyls/heads/sectors parameters."
27956 msgstr ""
27957
27958 #. type: textblock
27959 #: ../fish/guestfish-actions.pod:4386
27960 msgid "See also: L</part-add>"
27961 msgstr ""
27962
27963 #. type: =head2
27964 #: ../fish/guestfish-actions.pod:4398
27965 msgid "sfdisk-disk-geometry"
27966 msgstr ""
27967
27968 #. type: verbatim
27969 #: ../fish/guestfish-actions.pod:4400
27970 #, no-wrap
27971 msgid ""
27972 " sfdisk-disk-geometry device\n"
27973 "\n"
27974 msgstr ""
27975
27976 #. type: textblock
27977 #: ../fish/guestfish-actions.pod:4402
27978 msgid ""
27979 "This displays the disk geometry of C<device> read from the partition table."
27980 "  Especially in the case where the underlying block device has been resized,"
27981 " this can be different from the kernel's idea of the geometry (see L"
27982 "</sfdisk-kernel-geometry>)."
27983 msgstr ""
27984
27985 #. type: =head2
27986 #: ../fish/guestfish-actions.pod:4410
27987 msgid "sfdisk-kernel-geometry"
27988 msgstr ""
27989
27990 #. type: verbatim
27991 #: ../fish/guestfish-actions.pod:4412
27992 #, no-wrap
27993 msgid ""
27994 " sfdisk-kernel-geometry device\n"
27995 "\n"
27996 msgstr ""
27997
27998 #. type: =head2
27999 #: ../fish/guestfish-actions.pod:4419
28000 msgid "sfdisk-l"
28001 msgstr ""
28002
28003 #. type: verbatim
28004 #: ../fish/guestfish-actions.pod:4421
28005 #, no-wrap
28006 msgid ""
28007 " sfdisk-l device\n"
28008 "\n"
28009 msgstr ""
28010
28011 #. type: textblock
28012 #: ../fish/guestfish-actions.pod:4427
28013 msgid "See also: L</part-list>"
28014 msgstr ""
28015
28016 #. type: =head2
28017 #: ../fish/guestfish-actions.pod:4436
28018 msgid "sh"
28019 msgstr ""
28020
28021 #. type: verbatim
28022 #: ../fish/guestfish-actions.pod:4438
28023 #, no-wrap
28024 msgid ""
28025 " sh command\n"
28026 "\n"
28027 msgstr ""
28028
28029 #. type: textblock
28030 #: ../fish/guestfish-actions.pod:4443
28031 msgid "This is like L</command>, but passes the command to:"
28032 msgstr ""
28033
28034 #. type: textblock
28035 #: ../fish/guestfish-actions.pod:4451
28036 msgid "All the provisos about L</command> apply to this call."
28037 msgstr ""
28038
28039 #. type: =head2
28040 #: ../fish/guestfish-actions.pod:4453
28041 msgid "sh-lines"
28042 msgstr ""
28043
28044 #. type: verbatim
28045 #: ../fish/guestfish-actions.pod:4455
28046 #, no-wrap
28047 msgid ""
28048 " sh-lines command\n"
28049 "\n"
28050 msgstr ""
28051
28052 #. type: textblock
28053 #: ../fish/guestfish-actions.pod:4457
28054 msgid ""
28055 "This is the same as L</sh>, but splits the result into a list of lines."
28056 msgstr ""
28057
28058 #. type: textblock
28059 #: ../fish/guestfish-actions.pod:4460
28060 msgid "See also: L</command-lines>"
28061 msgstr ""
28062
28063 #. type: =head2
28064 #: ../fish/guestfish-actions.pod:4462
28065 msgid "sleep"
28066 msgstr ""
28067
28068 #. type: verbatim
28069 #: ../fish/guestfish-actions.pod:4464
28070 #, no-wrap
28071 msgid ""
28072 " sleep secs\n"
28073 "\n"
28074 msgstr ""
28075
28076 #. type: =head2
28077 #: ../fish/guestfish-actions.pod:4468
28078 msgid "stat"
28079 msgstr ""
28080
28081 #. type: verbatim
28082 #: ../fish/guestfish-actions.pod:4470
28083 #, no-wrap
28084 msgid ""
28085 " stat path\n"
28086 "\n"
28087 msgstr ""
28088
28089 #. type: =head2
28090 #: ../fish/guestfish-actions.pod:4476
28091 msgid "statvfs"
28092 msgstr ""
28093
28094 #. type: verbatim
28095 #: ../fish/guestfish-actions.pod:4478
28096 #, no-wrap
28097 msgid ""
28098 " statvfs path\n"
28099 "\n"
28100 msgstr ""
28101
28102 #. type: =head2
28103 #: ../fish/guestfish-actions.pod:4486
28104 msgid "strings"
28105 msgstr ""
28106
28107 #. type: verbatim
28108 #: ../fish/guestfish-actions.pod:4488
28109 #, no-wrap
28110 msgid ""
28111 " strings path\n"
28112 "\n"
28113 msgstr ""
28114
28115 #. type: =head2
28116 #: ../fish/guestfish-actions.pod:4496
28117 msgid "strings-e"
28118 msgstr ""
28119
28120 #. type: verbatim
28121 #: ../fish/guestfish-actions.pod:4498
28122 #, no-wrap
28123 msgid ""
28124 " strings-e encoding path\n"
28125 "\n"
28126 msgstr ""
28127
28128 #. type: textblock
28129 #: ../fish/guestfish-actions.pod:4500
28130 msgid ""
28131 "This is like the L</strings> command, but allows you to specify the encoding"
28132 " of strings that are looked for in the source file C<path>."
28133 msgstr ""
28134
28135 #. type: textblock
28136 #: ../fish/guestfish-actions.pod:4510
28137 msgid ""
28138 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
28139 "ISO-8859-X (this is what L</strings> uses)."
28140 msgstr ""
28141
28142 #. type: =head2
28143 #: ../fish/guestfish-actions.pod:4542
28144 msgid "swapoff-device"
28145 msgstr ""
28146
28147 #. type: verbatim
28148 #: ../fish/guestfish-actions.pod:4544
28149 #, no-wrap
28150 msgid ""
28151 " swapoff-device device\n"
28152 "\n"
28153 msgstr ""
28154
28155 #. type: textblock
28156 #: ../fish/guestfish-actions.pod:4546
28157 msgid ""
28158 "This command disables the libguestfs appliance swap device or partition "
28159 "named C<device>.  See L</swapon-device>."
28160 msgstr ""
28161
28162 #. type: =head2
28163 #: ../fish/guestfish-actions.pod:4550
28164 msgid "swapoff-file"
28165 msgstr ""
28166
28167 #. type: verbatim
28168 #: ../fish/guestfish-actions.pod:4552
28169 #, no-wrap
28170 msgid ""
28171 " swapoff-file file\n"
28172 "\n"
28173 msgstr ""
28174
28175 #. type: =head2
28176 #: ../fish/guestfish-actions.pod:4556
28177 msgid "swapoff-label"
28178 msgstr ""
28179
28180 #. type: verbatim
28181 #: ../fish/guestfish-actions.pod:4558
28182 #, no-wrap
28183 msgid ""
28184 " swapoff-label label\n"
28185 "\n"
28186 msgstr ""
28187
28188 #. type: =head2
28189 #: ../fish/guestfish-actions.pod:4563
28190 msgid "swapoff-uuid"
28191 msgstr ""
28192
28193 #. type: verbatim
28194 #: ../fish/guestfish-actions.pod:4565
28195 #, no-wrap
28196 msgid ""
28197 " swapoff-uuid uuid\n"
28198 "\n"
28199 msgstr ""
28200
28201 #. type: =head2
28202 #: ../fish/guestfish-actions.pod:4570
28203 msgid "swapon-device"
28204 msgstr ""
28205
28206 #. type: verbatim
28207 #: ../fish/guestfish-actions.pod:4572
28208 #, no-wrap
28209 msgid ""
28210 " swapon-device device\n"
28211 "\n"
28212 msgstr ""
28213
28214 #. type: textblock
28215 #: ../fish/guestfish-actions.pod:4574
28216 msgid ""
28217 "This command enables the libguestfs appliance to use the swap device or "
28218 "partition named C<device>.  The increased memory is made available for all "
28219 "commands, for example those run using L</command> or L</sh>."
28220 msgstr ""
28221
28222 #. type: =head2
28223 #: ../fish/guestfish-actions.pod:4586
28224 msgid "swapon-file"
28225 msgstr ""
28226
28227 #. type: verbatim
28228 #: ../fish/guestfish-actions.pod:4588
28229 #, no-wrap
28230 msgid ""
28231 " swapon-file file\n"
28232 "\n"
28233 msgstr ""
28234
28235 #. type: textblock
28236 #: ../fish/guestfish-actions.pod:4590
28237 msgid ""
28238 "This command enables swap to a file.  See L</swapon-device> for other notes."
28239 msgstr ""
28240
28241 #. type: =head2
28242 #: ../fish/guestfish-actions.pod:4593
28243 msgid "swapon-label"
28244 msgstr ""
28245
28246 #. type: verbatim
28247 #: ../fish/guestfish-actions.pod:4595
28248 #, no-wrap
28249 msgid ""
28250 " swapon-label label\n"
28251 "\n"
28252 msgstr ""
28253
28254 #. type: textblock
28255 #: ../fish/guestfish-actions.pod:4597
28256 msgid ""
28257 "This command enables swap to a labeled swap partition.  See L</swapon-"
28258 "device> for other notes."
28259 msgstr ""
28260
28261 #. type: =head2
28262 #: ../fish/guestfish-actions.pod:4600
28263 msgid "swapon-uuid"
28264 msgstr ""
28265
28266 #. type: verbatim
28267 #: ../fish/guestfish-actions.pod:4602
28268 #, no-wrap
28269 msgid ""
28270 " swapon-uuid uuid\n"
28271 "\n"
28272 msgstr ""
28273
28274 #. type: textblock
28275 #: ../fish/guestfish-actions.pod:4604
28276 msgid ""
28277 "This command enables swap to a swap partition with the given UUID.  See L"
28278 "</swapon-device> for other notes."
28279 msgstr ""
28280
28281 #. type: =head2
28282 #: ../fish/guestfish-actions.pod:4607
28283 msgid "sync"
28284 msgstr ""
28285
28286 #. type: verbatim
28287 #: ../fish/guestfish-actions.pod:4609
28288 #, no-wrap
28289 msgid ""
28290 " sync\n"
28291 "\n"
28292 msgstr ""
28293
28294 #. type: =head2
28295 #: ../fish/guestfish-actions.pod:4617
28296 msgid "tail"
28297 msgstr ""
28298
28299 #. type: verbatim
28300 #: ../fish/guestfish-actions.pod:4619
28301 #, no-wrap
28302 msgid ""
28303 " tail path\n"
28304 "\n"
28305 msgstr ""
28306
28307 #. type: =head2
28308 #: ../fish/guestfish-actions.pod:4627
28309 msgid "tail-n"
28310 msgstr ""
28311
28312 #. type: verbatim
28313 #: ../fish/guestfish-actions.pod:4629
28314 #, no-wrap
28315 msgid ""
28316 " tail-n nrlines path\n"
28317 "\n"
28318 msgstr ""
28319
28320 #. type: =head2
28321 #: ../fish/guestfish-actions.pod:4642
28322 msgid "tar-in"
28323 msgstr ""
28324
28325 #. type: verbatim
28326 #: ../fish/guestfish-actions.pod:4644
28327 #, no-wrap
28328 msgid ""
28329 " tar-in (tarfile|-) directory\n"
28330 "\n"
28331 msgstr ""
28332
28333 #. type: textblock
28334 #: ../fish/guestfish-actions.pod:4649
28335 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
28336 msgstr ""
28337
28338 #. type: =head2
28339 #: ../fish/guestfish-actions.pod:4654
28340 msgid "tar-out"
28341 msgstr ""
28342
28343 #. type: verbatim
28344 #: ../fish/guestfish-actions.pod:4656
28345 #, no-wrap
28346 msgid ""
28347 " tar-out directory (tarfile|-)\n"
28348 "\n"
28349 msgstr ""
28350
28351 #. type: textblock
28352 #: ../fish/guestfish-actions.pod:4661
28353 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
28354 msgstr ""
28355
28356 #. type: =head2
28357 #: ../fish/guestfish-actions.pod:4666
28358 msgid "tgz-in"
28359 msgstr ""
28360
28361 #. type: verbatim
28362 #: ../fish/guestfish-actions.pod:4668
28363 #, no-wrap
28364 msgid ""
28365 " tgz-in (tarball|-) directory\n"
28366 "\n"
28367 msgstr ""
28368
28369 #. type: textblock
28370 #: ../fish/guestfish-actions.pod:4673
28371 msgid "To upload an uncompressed tarball, use L</tar-in>."
28372 msgstr ""
28373
28374 #. type: =head2
28375 #: ../fish/guestfish-actions.pod:4677
28376 msgid "tgz-out"
28377 msgstr ""
28378
28379 #. type: verbatim
28380 #: ../fish/guestfish-actions.pod:4679
28381 #, no-wrap
28382 msgid ""
28383 " tgz-out directory (tarball|-)\n"
28384 "\n"
28385 msgstr ""
28386
28387 #. type: textblock
28388 #: ../fish/guestfish-actions.pod:4684
28389 msgid "To download an uncompressed tarball, use L</tar-out>."
28390 msgstr ""
28391
28392 #. type: =head2
28393 #: ../fish/guestfish-actions.pod:4688
28394 msgid "touch"
28395 msgstr ""
28396
28397 #. type: verbatim
28398 #: ../fish/guestfish-actions.pod:4690
28399 #, no-wrap
28400 msgid ""
28401 " touch path\n"
28402 "\n"
28403 msgstr ""
28404
28405 #. type: =head2
28406 #: ../fish/guestfish-actions.pod:4699
28407 msgid "truncate"
28408 msgstr ""
28409
28410 #. type: verbatim
28411 #: ../fish/guestfish-actions.pod:4701
28412 #, no-wrap
28413 msgid ""
28414 " truncate path\n"
28415 "\n"
28416 msgstr ""
28417
28418 #. type: =head2
28419 #: ../fish/guestfish-actions.pod:4706
28420 msgid "truncate-size"
28421 msgstr ""
28422
28423 #. type: verbatim
28424 #: ../fish/guestfish-actions.pod:4708
28425 #, no-wrap
28426 msgid ""
28427 " truncate-size path size\n"
28428 "\n"
28429 msgstr ""
28430
28431 #. type: textblock
28432 #: ../fish/guestfish-actions.pod:4713
28433 msgid ""
28434 "If the current file size is less than C<size> then the file is extended to "
28435 "the required size with zero bytes.  This creates a sparse file (ie. disk "
28436 "blocks are not allocated for the file until you write to it).  To create a "
28437 "non-sparse file of zeroes, use L</fallocate64> instead."
28438 msgstr ""
28439
28440 #. type: =head2
28441 #: ../fish/guestfish-actions.pod:4719
28442 msgid "tune2fs-l"
28443 msgstr ""
28444
28445 #. type: verbatim
28446 #: ../fish/guestfish-actions.pod:4721
28447 #, no-wrap
28448 msgid ""
28449 " tune2fs-l device\n"
28450 "\n"
28451 msgstr ""
28452
28453 #. type: =head2
28454 #: ../fish/guestfish-actions.pod:4731
28455 msgid "txz-in"
28456 msgstr ""
28457
28458 #. type: verbatim
28459 #: ../fish/guestfish-actions.pod:4733
28460 #, no-wrap
28461 msgid ""
28462 " txz-in (tarball|-) directory\n"
28463 "\n"
28464 msgstr ""
28465
28466 #. type: =head2
28467 #: ../fish/guestfish-actions.pod:4740
28468 msgid "txz-out"
28469 msgstr ""
28470
28471 #. type: verbatim
28472 #: ../fish/guestfish-actions.pod:4742
28473 #, no-wrap
28474 msgid ""
28475 " txz-out directory (tarball|-)\n"
28476 "\n"
28477 msgstr ""
28478
28479 #. type: =head2
28480 #: ../fish/guestfish-actions.pod:4749
28481 msgid "umask"
28482 msgstr ""
28483
28484 #. type: verbatim
28485 #: ../fish/guestfish-actions.pod:4751
28486 #, no-wrap
28487 msgid ""
28488 " umask mask\n"
28489 "\n"
28490 msgstr ""
28491
28492 #. type: textblock
28493 #: ../fish/guestfish-actions.pod:4765
28494 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
28495 msgstr ""
28496
28497 #. type: =head2
28498 #: ../fish/guestfish-actions.pod:4770
28499 msgid "umount"
28500 msgstr ""
28501
28502 #. type: =head2
28503 #: ../fish/guestfish-actions.pod:4772
28504 msgid "unmount"
28505 msgstr ""
28506
28507 #. type: verbatim
28508 #: ../fish/guestfish-actions.pod:4774
28509 #, no-wrap
28510 msgid ""
28511 " umount pathordevice\n"
28512 "\n"
28513 msgstr ""
28514
28515 #. type: =head2
28516 #: ../fish/guestfish-actions.pod:4780
28517 msgid "umount-all"
28518 msgstr ""
28519
28520 #. type: =head2
28521 #: ../fish/guestfish-actions.pod:4782
28522 msgid "unmount-all"
28523 msgstr ""
28524
28525 #. type: verbatim
28526 #: ../fish/guestfish-actions.pod:4784
28527 #, no-wrap
28528 msgid ""
28529 " umount-all\n"
28530 "\n"
28531 msgstr ""
28532
28533 #. type: =head2
28534 #: ../fish/guestfish-actions.pod:4790
28535 msgid "upload"
28536 msgstr ""
28537
28538 #. type: verbatim
28539 #: ../fish/guestfish-actions.pod:4792
28540 #, no-wrap
28541 msgid ""
28542 " upload (filename|-) remotefilename\n"
28543 "\n"
28544 msgstr ""
28545
28546 #. type: textblock
28547 #: ../fish/guestfish-actions.pod:4799
28548 msgid "See also L</download>."
28549 msgstr ""
28550
28551 #. type: =head2
28552 #: ../fish/guestfish-actions.pod:4803
28553 msgid "upload-offset"
28554 msgstr ""
28555
28556 #. type: verbatim
28557 #: ../fish/guestfish-actions.pod:4805
28558 #, no-wrap
28559 msgid ""
28560 " upload-offset (filename|-) remotefilename offset\n"
28561 "\n"
28562 msgstr ""
28563
28564 #. type: textblock
28565 #: ../fish/guestfish-actions.pod:4817
28566 msgid ""
28567 "Note that there is no limit on the amount of data that can be uploaded with "
28568 "this call, unlike with L</pwrite>, and this call always writes the full "
28569 "amount unless an error occurs."
28570 msgstr ""
28571
28572 #. type: textblock
28573 #: ../fish/guestfish-actions.pod:4822
28574 msgid "See also L</upload>, L</pwrite>."
28575 msgstr ""
28576
28577 #. type: =head2
28578 #: ../fish/guestfish-actions.pod:4826
28579 msgid "utimens"
28580 msgstr ""
28581
28582 #. type: verbatim
28583 #: ../fish/guestfish-actions.pod:4828
28584 #, no-wrap
28585 msgid ""
28586 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
28587 "\n"
28588 msgstr ""
28589
28590 #. type: =head2
28591 #: ../fish/guestfish-actions.pod:4847
28592 msgid "version"
28593 msgstr ""
28594
28595 #. type: verbatim
28596 #: ../fish/guestfish-actions.pod:4849
28597 #, no-wrap
28598 msgid ""
28599 " version\n"
28600 "\n"
28601 msgstr ""
28602
28603 #. type: textblock
28604 #: ../fish/guestfish-actions.pod:4876
28605 msgid ""
28606 "I<Note:> Don't use this call to test for availability of features.  In "
28607 "enterprise distributions we backport features from later versions into "
28608 "earlier versions, making this an unreliable way to test for features.  Use "
28609 "L</available> instead."
28610 msgstr ""
28611
28612 #. type: =head2
28613 #: ../fish/guestfish-actions.pod:4882
28614 msgid "vfs-label"
28615 msgstr ""
28616
28617 #. type: verbatim
28618 #: ../fish/guestfish-actions.pod:4884
28619 #, no-wrap
28620 msgid ""
28621 " vfs-label device\n"
28622 "\n"
28623 msgstr ""
28624
28625 #. type: textblock
28626 #: ../fish/guestfish-actions.pod:4891
28627 msgid "To find a filesystem from the label, use L</findfs-label>."
28628 msgstr ""
28629
28630 #. type: =head2
28631 #: ../fish/guestfish-actions.pod:4893
28632 msgid "vfs-type"
28633 msgstr ""
28634
28635 #. type: verbatim
28636 #: ../fish/guestfish-actions.pod:4895
28637 #, no-wrap
28638 msgid ""
28639 " vfs-type device\n"
28640 "\n"
28641 msgstr ""
28642
28643 #. type: =head2
28644 #: ../fish/guestfish-actions.pod:4905
28645 msgid "vfs-uuid"
28646 msgstr ""
28647
28648 #. type: verbatim
28649 #: ../fish/guestfish-actions.pod:4907
28650 #, no-wrap
28651 msgid ""
28652 " vfs-uuid device\n"
28653 "\n"
28654 msgstr ""
28655
28656 #. type: textblock
28657 #: ../fish/guestfish-actions.pod:4914
28658 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
28659 msgstr ""
28660
28661 #. type: =head2
28662 #: ../fish/guestfish-actions.pod:4916
28663 msgid "vg-activate"
28664 msgstr ""
28665
28666 #. type: verbatim
28667 #: ../fish/guestfish-actions.pod:4918
28668 #, no-wrap
28669 msgid ""
28670 " vg-activate true|false 'volgroups ...'\n"
28671 "\n"
28672 msgstr ""
28673
28674 #. type: =head2
28675 #: ../fish/guestfish-actions.pod:4928
28676 msgid "vg-activate-all"
28677 msgstr ""
28678
28679 #. type: verbatim
28680 #: ../fish/guestfish-actions.pod:4930
28681 #, no-wrap
28682 msgid ""
28683 " vg-activate-all true|false\n"
28684 "\n"
28685 msgstr ""
28686
28687 #. type: =head2
28688 #: ../fish/guestfish-actions.pod:4937
28689 msgid "vgcreate"
28690 msgstr ""
28691
28692 #. type: verbatim
28693 #: ../fish/guestfish-actions.pod:4939
28694 #, no-wrap
28695 msgid ""
28696 " vgcreate volgroup 'physvols ...'\n"
28697 "\n"
28698 msgstr ""
28699
28700 #. type: =head2
28701 #: ../fish/guestfish-actions.pod:4944
28702 msgid "vglvuuids"
28703 msgstr ""
28704
28705 #. type: verbatim
28706 #: ../fish/guestfish-actions.pod:4946
28707 #, no-wrap
28708 msgid ""
28709 " vglvuuids vgname\n"
28710 "\n"
28711 msgstr ""
28712
28713 #. type: textblock
28714 #: ../fish/guestfish-actions.pod:4951
28715 msgid ""
28716 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
28717 "logical volumes and volume groups."
28718 msgstr ""
28719
28720 #. type: textblock
28721 #: ../fish/guestfish-actions.pod:4954
28722 msgid "See also L</vgpvuuids>."
28723 msgstr ""
28724
28725 #. type: =head2
28726 #: ../fish/guestfish-actions.pod:4956
28727 msgid "vgpvuuids"
28728 msgstr ""
28729
28730 #. type: verbatim
28731 #: ../fish/guestfish-actions.pod:4958
28732 #, no-wrap
28733 msgid ""
28734 " vgpvuuids vgname\n"
28735 "\n"
28736 msgstr ""
28737
28738 #. type: textblock
28739 #: ../fish/guestfish-actions.pod:4963
28740 msgid ""
28741 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
28742 "physical volumes and volume groups."
28743 msgstr ""
28744
28745 #. type: textblock
28746 #: ../fish/guestfish-actions.pod:4966
28747 msgid "See also L</vglvuuids>."
28748 msgstr ""
28749
28750 #. type: =head2
28751 #: ../fish/guestfish-actions.pod:4968
28752 msgid "vgremove"
28753 msgstr ""
28754
28755 #. type: verbatim
28756 #: ../fish/guestfish-actions.pod:4970
28757 #, no-wrap
28758 msgid ""
28759 " vgremove vgname\n"
28760 "\n"
28761 msgstr ""
28762
28763 #. type: =head2
28764 #: ../fish/guestfish-actions.pod:4977
28765 msgid "vgrename"
28766 msgstr ""
28767
28768 #. type: verbatim
28769 #: ../fish/guestfish-actions.pod:4979
28770 #, no-wrap
28771 msgid ""
28772 " vgrename volgroup newvolgroup\n"
28773 "\n"
28774 msgstr ""
28775
28776 #. type: =head2
28777 #: ../fish/guestfish-actions.pod:4983
28778 msgid "vgs"
28779 msgstr ""
28780
28781 #. type: verbatim
28782 #: ../fish/guestfish-actions.pod:4985
28783 #, no-wrap
28784 msgid ""
28785 " vgs\n"
28786 "\n"
28787 msgstr ""
28788
28789 #. type: textblock
28790 #: ../fish/guestfish-actions.pod:4993
28791 msgid "See also L</vgs-full>."
28792 msgstr ""
28793
28794 #. type: =head2
28795 #: ../fish/guestfish-actions.pod:4995
28796 msgid "vgs-full"
28797 msgstr ""
28798
28799 #. type: verbatim
28800 #: ../fish/guestfish-actions.pod:4997
28801 #, no-wrap
28802 msgid ""
28803 " vgs-full\n"
28804 "\n"
28805 msgstr ""
28806
28807 #. type: =head2
28808 #: ../fish/guestfish-actions.pod:5002
28809 msgid "vgscan"
28810 msgstr ""
28811
28812 #. type: verbatim
28813 #: ../fish/guestfish-actions.pod:5004
28814 #, no-wrap
28815 msgid ""
28816 " vgscan\n"
28817 "\n"
28818 msgstr ""
28819
28820 #. type: =head2
28821 #: ../fish/guestfish-actions.pod:5009
28822 msgid "vguuid"
28823 msgstr ""
28824
28825 #. type: verbatim
28826 #: ../fish/guestfish-actions.pod:5011
28827 #, no-wrap
28828 msgid ""
28829 " vguuid vgname\n"
28830 "\n"
28831 msgstr ""
28832
28833 #. type: =head2
28834 #: ../fish/guestfish-actions.pod:5015
28835 msgid "wc-c"
28836 msgstr ""
28837
28838 #. type: verbatim
28839 #: ../fish/guestfish-actions.pod:5017
28840 #, no-wrap
28841 msgid ""
28842 " wc-c path\n"
28843 "\n"
28844 msgstr ""
28845
28846 #. type: =head2
28847 #: ../fish/guestfish-actions.pod:5022
28848 msgid "wc-l"
28849 msgstr ""
28850
28851 #. type: verbatim
28852 #: ../fish/guestfish-actions.pod:5024
28853 #, no-wrap
28854 msgid ""
28855 " wc-l path\n"
28856 "\n"
28857 msgstr ""
28858
28859 #. type: =head2
28860 #: ../fish/guestfish-actions.pod:5029
28861 msgid "wc-w"
28862 msgstr ""
28863
28864 #. type: verbatim
28865 #: ../fish/guestfish-actions.pod:5031
28866 #, no-wrap
28867 msgid ""
28868 " wc-w path\n"
28869 "\n"
28870 msgstr ""
28871
28872 #. type: =head2
28873 #: ../fish/guestfish-actions.pod:5036
28874 msgid "write"
28875 msgstr ""
28876
28877 #. type: verbatim
28878 #: ../fish/guestfish-actions.pod:5038
28879 #, no-wrap
28880 msgid ""
28881 " write path content\n"
28882 "\n"
28883 msgstr ""
28884
28885 #. type: textblock
28886 #: ../fish/guestfish-actions.pod:5043
28887 msgid "See also L</write-append>."
28888 msgstr ""
28889
28890 #. type: =head2
28891 #: ../fish/guestfish-actions.pod:5048
28892 msgid "write-append"
28893 msgstr ""
28894
28895 #. type: verbatim
28896 #: ../fish/guestfish-actions.pod:5050
28897 #, no-wrap
28898 msgid ""
28899 " write-append path content\n"
28900 "\n"
28901 msgstr ""
28902
28903 #. type: textblock
28904 #: ../fish/guestfish-actions.pod:5055
28905 msgid "See also L</write>."
28906 msgstr ""
28907
28908 #. type: =head2
28909 #: ../fish/guestfish-actions.pod:5060
28910 msgid "write-file"
28911 msgstr ""
28912
28913 #. type: verbatim
28914 #: ../fish/guestfish-actions.pod:5062
28915 #, no-wrap
28916 msgid ""
28917 " write-file path content size\n"
28918 "\n"
28919 msgstr ""
28920
28921 #. type: =head2
28922 #: ../fish/guestfish-actions.pod:5085
28923 msgid "zegrep"
28924 msgstr ""
28925
28926 #. type: verbatim
28927 #: ../fish/guestfish-actions.pod:5087
28928 #, no-wrap
28929 msgid ""
28930 " zegrep regex path\n"
28931 "\n"
28932 msgstr ""
28933
28934 #. type: =head2
28935 #: ../fish/guestfish-actions.pod:5095
28936 msgid "zegrepi"
28937 msgstr ""
28938
28939 #. type: verbatim
28940 #: ../fish/guestfish-actions.pod:5097
28941 #, no-wrap
28942 msgid ""
28943 " zegrepi regex path\n"
28944 "\n"
28945 msgstr ""
28946
28947 #. type: =head2
28948 #: ../fish/guestfish-actions.pod:5105
28949 msgid "zero"
28950 msgstr ""
28951
28952 #. type: verbatim
28953 #: ../fish/guestfish-actions.pod:5107
28954 #, no-wrap
28955 msgid ""
28956 " zero device\n"
28957 "\n"
28958 msgstr ""
28959
28960 #. type: textblock
28961 #: ../fish/guestfish-actions.pod:5115
28962 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
28963 msgstr ""
28964
28965 #. type: =head2
28966 #: ../fish/guestfish-actions.pod:5118
28967 msgid "zero-device"
28968 msgstr ""
28969
28970 #. type: verbatim
28971 #: ../fish/guestfish-actions.pod:5120
28972 #, no-wrap
28973 msgid ""
28974 " zero-device device\n"
28975 "\n"
28976 msgstr ""
28977
28978 #. type: textblock
28979 #: ../fish/guestfish-actions.pod:5122
28980 msgid ""
28981 "This command writes zeroes over the entire C<device>.  Compare with L</zero>"
28982 " which just zeroes the first few blocks of a device."
28983 msgstr ""
28984
28985 #. type: =head2
28986 #: ../fish/guestfish-actions.pod:5129
28987 msgid "zerofree"
28988 msgstr ""
28989
28990 #. type: verbatim
28991 #: ../fish/guestfish-actions.pod:5131
28992 #, no-wrap
28993 msgid ""
28994 " zerofree device\n"
28995 "\n"
28996 msgstr ""
28997
28998 #. type: =head2
28999 #: ../fish/guestfish-actions.pod:5144
29000 msgid "zfgrep"
29001 msgstr ""
29002
29003 #. type: verbatim
29004 #: ../fish/guestfish-actions.pod:5146
29005 #, no-wrap
29006 msgid ""
29007 " zfgrep pattern path\n"
29008 "\n"
29009 msgstr ""
29010
29011 #. type: =head2
29012 #: ../fish/guestfish-actions.pod:5154
29013 msgid "zfgrepi"
29014 msgstr ""
29015
29016 #. type: verbatim
29017 #: ../fish/guestfish-actions.pod:5156
29018 #, no-wrap
29019 msgid ""
29020 " zfgrepi pattern path\n"
29021 "\n"
29022 msgstr ""
29023
29024 #. type: =head2
29025 #: ../fish/guestfish-actions.pod:5164
29026 msgid "zfile"
29027 msgstr ""
29028
29029 #. type: verbatim
29030 #: ../fish/guestfish-actions.pod:5166
29031 #, no-wrap
29032 msgid ""
29033 " zfile meth path\n"
29034 "\n"
29035 msgstr ""
29036
29037 #. type: textblock
29038 #: ../fish/guestfish-actions.pod:5173
29039 msgid ""
29040 "Since 1.0.63, use L</file> instead which can now process compressed files."
29041 msgstr ""
29042
29043 #. type: =head2
29044 #: ../fish/guestfish-actions.pod:5183
29045 msgid "zgrep"
29046 msgstr ""
29047
29048 #. type: verbatim
29049 #: ../fish/guestfish-actions.pod:5185
29050 #, no-wrap
29051 msgid ""
29052 " zgrep regex path\n"
29053 "\n"
29054 msgstr ""
29055
29056 #. type: =head2
29057 #: ../fish/guestfish-actions.pod:5193
29058 msgid "zgrepi"
29059 msgstr ""
29060
29061 #. type: verbatim
29062 #: ../fish/guestfish-actions.pod:5195
29063 #, no-wrap
29064 msgid ""
29065 " zgrepi regex path\n"
29066 "\n"
29067 msgstr ""
29068
29069 #. type: =head2
29070 #: ../fish/guestfish-commands.pod:1
29071 msgid "alloc"
29072 msgstr ""
29073
29074 #. type: =head2
29075 #: ../fish/guestfish-commands.pod:3
29076 msgid "allocate"
29077 msgstr ""
29078
29079 #. type: verbatim
29080 #: ../fish/guestfish-commands.pod:5
29081 #, no-wrap
29082 msgid ""
29083 " alloc filename size\n"
29084 "\n"
29085 msgstr ""
29086
29087 #. type: textblock
29088 #: ../fish/guestfish-commands.pod:7
29089 msgid ""
29090 "This creates an empty (zeroed) file of the given size, and then adds so it "
29091 "can be further examined."
29092 msgstr ""
29093
29094 #. type: textblock
29095 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
29096 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
29097 msgstr ""
29098
29099 #. type: textblock
29100 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
29101 msgid "Size can be specified using standard suffixes, eg. C<1M>."
29102 msgstr ""
29103
29104 #. type: textblock
29105 #: ../fish/guestfish-commands.pod:14
29106 msgid ""
29107 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
29108 "image, see L</PREPARED DISK IMAGES>."
29109 msgstr ""
29110
29111 #. type: =head2
29112 #: ../fish/guestfish-commands.pod:17
29113 msgid "copy-in"
29114 msgstr ""
29115
29116 #. type: verbatim
29117 #: ../fish/guestfish-commands.pod:19
29118 #, no-wrap
29119 msgid ""
29120 " copy-in local [local ...] /remotedir\n"
29121 "\n"
29122 msgstr ""
29123
29124 #. type: textblock
29125 #: ../fish/guestfish-commands.pod:21
29126 msgid ""
29127 "C<copy-in> copies local files or directories recursively into the disk "
29128 "image, placing them in the directory called C</remotedir> (which must "
29129 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and"
29130 " other commands as necessary."
29131 msgstr ""
29132
29133 #. type: textblock
29134 #: ../fish/guestfish-commands.pod:26
29135 msgid ""
29136 "Multiple local files and directories can be specified, but the last "
29137 "parameter must always be a remote directory.  Wildcards cannot be used."
29138 msgstr ""
29139
29140 #. type: =head2
29141 #: ../fish/guestfish-commands.pod:30
29142 msgid "copy-out"
29143 msgstr ""
29144
29145 #. type: verbatim
29146 #: ../fish/guestfish-commands.pod:32
29147 #, no-wrap
29148 msgid ""
29149 " copy-out remote [remote ...] localdir\n"
29150 "\n"
29151 msgstr ""
29152
29153 #. type: textblock
29154 #: ../fish/guestfish-commands.pod:34
29155 msgid ""
29156 "C<copy-out> copies remote files or directories recursively out of the disk "
29157 "image, placing them on the host disk in a local directory called C<localdir>"
29158 " (which must exist).  This guestfish meta-command turns into a sequence of "
29159 "L</download>, L</tar-out> and other commands as necessary."
29160 msgstr ""
29161
29162 #. type: textblock
29163 #: ../fish/guestfish-commands.pod:40
29164 msgid ""
29165 "Multiple remote files and directories can be specified, but the last "
29166 "parameter must always be a local directory.  To download to the current "
29167 "directory, use C<.> as in:"
29168 msgstr ""
29169
29170 #. type: verbatim
29171 #: ../fish/guestfish-commands.pod:44
29172 #, no-wrap
29173 msgid ""
29174 " copy-out /home .\n"
29175 "\n"
29176 msgstr ""
29177
29178 #. type: textblock
29179 #: ../fish/guestfish-commands.pod:46
29180 msgid ""
29181 "Wildcards cannot be used in the ordinary command, but you can use them with "
29182 "the help of L</glob> like this:"
29183 msgstr ""
29184
29185 #. type: verbatim
29186 #: ../fish/guestfish-commands.pod:49
29187 #, no-wrap
29188 msgid ""
29189 " glob copy-out /home/* .\n"
29190 "\n"
29191 msgstr ""
29192
29193 #. type: =head2
29194 #: ../fish/guestfish-commands.pod:51
29195 msgid "display"
29196 msgstr ""
29197
29198 #. type: verbatim
29199 #: ../fish/guestfish-commands.pod:53
29200 #, no-wrap
29201 msgid ""
29202 " display filename\n"
29203 "\n"
29204 msgstr ""
29205
29206 #. type: textblock
29207 #: ../fish/guestfish-commands.pod:55
29208 msgid ""
29209 "Use C<display> (a graphical display program) to display an image file.  It "
29210 "downloads the file, and runs C<display> on it."
29211 msgstr ""
29212
29213 #. type: textblock
29214 #: ../fish/guestfish-commands.pod:58
29215 msgid ""
29216 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
29217 "environment variable.  For example to use the GNOME display program:"
29218 msgstr ""
29219
29220 #. type: verbatim
29221 #: ../fish/guestfish-commands.pod:61
29222 #, no-wrap
29223 msgid ""
29224 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
29225 "\n"
29226 msgstr ""
29227
29228 #. type: textblock
29229 #: ../fish/guestfish-commands.pod:63
29230 msgid "See also L<display(1)>."
29231 msgstr ""
29232
29233 #. type: =head2
29234 #: ../fish/guestfish-commands.pod:65
29235 msgid "echo"
29236 msgstr ""
29237
29238 #. type: verbatim
29239 #: ../fish/guestfish-commands.pod:67
29240 #, no-wrap
29241 msgid ""
29242 " echo [params ...]\n"
29243 "\n"
29244 msgstr ""
29245
29246 #. type: textblock
29247 #: ../fish/guestfish-commands.pod:69
29248 msgid "This echos the parameters to the terminal."
29249 msgstr ""
29250
29251 #. type: =head2
29252 #: ../fish/guestfish-commands.pod:71
29253 msgid "edit"
29254 msgstr ""
29255
29256 #. type: =head2
29257 #: ../fish/guestfish-commands.pod:73
29258 msgid "vi"
29259 msgstr ""
29260
29261 #. type: =head2
29262 #: ../fish/guestfish-commands.pod:75
29263 msgid "emacs"
29264 msgstr ""
29265
29266 #. type: verbatim
29267 #: ../fish/guestfish-commands.pod:77
29268 #, no-wrap
29269 msgid ""
29270 " edit filename\n"
29271 "\n"
29272 msgstr ""
29273
29274 #. type: textblock
29275 #: ../fish/guestfish-commands.pod:79
29276 msgid ""
29277 "This is used to edit a file.  It downloads the file, edits it locally using "
29278 "your editor, then uploads the result."
29279 msgstr ""
29280
29281 #. type: textblock
29282 #: ../fish/guestfish-commands.pod:82
29283 msgid ""
29284 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
29285 "or C<emacs> you will get those corresponding editors."
29286 msgstr ""
29287
29288 #. type: =head2
29289 #: ../fish/guestfish-commands.pod:86
29290 msgid "glob"
29291 msgstr ""
29292
29293 #. type: verbatim
29294 #: ../fish/guestfish-commands.pod:88
29295 #, no-wrap
29296 msgid ""
29297 " glob command args...\n"
29298 "\n"
29299 msgstr ""
29300
29301 #. type: textblock
29302 #: ../fish/guestfish-commands.pod:90
29303 msgid ""
29304 "Expand wildcards in any paths in the args list, and run C<command> "
29305 "repeatedly on each matching path."
29306 msgstr ""
29307
29308 #. type: textblock
29309 #: ../fish/guestfish-commands.pod:93
29310 msgid "See L</WILDCARDS AND GLOBBING>."
29311 msgstr ""
29312
29313 #. type: =head2
29314 #: ../fish/guestfish-commands.pod:95
29315 msgid "hexedit"
29316 msgstr ""
29317
29318 #. type: verbatim
29319 #: ../fish/guestfish-commands.pod:97
29320 #, no-wrap
29321 msgid ""
29322 " hexedit <filename|device>\n"
29323 " hexedit <filename|device> <max>\n"
29324 " hexedit <filename|device> <start> <max>\n"
29325 "\n"
29326 msgstr ""
29327
29328 #. type: textblock
29329 #: ../fish/guestfish-commands.pod:101
29330 msgid ""
29331 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
29332 "device."
29333 msgstr ""
29334
29335 #. type: textblock
29336 #: ../fish/guestfish-commands.pod:104
29337 msgid ""
29338 "This command works by downloading potentially the whole file or device, "
29339 "editing it locally, then uploading it.  If the file or device is large, you "
29340 "have to specify which part you wish to edit by using C<max> and/or C<start> "
29341 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
29342 "usual modifiers allowed such as C<1M> (1 megabyte)."
29343 msgstr ""
29344
29345 #. type: textblock
29346 #: ../fish/guestfish-commands.pod:111
29347 msgid "For example to edit the first few sectors of a disk you might do:"
29348 msgstr ""
29349
29350 #. type: verbatim
29351 #: ../fish/guestfish-commands.pod:114
29352 #, no-wrap
29353 msgid ""
29354 " hexedit /dev/sda 1M\n"
29355 "\n"
29356 msgstr ""
29357
29358 #. type: textblock
29359 #: ../fish/guestfish-commands.pod:116
29360 msgid ""
29361 "which would allow you to edit anywhere within the first megabyte of the "
29362 "disk."
29363 msgstr ""
29364
29365 #. type: textblock
29366 #: ../fish/guestfish-commands.pod:119
29367 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
29368 msgstr ""
29369
29370 #. type: verbatim
29371 #: ../fish/guestfish-commands.pod:121
29372 #, no-wrap
29373 msgid ""
29374 " hexedit /dev/sda1 0x400 0x400\n"
29375 "\n"
29376 msgstr ""
29377
29378 #. type: textblock
29379 #: ../fish/guestfish-commands.pod:123
29380 msgid "(assuming the superblock is in the standard location)."
29381 msgstr ""
29382
29383 #. type: textblock
29384 #: ../fish/guestfish-commands.pod:125
29385 msgid ""
29386 "This command requires the external L<hexedit(1)> program.  You can specify "
29387 "another program to use by setting the C<HEXEDITOR> environment variable."
29388 msgstr ""
29389
29390 #. type: textblock
29391 #: ../fish/guestfish-commands.pod:129
29392 msgid "See also L</hexdump>."
29393 msgstr ""
29394
29395 #. type: =head2
29396 #: ../fish/guestfish-commands.pod:131
29397 msgid "lcd"
29398 msgstr ""
29399
29400 #. type: verbatim
29401 #: ../fish/guestfish-commands.pod:133
29402 #, no-wrap
29403 msgid ""
29404 " lcd directory\n"
29405 "\n"
29406 msgstr ""
29407
29408 #. type: textblock
29409 #: ../fish/guestfish-commands.pod:135
29410 msgid ""
29411 "Change the local directory, ie. the current directory of guestfish itself."
29412 msgstr ""
29413
29414 #. type: textblock
29415 #: ../fish/guestfish-commands.pod:138
29416 msgid "Note that C<!cd> won't do what you might expect."
29417 msgstr ""
29418
29419 #. type: =head2
29420 #: ../fish/guestfish-commands.pod:140
29421 msgid "man"
29422 msgstr ""
29423
29424 #. type: =head2
29425 #: ../fish/guestfish-commands.pod:142
29426 msgid "manual"
29427 msgstr ""
29428
29429 #. type: verbatim
29430 #: ../fish/guestfish-commands.pod:144
29431 #, no-wrap
29432 msgid ""
29433 "  man\n"
29434 "\n"
29435 msgstr ""
29436
29437 #. type: textblock
29438 #: ../fish/guestfish-commands.pod:146
29439 msgid "Opens the manual page for guestfish."
29440 msgstr ""
29441
29442 #. type: =head2
29443 #: ../fish/guestfish-commands.pod:148
29444 msgid "more"
29445 msgstr ""
29446
29447 #. type: =head2
29448 #: ../fish/guestfish-commands.pod:150
29449 msgid "less"
29450 msgstr ""
29451
29452 #. type: verbatim
29453 #: ../fish/guestfish-commands.pod:152
29454 #, no-wrap
29455 msgid ""
29456 " more filename\n"
29457 "\n"
29458 msgstr ""
29459
29460 #. type: verbatim
29461 #: ../fish/guestfish-commands.pod:154
29462 #, no-wrap
29463 msgid ""
29464 " less filename\n"
29465 "\n"
29466 msgstr ""
29467
29468 #. type: textblock
29469 #: ../fish/guestfish-commands.pod:156
29470 msgid "This is used to view a file."
29471 msgstr ""
29472
29473 #. type: textblock
29474 #: ../fish/guestfish-commands.pod:158
29475 msgid ""
29476 "The default viewer is C<$PAGER>.  However if you use the alternate command "
29477 "C<less> you will get the C<less> command specifically."
29478 msgstr ""
29479
29480 #. type: =head2
29481 #: ../fish/guestfish-commands.pod:161
29482 msgid "reopen"
29483 msgstr ""
29484
29485 #. type: verbatim
29486 #: ../fish/guestfish-commands.pod:163
29487 #, no-wrap
29488 msgid ""
29489 "  reopen\n"
29490 "\n"
29491 msgstr ""
29492
29493 #. type: textblock
29494 #: ../fish/guestfish-commands.pod:165
29495 msgid ""
29496 "Close and reopen the libguestfs handle.  It is not necessary to use this "
29497 "normally, because the handle is closed properly when guestfish exits.  "
29498 "However this is occasionally useful for testing."
29499 msgstr ""
29500
29501 #. type: =head2
29502 #: ../fish/guestfish-commands.pod:169
29503 msgid "sparse"
29504 msgstr ""
29505
29506 #. type: verbatim
29507 #: ../fish/guestfish-commands.pod:171
29508 #, no-wrap
29509 msgid ""
29510 " sparse filename size\n"
29511 "\n"
29512 msgstr ""
29513
29514 #. type: textblock
29515 #: ../fish/guestfish-commands.pod:173
29516 msgid ""
29517 "This creates an empty sparse file of the given size, and then adds so it can"
29518 " be further examined."
29519 msgstr ""
29520
29521 #. type: textblock
29522 #: ../fish/guestfish-commands.pod:176
29523 msgid ""
29524 "In all respects it works the same as the L</alloc> command, except that the "
29525 "image file is allocated sparsely, which means that disk blocks are not "
29526 "assigned to the file until they are needed.  Sparse disk files only use "
29527 "space when written to, but they are slower and there is a danger you could "
29528 "run out of real disk space during a write operation."
29529 msgstr ""
29530
29531 #. type: =head2
29532 #: ../fish/guestfish-commands.pod:186
29533 msgid "supported"
29534 msgstr ""
29535
29536 #. type: verbatim
29537 #: ../fish/guestfish-commands.pod:188
29538 #, no-wrap
29539 msgid ""
29540 " supported\n"
29541 "\n"
29542 msgstr ""
29543
29544 #. type: textblock
29545 #: ../fish/guestfish-commands.pod:190
29546 msgid ""
29547 "This command returns a list of the optional groups known to the daemon, and "
29548 "indicates which ones are supported by this build of the libguestfs "
29549 "appliance."
29550 msgstr ""
29551
29552 #. type: textblock
29553 #: ../fish/guestfish-commands.pod:194
29554 msgid "See also L<guestfs(3)/AVAILABILITY>."
29555 msgstr ""
29556
29557 #. type: =head2
29558 #: ../fish/guestfish-commands.pod:196
29559 msgid "time"
29560 msgstr ""
29561
29562 #. type: verbatim
29563 #: ../fish/guestfish-commands.pod:198
29564 #, no-wrap
29565 msgid ""
29566 " time command args...\n"
29567 "\n"
29568 msgstr ""
29569
29570 #. type: textblock
29571 #: ../fish/guestfish-commands.pod:200
29572 msgid ""
29573 "Run the command as usual, but print the elapsed time afterwards.  This can "
29574 "be useful for benchmarking operations."
29575 msgstr ""
29576
29577 #. type: textblock
29578 #: ../test-tool/libguestfs-test-tool.pod:5
29579 msgid "libguestfs-test-tool - End user tests for libguestfs"
29580 msgstr ""
29581
29582 #. type: verbatim
29583 #: ../test-tool/libguestfs-test-tool.pod:9
29584 #, no-wrap
29585 msgid ""
29586 " libguestfs-test-tool [--options]\n"
29587 "\n"
29588 msgstr ""
29589
29590 #. type: textblock
29591 #: ../test-tool/libguestfs-test-tool.pod:13
29592 msgid ""
29593 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
29594 "and developers, to allow them to check basic libguestfs functionality is "
29595 "working.  This is needed because libguestfs occasionally breaks for reasons "
29596 "beyond our control: usually because of changes in the underlying qemu or "
29597 "kernel packages, or the host environment."
29598 msgstr ""
29599
29600 #. type: textblock
29601 #: ../test-tool/libguestfs-test-tool.pod:20
29602 msgid "If you suspect a problem in libguestfs, then just run:"
29603 msgstr ""
29604
29605 #. type: verbatim
29606 #: ../test-tool/libguestfs-test-tool.pod:22
29607 #, no-wrap
29608 msgid ""
29609 " libguestfs-test-tool\n"
29610 "\n"
29611 msgstr ""
29612
29613 #. type: textblock
29614 #: ../test-tool/libguestfs-test-tool.pod:24
29615 msgid "It will print lots of diagnostic messages."
29616 msgstr ""
29617
29618 #. type: textblock
29619 #: ../test-tool/libguestfs-test-tool.pod:26
29620 msgid "If it runs to completion successfully, you will see this near the end:"
29621 msgstr ""
29622
29623 #. type: verbatim
29624 #: ../test-tool/libguestfs-test-tool.pod:28
29625 #, no-wrap
29626 msgid ""
29627 " ===== TEST FINISHED OK =====\n"
29628 "\n"
29629 msgstr ""
29630
29631 #. type: textblock
29632 #: ../test-tool/libguestfs-test-tool.pod:30
29633 msgid "and the test tool will exit with code 0."
29634 msgstr ""
29635
29636 #. type: textblock
29637 #: ../test-tool/libguestfs-test-tool.pod:32
29638 msgid ""
29639 "If it fails (and/or exits with non-zero error code), please paste the "
29640 "B<complete, unedited> output of the test tool into a bug report.  More "
29641 "information about reporting bugs can be found on the "
29642 "L<http://libguestfs.org/> website."
29643 msgstr ""
29644
29645 #. type: =item
29646 #: ../test-tool/libguestfs-test-tool.pod:41
29647 msgid "I<--help>"
29648 msgstr ""
29649
29650 #. type: textblock
29651 #: ../test-tool/libguestfs-test-tool.pod:43
29652 msgid "Display short usage information and exit."
29653 msgstr ""
29654
29655 #. type: =item
29656 #: ../test-tool/libguestfs-test-tool.pod:45
29657 msgid "I<--qemu qemu_binary>"
29658 msgstr ""
29659
29660 #. type: textblock
29661 #: ../test-tool/libguestfs-test-tool.pod:47
29662 msgid ""
29663 "If you have downloaded another qemu binary, point this option at the full "
29664 "path of the binary to try it."
29665 msgstr ""
29666
29667 #. type: =item
29668 #: ../test-tool/libguestfs-test-tool.pod:50
29669 msgid "I<--qemudir qemu_source_dir>"
29670 msgstr ""
29671
29672 #. type: textblock
29673 #: ../test-tool/libguestfs-test-tool.pod:52
29674 msgid ""
29675 "If you have compiled qemu from source, point this option at the source "
29676 "directory to try it."
29677 msgstr ""
29678
29679 #. type: =item
29680 #: ../test-tool/libguestfs-test-tool.pod:55
29681 msgid "I<--timeout N>"
29682 msgstr ""
29683
29684 #. type: textblock
29685 #: ../test-tool/libguestfs-test-tool.pod:57
29686 msgid ""
29687 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
29688 "does not usually need to be adjusted unless your machine is very slow."
29689 msgstr ""
29690
29691 #. type: =head1
29692 #: ../test-tool/libguestfs-test-tool.pod:63
29693 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
29694 msgstr ""
29695
29696 #. type: textblock
29697 #: ../test-tool/libguestfs-test-tool.pod:65
29698 msgid ""
29699 "If you have compiled another version of qemu from source and would like to "
29700 "try that, then you can use the I<--qemudir> option to point to the qemu "
29701 "source directory."
29702 msgstr ""
29703
29704 #. type: textblock
29705 #: ../test-tool/libguestfs-test-tool.pod:69
29706 msgid ""
29707 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
29708 "option to point to the binary."
29709 msgstr ""
29710
29711 #. type: textblock
29712 #: ../test-tool/libguestfs-test-tool.pod:72
29713 msgid ""
29714 "When using an alternate qemu with libguestfs, usually you would need to "
29715 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)>)."
29716 "  libguestfs-test-tool writes a temporary qemu wrapper script when you use "
29717 "either of the I<--qemudir> or I<--qemu> options."
29718 msgstr ""
29719
29720 #. type: textblock
29721 #: ../test-tool/libguestfs-test-tool.pod:79
29722 msgid ""
29723 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
29724 "I<1> if there was an error."
29725 msgstr ""
29726
29727 #. type: textblock
29728 #: ../test-tool/libguestfs-test-tool.pod:84
29729 msgid ""
29730 "For the full list of environment variables which may affect libguestfs, "
29731 "please see the L<guestfs(3)> manual page."
29732 msgstr ""
29733
29734 #. type: textblock
29735 #: ../test-tool/libguestfs-test-tool.pod:89
29736 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
29737 msgstr ""
29738
29739 #. type: textblock
29740 #: ../fuse/guestmount.pod:5
29741 msgid ""
29742 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
29743 msgstr ""
29744
29745 #. type: verbatim
29746 #: ../fuse/guestmount.pod:9
29747 #, no-wrap
29748 msgid ""
29749 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
29750 "\n"
29751 msgstr ""
29752
29753 #. type: verbatim
29754 #: ../fuse/guestmount.pod:11
29755 #, no-wrap
29756 msgid ""
29757 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
29758 "\n"
29759 msgstr ""
29760
29761 #. type: verbatim
29762 #: ../fuse/guestmount.pod:13
29763 #, no-wrap
29764 msgid ""
29765 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
29766 "\n"
29767 msgstr ""
29768
29769 #. type: textblock
29770 #: ../fuse/guestmount.pod:17
29771 msgid ""
29772 "You must I<not> use C<guestmount> in read-write mode on live virtual "
29773 "machines.  If you do this, you risk disk corruption in the VM."
29774 msgstr ""
29775
29776 #. type: textblock
29777 #: ../fuse/guestmount.pod:22
29778 msgid ""
29779 "The guestmount program can be used to mount virtual machine filesystems and "
29780 "other disk images on the host.  It uses libguestfs for access to the guest "
29781 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
29782 "a mountable device."
29783 msgstr ""
29784
29785 #. type: textblock
29786 #: ../fuse/guestmount.pod:27
29787 msgid ""
29788 "Along with other options, you have to give at least one device (I<-a> "
29789 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m>"
29790 " option) or use the I<-i> inspection option.  How this works is better "
29791 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
29792 "below."
29793 msgstr ""
29794
29795 #. type: textblock
29796 #: ../fuse/guestmount.pod:33
29797 msgid ""
29798 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
29799 "by you, and the filesystem will not be visible to any other users unless you"
29800 " make certain global configuration changes to C</etc/fuse.conf>.  To unmount"
29801 " the filesystem, use the C<fusermount -u> command."
29802 msgstr ""
29803
29804 #. type: textblock
29805 #: ../fuse/guestmount.pod:41
29806 msgid ""
29807 "For a typical Windows guest which has its main filesystem on the first "
29808 "partition:"
29809 msgstr ""
29810
29811 #. type: verbatim
29812 #: ../fuse/guestmount.pod:44
29813 #, no-wrap
29814 msgid ""
29815 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
29816 "\n"
29817 msgstr ""
29818
29819 #. type: textblock
29820 #: ../fuse/guestmount.pod:46
29821 msgid ""
29822 "For a typical Linux guest which has a /boot filesystem on the first "
29823 "partition, and the root filesystem on a logical volume:"
29824 msgstr ""
29825
29826 #. type: verbatim
29827 #: ../fuse/guestmount.pod:49
29828 #, no-wrap
29829 msgid ""
29830 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
29831 "\n"
29832 msgstr ""
29833
29834 #. type: textblock
29835 #: ../fuse/guestmount.pod:51
29836 msgid "To get libguestfs to detect guest mountpoints for you:"
29837 msgstr ""
29838
29839 #. type: verbatim
29840 #: ../fuse/guestmount.pod:53
29841 #, no-wrap
29842 msgid ""
29843 " guestmount -a guest.img -i --ro /mnt\n"
29844 "\n"
29845 msgstr ""
29846
29847 #. type: textblock
29848 #: ../fuse/guestmount.pod:55
29849 msgid "For a libvirt guest called \"Guest\" you could do:"
29850 msgstr ""
29851
29852 #. type: verbatim
29853 #: ../fuse/guestmount.pod:57
29854 #, no-wrap
29855 msgid ""
29856 " guestmount -d Guest -i --ro /mnt\n"
29857 "\n"
29858 msgstr ""
29859
29860 #. type: textblock
29861 #: ../fuse/guestmount.pod:59
29862 msgid ""
29863 "If you don't know what filesystems are contained in a guest or disk image, "
29864 "use L<virt-filesystems(1)> first:"
29865 msgstr ""
29866
29867 #. type: verbatim
29868 #: ../fuse/guestmount.pod:62
29869 #, no-wrap
29870 msgid ""
29871 " virt-filesystems MyGuest\n"
29872 "\n"
29873 msgstr ""
29874
29875 #. type: textblock
29876 #: ../fuse/guestmount.pod:64
29877 msgid ""
29878 "If you want to trace the libguestfs calls but without excessive debugging "
29879 "information, we recommend:"
29880 msgstr ""
29881
29882 #. type: verbatim
29883 #: ../fuse/guestmount.pod:67
29884 #, no-wrap
29885 msgid ""
29886 " guestmount [...] --trace /mnt\n"
29887 "\n"
29888 msgstr ""
29889
29890 #. type: textblock
29891 #: ../fuse/guestmount.pod:69
29892 msgid "If you want to debug the program, we recommend:"
29893 msgstr ""
29894
29895 #. type: verbatim
29896 #: ../fuse/guestmount.pod:71
29897 #, no-wrap
29898 msgid ""
29899 " guestmount [...] --trace --verbose /mnt\n"
29900 "\n"
29901 msgstr ""
29902
29903 #. type: =head1
29904 #: ../fuse/guestmount.pod:73
29905 msgid "NOTES"
29906 msgstr ""
29907
29908 #. type: =head2
29909 #: ../fuse/guestmount.pod:75
29910 msgid "Other users cannot see the filesystem by default"
29911 msgstr ""
29912
29913 #. type: textblock
29914 #: ../fuse/guestmount.pod:77
29915 msgid ""
29916 "If you mount a filesystem as one user (eg. root), then other users will not "
29917 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
29918 "option when mounting:"
29919 msgstr ""
29920
29921 #. type: verbatim
29922 #: ../fuse/guestmount.pod:81
29923 #, no-wrap
29924 msgid ""
29925 " sudo guestmount [...] -o allow_other /mnt\n"
29926 "\n"
29927 msgstr ""
29928
29929 #. type: =item
29930 #: ../fuse/guestmount.pod:87
29931 msgid "B<-a image> | B<--add image>"
29932 msgstr ""
29933
29934 #. type: textblock
29935 #: ../fuse/guestmount.pod:89
29936 msgid "Add a block device or virtual machine image."
29937 msgstr ""
29938
29939 #. type: =item
29940 #: ../fuse/guestmount.pod:94
29941 msgid "B<-c URI> | B<--connect URI>"
29942 msgstr ""
29943
29944 #. type: =item
29945 #: ../fuse/guestmount.pod:100
29946 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
29947 msgstr ""
29948
29949 #. type: =item
29950 #: ../fuse/guestmount.pod:108
29951 msgid "B<--dir-cache-timeout N>"
29952 msgstr ""
29953
29954 #. type: textblock
29955 #: ../fuse/guestmount.pod:110
29956 msgid ""
29957 "Set the readdir cache timeout to I<N> seconds, the default being 60 seconds."
29958 "  The readdir cache [actually, there are several semi-independent caches] is"
29959 " populated after a readdir(2) call with the stat and extended attributes of "
29960 "the files in the directory, in anticipation that they will be requested soon"
29961 " after."
29962 msgstr ""
29963
29964 #. type: textblock
29965 #: ../fuse/guestmount.pod:116
29966 msgid ""
29967 "There is also a different attribute cache implemented by FUSE (see the FUSE "
29968 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
29969 "requests, only cache existing ones."
29970 msgstr ""
29971
29972 #. type: =item
29973 #: ../fuse/guestmount.pod:127
29974 msgid "B<--format=raw|qcow2|..> | B<--format>"
29975 msgstr ""
29976
29977 #. type: textblock
29978 #: ../fuse/guestmount.pod:134
29979 msgid ""
29980 "If you have untrusted raw-format guest disk images, you should use this "
29981 "option to specify the disk format.  This avoids a possible security problem "
29982 "with malicious guests (CVE-2010-3851).  See also "
29983 "L<guestfs(3)/guestfs_add_drive_opts>."
29984 msgstr ""
29985
29986 #. type: =item
29987 #: ../fuse/guestmount.pod:139
29988 msgid "B<--fuse-help>"
29989 msgstr ""
29990
29991 #. type: textblock
29992 #: ../fuse/guestmount.pod:141
29993 msgid "Display help on special FUSE options (see I<-o> below)."
29994 msgstr ""
29995
29996 #. type: textblock
29997 #: ../fuse/guestmount.pod:145
29998 msgid "Display brief help and exit."
29999 msgstr ""
30000
30001 #. type: =item
30002 #: ../fuse/guestmount.pod:147
30003 msgid "B<-i> | B<--inspector>"
30004 msgstr ""
30005
30006 #. type: textblock
30007 #: ../fuse/guestmount.pod:167
30008 msgid ""
30009 "Mount the named partition or logical volume on the given mountpoint B<in the"
30010 " guest> (this has nothing to do with mountpoints in the host)."
30011 msgstr ""
30012
30013 #. type: textblock
30014 #: ../fuse/guestmount.pod:170
30015 msgid ""
30016 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
30017 "something on C</>."
30018 msgstr ""
30019
30020 #. type: =item
30021 #: ../fuse/guestmount.pod:183
30022 msgid "B<-n> | B<--no-sync>"
30023 msgstr ""
30024
30025 #. type: textblock
30026 #: ../fuse/guestmount.pod:185
30027 msgid ""
30028 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
30029 "unmounted.  If you specify this option, then we don't attempt to sync the "
30030 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
30031 msgstr ""
30032
30033 #. type: =item
30034 #: ../fuse/guestmount.pod:190
30035 msgid "B<-o option> | B<--option option>"
30036 msgstr ""
30037
30038 #. type: textblock
30039 #: ../fuse/guestmount.pod:192
30040 msgid "Pass extra options to FUSE."
30041 msgstr ""
30042
30043 #. type: textblock
30044 #: ../fuse/guestmount.pod:194
30045 msgid ""
30046 "To get a list of all the extra options supported by FUSE, use the command "
30047 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
30048 "of them are a good idea."
30049 msgstr ""
30050
30051 #. type: verbatim
30052 #: ../fuse/guestmount.pod:198
30053 #, no-wrap
30054 msgid ""
30055 " guestmount --fuse-help\n"
30056 "\n"
30057 msgstr ""
30058
30059 #. type: textblock
30060 #: ../fuse/guestmount.pod:200
30061 msgid "Some potentially useful FUSE options:"
30062 msgstr ""
30063
30064 #. type: =item
30065 #: ../fuse/guestmount.pod:204
30066 msgid "B<-o allow_other>"
30067 msgstr ""
30068
30069 #. type: textblock
30070 #: ../fuse/guestmount.pod:206
30071 msgid "Allow other users to see the filesystem."
30072 msgstr ""
30073
30074 #. type: =item
30075 #: ../fuse/guestmount.pod:208
30076 msgid "B<-o attr_timeout=N>"
30077 msgstr ""
30078
30079 #. type: textblock
30080 #: ../fuse/guestmount.pod:210
30081 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
30082 msgstr ""
30083
30084 #. type: =item
30085 #: ../fuse/guestmount.pod:212
30086 msgid "B<-o kernel_cache>"
30087 msgstr ""
30088
30089 #. type: textblock
30090 #: ../fuse/guestmount.pod:214
30091 msgid ""
30092 "Allow the kernel to cache files (reduces the number of reads that have to go"
30093 " through the L<guestfs(3)> API).  This is generally a good idea if you can "
30094 "afford the extra memory usage."
30095 msgstr ""
30096
30097 #. type: =item
30098 #: ../fuse/guestmount.pod:218
30099 msgid "B<-o uid=N> B<-o gid=N>"
30100 msgstr ""
30101
30102 #. type: textblock
30103 #: ../fuse/guestmount.pod:220
30104 msgid ""
30105 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
30106 "the chosen values."
30107 msgstr ""
30108
30109 #. type: =item
30110 #: ../fuse/guestmount.pod:225
30111 msgid "B<-r> | B<--ro>"
30112 msgstr ""
30113
30114 #. type: textblock
30115 #: ../fuse/guestmount.pod:227
30116 msgid ""
30117 "Add devices and mount everything read-only.  Also disallow writes and make "
30118 "the disk appear read-only to FUSE."
30119 msgstr ""
30120
30121 #. type: textblock
30122 #: ../fuse/guestmount.pod:230
30123 msgid ""
30124 "This is highly recommended if you are not going to edit the guest disk.  If "
30125 "the guest is running and this option is I<not> supplied, then there is a "
30126 "strong risk of disk corruption in the guest.  We try to prevent this from "
30127 "happening, but it is not always possible."
30128 msgstr ""
30129
30130 #. type: textblock
30131 #: ../fuse/guestmount.pod:235
30132 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
30133 msgstr ""
30134
30135 #. type: textblock
30136 #: ../fuse/guestmount.pod:239
30137 msgid "Enable SELinux support for the guest."
30138 msgstr ""
30139
30140 #. type: =item
30141 #: ../fuse/guestmount.pod:241
30142 msgid "B<-v> | B<--verbose>"
30143 msgstr ""
30144
30145 #. type: textblock
30146 #: ../fuse/guestmount.pod:243
30147 msgid "Enable verbose messages from underlying libguestfs."
30148 msgstr ""
30149
30150 #. type: =item
30151 #: ../fuse/guestmount.pod:245
30152 msgid "B<-V> | B<--version>"
30153 msgstr ""
30154
30155 #. type: textblock
30156 #: ../fuse/guestmount.pod:247
30157 msgid "Display the program version and exit."
30158 msgstr ""
30159
30160 #. type: =item
30161 #: ../fuse/guestmount.pod:249
30162 msgid "B<-w> | B<--rw>"
30163 msgstr ""
30164
30165 #. type: textblock
30166 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
30167 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
30168 msgstr ""
30169
30170 #. type: =item
30171 #: ../fuse/guestmount.pod:256
30172 msgid "B<-x> | B<--trace>"
30173 msgstr ""
30174
30175 #. type: textblock
30176 #: ../fuse/guestmount.pod:258
30177 msgid "Trace libguestfs calls and entry into each FUSE function."
30178 msgstr ""
30179
30180 #. type: textblock
30181 #: ../fuse/guestmount.pod:260
30182 msgid "This also stops the daemon from forking into the background."
30183 msgstr ""
30184
30185 #. type: textblock
30186 #: ../fuse/guestmount.pod:281
30187 msgid ""
30188 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L"
30189 "<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
30190 "L<http://fuse.sf.net/>."
30191 msgstr ""
30192
30193 #. type: textblock
30194 #: ../fuse/guestmount.pod:296
30195 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
30196 msgstr ""
30197
30198 #. type: textblock
30199 #: ../tools/virt-win-reg.pl:37
30200 msgid ""
30201 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
30202 "guest"
30203 msgstr ""
30204
30205 #. type: verbatim
30206 #: ../tools/virt-win-reg.pl:41
30207 #, no-wrap
30208 msgid ""
30209 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
30210 "\n"
30211 msgstr ""
30212
30213 #. type: verbatim
30214 #: ../tools/virt-win-reg.pl:43
30215 #, no-wrap
30216 msgid ""
30217 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
30218 "\n"
30219 msgstr ""
30220
30221 #. type: verbatim
30222 #: ../tools/virt-win-reg.pl:45
30223 #, no-wrap
30224 msgid ""
30225 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
30226 "\n"
30227 msgstr ""
30228
30229 #. type: verbatim
30230 #: ../tools/virt-win-reg.pl:47
30231 #, no-wrap
30232 msgid ""
30233 " virt-win-reg --merge domname [input.reg ...]\n"
30234 "\n"
30235 msgstr ""
30236
30237 #. type: verbatim
30238 #: ../tools/virt-win-reg.pl:49
30239 #, no-wrap
30240 msgid ""
30241 " virt-win-reg [--options] disk.img ... # instead of domname\n"
30242 "\n"
30243 msgstr ""
30244
30245 #. type: textblock
30246 #: ../tools/virt-win-reg.pl:53
30247 msgid ""
30248 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
30249 "virtual machines.  If you do this, you I<will> get irreversible disk "
30250 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
30251 "but doesn't catch all cases."
30252 msgstr ""
30253
30254 #. type: textblock
30255 #: ../tools/virt-win-reg.pl:58
30256 msgid ""
30257 "Modifying the Windows Registry is an inherently risky operation.  The format"
30258 " is deliberately obscure and undocumented, and Registry changes can leave "
30259 "the system unbootable.  Therefore when using the I<--merge> option, make "
30260 "sure you have a reliable backup first."
30261 msgstr ""
30262
30263 #. type: textblock
30264 #: ../tools/virt-win-reg.pl:65
30265 msgid ""
30266 "This program can export and merge Windows Registry entries from a Windows "
30267 "guest."
30268 msgstr ""
30269
30270 #. type: textblock
30271 #: ../tools/virt-win-reg.pl:68
30272 msgid ""
30273 "The first parameter is the libvirt guest name or the raw disk image of a "
30274 "Windows guest."
30275 msgstr ""
30276
30277 #. type: textblock
30278 #: ../tools/virt-win-reg.pl:71
30279 msgid ""
30280 "If I<--merge> is I<not> specified, then the chosen registry key is "
30281 "displayed/exported (recursively).  For example:"
30282 msgstr ""
30283
30284 #. type: verbatim
30285 #: ../tools/virt-win-reg.pl:74
30286 #, no-wrap
30287 msgid ""
30288 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
30289 "\n"
30290 msgstr ""
30291
30292 #. type: textblock
30293 #: ../tools/virt-win-reg.pl:76
30294 msgid ""
30295 "You can also display single values from within registry keys, for example:"
30296 msgstr ""
30297
30298 #. type: verbatim
30299 #: ../tools/virt-win-reg.pl:79
30300 #, no-wrap
30301 msgid ""
30302 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
30303 " $ virt-win-reg Windows7 $cvkey ProductName\n"
30304 " Windows 7 Enterprise\n"
30305 "\n"
30306 msgstr ""
30307
30308 #. type: textblock
30309 #: ../tools/virt-win-reg.pl:83
30310 msgid ""
30311 "With I<--merge>, you can merge a textual regedit file into the Windows "
30312 "Registry:"
30313 msgstr ""
30314
30315 #. type: verbatim
30316 #: ../tools/virt-win-reg.pl:86
30317 #, no-wrap
30318 msgid ""
30319 " $ virt-win-reg --merge Windows7 changes.reg\n"
30320 "\n"
30321 msgstr ""
30322
30323 #. type: =head1
30324 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
30325 msgid "NOTE"
30326 msgstr ""
30327
30328 #. type: textblock
30329 #: ../tools/virt-win-reg.pl:90
30330 msgid ""
30331 "This program is only meant for simple access to the registry.  If you want "
30332 "to do complicated things with the registry, we suggest you download the "
30333 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)>"
30334 " and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
30335 "L<hivexregedit(1)>."
30336 msgstr ""
30337
30338 #. type: textblock
30339 #: ../tools/virt-win-reg.pl:106 ../tools/virt-list-filesystems.pl:63
30340 #: ../tools/virt-tar.pl:113 ../tools/virt-make-fs.pl:163
30341 #: ../tools/virt-list-partitions.pl:64
30342 msgid "Display brief help."
30343 msgstr ""
30344
30345 #. type: textblock
30346 #: ../tools/virt-win-reg.pl:114 ../tools/virt-list-filesystems.pl:71
30347 #: ../tools/virt-tar.pl:121 ../tools/virt-make-fs.pl:171
30348 #: ../tools/virt-list-partitions.pl:72
30349 msgid "Display version number and exit."
30350 msgstr ""
30351
30352 #. type: =item
30353 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
30354 msgid "B<--debug>"
30355 msgstr ""
30356
30357 #. type: textblock
30358 #: ../tools/virt-win-reg.pl:122
30359 msgid "Enable debugging messages."
30360 msgstr ""
30361
30362 #. type: =item
30363 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77
30364 #: ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
30365 msgid "B<--connect URI> | B<-c URI>"
30366 msgstr ""
30367
30368 #. type: textblock
30369 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79
30370 #: ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
30371 msgid ""
30372 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
30373 "to the default libvirt hypervisor."
30374 msgstr ""
30375
30376 #. type: textblock
30377 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82
30378 #: ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
30379 msgid ""
30380 "If you specify guest block devices directly, then libvirt is not used at "
30381 "all."
30382 msgstr ""
30383
30384 #. type: =item
30385 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89
30386 #: ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
30387 msgid "B<--format> raw"
30388 msgstr ""
30389
30390 #. type: textblock
30391 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91
30392 #: ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
30393 msgid ""
30394 "Specify the format of disk images given on the command line.  If this is "
30395 "omitted then the format is autodetected from the content of the disk image."
30396 msgstr ""
30397
30398 #. type: textblock
30399 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95
30400 #: ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
30401 msgid ""
30402 "If disk images are requested from libvirt, then this program asks libvirt "
30403 "for this information.  In this case, the value of the format parameter is "
30404 "ignored."
30405 msgstr ""
30406
30407 #. type: textblock
30408 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99
30409 #: ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
30410 msgid ""
30411 "If working with untrusted raw-format guest disk images, you should ensure "
30412 "the format is always specified."
30413 msgstr ""
30414
30415 #. type: =item
30416 #: ../tools/virt-win-reg.pl:157
30417 msgid "B<--merge>"
30418 msgstr ""
30419
30420 #. type: textblock
30421 #: ../tools/virt-win-reg.pl:159
30422 msgid ""
30423 "In merge mode, this merges a textual regedit file into the Windows Registry "
30424 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
30425 "displays or exports Registry entries instead."
30426 msgstr ""
30427
30428 #. type: textblock
30429 #: ../tools/virt-win-reg.pl:163
30430 msgid ""
30431 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
30432 "result in disk corruption.  However exporting (without this flag)  is always"
30433 " safe."
30434 msgstr ""
30435
30436 #. type: =item
30437 #: ../tools/virt-win-reg.pl:171
30438 msgid "B<--encoding> UTF-16LE|ASCII"
30439 msgstr ""
30440
30441 #. type: textblock
30442 #: ../tools/virt-win-reg.pl:173
30443 msgid ""
30444 "When merging (only), you may need to specify the encoding for strings to be "
30445 "used in the hive file.  This is explained in detail in "
30446 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
30447 msgstr ""
30448
30449 #. type: textblock
30450 #: ../tools/virt-win-reg.pl:177
30451 msgid ""
30452 "The default is to use UTF-16LE, which should work with recent versions of "
30453 "Windows."
30454 msgstr ""
30455
30456 #. type: =item
30457 #: ../tools/virt-win-reg.pl:184
30458 msgid "B<--unsafe-printable-strings>"
30459 msgstr ""
30460
30461 #. type: textblock
30462 #: ../tools/virt-win-reg.pl:186
30463 msgid ""
30464 "When exporting (only), assume strings are UTF-16LE and print them as strings"
30465 " instead of hex sequences.  Remove the final zero codepoint from strings if "
30466 "present."
30467 msgstr ""
30468
30469 #. type: textblock
30470 #: ../tools/virt-win-reg.pl:190
30471 msgid ""
30472 "This is unsafe and does not preserve the fidelity of strings in the original"
30473 " Registry for various reasons:"
30474 msgstr ""
30475
30476 #. type: textblock
30477 #: ../tools/virt-win-reg.pl:197
30478 msgid ""
30479 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
30480 "other encodings will be corrupted by this transformation."
30481 msgstr ""
30482
30483 #. type: textblock
30484 #: ../tools/virt-win-reg.pl:202
30485 msgid ""
30486 "Assumes that everything which has type 1 or 2 is really a string and that "
30487 "everything else is not a string, but the type field in real Registries is "
30488 "not reliable."
30489 msgstr ""
30490
30491 #. type: textblock
30492 #: ../tools/virt-win-reg.pl:208
30493 msgid ""
30494 "Loses information about whether a zero codepoint followed the string in the "
30495 "Registry or not."
30496 msgstr ""
30497
30498 #. type: textblock
30499 #: ../tools/virt-win-reg.pl:213
30500 msgid ""
30501 "This all happens because the Registry itself contains no information about "
30502 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
30503 msgstr ""
30504
30505 #. type: textblock
30506 #: ../tools/virt-win-reg.pl:217
30507 msgid ""
30508 "You should only use this option for quick hacking and debugging of the "
30509 "Registry contents, and I<never> use it if the output is going to be passed "
30510 "into another program or stored in another Registry."
30511 msgstr ""
30512
30513 #. type: =head1
30514 #: ../tools/virt-win-reg.pl:554
30515 msgid "SUPPORTED SYSTEMS"
30516 msgstr ""
30517
30518 #. type: textblock
30519 #: ../tools/virt-win-reg.pl:556
30520 msgid ""
30521 "The program currently supports Windows NT-derived guests starting with "
30522 "Windows XP through to at least Windows 7."
30523 msgstr ""
30524
30525 #. type: textblock
30526 #: ../tools/virt-win-reg.pl:559
30527 msgid "The following Registry keys are supported:"
30528 msgstr ""
30529
30530 #. type: =item
30531 #: ../tools/virt-win-reg.pl:563
30532 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
30533 msgstr ""
30534
30535 #. type: =item
30536 #: ../tools/virt-win-reg.pl:565
30537 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
30538 msgstr ""
30539
30540 #. type: =item
30541 #: ../tools/virt-win-reg.pl:567
30542 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
30543 msgstr ""
30544
30545 #. type: =item
30546 #: ../tools/virt-win-reg.pl:569
30547 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
30548 msgstr ""
30549
30550 #. type: =item
30551 #: ../tools/virt-win-reg.pl:571
30552 msgid "C<HKEY_USERS\\.DEFAULT>"
30553 msgstr ""
30554
30555 #. type: =item
30556 #: ../tools/virt-win-reg.pl:573
30557 msgid "C<HKEY_USERS\\I<SID>>"
30558 msgstr ""
30559
30560 #. type: textblock
30561 #: ../tools/virt-win-reg.pl:575
30562 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
30563 msgstr ""
30564
30565 #. type: =item
30566 #: ../tools/virt-win-reg.pl:577
30567 msgid "C<HKEY_USERS\\I<username>>"
30568 msgstr ""
30569
30570 #. type: textblock
30571 #: ../tools/virt-win-reg.pl:579
30572 msgid ""
30573 "where I<username> is a local user name (this is a libguestfs extension)."
30574 msgstr ""
30575
30576 #. type: textblock
30577 #: ../tools/virt-win-reg.pl:583
30578 msgid ""
30579 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for"
30580 " C<HKEY_USERS>."
30581 msgstr ""
30582
30583 #. type: textblock
30584 #: ../tools/virt-win-reg.pl:586
30585 msgid ""
30586 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
30587 "supported (there is no \"current user\")."
30588 msgstr ""
30589
30590 #. type: =head1
30591 #: ../tools/virt-win-reg.pl:589
30592 msgid "ENCODING"
30593 msgstr ""
30594
30595 #. type: textblock
30596 #: ../tools/virt-win-reg.pl:591
30597 msgid ""
30598 "C<virt-win-reg> expects that regedit files have already been reencoded in "
30599 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
30600 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
30601 "Windows-style line endings, you may need to reencode the whole file before "
30602 "or after processing."
30603 msgstr ""
30604
30605 #. type: textblock
30606 #: ../tools/virt-win-reg.pl:597
30607 msgid ""
30608 "To reencode a file from Windows format to Linux (before processing it with "
30609 "the I<--merge> option), you would do something like this:"
30610 msgstr ""
30611
30612 #. type: verbatim
30613 #: ../tools/virt-win-reg.pl:600
30614 #, no-wrap
30615 msgid ""
30616 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
30617 "\n"
30618 msgstr ""
30619
30620 #. type: textblock
30621 #: ../tools/virt-win-reg.pl:602
30622 msgid ""
30623 "To go in the opposite direction, after exporting and before sending the file"
30624 " to a Windows user, do something like this:"
30625 msgstr ""
30626
30627 #. type: verbatim
30628 #: ../tools/virt-win-reg.pl:605
30629 #, no-wrap
30630 msgid ""
30631 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
30632 "\n"
30633 msgstr ""
30634
30635 #. type: textblock
30636 #: ../tools/virt-win-reg.pl:607
30637 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
30638 msgstr ""
30639
30640 #. type: textblock
30641 #: ../tools/virt-win-reg.pl:609
30642 msgid ""
30643 "If you are unsure about the current encoding, use the L<file(1)> command.  "
30644 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
30645 "style (CRLF) line endings, like this:"
30646 msgstr ""
30647
30648 #. type: verbatim
30649 #: ../tools/virt-win-reg.pl:613
30650 #, no-wrap
30651 msgid ""
30652 " $ file software.reg\n"
30653 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
30654 " with CRLF line terminators\n"
30655 "\n"
30656 msgstr ""
30657
30658 #. type: textblock
30659 #: ../tools/virt-win-reg.pl:617
30660 msgid "This file would need conversion before you could I<--merge> it."
30661 msgstr ""
30662
30663 #. type: =head1
30664 #: ../tools/virt-win-reg.pl:619
30665 msgid "CurrentControlSet etc."
30666 msgstr ""
30667
30668 #. type: textblock
30669 #: ../tools/virt-win-reg.pl:621
30670 msgid ""
30671 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
30672 "Registry at the level of the hive file, and therefore you cannot modify "
30673 "these."
30674 msgstr ""
30675
30676 #. type: textblock
30677 #: ../tools/virt-win-reg.pl:625
30678 msgid ""
30679 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
30680 "circumstances it might refer to another control set.  The way to find out is"
30681 " to look at the C<HKLM\\SYSTEM\\Select> key:"
30682 msgstr ""
30683
30684 #. type: verbatim
30685 #: ../tools/virt-win-reg.pl:629
30686 #, no-wrap
30687 msgid ""
30688 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
30689 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
30690 " \"Current\"=dword:00000001\n"
30691 " \"Default\"=dword:00000001\n"
30692 " \"Failed\"=dword:00000000\n"
30693 " \"LastKnownGood\"=dword:00000002\n"
30694 "\n"
30695 msgstr ""
30696
30697 #. type: textblock
30698 #: ../tools/virt-win-reg.pl:636
30699 msgid "\"Current\" is the one which Windows will choose when it boots."
30700 msgstr ""
30701
30702 #. type: textblock
30703 #: ../tools/virt-win-reg.pl:638
30704 msgid ""
30705 "Similarly, other C<Current...> keys in the path may need to be replaced."
30706 msgstr ""
30707
30708 #. type: =head1
30709 #: ../tools/virt-win-reg.pl:641
30710 msgid "WINDOWS TIPS"
30711 msgstr ""
30712
30713 #. type: textblock
30714 #: ../tools/virt-win-reg.pl:643
30715 msgid ""
30716 "Note that some of these tips modify the guest disk image.  The guest I<must>"
30717 " be shut off, else you will get disk corruption."
30718 msgstr ""
30719
30720 #. type: =head2
30721 #: ../tools/virt-win-reg.pl:646
30722 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
30723 msgstr ""
30724
30725 #. type: textblock
30726 #: ../tools/virt-win-reg.pl:648
30727 msgid ""
30728 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
30729 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
30730 "is uploaded into C<C:\\>:"
30731 msgstr ""
30732
30733 #. type: verbatim
30734 #: ../tools/virt-win-reg.pl:652
30735 #, no-wrap
30736 msgid ""
30737 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
30738 "\n"
30739 msgstr ""
30740
30741 #. type: textblock
30742 #: ../tools/virt-win-reg.pl:654
30743 msgid "Prepare a regedit file containing the registry change:"
30744 msgstr ""
30745
30746 #. type: verbatim
30747 #: ../tools/virt-win-reg.pl:656
30748 #, no-wrap
30749 msgid ""
30750 " cat > test.reg <<'EOF'\n"
30751 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
30752 " \"Test\"=\"c:\\\\test.bat\"\n"
30753 " EOF\n"
30754 "\n"
30755 msgstr ""
30756
30757 #. type: textblock
30758 #: ../tools/virt-win-reg.pl:661
30759 msgid ""
30760 "In this example we use the key C<RunOnce> which means that the script will "
30761 "run precisely once when the first user logs in.  If you want it to run every"
30762 " time a user logs in, replace C<RunOnce> with C<Run>."
30763 msgstr ""
30764
30765 #. type: textblock
30766 #: ../tools/virt-win-reg.pl:665
30767 msgid "Now update the registry:"
30768 msgstr ""
30769
30770 #. type: verbatim
30771 #: ../tools/virt-win-reg.pl:667
30772 #, no-wrap
30773 msgid ""
30774 " virt-win-reg --merge WindowsGuest test.reg\n"
30775 "\n"
30776 msgstr ""
30777
30778 #. type: =head2
30779 #: ../tools/virt-win-reg.pl:669
30780 msgid "INSTALLING A SERVICE"
30781 msgstr ""
30782
30783 #. type: textblock
30784 #: ../tools/virt-win-reg.pl:671
30785 msgid ""
30786 "This section assumes you are familiar with Windows services, and you either "
30787 "have a program which handles the Windows Service Control Protocol directly "
30788 "or you want to run any program using a service wrapper like SrvAny or the "
30789 "free RHSrvAny."
30790 msgstr ""
30791
30792 #. type: textblock
30793 #: ../tools/virt-win-reg.pl:676
30794 msgid ""
30795 "First upload the program and optionally the service wrapper.  In this case "
30796 "the test program is called C<test.exe> and we are using the RHSrvAny "
30797 "wrapper:"
30798 msgstr ""
30799
30800 #. type: verbatim
30801 #: ../tools/virt-win-reg.pl:680
30802 #, no-wrap
30803 msgid ""
30804 " guestfish -i -d WindowsGuest <<EOF\n"
30805 "   upload rhsrvany.exe /rhsrvany.exe\n"
30806 "   upload test.exe /test.exe\n"
30807 " EOF\n"
30808 "\n"
30809 msgstr ""
30810
30811 #. type: textblock
30812 #: ../tools/virt-win-reg.pl:685
30813 msgid ""
30814 "Prepare a regedit file containing the registry changes.  In this example, "
30815 "the first registry change is needed for the service itself or the service "
30816 "wrapper (if used).  The second registry change is only needed because I am "
30817 "using the RHSrvAny service wrapper."
30818 msgstr ""
30819
30820 #. type: verbatim
30821 #: ../tools/virt-win-reg.pl:690
30822 #, no-wrap
30823 msgid ""
30824 " cat > service.reg <<'EOF'\n"
30825 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
30826 " \"Type\"=dword:00000010\n"
30827 " \"Start\"=dword:00000002\n"
30828 " \"ErrorControl\"=dword:00000001\n"
30829 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
30830 " \"DisplayName\"=\"RHSrvAny\"\n"
30831 " \"ObjectName\"=\"NetworkService\"\n"
30832 " \n"
30833 msgstr ""
30834
30835 #. type: verbatim
30836 #: ../tools/virt-win-reg.pl:699
30837 #, no-wrap
30838 msgid ""
30839 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
30840 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
30841 " \"PWD\"=\"c:\\\\Temp\"\n"
30842 " EOF\n"
30843 "\n"
30844 msgstr ""
30845
30846 #. type: textblock
30847 #: ../tools/virt-win-reg.pl:710
30848 msgid ""
30849 "For use of C<ControlSet001> see the section above in this manual page.  You "
30850 "may need to adjust this according to the control set that is in use by the "
30851 "guest."
30852 msgstr ""
30853
30854 #. type: textblock
30855 #: ../tools/virt-win-reg.pl:716
30856 msgid ""
30857 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
30858 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
30859 "privileged account."
30860 msgstr ""
30861
30862 #. type: textblock
30863 #: ../tools/virt-win-reg.pl:722
30864 msgid ""
30865 "For the meaning of the magic numbers, see this Microsoft KB article: "
30866 "L<http://support.microsoft.com/kb/103000>."
30867 msgstr ""
30868
30869 #. type: textblock
30870 #: ../tools/virt-win-reg.pl:727
30871 msgid "Update the registry:"
30872 msgstr ""
30873
30874 #. type: verbatim
30875 #: ../tools/virt-win-reg.pl:729
30876 #, no-wrap
30877 msgid ""
30878 " virt-win-reg --merge WindowsGuest service.reg\n"
30879 "\n"
30880 msgstr ""
30881
30882 #. type: =head1
30883 #: ../tools/virt-win-reg.pl:731 ../tools/virt-list-filesystems.pl:182
30884 #: ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:532
30885 #: ../tools/virt-list-partitions.pl:250
30886 msgid "SHELL QUOTING"
30887 msgstr ""
30888
30889 #. type: textblock
30890 #: ../tools/virt-win-reg.pl:733
30891 msgid ""
30892 "Be careful when passing parameters containing C<\\> (backslash) in the "
30893 "shell.  Usually you will have to use 'single quotes' or double backslashes "
30894 "(but not both) to protect them from the shell."
30895 msgstr ""
30896
30897 #. type: textblock
30898 #: ../tools/virt-win-reg.pl:737
30899 msgid "Paths and value names are case-insensitive."
30900 msgstr ""
30901
30902 #. type: textblock
30903 #: ../tools/virt-win-reg.pl:739 ../tools/virt-list-filesystems.pl:184
30904 #: ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:534
30905 #: ../tools/virt-list-partitions.pl:252
30906 msgid ""
30907 "Libvirt guest names can contain arbitrary characters, some of which have "
30908 "meaning to the shell such as C<#> and space.  You may need to quote or "
30909 "escape these characters on the command line.  See the shell manual page "
30910 "L<sh(1)> for details."
30911 msgstr ""
30912
30913 #. type: textblock
30914 #: ../tools/virt-win-reg.pl:746
30915 msgid ""
30916 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
30917 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
30918 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
30919 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30920 msgstr ""
30921
30922 #. type: textblock
30923 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
30924 msgid ""
30925 "When reporting bugs, please enable debugging and capture the I<complete> "
30926 "output:"
30927 msgstr ""
30928
30929 #. type: verbatim
30930 #: ../tools/virt-win-reg.pl:764
30931 #, no-wrap
30932 msgid ""
30933 " export LIBGUESTFS_DEBUG=1\n"
30934 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
30935 "\n"
30936 msgstr ""
30937
30938 #. type: textblock
30939 #: ../tools/virt-win-reg.pl:767
30940 msgid ""
30941 "Attach /tmp/virt-win-reg.log to a new bug report at "
30942 "L<https://bugzilla.redhat.com/>"
30943 msgstr ""
30944
30945 #. type: =head1
30946 #: ../tools/virt-win-reg.pl:770 ../tools/virt-list-filesystems.pl:202
30947 #: ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564
30948 #: ../tools/virt-list-partitions.pl:269
30949 msgid "AUTHOR"
30950 msgstr ""
30951
30952 #. type: textblock
30953 #: ../tools/virt-win-reg.pl:772 ../tools/virt-list-filesystems.pl:204
30954 #: ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566
30955 #: ../tools/virt-list-partitions.pl:271
30956 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
30957 msgstr ""
30958
30959 #. type: textblock
30960 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
30961 msgid "Copyright (C) 2010 Red Hat Inc."
30962 msgstr ""
30963
30964 #. type: textblock
30965 #: ../tools/virt-list-filesystems.pl:32
30966 msgid ""
30967 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
30968 msgstr ""
30969
30970 #. type: verbatim
30971 #: ../tools/virt-list-filesystems.pl:36
30972 #, no-wrap
30973 msgid ""
30974 " virt-list-filesystems [--options] domname\n"
30975 "\n"
30976 msgstr ""
30977
30978 #. type: verbatim
30979 #: ../tools/virt-list-filesystems.pl:38
30980 #, no-wrap
30981 msgid ""
30982 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
30983 "\n"
30984 msgstr ""
30985
30986 #. type: textblock
30987 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
30988 msgid ""
30989 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
30990 "replacement."
30991 msgstr ""
30992
30993 #. type: textblock
30994 #: ../tools/virt-list-filesystems.pl:45
30995 msgid ""
30996 "C<virt-list-filesystems> is a command line tool to list the filesystems that"
30997 " are contained in a virtual machine or disk image."
30998 msgstr ""
30999
31000 #. type: textblock
31001 #: ../tools/virt-list-filesystems.pl:49
31002 msgid ""
31003 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
31004 "functionality.  For more complex cases you should look at the "
31005 "L<guestfish(1)> tool."
31006 msgstr ""
31007
31008 #. type: =item
31009 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
31010 msgid "B<-l> | B<--long>"
31011 msgstr ""
31012
31013 #. type: textblock
31014 #: ../tools/virt-list-filesystems.pl:108
31015 msgid ""
31016 "With this option, C<virt-list-filesystems> displays the type of each "
31017 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
31018 msgstr ""
31019
31020 #. type: =item
31021 #: ../tools/virt-list-filesystems.pl:115
31022 msgid "B<-a> | B<--all>"
31023 msgstr ""
31024
31025 #. type: textblock
31026 #: ../tools/virt-list-filesystems.pl:117
31027 msgid ""
31028 "Normally we only show mountable filesystems.  If this option is given then "
31029 "swap devices are shown too."
31030 msgstr ""
31031
31032 #. type: textblock
31033 #: ../tools/virt-list-filesystems.pl:191
31034 msgid ""
31035 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
31036 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
31037 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
31038 msgstr ""
31039
31040 #. type: textblock
31041 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
31042 msgid "Copyright (C) 2009 Red Hat Inc."
31043 msgstr ""
31044
31045 #. type: textblock
31046 #: ../tools/virt-tar.pl:33
31047 msgid "virt-tar - Extract or upload files to a virtual machine"
31048 msgstr ""
31049
31050 #. type: verbatim
31051 #: ../tools/virt-tar.pl:37
31052 #, no-wrap
31053 msgid ""
31054 " virt-tar [--options] -x domname directory tarball\n"
31055 "\n"
31056 msgstr ""
31057
31058 #. type: verbatim
31059 #: ../tools/virt-tar.pl:39
31060 #, no-wrap
31061 msgid ""
31062 " virt-tar [--options] -u domname tarball directory\n"
31063 "\n"
31064 msgstr ""
31065
31066 #. type: verbatim
31067 #: ../tools/virt-tar.pl:41
31068 #, no-wrap
31069 msgid ""
31070 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
31071 "\n"
31072 msgstr ""
31073
31074 #. type: verbatim
31075 #: ../tools/virt-tar.pl:43
31076 #, no-wrap
31077 msgid ""
31078 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
31079 "\n"
31080 msgstr ""
31081
31082 #. type: textblock
31083 #: ../tools/virt-tar.pl:47
31084 msgid ""
31085 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
31086 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
31087 msgstr ""
31088
31089 #. type: textblock
31090 #: ../tools/virt-tar.pl:52
31091 msgid "Download C</home> from the VM into a local tarball:"
31092 msgstr ""
31093
31094 #. type: verbatim
31095 #: ../tools/virt-tar.pl:54
31096 #, no-wrap
31097 msgid ""
31098 " virt-tar -x domname /home home.tar\n"
31099 "\n"
31100 msgstr ""
31101
31102 #. type: verbatim
31103 #: ../tools/virt-tar.pl:56
31104 #, no-wrap
31105 msgid ""
31106 " virt-tar -zx domname /home home.tar.gz\n"
31107 "\n"
31108 msgstr ""
31109
31110 #. type: textblock
31111 #: ../tools/virt-tar.pl:58
31112 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
31113 msgstr ""
31114
31115 #. type: verbatim
31116 #: ../tools/virt-tar.pl:60
31117 #, no-wrap
31118 msgid ""
31119 " virt-tar -u domname uploadstuff.tar /tmp\n"
31120 "\n"
31121 msgstr ""
31122
31123 #. type: verbatim
31124 #: ../tools/virt-tar.pl:62
31125 #, no-wrap
31126 msgid ""
31127 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
31128 "\n"
31129 msgstr ""
31130
31131 #. type: textblock
31132 #: ../tools/virt-tar.pl:66
31133 msgid ""
31134 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
31135 "virtual machines.  If you do this, you risk disk corruption in the VM.  C"
31136 "<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
31137 msgstr ""
31138
31139 #. type: textblock
31140 #: ../tools/virt-tar.pl:71
31141 msgid ""
31142 "You can use I<-x> (extract) on live virtual machines, but you might get "
31143 "inconsistent results or errors if there is filesystem activity inside the "
31144 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
31145 "work, but the only way to guarantee consistent results is if the virtual "
31146 "machine is shut down."
31147 msgstr ""
31148
31149 #. type: textblock
31150 #: ../tools/virt-tar.pl:79
31151 msgid ""
31152 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
31153 "parts of a guest filesystem.  There are many possibilities: making backups, "
31154 "uploading data files, snooping on guest activity, fixing or customizing "
31155 "guests, etc."
31156 msgstr ""
31157
31158 #. type: textblock
31159 #: ../tools/virt-tar.pl:84
31160 msgid ""
31161 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
31162 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you"
31163 " should look at the L<guestfish(1)> tool."
31164 msgstr ""
31165
31166 #. type: textblock
31167 #: ../tools/virt-tar.pl:88
31168 msgid ""
31169 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
31170 "its contents (recursively) from the virtual machine into a local tarball.  "
31171 "I<-u> uploads from a local tarball, unpacking it into a directory inside the"
31172 " virtual machine.  You cannot use these two options together."
31173 msgstr ""
31174
31175 #. type: textblock
31176 #: ../tools/virt-tar.pl:94
31177 msgid ""
31178 "In addition, you may need to use the I<-z> (gZip) option to enable "
31179 "compression.  When uploading, you have to specify I<-z> if the upload file "
31180 "is compressed because virt-tar won't detect this on its own."
31181 msgstr ""
31182
31183 #. type: textblock
31184 #: ../tools/virt-tar.pl:98
31185 msgid ""
31186 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
31187 "example it cannot do PKZip files or bzip2 compression.  If you want that "
31188 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of"
31189 " the L<libguestfs(3)> API)."
31190 msgstr ""
31191
31192 #. type: =item
31193 #: ../tools/virt-tar.pl:156
31194 msgid "B<-x> | B<--extract> | B<--download>"
31195 msgstr ""
31196
31197 #. type: =item
31198 #: ../tools/virt-tar.pl:158
31199 msgid "B<-u> | B<--upload>"
31200 msgstr ""
31201
31202 #. type: textblock
31203 #: ../tools/virt-tar.pl:160
31204 msgid ""
31205 "Use I<-x> to extract (download) a directory from a virtual machine to a "
31206 "local tarball."
31207 msgstr ""
31208
31209 #. type: textblock
31210 #: ../tools/virt-tar.pl:163
31211 msgid ""
31212 "Use I<-u> to upload and unpack from a local tarball into a virtual machine."
31213 "  Please read the L</WARNING> section above before using this option."
31214 msgstr ""
31215
31216 #. type: textblock
31217 #: ../tools/virt-tar.pl:167
31218 msgid "You must specify exactly one of these options."
31219 msgstr ""
31220
31221 #. type: =item
31222 #: ../tools/virt-tar.pl:173
31223 msgid "B<-z> | B<--gzip>"
31224 msgstr ""
31225
31226 #. type: textblock
31227 #: ../tools/virt-tar.pl:175
31228 msgid "Specify that the input or output tarball is gzip-compressed."
31229 msgstr ""
31230
31231 #. type: textblock
31232 #: ../tools/virt-tar.pl:288
31233 msgid ""
31234 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-"
31235 "copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, "
31236 "L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
31237 "L<http://libguestfs.org/>."
31238 msgstr ""
31239
31240 #. type: textblock
31241 #: ../tools/virt-make-fs.pl:37
31242 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
31243 msgstr ""
31244
31245 #. type: verbatim
31246 #: ../tools/virt-make-fs.pl:41
31247 #, no-wrap
31248 msgid ""
31249 " virt-make-fs [--options] input.tar output.img\n"
31250 "\n"
31251 msgstr ""
31252
31253 #. type: verbatim
31254 #: ../tools/virt-make-fs.pl:43
31255 #, no-wrap
31256 msgid ""
31257 " virt-make-fs [--options] input.tar.gz output.img\n"
31258 "\n"
31259 msgstr ""
31260
31261 #. type: verbatim
31262 #: ../tools/virt-make-fs.pl:45
31263 #, no-wrap
31264 msgid ""
31265 " virt-make-fs [--options] directory output.img\n"
31266 "\n"
31267 msgstr ""
31268
31269 #. type: textblock
31270 #: ../tools/virt-make-fs.pl:49
31271 msgid ""
31272 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
31273 "archive or some files in a directory.  It is similar to tools like "
31274 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
31275 "it can create common filesystem types like ext2/3 or NTFS, which can be "
31276 "useful if you want to attach these filesystems to existing virtual machines "
31277 "(eg. to import large amounts of read-only data to a VM)."
31278 msgstr ""
31279
31280 #. type: textblock
31281 #: ../tools/virt-make-fs.pl:57
31282 msgid "Basic usage is:"
31283 msgstr ""
31284
31285 #. type: verbatim
31286 #: ../tools/virt-make-fs.pl:59
31287 #, no-wrap
31288 msgid ""
31289 " virt-make-fs input output\n"
31290 "\n"
31291 msgstr ""
31292
31293 #. type: textblock
31294 #: ../tools/virt-make-fs.pl:61
31295 msgid ""
31296 "where C<input> is either a directory containing files that you want to add, "
31297 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
31298 "C<output> is a disk image.  The input type is detected automatically.  The "
31299 "output disk image defaults to a raw ext2 image unless you specify extra "
31300 "flags (see L</OPTIONS> below)."
31301 msgstr ""
31302
31303 #. type: =head2
31304 #: ../tools/virt-make-fs.pl:67
31305 msgid "EXTRA SPACE"
31306 msgstr ""
31307
31308 #. type: textblock
31309 #: ../tools/virt-make-fs.pl:69
31310 msgid ""
31311 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
31312 "the files that it contains, but might have extra space.  Depending on how "
31313 "you are going to use the output, you might think this extra space is wasted "
31314 "and want to minimize it, or you might want to leave space so that more files"
31315 " can be added later.  Virt-make-fs defaults to minimizing the extra space, "
31316 "but you can use the I<--size> flag to leave space in the filesystem if you "
31317 "want it."
31318 msgstr ""
31319
31320 #. type: textblock
31321 #: ../tools/virt-make-fs.pl:77
31322 msgid ""
31323 "An alternative way to leave extra space but not make the output image any "
31324 "bigger is to use an alternative disk image format (instead of the default "
31325 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2"
31326 " image format (check your hypervisor supports this before using it).  This "
31327 "allows you to choose a large I<--size> but the extra space won't actually be"
31328 " allocated in the image until you try to store something in it."
31329 msgstr ""
31330
31331 #. type: textblock
31332 #: ../tools/virt-make-fs.pl:85
31333 msgid ""
31334 "Don't forget that you can also use local commands including L<resize2fs(8)> "
31335 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
31336 "to build another image from scratch."
31337 msgstr ""
31338
31339 #. type: =head3
31340 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
31341 #: ../tools/virt-make-fs.pl:142
31342 msgid "EXAMPLE"
31343 msgstr ""
31344
31345 #. type: verbatim
31346 #: ../tools/virt-make-fs.pl:91
31347 #, no-wrap
31348 msgid ""
31349 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
31350 "\n"
31351 msgstr ""
31352
31353 #. type: =head2
31354 #: ../tools/virt-make-fs.pl:93
31355 msgid "FILESYSTEM TYPE"
31356 msgstr ""
31357
31358 #. type: textblock
31359 #: ../tools/virt-make-fs.pl:95
31360 msgid ""
31361 "The default filesystem type is C<ext2>.  Just about any filesystem type that"
31362 " libguestfs supports can be used (but I<not> read-only formats like "
31363 "ISO9660).  Here are some of the more common choices:"
31364 msgstr ""
31365
31366 #. type: =item
31367 #: ../tools/virt-make-fs.pl:101
31368 msgid "I<ext3>"
31369 msgstr ""
31370
31371 #. type: textblock
31372 #: ../tools/virt-make-fs.pl:103
31373 msgid ""
31374 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If"
31375 " you are not going to use the filesystem in a way that requires the journal,"
31376 " then this is just wasted overhead."
31377 msgstr ""
31378
31379 #. type: =item
31380 #: ../tools/virt-make-fs.pl:107
31381 msgid "I<ntfs> or I<vfat>"
31382 msgstr ""
31383
31384 #. type: textblock
31385 #: ../tools/virt-make-fs.pl:109
31386 msgid "Useful if exporting data to a Windows guest."
31387 msgstr ""
31388
31389 #. type: textblock
31390 #: ../tools/virt-make-fs.pl:111
31391 msgid ""
31392 "I<Note for vfat>: The tar archive or local directory must only contain files"
31393 " which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
31394 "program running within libguestfs is unable to change the ownership of non-"
31395 "root files, since vfat itself does not support this."
31396 msgstr ""
31397
31398 #. type: =item
31399 #: ../tools/virt-make-fs.pl:116
31400 msgid "I<minix>"
31401 msgstr ""
31402
31403 #. type: textblock
31404 #: ../tools/virt-make-fs.pl:118
31405 msgid ""
31406 "Lower overhead than C<ext2>, but certain limitations on filename length and "
31407 "total filesystem size."
31408 msgstr ""
31409
31410 #. type: verbatim
31411 #: ../tools/virt-make-fs.pl:125
31412 #, no-wrap
31413 msgid ""
31414 " virt-make-fs --type=minix input minixfs.img\n"
31415 "\n"
31416 msgstr ""
31417
31418 #. type: =head2
31419 #: ../tools/virt-make-fs.pl:127
31420 msgid "TO PARTITION OR NOT TO PARTITION"
31421 msgstr ""
31422
31423 #. type: textblock
31424 #: ../tools/virt-make-fs.pl:129
31425 msgid "Optionally virt-make-fs can add a partition table to the output disk."
31426 msgstr ""
31427
31428 #. type: textblock
31429 #: ../tools/virt-make-fs.pl:131
31430 msgid ""
31431 "Adding a partition can make the disk image more compatible with certain "
31432 "virtualized operating systems which don't expect to see a filesystem "
31433 "directly located on a block device (Linux doesn't care and will happily "
31434 "handle both types)."
31435 msgstr ""
31436
31437 #. type: textblock
31438 #: ../tools/virt-make-fs.pl:136
31439 msgid ""
31440 "On the other hand, if you have a partition table then the output image is no"
31441 " longer a straight filesystem.  For example you cannot run L<fsck(8)> "
31442 "directly on a partitioned disk image.  (However libguestfs tools such as "
31443 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
31444 msgstr ""
31445
31446 #. type: textblock
31447 #: ../tools/virt-make-fs.pl:144
31448 msgid "Add an MBR partition:"
31449 msgstr ""
31450
31451 #. type: verbatim
31452 #: ../tools/virt-make-fs.pl:146
31453 #, no-wrap
31454 msgid ""
31455 " virt-make-fs --partition -- input disk.img\n"
31456 "\n"
31457 msgstr ""
31458
31459 #. type: textblock
31460 #: ../tools/virt-make-fs.pl:148
31461 msgid ""
31462 "If the output disk image could be terabyte-sized or larger, it's better to "
31463 "use an EFI/GPT-compatible partition table:"
31464 msgstr ""
31465
31466 #. type: verbatim
31467 #: ../tools/virt-make-fs.pl:151
31468 #, no-wrap
31469 msgid ""
31470 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
31471 "\n"
31472 msgstr ""
31473
31474 #. type: textblock
31475 #: ../tools/virt-make-fs.pl:179
31476 msgid "Enable debugging information."
31477 msgstr ""
31478
31479 #. type: =item
31480 #: ../tools/virt-make-fs.pl:185
31481 msgid "B<--size=E<lt>NE<gt>>"
31482 msgstr ""
31483
31484 #. type: =item
31485 #: ../tools/virt-make-fs.pl:187
31486 msgid "B<--size=+E<lt>NE<gt>>"
31487 msgstr ""
31488
31489 #. type: =item
31490 #: ../tools/virt-make-fs.pl:189
31491 msgid "B<-s E<lt>NE<gt>>"
31492 msgstr ""
31493
31494 #. type: =item
31495 #: ../tools/virt-make-fs.pl:191
31496 msgid "B<-s +E<lt>NE<gt>>"
31497 msgstr ""
31498
31499 #. type: textblock
31500 #: ../tools/virt-make-fs.pl:193
31501 msgid ""
31502 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
31503 msgstr ""
31504
31505 #. type: textblock
31506 #: ../tools/virt-make-fs.pl:196
31507 msgid ""
31508 "If this option is I<not> given, then the output image will be just large "
31509 "enough to contain all the files, with not much wasted space."
31510 msgstr ""
31511
31512 #. type: textblock
31513 #: ../tools/virt-make-fs.pl:199
31514 msgid ""
31515 "To choose a fixed size output disk, specify an absolute number followed by "
31516 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31517 "Petabytes or Exabytes.  This must be large enough to contain all the input "
31518 "files, else you will get an error."
31519 msgstr ""
31520
31521 #. type: textblock
31522 #: ../tools/virt-make-fs.pl:204
31523 msgid ""
31524 "To leave extra space, specify C<+> (plus sign) and a number followed by "
31525 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31526 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
31527 "the input files, and (approximately) an extra 200 MB free space."
31528 msgstr ""
31529
31530 #. type: textblock
31531 #: ../tools/virt-make-fs.pl:210
31532 msgid ""
31533 "Note that virt-make-fs estimates free space, and therefore will not produce "
31534 "filesystems containing precisely the free space requested.  (It is much more"
31535 " expensive and time-consuming to produce a filesystem which has precisely "
31536 "the desired free space)."
31537 msgstr ""
31538
31539 #. type: =item
31540 #: ../tools/virt-make-fs.pl:219
31541 msgid "B<--format=E<lt>fmtE<gt>>"
31542 msgstr ""
31543
31544 #. type: =item
31545 #: ../tools/virt-make-fs.pl:221
31546 msgid "B<-F E<lt>fmtE<gt>>"
31547 msgstr ""
31548
31549 #. type: textblock
31550 #: ../tools/virt-make-fs.pl:223
31551 msgid "Choose the output disk image format."
31552 msgstr ""
31553
31554 #. type: textblock
31555 #: ../tools/virt-make-fs.pl:225
31556 msgid "The default is C<raw> (raw disk image)."
31557 msgstr ""
31558
31559 #. type: textblock
31560 #: ../tools/virt-make-fs.pl:227
31561 msgid ""
31562 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
31563 "that would really make sense here is C<qcow2>."
31564 msgstr ""
31565
31566 #. type: =item
31567 #: ../tools/virt-make-fs.pl:234
31568 msgid "B<--type=E<lt>fsE<gt>>"
31569 msgstr ""
31570
31571 #. type: =item
31572 #: ../tools/virt-make-fs.pl:236
31573 msgid "B<-t E<lt>fsE<gt>>"
31574 msgstr ""
31575
31576 #. type: textblock
31577 #: ../tools/virt-make-fs.pl:238
31578 msgid "Choose the output filesystem type."
31579 msgstr ""
31580
31581 #. type: textblock
31582 #: ../tools/virt-make-fs.pl:240
31583 msgid "The default is C<ext2>."
31584 msgstr ""
31585
31586 #. type: textblock
31587 #: ../tools/virt-make-fs.pl:242
31588 msgid ""
31589 "Any filesystem which is supported read-write by libguestfs can be used here."
31590 msgstr ""
31591
31592 #. type: =item
31593 #: ../tools/virt-make-fs.pl:249
31594 msgid "B<--partition>"
31595 msgstr ""
31596
31597 #. type: =item
31598 #: ../tools/virt-make-fs.pl:251
31599 msgid "B<--partition=E<lt>parttypeE<gt>>"
31600 msgstr ""
31601
31602 #. type: textblock
31603 #: ../tools/virt-make-fs.pl:253
31604 msgid ""
31605 "If specified, this flag adds an MBR partition table to the output disk "
31606 "image."
31607 msgstr ""
31608
31609 #. type: textblock
31610 #: ../tools/virt-make-fs.pl:256
31611 msgid ""
31612 "You can change the partition table type, eg. I<--partition=gpt> for large "
31613 "disks."
31614 msgstr ""
31615
31616 #. type: textblock
31617 #: ../tools/virt-make-fs.pl:259
31618 msgid ""
31619 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
31620 "might consider the next parameter to be the partition type.  For example:"
31621 msgstr ""
31622
31623 #. type: verbatim
31624 #: ../tools/virt-make-fs.pl:263
31625 #, no-wrap
31626 msgid ""
31627 " virt-make-fs --partition input.tar ...\n"
31628 "\n"
31629 msgstr ""
31630
31631 #. type: textblock
31632 #: ../tools/virt-make-fs.pl:265
31633 msgid ""
31634 "would cause virt-make-fs to think you wanted to use a partition type of "
31635 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
31636 "dash) between options and the input file argument:"
31637 msgstr ""
31638
31639 #. type: verbatim
31640 #: ../tools/virt-make-fs.pl:269
31641 #, no-wrap
31642 msgid ""
31643 " virt-make-fs --partition -- input.tar ...\n"
31644 "\n"
31645 msgstr ""
31646
31647 #. type: textblock
31648 #: ../tools/virt-make-fs.pl:541
31649 msgid ""
31650 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
31651 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
31652 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
31653 msgstr ""
31654
31655 #. type: verbatim
31656 #: ../tools/virt-make-fs.pl:558
31657 #, no-wrap
31658 msgid ""
31659 " export LIBGUESTFS_DEBUG=1\n"
31660 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
31661 "\n"
31662 msgstr ""
31663
31664 #. type: textblock
31665 #: ../tools/virt-make-fs.pl:561
31666 msgid ""
31667 "Attach /tmp/virt-make-fs.log to a new bug report at "
31668 "L<https://bugzilla.redhat.com/>"
31669 msgstr ""
31670
31671 #. type: textblock
31672 #: ../tools/virt-list-partitions.pl:32
31673 msgid ""
31674 "virt-list-partitions - List partitions in a virtual machine or disk image"
31675 msgstr ""
31676
31677 #. type: verbatim
31678 #: ../tools/virt-list-partitions.pl:36
31679 #, no-wrap
31680 msgid ""
31681 " virt-list-partitions [--options] domname\n"
31682 "\n"
31683 msgstr ""
31684
31685 #. type: verbatim
31686 #: ../tools/virt-list-partitions.pl:38
31687 #, no-wrap
31688 msgid ""
31689 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
31690 "\n"
31691 msgstr ""
31692
31693 #. type: textblock
31694 #: ../tools/virt-list-partitions.pl:45
31695 msgid ""
31696 "C<virt-list-partitions> is a command line tool to list the partitions that "
31697 "are contained in a virtual machine or disk image.  It is mainly useful as a "
31698 "first step to using L<virt-resize(1)>."
31699 msgstr ""
31700
31701 #. type: textblock
31702 #: ../tools/virt-list-partitions.pl:50
31703 msgid ""
31704 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
31705 "functionality.  For more complex cases you should look at the "
31706 "L<guestfish(1)> tool."
31707 msgstr ""
31708
31709 #. type: =item
31710 #: ../tools/virt-list-partitions.pl:107
31711 msgid "B<-h> | B<--human-readable>"
31712 msgstr ""
31713
31714 #. type: textblock
31715 #: ../tools/virt-list-partitions.pl:109
31716 msgid "Show sizes in human-readable form (eg. \"1G\")."
31717 msgstr ""
31718
31719 #. type: textblock
31720 #: ../tools/virt-list-partitions.pl:117
31721 msgid ""
31722 "With this option, C<virt-list-partitions> displays the type and size of each"
31723 " partition too (where \"type\" means C<ext3>, C<pv> etc.)"
31724 msgstr ""
31725
31726 #. type: =item
31727 #: ../tools/virt-list-partitions.pl:124
31728 msgid "B<-t> | B<--total>"
31729 msgstr ""
31730
31731 #. type: textblock
31732 #: ../tools/virt-list-partitions.pl:126
31733 msgid ""
31734 "Display the total size of each block device (as a separate row or rows)."
31735 msgstr ""
31736
31737 #. type: textblock
31738 #: ../tools/virt-list-partitions.pl:259
31739 msgid ""
31740 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
31741 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
31742 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
31743 msgstr ""
31744
31745 #. type: textblock
31746 #: ../tools/virt-list-partitions.pl:275
31747 msgid "Copyright (C) 2009-2010 Red Hat Inc."
31748 msgstr ""
31749
31750