Version 1.11.16.
[libguestfs.git] / po-docs / libguestfs-docs.pot
1 # SOME DESCRIPTIVE TITLE
2 # Copyright (C) YEAR Red Hat Inc.
3 # This file is distributed under the same license as the libguestfs package.
4 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5 #
6 #, fuzzy
7 msgid ""
8 msgstr ""
9 "Project-Id-Version: libguestfs 1.11.16\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-07-13 15:55+0200\n"
12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 "Language-Team: LANGUAGE <LL@li.org>\n"
15 "Language: \n"
16 "MIME-Version: 1.0\n"
17 "Content-Type: text/plain; charset=UTF-8\n"
18 "Content-Transfer-Encoding: 8bit\n"
19
20 #. type: =head1
21 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3 ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3 ../tools/virt-win-reg.pl:35 ../tools/virt-list-filesystems.pl:30 ../tools/virt-tar.pl:31 ../tools/virt-make-fs.pl:35 ../tools/virt-list-partitions.pl:30
22 msgid "NAME"
23 msgstr ""
24
25 #. type: textblock
26 #: ../src/guestfs.pod:5
27 msgid "guestfs - Library for accessing and modifying virtual machine images"
28 msgstr ""
29
30 #. type: =head1
31 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7 ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7 ../tools/virt-win-reg.pl:39 ../tools/virt-list-filesystems.pl:34 ../tools/virt-tar.pl:35 ../tools/virt-make-fs.pl:39 ../tools/virt-list-partitions.pl:34
32 msgid "SYNOPSIS"
33 msgstr ""
34
35 #. type: verbatim
36 #: ../src/guestfs.pod:9
37 #, no-wrap
38 msgid ""
39 " #include <guestfs.h>\n"
40 " \n"
41 msgstr ""
42
43 #. type: verbatim
44 #: ../src/guestfs.pod:11
45 #, no-wrap
46 msgid ""
47 " guestfs_h *g = guestfs_create ();\n"
48 " guestfs_add_drive (g, \"guest.img\");\n"
49 " guestfs_launch (g);\n"
50 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
51 " guestfs_touch (g, \"/hello\");\n"
52 " guestfs_umount (g, \"/\");\n"
53 " guestfs_close (g);\n"
54 "\n"
55 msgstr ""
56
57 #. type: verbatim
58 #: ../src/guestfs.pod:19
59 #, no-wrap
60 msgid ""
61 " cc prog.c -o prog -lguestfs\n"
62 "or:\n"
63 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
64 "\n"
65 msgstr ""
66
67 #. type: =head1
68 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30 ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20 ../tools/virt-win-reg.pl:63 ../tools/virt-list-filesystems.pl:40 ../tools/virt-tar.pl:77 ../tools/virt-make-fs.pl:47 ../tools/virt-list-partitions.pl:40
69 msgid "DESCRIPTION"
70 msgstr ""
71
72 #. type: textblock
73 #: ../src/guestfs.pod:25
74 msgid ""
75 "Libguestfs is a library for accessing and modifying guest disk images.  "
76 "Amongst the things this is good for: making batch configuration changes to "
77 "guests, getting disk used/free statistics (see also: virt-df), migrating "
78 "between virtualization systems (see also: virt-p2v), performing partial "
79 "backups, performing partial guest clones, cloning guests and changing "
80 "registry/UUID/hostname info, and much else besides."
81 msgstr ""
82
83 #. type: textblock
84 #: ../src/guestfs.pod:33
85 msgid ""
86 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
87 "filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
88 "btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
89 "qcow2, vmdk."
90 msgstr ""
91
92 #. type: textblock
93 #: ../src/guestfs.pod:38
94 msgid ""
95 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
96 "what filesystem is in each LV, etc.).  It can also run commands in the "
97 "context of the guest.  Also you can access filesystems over FUSE."
98 msgstr ""
99
100 #. type: textblock
101 #: ../src/guestfs.pod:43
102 msgid ""
103 "Libguestfs is a library that can be linked with C and C++ management "
104 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
105 "PHP, Haskell or C#).  You can also use it from shell scripts or the command "
106 "line."
107 msgstr ""
108
109 #. type: textblock
110 #: ../src/guestfs.pod:48
111 msgid ""
112 "You don't need to be root to use libguestfs, although obviously you do need "
113 "enough permissions to access the disk images."
114 msgstr ""
115
116 #. type: textblock
117 #: ../src/guestfs.pod:51
118 msgid ""
119 "Libguestfs is a large API because it can do many things.  For a gentle "
120 "introduction, please read the L</API OVERVIEW> section next."
121 msgstr ""
122
123 #. type: textblock
124 #: ../src/guestfs.pod:54
125 msgid ""
126 "There are also some example programs in the L<guestfs-examples(3)> manual "
127 "page."
128 msgstr ""
129
130 #. type: =head1
131 #: ../src/guestfs.pod:57
132 msgid "API OVERVIEW"
133 msgstr ""
134
135 #. type: textblock
136 #: ../src/guestfs.pod:59
137 msgid ""
138 "This section provides a gentler overview of the libguestfs API.  We also try "
139 "to group API calls together, where that may not be obvious from reading "
140 "about the individual calls in the main section of this manual."
141 msgstr ""
142
143 #. type: =head2
144 #: ../src/guestfs.pod:64
145 msgid "HANDLES"
146 msgstr ""
147
148 #. type: textblock
149 #: ../src/guestfs.pod:66
150 msgid ""
151 "Before you can use libguestfs calls, you have to create a handle.  Then you "
152 "must add at least one disk image to the handle, followed by launching the "
153 "handle, then performing whatever operations you want, and finally closing "
154 "the handle.  By convention we use the single letter C<g> for the name of the "
155 "handle variable, although of course you can use any name you want."
156 msgstr ""
157
158 #. type: textblock
159 #: ../src/guestfs.pod:73
160 msgid "The general structure of all libguestfs-using programs looks like this:"
161 msgstr ""
162
163 #. type: verbatim
164 #: ../src/guestfs.pod:76
165 #, no-wrap
166 msgid ""
167 " guestfs_h *g = guestfs_create ();\n"
168 " \n"
169 msgstr ""
170
171 #. type: verbatim
172 #: ../src/guestfs.pod:78
173 #, no-wrap
174 msgid ""
175 " /* Call guestfs_add_drive additional times if there are\n"
176 "  * multiple disk images.\n"
177 "  */\n"
178 " guestfs_add_drive (g, \"guest.img\");\n"
179 " \n"
180 msgstr ""
181
182 #. type: verbatim
183 #: ../src/guestfs.pod:83
184 #, no-wrap
185 msgid ""
186 " /* Most manipulation calls won't work until you've launched\n"
187 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
188 "  * and _before_ other commands.\n"
189 "  */\n"
190 " guestfs_launch (g);\n"
191 " \n"
192 msgstr ""
193
194 #. type: verbatim
195 #: ../src/guestfs.pod:89
196 #, no-wrap
197 msgid ""
198 " /* Now you can examine what partitions, LVs etc are available.\n"
199 "  */\n"
200 " char **partitions = guestfs_list_partitions (g);\n"
201 " char **logvols = guestfs_lvs (g);\n"
202 " \n"
203 msgstr ""
204
205 #. type: verbatim
206 #: ../src/guestfs.pod:94
207 #, no-wrap
208 msgid ""
209 " /* To access a filesystem in the image, you must mount it.\n"
210 "  */\n"
211 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
212 " \n"
213 msgstr ""
214
215 #. type: verbatim
216 #: ../src/guestfs.pod:98
217 #, no-wrap
218 msgid ""
219 " /* Now you can perform filesystem actions on the guest\n"
220 "  * disk image.\n"
221 "  */\n"
222 " guestfs_touch (g, \"/hello\");\n"
223 " \n"
224 msgstr ""
225
226 #. type: verbatim
227 #: ../src/guestfs.pod:103
228 #, no-wrap
229 msgid ""
230 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
231 "  * it is done automatically when you close the handle.  See\n"
232 "  * discussion of autosync in this page.\n"
233 "  */\n"
234 " guestfs_sync (g);\n"
235 " \n"
236 msgstr ""
237
238 #. type: verbatim
239 #: ../src/guestfs.pod:109
240 #, no-wrap
241 msgid ""
242 " /* Close the handle 'g'. */\n"
243 " guestfs_close (g);\n"
244 "\n"
245 msgstr ""
246
247 #. type: textblock
248 #: ../src/guestfs.pod:112
249 msgid ""
250 "The code above doesn't include any error checking.  In real code you should "
251 "check return values carefully for errors.  In general all functions that "
252 "return integers return C<-1> on error, and all functions that return "
253 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
254 "how to handle errors, and consult the documentation for each function call "
255 "below to see precisely how they return error indications.  See "
256 "L<guestfs-examples(3)> for fully worked examples."
257 msgstr ""
258
259 #. type: =head2
260 #: ../src/guestfs.pod:121
261 msgid "DISK IMAGES"
262 msgstr ""
263
264 #. type: textblock
265 #: ../src/guestfs.pod:123
266 msgid ""
267 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
268 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
269 "actual block device, or simply an empty file of zeroes that you have created "
270 "through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all "
271 "of these."
272 msgstr ""
273
274 #. type: textblock
275 #: ../src/guestfs.pod:129
276 msgid ""
277 "The call you should use in modern code for adding drives is "
278 "L</guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
279 "specifying that the format is raw, do:"
280 msgstr ""
281
282 #. type: verbatim
283 #: ../src/guestfs.pod:133
284 #, no-wrap
285 msgid ""
286 " guestfs_add_drive_opts (g, filename,\n"
287 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
288 "                         -1);\n"
289 "\n"
290 msgstr ""
291
292 #. type: textblock
293 #: ../src/guestfs.pod:137
294 msgid "You can add a disk read-only using:"
295 msgstr ""
296
297 #. type: verbatim
298 #: ../src/guestfs.pod:139
299 #, no-wrap
300 msgid ""
301 " guestfs_add_drive_opts (g, filename,\n"
302 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
303 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
304 "                         -1);\n"
305 "\n"
306 msgstr ""
307
308 #. type: textblock
309 #: ../src/guestfs.pod:144
310 msgid ""
311 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
312 "libguestfs won't modify the file."
313 msgstr ""
314
315 #. type: textblock
316 #: ../src/guestfs.pod:147
317 msgid ""
318 "Be extremely cautious if the disk image is in use, eg. if it is being used "
319 "by a virtual machine.  Adding it read-write will almost certainly cause disk "
320 "corruption, but adding it read-only is safe."
321 msgstr ""
322
323 #. type: textblock
324 #: ../src/guestfs.pod:151
325 msgid ""
326 "You must add at least one disk image, and you may add multiple disk images.  "
327 "In the API, the disk images are usually referred to as C</dev/sda> (for the "
328 "first one you added), C</dev/sdb> (for the second one you added), etc."
329 msgstr ""
330
331 #. type: textblock
332 #: ../src/guestfs.pod:156
333 msgid ""
334 "Once L</guestfs_launch> has been called you cannot add any more images.  You "
335 "can call L</guestfs_list_devices> to get a list of the device names, in the "
336 "order that you added them.  See also L</BLOCK DEVICE NAMING> below."
337 msgstr ""
338
339 #. type: =head2
340 #: ../src/guestfs.pod:161
341 msgid "MOUNTING"
342 msgstr ""
343
344 #. type: textblock
345 #: ../src/guestfs.pod:163
346 msgid ""
347 "Before you can read or write files, create directories and so on in a disk "
348 "image that contains filesystems, you have to mount those filesystems using "
349 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that "
350 "a disk image contains (for example) one partition with a filesystem on that "
351 "partition, then you can mount it directly:"
352 msgstr ""
353
354 #. type: verbatim
355 #: ../src/guestfs.pod:170
356 #, no-wrap
357 msgid ""
358 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
359 "\n"
360 msgstr ""
361
362 #. type: textblock
363 #: ../src/guestfs.pod:172
364 msgid ""
365 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
366 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
367 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
368 "that these are libguestfs virtual devices, and are nothing to do with host "
369 "devices."
370 msgstr ""
371
372 #. type: textblock
373 #: ../src/guestfs.pod:178
374 msgid ""
375 "If you are given a disk image and you don't know what it contains then you "
376 "have to find out.  Libguestfs can do that too: use "
377 "L</guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions "
378 "and LVs, and either try mounting each to see what is mountable, or else "
379 "examine them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
380 "filesystems, use L</guestfs_list_filesystems>."
381 msgstr ""
382
383 #. type: textblock
384 #: ../src/guestfs.pod:186
385 msgid ""
386 "Libguestfs also has a set of APIs for inspection of unknown disk images (see "
387 "L</INSPECTION> below).  But you might find it easier to look at higher level "
388 "programs built on top of libguestfs, in particular L<virt-inspector(1)>."
389 msgstr ""
390
391 #. type: textblock
392 #: ../src/guestfs.pod:191
393 msgid ""
394 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
395 "several other variations of the C<guestfs_mount_*> call."
396 msgstr ""
397
398 #. type: =head2
399 #: ../src/guestfs.pod:194
400 msgid "FILESYSTEM ACCESS AND MODIFICATION"
401 msgstr ""
402
403 #. type: textblock
404 #: ../src/guestfs.pod:196
405 msgid ""
406 "The majority of the libguestfs API consists of fairly low-level calls for "
407 "accessing and modifying the files, directories, symlinks etc on mounted "
408 "filesystems.  There are over a hundred such calls which you can find listed "
409 "in detail below in this man page, and we don't even pretend to cover them "
410 "all in this overview."
411 msgstr ""
412
413 #. type: textblock
414 #: ../src/guestfs.pod:202
415 msgid ""
416 "Specify filenames as full paths, starting with C<\"/\"> and including the "
417 "mount point."
418 msgstr ""
419
420 #. type: textblock
421 #: ../src/guestfs.pod:205
422 msgid ""
423 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
424 "the file called C<\"etc/passwd\"> then you could do:"
425 msgstr ""
426
427 #. type: verbatim
428 #: ../src/guestfs.pod:208
429 #, no-wrap
430 msgid ""
431 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
432 "\n"
433 msgstr ""
434
435 #. type: textblock
436 #: ../src/guestfs.pod:210
437 msgid ""
438 "This would return C<data> as a newly allocated buffer containing the full "
439 "content of that file (with some conditions: see also L</DOWNLOADING> below), "
440 "or C<NULL> if there was an error."
441 msgstr ""
442
443 #. type: textblock
444 #: ../src/guestfs.pod:214
445 msgid ""
446 "As another example, to create a top-level directory on that filesystem "
447 "called C<\"var\"> you would do:"
448 msgstr ""
449
450 #. type: verbatim
451 #: ../src/guestfs.pod:217
452 #, no-wrap
453 msgid ""
454 " guestfs_mkdir (g, \"/var\");\n"
455 "\n"
456 msgstr ""
457
458 #. type: textblock
459 #: ../src/guestfs.pod:219
460 msgid "To create a symlink you could do:"
461 msgstr ""
462
463 #. type: verbatim
464 #: ../src/guestfs.pod:221
465 #, no-wrap
466 msgid ""
467 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
468 "               \"/etc/rc3.d/S30portmap\");\n"
469 "\n"
470 msgstr ""
471
472 #. type: textblock
473 #: ../src/guestfs.pod:224
474 msgid ""
475 "Libguestfs will reject attempts to use relative paths and there is no "
476 "concept of a current working directory."
477 msgstr ""
478
479 #. type: textblock
480 #: ../src/guestfs.pod:227
481 msgid ""
482 "Libguestfs can return errors in many situations: for example if the "
483 "filesystem isn't writable, or if a file or directory that you requested "
484 "doesn't exist.  If you are using the C API (documented here)  you have to "
485 "check for those error conditions after each call.  (Other language bindings "
486 "turn these errors into exceptions)."
487 msgstr ""
488
489 #. type: textblock
490 #: ../src/guestfs.pod:233
491 msgid ""
492 "File writes are affected by the per-handle umask, set by calling "
493 "L</guestfs_umask> and defaulting to 022.  See L</UMASK>."
494 msgstr ""
495
496 #. type: =head2
497 #: ../src/guestfs.pod:236
498 msgid "PARTITIONING"
499 msgstr ""
500
501 #. type: textblock
502 #: ../src/guestfs.pod:238
503 msgid ""
504 "Libguestfs contains API calls to read, create and modify partition tables on "
505 "disk images."
506 msgstr ""
507
508 #. type: textblock
509 #: ../src/guestfs.pod:241
510 msgid ""
511 "In the common case where you want to create a single partition covering the "
512 "whole disk, you should use the L</guestfs_part_disk> call:"
513 msgstr ""
514
515 #. type: verbatim
516 #: ../src/guestfs.pod:245
517 #, no-wrap
518 msgid ""
519 " const char *parttype = \"mbr\";\n"
520 " if (disk_is_larger_than_2TB)\n"
521 "   parttype = \"gpt\";\n"
522 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
523 "\n"
524 msgstr ""
525
526 #. type: textblock
527 #: ../src/guestfs.pod:250
528 msgid ""
529 "Obviously this effectively wipes anything that was on that disk image "
530 "before."
531 msgstr ""
532
533 #. type: =head2
534 #: ../src/guestfs.pod:253
535 msgid "LVM2"
536 msgstr ""
537
538 #. type: textblock
539 #: ../src/guestfs.pod:255
540 msgid ""
541 "Libguestfs provides access to a large part of the LVM2 API, such as "
542 "L</guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense "
543 "unless you familiarize yourself with the concepts of physical volumes, "
544 "volume groups and logical volumes."
545 msgstr ""
546
547 #. type: textblock
548 #: ../src/guestfs.pod:260
549 msgid ""
550 "This author strongly recommends reading the LVM HOWTO, online at "
551 "L<http://tldp.org/HOWTO/LVM-HOWTO/>."
552 msgstr ""
553
554 #. type: =head2
555 #: ../src/guestfs.pod:263
556 msgid "DOWNLOADING"
557 msgstr ""
558
559 #. type: textblock
560 #: ../src/guestfs.pod:265
561 msgid ""
562 "Use L</guestfs_cat> to download small, text only files.  This call is "
563 "limited to files which are less than 2 MB and which cannot contain any ASCII "
564 "NUL (C<\\0>) characters.  However the API is very simple to use."
565 msgstr ""
566
567 #. type: textblock
568 #: ../src/guestfs.pod:269
569 msgid ""
570 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
571 "bit data, since it returns a (pointer, size) pair.  However it is still "
572 "limited to \"small\" files, less than 2 MB."
573 msgstr ""
574
575 #. type: textblock
576 #: ../src/guestfs.pod:273
577 msgid ""
578 "L</guestfs_download> can be used to download any file, with no limits on "
579 "content or size (even files larger than 4 GB)."
580 msgstr ""
581
582 #. type: textblock
583 #: ../src/guestfs.pod:276
584 msgid "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
585 msgstr ""
586
587 #. type: =head2
588 #: ../src/guestfs.pod:279
589 msgid "UPLOADING"
590 msgstr ""
591
592 #. type: textblock
593 #: ../src/guestfs.pod:281
594 msgid ""
595 "It's often the case that you want to write a file or files to the disk "
596 "image."
597 msgstr ""
598
599 #. type: textblock
600 #: ../src/guestfs.pod:284
601 msgid ""
602 "To write a small file with fixed content, use L</guestfs_write>.  To create "
603 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or "
604 "L</guestfs_fallocate64> (with all disk blocks allocated).  There are a "
605 "variety of other functions for creating test files, for example "
606 "L</guestfs_fill> and L</guestfs_fill_pattern>."
607 msgstr ""
608
609 #. type: textblock
610 #: ../src/guestfs.pod:290
611 msgid ""
612 "To upload a single file, use L</guestfs_upload>.  This call has no limits on "
613 "file content or size (even files larger than 4 GB)."
614 msgstr ""
615
616 #. type: textblock
617 #: ../src/guestfs.pod:293
618 msgid "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
619 msgstr ""
620
621 #. type: textblock
622 #: ../src/guestfs.pod:295
623 msgid ""
624 "However the fastest way to upload I<large numbers of arbitrary files> is to "
625 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and "
626 "L<mkisofs(8)>), then attach this using L</guestfs_add_drive_ro>.  If you add "
627 "the drive in a predictable way (eg. adding it last after all other drives) "
628 "then you can get the device name from L</guestfs_list_devices> and mount it "
629 "directly using L</guestfs_mount_ro>.  Note that squashfs images are "
630 "sometimes non-portable between kernel versions, and they don't support "
631 "labels or UUIDs.  If you want to pre-build an image or you need to mount it "
632 "using a label or UUID, use an ISO image instead."
633 msgstr ""
634
635 #. type: =head2
636 #: ../src/guestfs.pod:306
637 msgid "COPYING"
638 msgstr ""
639
640 #. type: textblock
641 #: ../src/guestfs.pod:308
642 msgid ""
643 "There are various different commands for copying between files and devices "
644 "and in and out of the guest filesystem.  These are summarised in the table "
645 "below."
646 msgstr ""
647
648 #. type: =item
649 #: ../src/guestfs.pod:314
650 msgid "B<file> to B<file>"
651 msgstr ""
652
653 #. type: textblock
654 #: ../src/guestfs.pod:316
655 msgid ""
656 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
657 "directories recursively."
658 msgstr ""
659
660 #. type: =item
661 #: ../src/guestfs.pod:319
662 msgid "B<file or device> to B<file or device>"
663 msgstr ""
664
665 #. type: textblock
666 #: ../src/guestfs.pod:321
667 msgid ""
668 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
669 "devices in the guest."
670 msgstr ""
671
672 #. type: textblock
673 #: ../src/guestfs.pod:324
674 msgid "Example: duplicate the contents of an LV:"
675 msgstr ""
676
677 #. type: verbatim
678 #: ../src/guestfs.pod:326
679 #, no-wrap
680 msgid ""
681 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
682 "\n"
683 msgstr ""
684
685 #. type: textblock
686 #: ../src/guestfs.pod:328
687 msgid ""
688 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
689 "(C</dev/VG/Original>).  To copy less than the whole source device, use "
690 "L</guestfs_copy_size>."
691 msgstr ""
692
693 #. type: =item
694 #: ../src/guestfs.pod:332
695 msgid "B<file on the host> to B<file or device>"
696 msgstr ""
697
698 #. type: textblock
699 #: ../src/guestfs.pod:334
700 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
701 msgstr ""
702
703 #. type: =item
704 #: ../src/guestfs.pod:336
705 msgid "B<file or device> to B<file on the host>"
706 msgstr ""
707
708 #. type: textblock
709 #: ../src/guestfs.pod:338
710 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
711 msgstr ""
712
713 #. type: =head2
714 #: ../src/guestfs.pod:342
715 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
716 msgstr ""
717
718 #. type: textblock
719 #: ../src/guestfs.pod:344
720 msgid ""
721 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, "
722 "L</guestfs_tar_out> etc appear to only take filenames as arguments, so it "
723 "appears you can only upload and download to files.  However many Un*x-like "
724 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, "
725 "C</dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, "
726 "stderr, and arbitrary file descriptor N."
727 msgstr ""
728
729 #. type: textblock
730 #: ../src/guestfs.pod:352
731 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
732 msgstr ""
733
734 #. type: verbatim
735 #: ../src/guestfs.pod:355
736 #, no-wrap
737 msgid ""
738 " guestfs_download (g, filename, \"/dev/stdout\");\n"
739 "\n"
740 msgstr ""
741
742 #. type: textblock
743 #: ../src/guestfs.pod:357
744 msgid "and you can write tar output to a file descriptor C<fd> by doing:"
745 msgstr ""
746
747 #. type: verbatim
748 #: ../src/guestfs.pod:359
749 #, no-wrap
750 msgid ""
751 " char devfd[64];\n"
752 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
753 " guestfs_tar_out (g, \"/\", devfd);\n"
754 "\n"
755 msgstr ""
756
757 #. type: =head2
758 #: ../src/guestfs.pod:363
759 msgid "LISTING FILES"
760 msgstr ""
761
762 #. type: textblock
763 #: ../src/guestfs.pod:365
764 msgid ""
765 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
766 "L<guestfish(1)>-equivalent command C<ll>)."
767 msgstr ""
768
769 #. type: textblock
770 #: ../src/guestfs.pod:368
771 msgid ""
772 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
773 "programs, as a flat list of strings."
774 msgstr ""
775
776 #. type: textblock
777 #: ../src/guestfs.pod:371
778 msgid ""
779 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
780 "directory, plus additional information about each one.  It is more "
781 "equivalent to using the L<readdir(3)> call on a local filesystem."
782 msgstr ""
783
784 #. type: textblock
785 #: ../src/guestfs.pod:375
786 msgid ""
787 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list "
788 "files."
789 msgstr ""
790
791 #. type: =head2
792 #: ../src/guestfs.pod:378
793 msgid "RUNNING COMMANDS"
794 msgstr ""
795
796 #. type: textblock
797 #: ../src/guestfs.pod:380
798 msgid ""
799 "Although libguestfs is primarily an API for manipulating files inside guest "
800 "images, we also provide some limited facilities for running commands inside "
801 "guests."
802 msgstr ""
803
804 #. type: textblock
805 #: ../src/guestfs.pod:384
806 msgid "There are many limitations to this:"
807 msgstr ""
808
809 #. type: =item
810 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398 ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411 ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1064 ../src/guestfs.pod:1068 ../src/guestfs.pod:1072 ../src/guestfs.pod:1077 ../src/guestfs.pod:1085 ../src/guestfs.pod:1104 ../src/guestfs.pod:1112 ../src/guestfs.pod:1134 ../src/guestfs.pod:1138 ../src/guestfs.pod:1142 ../src/guestfs.pod:1146 ../src/guestfs.pod:1150 ../src/guestfs.pod:1154 ../src/guestfs.pod:1643 ../src/guestfs.pod:1648 ../src/guestfs.pod:1652 ../src/guestfs.pod:1754 ../src/guestfs.pod:1759 ../src/guestfs.pod:1763 ../src/guestfs.pod:1773 ../src/guestfs.pod:2008 ../src/guestfs.pod:2013 ../src/guestfs.pod:2019 ../src/guestfs.pod:2027 ../src/guestfs.pod:2381 ../src/guestfs.pod:2387 ../src/guestfs.pod:2392 ../src/guestfs.pod:2398 ../src/guestfs.pod:2972 ../src/guestfs.pod:2976 ../src/guestfs.pod:2980 ../src/guestfs.pod:2984 ../src/guestfs-actions.pod:15 ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:583 ../src/guestfs-actions.pod:591 ../src/guestfs-actions.pod:598 ../src/guestfs-actions.pod:605 ../src/guestfs-actions.pod:1603 ../src/guestfs-actions.pod:1607 ../src/guestfs-actions.pod:1611 ../src/guestfs-actions.pod:1615 ../src/guestfs-actions.pod:1623 ../src/guestfs-actions.pod:1627 ../src/guestfs-actions.pod:1631 ../src/guestfs-actions.pod:1641 ../src/guestfs-actions.pod:1645 ../src/guestfs-actions.pod:1649 ../src/guestfs-actions.pod:1787 ../src/guestfs-actions.pod:1791 ../src/guestfs-actions.pod:1796 ../src/guestfs-actions.pod:1801 ../src/guestfs-actions.pod:1862 ../src/guestfs-actions.pod:1866 ../src/guestfs-actions.pod:1871 ../src/guestfs-actions.pod:2789 ../src/guestfs-actions.pod:2795 ../src/guestfs-actions.pod:2803 ../src/guestfs-actions.pod:2810 ../src/guestfs-actions.pod:2817 ../fish/guestfish.pod:445 ../fish/guestfish.pod:449 ../fish/guestfish.pod:453 ../fish/guestfish.pod:457 ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20 ../fish/guestfish-actions.pod:385 ../fish/guestfish-actions.pod:393 ../fish/guestfish-actions.pod:400 ../fish/guestfish-actions.pod:407 ../fish/guestfish-actions.pod:1074 ../fish/guestfish-actions.pod:1078 ../fish/guestfish-actions.pod:1082 ../fish/guestfish-actions.pod:1086 ../fish/guestfish-actions.pod:1094 ../fish/guestfish-actions.pod:1098 ../fish/guestfish-actions.pod:1102 ../fish/guestfish-actions.pod:1112 ../fish/guestfish-actions.pod:1116 ../fish/guestfish-actions.pod:1120 ../fish/guestfish-actions.pod:1210 ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219 ../fish/guestfish-actions.pod:1224 ../fish/guestfish-actions.pod:1266 ../fish/guestfish-actions.pod:1270 ../fish/guestfish-actions.pod:1275 ../fish/guestfish-actions.pod:1902 ../fish/guestfish-actions.pod:1908 ../fish/guestfish-actions.pod:1916 ../fish/guestfish-actions.pod:1923 ../fish/guestfish-actions.pod:1930 ../tools/virt-win-reg.pl:195 ../tools/virt-win-reg.pl:200 ../tools/virt-win-reg.pl:206 ../tools/virt-win-reg.pl:708 ../tools/virt-win-reg.pl:714 ../tools/virt-win-reg.pl:720
811 msgid "*"
812 msgstr ""
813
814 #. type: textblock
815 #: ../src/guestfs.pod:390
816 msgid ""
817 "The kernel version that the command runs under will be different from what "
818 "it expects."
819 msgstr ""
820
821 #. type: textblock
822 #: ../src/guestfs.pod:395
823 msgid ""
824 "If the command needs to communicate with daemons, then most likely they "
825 "won't be running."
826 msgstr ""
827
828 #. type: textblock
829 #: ../src/guestfs.pod:400
830 msgid "The command will be running in limited memory."
831 msgstr ""
832
833 #. type: textblock
834 #: ../src/guestfs.pod:404
835 msgid ""
836 "The network may not be available unless you enable it (see "
837 "L</guestfs_set_network>)."
838 msgstr ""
839
840 #. type: textblock
841 #: ../src/guestfs.pod:409
842 msgid "Only supports Linux guests (not Windows, BSD, etc)."
843 msgstr ""
844
845 #. type: textblock
846 #: ../src/guestfs.pod:413
847 msgid "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
848 msgstr ""
849
850 #. type: textblock
851 #: ../src/guestfs.pod:418
852 msgid ""
853 "For SELinux guests, you may need to enable SELinux and load policy first.  "
854 "See L</SELINUX> in this manpage."
855 msgstr ""
856
857 #. type: textblock
858 #: ../src/guestfs.pod:423
859 msgid ""
860 "I<Security:> It is not safe to run commands from untrusted, possibly "
861 "malicious guests.  These commands may attempt to exploit your program by "
862 "sending unexpected output.  They could also try to exploit the Linux kernel "
863 "or qemu provided by the libguestfs appliance.  They could use the network "
864 "provided by the libguestfs appliance to bypass ordinary network partitions "
865 "and firewalls.  They could use the elevated privileges or different SELinux "
866 "context of your program to their advantage."
867 msgstr ""
868
869 #. type: textblock
870 #: ../src/guestfs.pod:432
871 msgid ""
872 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
873 "(a script which runs when the guest next boots normally), and to have this "
874 "script run the commands you want in the normal context of the running guest, "
875 "network security and so on.  For information about other security issues, "
876 "see L</SECURITY>."
877 msgstr ""
878
879 #. type: textblock
880 #: ../src/guestfs.pod:440
881 msgid ""
882 "The two main API calls to run commands are L</guestfs_command> and "
883 "L</guestfs_sh> (there are also variations)."
884 msgstr ""
885
886 #. type: textblock
887 #: ../src/guestfs.pod:443
888 msgid ""
889 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
890 "shell globs, redirections, etc will work."
891 msgstr ""
892
893 #. type: =head2
894 #: ../src/guestfs.pod:446
895 msgid "CONFIGURATION FILES"
896 msgstr ""
897
898 #. type: textblock
899 #: ../src/guestfs.pod:448
900 msgid ""
901 "To read and write configuration files in Linux guest filesystems, we "
902 "strongly recommend using Augeas.  For example, Augeas understands how to "
903 "read and write, say, a Linux shadow password file or X.org configuration "
904 "file, and so avoids you having to write that code."
905 msgstr ""
906
907 #. type: textblock
908 #: ../src/guestfs.pod:453
909 msgid ""
910 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
911 "document Augeas itself here because there is excellent documentation on the "
912 "L<http://augeas.net/> website."
913 msgstr ""
914
915 #. type: textblock
916 #: ../src/guestfs.pod:457
917 msgid ""
918 "If you don't want to use Augeas (you fool!) then try calling "
919 "L</guestfs_read_lines> to get the file as a list of lines which you can "
920 "iterate over."
921 msgstr ""
922
923 #. type: =head2
924 #: ../src/guestfs.pod:461
925 msgid "SELINUX"
926 msgstr ""
927
928 #. type: textblock
929 #: ../src/guestfs.pod:463
930 msgid ""
931 "We support SELinux guests.  To ensure that labeling happens correctly in "
932 "SELinux guests, you need to enable SELinux and load the guest's policy:"
933 msgstr ""
934
935 #. type: =item
936 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395 ../src/guestfs.pod:2426
937 msgid "1."
938 msgstr ""
939
940 #. type: textblock
941 #: ../src/guestfs.pod:471
942 msgid "Before launching, do:"
943 msgstr ""
944
945 #. type: verbatim
946 #: ../src/guestfs.pod:473
947 #, no-wrap
948 msgid ""
949 " guestfs_set_selinux (g, 1);\n"
950 "\n"
951 msgstr ""
952
953 #. type: =item
954 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399 ../src/guestfs.pod:2451
955 msgid "2."
956 msgstr ""
957
958 #. type: textblock
959 #: ../src/guestfs.pod:477
960 msgid ""
961 "After mounting the guest's filesystem(s), load the policy.  This is best "
962 "done by running the L<load_policy(8)> command in the guest itself:"
963 msgstr ""
964
965 #. type: verbatim
966 #: ../src/guestfs.pod:481
967 #, no-wrap
968 msgid ""
969 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
970 "\n"
971 msgstr ""
972
973 #. type: textblock
974 #: ../src/guestfs.pod:483
975 msgid ""
976 "(Older versions of C<load_policy> require you to specify the name of the "
977 "policy file)."
978 msgstr ""
979
980 #. type: =item
981 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
982 msgid "3."
983 msgstr ""
984
985 #. type: textblock
986 #: ../src/guestfs.pod:488
987 msgid ""
988 "Optionally, set the security context for the API.  The correct security "
989 "context to use can only be known by inspecting the guest.  As an example:"
990 msgstr ""
991
992 #. type: verbatim
993 #: ../src/guestfs.pod:492
994 #, no-wrap
995 msgid ""
996 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
997 "\n"
998 msgstr ""
999
1000 #. type: textblock
1001 #: ../src/guestfs.pod:496
1002 msgid "This will work for running commands and editing existing files."
1003 msgstr ""
1004
1005 #. type: textblock
1006 #: ../src/guestfs.pod:498
1007 msgid ""
1008 "When new files are created, you may need to label them explicitly, for "
1009 "example by running the external command C<restorecon pathname>."
1010 msgstr ""
1011
1012 #. type: =head2
1013 #: ../src/guestfs.pod:502
1014 msgid "UMASK"
1015 msgstr ""
1016
1017 #. type: textblock
1018 #: ../src/guestfs.pod:504
1019 msgid ""
1020 "Certain calls are affected by the current file mode creation mask (the "
1021 "\"umask\").  In particular ones which create files or directories, such as "
1022 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1023 "either the default mode that the file is created with or modifies the mode "
1024 "that you supply."
1025 msgstr ""
1026
1027 #. type: textblock
1028 #: ../src/guestfs.pod:510
1029 msgid ""
1030 "The default umask is C<022>, so files are created with modes such as C<0644> "
1031 "and directories with C<0755>."
1032 msgstr ""
1033
1034 #. type: textblock
1035 #: ../src/guestfs.pod:513
1036 msgid ""
1037 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1038 "(call C<guestfs_umask (g, 0)> early after launching).  Or call "
1039 "L</guestfs_chmod> after creating each file or directory."
1040 msgstr ""
1041
1042 #. type: textblock
1043 #: ../src/guestfs.pod:517
1044 msgid "For more information about umask, see L<umask(2)>."
1045 msgstr ""
1046
1047 #. type: =head1
1048 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:767
1049 msgid "ENCRYPTED DISKS"
1050 msgstr ""
1051
1052 #. type: textblock
1053 #: ../src/guestfs.pod:521
1054 msgid ""
1055 "Libguestfs allows you to access Linux guests which have been encrypted using "
1056 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1057 "standard.  This includes nearly all whole disk encryption systems used by "
1058 "modern Linux guests."
1059 msgstr ""
1060
1061 #. type: textblock
1062 #: ../src/guestfs.pod:527
1063 msgid ""
1064 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1065 "returns the string C<crypto_LUKS>)."
1066 msgstr ""
1067
1068 #. type: textblock
1069 #: ../src/guestfs.pod:530
1070 msgid ""
1071 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1072 "will require the passphrase!"
1073 msgstr ""
1074
1075 #. type: textblock
1076 #: ../src/guestfs.pod:533
1077 msgid ""
1078 "Opening a LUKS device creates a new device mapper device called "
1079 "C</dev/mapper/mapname> (where C<mapname> is the string you supply to "
1080 "L</guestfs_luks_open>).  Reads and writes to this mapper device are "
1081 "decrypted from and encrypted to the underlying block device respectively."
1082 msgstr ""
1083
1084 #. type: textblock
1085 #: ../src/guestfs.pod:539
1086 msgid ""
1087 "LVM volume groups on the device can be made visible by calling "
1088 "L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical "
1089 "volume(s) can now be mounted in the usual way."
1090 msgstr ""
1091
1092 #. type: textblock
1093 #: ../src/guestfs.pod:543
1094 msgid ""
1095 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1096 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1097 "[\"/dev/VG\"])>.  Then close the mapper device by calling "
1098 "L</guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1099 "underlying encrypted block device)."
1100 msgstr ""
1101
1102 #. type: =head2
1103 #: ../src/guestfs.pod:550
1104 msgid "INSPECTION"
1105 msgstr ""
1106
1107 #. type: textblock
1108 #: ../src/guestfs.pod:552
1109 msgid ""
1110 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1111 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1112 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1113 "version 1.5.3 the most frequently used part of this library has been "
1114 "rewritten in C and moved into the core code)."
1115 msgstr ""
1116
1117 #. type: textblock
1118 #: ../src/guestfs.pod:559
1119 msgid ""
1120 "Add all disks belonging to the unknown virtual machine and call "
1121 "L</guestfs_launch> in the usual way."
1122 msgstr ""
1123
1124 #. type: textblock
1125 #: ../src/guestfs.pod:562
1126 msgid ""
1127 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1128 "and certain heuristics, and returns a list of operating systems that were "
1129 "found.  An empty list means none were found.  A single element is the root "
1130 "filesystem of the operating system.  For dual- or multi-boot guests, "
1131 "multiple roots can be returned, each one corresponding to a separate "
1132 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1133 "world of virtualization, but since this scenario can happen, we have built "
1134 "libguestfs to deal with it.)"
1135 msgstr ""
1136
1137 #. type: textblock
1138 #: ../src/guestfs.pod:571
1139 msgid ""
1140 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1141 "to get additional details about that operating system.  For example, call "
1142 "L</guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1143 "Windows and Linux-based operating systems respectively."
1144 msgstr ""
1145
1146 #. type: textblock
1147 #: ../src/guestfs.pod:577
1148 msgid ""
1149 "Un*x-like and Linux-based operating systems usually consist of several "
1150 "filesystems which are mounted at boot time (for example, a separate boot "
1151 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1152 "filesystems correspond to mount points.  Call "
1153 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1154 "hash table like this example:"
1155 msgstr ""
1156
1157 #. type: verbatim
1158 #: ../src/guestfs.pod:584
1159 #, no-wrap
1160 msgid ""
1161 " /boot => /dev/sda1\n"
1162 " /     => /dev/vg_guest/lv_root\n"
1163 " /usr  => /dev/vg_guest/lv_usr\n"
1164 "\n"
1165 msgstr ""
1166
1167 #. type: textblock
1168 #: ../src/guestfs.pod:588
1169 msgid ""
1170 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1171 "filesystems as suggested."
1172 msgstr ""
1173
1174 #. type: textblock
1175 #: ../src/guestfs.pod:591
1176 msgid ""
1177 "Be careful to mount filesystems in the right order (eg. C</> before "
1178 "C</usr>).  Sorting the keys of the hash by length, shortest first, should "
1179 "work."
1180 msgstr ""
1181
1182 #. type: textblock
1183 #: ../src/guestfs.pod:595
1184 msgid ""
1185 "Inspection currently only works for some common operating systems.  "
1186 "Contributors are welcome to send patches for other operating systems that we "
1187 "currently cannot detect."
1188 msgstr ""
1189
1190 #. type: textblock
1191 #: ../src/guestfs.pod:599
1192 msgid ""
1193 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1194 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1195 "encrypted devices."
1196 msgstr ""
1197
1198 #. type: textblock
1199 #: ../src/guestfs.pod:603
1200 msgid ""
1201 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1202 "inspection and caches the results in the guest handle.  Subsequent calls to "
1203 "C<guestfs_inspect_get_*> return this cached information, but I<do not> "
1204 "re-read the disks.  If you change the content of the guest disks, you can "
1205 "redo inspection by calling L</guestfs_inspect_os> again.  "
1206 "(L</guestfs_inspect_list_applications> works a little differently from the "
1207 "other calls and does read the disks.  See documentation for that function "
1208 "for details)."
1209 msgstr ""
1210
1211 #. type: =head3
1212 #: ../src/guestfs.pod:612
1213 msgid "INSPECTING INSTALL DISKS"
1214 msgstr ""
1215
1216 #. type: textblock
1217 #: ../src/guestfs.pod:614
1218 msgid ""
1219 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1220 "CDs and more."
1221 msgstr ""
1222
1223 #. type: textblock
1224 #: ../src/guestfs.pod:617
1225 msgid ""
1226 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1227 "system, which currently can be C<installed> (a regular operating system) or "
1228 "C<installer> (some sort of install disk)."
1229 msgstr ""
1230
1231 #. type: textblock
1232 #: ../src/guestfs.pod:621
1233 msgid ""
1234 "Further information is available about the operating system that can be "
1235 "installed using the regular inspection APIs like "
1236 "L</guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> "
1237 "etc."
1238 msgstr ""
1239
1240 #. type: textblock
1241 #: ../src/guestfs.pod:626
1242 msgid ""
1243 "Some additional information specific to installer disks is also available "
1244 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and "
1245 "L</guestfs_inspect_is_multipart> calls."
1246 msgstr ""
1247
1248 #. type: =head2
1249 #: ../src/guestfs.pod:631
1250 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1251 msgstr ""
1252
1253 #. type: textblock
1254 #: ../src/guestfs.pod:633
1255 msgid ""
1256 "Libguestfs can mount NTFS partitions.  It does this using the "
1257 "L<http://www.ntfs-3g.org/> driver."
1258 msgstr ""
1259
1260 #. type: =head3
1261 #: ../src/guestfs.pod:636
1262 msgid "DRIVE LETTERS AND PATHS"
1263 msgstr ""
1264
1265 #. type: textblock
1266 #: ../src/guestfs.pod:638
1267 msgid ""
1268 "DOS and Windows still use drive letters, and the filesystems are always "
1269 "treated as case insensitive by Windows itself, and therefore you might find "
1270 "a Windows configuration file referring to a path like "
1271 "C<c:\\windows\\system32>.  When the filesystem is mounted in libguestfs, "
1272 "that directory might be referred to as C</WINDOWS/System32>."
1273 msgstr ""
1274
1275 #. type: textblock
1276 #: ../src/guestfs.pod:644
1277 msgid ""
1278 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1279 "L</guestfs_inspect_get_drive_mappings>)"
1280 msgstr ""
1281
1282 #. type: textblock
1283 #: ../src/guestfs.pod:647
1284 msgid ""
1285 "Dealing with separator characters (backslash vs forward slash) is outside "
1286 "the scope of libguestfs, but usually a simple character replacement will "
1287 "work."
1288 msgstr ""
1289
1290 #. type: textblock
1291 #: ../src/guestfs.pod:651
1292 msgid ""
1293 "To resolve the case insensitivity of paths, call "
1294 "L</guestfs_case_sensitive_path>."
1295 msgstr ""
1296
1297 #. type: =head3
1298 #: ../src/guestfs.pod:654
1299 msgid "ACCESSING THE WINDOWS REGISTRY"
1300 msgstr ""
1301
1302 #. type: textblock
1303 #: ../src/guestfs.pod:656
1304 msgid ""
1305 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1306 "files, through the library C<hivex> which is part of the libguestfs project "
1307 "although ships as a separate tarball.  You have to locate and download the "
1308 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1309 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and "
1310 "L<virt-win-reg(1)> for more help on this issue."
1311 msgstr ""
1312
1313 #. type: =head3
1314 #: ../src/guestfs.pod:664
1315 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1316 msgstr ""
1317
1318 #. type: textblock
1319 #: ../src/guestfs.pod:666
1320 msgid ""
1321 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1322 "provide something which looks like a Linux symlink.  The way it tries to do "
1323 "the rewriting is described here:"
1324 msgstr ""
1325
1326 #. type: textblock
1327 #: ../src/guestfs.pod:670
1328 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-symbolic-links/>"
1329 msgstr ""
1330
1331 #. type: textblock
1332 #: ../src/guestfs.pod:672
1333 msgid ""
1334 "The essential problem is that ntfs-3g simply does not have enough "
1335 "information to do a correct job.  NTFS links can contain drive letters and "
1336 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1337 "It is almost certainly the case that libguestfs callers should ignore what "
1338 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1339 msgstr ""
1340
1341 #. type: textblock
1342 #: ../src/guestfs.pod:679
1343 msgid ""
1344 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use "
1345 "L</guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1346 "attribute, and read the raw reparse data from that (you can find the format "
1347 "documented in various places around the web)."
1348 msgstr ""
1349
1350 #. type: =head3
1351 #: ../src/guestfs.pod:684
1352 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1353 msgstr ""
1354
1355 #. type: textblock
1356 #: ../src/guestfs.pod:686
1357 msgid ""
1358 "There are other useful extended attributes that can be read from ntfs-3g "
1359 "filesystems (using L</guestfs_getxattr>).  See:"
1360 msgstr ""
1361
1362 #. type: textblock
1363 #: ../src/guestfs.pod:689
1364 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1365 msgstr ""
1366
1367 #. type: =head2
1368 #: ../src/guestfs.pod:691
1369 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1370 msgstr ""
1371
1372 #. type: textblock
1373 #: ../src/guestfs.pod:693
1374 msgid ""
1375 "Although we don't want to discourage you from using the C API, we will "
1376 "mention here that the same API is also available in other languages."
1377 msgstr ""
1378
1379 #. type: textblock
1380 #: ../src/guestfs.pod:696
1381 msgid ""
1382 "The API is broadly identical in all supported languages.  This means that "
1383 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1384 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1385 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1386 "each language."
1387 msgstr ""
1388
1389 #. type: textblock
1390 #: ../src/guestfs.pod:702
1391 msgid ""
1392 "Error messages are automatically transformed into exceptions if the language "
1393 "supports it."
1394 msgstr ""
1395
1396 #. type: textblock
1397 #: ../src/guestfs.pod:705
1398 msgid ""
1399 "We don't try to \"object orientify\" parts of the API in OO languages, "
1400 "although contributors are welcome to write higher level APIs above what we "
1401 "provide in their favourite languages if they wish."
1402 msgstr ""
1403
1404 #. type: =item
1405 #: ../src/guestfs.pod:711
1406 msgid "B<C++>"
1407 msgstr ""
1408
1409 #. type: textblock
1410 #: ../src/guestfs.pod:713
1411 msgid ""
1412 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1413 "identical to the C API.  C++ classes and exceptions are not used."
1414 msgstr ""
1415
1416 #. type: =item
1417 #: ../src/guestfs.pod:717
1418 msgid "B<C#>"
1419 msgstr ""
1420
1421 #. type: textblock
1422 #: ../src/guestfs.pod:719
1423 msgid ""
1424 "The C# bindings are highly experimental.  Please read the warnings at the "
1425 "top of C<csharp/Libguestfs.cs>."
1426 msgstr ""
1427
1428 #. type: =item
1429 #: ../src/guestfs.pod:722
1430 msgid "B<Haskell>"
1431 msgstr ""
1432
1433 #. type: textblock
1434 #: ../src/guestfs.pod:724
1435 msgid ""
1436 "This is the only language binding that is working but incomplete.  Only "
1437 "calls which return simple integers have been bound in Haskell, and we are "
1438 "looking for help to complete this binding."
1439 msgstr ""
1440
1441 #. type: =item
1442 #: ../src/guestfs.pod:728
1443 msgid "B<Java>"
1444 msgstr ""
1445
1446 #. type: textblock
1447 #: ../src/guestfs.pod:730
1448 msgid ""
1449 "Full documentation is contained in the Javadoc which is distributed with "
1450 "libguestfs."
1451 msgstr ""
1452
1453 #. type: =item
1454 #: ../src/guestfs.pod:733
1455 msgid "B<OCaml>"
1456 msgstr ""
1457
1458 #. type: textblock
1459 #: ../src/guestfs.pod:735
1460 msgid "See L<guestfs-ocaml(3)>."
1461 msgstr ""
1462
1463 #. type: =item
1464 #: ../src/guestfs.pod:737
1465 msgid "B<Perl>"
1466 msgstr ""
1467
1468 #. type: textblock
1469 #: ../src/guestfs.pod:739
1470 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1471 msgstr ""
1472
1473 #. type: =item
1474 #: ../src/guestfs.pod:741
1475 msgid "B<PHP>"
1476 msgstr ""
1477
1478 #. type: textblock
1479 #: ../src/guestfs.pod:743
1480 msgid ""
1481 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1482 "the php-libguestfs package for your distribution."
1483 msgstr ""
1484
1485 #. type: textblock
1486 #: ../src/guestfs.pod:746
1487 msgid "The PHP binding only works correctly on 64 bit machines."
1488 msgstr ""
1489
1490 #. type: =item
1491 #: ../src/guestfs.pod:748
1492 msgid "B<Python>"
1493 msgstr ""
1494
1495 #. type: textblock
1496 #: ../src/guestfs.pod:750
1497 msgid "See L<guestfs-python(3)>."
1498 msgstr ""
1499
1500 #. type: =item
1501 #: ../src/guestfs.pod:752
1502 msgid "B<Ruby>"
1503 msgstr ""
1504
1505 #. type: textblock
1506 #: ../src/guestfs.pod:754
1507 msgid "See L<guestfs-ruby(3)>."
1508 msgstr ""
1509
1510 #. type: =item
1511 #: ../src/guestfs.pod:756
1512 msgid "B<shell scripts>"
1513 msgstr ""
1514
1515 #. type: textblock
1516 #: ../src/guestfs.pod:758
1517 msgid "See L<guestfish(1)>."
1518 msgstr ""
1519
1520 #. type: =head2
1521 #: ../src/guestfs.pod:762
1522 msgid "LIBGUESTFS GOTCHAS"
1523 msgstr ""
1524
1525 #. type: textblock
1526 #: ../src/guestfs.pod:764
1527 msgid ""
1528 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1529 "system [...] that works in the way it is documented but is counterintuitive "
1530 "and almost invites mistakes.\""
1531 msgstr ""
1532
1533 #. type: textblock
1534 #: ../src/guestfs.pod:768
1535 msgid ""
1536 "Since we developed libguestfs and the associated tools, there are several "
1537 "things we would have designed differently, but are now stuck with for "
1538 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1539 "release, you can expect these to change.  Beware of them."
1540 msgstr ""
1541
1542 #. type: =item
1543 #: ../src/guestfs.pod:776
1544 msgid "Autosync / forgetting to sync."
1545 msgstr ""
1546
1547 #. type: textblock
1548 #: ../src/guestfs.pod:778
1549 msgid ""
1550 "I<Update:> Autosync is enabled by default for all API users starting from "
1551 "libguestfs 1.5.24.  This section only applies to older versions."
1552 msgstr ""
1553
1554 #. type: textblock
1555 #: ../src/guestfs.pod:781
1556 msgid ""
1557 "When modifying a filesystem from C or another language, you B<must> unmount "
1558 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1559 "libguestfs handle.  You can also call:"
1560 msgstr ""
1561
1562 #. type: verbatim
1563 #: ../src/guestfs.pod:785
1564 #, no-wrap
1565 msgid ""
1566 " guestfs_set_autosync (g, 1);\n"
1567 "\n"
1568 msgstr ""
1569
1570 #. type: textblock
1571 #: ../src/guestfs.pod:787
1572 msgid ""
1573 "to have the unmount/sync done automatically for you when the handle 'g' is "
1574 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> "
1575 "q.v.)"
1576 msgstr ""
1577
1578 #. type: textblock
1579 #: ../src/guestfs.pod:791
1580 msgid ""
1581 "If you forget to do this, then it is entirely possible that your changes "
1582 "won't be written out, or will be partially written, or (very rarely) that "
1583 "you'll get disk corruption."
1584 msgstr ""
1585
1586 #. type: textblock
1587 #: ../src/guestfs.pod:795
1588 msgid ""
1589 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1590 "guestfish scripts that forget to sync will work just fine, which can make "
1591 "this very puzzling if you are trying to debug a problem."
1592 msgstr ""
1593
1594 #. type: =item
1595 #: ../src/guestfs.pod:799
1596 msgid "Mount option C<-o sync> should not be the default."
1597 msgstr ""
1598
1599 #. type: textblock
1600 #: ../src/guestfs.pod:801
1601 msgid ""
1602 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1603 "However C<-o sync> does not add any reliability benefit, but does have a "
1604 "very large performance impact."
1605 msgstr ""
1606
1607 #. type: textblock
1608 #: ../src/guestfs.pod:805
1609 msgid ""
1610 "The work around is to use L</guestfs_mount_options> and set the mount "
1611 "options that you actually want to use."
1612 msgstr ""
1613
1614 #. type: =item
1615 #: ../src/guestfs.pod:808
1616 msgid "Read-only should be the default."
1617 msgstr ""
1618
1619 #. type: textblock
1620 #: ../src/guestfs.pod:810
1621 msgid ""
1622 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1623 "specify I<--rw> if you want to make changes to the image."
1624 msgstr ""
1625
1626 #. type: textblock
1627 #: ../src/guestfs.pod:813
1628 msgid "This would reduce the potential to corrupt live VM images."
1629 msgstr ""
1630
1631 #. type: textblock
1632 #: ../src/guestfs.pod:815
1633 msgid ""
1634 "Note that many filesystems change the disk when you just mount and unmount, "
1635 "even if you didn't perform any writes.  You need to use "
1636 "L</guestfs_add_drive_ro> to guarantee that the disk is not changed."
1637 msgstr ""
1638
1639 #. type: =item
1640 #: ../src/guestfs.pod:819
1641 msgid "guestfish command line is hard to use."
1642 msgstr ""
1643
1644 #. type: textblock
1645 #: ../src/guestfs.pod:821
1646 msgid ""
1647 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1648 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1649 "exist, so it fails.  In earlier versions of guestfish the error message was "
1650 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1651 "we should have used C<guestfish -c command> to run commands."
1652 msgstr ""
1653
1654 #. type: =item
1655 #: ../src/guestfs.pod:828
1656 msgid "guestfish megabyte modifiers don't work right on all commands"
1657 msgstr ""
1658
1659 #. type: textblock
1660 #: ../src/guestfs.pod:830
1661 msgid ""
1662 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1663 "other modifiers).  What guestfish actually does is to multiply the number "
1664 "part by the modifier part and pass the result to the C API.  However this "
1665 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1666 "expecting some other unit (eg. megabytes)."
1667 msgstr ""
1668
1669 #. type: textblock
1670 #: ../src/guestfs.pod:837
1671 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1672 msgstr ""
1673
1674 #. type: verbatim
1675 #: ../src/guestfs.pod:839
1676 #, no-wrap
1677 msgid ""
1678 " lvcreate LV VG 100M\n"
1679 "\n"
1680 msgstr ""
1681
1682 #. type: textblock
1683 #: ../src/guestfs.pod:841
1684 msgid ""
1685 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1686 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1687 "megabytes * megabytes) logical volume.  The error message you get from this "
1688 "is also a little obscure."
1689 msgstr ""
1690
1691 #. type: textblock
1692 #: ../src/guestfs.pod:846
1693 msgid ""
1694 "This could be fixed in the generator by specially marking parameters and "
1695 "return values which take bytes or other units."
1696 msgstr ""
1697
1698 #. type: =item
1699 #: ../src/guestfs.pod:849
1700 msgid "Ambiguity between devices and paths"
1701 msgstr ""
1702
1703 #. type: textblock
1704 #: ../src/guestfs.pod:851
1705 msgid ""
1706 "There is a subtle ambiguity in the API between a device name "
1707 "(eg. C</dev/sdb2>) and a similar pathname.  A file might just happen to be "
1708 "called C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1709 msgstr ""
1710
1711 #. type: textblock
1712 #: ../src/guestfs.pod:856
1713 msgid ""
1714 "In the current API we usually resolve this ambiguity by having two separate "
1715 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1716 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1717 "detecting if the path supplied begins with C</dev/>."
1718 msgstr ""
1719
1720 #. type: textblock
1721 #: ../src/guestfs.pod:862
1722 msgid ""
1723 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1724 "make paths/devices into structured names.  One way to do this would be to "
1725 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1726 "aspect of grub.  Another way would be to use a structured type, equivalent "
1727 "to this OCaml type:"
1728 msgstr ""
1729
1730 #. type: verbatim
1731 #: ../src/guestfs.pod:868
1732 #, no-wrap
1733 msgid ""
1734 " type path = Path of string | Device of int | Partition of int * int\n"
1735 "\n"
1736 msgstr ""
1737
1738 #. type: textblock
1739 #: ../src/guestfs.pod:870
1740 msgid "which would allow you to pass arguments like:"
1741 msgstr ""
1742
1743 #. type: verbatim
1744 #: ../src/guestfs.pod:872
1745 #, no-wrap
1746 msgid ""
1747 " Path \"/foo/bar\"\n"
1748 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1749 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1750 " Path \"/dev/sdb2\"    (* not a device *)\n"
1751 "\n"
1752 msgstr ""
1753
1754 #. type: textblock
1755 #: ../src/guestfs.pod:877
1756 msgid ""
1757 "As you can see there are still problems to resolve even with this "
1758 "representation.  Also consider how it might work in guestfish."
1759 msgstr ""
1760
1761 #. type: =head2
1762 #: ../src/guestfs.pod:882
1763 msgid "KEYS AND PASSPHRASES"
1764 msgstr ""
1765
1766 #. type: textblock
1767 #: ../src/guestfs.pod:884
1768 msgid ""
1769 "Certain libguestfs calls take a parameter that contains sensitive key "
1770 "material, passed in as a C string."
1771 msgstr ""
1772
1773 #. type: textblock
1774 #: ../src/guestfs.pod:887
1775 msgid ""
1776 "In the future we would hope to change the libguestfs implementation so that "
1777 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1778 "swap.  However this is I<not> done at the moment, because of the complexity "
1779 "of such an implementation."
1780 msgstr ""
1781
1782 #. type: textblock
1783 #: ../src/guestfs.pod:892
1784 msgid ""
1785 "Therefore you should be aware that any key parameter you pass to libguestfs "
1786 "might end up being written out to the swap partition.  If this is a concern, "
1787 "scrub the swap partition or don't use libguestfs on encrypted devices."
1788 msgstr ""
1789
1790 #. type: =head2
1791 #: ../src/guestfs.pod:897
1792 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1793 msgstr ""
1794
1795 #. type: textblock
1796 #: ../src/guestfs.pod:899
1797 msgid ""
1798 "All high-level libguestfs actions are synchronous.  If you want to use "
1799 "libguestfs asynchronously then you must create a thread."
1800 msgstr ""
1801
1802 #. type: textblock
1803 #: ../src/guestfs.pod:902
1804 msgid ""
1805 "Only use the handle from a single thread.  Either use the handle exclusively "
1806 "from one thread, or provide your own mutex so that two threads cannot issue "
1807 "calls on the same handle at the same time."
1808 msgstr ""
1809
1810 #. type: textblock
1811 #: ../src/guestfs.pod:906
1812 msgid ""
1813 "See the graphical program guestfs-browser for one possible architecture for "
1814 "multithreaded programs using libvirt and libguestfs."
1815 msgstr ""
1816
1817 #. type: =head2
1818 #: ../src/guestfs.pod:909
1819 msgid "PATH"
1820 msgstr ""
1821
1822 #. type: textblock
1823 #: ../src/guestfs.pod:911
1824 msgid ""
1825 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1826 "internal path."
1827 msgstr ""
1828
1829 #. type: textblock
1830 #: ../src/guestfs.pod:914
1831 msgid ""
1832 "By default it looks for these in the directory C<$libdir/guestfs> "
1833 "(eg. C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1834 msgstr ""
1835
1836 #. type: textblock
1837 #: ../src/guestfs.pod:917
1838 msgid ""
1839 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1840 "to change the directories that libguestfs will search in.  The value is a "
1841 "colon-separated list of paths.  The current directory is I<not> searched "
1842 "unless the path contains an empty element or C<.>.  For example "
1843 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1844 "then C</usr/lib/guestfs>."
1845 msgstr ""
1846
1847 #. type: =head2
1848 #: ../src/guestfs.pod:924
1849 msgid "QEMU WRAPPERS"
1850 msgstr ""
1851
1852 #. type: textblock
1853 #: ../src/guestfs.pod:926
1854 msgid ""
1855 "If you want to compile your own qemu, run qemu from a non-standard location, "
1856 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1857 "around qemu."
1858 msgstr ""
1859
1860 #. type: textblock
1861 #: ../src/guestfs.pod:930
1862 msgid ""
1863 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1864 "last command in the shell script (so that qemu replaces the shell and "
1865 "becomes the direct child of the libguestfs-using program).  If you don't do "
1866 "this, then the qemu process won't be cleaned up correctly."
1867 msgstr ""
1868
1869 #. type: textblock
1870 #: ../src/guestfs.pod:935
1871 msgid ""
1872 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1873 "source:"
1874 msgstr ""
1875
1876 #. type: verbatim
1877 #: ../src/guestfs.pod:938
1878 #, no-wrap
1879 msgid ""
1880 " #!/bin/sh -\n"
1881 " qemudir=/home/rjones/d/qemu\n"
1882 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios "
1883 "\"$@\"\n"
1884 "\n"
1885 msgstr ""
1886
1887 #. type: textblock
1888 #: ../src/guestfs.pod:942
1889 msgid ""
1890 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1891 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1892 "example:"
1893 msgstr ""
1894
1895 #. type: verbatim
1896 #: ../src/guestfs.pod:946
1897 #, no-wrap
1898 msgid ""
1899 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1900 "\n"
1901 msgstr ""
1902
1903 #. type: textblock
1904 #: ../src/guestfs.pod:948
1905 msgid ""
1906 "Note that libguestfs also calls qemu with the -help and -version options in "
1907 "order to determine features."
1908 msgstr ""
1909
1910 #. type: =head2
1911 #: ../src/guestfs.pod:951
1912 msgid "ATTACHING TO RUNNING DAEMONS"
1913 msgstr ""
1914
1915 #. type: textblock
1916 #: ../src/guestfs.pod:953
1917 msgid ""
1918 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
1919 "babies.  Use with caution."
1920 msgstr ""
1921
1922 #. type: textblock
1923 #: ../src/guestfs.pod:956
1924 msgid ""
1925 "I<Note (2):> This section explains how to attach to a running daemon from a "
1926 "low level perspective.  For most users, simply using virt tools such as "
1927 "L<guestfish(1)> with the I<--live> option will \"just work\"."
1928 msgstr ""
1929
1930 #. type: =head3
1931 #: ../src/guestfs.pod:960
1932 msgid "Using guestfs_set_attach_method"
1933 msgstr ""
1934
1935 #. type: textblock
1936 #: ../src/guestfs.pod:962
1937 msgid ""
1938 "By calling L</guestfs_set_attach_method> you can change how the library "
1939 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read "
1940 "L</ARCHITECTURE> for some background)."
1941 msgstr ""
1942
1943 #. type: textblock
1944 #: ../src/guestfs.pod:966
1945 msgid ""
1946 "The normal attach method is C<appliance>, where a small appliance is created "
1947 "containing the daemon, and then the library connects to this."
1948 msgstr ""
1949
1950 #. type: textblock
1951 #: ../src/guestfs.pod:969
1952 msgid ""
1953 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
1954 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
1955 "daemon over the Unix domain socket."
1956 msgstr ""
1957
1958 #. type: textblock
1959 #: ../src/guestfs.pod:973
1960 msgid ""
1961 "The normal use for this is to connect to a running virtual machine that "
1962 "contains a C<guestfsd> daemon, and send commands so you can read and write "
1963 "files inside the live virtual machine."
1964 msgstr ""
1965
1966 #. type: =head3
1967 #: ../src/guestfs.pod:977
1968 msgid "Using guestfs_add_domain with live flag"
1969 msgstr ""
1970
1971 #. type: textblock
1972 #: ../src/guestfs.pod:979
1973 msgid ""
1974 "L</guestfs_add_domain> provides some help for getting the correct attach "
1975 "method.  If you pass the C<live> option to this function, then (if the "
1976 "virtual machine is running) it will examine the libvirt XML looking for a "
1977 "virtio-serial channel to connect to:"
1978 msgstr ""
1979
1980 #. type: verbatim
1981 #: ../src/guestfs.pod:985
1982 #, no-wrap
1983 msgid ""
1984 " <domain>\n"
1985 "   ...\n"
1986 "   <devices>\n"
1987 "     ...\n"
1988 "     <channel type='unix'>\n"
1989 "       <source mode='bind' path='/path/to/socket'/>\n"
1990 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
1991 "     </channel>\n"
1992 "     ...\n"
1993 "   </devices>\n"
1994 " </domain>\n"
1995 "\n"
1996 msgstr ""
1997
1998 #. type: textblock
1999 #: ../src/guestfs.pod:997
2000 msgid ""
2001 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2002 "method to C<unix:/path/to/socket>."
2003 msgstr ""
2004
2005 #. type: textblock
2006 #: ../src/guestfs.pod:1000
2007 msgid ""
2008 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2009 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2010 "to attach to and modify live virtual machines."
2011 msgstr ""
2012
2013 #. type: textblock
2014 #: ../src/guestfs.pod:1004
2015 msgid ""
2016 "The virtual machine needs to have been set up beforehand so that it has the "
2017 "virtio-serial channel and so that guestfsd is running inside it."
2018 msgstr ""
2019
2020 #. type: =head2
2021 #: ../src/guestfs.pod:1008
2022 msgid "ABI GUARANTEE"
2023 msgstr ""
2024
2025 #. type: textblock
2026 #: ../src/guestfs.pod:1010
2027 msgid ""
2028 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2029 "actions as outlined in this section.  Although we will deprecate some "
2030 "actions, for example if they get replaced by newer calls, we will keep the "
2031 "old actions forever.  This allows you the developer to program in confidence "
2032 "against the libguestfs API."
2033 msgstr ""
2034
2035 #. type: =head2
2036 #: ../src/guestfs.pod:1016
2037 msgid "BLOCK DEVICE NAMING"
2038 msgstr ""
2039
2040 #. type: textblock
2041 #: ../src/guestfs.pod:1018
2042 msgid ""
2043 "In the kernel there is now quite a profusion of schemata for naming block "
2044 "devices (in this context, by I<block device> I mean a physical or virtual "
2045 "hard drive).  The original Linux IDE driver used names starting with "
2046 "C</dev/hd*>.  SCSI devices have historically used a different naming scheme, "
2047 "C</dev/sd*>.  When the Linux kernel I<libata> driver became a popular "
2048 "replacement for the old IDE driver (particularly for SATA devices) those "
2049 "devices also used the C</dev/sd*> scheme.  Additionally we now have virtual "
2050 "machines with paravirtualized drivers.  This has created several different "
2051 "naming systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for "
2052 "Xen PV disks."
2053 msgstr ""
2054
2055 #. type: textblock
2056 #: ../src/guestfs.pod:1030
2057 msgid ""
2058 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2059 "Linux kernel to access block devices.  We can run a variety of appliances "
2060 "based on a variety of Linux kernels."
2061 msgstr ""
2062
2063 #. type: textblock
2064 #: ../src/guestfs.pod:1034
2065 msgid ""
2066 "This causes a problem for libguestfs because many API calls use device or "
2067 "partition names.  Working scripts and the recipe (example) scripts that we "
2068 "make available over the internet could fail if the naming scheme changes."
2069 msgstr ""
2070
2071 #. type: textblock
2072 #: ../src/guestfs.pod:1039
2073 msgid ""
2074 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2075 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2076 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2077 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2078 msgstr ""
2079
2080 #. type: textblock
2081 #: ../src/guestfs.pod:1045
2082 msgid ""
2083 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2084 "L</guestfs_list_partitions> and similar calls return the true names of the "
2085 "devices and partitions as known to the appliance."
2086 msgstr ""
2087
2088 #. type: =head3
2089 #: ../src/guestfs.pod:1050
2090 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2091 msgstr ""
2092
2093 #. type: textblock
2094 #: ../src/guestfs.pod:1052
2095 msgid ""
2096 "Usually this translation is transparent.  However in some (very rare)  cases "
2097 "you may need to know the exact algorithm.  Such cases include where you use "
2098 "L</guestfs_config> to add a mixture of virtio and IDE devices to the "
2099 "qemu-based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> "
2100 "devices."
2101 msgstr ""
2102
2103 #. type: textblock
2104 #: ../src/guestfs.pod:1058
2105 msgid ""
2106 "The algorithm is applied only to I<parameters> which are known to be either "
2107 "device or partition names.  Return values from functions such as "
2108 "L</guestfs_list_devices> are never changed."
2109 msgstr ""
2110
2111 #. type: textblock
2112 #: ../src/guestfs.pod:1066
2113 msgid "Is the string a parameter which is a device or partition name?"
2114 msgstr ""
2115
2116 #. type: textblock
2117 #: ../src/guestfs.pod:1070
2118 msgid "Does the string begin with C</dev/sd>?"
2119 msgstr ""
2120
2121 #. type: textblock
2122 #: ../src/guestfs.pod:1074
2123 msgid ""
2124 "Does the named device exist? If so, we use that device.  However if I<not> "
2125 "then we continue with this algorithm."
2126 msgstr ""
2127
2128 #. type: textblock
2129 #: ../src/guestfs.pod:1079
2130 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2131 msgstr ""
2132
2133 #. type: textblock
2134 #: ../src/guestfs.pod:1081
2135 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2136 msgstr ""
2137
2138 #. type: textblock
2139 #: ../src/guestfs.pod:1083
2140 msgid "If that named device exists, use it.  If not, continue."
2141 msgstr ""
2142
2143 #. type: textblock
2144 #: ../src/guestfs.pod:1087
2145 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2146 msgstr ""
2147
2148 #. type: textblock
2149 #: ../src/guestfs.pod:1089
2150 msgid "If that named device exists, use it.  If not, return an error."
2151 msgstr ""
2152
2153 #. type: =head3
2154 #: ../src/guestfs.pod:1093
2155 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2156 msgstr ""
2157
2158 #. type: textblock
2159 #: ../src/guestfs.pod:1095
2160 msgid ""
2161 "Although the standard naming scheme and automatic translation is useful for "
2162 "simple programs and guestfish scripts, for larger programs it is best not to "
2163 "rely on this mechanism."
2164 msgstr ""
2165
2166 #. type: textblock
2167 #: ../src/guestfs.pod:1099
2168 msgid ""
2169 "Where possible for maximum future portability programs using libguestfs "
2170 "should use these future-proof techniques:"
2171 msgstr ""
2172
2173 #. type: textblock
2174 #: ../src/guestfs.pod:1106
2175 msgid ""
2176 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2177 "device names, and then use those names directly."
2178 msgstr ""
2179
2180 #. type: textblock
2181 #: ../src/guestfs.pod:1109
2182 msgid "Since those device names exist by definition, they will never be translated."
2183 msgstr ""
2184
2185 #. type: textblock
2186 #: ../src/guestfs.pod:1114
2187 msgid ""
2188 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2189 "filesystem labels."
2190 msgstr ""
2191
2192 #. type: =head1
2193 #: ../src/guestfs.pod:1119
2194 msgid "SECURITY"
2195 msgstr ""
2196
2197 #. type: textblock
2198 #: ../src/guestfs.pod:1121
2199 msgid ""
2200 "This section discusses security implications of using libguestfs, "
2201 "particularly with untrusted or malicious guests or disk images."
2202 msgstr ""
2203
2204 #. type: =head2
2205 #: ../src/guestfs.pod:1124
2206 msgid "GENERAL SECURITY CONSIDERATIONS"
2207 msgstr ""
2208
2209 #. type: textblock
2210 #: ../src/guestfs.pod:1126
2211 msgid ""
2212 "Be careful with any files or data that you download from a guest (by "
2213 "\"download\" we mean not just the L</guestfs_download> command but any "
2214 "command that reads files, filenames, directories or anything else from a "
2215 "disk image).  An attacker could manipulate the data to fool your program "
2216 "into doing the wrong thing.  Consider cases such as:"
2217 msgstr ""
2218
2219 #. type: textblock
2220 #: ../src/guestfs.pod:1136
2221 msgid "the data (file etc) not being present"
2222 msgstr ""
2223
2224 #. type: textblock
2225 #: ../src/guestfs.pod:1140
2226 msgid "being present but empty"
2227 msgstr ""
2228
2229 #. type: textblock
2230 #: ../src/guestfs.pod:1144
2231 msgid "being much larger than normal"
2232 msgstr ""
2233
2234 #. type: textblock
2235 #: ../src/guestfs.pod:1148
2236 msgid "containing arbitrary 8 bit data"
2237 msgstr ""
2238
2239 #. type: textblock
2240 #: ../src/guestfs.pod:1152
2241 msgid "being in an unexpected character encoding"
2242 msgstr ""
2243
2244 #. type: textblock
2245 #: ../src/guestfs.pod:1156
2246 msgid "containing homoglyphs."
2247 msgstr ""
2248
2249 #. type: =head2
2250 #: ../src/guestfs.pod:1160
2251 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2252 msgstr ""
2253
2254 #. type: textblock
2255 #: ../src/guestfs.pod:1162
2256 msgid ""
2257 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2258 "(VFS) module can sometimes be escalated into exploits by deliberately "
2259 "creating a malicious, malformed filesystem.  These exploits are very severe "
2260 "for two reasons.  Firstly there are very many filesystem drivers in the "
2261 "kernel, and many of them are infrequently used and not much developer "
2262 "attention has been paid to the code.  Linux userspace helps potential "
2263 "crackers by detecting the filesystem type and automatically choosing the "
2264 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2265 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2266 "exploit (worse in some ways), giving immediate and total access to the "
2267 "system right down to the hardware level."
2268 msgstr ""
2269
2270 #. type: textblock
2271 #: ../src/guestfs.pod:1175
2272 msgid ""
2273 "That explains why you should never mount a filesystem from an untrusted "
2274 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2275 "inside a qemu virtual machine, usually running as a non-root user.  The "
2276 "attacker would need to write a filesystem which first exploited the kernel, "
2277 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2278 "the libguestfs protocol, and finally to be as serious as the host kernel "
2279 "exploit it would need to escalate its privileges to root.  This multi-step "
2280 "escalation, performed by a static piece of data, is thought to be extremely "
2281 "hard to do, although we never say 'never' about security issues."
2282 msgstr ""
2283
2284 #. type: textblock
2285 #: ../src/guestfs.pod:1186
2286 msgid ""
2287 "In any case callers can reduce the attack surface by forcing the filesystem "
2288 "type when mounting (use L</guestfs_mount_vfs>)."
2289 msgstr ""
2290
2291 #. type: =head2
2292 #: ../src/guestfs.pod:1189
2293 msgid "PROTOCOL SECURITY"
2294 msgstr ""
2295
2296 #. type: textblock
2297 #: ../src/guestfs.pod:1191
2298 msgid ""
2299 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2300 "defined upper message size.  However a program that uses libguestfs must "
2301 "also take care - for example you can write a program that downloads a binary "
2302 "from a disk image and executes it locally, and no amount of protocol "
2303 "security will save you from the consequences."
2304 msgstr ""
2305
2306 #. type: =head2
2307 #: ../src/guestfs.pod:1197
2308 msgid "INSPECTION SECURITY"
2309 msgstr ""
2310
2311 #. type: textblock
2312 #: ../src/guestfs.pod:1199
2313 msgid ""
2314 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2315 "directly from the guest, and these could contain any 8 bit data.  Callers "
2316 "should be careful to escape these before printing them to a structured file "
2317 "(for example, use HTML escaping if creating a web page)."
2318 msgstr ""
2319
2320 #. type: textblock
2321 #: ../src/guestfs.pod:1205
2322 msgid ""
2323 "Guest configuration may be altered in unusual ways by the administrator of "
2324 "the virtual machine, and may not reflect reality (particularly for untrusted "
2325 "or actively malicious guests).  For example we parse the hostname from "
2326 "configuration files like C</etc/sysconfig/network> that we find in the "
2327 "guest, but the guest administrator can easily manipulate these files to "
2328 "provide the wrong hostname."
2329 msgstr ""
2330
2331 #. type: textblock
2332 #: ../src/guestfs.pod:1213
2333 msgid ""
2334 "The inspection API parses guest configuration using two external libraries: "
2335 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2336 "designed to be robust in the face of malicious data, although denial of "
2337 "service attacks are still possible, for example with oversized configuration "
2338 "files."
2339 msgstr ""
2340
2341 #. type: =head2
2342 #: ../src/guestfs.pod:1219
2343 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2344 msgstr ""
2345
2346 #. type: textblock
2347 #: ../src/guestfs.pod:1221
2348 msgid ""
2349 "Be very cautious about running commands from the guest.  By running a "
2350 "command in the guest, you are giving CPU time to a binary that you do not "
2351 "control, under the same user account as the library, albeit wrapped in qemu "
2352 "virtualization.  More information and alternatives can be found in the "
2353 "section L</RUNNING COMMANDS>."
2354 msgstr ""
2355
2356 #. type: =head2
2357 #: ../src/guestfs.pod:1227
2358 msgid "CVE-2010-3851"
2359 msgstr ""
2360
2361 #. type: textblock
2362 #: ../src/guestfs.pod:1229
2363 msgid "https://bugzilla.redhat.com/642934"
2364 msgstr ""
2365
2366 #. type: textblock
2367 #: ../src/guestfs.pod:1231
2368 msgid ""
2369 "This security bug concerns the automatic disk format detection that qemu "
2370 "does on disk images."
2371 msgstr ""
2372
2373 #. type: textblock
2374 #: ../src/guestfs.pod:1234
2375 msgid ""
2376 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2377 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2378 "for one of the known headers, and if none is found then assuming the disk "
2379 "image must be raw."
2380 msgstr ""
2381
2382 #. type: textblock
2383 #: ../src/guestfs.pod:1239
2384 msgid ""
2385 "This allows a guest which has been given a raw disk image to write some "
2386 "other header.  At next boot (or when the disk image is accessed by "
2387 "libguestfs) qemu would do autodetection and think the disk image format was, "
2388 "say, qcow2 based on the header written by the guest."
2389 msgstr ""
2390
2391 #. type: textblock
2392 #: ../src/guestfs.pod:1244
2393 msgid ""
2394 "This in itself would not be a problem, but qcow2 offers many features, one "
2395 "of which is to allow a disk image to refer to another image (called the "
2396 "\"backing disk\").  It does this by placing the path to the backing disk "
2397 "into the qcow2 header.  This path is not validated and could point to any "
2398 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2399 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2400 "control of the attacker."
2401 msgstr ""
2402
2403 #. type: textblock
2404 #: ../src/guestfs.pod:1252
2405 msgid "In libguestfs this is rather hard to exploit except under two circumstances:"
2406 msgstr ""
2407
2408 #. type: textblock
2409 #: ../src/guestfs.pod:1259
2410 msgid "You have enabled the network or have opened the disk in write mode."
2411 msgstr ""
2412
2413 #. type: textblock
2414 #: ../src/guestfs.pod:1263
2415 msgid ""
2416 "You are also running untrusted code from the guest (see L</RUNNING "
2417 "COMMANDS>)."
2418 msgstr ""
2419
2420 #. type: textblock
2421 #: ../src/guestfs.pod:1268
2422 msgid ""
2423 "The way to avoid this is to specify the expected disk format when adding "
2424 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2425 "should always do this if the disk is raw format, and it's a good idea for "
2426 "other cases too."
2427 msgstr ""
2428
2429 #. type: textblock
2430 #: ../src/guestfs.pod:1273
2431 msgid ""
2432 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2433 "format is fetched from libvirt and passed through."
2434 msgstr ""
2435
2436 #. type: textblock
2437 #: ../src/guestfs.pod:1276
2438 msgid ""
2439 "For libguestfs tools, use the I<--format> command line parameter as "
2440 "appropriate."
2441 msgstr ""
2442
2443 #. type: =head1
2444 #: ../src/guestfs.pod:1279
2445 msgid "CONNECTION MANAGEMENT"
2446 msgstr ""
2447
2448 #. type: =head2
2449 #: ../src/guestfs.pod:1281
2450 msgid "guestfs_h *"
2451 msgstr ""
2452
2453 #. type: textblock
2454 #: ../src/guestfs.pod:1283
2455 msgid ""
2456 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2457 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2458 "handle and release all resources used."
2459 msgstr ""
2460
2461 #. type: textblock
2462 #: ../src/guestfs.pod:1287
2463 msgid ""
2464 "For information on using multiple handles and threads, see the section "
2465 "L</MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2466 msgstr ""
2467
2468 #. type: =head2
2469 #: ../src/guestfs.pod:1290
2470 msgid "guestfs_create"
2471 msgstr ""
2472
2473 #. type: verbatim
2474 #: ../src/guestfs.pod:1292
2475 #, no-wrap
2476 msgid ""
2477 " guestfs_h *guestfs_create (void);\n"
2478 "\n"
2479 msgstr ""
2480
2481 #. type: textblock
2482 #: ../src/guestfs.pod:1294
2483 msgid "Create a connection handle."
2484 msgstr ""
2485
2486 #. type: textblock
2487 #: ../src/guestfs.pod:1296
2488 msgid ""
2489 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2490 "NULL."
2491 msgstr ""
2492
2493 #. type: textblock
2494 #: ../src/guestfs.pod:1299
2495 msgid ""
2496 "You have to \"configure\" the handle after creating it.  This includes "
2497 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2498 "handle at least once."
2499 msgstr ""
2500
2501 #. type: textblock
2502 #: ../src/guestfs.pod:1303
2503 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2504 msgstr ""
2505
2506 #. type: textblock
2507 #: ../src/guestfs.pod:1305
2508 msgid ""
2509 "You may also want to configure error handling for the handle.  See the "
2510 "L</ERROR HANDLING> section below."
2511 msgstr ""
2512
2513 #. type: =head2
2514 #: ../src/guestfs.pod:1308
2515 msgid "guestfs_close"
2516 msgstr ""
2517
2518 #. type: verbatim
2519 #: ../src/guestfs.pod:1310
2520 #, no-wrap
2521 msgid ""
2522 " void guestfs_close (guestfs_h *g);\n"
2523 "\n"
2524 msgstr ""
2525
2526 #. type: textblock
2527 #: ../src/guestfs.pod:1312
2528 msgid "This closes the connection handle and frees up all resources used."
2529 msgstr ""
2530
2531 #. type: textblock
2532 #: ../src/guestfs.pod:1314
2533 msgid ""
2534 "If autosync was set on the handle and the handle was launched, then this "
2535 "implicitly calls various functions to unmount filesystems and sync the "
2536 "disk.  See L</guestfs_set_autosync> for more details."
2537 msgstr ""
2538
2539 #. type: textblock
2540 #: ../src/guestfs.pod:1318
2541 msgid "If a close callback was set on the handle, then it is called."
2542 msgstr ""
2543
2544 #. type: =head1
2545 #: ../src/guestfs.pod:1320
2546 msgid "ERROR HANDLING"
2547 msgstr ""
2548
2549 #. type: textblock
2550 #: ../src/guestfs.pod:1322
2551 msgid ""
2552 "API functions can return errors.  For example, almost all functions that "
2553 "return C<int> will return C<-1> to indicate an error."
2554 msgstr ""
2555
2556 #. type: textblock
2557 #: ../src/guestfs.pod:1325
2558 msgid ""
2559 "Additional information is available for errors: an error message string and "
2560 "optionally an error number (errno) if the thing that failed was a system "
2561 "call."
2562 msgstr ""
2563
2564 #. type: textblock
2565 #: ../src/guestfs.pod:1329
2566 msgid ""
2567 "You can get at the additional information about the last error on the handle "
2568 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2569 "up an error handler with L</guestfs_set_error_handler>."
2570 msgstr ""
2571
2572 #. type: textblock
2573 #: ../src/guestfs.pod:1334
2574 msgid ""
2575 "When the handle is created, a default error handler is installed which "
2576 "prints the error message string to C<stderr>.  For small short-running "
2577 "command line programs it is sufficient to do:"
2578 msgstr ""
2579
2580 #. type: verbatim
2581 #: ../src/guestfs.pod:1338
2582 #, no-wrap
2583 msgid ""
2584 " if (guestfs_launch (g) == -1)\n"
2585 "   exit (EXIT_FAILURE);\n"
2586 "\n"
2587 msgstr ""
2588
2589 #. type: textblock
2590 #: ../src/guestfs.pod:1341
2591 msgid ""
2592 "since the default error handler will ensure that an error message has been "
2593 "printed to C<stderr> before the program exits."
2594 msgstr ""
2595
2596 #. type: textblock
2597 #: ../src/guestfs.pod:1344
2598 msgid ""
2599 "For other programs the caller will almost certainly want to install an "
2600 "alternate error handler or do error handling in-line like this:"
2601 msgstr ""
2602
2603 #. type: verbatim
2604 #: ../src/guestfs.pod:1347
2605 #, no-wrap
2606 msgid ""
2607 " g = guestfs_create ();\n"
2608 " \n"
2609 msgstr ""
2610
2611 #. type: verbatim
2612 #: ../src/guestfs.pod:1349
2613 #, no-wrap
2614 msgid ""
2615 " /* This disables the default behaviour of printing errors\n"
2616 "    on stderr. */\n"
2617 " guestfs_set_error_handler (g, NULL, NULL);\n"
2618 " \n"
2619 msgstr ""
2620
2621 #. type: verbatim
2622 #: ../src/guestfs.pod:1353
2623 #, no-wrap
2624 msgid ""
2625 " if (guestfs_launch (g) == -1) {\n"
2626 "   /* Examine the error message and print it etc. */\n"
2627 "   char *msg = guestfs_last_error (g);\n"
2628 "   int errnum = guestfs_last_errno (g);\n"
2629 "   fprintf (stderr, \"%s\\n\", msg);\n"
2630 "   /* ... */\n"
2631 "  }\n"
2632 "\n"
2633 msgstr ""
2634
2635 #. type: textblock
2636 #: ../src/guestfs.pod:1361
2637 msgid ""
2638 "Out of memory errors are handled differently.  The default action is to call "
2639 "L<abort(3)>.  If this is undesirable, then you can set a handler using "
2640 "L</guestfs_set_out_of_memory_handler>."
2641 msgstr ""
2642
2643 #. type: textblock
2644 #: ../src/guestfs.pod:1365
2645 msgid ""
2646 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2647 "because there is no handle if this happens there is no way to get additional "
2648 "error information.  However L</guestfs_create> is supposed to be a "
2649 "lightweight operation which can only fail because of insufficient memory (it "
2650 "returns NULL in this case)."
2651 msgstr ""
2652
2653 #. type: =head2
2654 #: ../src/guestfs.pod:1371
2655 msgid "guestfs_last_error"
2656 msgstr ""
2657
2658 #. type: verbatim
2659 #: ../src/guestfs.pod:1373
2660 #, no-wrap
2661 msgid ""
2662 " const char *guestfs_last_error (guestfs_h *g);\n"
2663 "\n"
2664 msgstr ""
2665
2666 #. type: textblock
2667 #: ../src/guestfs.pod:1375
2668 msgid ""
2669 "This returns the last error message that happened on C<g>.  If there has not "
2670 "been an error since the handle was created, then this returns C<NULL>."
2671 msgstr ""
2672
2673 #. type: textblock
2674 #: ../src/guestfs.pod:1379
2675 msgid ""
2676 "The lifetime of the returned string is until the next error occurs, or "
2677 "L</guestfs_close> is called."
2678 msgstr ""
2679
2680 #. type: =head2
2681 #: ../src/guestfs.pod:1382
2682 msgid "guestfs_last_errno"
2683 msgstr ""
2684
2685 #. type: verbatim
2686 #: ../src/guestfs.pod:1384
2687 #, no-wrap
2688 msgid ""
2689 " int guestfs_last_errno (guestfs_h *g);\n"
2690 "\n"
2691 msgstr ""
2692
2693 #. type: textblock
2694 #: ../src/guestfs.pod:1386
2695 msgid "This returns the last error number (errno) that happened on C<g>."
2696 msgstr ""
2697
2698 #. type: textblock
2699 #: ../src/guestfs.pod:1388
2700 msgid "If successful, an errno integer not equal to zero is returned."
2701 msgstr ""
2702
2703 #. type: textblock
2704 #: ../src/guestfs.pod:1390
2705 msgid "If no error, this returns 0.  This call can return 0 in three situations:"
2706 msgstr ""
2707
2708 #. type: textblock
2709 #: ../src/guestfs.pod:1397
2710 msgid "There has not been any error on the handle."
2711 msgstr ""
2712
2713 #. type: textblock
2714 #: ../src/guestfs.pod:1401
2715 msgid ""
2716 "There has been an error but the errno was meaningless.  This corresponds to "
2717 "the case where the error did not come from a failed system call, but for "
2718 "some other reason."
2719 msgstr ""
2720
2721 #. type: textblock
2722 #: ../src/guestfs.pod:1407
2723 msgid ""
2724 "There was an error from a failed system call, but for some reason the errno "
2725 "was not captured and returned.  This usually indicates a bug in libguestfs."
2726 msgstr ""
2727
2728 #. type: textblock
2729 #: ../src/guestfs.pod:1413
2730 msgid ""
2731 "Libguestfs tries to convert the errno from inside the applicance into a "
2732 "corresponding errno for the caller (not entirely trivial: the appliance "
2733 "might be running a completely different operating system from the library "
2734 "and error numbers are not standardized across Un*xen).  If this could not be "
2735 "done, then the error is translated to C<EINVAL>.  In practice this should "
2736 "only happen in very rare circumstances."
2737 msgstr ""
2738
2739 #. type: =head2
2740 #: ../src/guestfs.pod:1421
2741 msgid "guestfs_set_error_handler"
2742 msgstr ""
2743
2744 #. type: verbatim
2745 #: ../src/guestfs.pod:1423
2746 #, no-wrap
2747 msgid ""
2748 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2749 "                                           void *opaque,\n"
2750 "                                           const char *msg);\n"
2751 " void guestfs_set_error_handler (guestfs_h *g,\n"
2752 "                                 guestfs_error_handler_cb cb,\n"
2753 "                                 void *opaque);\n"
2754 "\n"
2755 msgstr ""
2756
2757 #. type: textblock
2758 #: ../src/guestfs.pod:1430
2759 msgid ""
2760 "The callback C<cb> will be called if there is an error.  The parameters "
2761 "passed to the callback are an opaque data pointer and the error message "
2762 "string."
2763 msgstr ""
2764
2765 #. type: textblock
2766 #: ../src/guestfs.pod:1434
2767 msgid ""
2768 "C<errno> is not passed to the callback.  To get that the callback must call "
2769 "L</guestfs_last_errno>."
2770 msgstr ""
2771
2772 #. type: textblock
2773 #: ../src/guestfs.pod:1437
2774 msgid ""
2775 "Note that the message string C<msg> is freed as soon as the callback "
2776 "function returns, so if you want to stash it somewhere you must make your "
2777 "own copy."
2778 msgstr ""
2779
2780 #. type: textblock
2781 #: ../src/guestfs.pod:1441
2782 msgid "The default handler prints messages on C<stderr>."
2783 msgstr ""
2784
2785 #. type: textblock
2786 #: ../src/guestfs.pod:1443
2787 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2788 msgstr ""
2789
2790 #. type: =head2
2791 #: ../src/guestfs.pod:1445
2792 msgid "guestfs_get_error_handler"
2793 msgstr ""
2794
2795 #. type: verbatim
2796 #: ../src/guestfs.pod:1447
2797 #, no-wrap
2798 msgid ""
2799 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2800 "                                                     void **opaque_rtn);\n"
2801 "\n"
2802 msgstr ""
2803
2804 #. type: textblock
2805 #: ../src/guestfs.pod:1450
2806 msgid "Returns the current error handler callback."
2807 msgstr ""
2808
2809 #. type: =head2
2810 #: ../src/guestfs.pod:1452
2811 msgid "guestfs_set_out_of_memory_handler"
2812 msgstr ""
2813
2814 #. type: verbatim
2815 #: ../src/guestfs.pod:1454
2816 #, no-wrap
2817 msgid ""
2818 " typedef void (*guestfs_abort_cb) (void);\n"
2819 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2820 "                                        guestfs_abort_cb);\n"
2821 "\n"
2822 msgstr ""
2823
2824 #. type: textblock
2825 #: ../src/guestfs.pod:1458
2826 msgid ""
2827 "The callback C<cb> will be called if there is an out of memory situation.  "
2828 "I<Note this callback must not return>."
2829 msgstr ""
2830
2831 #. type: textblock
2832 #: ../src/guestfs.pod:1461
2833 msgid "The default is to call L<abort(3)>."
2834 msgstr ""
2835
2836 #. type: textblock
2837 #: ../src/guestfs.pod:1463
2838 msgid "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2839 msgstr ""
2840
2841 #. type: =head2
2842 #: ../src/guestfs.pod:1466
2843 msgid "guestfs_get_out_of_memory_handler"
2844 msgstr ""
2845
2846 #. type: verbatim
2847 #: ../src/guestfs.pod:1468
2848 #, no-wrap
2849 msgid ""
2850 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2851 "\n"
2852 msgstr ""
2853
2854 #. type: textblock
2855 #: ../src/guestfs.pod:1470
2856 msgid "This returns the current out of memory handler."
2857 msgstr ""
2858
2859 #. type: =head1
2860 #: ../src/guestfs.pod:1472
2861 msgid "API CALLS"
2862 msgstr ""
2863
2864 #. type: textblock
2865 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1010
2866 msgid "@ACTIONS@"
2867 msgstr ""
2868
2869 #. type: =head1
2870 #: ../src/guestfs.pod:1476
2871 msgid "STRUCTURES"
2872 msgstr ""
2873
2874 #. type: textblock
2875 #: ../src/guestfs.pod:1478
2876 msgid "@STRUCTS@"
2877 msgstr ""
2878
2879 #. type: =head1
2880 #: ../src/guestfs.pod:1480
2881 msgid "AVAILABILITY"
2882 msgstr ""
2883
2884 #. type: =head2
2885 #: ../src/guestfs.pod:1482
2886 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2887 msgstr ""
2888
2889 #. type: textblock
2890 #: ../src/guestfs.pod:1484
2891 msgid ""
2892 "Using L</guestfs_available> you can test availability of the following "
2893 "groups of functions.  This test queries the appliance to see if the "
2894 "appliance you are currently using supports the functionality."
2895 msgstr ""
2896
2897 #. type: textblock
2898 #: ../src/guestfs.pod:1489
2899 msgid "@AVAILABILITY@"
2900 msgstr ""
2901
2902 #. type: =head2
2903 #: ../src/guestfs.pod:1491
2904 msgid "GUESTFISH supported COMMAND"
2905 msgstr ""
2906
2907 #. type: textblock
2908 #: ../src/guestfs.pod:1493
2909 msgid ""
2910 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
2911 "prints out the available groups and whether they are supported by this build "
2912 "of libguestfs.  Note however that you have to do C<run> first."
2913 msgstr ""
2914
2915 #. type: =head2
2916 #: ../src/guestfs.pod:1498
2917 msgid "SINGLE CALLS AT COMPILE TIME"
2918 msgstr ""
2919
2920 #. type: textblock
2921 #: ../src/guestfs.pod:1500
2922 msgid ""
2923 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
2924 "function, such as:"
2925 msgstr ""
2926
2927 #. type: verbatim
2928 #: ../src/guestfs.pod:1503
2929 #, no-wrap
2930 msgid ""
2931 " #define LIBGUESTFS_HAVE_DD 1\n"
2932 "\n"
2933 msgstr ""
2934
2935 #. type: textblock
2936 #: ../src/guestfs.pod:1505
2937 msgid "if L</guestfs_dd> is available."
2938 msgstr ""
2939
2940 #. type: textblock
2941 #: ../src/guestfs.pod:1507
2942 msgid ""
2943 "Before version 1.5.8, if you needed to test whether a single libguestfs "
2944 "function is available at compile time, we recommended using build tools such "
2945 "as autoconf or cmake.  For example in autotools you could use:"
2946 msgstr ""
2947
2948 #. type: verbatim
2949 #: ../src/guestfs.pod:1512
2950 #, no-wrap
2951 msgid ""
2952 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
2953 " AC_CHECK_FUNCS([guestfs_dd])\n"
2954 "\n"
2955 msgstr ""
2956
2957 #. type: textblock
2958 #: ../src/guestfs.pod:1515
2959 msgid ""
2960 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
2961 "in your program."
2962 msgstr ""
2963
2964 #. type: =head2
2965 #: ../src/guestfs.pod:1518
2966 msgid "SINGLE CALLS AT RUN TIME"
2967 msgstr ""
2968
2969 #. type: textblock
2970 #: ../src/guestfs.pod:1520
2971 msgid ""
2972 "Testing at compile time doesn't guarantee that a function really exists in "
2973 "the library.  The reason is that you might be dynamically linked against a "
2974 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
2975 "This situation unfortunately results in a segmentation fault, which is a "
2976 "shortcoming of the C dynamic linking system itself."
2977 msgstr ""
2978
2979 #. type: textblock
2980 #: ../src/guestfs.pod:1527
2981 msgid ""
2982 "You can use L<dlopen(3)> to test if a function is available at run time, as "
2983 "in this example program (note that you still need the compile time check as "
2984 "well):"
2985 msgstr ""
2986
2987 #. type: verbatim
2988 #: ../src/guestfs.pod:1531
2989 #, no-wrap
2990 msgid ""
2991 " #include <stdio.h>\n"
2992 " #include <stdlib.h>\n"
2993 " #include <unistd.h>\n"
2994 " #include <dlfcn.h>\n"
2995 " #include <guestfs.h>\n"
2996 " \n"
2997 msgstr ""
2998
2999 #. type: verbatim
3000 #: ../src/guestfs.pod:1537
3001 #, no-wrap
3002 msgid ""
3003 " main ()\n"
3004 " {\n"
3005 " #ifdef LIBGUESTFS_HAVE_DD\n"
3006 "   void *dl;\n"
3007 "   int has_function;\n"
3008 " \n"
3009 msgstr ""
3010
3011 #. type: verbatim
3012 #: ../src/guestfs.pod:1543
3013 #, no-wrap
3014 msgid ""
3015 "   /* Test if the function guestfs_dd is really available. */\n"
3016 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3017 "   if (!dl) {\n"
3018 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3019 "     exit (EXIT_FAILURE);\n"
3020 "   }\n"
3021 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3022 "   dlclose (dl);\n"
3023 " \n"
3024 msgstr ""
3025
3026 #. type: verbatim
3027 #: ../src/guestfs.pod:1552
3028 #, no-wrap
3029 msgid ""
3030 "   if (!has_function)\n"
3031 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3032 "   else {\n"
3033 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3034 "     /* Now it's safe to call\n"
3035 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3036 "     */\n"
3037 "   }\n"
3038 " #else\n"
3039 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3040 " #endif\n"
3041 "  }\n"
3042 "\n"
3043 msgstr ""
3044
3045 #. type: textblock
3046 #: ../src/guestfs.pod:1565
3047 msgid ""
3048 "You may think the above is an awful lot of hassle, and it is.  There are "
3049 "other ways outside of the C linking system to ensure that this kind of "
3050 "incompatibility never arises, such as using package versioning:"
3051 msgstr ""
3052
3053 #. type: verbatim
3054 #: ../src/guestfs.pod:1570
3055 #, no-wrap
3056 msgid ""
3057 " Requires: libguestfs >= 1.0.80\n"
3058 "\n"
3059 msgstr ""
3060
3061 #. type: =head1
3062 #: ../src/guestfs.pod:1572
3063 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3064 msgstr ""
3065
3066 #. type: textblock
3067 #: ../src/guestfs.pod:1574
3068 msgid ""
3069 "A recent feature of the API is the introduction of calls which take optional "
3070 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3071 "takes variable arguments (ie. C<...>), as in this example:"
3072 msgstr ""
3073
3074 #. type: verbatim
3075 #: ../src/guestfs.pod:1579
3076 #, no-wrap
3077 msgid ""
3078 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3079 "\n"
3080 msgstr ""
3081
3082 #. type: textblock
3083 #: ../src/guestfs.pod:1581
3084 msgid ""
3085 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3086 "call with no optional arguments specified:"
3087 msgstr ""
3088
3089 #. type: verbatim
3090 #: ../src/guestfs.pod:1584
3091 #, no-wrap
3092 msgid ""
3093 " guestfs_add_drive_opts (g, filename, -1);\n"
3094 "\n"
3095 msgstr ""
3096
3097 #. type: textblock
3098 #: ../src/guestfs.pod:1586
3099 msgid "With a single optional argument:"
3100 msgstr ""
3101
3102 #. type: verbatim
3103 #: ../src/guestfs.pod:1588
3104 #, no-wrap
3105 msgid ""
3106 " guestfs_add_drive_opts (g, filename,\n"
3107 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3108 "                         -1);\n"
3109 "\n"
3110 msgstr ""
3111
3112 #. type: textblock
3113 #: ../src/guestfs.pod:1592
3114 msgid "With two:"
3115 msgstr ""
3116
3117 #. type: verbatim
3118 #: ../src/guestfs.pod:1594
3119 #, no-wrap
3120 msgid ""
3121 " guestfs_add_drive_opts (g, filename,\n"
3122 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3123 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3124 "                         -1);\n"
3125 "\n"
3126 msgstr ""
3127
3128 #. type: textblock
3129 #: ../src/guestfs.pod:1599
3130 msgid ""
3131 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3132 "happen!"
3133 msgstr ""
3134
3135 #. type: =head2
3136 #: ../src/guestfs.pod:1602
3137 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3138 msgstr ""
3139
3140 #. type: textblock
3141 #: ../src/guestfs.pod:1604
3142 msgid ""
3143 "The second variant has the same name with the suffix C<_va>, which works the "
3144 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3145 "example function, this is declared:"
3146 msgstr ""
3147
3148 #. type: verbatim
3149 #: ../src/guestfs.pod:1608
3150 #, no-wrap
3151 msgid ""
3152 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3153 "                                va_list args);\n"
3154 "\n"
3155 msgstr ""
3156
3157 #. type: =head2
3158 #: ../src/guestfs.pod:1611
3159 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3160 msgstr ""
3161
3162 #. type: textblock
3163 #: ../src/guestfs.pod:1613
3164 msgid ""
3165 "The third variant is useful where you need to construct these calls.  You "
3166 "pass in a structure where you fill in the optional fields.  The structure "
3167 "has a bitmask as the first element which you must set to indicate which "
3168 "fields you have filled in.  For our example function the structure and call "
3169 "are declared:"
3170 msgstr ""
3171
3172 #. type: verbatim
3173 #: ../src/guestfs.pod:1619
3174 #, no-wrap
3175 msgid ""
3176 " struct guestfs_add_drive_opts_argv {\n"
3177 "   uint64_t bitmask;\n"
3178 "   int readonly;\n"
3179 "   const char *format;\n"
3180 "   /* ... */\n"
3181 " };\n"
3182 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3183 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3184 "\n"
3185 msgstr ""
3186
3187 #. type: textblock
3188 #: ../src/guestfs.pod:1628
3189 msgid "You could call it like this:"
3190 msgstr ""
3191
3192 #. type: verbatim
3193 #: ../src/guestfs.pod:1630
3194 #, no-wrap
3195 msgid ""
3196 " struct guestfs_add_drive_opts_argv optargs = {\n"
3197 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3198 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3199 "   .readonly = 1,\n"
3200 "   .format = \"qcow2\"\n"
3201 " };\n"
3202 " \n"
3203 msgstr ""
3204
3205 #. type: verbatim
3206 #: ../src/guestfs.pod:1637
3207 #, no-wrap
3208 msgid ""
3209 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3210 "\n"
3211 msgstr ""
3212
3213 #. type: textblock
3214 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11 ../src/guestfs-actions.pod:1858 ../src/guestfs-actions.pod:2785 ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1262 ../fish/guestfish-actions.pod:1898 ../tools/virt-win-reg.pl:704
3215 msgid "Notes:"
3216 msgstr ""
3217
3218 #. type: textblock
3219 #: ../src/guestfs.pod:1645
3220 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3221 msgstr ""
3222
3223 #. type: textblock
3224 #: ../src/guestfs.pod:1650
3225 msgid "You do not need to fill in all fields of the structure."
3226 msgstr ""
3227
3228 #. type: textblock
3229 #: ../src/guestfs.pod:1654
3230 msgid ""
3231 "There must be a one-to-one correspondence between fields of the structure "
3232 "that are filled in, and bits set in the bitmask."
3233 msgstr ""
3234
3235 #. type: =head2
3236 #: ../src/guestfs.pod:1659
3237 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3238 msgstr ""
3239
3240 #. type: textblock
3241 #: ../src/guestfs.pod:1661
3242 msgid ""
3243 "In other languages, optional arguments are expressed in the way that is "
3244 "natural for that language.  We refer you to the language-specific "
3245 "documentation for more details on that."
3246 msgstr ""
3247
3248 #. type: textblock
3249 #: ../src/guestfs.pod:1665
3250 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3251 msgstr ""
3252
3253 #. type: =head2
3254 #: ../src/guestfs.pod:1667
3255 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3256 msgstr ""
3257
3258 #. type: textblock
3259 #: ../src/guestfs.pod:1669
3260 msgid ""
3261 "B<Note:> This section documents the generic event mechanism introduced in "
3262 "libguestfs 1.10, which you should use in new code if possible.  The old "
3263 "functions C<guestfs_set_log_message_callback>, "
3264 "C<guestfs_set_subprocess_quit_callback>, "
3265 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3266 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3267 "page.  Because of the ABI guarantee, the old functions continue to work."
3268 msgstr ""
3269
3270 #. type: textblock
3271 #: ../src/guestfs.pod:1678
3272 msgid ""
3273 "Handles generate events when certain things happen, such as log messages "
3274 "being generated, progress messages during long-running operations, or the "
3275 "handle being closed.  The API calls described below let you register a "
3276 "callback to be called when events happen.  You can register multiple "
3277 "callbacks (for the same, different or overlapping sets of events), and "
3278 "individually remove callbacks.  If callbacks are not removed, then they "
3279 "remain in force until the handle is closed."
3280 msgstr ""
3281
3282 #. type: textblock
3283 #: ../src/guestfs.pod:1686
3284 msgid ""
3285 "In the current implementation, events are only generated synchronously: that "
3286 "means that events (and hence callbacks) can only happen while you are in the "
3287 "middle of making another libguestfs call.  The callback is called in the "
3288 "same thread."
3289 msgstr ""
3290
3291 #. type: textblock
3292 #: ../src/guestfs.pod:1691
3293 msgid ""
3294 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3295 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3296 msgstr ""
3297
3298 #. type: =head3
3299 #: ../src/guestfs.pod:1695
3300 msgid "CLASSES OF EVENTS"
3301 msgstr ""
3302
3303 #. type: =item
3304 #: ../src/guestfs.pod:1699
3305 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3306 msgstr ""
3307
3308 #. type: textblock
3309 #: ../src/guestfs.pod:1702
3310 msgid ""
3311 "The callback function will be called while the handle is being closed "
3312 "(synchronously from L</guestfs_close>)."
3313 msgstr ""
3314
3315 #. type: textblock
3316 #: ../src/guestfs.pod:1705
3317 msgid ""
3318 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3319 "handles that are open when the program exits.  This means that this callback "
3320 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3321 "problems in higher-level languages (eg. if your HLL interpreter has already "
3322 "been cleaned up by the time this is called, and if your callback then jumps "
3323 "into some HLL function)."
3324 msgstr ""
3325
3326 #. type: textblock
3327 #: ../src/guestfs.pod:1712
3328 msgid ""
3329 "If no callback is registered: the handle is closed without any callback "
3330 "being invoked."
3331 msgstr ""
3332
3333 #. type: =item
3334 #: ../src/guestfs.pod:1715
3335 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3336 msgstr ""
3337
3338 #. type: textblock
3339 #: ../src/guestfs.pod:1718
3340 msgid ""
3341 "The callback function will be called when the child process quits, either "
3342 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3343 "corresponds to a transition from any state to the CONFIG state)."
3344 msgstr ""
3345
3346 #. type: textblock
3347 #: ../src/guestfs.pod:1722 ../src/guestfs.pod:1731
3348 msgid "If no callback is registered: the event is ignored."
3349 msgstr ""
3350
3351 #. type: =item
3352 #: ../src/guestfs.pod:1724
3353 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3354 msgstr ""
3355
3356 #. type: textblock
3357 #: ../src/guestfs.pod:1727
3358 msgid ""
3359 "The callback function will be called when the child process becomes ready "
3360 "first time after it has been launched.  (This corresponds to a transition "
3361 "from LAUNCHING to the READY state)."
3362 msgstr ""
3363
3364 #. type: =item
3365 #: ../src/guestfs.pod:1733
3366 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3367 msgstr ""
3368
3369 #. type: textblock
3370 #: ../src/guestfs.pod:1736
3371 msgid ""
3372 "Some long-running operations can generate progress messages.  If this "
3373 "callback is registered, then it will be called each time a progress message "
3374 "is generated (usually two seconds after the operation started, and three "
3375 "times per second thereafter until it completes, although the frequency may "
3376 "change in future versions)."
3377 msgstr ""
3378
3379 #. type: textblock
3380 #: ../src/guestfs.pod:1742
3381 msgid ""
3382 "The callback receives in the payload four unsigned 64 bit numbers which are "
3383 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3384 msgstr ""
3385
3386 #. type: textblock
3387 #: ../src/guestfs.pod:1745
3388 msgid ""
3389 "The units of C<total> are not defined, although for some operations C<total> "
3390 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3391 "or megabytes), and C<position> may be the portion which has been "
3392 "transferred."
3393 msgstr ""
3394
3395 #. type: textblock
3396 #: ../src/guestfs.pod:1750
3397 msgid "The only defined and stable parts of the API are:"
3398 msgstr ""
3399
3400 #. type: textblock
3401 #: ../src/guestfs.pod:1756
3402 msgid ""
3403 "The callback can display to the user some type of progress bar or indicator "
3404 "which shows the ratio of C<position>:C<total>."
3405 msgstr ""
3406
3407 #. type: textblock
3408 #: ../src/guestfs.pod:1761
3409 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3410 msgstr ""
3411
3412 #. type: textblock
3413 #: ../src/guestfs.pod:1765
3414 msgid ""
3415 "If any progress notification is sent during a call, then a final progress "
3416 "notification is always sent when C<position> = C<total> (I<unless> the call "
3417 "fails with an error)."
3418 msgstr ""
3419
3420 #. type: textblock
3421 #: ../src/guestfs.pod:1769
3422 msgid ""
3423 "This is to simplify caller code, so callers can easily set the progress "
3424 "indicator to \"100%\" at the end of the operation, without requiring special "
3425 "code to detect this case."
3426 msgstr ""
3427
3428 #. type: textblock
3429 #: ../src/guestfs.pod:1775
3430 msgid ""
3431 "For some calls we are unable to estimate the progress of the call, but we "
3432 "can still generate progress messages to indicate activity.  This is known as "
3433 "\"pulse mode\", and is directly supported by certain progress bar "
3434 "implementations (eg. GtkProgressBar)."
3435 msgstr ""
3436
3437 #. type: textblock
3438 #: ../src/guestfs.pod:1780
3439 msgid ""
3440 "For these calls, zero or more progress messages are generated with "
3441 "C<position = 0> and C<total = 1>, followed by a final message with "
3442 "C<position = total = 1>."
3443 msgstr ""
3444
3445 #. type: textblock
3446 #: ../src/guestfs.pod:1784
3447 msgid ""
3448 "As noted above, if the call fails with an error then the final message may "
3449 "not be generated."
3450 msgstr ""
3451
3452 #. type: textblock
3453 #: ../src/guestfs.pod:1789
3454 msgid ""
3455 "The callback also receives the procedure number (C<proc_nr>) and serial "
3456 "number (C<serial>) of the call.  These are only useful for debugging "
3457 "protocol issues, and the callback can normally ignore them.  The callback "
3458 "may want to print these numbers in error messages or debugging messages."
3459 msgstr ""
3460
3461 #. type: textblock
3462 #: ../src/guestfs.pod:1795
3463 msgid "If no callback is registered: progress messages are discarded."
3464 msgstr ""
3465
3466 #. type: =item
3467 #: ../src/guestfs.pod:1797
3468 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3469 msgstr ""
3470
3471 #. type: textblock
3472 #: ../src/guestfs.pod:1800
3473 msgid ""
3474 "The callback function is called whenever a log message is generated by qemu, "
3475 "the appliance kernel, guestfsd (daemon), or utility programs."
3476 msgstr ""
3477
3478 #. type: textblock
3479 #: ../src/guestfs.pod:1803
3480 msgid ""
3481 "If the verbose flag (L</guestfs_set_verbose>) is set before launch "
3482 "(L</guestfs_launch>) then additional debug messages are generated."
3483 msgstr ""
3484
3485 #. type: textblock
3486 #: ../src/guestfs.pod:1806 ../src/guestfs.pod:1820
3487 msgid ""
3488 "If no callback is registered: the messages are discarded unless the verbose "
3489 "flag is set in which case they are sent to stderr.  You can override the "
3490 "printing of verbose messages to stderr by setting up a callback."
3491 msgstr ""
3492
3493 #. type: =item
3494 #: ../src/guestfs.pod:1811
3495 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3496 msgstr ""
3497
3498 #. type: textblock
3499 #: ../src/guestfs.pod:1814
3500 msgid ""
3501 "The callback function is called whenever a log message is generated by the "
3502 "library part of libguestfs."
3503 msgstr ""
3504
3505 #. type: textblock
3506 #: ../src/guestfs.pod:1817
3507 msgid ""
3508 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3509 "messages are generated."
3510 msgstr ""
3511
3512 #. type: =item
3513 #: ../src/guestfs.pod:1825
3514 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3515 msgstr ""
3516
3517 #. type: textblock
3518 #: ../src/guestfs.pod:1828
3519 msgid ""
3520 "The callback function is called whenever a trace message is generated.  This "
3521 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3522 msgstr ""
3523
3524 #. type: textblock
3525 #: ../src/guestfs.pod:1831
3526 msgid ""
3527 "If no callback is registered: the messages are sent to stderr.  You can "
3528 "override the printing of trace messages to stderr by setting up a callback."
3529 msgstr ""
3530
3531 #. type: =head3
3532 #: ../src/guestfs.pod:1837
3533 msgid "guestfs_set_event_callback"
3534 msgstr ""
3535
3536 #. type: verbatim
3537 #: ../src/guestfs.pod:1839
3538 #, no-wrap
3539 msgid ""
3540 " int guestfs_set_event_callback (guestfs_h *g,\n"
3541 "                                 guestfs_event_callback cb,\n"
3542 "                                 uint64_t event_bitmask,\n"
3543 "                                 int flags,\n"
3544 "                                 void *opaque);\n"
3545 "\n"
3546 msgstr ""
3547
3548 #. type: textblock
3549 #: ../src/guestfs.pod:1845
3550 msgid ""
3551 "This function registers a callback (C<cb>) for all event classes in the "
3552 "C<event_bitmask>."
3553 msgstr ""
3554
3555 #. type: textblock
3556 #: ../src/guestfs.pod:1848
3557 msgid ""
3558 "For example, to register for all log message events, you could call this "
3559 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
3560 "To register a single callback for all possible classes of events, use "
3561 "C<GUESTFS_EVENT_ALL>."
3562 msgstr ""
3563
3564 #. type: textblock
3565 #: ../src/guestfs.pod:1854
3566 msgid "C<flags> should always be passed as 0."
3567 msgstr ""
3568
3569 #. type: textblock
3570 #: ../src/guestfs.pod:1856
3571 msgid ""
3572 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
3573 "it for any purpose."
3574 msgstr ""
3575
3576 #. type: textblock
3577 #: ../src/guestfs.pod:1859
3578 msgid ""
3579 "The return value is the event handle (an integer) which you can use to "
3580 "delete the callback (see below)."
3581 msgstr ""
3582
3583 #. type: textblock
3584 #: ../src/guestfs.pod:1862
3585 msgid ""
3586 "If there is an error, this function returns C<-1>, and sets the error in the "
3587 "handle in the usual way (see L</guestfs_last_error> etc.)"
3588 msgstr ""
3589
3590 #. type: textblock
3591 #: ../src/guestfs.pod:1865
3592 msgid ""
3593 "Callbacks remain in effect until they are deleted, or until the handle is "
3594 "closed."
3595 msgstr ""
3596
3597 #. type: textblock
3598 #: ../src/guestfs.pod:1868
3599 msgid ""
3600 "In the case where multiple callbacks are registered for a particular event "
3601 "class, all of the callbacks are called.  The order in which multiple "
3602 "callbacks are called is not defined."
3603 msgstr ""
3604
3605 #. type: =head3
3606 #: ../src/guestfs.pod:1872
3607 msgid "guestfs_delete_event_callback"
3608 msgstr ""
3609
3610 #. type: verbatim
3611 #: ../src/guestfs.pod:1874
3612 #, no-wrap
3613 msgid ""
3614 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3615 "\n"
3616 msgstr ""
3617
3618 #. type: textblock
3619 #: ../src/guestfs.pod:1876
3620 msgid ""
3621 "Delete a callback that was previously registered.  C<event_handle> should be "
3622 "the integer that was returned by a previous call to "
3623 "C<guestfs_set_event_callback> on the same handle."
3624 msgstr ""
3625
3626 #. type: =head3
3627 #: ../src/guestfs.pod:1880
3628 msgid "guestfs_event_callback"
3629 msgstr ""
3630
3631 #. type: verbatim
3632 #: ../src/guestfs.pod:1882
3633 #, no-wrap
3634 msgid ""
3635 " typedef void (*guestfs_event_callback) (\n"
3636 "                  guestfs_h *g,\n"
3637 "                  void *opaque,\n"
3638 "                  uint64_t event,\n"
3639 "                  int event_handle,\n"
3640 "                  int flags,\n"
3641 "                  const char *buf, size_t buf_len,\n"
3642 "                  const uint64_t *array, size_t array_len);\n"
3643 "\n"
3644 msgstr ""
3645
3646 #. type: textblock
3647 #: ../src/guestfs.pod:1891
3648 msgid "This is the type of the event callback function that you have to provide."
3649 msgstr ""
3650
3651 #. type: textblock
3652 #: ../src/guestfs.pod:1894
3653 msgid ""
3654 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3655 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3656 "handle, and C<flags> which in the current API you should ignore."
3657 msgstr ""
3658
3659 #. type: textblock
3660 #: ../src/guestfs.pod:1898
3661 msgid ""
3662 "The remaining parameters contain the event payload (if any).  Each event may "
3663 "contain a payload, which usually relates to the event class, but for future "
3664 "proofing your code should be written to handle any payload for any event "
3665 "class."
3666 msgstr ""
3667
3668 #. type: textblock
3669 #: ../src/guestfs.pod:1903
3670 msgid ""
3671 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3672 "there is no message buffer).  Note that this message buffer can contain "
3673 "arbitrary 8 bit data, including NUL bytes."
3674 msgstr ""
3675
3676 #. type: textblock
3677 #: ../src/guestfs.pod:1907
3678 msgid ""
3679 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3680 "moment this is only used for progress messages."
3681 msgstr ""
3682
3683 #. type: =head3
3684 #: ../src/guestfs.pod:1910
3685 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3686 msgstr ""
3687
3688 #. type: textblock
3689 #: ../src/guestfs.pod:1912
3690 msgid ""
3691 "One motivation for the generic event API was to allow GUI programs to "
3692 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3693 "unconditionally to C<stderr>."
3694 msgstr ""
3695
3696 #. type: textblock
3697 #: ../src/guestfs.pod:1916
3698 msgid ""
3699 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3700 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3701 "messages are not events; you must capture error messages separately)."
3702 msgstr ""
3703
3704 #. type: textblock
3705 #: ../src/guestfs.pod:1921
3706 msgid ""
3707 "Programs have to set up a callback to capture the classes of events of "
3708 "interest:"
3709 msgstr ""
3710
3711 #. type: verbatim
3712 #: ../src/guestfs.pod:1924
3713 #, no-wrap
3714 msgid ""
3715 " int eh =\n"
3716 "   guestfs_set_event_callback\n"
3717 "     (g, message_callback,\n"
3718 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3719 "      GUESTFS_EVENT_TRACE,\n"
3720 "      0, NULL) == -1)\n"
3721 " if (eh == -1) {\n"
3722 "   // handle error in the usual way\n"
3723 " }\n"
3724 "\n"
3725 msgstr ""
3726
3727 #. type: textblock
3728 #: ../src/guestfs.pod:1934
3729 msgid ""
3730 "The callback can then direct messages to the appropriate place.  In this "
3731 "example, messages are directed to syslog:"
3732 msgstr ""
3733
3734 #. type: verbatim
3735 #: ../src/guestfs.pod:1937
3736 #, no-wrap
3737 msgid ""
3738 " static void\n"
3739 " message_callback (\n"
3740 "         guestfs_h *g,\n"
3741 "         void *opaque,\n"
3742 "         uint64_t event,\n"
3743 "         int event_handle,\n"
3744 "         int flags,\n"
3745 "         const char *buf, size_t buf_len,\n"
3746 "         const uint64_t *array, size_t array_len)\n"
3747 " {\n"
3748 "   const int priority = LOG_USER|LOG_INFO;\n"
3749 "   if (buf_len > 0)\n"
3750 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3751 " }\n"
3752 "\n"
3753 msgstr ""
3754
3755 #. type: =head1
3756 #: ../src/guestfs.pod:1952
3757 msgid "PRIVATE DATA AREA"
3758 msgstr ""
3759
3760 #. type: textblock
3761 #: ../src/guestfs.pod:1954
3762 msgid ""
3763 "You can attach named pieces of private data to the libguestfs handle, fetch "
3764 "them by name, and walk over them, for the lifetime of the handle.  This is "
3765 "called the private data area and is only available from the C API."
3766 msgstr ""
3767
3768 #. type: textblock
3769 #: ../src/guestfs.pod:1959
3770 msgid "To attach a named piece of data, use the following call:"
3771 msgstr ""
3772
3773 #. type: verbatim
3774 #: ../src/guestfs.pod:1961
3775 #, no-wrap
3776 msgid ""
3777 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3778 "\n"
3779 msgstr ""
3780
3781 #. type: textblock
3782 #: ../src/guestfs.pod:1963
3783 msgid ""
3784 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3785 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3786 "overwritten."
3787 msgstr ""
3788
3789 #. type: textblock
3790 #: ../src/guestfs.pod:1967
3791 msgid ""
3792 "You can use any C<key> you want, but your key should I<not> start with an "
3793 "underscore character.  Keys beginning with an underscore character are "
3794 "reserved for internal libguestfs purposes (eg. for implementing language "
3795 "bindings).  It is recommended that you prefix the key with some unique "
3796 "string to avoid collisions with other users."
3797 msgstr ""
3798
3799 #. type: textblock
3800 #: ../src/guestfs.pod:1973
3801 msgid "To retrieve the pointer, use:"
3802 msgstr ""
3803
3804 #. type: verbatim
3805 #: ../src/guestfs.pod:1975
3806 #, no-wrap
3807 msgid ""
3808 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3809 "\n"
3810 msgstr ""
3811
3812 #. type: textblock
3813 #: ../src/guestfs.pod:1977
3814 msgid ""
3815 "This function returns C<NULL> if either no data is found associated with "
3816 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3817 "C<NULL>."
3818 msgstr ""
3819
3820 #. type: textblock
3821 #: ../src/guestfs.pod:1981
3822 msgid ""
3823 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3824 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3825 "all.  In particular, libguestfs does I<not> try to free the data when the "
3826 "handle is closed.  If the data must be freed, then the caller must either "
3827 "free it before calling L</guestfs_close> or must set up a close callback to "
3828 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3829 msgstr ""
3830
3831 #. type: textblock
3832 #: ../src/guestfs.pod:1988
3833 msgid "To walk over all entries, use these two functions:"
3834 msgstr ""
3835
3836 #. type: verbatim
3837 #: ../src/guestfs.pod:1990
3838 #, no-wrap
3839 msgid ""
3840 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
3841 "\n"
3842 msgstr ""
3843
3844 #. type: verbatim
3845 #: ../src/guestfs.pod:1992
3846 #, no-wrap
3847 msgid ""
3848 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
3849 "\n"
3850 msgstr ""
3851
3852 #. type: textblock
3853 #: ../src/guestfs.pod:1994
3854 msgid ""
3855 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
3856 "not have any particular meaning -- keys are not returned in any defined "
3857 "order).  A pointer to the key is returned in C<*key_rtn> and the "
3858 "corresponding data pointer is returned from the function.  C<NULL> is "
3859 "returned if there are no keys stored in the handle."
3860 msgstr ""
3861
3862 #. type: textblock
3863 #: ../src/guestfs.pod:2000
3864 msgid ""
3865 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
3866 "value of this function is also C<NULL> is there are no further entries to "
3867 "return."
3868 msgstr ""
3869
3870 #. type: textblock
3871 #: ../src/guestfs.pod:2004
3872 msgid "Notes about walking over entries:"
3873 msgstr ""
3874
3875 #. type: textblock
3876 #: ../src/guestfs.pod:2010
3877 msgid "You must not call C<guestfs_set_private> while walking over the entries."
3878 msgstr ""
3879
3880 #. type: textblock
3881 #: ../src/guestfs.pod:2015
3882 msgid ""
3883 "The handle maintains an internal iterator which is reset when you call "
3884 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
3885 "call C<guestfs_set_private>."
3886 msgstr ""
3887
3888 #. type: textblock
3889 #: ../src/guestfs.pod:2021
3890 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
3891 msgstr ""
3892
3893 #. type: verbatim
3894 #: ../src/guestfs.pod:2023
3895 #, no-wrap
3896 msgid ""
3897 " guestfs_set_private (g, key, NULL);\n"
3898 "\n"
3899 msgstr ""
3900
3901 #. type: textblock
3902 #: ../src/guestfs.pod:2025
3903 msgid "then that C<key> is not returned when walking."
3904 msgstr ""
3905
3906 #. type: textblock
3907 #: ../src/guestfs.pod:2029
3908 msgid ""
3909 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
3910 "C<guestfs_next_private> or C<guestfs_set_private>."
3911 msgstr ""
3912
3913 #. type: textblock
3914 #: ../src/guestfs.pod:2035
3915 msgid ""
3916 "The following example code shows how to print all keys and data pointers "
3917 "that are associated with the handle C<g>:"
3918 msgstr ""
3919
3920 #. type: verbatim
3921 #: ../src/guestfs.pod:2038
3922 #, no-wrap
3923 msgid ""
3924 " const char *key;\n"
3925 " void *data = guestfs_first_private (g, &key);\n"
3926 " while (data != NULL)\n"
3927 "   {\n"
3928 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
3929 "     data = guestfs_next_private (g, &key);\n"
3930 "   }\n"
3931 "\n"
3932 msgstr ""
3933
3934 #. type: textblock
3935 #: ../src/guestfs.pod:2046
3936 msgid ""
3937 "More commonly you are only interested in keys that begin with an "
3938 "application-specific prefix C<foo_>.  Modify the loop like so:"
3939 msgstr ""
3940
3941 #. type: verbatim
3942 #: ../src/guestfs.pod:2049
3943 #, no-wrap
3944 msgid ""
3945 " const char *key;\n"
3946 " void *data = guestfs_first_private (g, &key);\n"
3947 " while (data != NULL)\n"
3948 "   {\n"
3949 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
3950 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
3951 "     data = guestfs_next_private (g, &key);\n"
3952 "   }\n"
3953 "\n"
3954 msgstr ""
3955
3956 #. type: textblock
3957 #: ../src/guestfs.pod:2058
3958 msgid ""
3959 "If you need to modify keys while walking, then you have to jump back to the "
3960 "beginning of the loop.  For example, to delete all keys prefixed with "
3961 "C<foo_>:"
3962 msgstr ""
3963
3964 #. type: verbatim
3965 #: ../src/guestfs.pod:2062
3966 #, no-wrap
3967 msgid ""
3968 "  const char *key;\n"
3969 "  void *data;\n"
3970 " again:\n"
3971 "  data = guestfs_first_private (g, &key);\n"
3972 "  while (data != NULL)\n"
3973 "    {\n"
3974 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
3975 "        {\n"
3976 "          guestfs_set_private (g, key, NULL);\n"
3977 "          /* note that 'key' pointer is now invalid, and so is\n"
3978 "             the internal iterator */\n"
3979 "          goto again;\n"
3980 "        }\n"
3981 "      data = guestfs_next_private (g, &key);\n"
3982 "    }\n"
3983 "\n"
3984 msgstr ""
3985
3986 #. type: textblock
3987 #: ../src/guestfs.pod:2078
3988 msgid ""
3989 "Note that the above loop is guaranteed to terminate because the keys are "
3990 "being deleted, but other manipulations of keys within the loop might not "
3991 "terminate unless you also maintain an indication of which keys have been "
3992 "visited."
3993 msgstr ""
3994
3995 #. type: =end
3996 #: ../src/guestfs.pod:2083 ../src/guestfs.pod:2088
3997 msgid "html"
3998 msgstr ""
3999
4000 #. type: textblock
4001 #: ../src/guestfs.pod:2085
4002 msgid ""
4003 "<!-- old anchor for the next section --> <a "
4004 "name=\"state_machine_and_low_level_event_api\"/>"
4005 msgstr ""
4006
4007 #. type: =head1
4008 #: ../src/guestfs.pod:2090
4009 msgid "ARCHITECTURE"
4010 msgstr ""
4011
4012 #. type: textblock
4013 #: ../src/guestfs.pod:2092
4014 msgid ""
4015 "Internally, libguestfs is implemented by running an appliance (a special "
4016 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4017 "process of the main program."
4018 msgstr ""
4019
4020 #. type: verbatim
4021 #: ../src/guestfs.pod:2096
4022 #, no-wrap
4023 msgid ""
4024 "  ___________________\n"
4025 " /                   \\\n"
4026 " | main program      |\n"
4027 " |                   |\n"
4028 " |                   |           child process / appliance\n"
4029 " |                   |           __________________________\n"
4030 " |                   |          / qemu                     \\\n"
4031 " +-------------------+   RPC    |      +-----------------+ |\n"
4032 " | libguestfs     <--------------------> guestfsd        | |\n"
4033 " |                   |          |      +-----------------+ |\n"
4034 " \\___________________/          |      | Linux kernel    | |\n"
4035 "                                |      +--^--------------+ |\n"
4036 "                                \\_________|________________/\n"
4037 "                                          |\n"
4038 "                                   _______v______\n"
4039 "                                  /              \\\n"
4040 "                                  | Device or    |\n"
4041 "                                  | disk image   |\n"
4042 "                                  \\______________/\n"
4043 "\n"
4044 msgstr ""
4045
4046 #. type: textblock
4047 #: ../src/guestfs.pod:2116
4048 msgid ""
4049 "The library, linked to the main program, creates the child process and hence "
4050 "the appliance in the L</guestfs_launch> function."
4051 msgstr ""
4052
4053 #. type: textblock
4054 #: ../src/guestfs.pod:2119
4055 msgid ""
4056 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4057 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4058 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4059 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4060 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4061 "attached to the qemu process which translates device access by the "
4062 "appliance's Linux kernel into accesses to the image."
4063 msgstr ""
4064
4065 #. type: textblock
4066 #: ../src/guestfs.pod:2128
4067 msgid ""
4068 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4069 "Although the disk image you are attached to might also be used by some "
4070 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4071 "care if both libguestfs's qemu process and your virtual machine are trying "
4072 "to update the disk image at the same time, since these usually results in "
4073 "massive disk corruption)."
4074 msgstr ""
4075
4076 #. type: =head1
4077 #: ../src/guestfs.pod:2135
4078 msgid "STATE MACHINE"
4079 msgstr ""
4080
4081 #. type: textblock
4082 #: ../src/guestfs.pod:2137
4083 msgid "libguestfs uses a state machine to model the child process:"
4084 msgstr ""
4085
4086 #. type: verbatim
4087 #: ../src/guestfs.pod:2139
4088 #, no-wrap
4089 msgid ""
4090 "                         |\n"
4091 "                    guestfs_create\n"
4092 "                         |\n"
4093 "                         |\n"
4094 "                     ____V_____\n"
4095 "                    /          \\\n"
4096 "                    |  CONFIG  |\n"
4097 "                    \\__________/\n"
4098 "                     ^ ^   ^  \\\n"
4099 "                    /  |    \\  \\ guestfs_launch\n"
4100 "                   /   |    _\\__V______\n"
4101 "                  /    |   /           \\\n"
4102 "                 /     |   | LAUNCHING |\n"
4103 "                /      |   \\___________/\n"
4104 "               /       |       /\n"
4105 "              /        |  guestfs_launch\n"
4106 "             /         |     /\n"
4107 "    ______  /        __|____V\n"
4108 "   /      \\ ------> /        \\\n"
4109 "   | BUSY |         | READY  |\n"
4110 "   \\______/ <------ \\________/\n"
4111 "\n"
4112 msgstr ""
4113
4114 #. type: textblock
4115 #: ../src/guestfs.pod:2161
4116 msgid ""
4117 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4118 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4119 "(3) alternating between READY and BUSY as commands are issued to, and "
4120 "carried out by, the child process."
4121 msgstr ""
4122
4123 #. type: textblock
4124 #: ../src/guestfs.pod:2166
4125 msgid ""
4126 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4127 "asynchronously at any time (eg. due to some internal error), and that causes "
4128 "the state to transition back to CONFIG."
4129 msgstr ""
4130
4131 #. type: textblock
4132 #: ../src/guestfs.pod:2170
4133 msgid ""
4134 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4135 "issued when in the CONFIG state."
4136 msgstr ""
4137
4138 #. type: textblock
4139 #: ../src/guestfs.pod:2173
4140 msgid ""
4141 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4142 "L</guestfs_launch> blocks until the child process is READY to accept "
4143 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4144 "moves the state from CONFIG to LAUNCHING while it is running."
4145 msgstr ""
4146
4147 #. type: textblock
4148 #: ../src/guestfs.pod:2179
4149 msgid ""
4150 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4151 "state.  These API calls block waiting for the command to be carried out "
4152 "(ie. the state to transition to BUSY and then back to READY).  There are no "
4153 "non-blocking versions, and no way to issue more than one command per handle "
4154 "at the same time."
4155 msgstr ""
4156
4157 #. type: textblock
4158 #: ../src/guestfs.pod:2185
4159 msgid ""
4160 "Finally, the child process sends asynchronous messages back to the main "
4161 "program, such as kernel log messages.  You can register a callback to "
4162 "receive these messages."
4163 msgstr ""
4164
4165 #. type: =head1
4166 #: ../src/guestfs.pod:2189
4167 msgid "INTERNALS"
4168 msgstr ""
4169
4170 #. type: =head2
4171 #: ../src/guestfs.pod:2191
4172 msgid "COMMUNICATION PROTOCOL"
4173 msgstr ""
4174
4175 #. type: textblock
4176 #: ../src/guestfs.pod:2193
4177 msgid ""
4178 "Don't rely on using this protocol directly.  This section documents how it "
4179 "currently works, but it may change at any time."
4180 msgstr ""
4181
4182 #. type: textblock
4183 #: ../src/guestfs.pod:2196
4184 msgid ""
4185 "The protocol used to talk between the library and the daemon running inside "
4186 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4187 "1014, RFC 1832, RFC 4506)."
4188 msgstr ""
4189
4190 #. type: textblock
4191 #: ../src/guestfs.pod:2200
4192 msgid ""
4193 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4194 "this file is automatically generated)."
4195 msgstr ""
4196
4197 #. type: textblock
4198 #: ../src/guestfs.pod:2203
4199 msgid ""
4200 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4201 "and C<FileOut> parameters, which are handled with very simple request/reply "
4202 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4203 "parameters, which use the same request and reply messages, but they may also "
4204 "be followed by files sent using a chunked encoding."
4205 msgstr ""
4206
4207 #. type: =head3
4208 #: ../src/guestfs.pod:2210
4209 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4210 msgstr ""
4211
4212 #. type: textblock
4213 #: ../src/guestfs.pod:2212
4214 msgid "For ordinary functions, the request message is:"
4215 msgstr ""
4216
4217 #. type: verbatim
4218 #: ../src/guestfs.pod:2214
4219 #, no-wrap
4220 msgid ""
4221 " total length (header + arguments,\n"
4222 "      but not including the length word itself)\n"
4223 " struct guestfs_message_header (encoded as XDR)\n"
4224 " struct guestfs_<foo>_args (encoded as XDR)\n"
4225 "\n"
4226 msgstr ""
4227
4228 #. type: textblock
4229 #: ../src/guestfs.pod:2219
4230 msgid ""
4231 "The total length field allows the daemon to allocate a fixed size buffer "
4232 "into which it slurps the rest of the message.  As a result, the total length "
4233 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4234 "effective size of any request is limited to somewhere under this size."
4235 msgstr ""
4236
4237 #. type: textblock
4238 #: ../src/guestfs.pod:2225
4239 msgid ""
4240 "Note also that many functions don't take any arguments, in which case the "
4241 "C<guestfs_I<foo>_args> is completely omitted."
4242 msgstr ""
4243
4244 #. type: textblock
4245 #: ../src/guestfs.pod:2228
4246 msgid ""
4247 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4248 "receiver knows what type of args structure to expect, or none at all."
4249 msgstr ""
4250
4251 #. type: textblock
4252 #: ../src/guestfs.pod:2232
4253 msgid ""
4254 "For functions that take optional arguments, the optional arguments are "
4255 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4256 "arguments.  A bitmask in the header indicates which optional arguments are "
4257 "meaningful.  The bitmask is also checked to see if it contains bits set "
4258 "which the daemon does not know about (eg. if more optional arguments were "
4259 "added in a later version of the library), and this causes the call to be "
4260 "rejected."
4261 msgstr ""
4262
4263 #. type: textblock
4264 #: ../src/guestfs.pod:2240
4265 msgid "The reply message for ordinary functions is:"
4266 msgstr ""
4267
4268 #. type: verbatim
4269 #: ../src/guestfs.pod:2242
4270 #, no-wrap
4271 msgid ""
4272 " total length (header + ret,\n"
4273 "      but not including the length word itself)\n"
4274 " struct guestfs_message_header (encoded as XDR)\n"
4275 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4276 "\n"
4277 msgstr ""
4278
4279 #. type: textblock
4280 #: ../src/guestfs.pod:2247
4281 msgid ""
4282 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4283 "functions that return no formal return values."
4284 msgstr ""
4285
4286 #. type: textblock
4287 #: ../src/guestfs.pod:2250
4288 msgid "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4289 msgstr ""
4290
4291 #. type: textblock
4292 #: ../src/guestfs.pod:2253
4293 msgid ""
4294 "In the case of an error, a flag is set in the header, and the reply message "
4295 "is slightly changed:"
4296 msgstr ""
4297
4298 #. type: verbatim
4299 #: ../src/guestfs.pod:2256
4300 #, no-wrap
4301 msgid ""
4302 " total length (header + error,\n"
4303 "      but not including the length word itself)\n"
4304 " struct guestfs_message_header (encoded as XDR)\n"
4305 " struct guestfs_message_error (encoded as XDR)\n"
4306 "\n"
4307 msgstr ""
4308
4309 #. type: textblock
4310 #: ../src/guestfs.pod:2261
4311 msgid ""
4312 "The C<guestfs_message_error> structure contains the error message as a "
4313 "string."
4314 msgstr ""
4315
4316 #. type: =head3
4317 #: ../src/guestfs.pod:2264
4318 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4319 msgstr ""
4320
4321 #. type: textblock
4322 #: ../src/guestfs.pod:2266
4323 msgid ""
4324 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4325 "The normal request message is sent (see above).  However this is followed by "
4326 "a sequence of file chunks."
4327 msgstr ""
4328
4329 #. type: verbatim
4330 #: ../src/guestfs.pod:2270
4331 #, no-wrap
4332 msgid ""
4333 " total length (header + arguments,\n"
4334 "      but not including the length word itself,\n"
4335 "      and not including the chunks)\n"
4336 " struct guestfs_message_header (encoded as XDR)\n"
4337 " struct guestfs_<foo>_args (encoded as XDR)\n"
4338 " sequence of chunks for FileIn param #0\n"
4339 " sequence of chunks for FileIn param #1 etc.\n"
4340 "\n"
4341 msgstr ""
4342
4343 #. type: textblock
4344 #: ../src/guestfs.pod:2278
4345 msgid "The \"sequence of chunks\" is:"
4346 msgstr ""
4347
4348 #. type: verbatim
4349 #: ../src/guestfs.pod:2280
4350 #, no-wrap
4351 msgid ""
4352 " length of chunk (not including length word itself)\n"
4353 " struct guestfs_chunk (encoded as XDR)\n"
4354 " length of chunk\n"
4355 " struct guestfs_chunk (encoded as XDR)\n"
4356 "   ...\n"
4357 " length of chunk\n"
4358 " struct guestfs_chunk (with data.data_len == 0)\n"
4359 "\n"
4360 msgstr ""
4361
4362 #. type: textblock
4363 #: ../src/guestfs.pod:2288
4364 msgid ""
4365 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4366 "is set in the final chunk to indicate either successful completion or early "
4367 "cancellation."
4368 msgstr ""
4369
4370 #. type: textblock
4371 #: ../src/guestfs.pod:2292
4372 msgid ""
4373 "At time of writing there are no functions that have more than one FileIn "
4374 "parameter.  However this is (theoretically) supported, by sending the "
4375 "sequence of chunks for each FileIn parameter one after another (from left to "
4376 "right)."
4377 msgstr ""
4378
4379 #. type: textblock
4380 #: ../src/guestfs.pod:2297
4381 msgid ""
4382 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4383 "transfer.  The library does this by sending a chunk with a special flag set "
4384 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4385 "RPC, does I<not> send any reply, and goes back to reading the next request."
4386 msgstr ""
4387
4388 #. type: textblock
4389 #: ../src/guestfs.pod:2303
4390 msgid ""
4391 "The daemon may also cancel.  It does this by writing a special word "
4392 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4393 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4394 "cancel chunk).  The special word is chosen so that even if cancellation "
4395 "happens right at the end of the transfer (after the library has finished "
4396 "writing and has started listening for the reply), the \"spurious\" cancel "
4397 "flag will not be confused with the reply message."
4398 msgstr ""
4399
4400 #. type: textblock
4401 #: ../src/guestfs.pod:2312
4402 msgid ""
4403 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4404 "limit), and also files where the size is not known in advance (eg. from "
4405 "pipes or sockets).  However the chunks are rather small "
4406 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4407 "to keep much in memory."
4408 msgstr ""
4409
4410 #. type: =head3
4411 #: ../src/guestfs.pod:2318
4412 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4413 msgstr ""
4414
4415 #. type: textblock
4416 #: ../src/guestfs.pod:2320
4417 msgid ""
4418 "The protocol for FileOut parameters is exactly the same as for FileIn "
4419 "parameters, but with the roles of daemon and library reversed."
4420 msgstr ""
4421
4422 #. type: verbatim
4423 #: ../src/guestfs.pod:2323
4424 #, no-wrap
4425 msgid ""
4426 " total length (header + ret,\n"
4427 "      but not including the length word itself,\n"
4428 "      and not including the chunks)\n"
4429 " struct guestfs_message_header (encoded as XDR)\n"
4430 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4431 " sequence of chunks for FileOut param #0\n"
4432 " sequence of chunks for FileOut param #1 etc.\n"
4433 "\n"
4434 msgstr ""
4435
4436 #. type: =head3
4437 #: ../src/guestfs.pod:2331
4438 msgid "INITIAL MESSAGE"
4439 msgstr ""
4440
4441 #. type: textblock
4442 #: ../src/guestfs.pod:2333
4443 msgid ""
4444 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4445 "which indicates that the guest and daemon is alive.  This is what "
4446 "L</guestfs_launch> waits for."
4447 msgstr ""
4448
4449 #. type: =head3
4450 #: ../src/guestfs.pod:2337
4451 msgid "PROGRESS NOTIFICATION MESSAGES"
4452 msgstr ""
4453
4454 #. type: textblock
4455 #: ../src/guestfs.pod:2339
4456 msgid ""
4457 "The daemon may send progress notification messages at any time.  These are "
4458 "distinguished by the normal length word being replaced by "
4459 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4460 msgstr ""
4461
4462 #. type: textblock
4463 #: ../src/guestfs.pod:2343
4464 msgid ""
4465 "The library turns them into progress callbacks (see "
4466 "L</GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards "
4467 "them if not."
4468 msgstr ""
4469
4470 #. type: textblock
4471 #: ../src/guestfs.pod:2347
4472 msgid ""
4473 "The daemon self-limits the frequency of progress messages it sends (see "
4474 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4475 "messages."
4476 msgstr ""
4477
4478 #. type: =head1
4479 #: ../src/guestfs.pod:2351
4480 msgid "LIBGUESTFS VERSION NUMBERS"
4481 msgstr ""
4482
4483 #. type: textblock
4484 #: ../src/guestfs.pod:2353
4485 msgid ""
4486 "Since April 2010, libguestfs has started to make separate development and "
4487 "stable releases, along with corresponding branches in our git repository.  "
4488 "These separate releases can be identified by version number:"
4489 msgstr ""
4490
4491 #. type: verbatim
4492 #: ../src/guestfs.pod:2358
4493 #, no-wrap
4494 msgid ""
4495 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4496 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4497 "       |\n"
4498 "       v\n"
4499 " 1  .  3  .  5\n"
4500 " ^           ^\n"
4501 " |           |\n"
4502 " |           `-------- sub-version\n"
4503 " |\n"
4504 " `------ always '1' because we don't change the ABI\n"
4505 "\n"
4506 msgstr ""
4507
4508 #. type: textblock
4509 #: ../src/guestfs.pod:2369
4510 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4511 msgstr ""
4512
4513 #. type: textblock
4514 #: ../src/guestfs.pod:2371
4515 msgid ""
4516 "As time passes we cherry pick fixes from the development branch and backport "
4517 "those into the stable branch, the effect being that the stable branch should "
4518 "get more stable and less buggy over time.  So the stable releases are ideal "
4519 "for people who don't need new features but would just like the software to "
4520 "work."
4521 msgstr ""
4522
4523 #. type: textblock
4524 #: ../src/guestfs.pod:2377
4525 msgid "Our criteria for backporting changes are:"
4526 msgstr ""
4527
4528 #. type: textblock
4529 #: ../src/guestfs.pod:2383
4530 msgid ""
4531 "Documentation changes which don't affect any code are backported unless the "
4532 "documentation refers to a future feature which is not in stable."
4533 msgstr ""
4534
4535 #. type: textblock
4536 #: ../src/guestfs.pod:2389
4537 msgid ""
4538 "Bug fixes which are not controversial, fix obvious problems, and have been "
4539 "well tested are backported."
4540 msgstr ""
4541
4542 #. type: textblock
4543 #: ../src/guestfs.pod:2394
4544 msgid ""
4545 "Simple rearrangements of code which shouldn't affect how it works get "
4546 "backported.  This is so that the code in the two branches doesn't get too "
4547 "far out of step, allowing us to backport future fixes more easily."
4548 msgstr ""
4549
4550 #. type: textblock
4551 #: ../src/guestfs.pod:2400
4552 msgid ""
4553 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4554 "exceptional case: the new feature is required in order to implement an "
4555 "important bug fix."
4556 msgstr ""
4557
4558 #. type: textblock
4559 #: ../src/guestfs.pod:2406
4560 msgid ""
4561 "A new stable branch starts when we think the new features in development are "
4562 "substantial and compelling enough over the current stable branch to warrant "
4563 "it.  When that happens we create new stable and development versions 1.N.0 "
4564 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4565 "stable at this point, but by backporting fixes from development, that branch "
4566 "will stabilize over time."
4567 msgstr ""
4568
4569 #. type: =head1
4570 #: ../src/guestfs.pod:2414
4571 msgid "EXTENDING LIBGUESTFS"
4572 msgstr ""
4573
4574 #. type: =head2
4575 #: ../src/guestfs.pod:2416
4576 msgid "ADDING A NEW API ACTION"
4577 msgstr ""
4578
4579 #. type: textblock
4580 #: ../src/guestfs.pod:2418
4581 msgid ""
4582 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4583 "documentation) are generated, and this makes it easy to extend the "
4584 "libguestfs API."
4585 msgstr ""
4586
4587 #. type: textblock
4588 #: ../src/guestfs.pod:2422
4589 msgid "To add a new API action there are two changes:"
4590 msgstr ""
4591
4592 #. type: textblock
4593 #: ../src/guestfs.pod:2428
4594 msgid ""
4595 "You need to add a description of the call (name, parameters, return type, "
4596 "tests, documentation) to C<generator/generator_actions.ml>."
4597 msgstr ""
4598
4599 #. type: textblock
4600 #: ../src/guestfs.pod:2431
4601 msgid ""
4602 "There are two sorts of API action, depending on whether the call goes "
4603 "through to the daemon in the appliance, or is serviced entirely by the "
4604 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4605 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4606 "an example of the latter, since a trace flag is maintained in the handle and "
4607 "all tracing is done on the library side."
4608 msgstr ""
4609
4610 #. type: textblock
4611 #: ../src/guestfs.pod:2439
4612 msgid ""
4613 "Most new actions are of the first type, and get added to the "
4614 "C<daemon_functions> list.  Each function has a unique procedure number used "
4615 "in the RPC protocol which is assigned to that action when we publish "
4616 "libguestfs and cannot be reused.  Take the latest procedure number and "
4617 "increment it."
4618 msgstr ""
4619
4620 #. type: textblock
4621 #: ../src/guestfs.pod:2445
4622 msgid ""
4623 "For library-only actions of the second type, add to the "
4624 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4625 "library and do not travel over the RPC mechanism to the daemon, these "
4626 "functions do not need a procedure number, and so the procedure number is set "
4627 "to C<-1>."
4628 msgstr ""
4629
4630 #. type: textblock
4631 #: ../src/guestfs.pod:2453
4632 msgid "Implement the action (in C):"
4633 msgstr ""
4634
4635 #. type: textblock
4636 #: ../src/guestfs.pod:2455
4637 msgid ""
4638 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4639 "C<daemon/> directory."
4640 msgstr ""
4641
4642 #. type: textblock
4643 #: ../src/guestfs.pod:2458
4644 msgid ""
4645 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4646 "(note: double underscore) in the C<src/> directory."
4647 msgstr ""
4648
4649 #. type: textblock
4650 #: ../src/guestfs.pod:2461
4651 msgid "In either case, use another function as an example of what to do."
4652 msgstr ""
4653
4654 #. type: textblock
4655 #: ../src/guestfs.pod:2465
4656 msgid "After making these changes, use C<make> to compile."
4657 msgstr ""
4658
4659 #. type: textblock
4660 #: ../src/guestfs.pod:2467
4661 msgid ""
4662 "Note that you don't need to implement the RPC, language bindings, manual "
4663 "pages or anything else.  It's all automatically generated from the OCaml "
4664 "description."
4665 msgstr ""
4666
4667 #. type: =head2
4668 #: ../src/guestfs.pod:2471
4669 msgid "ADDING TESTS FOR AN API ACTION"
4670 msgstr ""
4671
4672 #. type: textblock
4673 #: ../src/guestfs.pod:2473
4674 msgid ""
4675 "You can supply zero or as many tests as you want per API call.  The tests "
4676 "can either be added as part of the API description "
4677 "(C<generator/generator_actions.ml>), or in some rarer cases you may want to "
4678 "drop a script into C<regressions/>.  Note that adding a script to "
4679 "C<regressions/> is slower, so if possible use the first method."
4680 msgstr ""
4681
4682 #. type: textblock
4683 #: ../src/guestfs.pod:2479
4684 msgid ""
4685 "The following describes the test environment used when you add an API test "
4686 "in C<generator_actions.ml>."
4687 msgstr ""
4688
4689 #. type: textblock
4690 #: ../src/guestfs.pod:2482
4691 msgid "The test environment has 4 block devices:"
4692 msgstr ""
4693
4694 #. type: =item
4695 #: ../src/guestfs.pod:2486
4696 msgid "C</dev/sda> 500MB"
4697 msgstr ""
4698
4699 #. type: textblock
4700 #: ../src/guestfs.pod:2488
4701 msgid "General block device for testing."
4702 msgstr ""
4703
4704 #. type: =item
4705 #: ../src/guestfs.pod:2490
4706 msgid "C</dev/sdb> 50MB"
4707 msgstr ""
4708
4709 #. type: textblock
4710 #: ../src/guestfs.pod:2492
4711 msgid ""
4712 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4713 "operations."
4714 msgstr ""
4715
4716 #. type: =item
4717 #: ../src/guestfs.pod:2495
4718 msgid "C</dev/sdc> 10MB"
4719 msgstr ""
4720
4721 #. type: textblock
4722 #: ../src/guestfs.pod:2497
4723 msgid "Used in a few tests where two block devices are needed."
4724 msgstr ""
4725
4726 #. type: =item
4727 #: ../src/guestfs.pod:2499
4728 msgid "C</dev/sdd>"
4729 msgstr ""
4730
4731 #. type: textblock
4732 #: ../src/guestfs.pod:2501
4733 msgid "ISO with fixed content (see C<images/test.iso>)."
4734 msgstr ""
4735
4736 #. type: textblock
4737 #: ../src/guestfs.pod:2505
4738 msgid ""
4739 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4740 "appliance and block devices are reused between tests.  So don't try testing "
4741 "L</guestfs_kill_subprocess> :-x"
4742 msgstr ""
4743
4744 #. type: textblock
4745 #: ../src/guestfs.pod:2509
4746 msgid ""
4747 "Each test starts with an initial scenario, selected using one of the "
4748 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4749 "initialize the disks mentioned above in a particular way as documented in "
4750 "C<generator_types.ml>.  You should not assume anything about the previous "
4751 "contents of other disks that are not initialized."
4752 msgstr ""
4753
4754 #. type: textblock
4755 #: ../src/guestfs.pod:2515
4756 msgid ""
4757 "You can add a prerequisite clause to any individual test.  This is a "
4758 "run-time check, which, if it fails, causes the test to be skipped.  Useful "
4759 "if testing a command which might not work on all variations of libguestfs "
4760 "builds.  A test that has prerequisite of C<Always> means to run "
4761 "unconditionally."
4762 msgstr ""
4763
4764 #. type: textblock
4765 #: ../src/guestfs.pod:2521
4766 msgid ""
4767 "In addition, packagers can skip individual tests by setting environment "
4768 "variables before running C<make check>."
4769 msgstr ""
4770
4771 #. type: verbatim
4772 #: ../src/guestfs.pod:2524
4773 #, no-wrap
4774 msgid ""
4775 " SKIP_TEST_<CMD>_<NUM>=1\n"
4776 "\n"
4777 msgstr ""
4778
4779 #. type: textblock
4780 #: ../src/guestfs.pod:2526
4781 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4782 msgstr ""
4783
4784 #. type: textblock
4785 #: ../src/guestfs.pod:2528
4786 msgid "or:"
4787 msgstr ""
4788
4789 #. type: verbatim
4790 #: ../src/guestfs.pod:2530
4791 #, no-wrap
4792 msgid ""
4793 " SKIP_TEST_<CMD>=1\n"
4794 "\n"
4795 msgstr ""
4796
4797 #. type: textblock
4798 #: ../src/guestfs.pod:2532
4799 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4800 msgstr ""
4801
4802 #. type: textblock
4803 #: ../src/guestfs.pod:2534
4804 msgid "Packagers can run only certain tests by setting for example:"
4805 msgstr ""
4806
4807 #. type: verbatim
4808 #: ../src/guestfs.pod:2536
4809 #, no-wrap
4810 msgid ""
4811 " TEST_ONLY=\"vfs_type zerofree\"\n"
4812 "\n"
4813 msgstr ""
4814
4815 #. type: textblock
4816 #: ../src/guestfs.pod:2538
4817 msgid ""
4818 "See C<capitests/tests.c> for more details of how these environment variables "
4819 "work."
4820 msgstr ""
4821
4822 #. type: =head2
4823 #: ../src/guestfs.pod:2541
4824 msgid "DEBUGGING NEW API ACTIONS"
4825 msgstr ""
4826
4827 #. type: textblock
4828 #: ../src/guestfs.pod:2543
4829 msgid "Test new actions work before submitting them."
4830 msgstr ""
4831
4832 #. type: textblock
4833 #: ../src/guestfs.pod:2545
4834 msgid "You can use guestfish to try out new commands."
4835 msgstr ""
4836
4837 #. type: textblock
4838 #: ../src/guestfs.pod:2547
4839 msgid ""
4840 "Debugging the daemon is a problem because it runs inside a minimal "
4841 "environment.  However you can fprintf messages in the daemon to stderr, and "
4842 "they will show up if you use C<guestfish -v>."
4843 msgstr ""
4844
4845 #. type: =head2
4846 #: ../src/guestfs.pod:2551
4847 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4848 msgstr ""
4849
4850 #. type: textblock
4851 #: ../src/guestfs.pod:2553
4852 msgid ""
4853 "Our C source code generally adheres to some basic code-formatting "
4854 "conventions.  The existing code base is not totally consistent on this "
4855 "front, but we do prefer that contributed code be formatted similarly.  In "
4856 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4857 "indentation level, and other than that, follow the K&R style."
4858 msgstr ""
4859
4860 #. type: textblock
4861 #: ../src/guestfs.pod:2559
4862 msgid ""
4863 "If you use Emacs, add the following to one of one of your start-up files "
4864 "(e.g., ~/.emacs), to help ensure that you get indentation right:"
4865 msgstr ""
4866
4867 #. type: verbatim
4868 #: ../src/guestfs.pod:2562
4869 #, no-wrap
4870 msgid ""
4871 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4872 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4873 " (add-hook 'find-file-hook\n"
4874 "     '(lambda () (if (and buffer-file-name\n"
4875 "                          (string-match \"/libguestfs\\\\>\"\n"
4876 "                              (buffer-file-name))\n"
4877 "                          (not (string-equal mode-name \"Change Log\"))\n"
4878 "                          (not (string-equal mode-name \"Makefile\")))\n"
4879 "                     (setq indent-tabs-mode nil))))\n"
4880 " \n"
4881 msgstr ""
4882
4883 #. type: verbatim
4884 #: ../src/guestfs.pod:2572
4885 #, no-wrap
4886 msgid ""
4887 " ;;; When editing C sources in libguestfs, use this style.\n"
4888 " (defun libguestfs-c-mode ()\n"
4889 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
4890 "   (interactive)\n"
4891 "   (c-set-style \"K&R\")\n"
4892 "   (setq c-indent-level 2)\n"
4893 "   (setq c-basic-offset 2))\n"
4894 " (add-hook 'c-mode-hook\n"
4895 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
4896 "                               (buffer-file-name))\n"
4897 "                           (libguestfs-c-mode))))\n"
4898 "\n"
4899 msgstr ""
4900
4901 #. type: textblock
4902 #: ../src/guestfs.pod:2584
4903 msgid "Enable warnings when compiling (and fix any problems this finds):"
4904 msgstr ""
4905
4906 #. type: verbatim
4907 #: ../src/guestfs.pod:2587
4908 #, no-wrap
4909 msgid ""
4910 " ./configure --enable-gcc-warnings\n"
4911 "\n"
4912 msgstr ""
4913
4914 #. type: textblock
4915 #: ../src/guestfs.pod:2589
4916 msgid "Useful targets are:"
4917 msgstr ""
4918
4919 #. type: verbatim
4920 #: ../src/guestfs.pod:2591
4921 #, no-wrap
4922 msgid ""
4923 " make syntax-check  # checks the syntax of the C code\n"
4924 " make check         # runs the test suite\n"
4925 "\n"
4926 msgstr ""
4927
4928 #. type: =head2
4929 #: ../src/guestfs.pod:2594
4930 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
4931 msgstr ""
4932
4933 #. type: textblock
4934 #: ../src/guestfs.pod:2596
4935 msgid ""
4936 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
4937 "which are used to do shell quoting."
4938 msgstr ""
4939
4940 #. type: =item
4941 #: ../src/guestfs.pod:2601
4942 msgid "%Q"
4943 msgstr ""
4944
4945 #. type: textblock
4946 #: ../src/guestfs.pod:2603
4947 msgid ""
4948 "Simple shell quoted string.  Any spaces or other shell characters are "
4949 "escaped for you."
4950 msgstr ""
4951
4952 #. type: =item
4953 #: ../src/guestfs.pod:2606
4954 msgid "%R"
4955 msgstr ""
4956
4957 #. type: textblock
4958 #: ../src/guestfs.pod:2608
4959 msgid ""
4960 "Same as C<%Q> except the string is treated as a path which is prefixed by "
4961 "the sysroot."
4962 msgstr ""
4963
4964 #. type: textblock
4965 #: ../src/guestfs.pod:2613 ../fish/guestfish.pod:242 ../fish/guestfish.pod:615
4966 msgid "For example:"
4967 msgstr ""
4968
4969 #. type: verbatim
4970 #: ../src/guestfs.pod:2615
4971 #, no-wrap
4972 msgid ""
4973 " asprintf (&cmd, \"cat %R\", path);\n"
4974 "\n"
4975 msgstr ""
4976
4977 #. type: textblock
4978 #: ../src/guestfs.pod:2617
4979 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
4980 msgstr ""
4981
4982 #. type: textblock
4983 #: ../src/guestfs.pod:2619
4984 msgid ""
4985 "I<Note:> Do I<not> use these when you are passing parameters to the "
4986 "C<command{,r,v,rv}()> functions.  These parameters do NOT need to be quoted "
4987 "because they are not passed via the shell (instead, straight to exec).  You "
4988 "probably want to use the C<sysroot_path()> function however."
4989 msgstr ""
4990
4991 #. type: =head2
4992 #: ../src/guestfs.pod:2625
4993 msgid "SUBMITTING YOUR NEW API ACTIONS"
4994 msgstr ""
4995
4996 #. type: textblock
4997 #: ../src/guestfs.pod:2627
4998 msgid ""
4999 "Submit patches to the mailing list: "
5000 "L<http://www.redhat.com/mailman/listinfo/libguestfs> and CC to "
5001 "L<rjones@redhat.com>."
5002 msgstr ""
5003
5004 #. type: =head2
5005 #: ../src/guestfs.pod:2631
5006 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5007 msgstr ""
5008
5009 #. type: textblock
5010 #: ../src/guestfs.pod:2633
5011 msgid "We support i18n (gettext anyhow) in the library."
5012 msgstr ""
5013
5014 #. type: textblock
5015 #: ../src/guestfs.pod:2635
5016 msgid ""
5017 "However many messages come from the daemon, and we don't translate those at "
5018 "the moment.  One reason is that the appliance generally has all locale files "
5019 "removed from it, because they take up a lot of space.  So we'd have to readd "
5020 "some of those, as well as copying our PO files into the appliance."
5021 msgstr ""
5022
5023 #. type: textblock
5024 #: ../src/guestfs.pod:2641
5025 msgid ""
5026 "Debugging messages are never translated, since they are intended for the "
5027 "programmers."
5028 msgstr ""
5029
5030 #. type: =head2
5031 #: ../src/guestfs.pod:2644
5032 msgid "SOURCE CODE SUBDIRECTORIES"
5033 msgstr ""
5034
5035 #. type: =item
5036 #: ../src/guestfs.pod:2648 ../src/guestfs-actions.pod:6106 ../fish/guestfish-actions.pod:4041
5037 msgid "C<appliance>"
5038 msgstr ""
5039
5040 #. type: textblock
5041 #: ../src/guestfs.pod:2650
5042 msgid "The libguestfs appliance, build scripts and so on."
5043 msgstr ""
5044
5045 #. type: =item
5046 #: ../src/guestfs.pod:2652
5047 msgid "C<capitests>"
5048 msgstr ""
5049
5050 #. type: textblock
5051 #: ../src/guestfs.pod:2654
5052 msgid "Automated tests of the C API."
5053 msgstr ""
5054
5055 #. type: =item
5056 #: ../src/guestfs.pod:2656
5057 msgid "C<cat>"
5058 msgstr ""
5059
5060 #. type: textblock
5061 #: ../src/guestfs.pod:2658
5062 msgid ""
5063 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5064 "documentation."
5065 msgstr ""
5066
5067 #. type: =item
5068 #: ../src/guestfs.pod:2661
5069 msgid "C<caution>"
5070 msgstr ""
5071
5072 #. type: textblock
5073 #: ../src/guestfs.pod:2663
5074 msgid ""
5075 "Safety and liveness tests of components that libguestfs depends upon (not of "
5076 "libguestfs itself).  Mainly this is for qemu and the kernel."
5077 msgstr ""
5078
5079 #. type: =item
5080 #: ../src/guestfs.pod:2666
5081 msgid "C<contrib>"
5082 msgstr ""
5083
5084 #. type: textblock
5085 #: ../src/guestfs.pod:2668
5086 msgid "Outside contributions, experimental parts."
5087 msgstr ""
5088
5089 #. type: =item
5090 #: ../src/guestfs.pod:2670
5091 msgid "C<daemon>"
5092 msgstr ""
5093
5094 #. type: textblock
5095 #: ../src/guestfs.pod:2672
5096 msgid ""
5097 "The daemon that runs inside the libguestfs appliance and carries out "
5098 "actions."
5099 msgstr ""
5100
5101 #. type: =item
5102 #: ../src/guestfs.pod:2675
5103 msgid "C<df>"
5104 msgstr ""
5105
5106 #. type: textblock
5107 #: ../src/guestfs.pod:2677
5108 msgid "L<virt-df(1)> command and documentation."
5109 msgstr ""
5110
5111 #. type: =item
5112 #: ../src/guestfs.pod:2679
5113 msgid "C<edit>"
5114 msgstr ""
5115
5116 #. type: textblock
5117 #: ../src/guestfs.pod:2681
5118 msgid "L<virt-edit(1)> command and documentation."
5119 msgstr ""
5120
5121 #. type: =item
5122 #: ../src/guestfs.pod:2683
5123 msgid "C<examples>"
5124 msgstr ""
5125
5126 #. type: textblock
5127 #: ../src/guestfs.pod:2685
5128 msgid "C API example code."
5129 msgstr ""
5130
5131 #. type: =item
5132 #: ../src/guestfs.pod:2687
5133 msgid "C<fish>"
5134 msgstr ""
5135
5136 #. type: textblock
5137 #: ../src/guestfs.pod:2689
5138 msgid ""
5139 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5140 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5141 "L<virt-tar-out(1)>."
5142 msgstr ""
5143
5144 #. type: =item
5145 #: ../src/guestfs.pod:2693
5146 msgid "C<fuse>"
5147 msgstr ""
5148
5149 #. type: textblock
5150 #: ../src/guestfs.pod:2695
5151 msgid "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5152 msgstr ""
5153
5154 #. type: =item
5155 #: ../src/guestfs.pod:2697
5156 msgid "C<generator>"
5157 msgstr ""
5158
5159 #. type: textblock
5160 #: ../src/guestfs.pod:2699
5161 msgid ""
5162 "The crucially important generator, used to automatically generate large "
5163 "amounts of boilerplate C code for things like RPC and bindings."
5164 msgstr ""
5165
5166 #. type: =item
5167 #: ../src/guestfs.pod:2702
5168 msgid "C<images>"
5169 msgstr ""
5170
5171 #. type: textblock
5172 #: ../src/guestfs.pod:2704
5173 msgid "Files used by the test suite."
5174 msgstr ""
5175
5176 #. type: textblock
5177 #: ../src/guestfs.pod:2706
5178 msgid "Some \"phony\" guest images which we test against."
5179 msgstr ""
5180
5181 #. type: =item
5182 #: ../src/guestfs.pod:2708
5183 msgid "C<inspector>"
5184 msgstr ""
5185
5186 #. type: textblock
5187 #: ../src/guestfs.pod:2710
5188 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5189 msgstr ""
5190
5191 #. type: =item
5192 #: ../src/guestfs.pod:2712
5193 msgid "C<logo>"
5194 msgstr ""
5195
5196 #. type: textblock
5197 #: ../src/guestfs.pod:2714
5198 msgid "Logo used on the website.  The fish is called Arthur by the way."
5199 msgstr ""
5200
5201 #. type: =item
5202 #: ../src/guestfs.pod:2716
5203 msgid "C<m4>"
5204 msgstr ""
5205
5206 #. type: textblock
5207 #: ../src/guestfs.pod:2718
5208 msgid "M4 macros used by autoconf."
5209 msgstr ""
5210
5211 #. type: =item
5212 #: ../src/guestfs.pod:2720
5213 msgid "C<po>"
5214 msgstr ""
5215
5216 #. type: textblock
5217 #: ../src/guestfs.pod:2722
5218 msgid "Translations of simple gettext strings."
5219 msgstr ""
5220
5221 #. type: =item
5222 #: ../src/guestfs.pod:2724
5223 msgid "C<po-docs>"
5224 msgstr ""
5225
5226 #. type: textblock
5227 #: ../src/guestfs.pod:2726
5228 msgid ""
5229 "The build infrastructure and PO files for translations of manpages and POD "
5230 "files.  Eventually this will be combined with the C<po> directory, but that "
5231 "is rather complicated."
5232 msgstr ""
5233
5234 #. type: =item
5235 #: ../src/guestfs.pod:2730
5236 msgid "C<regressions>"
5237 msgstr ""
5238
5239 #. type: textblock
5240 #: ../src/guestfs.pod:2732
5241 msgid "Regression tests."
5242 msgstr ""
5243
5244 #. type: =item
5245 #: ../src/guestfs.pod:2734
5246 msgid "C<rescue>"
5247 msgstr ""
5248
5249 #. type: textblock
5250 #: ../src/guestfs.pod:2736
5251 msgid "L<virt-rescue(1)> command and documentation."
5252 msgstr ""
5253
5254 #. type: =item
5255 #: ../src/guestfs.pod:2738
5256 msgid "C<src>"
5257 msgstr ""
5258
5259 #. type: textblock
5260 #: ../src/guestfs.pod:2740
5261 msgid "Source code to the C library."
5262 msgstr ""
5263
5264 #. type: =item
5265 #: ../src/guestfs.pod:2742
5266 msgid "C<tools>"
5267 msgstr ""
5268
5269 #. type: textblock
5270 #: ../src/guestfs.pod:2744
5271 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5272 msgstr ""
5273
5274 #. type: =item
5275 #: ../src/guestfs.pod:2746
5276 msgid "C<test-tool>"
5277 msgstr ""
5278
5279 #. type: textblock
5280 #: ../src/guestfs.pod:2748
5281 msgid ""
5282 "Test tool for end users to test if their qemu/kernel combination will work "
5283 "with libguestfs."
5284 msgstr ""
5285
5286 #. type: =item
5287 #: ../src/guestfs.pod:2751
5288 msgid "C<csharp>"
5289 msgstr ""
5290
5291 #. type: =item
5292 #: ../src/guestfs.pod:2753
5293 msgid "C<haskell>"
5294 msgstr ""
5295
5296 #. type: =item
5297 #: ../src/guestfs.pod:2755
5298 msgid "C<java>"
5299 msgstr ""
5300
5301 #. type: =item
5302 #: ../src/guestfs.pod:2757
5303 msgid "C<ocaml>"
5304 msgstr ""
5305
5306 #. type: =item
5307 #: ../src/guestfs.pod:2759
5308 msgid "C<php>"
5309 msgstr ""
5310
5311 #. type: =item
5312 #: ../src/guestfs.pod:2761
5313 msgid "C<perl>"
5314 msgstr ""
5315
5316 #. type: =item
5317 #: ../src/guestfs.pod:2763
5318 msgid "C<python>"
5319 msgstr ""
5320
5321 #. type: =item
5322 #: ../src/guestfs.pod:2765
5323 msgid "C<ruby>"
5324 msgstr ""
5325
5326 #. type: textblock
5327 #: ../src/guestfs.pod:2767
5328 msgid "Language bindings."
5329 msgstr ""
5330
5331 #. type: =head1
5332 #: ../src/guestfs.pod:2771
5333 msgid "LIMITS"
5334 msgstr ""
5335
5336 #. type: =head2
5337 #: ../src/guestfs.pod:2773
5338 msgid "PROTOCOL LIMITS"
5339 msgstr ""
5340
5341 #. type: textblock
5342 #: ../src/guestfs.pod:2775
5343 msgid ""
5344 "Internally libguestfs uses a message-based protocol to pass API calls and "
5345 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5346 "plenty more detail about this).  The maximum message size used by the "
5347 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5348 "aware of this limit.  The API calls which may be affected are individually "
5349 "documented, with a link back to this section of the documentation."
5350 msgstr ""
5351
5352 #. type: textblock
5353 #: ../src/guestfs.pod:2783
5354 msgid ""
5355 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5356 "a simple string.  Because this string is at some point internally encoded as "
5357 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5358 "the requested file is larger than this then you will get an error."
5359 msgstr ""
5360
5361 #. type: textblock
5362 #: ../src/guestfs.pod:2789
5363 msgid ""
5364 "In order to transfer large files into and out of the guest filesystem, you "
5365 "need to use particular calls that support this.  The sections L</UPLOADING> "
5366 "and L</DOWNLOADING> document how to do this."
5367 msgstr ""
5368
5369 #. type: textblock
5370 #: ../src/guestfs.pod:2793
5371 msgid ""
5372 "You might also consider mounting the disk image using our FUSE filesystem "
5373 "support (L<guestmount(1)>)."
5374 msgstr ""
5375
5376 #. type: =head2
5377 #: ../src/guestfs.pod:2796
5378 msgid "MAXIMUM NUMBER OF DISKS"
5379 msgstr ""
5380
5381 #. type: textblock
5382 #: ../src/guestfs.pod:2798
5383 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5384 msgstr ""
5385
5386 #. type: textblock
5387 #: ../src/guestfs.pod:2801
5388 msgid ""
5389 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5390 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5391 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5392 "purposes."
5393 msgstr ""
5394
5395 #. type: textblock
5396 #: ../src/guestfs.pod:2806
5397 msgid ""
5398 "We are working to substantially raise this limit in future versions but it "
5399 "requires complex changes to qemu."
5400 msgstr ""
5401
5402 #. type: textblock
5403 #: ../src/guestfs.pod:2809
5404 msgid ""
5405 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5406 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5407 "requires changes to qemu."
5408 msgstr ""
5409
5410 #. type: =head2
5411 #: ../src/guestfs.pod:2813
5412 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5413 msgstr ""
5414
5415 #. type: textblock
5416 #: ../src/guestfs.pod:2815
5417 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5418 msgstr ""
5419
5420 #. type: textblock
5421 #: ../src/guestfs.pod:2817
5422 msgid ""
5423 "This is because it reserves 4 bits for the minor device number (thus "
5424 "C</dev/vda>, and C</dev/vda1> through C</dev/vda15>)."
5425 msgstr ""
5426
5427 #. type: textblock
5428 #: ../src/guestfs.pod:2820
5429 msgid ""
5430 "If you attach a disk with more than 15 partitions, the extra partitions are "
5431 "ignored by libguestfs."
5432 msgstr ""
5433
5434 #. type: =head2
5435 #: ../src/guestfs.pod:2823
5436 msgid "MAXIMUM SIZE OF A DISK"
5437 msgstr ""
5438
5439 #. type: textblock
5440 #: ../src/guestfs.pod:2825
5441 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5442 msgstr ""
5443
5444 #. type: textblock
5445 #: ../src/guestfs.pod:2827
5446 msgid ""
5447 "We have tested block devices up to 1 exabyte (2**60 or "
5448 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5449 "filesystem."
5450 msgstr ""
5451
5452 #. type: textblock
5453 #: ../src/guestfs.pod:2831
5454 msgid ""
5455 "Although libguestfs probably does not impose any limit, the underlying host "
5456 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5457 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5458 "TB).  If you store disk images as host logical volumes then you are limited "
5459 "by the maximum size of an LV."
5460 msgstr ""
5461
5462 #. type: textblock
5463 #: ../src/guestfs.pod:2837
5464 msgid ""
5465 "For the hugest disk image files, we recommend using XFS on the host for "
5466 "storage."
5467 msgstr ""
5468
5469 #. type: =head2
5470 #: ../src/guestfs.pod:2840
5471 msgid "MAXIMUM SIZE OF A PARTITION"
5472 msgstr ""
5473
5474 #. type: textblock
5475 #: ../src/guestfs.pod:2842
5476 msgid ""
5477 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5478 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5479 "address a partition located beyond 2 TB on the disk."
5480 msgstr ""
5481
5482 #. type: textblock
5483 #: ../src/guestfs.pod:2846
5484 msgid ""
5485 "It is recommended that you use GPT partitions on disks which are larger than "
5486 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
5487 "which are theoretically larger than the largest disk we could support."
5488 msgstr ""
5489
5490 #. type: =head2
5491 #: ../src/guestfs.pod:2851
5492 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5493 msgstr ""
5494
5495 #. type: textblock
5496 #: ../src/guestfs.pod:2853
5497 msgid ""
5498 "This depends on the filesystem type.  libguestfs itself does not impose any "
5499 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5500 "what these limits are."
5501 msgstr ""
5502
5503 #. type: =head2
5504 #: ../src/guestfs.pod:2857
5505 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5506 msgstr ""
5507
5508 #. type: textblock
5509 #: ../src/guestfs.pod:2859
5510 msgid ""
5511 "The API functions L</guestfs_upload>, L</guestfs_download>, "
5512 "L</guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5513 "uploads and downloads."
5514 msgstr ""
5515
5516 #. type: =head2
5517 #: ../src/guestfs.pod:2863
5518 msgid "INSPECTION LIMITS"
5519 msgstr ""
5520
5521 #. type: textblock
5522 #: ../src/guestfs.pod:2865
5523 msgid ""
5524 "The inspection code has several arbitrary limits on things like the size of "
5525 "Windows Registry hive it will read, and the length of product name.  These "
5526 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5527 "memory and disk space on the host, and should not be reached in practice.  "
5528 "See the source code for more information."
5529 msgstr ""
5530
5531 #. type: =head1
5532 #: ../src/guestfs.pod:2871 ../fish/guestfish.pod:1017 ../test-tool/libguestfs-test-tool.pod:82
5533 msgid "ENVIRONMENT VARIABLES"
5534 msgstr ""
5535
5536 #. type: =item
5537 #: ../src/guestfs.pod:2875 ../fish/guestfish.pod:1048
5538 msgid "LIBGUESTFS_APPEND"
5539 msgstr ""
5540
5541 #. type: textblock
5542 #: ../src/guestfs.pod:2877 ../fish/guestfish.pod:1050
5543 msgid "Pass additional options to the guest kernel."
5544 msgstr ""
5545
5546 #. type: =item
5547 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1052
5548 msgid "LIBGUESTFS_DEBUG"
5549 msgstr ""
5550
5551 #. type: textblock
5552 #: ../src/guestfs.pod:2881
5553 msgid ""
5554 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5555 "effect as calling C<guestfs_set_verbose (g, 1)>."
5556 msgstr ""
5557
5558 #. type: =item
5559 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1057
5560 msgid "LIBGUESTFS_MEMSIZE"
5561 msgstr ""
5562
5563 #. type: textblock
5564 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1059
5565 msgid "Set the memory allocated to the qemu process, in megabytes.  For example:"
5566 msgstr ""
5567
5568 #. type: verbatim
5569 #: ../src/guestfs.pod:2889 ../fish/guestfish.pod:1062
5570 #, no-wrap
5571 msgid ""
5572 " LIBGUESTFS_MEMSIZE=700\n"
5573 "\n"
5574 msgstr ""
5575
5576 #. type: =item
5577 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1064
5578 msgid "LIBGUESTFS_PATH"
5579 msgstr ""
5580
5581 #. type: textblock
5582 #: ../src/guestfs.pod:2893
5583 msgid ""
5584 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5585 "the discussion of paths in section L</PATH> above."
5586 msgstr ""
5587
5588 #. type: =item
5589 #: ../src/guestfs.pod:2896 ../fish/guestfish.pod:1069
5590 msgid "LIBGUESTFS_QEMU"
5591 msgstr ""
5592
5593 #. type: textblock
5594 #: ../src/guestfs.pod:2898 ../fish/guestfish.pod:1071
5595 msgid ""
5596 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5597 "which was found at compile time by the configure script is used."
5598 msgstr ""
5599
5600 #. type: textblock
5601 #: ../src/guestfs.pod:2902
5602 msgid "See also L</QEMU WRAPPERS> above."
5603 msgstr ""
5604
5605 #. type: =item
5606 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1075
5607 msgid "LIBGUESTFS_TRACE"
5608 msgstr ""
5609
5610 #. type: textblock
5611 #: ../src/guestfs.pod:2906
5612 msgid ""
5613 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5614 "effect as calling C<guestfs_set_trace (g, 1)>."
5615 msgstr ""
5616
5617 #. type: =item
5618 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1084
5619 msgid "TMPDIR"
5620 msgstr ""
5621
5622 #. type: textblock
5623 #: ../src/guestfs.pod:2911 ../fish/guestfish.pod:1086
5624 msgid ""
5625 "Location of temporary directory, defaults to C</tmp> except for the cached "
5626 "supermin appliance which defaults to C</var/tmp>."
5627 msgstr ""
5628
5629 #. type: textblock
5630 #: ../src/guestfs.pod:2914 ../fish/guestfish.pod:1089
5631 msgid ""
5632 "If libguestfs was compiled to use the supermin appliance then the real "
5633 "appliance is cached in this directory, shared between all handles belonging "
5634 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5635 "use in case C</var/tmp> is not large enough."
5636 msgstr ""
5637
5638 #. type: =head1
5639 #: ../src/guestfs.pod:2922 ../fish/guestfish.pod:1156 ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:279 ../tools/virt-win-reg.pl:744 ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
5640 msgid "SEE ALSO"
5641 msgstr ""
5642
5643 #. type: textblock
5644 #: ../src/guestfs.pod:2924
5645 msgid ""
5646 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, "
5647 "L<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, "
5648 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
5649 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
5650 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
5651 "L<virt-rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, "
5652 "L<virt-win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, "
5653 "L<http://libguestfs.org/>."
5654 msgstr ""
5655
5656 #. type: textblock
5657 #: ../src/guestfs.pod:2951
5658 msgid ""
5659 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, "
5660 "L<lvm(8)>, L<disktype(1)>."
5661 msgstr ""
5662
5663 #. type: =head1
5664 #: ../src/guestfs.pod:2958 ../tools/virt-win-reg.pl:759 ../tools/virt-make-fs.pl:553
5665 msgid "BUGS"
5666 msgstr ""
5667
5668 #. type: textblock
5669 #: ../src/guestfs.pod:2960
5670 msgid "To get a list of bugs against libguestfs use this link:"
5671 msgstr ""
5672
5673 #. type: textblock
5674 #: ../src/guestfs.pod:2962
5675 msgid "L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>"
5676 msgstr ""
5677
5678 #. type: textblock
5679 #: ../src/guestfs.pod:2964
5680 msgid "To report a new bug against libguestfs use this link:"
5681 msgstr ""
5682
5683 #. type: textblock
5684 #: ../src/guestfs.pod:2966
5685 msgid "L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>"
5686 msgstr ""
5687
5688 #. type: textblock
5689 #: ../src/guestfs.pod:2968
5690 msgid "When reporting a bug, please check:"
5691 msgstr ""
5692
5693 #. type: textblock
5694 #: ../src/guestfs.pod:2974
5695 msgid "That the bug hasn't been reported already."
5696 msgstr ""
5697
5698 #. type: textblock
5699 #: ../src/guestfs.pod:2978
5700 msgid "That you are testing a recent version."
5701 msgstr ""
5702
5703 #. type: textblock
5704 #: ../src/guestfs.pod:2982
5705 msgid "Describe the bug accurately, and give a way to reproduce it."
5706 msgstr ""
5707
5708 #. type: textblock
5709 #: ../src/guestfs.pod:2986
5710 msgid ""
5711 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5712 "bug report."
5713 msgstr ""
5714
5715 #. type: =head1
5716 #: ../src/guestfs.pod:2991 ../fish/guestfish.pod:1180 ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:290
5717 msgid "AUTHORS"
5718 msgstr ""
5719
5720 #. type: textblock
5721 #: ../src/guestfs.pod:2993 ../fish/guestfish.pod:1182 ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:292
5722 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5723 msgstr ""
5724
5725 #. type: =head1
5726 #: ../src/guestfs.pod:2995 ../fish/guestfish.pod:1184 ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:294 ../tools/virt-win-reg.pl:774 ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
5727 msgid "COPYRIGHT"
5728 msgstr ""
5729
5730 #. type: textblock
5731 #: ../src/guestfs.pod:2997 ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:99
5732 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5733 msgstr ""
5734
5735 #. type: textblock
5736 #: ../src/guestfs.pod:3000
5737 msgid ""
5738 "This library is free software; you can redistribute it and/or modify it "
5739 "under the terms of the GNU Lesser General Public License as published by the "
5740 "Free Software Foundation; either version 2 of the License, or (at your "
5741 "option) any later version."
5742 msgstr ""
5743
5744 #. type: textblock
5745 #: ../src/guestfs.pod:3005
5746 msgid ""
5747 "This library is distributed in the hope that it will be useful, but WITHOUT "
5748 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5749 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5750 "for more details."
5751 msgstr ""
5752
5753 #. type: textblock
5754 #: ../src/guestfs.pod:3010
5755 msgid ""
5756 "You should have received a copy of the GNU Lesser General Public License "
5757 "along with this library; if not, write to the Free Software Foundation, "
5758 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5759 msgstr ""
5760
5761 #. type: =head2
5762 #: ../src/guestfs-actions.pod:1
5763 msgid "guestfs_add_cdrom"
5764 msgstr ""
5765
5766 #. type: verbatim
5767 #: ../src/guestfs-actions.pod:3
5768 #, no-wrap
5769 msgid ""
5770 " int\n"
5771 " guestfs_add_cdrom (guestfs_h *g,\n"
5772 "                    const char *filename);\n"
5773 "\n"
5774 msgstr ""
5775
5776 #. type: textblock
5777 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5778 msgid "This function adds a virtual CD-ROM disk image to the guest."
5779 msgstr ""
5780
5781 #. type: textblock
5782 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5783 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5784 msgstr ""
5785
5786 #. type: textblock
5787 #: ../src/guestfs-actions.pod:17
5788 msgid ""
5789 "This call checks for the existence of C<filename>.  This stops you from "
5790 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5791 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5792 "instead."
5793 msgstr ""
5794
5795 #. type: textblock
5796 #: ../src/guestfs-actions.pod:24
5797 msgid ""
5798 "If you just want to add an ISO file (often you use this as an efficient way "
5799 "to transfer large files into the guest), then you should probably use "
5800 "C<guestfs_add_drive_ro> instead."
5801 msgstr ""
5802
5803 #. type: textblock
5804 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:140 ../src/guestfs-actions.pod:201 ../src/guestfs-actions.pod:238 ../src/guestfs-actions.pod:252 ../src/guestfs-actions.pod:273 ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:307 ../src/guestfs-actions.pod:422 ../src/guestfs-actions.pod:442 ../src/guestfs-actions.pod:456 ../src/guestfs-actions.pod:501 ../src/guestfs-actions.pod:529 ../src/guestfs-actions.pod:547 ../src/guestfs-actions.pod:614 ../src/guestfs-actions.pod:647 ../src/guestfs-actions.pod:661 ../src/guestfs-actions.pod:676 ../src/guestfs-actions.pod:775 ../src/guestfs-actions.pod:793 ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:821 ../src/guestfs-actions.pod:982 ../src/guestfs-actions.pod:1002 ../src/guestfs-actions.pod:1020 ../src/guestfs-actions.pod:1104 ../src/guestfs-actions.pod:1122 ../src/guestfs-actions.pod:1141 ../src/guestfs-actions.pod:1155 ../src/guestfs-actions.pod:1175 ../src/guestfs-actions.pod:1245 ../src/guestfs-actions.pod:1276 ../src/guestfs-actions.pod:1301 ../src/guestfs-actions.pod:1343 ../src/guestfs-actions.pod:1449 ../src/guestfs-actions.pod:1483 ../src/guestfs-actions.pod:1698 ../src/guestfs-actions.pod:1720 ../src/guestfs-actions.pod:1807 ../src/guestfs-actions.pod:2271 ../src/guestfs-actions.pod:2415 ../src/guestfs-actions.pod:2476 ../src/guestfs-actions.pod:2511 ../src/guestfs-actions.pod:3551 ../src/guestfs-actions.pod:3566 ../src/guestfs-actions.pod:3591 ../src/guestfs-actions.pod:3780 ../src/guestfs-actions.pod:3794 ../src/guestfs-actions.pod:3807 ../src/guestfs-actions.pod:3821 ../src/guestfs-actions.pod:3836 ../src/guestfs-actions.pod:3872 ../src/guestfs-actions.pod:3944 ../src/guestfs-actions.pod:3964 ../src/guestfs-actions.pod:3981 ../src/guestfs-actions.pod:4004 ../src/guestfs-actions.pod:4027 ../src/guestfs-actions.pod:4062 ../src/guestfs-actions.pod:4081 ../src/guestfs-actions.pod:4100 ../src/guestfs-actions.pod:4135 ../src/guestfs-actions.pod:4147 ../src/guestfs-actions.pod:4183 ../src/guestfs-actions.pod:4199 ../src/guestfs-actions.pod:4212 ../src/guestfs-actions.pod:4227 ../src/guestfs-actions.pod:4244 ../src/guestfs-actions.pod:4337 ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4370 ../src/guestfs-actions.pod:4421 ../src/guestfs-actions.pod:4439 ../src/guestfs-actions.pod:4457 ../src/guestfs-actions.pod:4473 ../src/guestfs-actions.pod:4487 ../src/guestfs-actions.pod:4501 ../src/guestfs-actions.pod:4518 ../src/guestfs-actions.pod:4533 ../src/guestfs-actions.pod:4553 ../src/guestfs-actions.pod:4623 ../src/guestfs-actions.pod:4696 ../src/guestfs-actions.pod:4727 ../src/guestfs-actions.pod:4746 ../src/guestfs-actions.pod:4765 ../src/guestfs-actions.pod:4777 ../src/guestfs-actions.pod:4794 ../src/guestfs-actions.pod:4807 ../src/guestfs-actions.pod:4822 ../src/guestfs-actions.pod:4837 ../src/guestfs-actions.pod:4872 ../src/guestfs-actions.pod:4905 ../src/guestfs-actions.pod:4944 ../src/guestfs-actions.pod:4964 ../src/guestfs-actions.pod:4978 ../src/guestfs-actions.pod:4995 ../src/guestfs-actions.pod:5044 ../src/guestfs-actions.pod:5090 ../src/guestfs-actions.pod:5144 ../src/guestfs-actions.pod:5180 ../src/guestfs-actions.pod:5215 ../src/guestfs-actions.pod:5232 ../src/guestfs-actions.pod:5250 ../src/guestfs-actions.pod:5384 ../src/guestfs-actions.pod:5441 ../src/guestfs-actions.pod:5463 ../src/guestfs-actions.pod:5481 ../src/guestfs-actions.pod:5513 ../src/guestfs-actions.pod:5579 ../src/guestfs-actions.pod:5596 ../src/guestfs-actions.pod:5609 ../src/guestfs-actions.pod:5623 ../src/guestfs-actions.pod:5912 ../src/guestfs-actions.pod:5931 ../src/guestfs-actions.pod:5950 ../src/guestfs-actions.pod:5964 ../src/guestfs-actions.pod:5976 ../src/guestfs-actions.pod:5990 ../src/guestfs-actions.pod:6002 ../src/guestfs-actions.pod:6016 ../src/guestfs-actions.pod:6032 ../src/guestfs-actions.pod:6053 ../src/guestfs-actions.pod:6072 ../src/guestfs-actions.pod:6091 ../src/guestfs-actions.pod:6121 ../src/guestfs-actions.pod:6139 ../src/guestfs-actions.pod:6162 ../src/guestfs-actions.pod:6180 ../src/guestfs-actions.pod:6199 ../src/guestfs-actions.pod:6220 ../src/guestfs-actions.pod:6239 ../src/guestfs-actions.pod:6256 ../src/guestfs-actions.pod:6284 ../src/guestfs-actions.pod:6308 ../src/guestfs-actions.pod:6327 ../src/guestfs-actions.pod:6351 ../src/guestfs-actions.pod:6370 ../src/guestfs-actions.pod:6385 ../src/guestfs-actions.pod:6404 ../src/guestfs-actions.pod:6441 ../src/guestfs-actions.pod:6471 ../src/guestfs-actions.pod:6504 ../src/guestfs-actions.pod:6626 ../src/guestfs-actions.pod:6747 ../src/guestfs-actions.pod:6759 ../src/guestfs-actions.pod:6772 ../src/guestfs-actions.pod:6785 ../src/guestfs-actions.pod:6807 ../src/guestfs-actions.pod:6820 ../src/guestfs-actions.pod:6833 ../src/guestfs-actions.pod:6846 ../src/guestfs-actions.pod:6861 ../src/guestfs-actions.pod:6920 ../src/guestfs-actions.pod:6937 ../src/guestfs-actions.pod:6953 ../src/guestfs-actions.pod:6969 ../src/guestfs-actions.pod:6986 ../src/guestfs-actions.pod:6999 ../src/guestfs-actions.pod:7019 ../src/guestfs-actions.pod:7055 ../src/guestfs-actions.pod:7069 ../src/guestfs-actions.pod:7110 ../src/guestfs-actions.pod:7123 ../src/guestfs-actions.pod:7141 ../src/guestfs-actions.pod:7175 ../src/guestfs-actions.pod:7211 ../src/guestfs-actions.pod:7327 ../src/guestfs-actions.pod:7342 ../src/guestfs-actions.pod:7356 ../src/guestfs-actions.pod:7411 ../src/guestfs-actions.pod:7424 ../src/guestfs-actions.pod:7469 ../src/guestfs-actions.pod:7502 ../src/guestfs-actions.pod:7563 ../src/guestfs-actions.pod:7589 ../src/guestfs-actions.pod:7656 ../src/guestfs-actions.pod:7675 ../src/guestfs-actions.pod:7704
5805 msgid "This function returns 0 on success or -1 on error."
5806 msgstr ""
5807
5808 #. type: textblock
5809 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:254 ../src/guestfs-actions.pod:275 ../fish/guestfish-actions.pod:28 ../fish/guestfish-actions.pod:163 ../fish/guestfish-actions.pod:177
5810 msgid ""
5811 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
5812 "instead."
5813 msgstr ""
5814
5815 #. type: textblock
5816 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257 ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1454 ../src/guestfs-actions.pod:1949 ../src/guestfs-actions.pod:1970 ../src/guestfs-actions.pod:4558 ../src/guestfs-actions.pod:4877 ../src/guestfs-actions.pod:5095 ../src/guestfs-actions.pod:5185 ../src/guestfs-actions.pod:6449 ../src/guestfs-actions.pod:6479 ../src/guestfs-actions.pod:6512 ../src/guestfs-actions.pod:6571 ../src/guestfs-actions.pod:7507 ../src/guestfs-actions.pod:7597 ../src/guestfs-actions.pod:7767 ../fish/guestfish-actions.pod:31 ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180 ../fish/guestfish-actions.pod:961 ../fish/guestfish-actions.pod:1321 ../fish/guestfish-actions.pod:1335 ../fish/guestfish-actions.pod:3054 ../fish/guestfish-actions.pod:3261 ../fish/guestfish-actions.pod:3375 ../fish/guestfish-actions.pod:3423 ../fish/guestfish-actions.pod:4303 ../fish/guestfish-actions.pod:4326 ../fish/guestfish-actions.pod:4348 ../fish/guestfish-actions.pod:4386 ../fish/guestfish-actions.pod:5021 ../fish/guestfish-actions.pod:5119
5817 msgid ""
5818 "Deprecated functions will not be removed from the API, but the fact that "
5819 "they are deprecated indicates that there are problems with correct use of "
5820 "these functions."
5821 msgstr ""
5822
5823 #. type: textblock
5824 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142 ../src/guestfs-actions.pod:1106 ../src/guestfs-actions.pod:1921 ../src/guestfs-actions.pod:2019 ../src/guestfs-actions.pod:2122 ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:3573 ../src/guestfs-actions.pod:4881 ../src/guestfs-actions.pod:6141 ../src/guestfs-actions.pod:6258 ../src/guestfs-actions.pod:6372 ../src/guestfs-actions.pod:6863 ../src/guestfs-actions.pod:6988 ../src/guestfs-actions.pod:7511
5825 msgid "(Added in 0.3)"
5826 msgstr ""
5827
5828 #. type: =head2
5829 #: ../src/guestfs-actions.pod:41
5830 msgid "guestfs_add_domain"
5831 msgstr ""
5832
5833 #. type: verbatim
5834 #: ../src/guestfs-actions.pod:43
5835 #, no-wrap
5836 msgid ""
5837 " int\n"
5838 " guestfs_add_domain (guestfs_h *g,\n"
5839 "                     const char *dom,\n"
5840 "                     ...);\n"
5841 "\n"
5842 msgstr ""
5843
5844 #. type: textblock
5845 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151 ../src/guestfs-actions.pod:2756 ../src/guestfs-actions.pod:4572 ../src/guestfs-actions.pod:4891 ../src/guestfs-actions.pod:5108
5846 msgid ""
5847 "You may supply a list of optional arguments to this call.  Use zero or more "
5848 "of the following pairs of parameters, and terminate the list with C<-1> on "
5849 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
5850 msgstr ""
5851
5852 #. type: verbatim
5853 #: ../src/guestfs-actions.pod:53
5854 #, no-wrap
5855 msgid ""
5856 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
5857 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
5858 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
5859 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
5860 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
5861 "\n"
5862 msgstr ""
5863
5864 #. type: textblock
5865 #: ../src/guestfs-actions.pod:59
5866 msgid ""
5867 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
5868 "It works by connecting to libvirt, requesting the domain and domain XML from "
5869 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
5870 "one."
5871 msgstr ""
5872
5873 #. type: textblock
5874 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
5875 msgid ""
5876 "The number of disks added is returned.  This operation is atomic: if an "
5877 "error is returned, then no disks are added."
5878 msgstr ""
5879
5880 #. type: textblock
5881 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
5882 msgid ""
5883 "This function does some minimal checks to make sure the libvirt domain is "
5884 "not running (unless C<readonly> is true).  In a future version we will try "
5885 "to acquire the libvirt lock on each disk."
5886 msgstr ""
5887
5888 #. type: textblock
5889 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
5890 msgid ""
5891 "Disks must be accessible locally.  This often means that adding disks from a "
5892 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
5893 "unless those disks are accessible via the same device path locally too."
5894 msgstr ""
5895
5896 #. type: textblock
5897 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
5898 msgid ""
5899 "The optional C<libvirturi> parameter sets the libvirt URI (see "
5900 "L<http://libvirt.org/uri.html>).  If this is not set then we connect to the "
5901 "default libvirt URI (or one set through an environment variable, see the "
5902 "libvirt documentation for full details)."
5903 msgstr ""
5904
5905 #. type: textblock
5906 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
5907 msgid ""
5908 "The optional C<live> flag controls whether this call will try to connect to "
5909 "a running virtual machine C<guestfsd> process if it sees a suitable "
5910 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
5911 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
5912 "DAEMONS> for more information."
5913 msgstr ""
5914
5915 #. type: textblock
5916 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
5917 msgid ""
5918 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
5919 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
5920 "first and looked up, and if that lookup fails then we treat C<dom> as a name "
5921 "as usual."
5922 msgstr ""
5923
5924 #. type: textblock
5925 #: ../src/guestfs-actions.pod:94
5926 msgid ""
5927 "The other optional parameters are passed directly through to "
5928 "C<guestfs_add_drive_opts>."
5929 msgstr ""
5930
5931 #. type: textblock
5932 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350 ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693 ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742 ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1321 ../src/guestfs-actions.pod:1677 ../src/guestfs-actions.pod:1880 ../src/guestfs-actions.pod:1991 ../src/guestfs-actions.pod:2031 ../src/guestfs-actions.pod:2086 ../src/guestfs-actions.pod:2109 ../src/guestfs-actions.pod:2402 ../src/guestfs-actions.pod:2874 ../src/guestfs-actions.pod:2892 ../src/guestfs-actions.pod:5067 ../src/guestfs-actions.pod:5287 ../src/guestfs-actions.pod:5693 ../src/guestfs-actions.pod:5719 ../src/guestfs-actions.pod:7096 ../src/guestfs-actions.pod:7522 ../src/guestfs-actions.pod:7535 ../src/guestfs-actions.pod:7548
5933 msgid "On error this function returns -1."
5934 msgstr ""
5935
5936 #. type: textblock
5937 #: ../src/guestfs-actions.pod:99
5938 msgid "(Added in 1.7.4)"
5939 msgstr ""
5940
5941 #. type: =head2
5942 #: ../src/guestfs-actions.pod:101
5943 msgid "guestfs_add_domain_va"
5944 msgstr ""
5945
5946 #. type: verbatim
5947 #: ../src/guestfs-actions.pod:103
5948 #, no-wrap
5949 msgid ""
5950 " int\n"
5951 " guestfs_add_domain_va (guestfs_h *g,\n"
5952 "                        const char *dom,\n"
5953 "                        va_list args);\n"
5954 "\n"
5955 msgstr ""
5956
5957 #. type: textblock
5958 #: ../src/guestfs-actions.pod:108
5959 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
5960 msgstr ""
5961
5962 #. type: textblock
5963 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121 ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225 ../src/guestfs-actions.pod:2840 ../src/guestfs-actions.pod:2852 ../src/guestfs-actions.pod:4637 ../src/guestfs-actions.pod:4649 ../src/guestfs-actions.pod:4919 ../src/guestfs-actions.pod:4931 ../src/guestfs-actions.pod:5157 ../src/guestfs-actions.pod:5168
5964 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
5965 msgstr ""
5966
5967 #. type: =head2
5968 #: ../src/guestfs-actions.pod:112
5969 msgid "guestfs_add_domain_argv"
5970 msgstr ""
5971
5972 #. type: verbatim
5973 #: ../src/guestfs-actions.pod:114
5974 #, no-wrap
5975 msgid ""
5976 " int\n"
5977 " guestfs_add_domain_argv (guestfs_h *g,\n"
5978 "                          const char *dom,\n"
5979 "                          const struct guestfs_add_domain_argv *optargs);\n"
5980 "\n"
5981 msgstr ""
5982
5983 #. type: textblock
5984 #: ../src/guestfs-actions.pod:119
5985 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
5986 msgstr ""
5987
5988 #. type: =head2
5989 #: ../src/guestfs-actions.pod:123
5990 msgid "guestfs_add_drive"
5991 msgstr ""
5992
5993 #. type: verbatim
5994 #: ../src/guestfs-actions.pod:125
5995 #, no-wrap
5996 msgid ""
5997 " int\n"
5998 " guestfs_add_drive (guestfs_h *g,\n"
5999 "                    const char *filename);\n"
6000 "\n"
6001 msgstr ""
6002
6003 #. type: textblock
6004 #: ../src/guestfs-actions.pod:129
6005 msgid ""
6006 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6007 "optional parameters, so the disk is added writable, with the format being "
6008 "detected automatically."
6009 msgstr ""
6010
6011 #. type: textblock
6012 #: ../src/guestfs-actions.pod:133
6013 msgid ""
6014 "Automatic detection of the format opens you up to a potential security hole "
6015 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6016 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6017 "you should think about replacing calls to this function with calls to "
6018 "C<guestfs_add_drive_opts>, and specifying the format."
6019 msgstr ""
6020
6021 #. type: =head2
6022 #: ../src/guestfs-actions.pod:144
6023 msgid "guestfs_add_drive_opts"
6024 msgstr ""
6025
6026 #. type: verbatim
6027 #: ../src/guestfs-actions.pod:146
6028 #, no-wrap
6029 msgid ""
6030 " int\n"
6031 " guestfs_add_drive_opts (guestfs_h *g,\n"
6032 "                         const char *filename,\n"
6033 "                         ...);\n"
6034 "\n"
6035 msgstr ""
6036
6037 #. type: verbatim
6038 #: ../src/guestfs-actions.pod:156
6039 #, no-wrap
6040 msgid ""
6041 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6042 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6043 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6044 "\n"
6045 msgstr ""
6046
6047 #. type: textblock
6048 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6049 msgid ""
6050 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6051 "The first time you call this function, the disk appears as C</dev/sda>, the "
6052 "second time as C</dev/sdb>, and so on."
6053 msgstr ""
6054
6055 #. type: textblock
6056 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6057 msgid ""
6058 "You don't necessarily need to be root when using libguestfs.  However you "
6059 "obviously do need sufficient permissions to access the filename for whatever "
6060 "operations you want to perform (ie. read access if you just want to read the "
6061 "image or write access if you want to modify the image)."
6062 msgstr ""
6063
6064 #. type: textblock
6065 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6066 msgid "This call checks that C<filename> exists."
6067 msgstr ""
6068
6069 #. type: textblock
6070 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4585 ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3065
6071 msgid "The optional arguments are:"
6072 msgstr ""
6073
6074 #. type: =item
6075 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6076 msgid "C<readonly>"
6077 msgstr ""
6078
6079 #. type: textblock
6080 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6081 msgid ""
6082 "If true then the image is treated as read-only.  Writes are still allowed, "
6083 "but they are stored in a temporary snapshot overlay which is discarded at "
6084 "the end.  The disk that you add is not modified."
6085 msgstr ""
6086
6087 #. type: =item
6088 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6089 msgid "C<format>"
6090 msgstr ""
6091
6092 #. type: textblock
6093 #: ../src/guestfs-actions.pod:185
6094 msgid ""
6095 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6096 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6097 "Possible formats include C<raw> and C<qcow2>."
6098 msgstr ""
6099
6100 #. type: textblock
6101 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6102 msgid ""
6103 "Automatic detection of the format opens you up to a potential security hole "
6104 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6105 "RHBZ#642934.  Specifying the format closes this security hole."
6106 msgstr ""
6107
6108 #. type: =item
6109 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6110 msgid "C<iface>"
6111 msgstr ""
6112
6113 #. type: textblock
6114 #: ../src/guestfs-actions.pod:196
6115 msgid ""
6116 "This rarely-used option lets you emulate the behaviour of the deprecated "
6117 "C<guestfs_add_drive_with_if> call (q.v.)"
6118 msgstr ""
6119
6120 #. type: textblock
6121 #: ../src/guestfs-actions.pod:203
6122 msgid "(Added in 1.5.23)"
6123 msgstr ""
6124
6125 #. type: =head2
6126 #: ../src/guestfs-actions.pod:205
6127 msgid "guestfs_add_drive_opts_va"
6128 msgstr ""
6129
6130 #. type: verbatim
6131 #: ../src/guestfs-actions.pod:207
6132 #, no-wrap
6133 msgid ""
6134 " int\n"
6135 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6136 "                            const char *filename,\n"
6137 "                            va_list args);\n"
6138 "\n"
6139 msgstr ""
6140
6141 #. type: textblock
6142 #: ../src/guestfs-actions.pod:212
6143 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6144 msgstr ""
6145
6146 #. type: =head2
6147 #: ../src/guestfs-actions.pod:216
6148 msgid "guestfs_add_drive_opts_argv"
6149 msgstr ""
6150
6151 #. type: verbatim
6152 #: ../src/guestfs-actions.pod:218
6153 #, no-wrap
6154 msgid ""
6155 " int\n"
6156 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6157 "                              const char *filename,\n"
6158 "                              const struct guestfs_add_drive_opts_argv "
6159 "*optargs);\n"
6160 "\n"
6161 msgstr ""
6162
6163 #. type: textblock
6164 #: ../src/guestfs-actions.pod:223
6165 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6166 msgstr ""
6167
6168 #. type: =head2
6169 #: ../src/guestfs-actions.pod:227
6170 msgid "guestfs_add_drive_ro"
6171 msgstr ""
6172
6173 #. type: verbatim
6174 #: ../src/guestfs-actions.pod:229
6175 #, no-wrap
6176 msgid ""
6177 " int\n"
6178 " guestfs_add_drive_ro (guestfs_h *g,\n"
6179 "                       const char *filename);\n"
6180 "\n"
6181 msgstr ""
6182
6183 #. type: textblock
6184 #: ../src/guestfs-actions.pod:233
6185 msgid ""
6186 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6187 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6188 "disk is added read-only, with the format being detected automatically."
6189 msgstr ""
6190
6191 #. type: textblock
6192 #: ../src/guestfs-actions.pod:240
6193 msgid "(Added in 1.0.38)"
6194 msgstr ""
6195
6196 #. type: =head2
6197 #: ../src/guestfs-actions.pod:242
6198 msgid "guestfs_add_drive_ro_with_if"
6199 msgstr ""
6200
6201 #. type: verbatim
6202 #: ../src/guestfs-actions.pod:244
6203 #, no-wrap
6204 msgid ""
6205 " int\n"
6206 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6207 "                               const char *filename,\n"
6208 "                               const char *iface);\n"
6209 "\n"
6210 msgstr ""
6211
6212 #. type: textblock
6213 #: ../src/guestfs-actions.pod:249
6214 msgid ""
6215 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6216 "QEMU interface emulation to use at run time."
6217 msgstr ""
6218
6219 #. type: textblock
6220 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282 ../src/guestfs-actions.pod:2361
6221 msgid "(Added in 1.0.84)"
6222 msgstr ""
6223
6224 #. type: =head2
6225 #: ../src/guestfs-actions.pod:263
6226 msgid "guestfs_add_drive_with_if"
6227 msgstr ""
6228
6229 #. type: verbatim
6230 #: ../src/guestfs-actions.pod:265
6231 #, no-wrap
6232 msgid ""
6233 " int\n"
6234 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6235 "                            const char *filename,\n"
6236 "                            const char *iface);\n"
6237 "\n"
6238 msgstr ""
6239
6240 #. type: textblock
6241 #: ../src/guestfs-actions.pod:270
6242 msgid ""
6243 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6244 "QEMU interface emulation to use at run time."
6245 msgstr ""
6246
6247 #. type: =head2
6248 #: ../src/guestfs-actions.pod:284
6249 msgid "guestfs_aug_clear"
6250 msgstr ""
6251
6252 #. type: verbatim
6253 #: ../src/guestfs-actions.pod:286
6254 #, no-wrap
6255 msgid ""
6256 " int\n"
6257 " guestfs_aug_clear (guestfs_h *g,\n"
6258 "                    const char *augpath);\n"
6259 "\n"
6260 msgstr ""
6261
6262 #. type: textblock
6263 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6264 msgid ""
6265 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6266 "L<augtool(1)> C<clear> command."
6267 msgstr ""
6268
6269 #. type: textblock
6270 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2111
6271 msgid "(Added in 1.3.4)"
6272 msgstr ""
6273
6274 #. type: =head2
6275 #: ../src/guestfs-actions.pod:297
6276 msgid "guestfs_aug_close"
6277 msgstr ""
6278
6279 #. type: verbatim
6280 #: ../src/guestfs-actions.pod:299
6281 #, no-wrap
6282 msgid ""
6283 " int\n"
6284 " guestfs_aug_close (guestfs_h *g);\n"
6285 "\n"
6286 msgstr ""
6287
6288 #. type: textblock
6289 #: ../src/guestfs-actions.pod:302
6290 msgid ""
6291 "Close the current Augeas handle and free up any resources used by it.  After "
6292 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6293 "any other Augeas functions."
6294 msgstr ""
6295
6296 #. type: textblock
6297 #: ../src/guestfs-actions.pod:309 ../src/guestfs-actions.pod:334 ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:366 ../src/guestfs-actions.pod:424 ../src/guestfs-actions.pod:444 ../src/guestfs-actions.pod:458 ../src/guestfs-actions.pod:489 ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517 ../src/guestfs-actions.pod:531 ../src/guestfs-actions.pod:549 ../src/guestfs-actions.pod:5770
6298 msgid "(Added in 0.7)"
6299 msgstr ""
6300
6301 #. type: =head2
6302 #: ../src/guestfs-actions.pod:311
6303 msgid "guestfs_aug_defnode"
6304 msgstr ""
6305
6306 #. type: verbatim
6307 #: ../src/guestfs-actions.pod:313
6308 #, no-wrap
6309 msgid ""
6310 " struct guestfs_int_bool *\n"
6311 " guestfs_aug_defnode (guestfs_h *g,\n"
6312 "                      const char *name,\n"
6313 "                      const char *expr,\n"
6314 "                      const char *val);\n"
6315 "\n"
6316 msgstr ""
6317
6318 #. type: textblock
6319 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6320 msgid "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6321 msgstr ""
6322
6323 #. type: textblock
6324 #: ../src/guestfs-actions.pod:322
6325 msgid ""
6326 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6327 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6328 "containing that single node."
6329 msgstr ""
6330
6331 #. type: textblock
6332 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6333 msgid ""
6334 "On success this returns a pair containing the number of nodes in the "
6335 "nodeset, and a boolean flag if a node was created."
6336 msgstr ""
6337
6338 #. type: textblock
6339 #: ../src/guestfs-actions.pod:330
6340 msgid ""
6341 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6342 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6343 msgstr ""
6344
6345 #. type: =head2
6346 #: ../src/guestfs-actions.pod:336
6347 msgid "guestfs_aug_defvar"
6348 msgstr ""
6349
6350 #. type: verbatim
6351 #: ../src/guestfs-actions.pod:338
6352 #, no-wrap
6353 msgid ""
6354 " int\n"
6355 " guestfs_aug_defvar (guestfs_h *g,\n"
6356 "                     const char *name,\n"
6357 "                     const char *expr);\n"
6358 "\n"
6359 msgstr ""
6360
6361 #. type: textblock
6362 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6363 msgid ""
6364 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6365 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6366 msgstr ""
6367
6368 #. type: textblock
6369 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6370 msgid ""
6371 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6372 "evaluates to something which is not a nodeset."
6373 msgstr ""
6374
6375 #. type: =head2
6376 #: ../src/guestfs-actions.pod:354
6377 msgid "guestfs_aug_get"
6378 msgstr ""
6379
6380 #. type: verbatim
6381 #: ../src/guestfs-actions.pod:356
6382 #, no-wrap
6383 msgid ""
6384 " char *\n"
6385 " guestfs_aug_get (guestfs_h *g,\n"
6386 "                  const char *augpath);\n"
6387 "\n"
6388 msgstr ""
6389
6390 #. type: textblock
6391 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6392 msgid ""
6393 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6394 "node, the C<value> is returned."
6395 msgstr ""
6396
6397 #. type: textblock
6398 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:863 ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:941 ../src/guestfs-actions.pod:957 ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1190 ../src/guestfs-actions.pod:1207 ../src/guestfs-actions.pod:1226 ../src/guestfs-actions.pod:1360 ../src/guestfs-actions.pod:1548 ../src/guestfs-actions.pod:1660 ../src/guestfs-actions.pod:1823 ../src/guestfs-actions.pod:1840 ../src/guestfs-actions.pod:1907 ../src/guestfs-actions.pod:1943 ../src/guestfs-actions.pod:1964 ../src/guestfs-actions.pod:2134 ../src/guestfs-actions.pod:2326 ../src/guestfs-actions.pod:2530 ../src/guestfs-actions.pod:2620 ../src/guestfs-actions.pod:2724 ../src/guestfs-actions.pod:2743 ../src/guestfs-actions.pod:2957 ../src/guestfs-actions.pod:2985 ../src/guestfs-actions.pod:3006 ../src/guestfs-actions.pod:3040 ../src/guestfs-actions.pod:3099 ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3139 ../src/guestfs-actions.pod:3766 ../src/guestfs-actions.pod:4119 ../src/guestfs-actions.pod:4289 ../src/guestfs-actions.pod:4399 ../src/guestfs-actions.pod:5305 ../src/guestfs-actions.pod:5498 ../src/guestfs-actions.pod:5668 ../src/guestfs-actions.pod:5846 ../src/guestfs-actions.pod:5895 ../src/guestfs-actions.pod:6532 ../src/guestfs-actions.pod:6548 ../src/guestfs-actions.pod:6565 ../src/guestfs-actions.pod:6596 ../src/guestfs-actions.pod:7270 ../src/guestfs-actions.pod:7289 ../src/guestfs-actions.pod:7307 ../src/guestfs-actions.pod:7481 ../src/guestfs-actions.pod:7761
6399 msgid ""
6400 "This function returns a string, or NULL on error.  I<The caller must free "
6401 "the returned string after use>."
6402 msgstr ""
6403
6404 #. type: =head2
6405 #: ../src/guestfs-actions.pod:368
6406 msgid "guestfs_aug_init"
6407 msgstr ""
6408
6409 #. type: verbatim
6410 #: ../src/guestfs-actions.pod:370
6411 #, no-wrap
6412 msgid ""
6413 " int\n"
6414 " guestfs_aug_init (guestfs_h *g,\n"
6415 "                   const char *root,\n"
6416 "                   int flags);\n"
6417 "\n"
6418 msgstr ""
6419
6420 #. type: textblock
6421 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6422 msgid ""
6423 "Create a new Augeas handle for editing configuration files.  If there was "
6424 "any previous Augeas handle associated with this guestfs session, then it is "
6425 "closed."
6426 msgstr ""
6427
6428 #. type: textblock
6429 #: ../src/guestfs-actions.pod:379
6430 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6431 msgstr ""
6432
6433 #. type: textblock
6434 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6435 msgid "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6436 msgstr ""
6437
6438 #. type: textblock
6439 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6440 msgid ""
6441 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6442 "logical I<or> of the following integers:"
6443 msgstr ""
6444
6445 #. type: =item
6446 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6447 msgid "C<AUG_SAVE_BACKUP> = 1"
6448 msgstr ""
6449
6450 #. type: textblock
6451 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6452 msgid "Keep the original file with a C<.augsave> extension."
6453 msgstr ""
6454
6455 #. type: =item
6456 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6457 msgid "C<AUG_SAVE_NEWFILE> = 2"
6458 msgstr ""
6459
6460 #. type: textblock
6461 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6462 msgid ""
6463 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6464 "original.  Overrides C<AUG_SAVE_BACKUP>."
6465 msgstr ""
6466
6467 #. type: =item
6468 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6469 msgid "C<AUG_TYPE_CHECK> = 4"
6470 msgstr ""
6471
6472 #. type: textblock
6473 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6474 msgid "Typecheck lenses (can be expensive)."
6475 msgstr ""
6476
6477 #. type: =item
6478 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6479 msgid "C<AUG_NO_STDINC> = 8"
6480 msgstr ""
6481
6482 #. type: textblock
6483 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6484 msgid "Do not use standard load path for modules."
6485 msgstr ""
6486
6487 #. type: =item
6488 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6489 msgid "C<AUG_SAVE_NOOP> = 16"
6490 msgstr ""
6491
6492 #. type: textblock
6493 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6494 msgid "Make save a no-op, just record what would have been changed."
6495 msgstr ""
6496
6497 #. type: =item
6498 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6499 msgid "C<AUG_NO_LOAD> = 32"
6500 msgstr ""
6501
6502 #. type: textblock
6503 #: ../src/guestfs-actions.pod:414
6504 msgid "Do not load the tree in C<guestfs_aug_init>."
6505 msgstr ""
6506
6507 #. type: textblock
6508 #: ../src/guestfs-actions.pod:418
6509 msgid "To close the handle, you can call C<guestfs_aug_close>."
6510 msgstr ""
6511
6512 #. type: textblock
6513 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6514 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6515 msgstr ""
6516
6517 #. type: =head2
6518 #: ../src/guestfs-actions.pod:426
6519 msgid "guestfs_aug_insert"
6520 msgstr ""
6521
6522 #. type: verbatim
6523 #: ../src/guestfs-actions.pod:428
6524 #, no-wrap
6525 msgid ""
6526 " int\n"
6527 " guestfs_aug_insert (guestfs_h *g,\n"
6528 "                     const char *augpath,\n"
6529 "                     const char *label,\n"
6530 "                     int before);\n"
6531 "\n"
6532 msgstr ""
6533
6534 #. type: textblock
6535 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6536 msgid ""
6537 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6538 "or after C<path> (depending on the boolean flag C<before>)."
6539 msgstr ""
6540
6541 #. type: textblock
6542 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6543 msgid ""
6544 "C<path> must match exactly one existing node in the tree, and C<label> must "
6545 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6546 msgstr ""
6547
6548 #. type: =head2
6549 #: ../src/guestfs-actions.pod:446
6550 msgid "guestfs_aug_load"
6551 msgstr ""
6552
6553 #. type: verbatim
6554 #: ../src/guestfs-actions.pod:448
6555 #, no-wrap
6556 msgid ""
6557 " int\n"
6558 " guestfs_aug_load (guestfs_h *g);\n"
6559 "\n"
6560 msgstr ""
6561
6562 #. type: textblock
6563 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6564 msgid "Load files into the tree."
6565 msgstr ""
6566
6567 #. type: textblock
6568 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6569 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6570 msgstr ""
6571
6572 #. type: =head2
6573 #: ../src/guestfs-actions.pod:460
6574 msgid "guestfs_aug_ls"
6575 msgstr ""
6576
6577 #. type: verbatim
6578 #: ../src/guestfs-actions.pod:462
6579 #, no-wrap
6580 msgid ""
6581 " char **\n"
6582 " guestfs_aug_ls (guestfs_h *g,\n"
6583 "                 const char *augpath);\n"
6584 "\n"
6585 msgstr ""
6586
6587 #. type: textblock
6588 #: ../src/guestfs-actions.pod:466
6589 msgid ""
6590 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6591 "sorting the resulting nodes into alphabetical order."
6592 msgstr ""
6593
6594 #. type: textblock
6595 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485 ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1079 ../src/guestfs-actions.pod:1375 ../src/guestfs-actions.pod:1394 ../src/guestfs-actions.pod:1497 ../src/guestfs-actions.pod:1516 ../src/guestfs-actions.pod:1762 ../src/guestfs-actions.pod:2206 ../src/guestfs-actions.pod:2222 ../src/guestfs-actions.pod:2241 ../src/guestfs-actions.pod:2284 ../src/guestfs-actions.pod:2308 ../src/guestfs-actions.pod:2379 ../src/guestfs-actions.pod:2428 ../src/guestfs-actions.pod:2685 ../src/guestfs-actions.pod:3059 ../src/guestfs-actions.pod:3335 ../src/guestfs-actions.pod:3649 ../src/guestfs-actions.pod:3666 ../src/guestfs-actions.pod:3686 ../src/guestfs-actions.pod:3748 ../src/guestfs-actions.pod:3853 ../src/guestfs-actions.pod:4261 ../src/guestfs-actions.pod:5028 ../src/guestfs-actions.pod:5640 ../src/guestfs-actions.pod:5766 ../src/guestfs-actions.pod:5880 ../src/guestfs-actions.pod:6612 ../src/guestfs-actions.pod:6673 ../src/guestfs-actions.pod:6728 ../src/guestfs-actions.pod:6874 ../src/guestfs-actions.pod:6898 ../src/guestfs-actions.pod:7374 ../src/guestfs-actions.pod:7394 ../src/guestfs-actions.pod:7441 ../src/guestfs-actions.pod:7613 ../src/guestfs-actions.pod:7632 ../src/guestfs-actions.pod:7718 ../src/guestfs-actions.pod:7737 ../src/guestfs-actions.pod:7783 ../src/guestfs-actions.pod:7802
6596 msgid ""
6597 "This function returns a NULL-terminated array of strings (like "
6598 "L<environ(3)>), or NULL if there was an error.  I<The caller must free the "
6599 "strings and the array after use>."
6600 msgstr ""
6601
6602 #. type: textblock
6603 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1004 ../src/guestfs-actions.pod:1022 ../src/guestfs-actions.pod:1432 ../src/guestfs-actions.pod:3413 ../src/guestfs-actions.pod:3444 ../src/guestfs-actions.pod:4102 ../src/guestfs-actions.pod:4152 ../src/guestfs-actions.pod:4339 ../src/guestfs-actions.pod:4372 ../src/guestfs-actions.pod:4535 ../src/guestfs-actions.pod:5032 ../src/guestfs-actions.pod:5581 ../src/guestfs-actions.pod:5978 ../src/guestfs-actions.pod:5992 ../src/guestfs-actions.pod:6004 ../src/guestfs-actions.pod:6453 ../src/guestfs-actions.pod:7112 ../src/guestfs-actions.pod:7125 ../src/guestfs-actions.pod:7358 ../src/guestfs-actions.pod:7601
6604 msgid "(Added in 0.8)"
6605 msgstr ""
6606
6607 #. type: =head2
6608 #: ../src/guestfs-actions.pod:475
6609 msgid "guestfs_aug_match"
6610 msgstr ""
6611
6612 #. type: verbatim
6613 #: ../src/guestfs-actions.pod:477
6614 #, no-wrap
6615 msgid ""
6616 " char **\n"
6617 " guestfs_aug_match (guestfs_h *g,\n"
6618 "                    const char *augpath);\n"
6619 "\n"
6620 msgstr ""
6621
6622 #. type: textblock
6623 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
6624 msgid ""
6625 "Returns a list of paths which match the path expression C<path>.  The "
6626 "returned paths are sufficiently qualified so that they match exactly one "
6627 "node in the current tree."
6628 msgstr ""
6629
6630 #. type: =head2
6631 #: ../src/guestfs-actions.pod:491
6632 msgid "guestfs_aug_mv"
6633 msgstr ""
6634
6635 #. type: verbatim
6636 #: ../src/guestfs-actions.pod:493
6637 #, no-wrap
6638 msgid ""
6639 " int\n"
6640 " guestfs_aug_mv (guestfs_h *g,\n"
6641 "                 const char *src,\n"
6642 "                 const char *dest);\n"
6643 "\n"
6644 msgstr ""
6645
6646 #. type: textblock
6647 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
6648 msgid ""
6649 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6650 "C<dest> is overwritten if it exists."
6651 msgstr ""
6652
6653 #. type: =head2
6654 #: ../src/guestfs-actions.pod:505
6655 msgid "guestfs_aug_rm"
6656 msgstr ""
6657
6658 #. type: verbatim
6659 #: ../src/guestfs-actions.pod:507
6660 #, no-wrap
6661 msgid ""
6662 " int\n"
6663 " guestfs_aug_rm (guestfs_h *g,\n"
6664 "                 const char *augpath);\n"
6665 "\n"
6666 msgstr ""
6667
6668 #. type: textblock
6669 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
6670 msgid "Remove C<path> and all of its children."
6671 msgstr ""
6672
6673 #. type: textblock
6674 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
6675 msgid "On success this returns the number of entries which were removed."
6676 msgstr ""
6677
6678 #. type: =head2
6679 #: ../src/guestfs-actions.pod:519
6680 msgid "guestfs_aug_save"
6681 msgstr ""
6682
6683 #. type: verbatim
6684 #: ../src/guestfs-actions.pod:521
6685 #, no-wrap
6686 msgid ""
6687 " int\n"
6688 " guestfs_aug_save (guestfs_h *g);\n"
6689 "\n"
6690 msgstr ""
6691
6692 #. type: textblock
6693 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
6694 msgid "This writes all pending changes to disk."
6695 msgstr ""
6696
6697 #. type: textblock
6698 #: ../src/guestfs-actions.pod:526
6699 msgid ""
6700 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
6701 "are saved."
6702 msgstr ""
6703
6704 #. type: =head2
6705 #: ../src/guestfs-actions.pod:533
6706 msgid "guestfs_aug_set"
6707 msgstr ""
6708
6709 #. type: verbatim
6710 #: ../src/guestfs-actions.pod:535
6711 #, no-wrap
6712 msgid ""
6713 " int\n"
6714 " guestfs_aug_set (guestfs_h *g,\n"
6715 "                  const char *augpath,\n"
6716 "                  const char *val);\n"
6717 "\n"
6718 msgstr ""
6719
6720 #. type: textblock
6721 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
6722 msgid "Set the value associated with C<path> to C<val>."
6723 msgstr ""
6724
6725 #. type: textblock
6726 #: ../src/guestfs-actions.pod:542
6727 msgid ""
6728 "In the Augeas API, it is possible to clear a node by setting the value to "
6729 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
6730 "this call.  Instead you must use the C<guestfs_aug_clear> call."
6731 msgstr ""
6732
6733 #. type: =head2
6734 #: ../src/guestfs-actions.pod:551
6735 msgid "guestfs_available"
6736 msgstr ""
6737
6738 #. type: verbatim
6739 #: ../src/guestfs-actions.pod:553
6740 #, no-wrap
6741 msgid ""
6742 " int\n"
6743 " guestfs_available (guestfs_h *g,\n"
6744 "                    char *const *groups);\n"
6745 "\n"
6746 msgstr ""
6747
6748 #. type: textblock
6749 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
6750 msgid ""
6751 "This command is used to check the availability of some groups of "
6752 "functionality in the appliance, which not all builds of the libguestfs "
6753 "appliance will be able to provide."
6754 msgstr ""
6755
6756 #. type: textblock
6757 #: ../src/guestfs-actions.pod:561
6758 msgid ""
6759 "The libguestfs groups, and the functions that those groups correspond to, "
6760 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
6761 "runtime by calling C<guestfs_available_all_groups>."
6762 msgstr ""
6763
6764 #. type: textblock
6765 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
6766 msgid ""
6767 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", "
6768 "\"augeas\"]> would check for the availability of the Linux inotify functions "
6769 "and Augeas (configuration file editing) functions."
6770 msgstr ""
6771
6772 #. type: textblock
6773 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
6774 msgid "The command returns no error if I<all> requested groups are available."
6775 msgstr ""
6776
6777 #. type: textblock
6778 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
6779 msgid ""
6780 "It fails with an error if one or more of the requested groups is unavailable "
6781 "in the appliance."
6782 msgstr ""
6783
6784 #. type: textblock
6785 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
6786 msgid ""
6787 "If an unknown group name is included in the list of groups then an error is "
6788 "always returned."
6789 msgstr ""
6790
6791 #. type: textblock
6792 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
6793 msgid "I<Notes:>"
6794 msgstr ""
6795
6796 #. type: textblock
6797 #: ../src/guestfs-actions.pod:585
6798 msgid "You must call C<guestfs_launch> before calling this function."
6799 msgstr ""
6800
6801 #. type: textblock
6802 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
6803 msgid ""
6804 "The reason is because we don't know what groups are supported by the "
6805 "appliance/daemon until it is running and can be queried."
6806 msgstr ""
6807
6808 #. type: textblock
6809 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
6810 msgid ""
6811 "If a group of functions is available, this does not necessarily mean that "
6812 "they will work.  You still have to check for errors when calling individual "
6813 "API functions even if they are available."
6814 msgstr ""
6815
6816 #. type: textblock
6817 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
6818 msgid ""
6819 "It is usually the job of distro packagers to build complete functionality "
6820 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
6821 "with all requirements satisfied, will support everything."
6822 msgstr ""
6823
6824 #. type: textblock
6825 #: ../src/guestfs-actions.pod:607
6826 msgid ""
6827 "This call was added in version C<1.0.80>.  In previous versions of "
6828 "libguestfs all you could do would be to speculatively execute a command to "
6829 "find out if the daemon implemented it.  See also C<guestfs_version>."
6830 msgstr ""
6831
6832 #. type: textblock
6833 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1177
6834 msgid "(Added in 1.0.80)"
6835 msgstr ""
6836
6837 #. type: =head2
6838 #: ../src/guestfs-actions.pod:618
6839 msgid "guestfs_available_all_groups"
6840 msgstr ""
6841
6842 #. type: verbatim
6843 #: ../src/guestfs-actions.pod:620
6844 #, no-wrap
6845 msgid ""
6846 " char **\n"
6847 " guestfs_available_all_groups (guestfs_h *g);\n"
6848 "\n"
6849 msgstr ""
6850
6851 #. type: textblock
6852 #: ../src/guestfs-actions.pod:623
6853 msgid ""
6854 "This command returns a list of all optional groups that this daemon knows "
6855 "about.  Note this returns both supported and unsupported groups.  To find "
6856 "out which ones the daemon can actually support you have to call "
6857 "C<guestfs_available> on each member of the returned list."
6858 msgstr ""
6859
6860 #. type: textblock
6861 #: ../src/guestfs-actions.pod:629
6862 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
6863 msgstr ""
6864
6865 #. type: textblock
6866 #: ../src/guestfs-actions.pod:635
6867 msgid "(Added in 1.3.15)"
6868 msgstr ""
6869
6870 #. type: =head2
6871 #: ../src/guestfs-actions.pod:637
6872 msgid "guestfs_base64_in"
6873 msgstr ""
6874
6875 #. type: verbatim
6876 #: ../src/guestfs-actions.pod:639
6877 #, no-wrap
6878 msgid ""
6879 " int\n"
6880 " guestfs_base64_in (guestfs_h *g,\n"
6881 "                    const char *base64file,\n"
6882 "                    const char *filename);\n"
6883 "\n"
6884 msgstr ""
6885
6886 #. type: textblock
6887 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
6888 msgid "This command uploads base64-encoded data from C<base64file> to C<filename>."
6889 msgstr ""
6890
6891 #. type: textblock
6892 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
6893 msgid "(Added in 1.3.5)"
6894 msgstr ""
6895
6896 #. type: =head2
6897 #: ../src/guestfs-actions.pod:651
6898 msgid "guestfs_base64_out"
6899 msgstr ""
6900
6901 #. type: verbatim
6902 #: ../src/guestfs-actions.pod:653
6903 #, no-wrap
6904 msgid ""
6905 " int\n"
6906 " guestfs_base64_out (guestfs_h *g,\n"
6907 "                     const char *filename,\n"
6908 "                     const char *base64file);\n"
6909 "\n"
6910 msgstr ""
6911
6912 #. type: textblock
6913 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
6914 msgid ""
6915 "This command downloads the contents of C<filename>, writing it out to local "
6916 "file C<base64file> encoded as base64."
6917 msgstr ""
6918
6919 #. type: =head2
6920 #: ../src/guestfs-actions.pod:665
6921 msgid "guestfs_blockdev_flushbufs"
6922 msgstr ""
6923
6924 #. type: verbatim
6925 #: ../src/guestfs-actions.pod:667
6926 #, no-wrap
6927 msgid ""
6928 " int\n"
6929 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
6930 "                             const char *device);\n"
6931 "\n"
6932 msgstr ""
6933
6934 #. type: textblock
6935 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
6936 msgid "This tells the kernel to flush internal buffers associated with C<device>."
6937 msgstr ""
6938
6939 #. type: textblock
6940 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:691 ../src/guestfs-actions.pod:706 ../src/guestfs-actions.pod:722 ../src/guestfs-actions.pod:740 ../src/guestfs-actions.pod:759 ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:791 ../src/guestfs-actions.pod:805 ../src/guestfs-actions.pod:819 ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464 ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483 ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508 ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527 ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
6941 msgid "This uses the L<blockdev(8)> command."
6942 msgstr ""
6943
6944 #. type: textblock
6945 #: ../src/guestfs-actions.pod:678 ../src/guestfs-actions.pod:695 ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:726 ../src/guestfs-actions.pod:744 ../src/guestfs-actions.pod:763 ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:795 ../src/guestfs-actions.pod:809 ../src/guestfs-actions.pod:823
6946 msgid "(Added in 0.9.3)"
6947 msgstr ""
6948
6949 #. type: =head2
6950 #: ../src/guestfs-actions.pod:680
6951 msgid "guestfs_blockdev_getbsz"
6952 msgstr ""
6953
6954 #. type: verbatim
6955 #: ../src/guestfs-actions.pod:682
6956 #, no-wrap
6957 msgid ""
6958 " int\n"
6959 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
6960 "                          const char *device);\n"
6961 "\n"
6962 msgstr ""
6963
6964 #. type: textblock
6965 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
6966 msgid "This returns the block size of a device."
6967 msgstr ""
6968
6969 #. type: textblock
6970 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788 ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
6971 msgid ""
6972 "(Note this is different from both I<size in blocks> and I<filesystem block "
6973 "size>)."
6974 msgstr ""
6975
6976 #. type: =head2
6977 #: ../src/guestfs-actions.pod:697
6978 msgid "guestfs_blockdev_getro"
6979 msgstr ""
6980
6981 #. type: verbatim
6982 #: ../src/guestfs-actions.pod:699
6983 #, no-wrap
6984 msgid ""
6985 " int\n"
6986 " guestfs_blockdev_getro (guestfs_h *g,\n"
6987 "                         const char *device);\n"
6988 "\n"
6989 msgstr ""
6990
6991 #. type: textblock
6992 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
6993 msgid ""
6994 "Returns a boolean indicating if the block device is read-only (true if "
6995 "read-only, false if not)."
6996 msgstr ""
6997
6998 #. type: textblock
6999 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1415 ../src/guestfs-actions.pod:1430 ../src/guestfs-actions.pod:1919 ../src/guestfs-actions.pod:1930 ../src/guestfs-actions.pod:2002 ../src/guestfs-actions.pod:2057 ../src/guestfs-actions.pod:2072 ../src/guestfs-actions.pod:2097 ../src/guestfs-actions.pod:2120 ../src/guestfs-actions.pod:3156 ../src/guestfs-actions.pod:3172 ../src/guestfs-actions.pod:3190 ../src/guestfs-actions.pod:3352 ../src/guestfs-actions.pod:3366 ../src/guestfs-actions.pod:3381 ../src/guestfs-actions.pod:3395 ../src/guestfs-actions.pod:3411 ../src/guestfs-actions.pod:3426 ../src/guestfs-actions.pod:3442 ../src/guestfs-actions.pod:3456 ../src/guestfs-actions.pod:3469 ../src/guestfs-actions.pod:3483 ../src/guestfs-actions.pod:3498 ../src/guestfs-actions.pod:3513 ../src/guestfs-actions.pod:3526 ../src/guestfs-actions.pod:3540 ../src/guestfs-actions.pod:5269
7000 msgid "This function returns a C truth value on success or -1 on error."
7001 msgstr ""
7002
7003 #. type: =head2
7004 #: ../src/guestfs-actions.pod:712
7005 msgid "guestfs_blockdev_getsize64"
7006 msgstr ""
7007
7008 #. type: verbatim
7009 #: ../src/guestfs-actions.pod:714
7010 #, no-wrap
7011 msgid ""
7012 " int64_t\n"
7013 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7014 "                             const char *device);\n"
7015 "\n"
7016 msgstr ""
7017
7018 #. type: textblock
7019 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7020 msgid "This returns the size of the device in bytes."
7021 msgstr ""
7022
7023 #. type: textblock
7024 #: ../src/guestfs-actions.pod:720
7025 msgid "See also C<guestfs_blockdev_getsz>."
7026 msgstr ""
7027
7028 #. type: =head2
7029 #: ../src/guestfs-actions.pod:728
7030 msgid "guestfs_blockdev_getss"
7031 msgstr ""
7032
7033 #. type: verbatim
7034 #: ../src/guestfs-actions.pod:730
7035 #, no-wrap
7036 msgid ""
7037 " int\n"
7038 " guestfs_blockdev_getss (guestfs_h *g,\n"
7039 "                         const char *device);\n"
7040 "\n"
7041 msgstr ""
7042
7043 #. type: textblock
7044 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7045 msgid ""
7046 "This returns the size of sectors on a block device.  Usually 512, but can be "
7047 "larger for modern devices."
7048 msgstr ""
7049
7050 #. type: textblock
7051 #: ../src/guestfs-actions.pod:737
7052 msgid ""
7053 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7054 "that)."
7055 msgstr ""
7056
7057 #. type: =head2
7058 #: ../src/guestfs-actions.pod:746
7059 msgid "guestfs_blockdev_getsz"
7060 msgstr ""
7061
7062 #. type: verbatim
7063 #: ../src/guestfs-actions.pod:748
7064 #, no-wrap
7065 msgid ""
7066 " int64_t\n"
7067 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7068 "                         const char *device);\n"
7069 "\n"
7070 msgstr ""
7071
7072 #. type: textblock
7073 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7074 msgid ""
7075 "This returns the size of the device in units of 512-byte sectors (even if "
7076 "the sectorsize isn't 512 bytes ... weird)."
7077 msgstr ""
7078
7079 #. type: textblock
7080 #: ../src/guestfs-actions.pod:755
7081 msgid ""
7082 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7083 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7084 msgstr ""
7085
7086 #. type: =head2
7087 #: ../src/guestfs-actions.pod:765
7088 msgid "guestfs_blockdev_rereadpt"
7089 msgstr ""
7090
7091 #. type: verbatim
7092 #: ../src/guestfs-actions.pod:767
7093 #, no-wrap
7094 msgid ""
7095 " int\n"
7096 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7097 "                            const char *device);\n"
7098 "\n"
7099 msgstr ""
7100
7101 #. type: textblock
7102 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7103 msgid "Reread the partition table on C<device>."
7104 msgstr ""
7105
7106 #. type: =head2
7107 #: ../src/guestfs-actions.pod:779
7108 msgid "guestfs_blockdev_setbsz"
7109 msgstr ""
7110
7111 #. type: verbatim
7112 #: ../src/guestfs-actions.pod:781
7113 #, no-wrap
7114 msgid ""
7115 " int\n"
7116 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7117 "                          const char *device,\n"
7118 "                          int blocksize);\n"
7119 "\n"
7120 msgstr ""
7121
7122 #. type: textblock
7123 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7124 msgid "This sets the block size of a device."
7125 msgstr ""
7126
7127 #. type: =head2
7128 #: ../src/guestfs-actions.pod:797
7129 msgid "guestfs_blockdev_setro"
7130 msgstr ""
7131
7132 #. type: verbatim
7133 #: ../src/guestfs-actions.pod:799
7134 #, no-wrap
7135 msgid ""
7136 " int\n"
7137 " guestfs_blockdev_setro (guestfs_h *g,\n"
7138 "                         const char *device);\n"
7139 "\n"
7140 msgstr ""
7141
7142 #. type: textblock
7143 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7144 msgid "Sets the block device named C<device> to read-only."
7145 msgstr ""
7146
7147 #. type: =head2
7148 #: ../src/guestfs-actions.pod:811
7149 msgid "guestfs_blockdev_setrw"
7150 msgstr ""
7151
7152 #. type: verbatim
7153 #: ../src/guestfs-actions.pod:813
7154 #, no-wrap
7155 msgid ""
7156 " int\n"
7157 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7158 "                         const char *device);\n"
7159 "\n"
7160 msgstr ""
7161
7162 #. type: textblock
7163 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7164 msgid "Sets the block device named C<device> to read-write."
7165 msgstr ""
7166
7167 #. type: =head2
7168 #: ../src/guestfs-actions.pod:825
7169 msgid "guestfs_case_sensitive_path"
7170 msgstr ""
7171
7172 #. type: verbatim
7173 #: ../src/guestfs-actions.pod:827
7174 #, no-wrap
7175 msgid ""
7176 " char *\n"
7177 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7178 "                              const char *path);\n"
7179 "\n"
7180 msgstr ""
7181
7182 #. type: textblock
7183 #: ../src/guestfs-actions.pod:831 ../fish/guestfish-actions.pod:549
7184 msgid ""
7185 "This can be used to resolve case insensitive paths on a filesystem which is "
7186 "case sensitive.  The use case is to resolve paths which you have read from "
7187 "Windows configuration files or the Windows Registry, to the true path."
7188 msgstr ""
7189
7190 #. type: textblock
7191 #: ../src/guestfs-actions.pod:836 ../fish/guestfish-actions.pod:554
7192 msgid ""
7193 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7194 "(and probably others), which is that although the underlying filesystem is "
7195 "case-insensitive, the driver exports the filesystem to Linux as "
7196 "case-sensitive."
7197 msgstr ""
7198
7199 #. type: textblock
7200 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:559
7201 msgid ""
7202 "One consequence of this is that special directories such as C<c:\\windows> "
7203 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7204 "precise details of how they were created.  In Windows itself this would not "
7205 "be a problem."
7206 msgstr ""
7207
7208 #. type: textblock
7209 #: ../src/guestfs-actions.pod:847 ../fish/guestfish-actions.pod:565
7210 msgid ""
7211 "Bug or feature? You decide: "
7212 "L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>"
7213 msgstr ""
7214
7215 #. type: textblock
7216 #: ../src/guestfs-actions.pod:850 ../fish/guestfish-actions.pod:568
7217 msgid ""
7218 "This function resolves the true case of each element in the path and returns "
7219 "the case-sensitive path."
7220 msgstr ""
7221
7222 #. type: textblock
7223 #: ../src/guestfs-actions.pod:853
7224 msgid ""
7225 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return "
7226 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7227 "how the directories were originally created under Windows)."
7228 msgstr ""
7229
7230 #. type: textblock
7231 #: ../src/guestfs-actions.pod:858 ../fish/guestfish-actions.pod:576
7232 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7233 msgstr ""
7234
7235 #. type: textblock
7236 #: ../src/guestfs-actions.pod:861
7237 msgid "See also C<guestfs_realpath>."
7238 msgstr ""
7239
7240 #. type: textblock
7241 #: ../src/guestfs-actions.pod:866 ../src/guestfs-actions.pod:7292
7242 msgid "(Added in 1.0.75)"
7243 msgstr ""
7244
7245 #. type: =head2
7246 #: ../src/guestfs-actions.pod:868
7247 msgid "guestfs_cat"
7248 msgstr ""
7249
7250 #. type: verbatim
7251 #: ../src/guestfs-actions.pod:870
7252 #, no-wrap
7253 msgid ""
7254 " char *\n"
7255 " guestfs_cat (guestfs_h *g,\n"
7256 "              const char *path);\n"
7257 "\n"
7258 msgstr ""
7259
7260 #. type: textblock
7261 #: ../src/guestfs-actions.pod:874 ../src/guestfs-actions.pod:5756 ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3800
7262 msgid "Return the contents of the file named C<path>."
7263 msgstr ""
7264
7265 #. type: textblock
7266 #: ../src/guestfs-actions.pod:876
7267 msgid ""
7268 "Note that this function cannot correctly handle binary files (specifically, "
7269 "files containing C<\\0> character which is treated as end of string).  For "
7270 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7271 "functions which have a more complex interface."
7272 msgstr ""
7273
7274 #. type: textblock
7275 #: ../src/guestfs-actions.pod:884 ../src/guestfs-actions.pod:1063 ../src/guestfs-actions.pod:1083 ../src/guestfs-actions.pod:1379 ../src/guestfs-actions.pod:1398 ../src/guestfs-actions.pod:1501 ../src/guestfs-actions.pod:1520 ../src/guestfs-actions.pod:1766 ../src/guestfs-actions.pod:2226 ../src/guestfs-actions.pod:2245 ../src/guestfs-actions.pod:2288 ../src/guestfs-actions.pod:2312 ../src/guestfs-actions.pod:2329 ../src/guestfs-actions.pod:2358 ../src/guestfs-actions.pod:5538 ../src/guestfs-actions.pod:5564 ../src/guestfs-actions.pod:5695 ../src/guestfs-actions.pod:5721 ../src/guestfs-actions.pod:5745 ../src/guestfs-actions.pod:6677 ../src/guestfs-actions.pod:6732 ../src/guestfs-actions.pod:6878 ../src/guestfs-actions.pod:6902 ../src/guestfs-actions.pod:7565 ../src/guestfs-actions.pod:7591 ../src/guestfs-actions.pod:7617 ../src/guestfs-actions.pod:7636 ../src/guestfs-actions.pod:7722 ../src/guestfs-actions.pod:7741 ../src/guestfs-actions.pod:7787 ../src/guestfs-actions.pod:7806 ../fish/guestfish-actions.pod:592 ../fish/guestfish-actions.pod:727 ../fish/guestfish-actions.pod:739 ../fish/guestfish-actions.pod:915 ../fish/guestfish-actions.pod:925 ../fish/guestfish-actions.pod:992 ../fish/guestfish-actions.pod:1002 ../fish/guestfish-actions.pod:1194 ../fish/guestfish-actions.pod:1495 ../fish/guestfish-actions.pod:1505 ../fish/guestfish-actions.pod:1533 ../fish/guestfish-actions.pod:1548 ../fish/guestfish-actions.pod:1558 ../fish/guestfish-actions.pod:1577 ../fish/guestfish-actions.pod:3670 ../fish/guestfish-actions.pod:3685 ../fish/guestfish-actions.pod:3761 ../fish/guestfish-actions.pod:3778 ../fish/guestfish-actions.pod:3793 ../fish/guestfish-actions.pod:4447 ../fish/guestfish-actions.pod:4493 ../fish/guestfish-actions.pod:4578 ../fish/guestfish-actions.pod:4593 ../fish/guestfish-actions.pod:4997 ../fish/guestfish-actions.pod:5015 ../fish/guestfish-actions.pod:5032 ../fish/guestfish-actions.pod:5042 ../fish/guestfish-actions.pod:5091 ../fish/guestfish-actions.pod:5101 ../fish/guestfish-actions.pod:5130 ../fish/guestfish-actions.pod:5140
7276 msgid ""
7277 "Because of the message protocol, there is a transfer limit of somewhere "
7278 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7279 msgstr ""
7280
7281 #. type: textblock
7282 #: ../src/guestfs-actions.pod:887 ../src/guestfs-actions.pod:3670 ../src/guestfs-actions.pod:3752 ../src/guestfs-actions.pod:3769 ../src/guestfs-actions.pod:3857 ../src/guestfs-actions.pod:4265 ../src/guestfs-actions.pod:4279 ../src/guestfs-actions.pod:5644 ../src/guestfs-actions.pod:5658 ../src/guestfs-actions.pod:7445 ../src/guestfs-actions.pod:7459
7283 msgid "(Added in 0.4)"
7284 msgstr ""
7285
7286 #. type: =head2
7287 #: ../src/guestfs-actions.pod:889
7288 msgid "guestfs_checksum"
7289 msgstr ""
7290
7291 #. type: verbatim
7292 #: ../src/guestfs-actions.pod:891
7293 #, no-wrap
7294 msgid ""
7295 " char *\n"
7296 " guestfs_checksum (guestfs_h *g,\n"
7297 "                   const char *csumtype,\n"
7298 "                   const char *path);\n"
7299 "\n"
7300 msgstr ""
7301
7302 #. type: textblock
7303 #: ../src/guestfs-actions.pod:896 ../fish/guestfish-actions.pod:599
7304 msgid "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7305 msgstr ""
7306
7307 #. type: textblock
7308 #: ../src/guestfs-actions.pod:899 ../fish/guestfish-actions.pod:602
7309 msgid ""
7310 "The type of checksum to compute is given by the C<csumtype> parameter which "
7311 "must have one of the following values:"
7312 msgstr ""
7313
7314 #. type: =item
7315 #: ../src/guestfs-actions.pod:904 ../fish/guestfish-actions.pod:607
7316 msgid "C<crc>"
7317 msgstr ""
7318
7319 #. type: textblock
7320 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:609
7321 msgid ""
7322 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7323 "C<cksum> command."
7324 msgstr ""
7325
7326 #. type: =item
7327 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:612
7328 msgid "C<md5>"
7329 msgstr ""
7330
7331 #. type: textblock
7332 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:614
7333 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7334 msgstr ""
7335
7336 #. type: =item
7337 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:616
7338 msgid "C<sha1>"
7339 msgstr ""
7340
7341 #. type: textblock
7342 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:618
7343 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7344 msgstr ""
7345
7346 #. type: =item
7347 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:620
7348 msgid "C<sha224>"
7349 msgstr ""
7350
7351 #. type: textblock
7352 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:622
7353 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7354 msgstr ""
7355
7356 #. type: =item
7357 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:624
7358 msgid "C<sha256>"
7359 msgstr ""
7360
7361 #. type: textblock
7362 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:626
7363 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7364 msgstr ""
7365
7366 #. type: =item
7367 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:628
7368 msgid "C<sha384>"
7369 msgstr ""
7370
7371 #. type: textblock
7372 #: ../src/guestfs-actions.pod:927 ../fish/guestfish-actions.pod:630
7373 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7374 msgstr ""
7375
7376 #. type: =item
7377 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:632
7378 msgid "C<sha512>"
7379 msgstr ""
7380
7381 #. type: textblock
7382 #: ../src/guestfs-actions.pod:931 ../fish/guestfish-actions.pod:634
7383 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7384 msgstr ""
7385
7386 #. type: textblock
7387 #: ../src/guestfs-actions.pod:935 ../fish/guestfish-actions.pod:638
7388 msgid "The checksum is returned as a printable string."
7389 msgstr ""
7390
7391 #. type: textblock
7392 #: ../src/guestfs-actions.pod:937
7393 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7394 msgstr ""
7395
7396 #. type: textblock
7397 #: ../src/guestfs-actions.pod:939
7398 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7399 msgstr ""
7400
7401 #. type: textblock
7402 #: ../src/guestfs-actions.pod:944 ../src/guestfs-actions.pod:1252 ../src/guestfs-actions.pod:2088 ../src/guestfs-actions.pod:3368 ../src/guestfs-actions.pod:3397 ../src/guestfs-actions.pod:3458 ../src/guestfs-actions.pod:3485 ../src/guestfs-actions.pod:7148
7403 msgid "(Added in 1.0.2)"
7404 msgstr ""
7405
7406 #. type: =head2
7407 #: ../src/guestfs-actions.pod:946
7408 msgid "guestfs_checksum_device"
7409 msgstr ""
7410
7411 #. type: verbatim
7412 #: ../src/guestfs-actions.pod:948
7413 #, no-wrap
7414 msgid ""
7415 " char *\n"
7416 " guestfs_checksum_device (guestfs_h *g,\n"
7417 "                          const char *csumtype,\n"
7418 "                          const char *device);\n"
7419 "\n"
7420 msgstr ""
7421
7422 #. type: textblock
7423 #: ../src/guestfs-actions.pod:953
7424 msgid ""
7425 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7426 "device named C<device>.  For the types of checksums supported see the "
7427 "C<guestfs_checksum> command."
7428 msgstr ""
7429
7430 #. type: textblock
7431 #: ../src/guestfs-actions.pod:960 ../src/guestfs-actions.pod:5099 ../src/guestfs-actions.pod:5234 ../src/guestfs-actions.pod:5271 ../src/guestfs-actions.pod:5289 ../src/guestfs-actions.pod:5465 ../src/guestfs-actions.pod:7057 ../src/guestfs-actions.pod:7071 ../src/guestfs-actions.pod:7471
7432 msgid "(Added in 1.3.2)"
7433 msgstr ""
7434
7435 #. type: =head2
7436 #: ../src/guestfs-actions.pod:962
7437 msgid "guestfs_checksums_out"
7438 msgstr ""
7439
7440 #. type: verbatim
7441 #: ../src/guestfs-actions.pod:964
7442 #, no-wrap
7443 msgid ""
7444 " int\n"
7445 " guestfs_checksums_out (guestfs_h *g,\n"
7446 "                        const char *csumtype,\n"
7447 "                        const char *directory,\n"
7448 "                        const char *sumsfile);\n"
7449 "\n"
7450 msgstr ""
7451
7452 #. type: textblock
7453 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:656
7454 msgid ""
7455 "This command computes the checksums of all regular files in C<directory> and "
7456 "then emits a list of those checksums to the local output file C<sumsfile>."
7457 msgstr ""
7458
7459 #. type: textblock
7460 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:660
7461 msgid ""
7462 "This can be used for verifying the integrity of a virtual machine.  However "
7463 "to be properly secure you should pay attention to the output of the checksum "
7464 "command (it uses the ones from GNU coreutils).  In particular when the "
7465 "filename is not printable, coreutils uses a special backslash syntax.  For "
7466 "more information, see the GNU coreutils info file."
7467 msgstr ""
7468
7469 #. type: textblock
7470 #: ../src/guestfs-actions.pod:984
7471 msgid "(Added in 1.3.7)"
7472 msgstr ""
7473
7474 #. type: =head2
7475 #: ../src/guestfs-actions.pod:986
7476 msgid "guestfs_chmod"
7477 msgstr ""
7478
7479 #. type: verbatim
7480 #: ../src/guestfs-actions.pod:988
7481 #, no-wrap
7482 msgid ""
7483 " int\n"
7484 " guestfs_chmod (guestfs_h *g,\n"
7485 "                int mode,\n"
7486 "                const char *path);\n"
7487 "\n"
7488 msgstr ""
7489
7490 #. type: textblock
7491 #: ../src/guestfs-actions.pod:993 ../fish/guestfish-actions.pod:674
7492 msgid ""
7493 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7494 "supported."
7495 msgstr ""
7496
7497 #. type: textblock
7498 #: ../src/guestfs-actions.pod:996 ../fish/guestfish-actions.pod:677
7499 msgid ""
7500 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7501 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7502 "C<700>."
7503 msgstr ""
7504
7505 #. type: textblock
7506 #: ../src/guestfs-actions.pod:1000 ../src/guestfs-actions.pod:4516 ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:4744 ../src/guestfs-actions.pod:4763 ../fish/guestfish-actions.pod:681 ../fish/guestfish-actions.pod:3029 ../fish/guestfish-actions.pod:3168 ../fish/guestfish-actions.pod:3178 ../fish/guestfish-actions.pod:3188
7507 msgid "The mode actually set is affected by the umask."
7508 msgstr ""
7509
7510 #. type: =head2
7511 #: ../src/guestfs-actions.pod:1006
7512 msgid "guestfs_chown"
7513 msgstr ""
7514
7515 #. type: verbatim
7516 #: ../src/guestfs-actions.pod:1008
7517 #, no-wrap
7518 msgid ""
7519 " int\n"
7520 " guestfs_chown (guestfs_h *g,\n"
7521 "                int owner,\n"
7522 "                int group,\n"
7523 "                const char *path);\n"
7524 "\n"
7525 msgstr ""
7526
7527 #. type: textblock
7528 #: ../src/guestfs-actions.pod:1014 ../fish/guestfish-actions.pod:687
7529 msgid "Change the file owner to C<owner> and group to C<group>."
7530 msgstr ""
7531
7532 #. type: textblock
7533 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:3587 ../fish/guestfish-actions.pod:689 ../fish/guestfish-actions.pod:2464
7534 msgid ""
7535 "Only numeric uid and gid are supported.  If you want to use names, you will "
7536 "need to locate and parse the password file yourself (Augeas support makes "
7537 "this relatively easy)."
7538 msgstr ""
7539
7540 #. type: =head2
7541 #: ../src/guestfs-actions.pod:1024
7542 msgid "guestfs_command"
7543 msgstr ""
7544
7545 #. type: verbatim
7546 #: ../src/guestfs-actions.pod:1026
7547 #, no-wrap
7548 msgid ""
7549 " char *\n"
7550 " guestfs_command (guestfs_h *g,\n"
7551 "                  char *const *arguments);\n"
7552 "\n"
7553 msgstr ""
7554
7555 #. type: textblock
7556 #: ../src/guestfs-actions.pod:1030 ../fish/guestfish-actions.pod:697
7557 msgid ""
7558 "This call runs a command from the guest filesystem.  The filesystem must be "
7559 "mounted, and must contain a compatible operating system (ie. something "
7560 "Linux, with the same or compatible processor architecture)."
7561 msgstr ""
7562
7563 #. type: textblock
7564 #: ../src/guestfs-actions.pod:1035
7565 msgid ""
7566 "The single parameter is an argv-style list of arguments.  The first element "
7567 "is the name of the program to run.  Subsequent elements are parameters.  The "
7568 "list must be non-empty (ie. must contain a program name).  Note that the "
7569 "command runs directly, and is I<not> invoked via the shell (see "
7570 "C<guestfs_sh>)."
7571 msgstr ""
7572
7573 #. type: textblock
7574 #: ../src/guestfs-actions.pod:1042 ../fish/guestfish-actions.pod:709
7575 msgid "The return value is anything printed to I<stdout> by the command."
7576 msgstr ""
7577
7578 #. type: textblock
7579 #: ../src/guestfs-actions.pod:1045 ../fish/guestfish-actions.pod:712
7580 msgid ""
7581 "If the command returns a non-zero exit status, then this function returns an "
7582 "error message.  The error message string is the content of I<stderr> from "
7583 "the command."
7584 msgstr ""
7585
7586 #. type: textblock
7587 #: ../src/guestfs-actions.pod:1049 ../fish/guestfish-actions.pod:716
7588 msgid ""
7589 "The C<$PATH> environment variable will contain at least C</usr/bin> and "
7590 "C</bin>.  If you require a program from another location, you should provide "
7591 "the full path in the first parameter."
7592 msgstr ""
7593
7594 #. type: textblock
7595 #: ../src/guestfs-actions.pod:1054 ../fish/guestfish-actions.pod:721
7596 msgid ""
7597 "Shared libraries and data files required by the program must be available on "
7598 "filesystems which are mounted in the correct places.  It is the caller's "
7599 "responsibility to ensure all filesystems that are needed are mounted at the "
7600 "right locations."
7601 msgstr ""
7602
7603 #. type: textblock
7604 #: ../src/guestfs-actions.pod:1066 ../src/guestfs-actions.pod:1086 ../src/guestfs-actions.pod:1551
7605 msgid "(Added in 0.9.1)"
7606 msgstr ""
7607
7608 #. type: =head2
7609 #: ../src/guestfs-actions.pod:1068
7610 msgid "guestfs_command_lines"
7611 msgstr ""
7612
7613 #. type: verbatim
7614 #: ../src/guestfs-actions.pod:1070
7615 #, no-wrap
7616 msgid ""
7617 " char **\n"
7618 " guestfs_command_lines (guestfs_h *g,\n"
7619 "                        char *const *arguments);\n"
7620 "\n"
7621 msgstr ""
7622
7623 #. type: textblock
7624 #: ../src/guestfs-actions.pod:1074
7625 msgid ""
7626 "This is the same as C<guestfs_command>, but splits the result into a list of "
7627 "lines."
7628 msgstr ""
7629
7630 #. type: textblock
7631 #: ../src/guestfs-actions.pod:1077
7632 msgid "See also: C<guestfs_sh_lines>"
7633 msgstr ""
7634
7635 #. type: =head2
7636 #: ../src/guestfs-actions.pod:1088
7637 msgid "guestfs_config"
7638 msgstr ""
7639
7640 #. type: verbatim
7641 #: ../src/guestfs-actions.pod:1090
7642 #, no-wrap
7643 msgid ""
7644 " int\n"
7645 " guestfs_config (guestfs_h *g,\n"
7646 "                 const char *qemuparam,\n"
7647 "                 const char *qemuvalue);\n"
7648 "\n"
7649 msgstr ""
7650
7651 #. type: textblock
7652 #: ../src/guestfs-actions.pod:1095 ../fish/guestfish-actions.pod:746
7653 msgid ""
7654 "This can be used to add arbitrary qemu command line parameters of the form "
7655 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
7656 "setting some parameters which would interfere with parameters that we use."
7657 msgstr ""
7658
7659 #. type: textblock
7660 #: ../src/guestfs-actions.pod:1100 ../fish/guestfish-actions.pod:751
7661 msgid "The first character of C<param> string must be a C<-> (dash)."
7662 msgstr ""
7663
7664 #. type: textblock
7665 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:753
7666 msgid "C<value> can be NULL."
7667 msgstr ""
7668
7669 #. type: =head2
7670 #: ../src/guestfs-actions.pod:1108
7671 msgid "guestfs_copy_size"
7672 msgstr ""
7673
7674 #. type: verbatim
7675 #: ../src/guestfs-actions.pod:1110
7676 #, no-wrap
7677 msgid ""
7678 " int\n"
7679 " guestfs_copy_size (guestfs_h *g,\n"
7680 "                    const char *src,\n"
7681 "                    const char *dest,\n"
7682 "                    int64_t size);\n"
7683 "\n"
7684 msgstr ""
7685
7686 #. type: textblock
7687 #: ../src/guestfs-actions.pod:1116 ../fish/guestfish-actions.pod:759
7688 msgid ""
7689 "This command copies exactly C<size> bytes from one source device or file "
7690 "C<src> to another destination device or file C<dest>."
7691 msgstr ""
7692
7693 #. type: textblock
7694 #: ../src/guestfs-actions.pod:1119 ../fish/guestfish-actions.pod:762
7695 msgid ""
7696 "Note this will fail if the source is too short or if the destination is not "
7697 "large enough."
7698 msgstr ""
7699
7700 #. type: textblock
7701 #: ../src/guestfs-actions.pod:1124 ../src/guestfs-actions.pod:1247 ../src/guestfs-actions.pod:1278 ../src/guestfs-actions.pod:1323 ../src/guestfs-actions.pod:1700 ../src/guestfs-actions.pod:1722 ../src/guestfs-actions.pod:3568 ../src/guestfs-actions.pod:7143 ../src/guestfs-actions.pod:7177 ../src/guestfs-actions.pod:7658 ../src/guestfs-actions.pod:7677
7702 msgid ""
7703 "This long-running command can generate progress notification messages so "
7704 "that the caller can display a progress bar or indicator.  To receive these "
7705 "messages, the caller must register a progress event callback.  See "
7706 "L<guestfs(3)/GUESTFS_EVENT_PROGRESS>."
7707 msgstr ""
7708
7709 #. type: textblock
7710 #: ../src/guestfs-actions.pod:1129 ../src/guestfs-actions.pod:4292 ../src/guestfs-actions.pod:5671 ../src/guestfs-actions.pod:7378 ../src/guestfs-actions.pod:7398 ../src/guestfs-actions.pod:7484
7711 msgid "(Added in 1.0.87)"
7712 msgstr ""
7713
7714 #. type: =head2
7715 #: ../src/guestfs-actions.pod:1131
7716 msgid "guestfs_cp"
7717 msgstr ""
7718
7719 #. type: verbatim
7720 #: ../src/guestfs-actions.pod:1133
7721 #, no-wrap
7722 msgid ""
7723 " int\n"
7724 " guestfs_cp (guestfs_h *g,\n"
7725 "             const char *src,\n"
7726 "             const char *dest);\n"
7727 "\n"
7728 msgstr ""
7729
7730 #. type: textblock
7731 #: ../src/guestfs-actions.pod:1138 ../fish/guestfish-actions.pod:769
7732 msgid ""
7733 "This copies a file from C<src> to C<dest> where C<dest> is either a "
7734 "destination filename or destination directory."
7735 msgstr ""
7736
7737 #. type: textblock
7738 #: ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1157 ../src/guestfs-actions.pod:1229 ../src/guestfs-actions.pod:1303 ../src/guestfs-actions.pod:1417 ../src/guestfs-actions.pod:5046 ../src/guestfs-actions.pod:5515
7739 msgid "(Added in 1.0.18)"
7740 msgstr ""
7741
7742 #. type: =head2
7743 #: ../src/guestfs-actions.pod:1145
7744 msgid "guestfs_cp_a"
7745 msgstr ""
7746
7747 #. type: verbatim
7748 #: ../src/guestfs-actions.pod:1147
7749 #, no-wrap
7750 msgid ""
7751 " int\n"
7752 " guestfs_cp_a (guestfs_h *g,\n"
7753 "               const char *src,\n"
7754 "               const char *dest);\n"
7755 "\n"
7756 msgstr ""
7757
7758 #. type: textblock
7759 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:776
7760 msgid ""
7761 "This copies a file or directory from C<src> to C<dest> recursively using the "
7762 "C<cp -a> command."
7763 msgstr ""
7764
7765 #. type: =head2
7766 #: ../src/guestfs-actions.pod:1159
7767 msgid "guestfs_dd"
7768 msgstr ""
7769
7770 #. type: verbatim
7771 #: ../src/guestfs-actions.pod:1161
7772 #, no-wrap
7773 msgid ""
7774 " int\n"
7775 " guestfs_dd (guestfs_h *g,\n"
7776 "             const char *src,\n"
7777 "             const char *dest);\n"
7778 "\n"
7779 msgstr ""
7780
7781 #. type: textblock
7782 #: ../src/guestfs-actions.pod:1166 ../fish/guestfish-actions.pod:783
7783 msgid ""
7784 "This command copies from one source device or file C<src> to another "
7785 "destination device or file C<dest>.  Normally you would use this to copy to "
7786 "or from a device or partition, for example to duplicate a filesystem."
7787 msgstr ""
7788
7789 #. type: textblock
7790 #: ../src/guestfs-actions.pod:1171
7791 msgid ""
7792 "If the destination is a device, it must be as large or larger than the "
7793 "source file or device, otherwise the copy will fail.  This command cannot do "
7794 "partial copies (see C<guestfs_copy_size>)."
7795 msgstr ""
7796
7797 #. type: =head2
7798 #: ../src/guestfs-actions.pod:1179
7799 msgid "guestfs_df"
7800 msgstr ""
7801
7802 #. type: verbatim
7803 #: ../src/guestfs-actions.pod:1181
7804 #, no-wrap
7805 msgid ""
7806 " char *\n"
7807 " guestfs_df (guestfs_h *g);\n"
7808 "\n"
7809 msgstr ""
7810
7811 #. type: textblock
7812 #: ../src/guestfs-actions.pod:1184 ../fish/guestfish-actions.pod:796
7813 msgid "This command runs the C<df> command to report disk space used."
7814 msgstr ""
7815
7816 #. type: textblock
7817 #: ../src/guestfs-actions.pod:1186 ../src/guestfs-actions.pod:1203
7818 msgid ""
7819 "This command is mostly useful for interactive sessions.  It is I<not> "
7820 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
7821 "from programs."
7822 msgstr ""
7823
7824 #. type: textblock
7825 #: ../src/guestfs-actions.pod:1193 ../src/guestfs-actions.pod:1210 ../src/guestfs-actions.pod:1328 ../src/guestfs-actions.pod:2291 ../src/guestfs-actions.pod:2315 ../src/guestfs-actions.pod:2383 ../src/guestfs-actions.pod:4402 ../src/guestfs-actions.pod:4946 ../src/guestfs-actions.pod:6881 ../src/guestfs-actions.pod:6905 ../src/guestfs-actions.pod:7524 ../src/guestfs-actions.pod:7537 ../src/guestfs-actions.pod:7550
7826 msgid "(Added in 1.0.54)"
7827 msgstr ""
7828
7829 #. type: =head2
7830 #: ../src/guestfs-actions.pod:1195
7831 msgid "guestfs_df_h"
7832 msgstr ""
7833
7834 #. type: verbatim
7835 #: ../src/guestfs-actions.pod:1197
7836 #, no-wrap
7837 msgid ""
7838 " char *\n"
7839 " guestfs_df_h (guestfs_h *g);\n"
7840 "\n"
7841 msgstr ""
7842
7843 #. type: textblock
7844 #: ../src/guestfs-actions.pod:1200 ../fish/guestfish-actions.pod:806
7845 msgid ""
7846 "This command runs the C<df -h> command to report disk space used in "
7847 "human-readable format."
7848 msgstr ""
7849
7850 #. type: =head2
7851 #: ../src/guestfs-actions.pod:1212
7852 msgid "guestfs_dmesg"
7853 msgstr ""
7854
7855 #. type: verbatim
7856 #: ../src/guestfs-actions.pod:1214
7857 #, no-wrap
7858 msgid ""
7859 " char *\n"
7860 " guestfs_dmesg (guestfs_h *g);\n"
7861 "\n"
7862 msgstr ""
7863
7864 #. type: textblock
7865 #: ../src/guestfs-actions.pod:1217 ../fish/guestfish-actions.pod:817
7866 msgid ""
7867 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
7868 "This is sometimes useful for extended debugging of problems."
7869 msgstr ""
7870
7871 #. type: textblock
7872 #: ../src/guestfs-actions.pod:1221
7873 msgid ""
7874 "Another way to get the same information is to enable verbose messages with "
7875 "C<guestfs_set_verbose> or by setting the environment variable "
7876 "C<LIBGUESTFS_DEBUG=1> before running the program."
7877 msgstr ""
7878
7879 #. type: =head2
7880 #: ../src/guestfs-actions.pod:1231
7881 msgid "guestfs_download"
7882 msgstr ""
7883
7884 #. type: verbatim
7885 #: ../src/guestfs-actions.pod:1233
7886 #, no-wrap
7887 msgid ""
7888 " int\n"
7889 " guestfs_download (guestfs_h *g,\n"
7890 "                   const char *remotefilename,\n"
7891 "                   const char *filename);\n"
7892 "\n"
7893 msgstr ""
7894
7895 #. type: textblock
7896 #: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:1263 ../fish/guestfish-actions.pod:830 ../fish/guestfish-actions.pod:843
7897 msgid ""
7898 "Download file C<remotefilename> and save it as C<filename> on the local "
7899 "machine."
7900 msgstr ""
7901
7902 #. type: textblock
7903 #: ../src/guestfs-actions.pod:1241 ../src/guestfs-actions.pod:7137 ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4751
7904 msgid "C<filename> can also be a named pipe."
7905 msgstr ""
7906
7907 #. type: textblock
7908 #: ../src/guestfs-actions.pod:1243
7909 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
7910 msgstr ""
7911
7912 #. type: =head2
7913 #: ../src/guestfs-actions.pod:1254
7914 msgid "guestfs_download_offset"
7915 msgstr ""
7916
7917 #. type: verbatim
7918 #: ../src/guestfs-actions.pod:1256
7919 #, no-wrap
7920 msgid ""
7921 " int\n"
7922 " guestfs_download_offset (guestfs_h *g,\n"
7923 "                          const char *remotefilename,\n"
7924 "                          const char *filename,\n"
7925 "                          int64_t offset,\n"
7926 "                          int64_t size);\n"
7927 "\n"
7928 msgstr ""
7929
7930 #. type: textblock
7931 #: ../src/guestfs-actions.pod:1266 ../fish/guestfish-actions.pod:846
7932 msgid ""
7933 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
7934 "region must be within the file or device)."
7935 msgstr ""
7936
7937 #. type: textblock
7938 #: ../src/guestfs-actions.pod:1269
7939 msgid ""
7940 "Note that there is no limit on the amount of data that can be downloaded "
7941 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
7942 "full amount unless an error occurs."
7943 msgstr ""
7944
7945 #. type: textblock
7946 #: ../src/guestfs-actions.pod:1274
7947 msgid "See also C<guestfs_download>, C<guestfs_pread>."
7948 msgstr ""
7949
7950 #. type: textblock
7951 #: ../src/guestfs-actions.pod:1283 ../src/guestfs-actions.pod:7182
7952 msgid "(Added in 1.5.17)"
7953 msgstr ""
7954
7955 #. type: =head2
7956 #: ../src/guestfs-actions.pod:1285
7957 msgid "guestfs_drop_caches"
7958 msgstr ""
7959
7960 #. type: verbatim
7961 #: ../src/guestfs-actions.pod:1287
7962 #, no-wrap
7963 msgid ""
7964 " int\n"
7965 " guestfs_drop_caches (guestfs_h *g,\n"
7966 "                      int whattodrop);\n"
7967 "\n"
7968 msgstr ""
7969
7970 #. type: textblock
7971 #: ../src/guestfs-actions.pod:1291 ../fish/guestfish-actions.pod:862
7972 msgid ""
7973 "This instructs the guest kernel to drop its page cache, and/or dentries and "
7974 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
7975 "to drop, see L<http://linux-mm.org/Drop_Caches>"
7976 msgstr ""
7977
7978 #. type: textblock
7979 #: ../src/guestfs-actions.pod:1296 ../fish/guestfish-actions.pod:867
7980 msgid "Setting C<whattodrop> to 3 should drop everything."
7981 msgstr ""
7982
7983 #. type: textblock
7984 #: ../src/guestfs-actions.pod:1298 ../fish/guestfish-actions.pod:869
7985 msgid ""
7986 "This automatically calls L<sync(2)> before the operation, so that the "
7987 "maximum guest memory is freed."
7988 msgstr ""
7989
7990 #. type: =head2
7991 #: ../src/guestfs-actions.pod:1305
7992 msgid "guestfs_du"
7993 msgstr ""
7994
7995 #. type: verbatim
7996 #: ../src/guestfs-actions.pod:1307
7997 #, no-wrap
7998 msgid ""
7999 " int64_t\n"
8000 " guestfs_du (guestfs_h *g,\n"
8001 "             const char *path);\n"
8002 "\n"
8003 msgstr ""
8004
8005 #. type: textblock
8006 #: ../src/guestfs-actions.pod:1311 ../fish/guestfish-actions.pod:876
8007 msgid ""
8008 "This command runs the C<du -s> command to estimate file space usage for "
8009 "C<path>."
8010 msgstr ""
8011
8012 #. type: textblock
8013 #: ../src/guestfs-actions.pod:1314 ../fish/guestfish-actions.pod:879
8014 msgid ""
8015 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8016 "estimate includes the contents of the directory and all subdirectories "
8017 "(recursively)."
8018 msgstr ""
8019
8020 #. type: textblock
8021 #: ../src/guestfs-actions.pod:1318 ../fish/guestfish-actions.pod:883
8022 msgid "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8023 msgstr ""
8024
8025 #. type: =head2
8026 #: ../src/guestfs-actions.pod:1330
8027 msgid "guestfs_e2fsck_f"
8028 msgstr ""
8029
8030 #. type: verbatim
8031 #: ../src/guestfs-actions.pod:1332
8032 #, no-wrap
8033 msgid ""
8034 " int\n"
8035 " guestfs_e2fsck_f (guestfs_h *g,\n"
8036 "                   const char *device);\n"
8037 "\n"
8038 msgstr ""
8039
8040 #. type: textblock
8041 #: ../src/guestfs-actions.pod:1336 ../fish/guestfish-actions.pod:890
8042 msgid ""
8043 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8044 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8045 "clean (I<-f>)."
8046 msgstr ""
8047
8048 #. type: textblock
8049 #: ../src/guestfs-actions.pod:1340
8050 msgid ""
8051 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8052 "Normally you should use C<guestfs_fsck>."
8053 msgstr ""
8054
8055 #. type: textblock
8056 #: ../src/guestfs-actions.pod:1345
8057 msgid "(Added in 1.0.29)"
8058 msgstr ""
8059
8060 #. type: =head2
8061 #: ../src/guestfs-actions.pod:1347
8062 msgid "guestfs_echo_daemon"
8063 msgstr ""
8064
8065 #. type: verbatim
8066 #: ../src/guestfs-actions.pod:1349
8067 #, no-wrap
8068 msgid ""
8069 " char *\n"
8070 " guestfs_echo_daemon (guestfs_h *g,\n"
8071 "                      char *const *words);\n"
8072 "\n"
8073 msgstr ""
8074
8075 #. type: textblock
8076 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:901
8077 msgid ""
8078 "This command concatenates the list of C<words> passed with single spaces "
8079 "between them and returns the resulting string."
8080 msgstr ""
8081
8082 #. type: textblock
8083 #: ../src/guestfs-actions.pod:1356 ../fish/guestfish-actions.pod:904
8084 msgid "You can use this command to test the connection through to the daemon."
8085 msgstr ""
8086
8087 #. type: textblock
8088 #: ../src/guestfs-actions.pod:1358
8089 msgid "See also C<guestfs_ping_daemon>."
8090 msgstr ""
8091
8092 #. type: textblock
8093 #: ../src/guestfs-actions.pod:1363 ../src/guestfs-actions.pod:2099 ../src/guestfs-actions.pod:6353
8094 msgid "(Added in 1.0.69)"
8095 msgstr ""
8096
8097 #. type: =head2
8098 #: ../src/guestfs-actions.pod:1365
8099 msgid "guestfs_egrep"
8100 msgstr ""
8101
8102 #. type: verbatim
8103 #: ../src/guestfs-actions.pod:1367
8104 #, no-wrap
8105 msgid ""
8106 " char **\n"
8107 " guestfs_egrep (guestfs_h *g,\n"
8108 "                const char *regex,\n"
8109 "                const char *path);\n"
8110 "\n"
8111 msgstr ""
8112
8113 #. type: textblock
8114 #: ../src/guestfs-actions.pod:1372 ../fish/guestfish-actions.pod:912
8115 msgid "This calls the external C<egrep> program and returns the matching lines."
8116 msgstr ""
8117
8118 #. type: textblock
8119 #: ../src/guestfs-actions.pod:1382 ../src/guestfs-actions.pod:1401 ../src/guestfs-actions.pod:1458 ../src/guestfs-actions.pod:1504 ../src/guestfs-actions.pod:1523 ../src/guestfs-actions.pod:2229 ../src/guestfs-actions.pod:2248 ../src/guestfs-actions.pod:2404 ../src/guestfs-actions.pod:2417 ../src/guestfs-actions.pod:2432 ../src/guestfs-actions.pod:2478 ../src/guestfs-actions.pod:2500 ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:3782 ../src/guestfs-actions.pod:3796 ../src/guestfs-actions.pod:3809 ../src/guestfs-actions.pod:3823 ../src/guestfs-actions.pod:4824 ../src/guestfs-actions.pod:5849 ../src/guestfs-actions.pod:5898 ../src/guestfs-actions.pod:6749 ../src/guestfs-actions.pod:6761 ../src/guestfs-actions.pod:6774 ../src/guestfs-actions.pod:6787 ../src/guestfs-actions.pod:6809 ../src/guestfs-actions.pod:6822 ../src/guestfs-actions.pod:6835 ../src/guestfs-actions.pod:6848 ../src/guestfs-actions.pod:7620 ../src/guestfs-actions.pod:7639 ../src/guestfs-actions.pod:7725 ../src/guestfs-actions.pod:7744 ../src/guestfs-actions.pod:7790 ../src/guestfs-actions.pod:7809
8120 msgid "(Added in 1.0.66)"
8121 msgstr ""
8122
8123 #. type: =head2
8124 #: ../src/guestfs-actions.pod:1384
8125 msgid "guestfs_egrepi"
8126 msgstr ""
8127
8128 #. type: verbatim
8129 #: ../src/guestfs-actions.pod:1386
8130 #, no-wrap
8131 msgid ""
8132 " char **\n"
8133 " guestfs_egrepi (guestfs_h *g,\n"
8134 "                 const char *regex,\n"
8135 "                 const char *path);\n"
8136 "\n"
8137 msgstr ""
8138
8139 #. type: textblock
8140 #: ../src/guestfs-actions.pod:1391 ../fish/guestfish-actions.pod:922
8141 msgid "This calls the external C<egrep -i> program and returns the matching lines."
8142 msgstr ""
8143
8144 #. type: =head2
8145 #: ../src/guestfs-actions.pod:1403
8146 msgid "guestfs_equal"
8147 msgstr ""
8148
8149 #. type: verbatim
8150 #: ../src/guestfs-actions.pod:1405
8151 #, no-wrap
8152 msgid ""
8153 " int\n"
8154 " guestfs_equal (guestfs_h *g,\n"
8155 "                const char *file1,\n"
8156 "                const char *file2);\n"
8157 "\n"
8158 msgstr ""
8159
8160 #. type: textblock
8161 #: ../src/guestfs-actions.pod:1410 ../fish/guestfish-actions.pod:932
8162 msgid ""
8163 "This compares the two files C<file1> and C<file2> and returns true if their "
8164 "content is exactly equal, or false otherwise."
8165 msgstr ""
8166
8167 #. type: textblock
8168 #: ../src/guestfs-actions.pod:1413 ../fish/guestfish-actions.pod:935
8169 msgid "The external L<cmp(1)> program is used for the comparison."
8170 msgstr ""
8171
8172 #. type: =head2
8173 #: ../src/guestfs-actions.pod:1419
8174 msgid "guestfs_exists"
8175 msgstr ""
8176
8177 #. type: verbatim
8178 #: ../src/guestfs-actions.pod:1421
8179 #, no-wrap
8180 msgid ""
8181 " int\n"
8182 " guestfs_exists (guestfs_h *g,\n"
8183 "                 const char *path);\n"
8184 "\n"
8185 msgstr ""
8186
8187 #. type: textblock
8188 #: ../src/guestfs-actions.pod:1425 ../fish/guestfish-actions.pod:941
8189 msgid ""
8190 "This returns C<true> if and only if there is a file, directory (or anything) "
8191 "with the given C<path> name."
8192 msgstr ""
8193
8194 #. type: textblock
8195 #: ../src/guestfs-actions.pod:1428
8196 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8197 msgstr ""
8198
8199 #. type: =head2
8200 #: ../src/guestfs-actions.pod:1434
8201 msgid "guestfs_fallocate"
8202 msgstr ""
8203
8204 #. type: verbatim
8205 #: ../src/guestfs-actions.pod:1436
8206 #, no-wrap
8207 msgid ""
8208 " int\n"
8209 " guestfs_fallocate (guestfs_h *g,\n"
8210 "                    const char *path,\n"
8211 "                    int len);\n"
8212 "\n"
8213 msgstr ""
8214
8215 #. type: textblock
8216 #: ../src/guestfs-actions.pod:1441 ../src/guestfs-actions.pod:1467 ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:969
8217 msgid ""
8218 "This command preallocates a file (containing zero bytes) named C<path> of "
8219 "size C<len> bytes.  If the file exists already, it is overwritten."
8220 msgstr ""
8221
8222 #. type: textblock
8223 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:954
8224 msgid ""
8225 "Do not confuse this with the guestfish-specific C<alloc> command which "
8226 "allocates a file in the host and attaches it as a device."
8227 msgstr ""
8228
8229 #. type: textblock
8230 #: ../src/guestfs-actions.pod:1451 ../fish/guestfish-actions.pod:958
8231 msgid ""
8232 "This function is deprecated.  In new code, use the C<fallocate64> call "
8233 "instead."
8234 msgstr ""
8235
8236 #. type: =head2
8237 #: ../src/guestfs-actions.pod:1460
8238 msgid "guestfs_fallocate64"
8239 msgstr ""
8240
8241 #. type: verbatim
8242 #: ../src/guestfs-actions.pod:1462
8243 #, no-wrap
8244 msgid ""
8245 " int\n"
8246 " guestfs_fallocate64 (guestfs_h *g,\n"
8247 "                      const char *path,\n"
8248 "                      int64_t len);\n"
8249 "\n"
8250 msgstr ""
8251
8252 #. type: textblock
8253 #: ../src/guestfs-actions.pod:1471
8254 msgid ""
8255 "Note that this call allocates disk blocks for the file.  To create a sparse "
8256 "file use C<guestfs_truncate_size> instead."
8257 msgstr ""
8258
8259 #. type: textblock
8260 #: ../src/guestfs-actions.pod:1474
8261 msgid ""
8262 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8263 "oversight it only allowed 30 bit lengths to be specified, effectively "
8264 "limiting the maximum size of files created through that call to 1GB."
8265 msgstr ""
8266
8267 #. type: textblock
8268 #: ../src/guestfs-actions.pod:1479 ../fish/guestfish-actions.pod:981
8269 msgid ""
8270 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8271 "commands which create a file in the host and attach it as a device."
8272 msgstr ""
8273
8274 #. type: textblock
8275 #: ../src/guestfs-actions.pod:1485
8276 msgid "(Added in 1.3.17)"
8277 msgstr ""
8278
8279 #. type: =head2
8280 #: ../src/guestfs-actions.pod:1487
8281 msgid "guestfs_fgrep"
8282 msgstr ""
8283
8284 #. type: verbatim
8285 #: ../src/guestfs-actions.pod:1489
8286 #, no-wrap
8287 msgid ""
8288 " char **\n"
8289 " guestfs_fgrep (guestfs_h *g,\n"
8290 "                const char *pattern,\n"
8291 "                const char *path);\n"
8292 "\n"
8293 msgstr ""
8294
8295 #. type: textblock
8296 #: ../src/guestfs-actions.pod:1494 ../fish/guestfish-actions.pod:989
8297 msgid "This calls the external C<fgrep> program and returns the matching lines."
8298 msgstr ""
8299
8300 #. type: =head2
8301 #: ../src/guestfs-actions.pod:1506
8302 msgid "guestfs_fgrepi"
8303 msgstr ""
8304
8305 #. type: verbatim
8306 #: ../src/guestfs-actions.pod:1508
8307 #, no-wrap
8308 msgid ""
8309 " char **\n"
8310 " guestfs_fgrepi (guestfs_h *g,\n"
8311 "                 const char *pattern,\n"
8312 "                 const char *path);\n"
8313 "\n"
8314 msgstr ""
8315
8316 #. type: textblock
8317 #: ../src/guestfs-actions.pod:1513 ../fish/guestfish-actions.pod:999
8318 msgid "This calls the external C<fgrep -i> program and returns the matching lines."
8319 msgstr ""
8320
8321 #. type: =head2
8322 #: ../src/guestfs-actions.pod:1525
8323 msgid "guestfs_file"
8324 msgstr ""
8325
8326 #. type: verbatim
8327 #: ../src/guestfs-actions.pod:1527
8328 #, no-wrap
8329 msgid ""
8330 " char *\n"
8331 " guestfs_file (guestfs_h *g,\n"
8332 "               const char *path);\n"
8333 "\n"
8334 msgstr ""
8335
8336 #. type: textblock
8337 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1009
8338 msgid ""
8339 "This call uses the standard L<file(1)> command to determine the type or "
8340 "contents of the file."
8341 msgstr ""
8342
8343 #. type: textblock
8344 #: ../src/guestfs-actions.pod:1534 ../fish/guestfish-actions.pod:1012
8345 msgid ""
8346 "This call will also transparently look inside various types of compressed "
8347 "file."
8348 msgstr ""
8349
8350 #. type: textblock
8351 #: ../src/guestfs-actions.pod:1537 ../fish/guestfish-actions.pod:1015
8352 msgid ""
8353 "The exact command which runs is C<file -zb path>.  Note in particular that "
8354 "the filename is not prepended to the output (the I<-b> option)."
8355 msgstr ""
8356
8357 #. type: textblock
8358 #: ../src/guestfs-actions.pod:1541 ../fish/guestfish-actions.pod:1019
8359 msgid ""
8360 "The output depends on the output of the underlying L<file(1)> command and it "
8361 "can change in future in ways beyond our control.  In other words, the output "
8362 "is not guaranteed by the ABI."
8363 msgstr ""
8364
8365 #. type: textblock
8366 #: ../src/guestfs-actions.pod:1545
8367 msgid ""
8368 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8369 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc), C<guestfs_is_zero>."
8370 msgstr ""
8371
8372 #. type: =head2
8373 #: ../src/guestfs-actions.pod:1553
8374 msgid "guestfs_file_architecture"
8375 msgstr ""
8376
8377 #. type: verbatim
8378 #: ../src/guestfs-actions.pod:1555
8379 #, no-wrap
8380 msgid ""
8381 " char *\n"
8382 " guestfs_file_architecture (guestfs_h *g,\n"
8383 "                            const char *filename);\n"
8384 "\n"
8385 msgstr ""
8386
8387 #. type: textblock
8388 #: ../src/guestfs-actions.pod:1559 ../fish/guestfish-actions.pod:1030
8389 msgid ""
8390 "This detects the architecture of the binary C<filename>, and returns it if "
8391 "known."
8392 msgstr ""
8393
8394 #. type: textblock
8395 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1033
8396 msgid "Currently defined architectures are:"
8397 msgstr ""
8398
8399 #. type: =item
8400 #: ../src/guestfs-actions.pod:1566 ../fish/guestfish-actions.pod:1037
8401 msgid "\"i386\""
8402 msgstr ""
8403
8404 #. type: textblock
8405 #: ../src/guestfs-actions.pod:1568 ../fish/guestfish-actions.pod:1039
8406 msgid ""
8407 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8408 "irrespective of the precise processor requirements of the binary."
8409 msgstr ""
8410
8411 #. type: =item
8412 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1042
8413 msgid "\"x86_64\""
8414 msgstr ""
8415
8416 #. type: textblock
8417 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1044
8418 msgid "64 bit x86-64."
8419 msgstr ""
8420
8421 #. type: =item
8422 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1046
8423 msgid "\"sparc\""
8424 msgstr ""
8425
8426 #. type: textblock
8427 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1048
8428 msgid "32 bit SPARC."
8429 msgstr ""
8430
8431 #. type: =item
8432 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1050
8433 msgid "\"sparc64\""
8434 msgstr ""
8435
8436 #. type: textblock
8437 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1052
8438 msgid "64 bit SPARC V9 and above."
8439 msgstr ""
8440
8441 #. type: =item
8442 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1054
8443 msgid "\"ia64\""
8444 msgstr ""
8445
8446 #. type: textblock
8447 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1056
8448 msgid "Intel Itanium."
8449 msgstr ""
8450
8451 #. type: =item
8452 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1058
8453 msgid "\"ppc\""
8454 msgstr ""
8455
8456 #. type: textblock
8457 #: ../src/guestfs-actions.pod:1589 ../fish/guestfish-actions.pod:1060
8458 msgid "32 bit Power PC."
8459 msgstr ""
8460
8461 #. type: =item
8462 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1062
8463 msgid "\"ppc64\""
8464 msgstr ""
8465
8466 #. type: textblock
8467 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1064
8468 msgid "64 bit Power PC."
8469 msgstr ""
8470
8471 #. type: textblock
8472 #: ../src/guestfs-actions.pod:1597 ../fish/guestfish-actions.pod:1068
8473 msgid "Libguestfs may return other architecture strings in future."
8474 msgstr ""
8475
8476 #. type: textblock
8477 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1070
8478 msgid "The function works on at least the following types of files:"
8479 msgstr ""
8480
8481 #. type: textblock
8482 #: ../src/guestfs-actions.pod:1605 ../fish/guestfish-actions.pod:1076
8483 msgid "many types of Un*x and Linux binary"
8484 msgstr ""
8485
8486 #. type: textblock
8487 #: ../src/guestfs-actions.pod:1609 ../fish/guestfish-actions.pod:1080
8488 msgid "many types of Un*x and Linux shared library"
8489 msgstr ""
8490
8491 #. type: textblock
8492 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1084
8493 msgid "Windows Win32 and Win64 binaries"
8494 msgstr ""
8495
8496 #. type: textblock
8497 #: ../src/guestfs-actions.pod:1617 ../fish/guestfish-actions.pod:1088
8498 msgid "Windows Win32 and Win64 DLLs"
8499 msgstr ""
8500
8501 #. type: textblock
8502 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1090
8503 msgid "Win32 binaries and DLLs return C<i386>."
8504 msgstr ""
8505
8506 #. type: textblock
8507 #: ../src/guestfs-actions.pod:1621 ../fish/guestfish-actions.pod:1092
8508 msgid "Win64 binaries and DLLs return C<x86_64>."
8509 msgstr ""
8510
8511 #. type: textblock
8512 #: ../src/guestfs-actions.pod:1625 ../fish/guestfish-actions.pod:1096
8513 msgid "Linux kernel modules"
8514 msgstr ""
8515
8516 #. type: textblock
8517 #: ../src/guestfs-actions.pod:1629 ../fish/guestfish-actions.pod:1100
8518 msgid "Linux new-style initrd images"
8519 msgstr ""
8520
8521 #. type: textblock
8522 #: ../src/guestfs-actions.pod:1633 ../fish/guestfish-actions.pod:1104
8523 msgid "some non-x86 Linux vmlinuz kernels"
8524 msgstr ""
8525
8526 #. type: textblock
8527 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1108
8528 msgid "What it can't do currently:"
8529 msgstr ""
8530
8531 #. type: textblock
8532 #: ../src/guestfs-actions.pod:1643 ../fish/guestfish-actions.pod:1114
8533 msgid "static libraries (libfoo.a)"
8534 msgstr ""
8535
8536 #. type: textblock
8537 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1118
8538 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8539 msgstr ""
8540
8541 #. type: textblock
8542 #: ../src/guestfs-actions.pod:1651 ../fish/guestfish-actions.pod:1122
8543 msgid "x86 Linux vmlinuz kernels"
8544 msgstr ""
8545
8546 #. type: textblock
8547 #: ../src/guestfs-actions.pod:1653 ../fish/guestfish-actions.pod:1124
8548 msgid ""
8549 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8550 "compressed code, and are horribly hard to unpack.  If you want to find the "
8551 "architecture of a kernel, use the architecture of the associated initrd or "
8552 "kernel module(s) instead."
8553 msgstr ""
8554
8555 #. type: textblock
8556 #: ../src/guestfs-actions.pod:1663 ../src/guestfs-actions.pod:1826 ../src/guestfs-actions.pod:1843 ../src/guestfs-actions.pod:2533 ../src/guestfs-actions.pod:2623 ../src/guestfs-actions.pod:2689 ../src/guestfs-actions.pod:2876 ../src/guestfs-actions.pod:2894 ../src/guestfs-actions.pod:2934 ../src/guestfs-actions.pod:3009 ../src/guestfs-actions.pod:3102 ../src/guestfs-actions.pod:3339 ../src/guestfs-actions.pod:3471
8557 msgid "(Added in 1.5.3)"
8558 msgstr ""
8559
8560 #. type: =head2
8561 #: ../src/guestfs-actions.pod:1665
8562 msgid "guestfs_filesize"
8563 msgstr ""
8564
8565 #. type: verbatim
8566 #: ../src/guestfs-actions.pod:1667
8567 #, no-wrap
8568 msgid ""
8569 " int64_t\n"
8570 " guestfs_filesize (guestfs_h *g,\n"
8571 "                   const char *file);\n"
8572 "\n"
8573 msgstr ""
8574
8575 #. type: textblock
8576 #: ../src/guestfs-actions.pod:1671 ../fish/guestfish-actions.pod:1135
8577 msgid "This command returns the size of C<file> in bytes."
8578 msgstr ""
8579
8580 #. type: textblock
8581 #: ../src/guestfs-actions.pod:1673
8582 msgid ""
8583 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
8584 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
8585 "devices, use C<guestfs_blockdev_getsize64>."
8586 msgstr ""
8587
8588 #. type: textblock
8589 #: ../src/guestfs-actions.pod:1679
8590 msgid "(Added in 1.0.82)"
8591 msgstr ""
8592
8593 #. type: =head2
8594 #: ../src/guestfs-actions.pod:1681
8595 msgid "guestfs_fill"
8596 msgstr ""
8597
8598 #. type: verbatim
8599 #: ../src/guestfs-actions.pod:1683
8600 #, no-wrap
8601 msgid ""
8602 " int\n"
8603 " guestfs_fill (guestfs_h *g,\n"
8604 "               int c,\n"
8605 "               int len,\n"
8606 "               const char *path);\n"
8607 "\n"
8608 msgstr ""
8609
8610 #. type: textblock
8611 #: ../src/guestfs-actions.pod:1689 ../fish/guestfish-actions.pod:1145
8612 msgid ""
8613 "This command creates a new file called C<path>.  The initial content of the "
8614 "file is C<len> octets of C<c>, where C<c> must be a number in the range "
8615 "C<[0..255]>."
8616 msgstr ""
8617
8618 #. type: textblock
8619 #: ../src/guestfs-actions.pod:1693
8620 msgid ""
8621 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
8622 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
8623 "bytes use C<guestfs_fill_pattern>."
8624 msgstr ""
8625
8626 #. type: textblock
8627 #: ../src/guestfs-actions.pod:1705
8628 msgid "(Added in 1.0.79)"
8629 msgstr ""
8630
8631 #. type: =head2
8632 #: ../src/guestfs-actions.pod:1707
8633 msgid "guestfs_fill_pattern"
8634 msgstr ""
8635
8636 #. type: verbatim
8637 #: ../src/guestfs-actions.pod:1709
8638 #, no-wrap
8639 msgid ""
8640 " int\n"
8641 " guestfs_fill_pattern (guestfs_h *g,\n"
8642 "                       const char *pattern,\n"
8643 "                       int len,\n"
8644 "                       const char *path);\n"
8645 "\n"
8646 msgstr ""
8647
8648 #. type: textblock
8649 #: ../src/guestfs-actions.pod:1715
8650 msgid ""
8651 "This function is like C<guestfs_fill> except that it creates a new file of "
8652 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
8653 "pattern is truncated if necessary to ensure the length of the file is "
8654 "exactly C<len> bytes."
8655 msgstr ""
8656
8657 #. type: textblock
8658 #: ../src/guestfs-actions.pod:1727
8659 msgid "(Added in 1.3.12)"
8660 msgstr ""
8661
8662 #. type: =head2
8663 #: ../src/guestfs-actions.pod:1729
8664 msgid "guestfs_find"
8665 msgstr ""
8666
8667 #. type: verbatim
8668 #: ../src/guestfs-actions.pod:1731
8669 #, no-wrap
8670 msgid ""
8671 " char **\n"
8672 " guestfs_find (guestfs_h *g,\n"
8673 "               const char *directory);\n"
8674 "\n"
8675 msgstr ""
8676
8677 #. type: textblock
8678 #: ../src/guestfs-actions.pod:1735 ../fish/guestfish-actions.pod:1167
8679 msgid ""
8680 "This command lists out all files and directories, recursively, starting at "
8681 "C<directory>.  It is essentially equivalent to running the shell command "
8682 "C<find directory -print> but some post-processing happens on the output, "
8683 "described below."
8684 msgstr ""
8685
8686 #. type: textblock
8687 #: ../src/guestfs-actions.pod:1740 ../fish/guestfish-actions.pod:1172
8688 msgid ""
8689 "This returns a list of strings I<without any prefix>.  Thus if the directory "
8690 "structure was:"
8691 msgstr ""
8692
8693 #. type: verbatim
8694 #: ../src/guestfs-actions.pod:1743 ../fish/guestfish-actions.pod:1175
8695 #, no-wrap
8696 msgid ""
8697 " /tmp/a\n"
8698 " /tmp/b\n"
8699 " /tmp/c/d\n"
8700 "\n"
8701 msgstr ""
8702
8703 #. type: textblock
8704 #: ../src/guestfs-actions.pod:1747
8705 msgid "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
8706 msgstr ""
8707
8708 #. type: verbatim
8709 #: ../src/guestfs-actions.pod:1750 ../fish/guestfish-actions.pod:1182
8710 #, no-wrap
8711 msgid ""
8712 " a\n"
8713 " b\n"
8714 " c\n"
8715 " c/d\n"
8716 "\n"
8717 msgstr ""
8718
8719 #. type: textblock
8720 #: ../src/guestfs-actions.pod:1755 ../fish/guestfish-actions.pod:1187
8721 msgid "If C<directory> is not a directory, then this command returns an error."
8722 msgstr ""
8723
8724 #. type: textblock
8725 #: ../src/guestfs-actions.pod:1758 ../fish/guestfish-actions.pod:1190
8726 msgid "The returned list is sorted."
8727 msgstr ""
8728
8729 #. type: textblock
8730 #: ../src/guestfs-actions.pod:1760
8731 msgid "See also C<guestfs_find0>."
8732 msgstr ""
8733
8734 #. type: textblock
8735 #: ../src/guestfs-actions.pod:1769 ../src/guestfs-actions.pod:4229 ../src/guestfs-actions.pod:5933
8736 msgid "(Added in 1.0.27)"
8737 msgstr ""
8738
8739 #. type: =head2
8740 #: ../src/guestfs-actions.pod:1771
8741 msgid "guestfs_find0"
8742 msgstr ""
8743
8744 #. type: verbatim
8745 #: ../src/guestfs-actions.pod:1773
8746 #, no-wrap
8747 msgid ""
8748 " int\n"
8749 " guestfs_find0 (guestfs_h *g,\n"
8750 "                const char *directory,\n"
8751 "                const char *files);\n"
8752 "\n"
8753 msgstr ""
8754
8755 #. type: textblock
8756 #: ../src/guestfs-actions.pod:1778 ../fish/guestfish-actions.pod:1201
8757 msgid ""
8758 "This command lists out all files and directories, recursively, starting at "
8759 "C<directory>, placing the resulting list in the external file called "
8760 "C<files>."
8761 msgstr ""
8762
8763 #. type: textblock
8764 #: ../src/guestfs-actions.pod:1782
8765 msgid ""
8766 "This command works the same way as C<guestfs_find> with the following "
8767 "exceptions:"
8768 msgstr ""
8769
8770 #. type: textblock
8771 #: ../src/guestfs-actions.pod:1789 ../fish/guestfish-actions.pod:1212
8772 msgid "The resulting list is written to an external file."
8773 msgstr ""
8774
8775 #. type: textblock
8776 #: ../src/guestfs-actions.pod:1793 ../fish/guestfish-actions.pod:1216
8777 msgid ""
8778 "Items (filenames) in the result are separated by C<\\0> characters.  See "
8779 "L<find(1)> option I<-print0>."
8780 msgstr ""
8781
8782 #. type: textblock
8783 #: ../src/guestfs-actions.pod:1798 ../fish/guestfish-actions.pod:1221
8784 msgid "This command is not limited in the number of names that it can return."
8785 msgstr ""
8786
8787 #. type: textblock
8788 #: ../src/guestfs-actions.pod:1803 ../fish/guestfish-actions.pod:1226
8789 msgid "The result list is not sorted."
8790 msgstr ""
8791
8792 #. type: textblock
8793 #: ../src/guestfs-actions.pod:1809
8794 msgid "(Added in 1.0.74)"
8795 msgstr ""
8796
8797 #. type: =head2
8798 #: ../src/guestfs-actions.pod:1811
8799 msgid "guestfs_findfs_label"
8800 msgstr ""
8801
8802 #. type: verbatim
8803 #: ../src/guestfs-actions.pod:1813
8804 #, no-wrap
8805 msgid ""
8806 " char *\n"
8807 " guestfs_findfs_label (guestfs_h *g,\n"
8808 "                       const char *label);\n"
8809 "\n"
8810 msgstr ""
8811
8812 #. type: textblock
8813 #: ../src/guestfs-actions.pod:1817 ../fish/guestfish-actions.pod:1236
8814 msgid ""
8815 "This command searches the filesystems and returns the one which has the "
8816 "given label.  An error is returned if no such filesystem can be found."
8817 msgstr ""
8818
8819 #. type: textblock
8820 #: ../src/guestfs-actions.pod:1821
8821 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
8822 msgstr ""
8823
8824 #. type: =head2
8825 #: ../src/guestfs-actions.pod:1828
8826 msgid "guestfs_findfs_uuid"
8827 msgstr ""
8828
8829 #. type: verbatim
8830 #: ../src/guestfs-actions.pod:1830
8831 #, no-wrap
8832 msgid ""
8833 " char *\n"
8834 " guestfs_findfs_uuid (guestfs_h *g,\n"
8835 "                      const char *uuid);\n"
8836 "\n"
8837 msgstr ""
8838
8839 #. type: textblock
8840 #: ../src/guestfs-actions.pod:1834 ../fish/guestfish-actions.pod:1246
8841 msgid ""
8842 "This command searches the filesystems and returns the one which has the "
8843 "given UUID.  An error is returned if no such filesystem can be found."
8844 msgstr ""
8845
8846 #. type: textblock
8847 #: ../src/guestfs-actions.pod:1838
8848 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
8849 msgstr ""
8850
8851 #. type: =head2
8852 #: ../src/guestfs-actions.pod:1845
8853 msgid "guestfs_fsck"
8854 msgstr ""
8855
8856 #. type: verbatim
8857 #: ../src/guestfs-actions.pod:1847
8858 #, no-wrap
8859 msgid ""
8860 " int\n"
8861 " guestfs_fsck (guestfs_h *g,\n"
8862 "               const char *fstype,\n"
8863 "               const char *device);\n"
8864 "\n"
8865 msgstr ""
8866
8867 #. type: textblock
8868 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1256
8869 msgid ""
8870 "This runs the filesystem checker (fsck) on C<device> which should have "
8871 "filesystem type C<fstype>."
8872 msgstr ""
8873
8874 #. type: textblock
8875 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:1259
8876 msgid ""
8877 "The returned integer is the status.  See L<fsck(8)> for the list of status "
8878 "codes from C<fsck>."
8879 msgstr ""
8880
8881 #. type: textblock
8882 #: ../src/guestfs-actions.pod:1864 ../fish/guestfish-actions.pod:1268
8883 msgid "Multiple status codes can be summed together."
8884 msgstr ""
8885
8886 #. type: textblock
8887 #: ../src/guestfs-actions.pod:1868 ../fish/guestfish-actions.pod:1272
8888 msgid ""
8889 "A non-zero return code can mean \"success\", for example if errors have been "
8890 "corrected on the filesystem."
8891 msgstr ""
8892
8893 #. type: textblock
8894 #: ../src/guestfs-actions.pod:1873 ../fish/guestfish-actions.pod:1277
8895 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
8896 msgstr ""
8897
8898 #. type: textblock
8899 #: ../src/guestfs-actions.pod:1878 ../fish/guestfish-actions.pod:1282
8900 msgid "This command is entirely equivalent to running C<fsck -a -t fstype device>."
8901 msgstr ""
8902
8903 #. type: textblock
8904 #: ../src/guestfs-actions.pod:1882 ../src/guestfs-actions.pod:7663
8905 msgid "(Added in 1.0.16)"
8906 msgstr ""
8907
8908 #. type: =head2
8909 #: ../src/guestfs-actions.pod:1884
8910 msgid "guestfs_get_append"
8911 msgstr ""
8912
8913 #. type: verbatim
8914 #: ../src/guestfs-actions.pod:1886
8915 #, no-wrap
8916 msgid ""
8917 " const char *\n"
8918 " guestfs_get_append (guestfs_h *g);\n"
8919 "\n"
8920 msgstr ""
8921
8922 #. type: textblock
8923 #: ../src/guestfs-actions.pod:1889 ../fish/guestfish-actions.pod:1288
8924 msgid ""
8925 "Return the additional kernel options which are added to the guest kernel "
8926 "command line."
8927 msgstr ""
8928
8929 #. type: textblock
8930 #: ../src/guestfs-actions.pod:1892 ../fish/guestfish-actions.pod:1291
8931 msgid "If C<NULL> then no options are added."
8932 msgstr ""
8933
8934 #. type: textblock
8935 #: ../src/guestfs-actions.pod:1894
8936 msgid ""
8937 "This function returns a string which may be NULL.  There is no way to return "
8938 "an error from this function.  The string is owned by the guest handle and "
8939 "must I<not> be freed."
8940 msgstr ""
8941
8942 #. type: textblock
8943 #: ../src/guestfs-actions.pod:1898 ../src/guestfs-actions.pod:5611 ../src/guestfs-actions.pod:6093 ../src/guestfs-actions.pod:6516 ../src/guestfs-actions.pod:6535 ../src/guestfs-actions.pod:6551 ../src/guestfs-actions.pod:6575 ../src/guestfs-actions.pod:7329 ../src/guestfs-actions.pod:7344 ../src/guestfs-actions.pod:7706
8944 msgid "(Added in 1.0.26)"
8945 msgstr ""
8946
8947 #. type: =head2
8948 #: ../src/guestfs-actions.pod:1900
8949 msgid "guestfs_get_attach_method"
8950 msgstr ""
8951
8952 #. type: verbatim
8953 #: ../src/guestfs-actions.pod:1902
8954 #, no-wrap
8955 msgid ""
8956 " char *\n"
8957 " guestfs_get_attach_method (guestfs_h *g);\n"
8958 "\n"
8959 msgstr ""
8960
8961 #. type: textblock
8962 #: ../src/guestfs-actions.pod:1905
8963 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
8964 msgstr ""
8965
8966 #. type: textblock
8967 #: ../src/guestfs-actions.pod:1910 ../src/guestfs-actions.pod:6123
8968 msgid "(Added in 1.9.8)"
8969 msgstr ""
8970
8971 #. type: =head2
8972 #: ../src/guestfs-actions.pod:1912
8973 msgid "guestfs_get_autosync"
8974 msgstr ""
8975
8976 #. type: verbatim
8977 #: ../src/guestfs-actions.pod:1914
8978 #, no-wrap
8979 msgid ""
8980 " int\n"
8981 " guestfs_get_autosync (guestfs_h *g);\n"
8982 "\n"
8983 msgstr ""
8984
8985 #. type: textblock
8986 #: ../src/guestfs-actions.pod:1917 ../fish/guestfish-actions.pod:1303
8987 msgid "Get the autosync flag."
8988 msgstr ""
8989
8990 #. type: =head2
8991 #: ../src/guestfs-actions.pod:1923
8992 msgid "guestfs_get_direct"
8993 msgstr ""
8994
8995 #. type: verbatim
8996 #: ../src/guestfs-actions.pod:1925
8997 #, no-wrap
8998 msgid ""
8999 " int\n"
9000 " guestfs_get_direct (guestfs_h *g);\n"
9001 "\n"
9002 msgstr ""
9003
9004 #. type: textblock
9005 #: ../src/guestfs-actions.pod:1928 ../fish/guestfish-actions.pod:1309
9006 msgid "Return the direct appliance mode flag."
9007 msgstr ""
9008
9009 #. type: textblock
9010 #: ../src/guestfs-actions.pod:1932 ../src/guestfs-actions.pod:6164
9011 msgid "(Added in 1.0.72)"
9012 msgstr ""
9013
9014 #. type: =head2
9015 #: ../src/guestfs-actions.pod:1934
9016 msgid "guestfs_get_e2label"
9017 msgstr ""
9018
9019 #. type: verbatim
9020 #: ../src/guestfs-actions.pod:1936
9021 #, no-wrap
9022 msgid ""
9023 " char *\n"
9024 " guestfs_get_e2label (guestfs_h *g,\n"
9025 "                      const char *device);\n"
9026 "\n"
9027 msgstr ""
9028
9029 #. type: textblock
9030 #: ../src/guestfs-actions.pod:1940 ../fish/guestfish-actions.pod:1315
9031 msgid "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9032 msgstr ""
9033
9034 #. type: textblock
9035 #: ../src/guestfs-actions.pod:1946 ../fish/guestfish-actions.pod:1318
9036 msgid ""
9037 "This function is deprecated.  In new code, use the C<vfs_label> call "
9038 "instead."
9039 msgstr ""
9040
9041 #. type: textblock
9042 #: ../src/guestfs-actions.pod:1953 ../src/guestfs-actions.pod:1974 ../src/guestfs-actions.pod:6182 ../src/guestfs-actions.pod:6201
9043 msgid "(Added in 1.0.15)"
9044 msgstr ""
9045
9046 #. type: =head2
9047 #: ../src/guestfs-actions.pod:1955
9048 msgid "guestfs_get_e2uuid"
9049 msgstr ""
9050
9051 #. type: verbatim
9052 #: ../src/guestfs-actions.pod:1957
9053 #, no-wrap
9054 msgid ""
9055 " char *\n"
9056 " guestfs_get_e2uuid (guestfs_h *g,\n"
9057 "                     const char *device);\n"
9058 "\n"
9059 msgstr ""
9060
9061 #. type: textblock
9062 #: ../src/guestfs-actions.pod:1961 ../fish/guestfish-actions.pod:1329
9063 msgid "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9064 msgstr ""
9065
9066 #. type: textblock
9067 #: ../src/guestfs-actions.pod:1967 ../fish/guestfish-actions.pod:1332
9068 msgid "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9069 msgstr ""
9070
9071 #. type: =head2
9072 #: ../src/guestfs-actions.pod:1976
9073 msgid "guestfs_get_memsize"
9074 msgstr ""
9075
9076 #. type: verbatim
9077 #: ../src/guestfs-actions.pod:1978
9078 #, no-wrap
9079 msgid ""
9080 " int\n"
9081 " guestfs_get_memsize (guestfs_h *g);\n"
9082 "\n"
9083 msgstr ""
9084
9085 #. type: textblock
9086 #: ../src/guestfs-actions.pod:1981 ../fish/guestfish-actions.pod:1343
9087 msgid "This gets the memory size in megabytes allocated to the qemu subprocess."
9088 msgstr ""
9089
9090 #. type: textblock
9091 #: ../src/guestfs-actions.pod:1984
9092 msgid ""
9093 "If C<guestfs_set_memsize> was not called on this handle, and if "
9094 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9095 "value for memsize."
9096 msgstr ""
9097
9098 #. type: textblock
9099 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:2069 ../src/guestfs-actions.pod:6217 ../src/guestfs-actions.pod:6324 ../fish/guestfish-actions.pod:1350 ../fish/guestfish-actions.pod:1401 ../fish/guestfish-actions.pod:4126 ../fish/guestfish-actions.pod:4213
9100 msgid "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9101 msgstr ""
9102
9103 #. type: textblock
9104 #: ../src/guestfs-actions.pod:1993 ../src/guestfs-actions.pod:4520 ../src/guestfs-actions.pod:4729 ../src/guestfs-actions.pod:4748 ../src/guestfs-actions.pod:4767 ../src/guestfs-actions.pod:4779 ../src/guestfs-actions.pod:4796 ../src/guestfs-actions.pod:4809 ../src/guestfs-actions.pod:5836 ../src/guestfs-actions.pod:6222 ../src/guestfs-actions.pod:6483 ../src/guestfs-actions.pod:7098
9105 msgid "(Added in 1.0.55)"
9106 msgstr ""
9107
9108 #. type: =head2
9109 #: ../src/guestfs-actions.pod:1995
9110 msgid "guestfs_get_network"
9111 msgstr ""
9112
9113 #. type: verbatim
9114 #: ../src/guestfs-actions.pod:1997
9115 #, no-wrap
9116 msgid ""
9117 " int\n"
9118 " guestfs_get_network (guestfs_h *g);\n"
9119 "\n"
9120 msgstr ""
9121
9122 #. type: textblock
9123 #: ../src/guestfs-actions.pod:2000 ../fish/guestfish-actions.pod:1357
9124 msgid "This returns the enable network flag."
9125 msgstr ""
9126
9127 #. type: textblock
9128 #: ../src/guestfs-actions.pod:2004 ../src/guestfs-actions.pod:6241
9129 msgid "(Added in 1.5.4)"
9130 msgstr ""
9131
9132 #. type: =head2
9133 #: ../src/guestfs-actions.pod:2006
9134 msgid "guestfs_get_path"
9135 msgstr ""
9136
9137 #. type: verbatim
9138 #: ../src/guestfs-actions.pod:2008
9139 #, no-wrap
9140 msgid ""
9141 " const char *\n"
9142 " guestfs_get_path (guestfs_h *g);\n"
9143 "\n"
9144 msgstr ""
9145
9146 #. type: textblock
9147 #: ../src/guestfs-actions.pod:2011 ../fish/guestfish-actions.pod:1363
9148 msgid "Return the current search path."
9149 msgstr ""
9150
9151 #. type: textblock
9152 #: ../src/guestfs-actions.pod:2013 ../fish/guestfish-actions.pod:1365
9153 msgid ""
9154 "This is always non-NULL.  If it wasn't set already, then this will return "
9155 "the default path."
9156 msgstr ""
9157
9158 #. type: textblock
9159 #: ../src/guestfs-actions.pod:2016 ../src/guestfs-actions.pod:2045
9160 msgid ""
9161 "This function returns a string, or NULL on error.  The string is owned by "
9162 "the guest handle and must I<not> be freed."
9163 msgstr ""
9164
9165 #. type: =head2
9166 #: ../src/guestfs-actions.pod:2021
9167 msgid "guestfs_get_pid"
9168 msgstr ""
9169
9170 #. type: verbatim
9171 #: ../src/guestfs-actions.pod:2023
9172 #, no-wrap
9173 msgid ""
9174 " int\n"
9175 " guestfs_get_pid (guestfs_h *g);\n"
9176 "\n"
9177 msgstr ""
9178
9179 #. type: textblock
9180 #: ../src/guestfs-actions.pod:2026 ../fish/guestfish-actions.pod:1374
9181 msgid ""
9182 "Return the process ID of the qemu subprocess.  If there is no qemu "
9183 "subprocess, then this will return an error."
9184 msgstr ""
9185
9186 #. type: textblock
9187 #: ../src/guestfs-actions.pod:2029 ../fish/guestfish-actions.pod:1377
9188 msgid "This is an internal call used for debugging and testing."
9189 msgstr ""
9190
9191 #. type: textblock
9192 #: ../src/guestfs-actions.pod:2033
9193 msgid "(Added in 1.0.56)"
9194 msgstr ""
9195
9196 #. type: =head2
9197 #: ../src/guestfs-actions.pod:2035
9198 msgid "guestfs_get_qemu"
9199 msgstr ""
9200
9201 #. type: verbatim
9202 #: ../src/guestfs-actions.pod:2037
9203 #, no-wrap
9204 msgid ""
9205 " const char *\n"
9206 " guestfs_get_qemu (guestfs_h *g);\n"
9207 "\n"
9208 msgstr ""
9209
9210 #. type: textblock
9211 #: ../src/guestfs-actions.pod:2040 ../fish/guestfish-actions.pod:1383
9212 msgid "Return the current qemu binary."
9213 msgstr ""
9214
9215 #. type: textblock
9216 #: ../src/guestfs-actions.pod:2042 ../fish/guestfish-actions.pod:1385
9217 msgid ""
9218 "This is always non-NULL.  If it wasn't set already, then this will return "
9219 "the default qemu binary name."
9220 msgstr ""
9221
9222 #. type: textblock
9223 #: ../src/guestfs-actions.pod:2048 ../src/guestfs-actions.pod:6286
9224 msgid "(Added in 1.0.6)"
9225 msgstr ""
9226
9227 #. type: =head2
9228 #: ../src/guestfs-actions.pod:2050
9229 msgid "guestfs_get_recovery_proc"
9230 msgstr ""
9231
9232 #. type: verbatim
9233 #: ../src/guestfs-actions.pod:2052
9234 #, no-wrap
9235 msgid ""
9236 " int\n"
9237 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9238 "\n"
9239 msgstr ""
9240
9241 #. type: textblock
9242 #: ../src/guestfs-actions.pod:2055 ../fish/guestfish-actions.pod:1392
9243 msgid "Return the recovery process enabled flag."
9244 msgstr ""
9245
9246 #. type: textblock
9247 #: ../src/guestfs-actions.pod:2059 ../src/guestfs-actions.pod:3593 ../src/guestfs-actions.pod:3924 ../src/guestfs-actions.pod:4327 ../src/guestfs-actions.pod:4359 ../src/guestfs-actions.pod:5541 ../src/guestfs-actions.pod:5884 ../src/guestfs-actions.pod:6310 ../src/guestfs-actions.pod:7001 ../src/guestfs-actions.pod:7021 ../src/guestfs-actions.pod:7213
9248 msgid "(Added in 1.0.77)"
9249 msgstr ""
9250
9251 #. type: =head2
9252 #: ../src/guestfs-actions.pod:2061
9253 msgid "guestfs_get_selinux"
9254 msgstr ""
9255
9256 #. type: verbatim
9257 #: ../src/guestfs-actions.pod:2063
9258 #, no-wrap
9259 msgid ""
9260 " int\n"
9261 " guestfs_get_selinux (guestfs_h *g);\n"
9262 "\n"
9263 msgstr ""
9264
9265 #. type: textblock
9266 #: ../src/guestfs-actions.pod:2066
9267 msgid ""
9268 "This returns the current setting of the selinux flag which is passed to the "
9269 "appliance at boot time.  See C<guestfs_set_selinux>."
9270 msgstr ""
9271
9272 #. type: textblock
9273 #: ../src/guestfs-actions.pod:2074 ../src/guestfs-actions.pod:2137 ../src/guestfs-actions.pod:6329 ../src/guestfs-actions.pod:6387
9274 msgid "(Added in 1.0.67)"
9275 msgstr ""
9276
9277 #. type: =head2
9278 #: ../src/guestfs-actions.pod:2076
9279 msgid "guestfs_get_state"
9280 msgstr ""
9281
9282 #. type: verbatim
9283 #: ../src/guestfs-actions.pod:2078
9284 #, no-wrap
9285 msgid ""
9286 " int\n"
9287 " guestfs_get_state (guestfs_h *g);\n"
9288 "\n"
9289 msgstr ""
9290
9291 #. type: textblock
9292 #: ../src/guestfs-actions.pod:2081 ../fish/guestfish-actions.pod:1408
9293 msgid ""
9294 "This returns the current state as an opaque integer.  This is only useful "
9295 "for printing debug and internal error messages."
9296 msgstr ""
9297
9298 #. type: textblock
9299 #: ../src/guestfs-actions.pod:2084 ../src/guestfs-actions.pod:3364 ../src/guestfs-actions.pod:3393 ../src/guestfs-actions.pod:3454 ../src/guestfs-actions.pod:3481 ../fish/guestfish-actions.pod:1411 ../fish/guestfish-actions.pod:2331 ../fish/guestfish-actions.pod:2349 ../fish/guestfish-actions.pod:2387 ../fish/guestfish-actions.pod:2403
9300 msgid "For more information on states, see L<guestfs(3)>."
9301 msgstr ""
9302
9303 #. type: =head2
9304 #: ../src/guestfs-actions.pod:2090
9305 msgid "guestfs_get_trace"
9306 msgstr ""
9307
9308 #. type: verbatim
9309 #: ../src/guestfs-actions.pod:2092
9310 #, no-wrap
9311 msgid ""
9312 " int\n"
9313 " guestfs_get_trace (guestfs_h *g);\n"
9314 "\n"
9315 msgstr ""
9316
9317 #. type: textblock
9318 #: ../src/guestfs-actions.pod:2095 ../fish/guestfish-actions.pod:1417
9319 msgid "Return the command trace flag."
9320 msgstr ""
9321
9322 #. type: =head2
9323 #: ../src/guestfs-actions.pod:2101
9324 msgid "guestfs_get_umask"
9325 msgstr ""
9326
9327 #. type: verbatim
9328 #: ../src/guestfs-actions.pod:2103
9329 #, no-wrap
9330 msgid ""
9331 " int\n"
9332 " guestfs_get_umask (guestfs_h *g);\n"
9333 "\n"
9334 msgstr ""
9335
9336 #. type: textblock
9337 #: ../src/guestfs-actions.pod:2106
9338 msgid ""
9339 "Return the current umask.  By default the umask is C<022> unless it has been "
9340 "set by calling C<guestfs_umask>."
9341 msgstr ""
9342
9343 #. type: =head2
9344 #: ../src/guestfs-actions.pod:2113
9345 msgid "guestfs_get_verbose"
9346 msgstr ""
9347
9348 #. type: verbatim
9349 #: ../src/guestfs-actions.pod:2115
9350 #, no-wrap
9351 msgid ""
9352 " int\n"
9353 " guestfs_get_verbose (guestfs_h *g);\n"
9354 "\n"
9355 msgstr ""
9356
9357 #. type: textblock
9358 #: ../src/guestfs-actions.pod:2118 ../fish/guestfish-actions.pod:1430
9359 msgid "This returns the verbose messages flag."
9360 msgstr ""
9361
9362 #. type: =head2
9363 #: ../src/guestfs-actions.pod:2124
9364 msgid "guestfs_getcon"
9365 msgstr ""
9366
9367 #. type: verbatim
9368 #: ../src/guestfs-actions.pod:2126
9369 #, no-wrap
9370 msgid ""
9371 " char *\n"
9372 " guestfs_getcon (guestfs_h *g);\n"
9373 "\n"
9374 msgstr ""
9375
9376 #. type: textblock
9377 #: ../src/guestfs-actions.pod:2129 ../fish/guestfish-actions.pod:1436
9378 msgid "This gets the SELinux security context of the daemon."
9379 msgstr ""
9380
9381 #. type: textblock
9382 #: ../src/guestfs-actions.pod:2131
9383 msgid "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9384 msgstr ""
9385
9386 #. type: =head2
9387 #: ../src/guestfs-actions.pod:2139
9388 msgid "guestfs_getxattr"
9389 msgstr ""
9390
9391 #. type: verbatim
9392 #: ../src/guestfs-actions.pod:2141
9393 #, no-wrap
9394 msgid ""
9395 " char *\n"
9396 " guestfs_getxattr (guestfs_h *g,\n"
9397 "                   const char *path,\n"
9398 "                   const char *name,\n"
9399 "                   size_t *size_r);\n"
9400 "\n"
9401 msgstr ""
9402
9403 #. type: textblock
9404 #: ../src/guestfs-actions.pod:2147
9405 msgid ""
9406 "Get a single extended attribute from file C<path> named C<name>.  This call "
9407 "follows symlinks.  If you want to lookup an extended attribute for the "
9408 "symlink itself, use C<guestfs_lgetxattr>."
9409 msgstr ""
9410
9411 #. type: textblock
9412 #: ../src/guestfs-actions.pod:2151 ../src/guestfs-actions.pod:3607
9413 msgid ""
9414 "Normally it is better to get all extended attributes from a file in one go "
9415 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9416 "implementations are buggy and do not provide a way to list out attributes.  "
9417 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9418 "extended attributes you want in advance and call this function."
9419 msgstr ""
9420
9421 #. type: textblock
9422 #: ../src/guestfs-actions.pod:2158 ../src/guestfs-actions.pod:3614 ../fish/guestfish-actions.pod:1456 ../fish/guestfish-actions.pod:2483
9423 msgid ""
9424 "Extended attribute values are blobs of binary data.  If there is no extended "
9425 "attribute named C<name>, this returns an error."
9426 msgstr ""
9427
9428 #. type: textblock
9429 #: ../src/guestfs-actions.pod:2161
9430 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9431 msgstr ""
9432
9433 #. type: textblock
9434 #: ../src/guestfs-actions.pod:2163 ../src/guestfs-actions.pod:2354 ../src/guestfs-actions.pod:2824 ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:5534 ../src/guestfs-actions.pod:5560 ../src/guestfs-actions.pod:5741
9435 msgid ""
9436 "This function returns a buffer, or NULL on error.  The size of the returned "
9437 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9438 "after use>."
9439 msgstr ""
9440
9441 #. type: textblock
9442 #: ../src/guestfs-actions.pod:2167 ../src/guestfs-actions.pod:3623
9443 msgid "(Added in 1.7.24)"
9444 msgstr ""
9445
9446 #. type: =head2
9447 #: ../src/guestfs-actions.pod:2169
9448 msgid "guestfs_getxattrs"
9449 msgstr ""
9450
9451 #. type: verbatim
9452 #: ../src/guestfs-actions.pod:2171
9453 #, no-wrap
9454 msgid ""
9455 " struct guestfs_xattr_list *\n"
9456 " guestfs_getxattrs (guestfs_h *g,\n"
9457 "                    const char *path);\n"
9458 "\n"
9459 msgstr ""
9460
9461 #. type: textblock
9462 #: ../src/guestfs-actions.pod:2175 ../fish/guestfish-actions.pod:1465
9463 msgid "This call lists the extended attributes of the file or directory C<path>."
9464 msgstr ""
9465
9466 #. type: textblock
9467 #: ../src/guestfs-actions.pod:2178 ../fish/guestfish-actions.pod:1468
9468 msgid ""
9469 "At the system call level, this is a combination of the L<listxattr(2)> and "
9470 "L<getxattr(2)> calls."
9471 msgstr ""
9472
9473 #. type: textblock
9474 #: ../src/guestfs-actions.pod:2181
9475 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9476 msgstr ""
9477
9478 #. type: textblock
9479 #: ../src/guestfs-actions.pod:2183 ../src/guestfs-actions.pod:3635 ../src/guestfs-actions.pod:4323
9480 msgid ""
9481 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9482 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9483 msgstr ""
9484
9485 #. type: textblock
9486 #: ../src/guestfs-actions.pod:2187 ../src/guestfs-actions.pod:3639 ../src/guestfs-actions.pod:3838 ../src/guestfs-actions.pod:3874 ../src/guestfs-actions.pod:5914 ../src/guestfs-actions.pod:6406 ../src/guestfs-actions.pod:7771
9487 msgid "(Added in 1.0.59)"
9488 msgstr ""
9489
9490 #. type: =head2
9491 #: ../src/guestfs-actions.pod:2189
9492 msgid "guestfs_glob_expand"
9493 msgstr ""
9494
9495 #. type: verbatim
9496 #: ../src/guestfs-actions.pod:2191
9497 #, no-wrap
9498 msgid ""
9499 " char **\n"
9500 " guestfs_glob_expand (guestfs_h *g,\n"
9501 "                      const char *pattern);\n"
9502 "\n"
9503 msgstr ""
9504
9505 #. type: textblock
9506 #: ../src/guestfs-actions.pod:2195 ../fish/guestfish-actions.pod:1477
9507 msgid ""
9508 "This command searches for all the pathnames matching C<pattern> according to "
9509 "the wildcard expansion rules used by the shell."
9510 msgstr ""
9511
9512 #. type: textblock
9513 #: ../src/guestfs-actions.pod:2199 ../fish/guestfish-actions.pod:1481
9514 msgid "If no paths match, then this returns an empty list (note: not an error)."
9515 msgstr ""
9516
9517 #. type: textblock
9518 #: ../src/guestfs-actions.pod:2202 ../fish/guestfish-actions.pod:1484
9519 msgid ""
9520 "It is just a wrapper around the C L<glob(3)> function with flags "
9521 "C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
9522 msgstr ""
9523
9524 #. type: textblock
9525 #: ../src/guestfs-actions.pod:2210 ../src/guestfs-actions.pod:6599 ../src/guestfs-actions.pod:6616
9526 msgid "(Added in 1.0.50)"
9527 msgstr ""
9528
9529 #. type: =head2
9530 #: ../src/guestfs-actions.pod:2212
9531 msgid "guestfs_grep"
9532 msgstr ""
9533
9534 #. type: verbatim
9535 #: ../src/guestfs-actions.pod:2214
9536 #, no-wrap
9537 msgid ""
9538 " char **\n"
9539 " guestfs_grep (guestfs_h *g,\n"
9540 "               const char *regex,\n"
9541 "               const char *path);\n"
9542 "\n"
9543 msgstr ""
9544
9545 #. type: textblock
9546 #: ../src/guestfs-actions.pod:2219 ../fish/guestfish-actions.pod:1492
9547 msgid "This calls the external C<grep> program and returns the matching lines."
9548 msgstr ""
9549
9550 #. type: =head2
9551 #: ../src/guestfs-actions.pod:2231
9552 msgid "guestfs_grepi"
9553 msgstr ""
9554
9555 #. type: verbatim
9556 #: ../src/guestfs-actions.pod:2233
9557 #, no-wrap
9558 msgid ""
9559 " char **\n"
9560 " guestfs_grepi (guestfs_h *g,\n"
9561 "                const char *regex,\n"
9562 "                const char *path);\n"
9563 "\n"
9564 msgstr ""
9565
9566 #. type: textblock
9567 #: ../src/guestfs-actions.pod:2238 ../fish/guestfish-actions.pod:1502
9568 msgid "This calls the external C<grep -i> program and returns the matching lines."
9569 msgstr ""
9570
9571 #. type: =head2
9572 #: ../src/guestfs-actions.pod:2250
9573 msgid "guestfs_grub_install"
9574 msgstr ""
9575
9576 #. type: verbatim
9577 #: ../src/guestfs-actions.pod:2252
9578 #, no-wrap
9579 msgid ""
9580 " int\n"
9581 " guestfs_grub_install (guestfs_h *g,\n"
9582 "                       const char *root,\n"
9583 "                       const char *device);\n"
9584 "\n"
9585 msgstr ""
9586
9587 #. type: textblock
9588 #: ../src/guestfs-actions.pod:2257 ../fish/guestfish-actions.pod:1512
9589 msgid ""
9590 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
9591 "the root directory being C<root>."
9592 msgstr ""
9593
9594 #. type: textblock
9595 #: ../src/guestfs-actions.pod:2260 ../fish/guestfish-actions.pod:1515
9596 msgid ""
9597 "Note: If grub-install reports the error \"No suitable drive was found in the "
9598 "generated device map.\" it may be that you need to create a "
9599 "C</boot/grub/device.map> file first that contains the mapping between grub "
9600 "device names and Linux device names.  It is usually sufficient to create a "
9601 "file containing:"
9602 msgstr ""
9603
9604 #. type: verbatim
9605 #: ../src/guestfs-actions.pod:2267 ../fish/guestfish-actions.pod:1522
9606 #, no-wrap
9607 msgid ""
9608 " (hd0) /dev/vda\n"
9609 "\n"
9610 msgstr ""
9611
9612 #. type: textblock
9613 #: ../src/guestfs-actions.pod:2269 ../fish/guestfish-actions.pod:1524
9614 msgid "replacing C</dev/vda> with the name of the installation device."
9615 msgstr ""
9616
9617 #. type: textblock
9618 #: ../src/guestfs-actions.pod:2273
9619 msgid "(Added in 1.0.17)"
9620 msgstr ""
9621
9622 #. type: =head2
9623 #: ../src/guestfs-actions.pod:2275
9624 msgid "guestfs_head"
9625 msgstr ""
9626
9627 #. type: verbatim
9628 #: ../src/guestfs-actions.pod:2277
9629 #, no-wrap
9630 msgid ""
9631 " char **\n"
9632 " guestfs_head (guestfs_h *g,\n"
9633 "               const char *path);\n"
9634 "\n"
9635 msgstr ""
9636
9637 #. type: textblock
9638 #: ../src/guestfs-actions.pod:2281 ../fish/guestfish-actions.pod:1530
9639 msgid ""
9640 "This command returns up to the first 10 lines of a file as a list of "
9641 "strings."
9642 msgstr ""
9643
9644 #. type: =head2
9645 #: ../src/guestfs-actions.pod:2293
9646 msgid "guestfs_head_n"
9647 msgstr ""
9648
9649 #. type: verbatim
9650 #: ../src/guestfs-actions.pod:2295
9651 #, no-wrap
9652 msgid ""
9653 " char **\n"
9654 " guestfs_head_n (guestfs_h *g,\n"
9655 "                 int nrlines,\n"
9656 "                 const char *path);\n"
9657 "\n"
9658 msgstr ""
9659
9660 #. type: textblock
9661 #: ../src/guestfs-actions.pod:2300 ../fish/guestfish-actions.pod:1540
9662 msgid ""
9663 "If the parameter C<nrlines> is a positive number, this returns the first "
9664 "C<nrlines> lines of the file C<path>."
9665 msgstr ""
9666
9667 #. type: textblock
9668 #: ../src/guestfs-actions.pod:2303 ../fish/guestfish-actions.pod:1543
9669 msgid ""
9670 "If the parameter C<nrlines> is a negative number, this returns lines from "
9671 "the file C<path>, excluding the last C<nrlines> lines."
9672 msgstr ""
9673
9674 #. type: textblock
9675 #: ../src/guestfs-actions.pod:2306 ../src/guestfs-actions.pod:6896 ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:4591
9676 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
9677 msgstr ""
9678
9679 #. type: =head2
9680 #: ../src/guestfs-actions.pod:2317
9681 msgid "guestfs_hexdump"
9682 msgstr ""
9683
9684 #. type: verbatim
9685 #: ../src/guestfs-actions.pod:2319
9686 #, no-wrap
9687 msgid ""
9688 " char *\n"
9689 " guestfs_hexdump (guestfs_h *g,\n"
9690 "                  const char *path);\n"
9691 "\n"
9692 msgstr ""
9693
9694 #. type: textblock
9695 #: ../src/guestfs-actions.pod:2323 ../fish/guestfish-actions.pod:1555
9696 msgid ""
9697 "This runs C<hexdump -C> on the given C<path>.  The result is the "
9698 "human-readable, canonical hex dump of the file."
9699 msgstr ""
9700
9701 #. type: textblock
9702 #: ../src/guestfs-actions.pod:2332 ../src/guestfs-actions.pod:6680 ../src/guestfs-actions.pod:6735
9703 msgid "(Added in 1.0.22)"
9704 msgstr ""
9705
9706 #. type: =head2
9707 #: ../src/guestfs-actions.pod:2334
9708 msgid "guestfs_initrd_cat"
9709 msgstr ""
9710
9711 #. type: verbatim
9712 #: ../src/guestfs-actions.pod:2336
9713 #, no-wrap
9714 msgid ""
9715 " char *\n"
9716 " guestfs_initrd_cat (guestfs_h *g,\n"
9717 "                     const char *initrdpath,\n"
9718 "                     const char *filename,\n"
9719 "                     size_t *size_r);\n"
9720 "\n"
9721 msgstr ""
9722
9723 #. type: textblock
9724 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1565
9725 msgid ""
9726 "This command unpacks the file C<filename> from the initrd file called "
9727 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
9728 "character."
9729 msgstr ""
9730
9731 #. type: textblock
9732 #: ../src/guestfs-actions.pod:2346 ../fish/guestfish-actions.pod:1569
9733 msgid ""
9734 "For example, in guestfish you could use the following command to examine the "
9735 "boot script (usually called C</init>)  contained in a Linux initrd or "
9736 "initramfs image:"
9737 msgstr ""
9738
9739 #. type: verbatim
9740 #: ../src/guestfs-actions.pod:2350 ../fish/guestfish-actions.pod:1573
9741 #, no-wrap
9742 msgid ""
9743 " initrd-cat /boot/initrd-<version>.img init\n"
9744 "\n"
9745 msgstr ""
9746
9747 #. type: textblock
9748 #: ../src/guestfs-actions.pod:2352
9749 msgid "See also C<guestfs_initrd_list>."
9750 msgstr ""
9751
9752 #. type: =head2
9753 #: ../src/guestfs-actions.pod:2363
9754 msgid "guestfs_initrd_list"
9755 msgstr ""
9756
9757 #. type: verbatim
9758 #: ../src/guestfs-actions.pod:2365
9759 #, no-wrap
9760 msgid ""
9761 " char **\n"
9762 " guestfs_initrd_list (guestfs_h *g,\n"
9763 "                      const char *path);\n"
9764 "\n"
9765 msgstr ""
9766
9767 #. type: textblock
9768 #: ../src/guestfs-actions.pod:2369 ../fish/guestfish-actions.pod:1584
9769 msgid "This command lists out files contained in an initrd."
9770 msgstr ""
9771
9772 #. type: textblock
9773 #: ../src/guestfs-actions.pod:2371 ../fish/guestfish-actions.pod:1586
9774 msgid ""
9775 "The files are listed without any initial C</> character.  The files are "
9776 "listed in the order they appear (not necessarily alphabetical).  Directory "
9777 "names are listed as separate items."
9778 msgstr ""
9779
9780 #. type: textblock
9781 #: ../src/guestfs-actions.pod:2375 ../fish/guestfish-actions.pod:1590
9782 msgid ""
9783 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
9784 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
9785 "files)."
9786 msgstr ""
9787
9788 #. type: =head2
9789 #: ../src/guestfs-actions.pod:2385
9790 msgid "guestfs_inotify_add_watch"
9791 msgstr ""
9792
9793 #. type: verbatim
9794 #: ../src/guestfs-actions.pod:2387
9795 #, no-wrap
9796 msgid ""
9797 " int64_t\n"
9798 " guestfs_inotify_add_watch (guestfs_h *g,\n"
9799 "                            const char *path,\n"
9800 "                            int mask);\n"
9801 "\n"
9802 msgstr ""
9803
9804 #. type: textblock
9805 #: ../src/guestfs-actions.pod:2392 ../fish/guestfish-actions.pod:1598
9806 msgid "Watch C<path> for the events listed in C<mask>."
9807 msgstr ""
9808
9809 #. type: textblock
9810 #: ../src/guestfs-actions.pod:2394 ../fish/guestfish-actions.pod:1600
9811 msgid ""
9812 "Note that if C<path> is a directory then events within that directory are "
9813 "watched, but this does I<not> happen recursively (in subdirectories)."
9814 msgstr ""
9815
9816 #. type: textblock
9817 #: ../src/guestfs-actions.pod:2398 ../fish/guestfish-actions.pod:1604
9818 msgid ""
9819 "Note for non-C or non-Linux callers: the inotify events are defined by the "
9820 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
9821 msgstr ""
9822
9823 #. type: =head2
9824 #: ../src/guestfs-actions.pod:2406
9825 msgid "guestfs_inotify_close"
9826 msgstr ""
9827
9828 #. type: verbatim
9829 #: ../src/guestfs-actions.pod:2408
9830 #, no-wrap
9831 msgid ""
9832 " int\n"
9833 " guestfs_inotify_close (guestfs_h *g);\n"
9834 "\n"
9835 msgstr ""
9836
9837 #. type: textblock
9838 #: ../src/guestfs-actions.pod:2411 ../fish/guestfish-actions.pod:1612
9839 msgid ""
9840 "This closes the inotify handle which was previously opened by inotify_init.  "
9841 "It removes all watches, throws away any pending events, and deallocates all "
9842 "resources."
9843 msgstr ""
9844
9845 #. type: =head2
9846 #: ../src/guestfs-actions.pod:2419
9847 msgid "guestfs_inotify_files"
9848 msgstr ""
9849
9850 #. type: verbatim
9851 #: ../src/guestfs-actions.pod:2421
9852 #, no-wrap
9853 msgid ""
9854 " char **\n"
9855 " guestfs_inotify_files (guestfs_h *g);\n"
9856 "\n"
9857 msgstr ""
9858
9859 #. type: textblock
9860 #: ../src/guestfs-actions.pod:2424
9861 msgid ""
9862 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
9863 "returns a list of pathnames of objects that were touched.  The returned "
9864 "pathnames are sorted and deduplicated."
9865 msgstr ""
9866
9867 #. type: =head2
9868 #: ../src/guestfs-actions.pod:2434
9869 msgid "guestfs_inotify_init"
9870 msgstr ""
9871
9872 #. type: verbatim
9873 #: ../src/guestfs-actions.pod:2436
9874 #, no-wrap
9875 msgid ""
9876 " int\n"
9877 " guestfs_inotify_init (guestfs_h *g,\n"
9878 "                       int maxevents);\n"
9879 "\n"
9880 msgstr ""
9881
9882 #. type: textblock
9883 #: ../src/guestfs-actions.pod:2440 ../fish/guestfish-actions.pod:1628
9884 msgid ""
9885 "This command creates a new inotify handle.  The inotify subsystem can be "
9886 "used to notify events which happen to objects in the guest filesystem."
9887 msgstr ""
9888
9889 #. type: textblock
9890 #: ../src/guestfs-actions.pod:2444
9891 msgid ""
9892 "C<maxevents> is the maximum number of events which will be queued up between "
9893 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
9894 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
9895 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
9896 "throws away events, but records the fact that it threw them away by setting "
9897 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
9898 "C<guestfs_inotify_read>)."
9899 msgstr ""
9900
9901 #. type: textblock
9902 #: ../src/guestfs-actions.pod:2454
9903 msgid ""
9904 "Before any events are generated, you have to add some watches to the "
9905 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
9906 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
9907 msgstr ""
9908
9909 #. type: textblock
9910 #: ../src/guestfs-actions.pod:2460
9911 msgid ""
9912 "Queued up events should be read periodically by calling "
9913 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
9914 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
9915 "often enough then you risk the internal queue overflowing."
9916 msgstr ""
9917
9918 #. type: textblock
9919 #: ../src/guestfs-actions.pod:2467
9920 msgid ""
9921 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
9922 "This also removes any watches automatically."
9923 msgstr ""
9924
9925 #. type: textblock
9926 #: ../src/guestfs-actions.pod:2471 ../fish/guestfish-actions.pod:1659
9927 msgid ""
9928 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
9929 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
9930 "that there is one global inotify handle per libguestfs instance."
9931 msgstr ""
9932
9933 #. type: =head2
9934 #: ../src/guestfs-actions.pod:2480
9935 msgid "guestfs_inotify_read"
9936 msgstr ""
9937
9938 #. type: verbatim
9939 #: ../src/guestfs-actions.pod:2482
9940 #, no-wrap
9941 msgid ""
9942 " struct guestfs_inotify_event_list *\n"
9943 " guestfs_inotify_read (guestfs_h *g);\n"
9944 "\n"
9945 msgstr ""
9946
9947 #. type: textblock
9948 #: ../src/guestfs-actions.pod:2485 ../fish/guestfish-actions.pod:1668
9949 msgid ""
9950 "Return the complete queue of events that have happened since the previous "
9951 "read call."
9952 msgstr ""
9953
9954 #. type: textblock
9955 #: ../src/guestfs-actions.pod:2488 ../fish/guestfish-actions.pod:1671
9956 msgid "If no events have happened, this returns an empty list."
9957 msgstr ""
9958
9959 #. type: textblock
9960 #: ../src/guestfs-actions.pod:2490 ../fish/guestfish-actions.pod:1673
9961 msgid ""
9962 "I<Note>: In order to make sure that all events have been read, you must call "
9963 "this function repeatedly until it returns an empty list.  The reason is that "
9964 "the call will read events up to the maximum appliance-to-host message size "
9965 "and leave remaining events in the queue."
9966 msgstr ""
9967
9968 #. type: textblock
9969 #: ../src/guestfs-actions.pod:2496
9970 msgid ""
9971 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
9972 "there was an error.  I<The caller must call "
9973 "C<guestfs_free_inotify_event_list> after use>."
9974 msgstr ""
9975
9976 #. type: =head2
9977 #: ../src/guestfs-actions.pod:2502
9978 msgid "guestfs_inotify_rm_watch"
9979 msgstr ""
9980
9981 #. type: verbatim
9982 #: ../src/guestfs-actions.pod:2504
9983 #, no-wrap
9984 msgid ""
9985 " int\n"
9986 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
9987 "                           int wd);\n"
9988 "\n"
9989 msgstr ""
9990
9991 #. type: textblock
9992 #: ../src/guestfs-actions.pod:2508
9993 msgid ""
9994 "Remove a previously defined inotify watch.  See "
9995 "C<guestfs_inotify_add_watch>."
9996 msgstr ""
9997
9998 #. type: =head2
9999 #: ../src/guestfs-actions.pod:2515
10000 msgid "guestfs_inspect_get_arch"
10001 msgstr ""
10002
10003 #. type: verbatim
10004 #: ../src/guestfs-actions.pod:2517
10005 #, no-wrap
10006 msgid ""
10007 " char *\n"
10008 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10009 "                           const char *root);\n"
10010 "\n"
10011 msgstr ""
10012
10013 #. type: textblock
10014 #: ../src/guestfs-actions.pod:2521
10015 msgid ""
10016 "This returns the architecture of the inspected operating system.  The "
10017 "possible return values are listed under C<guestfs_file_architecture>."
10018 msgstr ""
10019
10020 #. type: textblock
10021 #: ../src/guestfs-actions.pod:2525 ../fish/guestfish-actions.pod:1694
10022 msgid ""
10023 "If the architecture could not be determined, then the string C<unknown> is "
10024 "returned."
10025 msgstr ""
10026
10027 #. type: textblock
10028 #: ../src/guestfs-actions.pod:2528 ../src/guestfs-actions.pod:2618 ../src/guestfs-actions.pod:2722 ../src/guestfs-actions.pod:2741 ../src/guestfs-actions.pod:2872 ../src/guestfs-actions.pod:2955 ../src/guestfs-actions.pod:2983 ../src/guestfs-actions.pod:3004 ../src/guestfs-actions.pod:3057 ../src/guestfs-actions.pod:3097 ../src/guestfs-actions.pod:3117 ../src/guestfs-actions.pod:3137 ../src/guestfs-actions.pod:3154 ../src/guestfs-actions.pod:3170 ../src/guestfs-actions.pod:3188 ../src/guestfs-actions.pod:3290 ../src/guestfs-actions.pod:3331 ../fish/guestfish-actions.pod:1697 ../fish/guestfish-actions.pod:1780 ../fish/guestfish-actions.pod:1859 ../fish/guestfish-actions.pod:1871 ../fish/guestfish-actions.pod:1955 ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2037 ../fish/guestfish-actions.pod:2051 ../fish/guestfish-actions.pod:2091 ../fish/guestfish-actions.pod:2123 ../fish/guestfish-actions.pod:2136 ../fish/guestfish-actions.pod:2149 ../fish/guestfish-actions.pod:2159 ../fish/guestfish-actions.pod:2169 ../fish/guestfish-actions.pod:2181 ../fish/guestfish-actions.pod:2277 ../fish/guestfish-actions.pod:2311
10029 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10030 msgstr ""
10031
10032 #. type: =head2
10033 #: ../src/guestfs-actions.pod:2535
10034 msgid "guestfs_inspect_get_distro"
10035 msgstr ""
10036
10037 #. type: verbatim
10038 #: ../src/guestfs-actions.pod:2537
10039 #, no-wrap
10040 msgid ""
10041 " char *\n"
10042 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10043 "                             const char *root);\n"
10044 "\n"
10045 msgstr ""
10046
10047 #. type: textblock
10048 #: ../src/guestfs-actions.pod:2541 ../fish/guestfish-actions.pod:1703
10049 msgid "This returns the distro (distribution) of the inspected operating system."
10050 msgstr ""
10051
10052 #. type: textblock
10053 #: ../src/guestfs-actions.pod:2544 ../fish/guestfish-actions.pod:1706
10054 msgid "Currently defined distros are:"
10055 msgstr ""
10056
10057 #. type: =item
10058 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1710
10059 msgid "\"archlinux\""
10060 msgstr ""
10061
10062 #. type: textblock
10063 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1712
10064 msgid "Arch Linux."
10065 msgstr ""
10066
10067 #. type: =item
10068 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1714
10069 msgid "\"centos\""
10070 msgstr ""
10071
10072 #. type: textblock
10073 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1716
10074 msgid "CentOS."
10075 msgstr ""
10076
10077 #. type: =item
10078 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1718
10079 msgid "\"debian\""
10080 msgstr ""
10081
10082 #. type: textblock
10083 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1720
10084 msgid "Debian."
10085 msgstr ""
10086
10087 #. type: =item
10088 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1722
10089 msgid "\"fedora\""
10090 msgstr ""
10091
10092 #. type: textblock
10093 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1724
10094 msgid "Fedora."
10095 msgstr ""
10096
10097 #. type: =item
10098 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1726
10099 msgid "\"gentoo\""
10100 msgstr ""
10101
10102 #. type: textblock
10103 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1728
10104 msgid "Gentoo."
10105 msgstr ""
10106
10107 #. type: =item
10108 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1730
10109 msgid "\"linuxmint\""
10110 msgstr ""
10111
10112 #. type: textblock
10113 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1732
10114 msgid "Linux Mint."
10115 msgstr ""
10116
10117 #. type: =item
10118 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1734
10119 msgid "\"mandriva\""
10120 msgstr ""
10121
10122 #. type: textblock
10123 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1736
10124 msgid "Mandriva."
10125 msgstr ""
10126
10127 #. type: =item
10128 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1738
10129 msgid "\"meego\""
10130 msgstr ""
10131
10132 #. type: textblock
10133 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1740
10134 msgid "MeeGo."
10135 msgstr ""
10136
10137 #. type: =item
10138 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1742
10139 msgid "\"pardus\""
10140 msgstr ""
10141
10142 #. type: textblock
10143 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1744
10144 msgid "Pardus."
10145 msgstr ""
10146
10147 #. type: =item
10148 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1746
10149 msgid "\"redhat-based\""
10150 msgstr ""
10151
10152 #. type: textblock
10153 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1748
10154 msgid "Some Red Hat-derived distro."
10155 msgstr ""
10156
10157 #. type: =item
10158 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1750
10159 msgid "\"rhel\""
10160 msgstr ""
10161
10162 #. type: textblock
10163 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1752
10164 msgid "Red Hat Enterprise Linux."
10165 msgstr ""
10166
10167 #. type: =item
10168 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1754
10169 msgid "\"scientificlinux\""
10170 msgstr ""
10171
10172 #. type: textblock
10173 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1756
10174 msgid "Scientific Linux."
10175 msgstr ""
10176
10177 #. type: =item
10178 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1758
10179 msgid "\"slackware\""
10180 msgstr ""
10181
10182 #. type: textblock
10183 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1760
10184 msgid "Slackware."
10185 msgstr ""
10186
10187 #. type: =item
10188 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1762
10189 msgid "\"ubuntu\""
10190 msgstr ""
10191
10192 #. type: textblock
10193 #: ../src/guestfs-actions.pod:2602 ../fish/guestfish-actions.pod:1764
10194 msgid "Ubuntu."
10195 msgstr ""
10196
10197 #. type: =item
10198 #: ../src/guestfs-actions.pod:2604 ../src/guestfs-actions.pod:2713 ../src/guestfs-actions.pod:3088 ../fish/guestfish-actions.pod:1766 ../fish/guestfish-actions.pod:1850 ../fish/guestfish-actions.pod:2114
10199 msgid "\"unknown\""
10200 msgstr ""
10201
10202 #. type: textblock
10203 #: ../src/guestfs-actions.pod:2606 ../fish/guestfish-actions.pod:1768
10204 msgid "The distro could not be determined."
10205 msgstr ""
10206
10207 #. type: =item
10208 #: ../src/guestfs-actions.pod:2608 ../src/guestfs-actions.pod:3080 ../fish/guestfish-actions.pod:1770 ../fish/guestfish-actions.pod:2106
10209 msgid "\"windows\""
10210 msgstr ""
10211
10212 #. type: textblock
10213 #: ../src/guestfs-actions.pod:2610 ../fish/guestfish-actions.pod:1772
10214 msgid ""
10215 "Windows does not have distributions.  This string is returned if the OS type "
10216 "is Windows."
10217 msgstr ""
10218
10219 #. type: textblock
10220 #: ../src/guestfs-actions.pod:2615 ../src/guestfs-actions.pod:2719 ../src/guestfs-actions.pod:3094 ../fish/guestfish-actions.pod:1777 ../fish/guestfish-actions.pod:1856 ../fish/guestfish-actions.pod:2120
10221 msgid ""
10222 "Future versions of libguestfs may return other strings here.  The caller "
10223 "should be prepared to handle any string."
10224 msgstr ""
10225
10226 #. type: =head2
10227 #: ../src/guestfs-actions.pod:2625
10228 msgid "guestfs_inspect_get_drive_mappings"
10229 msgstr ""
10230
10231 #. type: verbatim
10232 #: ../src/guestfs-actions.pod:2627
10233 #, no-wrap
10234 msgid ""
10235 " char **\n"
10236 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10237 "                                     const char *root);\n"
10238 "\n"
10239 msgstr ""
10240
10241 #. type: textblock
10242 #: ../src/guestfs-actions.pod:2631 ../fish/guestfish-actions.pod:1786
10243 msgid ""
10244 "This call is useful for Windows which uses a primitive system of assigning "
10245 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10246 "Windows Registry to find out how disks/partitions are mapped to drive "
10247 "letters, and returns a hash table as in the example below:"
10248 msgstr ""
10249
10250 #. type: verbatim
10251 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1792
10252 #, no-wrap
10253 msgid ""
10254 " C      =>     /dev/vda2\n"
10255 " E      =>     /dev/vdb1\n"
10256 " F      =>     /dev/vdc1\n"
10257 "\n"
10258 msgstr ""
10259
10260 #. type: textblock
10261 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1796
10262 msgid ""
10263 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10264 "and just contains the drive letter, without the customary colon separator "
10265 "character."
10266 msgstr ""
10267
10268 #. type: textblock
10269 #: ../src/guestfs-actions.pod:2645 ../fish/guestfish-actions.pod:1800
10270 msgid ""
10271 "In future we may support other operating systems that also used drive "
10272 "letters, but the keys for those might not be case insensitive and might be "
10273 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10274 "C<h1> etc."
10275 msgstr ""
10276
10277 #. type: textblock
10278 #: ../src/guestfs-actions.pod:2650 ../fish/guestfish-actions.pod:1805
10279 msgid ""
10280 "For Windows guests, currently only hard drive mappings are returned.  "
10281 "Removable disks (eg. DVD-ROMs) are ignored."
10282 msgstr ""
10283
10284 #. type: textblock
10285 #: ../src/guestfs-actions.pod:2653 ../fish/guestfish-actions.pod:1808
10286 msgid ""
10287 "For guests that do not use drive mappings, or if the drive mappings could "
10288 "not be determined, this returns an empty hash table."
10289 msgstr ""
10290
10291 #. type: textblock
10292 #: ../src/guestfs-actions.pod:2656
10293 msgid ""
10294 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10295 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10296 msgstr ""
10297
10298 #. type: textblock
10299 #: ../src/guestfs-actions.pod:2660 ../src/guestfs-actions.pod:2928 ../src/guestfs-actions.pod:3726 ../src/guestfs-actions.pod:5008 ../src/guestfs-actions.pod:7037
10300 msgid ""
10301 "This function returns a NULL-terminated array of strings, or NULL if there "
10302 "was an error.  The array of strings will always have length C<2n+1>, where "
10303 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10304 "caller must free the strings and the array after use>."
10305 msgstr ""
10306
10307 #. type: textblock
10308 #: ../src/guestfs-actions.pod:2666 ../src/guestfs-actions.pod:3122
10309 msgid "(Added in 1.9.17)"
10310 msgstr ""
10311
10312 #. type: =head2
10313 #: ../src/guestfs-actions.pod:2668
10314 msgid "guestfs_inspect_get_filesystems"
10315 msgstr ""
10316
10317 #. type: verbatim
10318 #: ../src/guestfs-actions.pod:2670
10319 #, no-wrap
10320 msgid ""
10321 " char **\n"
10322 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10323 "                                  const char *root);\n"
10324 "\n"
10325 msgstr ""
10326
10327 #. type: textblock
10328 #: ../src/guestfs-actions.pod:2674 ../fish/guestfish-actions.pod:1819
10329 msgid ""
10330 "This returns a list of all the filesystems that we think are associated with "
10331 "this operating system.  This includes the root filesystem, other ordinary "
10332 "filesystems, and non-mounted devices like swap partitions."
10333 msgstr ""
10334
10335 #. type: textblock
10336 #: ../src/guestfs-actions.pod:2679 ../fish/guestfish-actions.pod:1824
10337 msgid ""
10338 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10339 "to be shared between operating systems."
10340 msgstr ""
10341
10342 #. type: textblock
10343 #: ../src/guestfs-actions.pod:2682
10344 msgid ""
10345 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10346 "C<guestfs_inspect_get_mountpoints>."
10347 msgstr ""
10348
10349 #. type: =head2
10350 #: ../src/guestfs-actions.pod:2691
10351 msgid "guestfs_inspect_get_format"
10352 msgstr ""
10353
10354 #. type: verbatim
10355 #: ../src/guestfs-actions.pod:2693
10356 #, no-wrap
10357 msgid ""
10358 " char *\n"
10359 " guestfs_inspect_get_format (guestfs_h *g,\n"
10360 "                             const char *root);\n"
10361 "\n"
10362 msgstr ""
10363
10364 #. type: textblock
10365 #: ../src/guestfs-actions.pod:2697 ../fish/guestfish-actions.pod:1834
10366 msgid ""
10367 "This returns the format of the inspected operating system.  You can use it "
10368 "to detect install images, live CDs and similar."
10369 msgstr ""
10370
10371 #. type: textblock
10372 #: ../src/guestfs-actions.pod:2700 ../fish/guestfish-actions.pod:1837
10373 msgid "Currently defined formats are:"
10374 msgstr ""
10375
10376 #. type: =item
10377 #: ../src/guestfs-actions.pod:2704 ../fish/guestfish-actions.pod:1841
10378 msgid "\"installed\""
10379 msgstr ""
10380
10381 #. type: textblock
10382 #: ../src/guestfs-actions.pod:2706 ../fish/guestfish-actions.pod:1843
10383 msgid "This is an installed operating system."
10384 msgstr ""
10385
10386 #. type: =item
10387 #: ../src/guestfs-actions.pod:2708 ../fish/guestfish-actions.pod:1845
10388 msgid "\"installer\""
10389 msgstr ""
10390
10391 #. type: textblock
10392 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1847
10393 msgid ""
10394 "The disk image being inspected is not an installed operating system, but a "
10395 "I<bootable> install disk, live CD, or similar."
10396 msgstr ""
10397
10398 #. type: textblock
10399 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1852
10400 msgid "The format of this disk image is not known."
10401 msgstr ""
10402
10403 #. type: textblock
10404 #: ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:3158 ../src/guestfs-actions.pod:3174 ../src/guestfs-actions.pod:3192 ../src/guestfs-actions.pod:5952
10405 msgid "(Added in 1.9.4)"
10406 msgstr ""
10407
10408 #. type: =head2
10409 #: ../src/guestfs-actions.pod:2729
10410 msgid "guestfs_inspect_get_hostname"
10411 msgstr ""
10412
10413 #. type: verbatim
10414 #: ../src/guestfs-actions.pod:2731
10415 #, no-wrap
10416 msgid ""
10417 " char *\n"
10418 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10419 "                               const char *root);\n"
10420 "\n"
10421 msgstr ""
10422
10423 #. type: textblock
10424 #: ../src/guestfs-actions.pod:2735 ../fish/guestfish-actions.pod:1865
10425 msgid ""
10426 "This function returns the hostname of the operating system as found by "
10427 "inspection of the guest's configuration files."
10428 msgstr ""
10429
10430 #. type: textblock
10431 #: ../src/guestfs-actions.pod:2738 ../fish/guestfish-actions.pod:1868
10432 msgid ""
10433 "If the hostname could not be determined, then the string C<unknown> is "
10434 "returned."
10435 msgstr ""
10436
10437 #. type: textblock
10438 #: ../src/guestfs-actions.pod:2746
10439 msgid "(Added in 1.7.9)"
10440 msgstr ""
10441
10442 #. type: =head2
10443 #: ../src/guestfs-actions.pod:2748
10444 msgid "guestfs_inspect_get_icon"
10445 msgstr ""
10446
10447 #. type: verbatim
10448 #: ../src/guestfs-actions.pod:2750
10449 #, no-wrap
10450 msgid ""
10451 " char *\n"
10452 " guestfs_inspect_get_icon (guestfs_h *g,\n"
10453 "                           const char *root,\n"
10454 "                           size_t *size_r,\n"
10455 "                           ...);\n"
10456 "\n"
10457 msgstr ""
10458
10459 #. type: verbatim
10460 #: ../src/guestfs-actions.pod:2761
10461 #, no-wrap
10462 msgid ""
10463 " GUESTFS_INSPECT_GET_ICON_FAVICON, int favicon,\n"
10464 " GUESTFS_INSPECT_GET_ICON_HIGHQUALITY, int highquality,\n"
10465 "\n"
10466 msgstr ""
10467
10468 #. type: textblock
10469 #: ../src/guestfs-actions.pod:2764 ../fish/guestfish-actions.pod:1877
10470 msgid ""
10471 "This function returns an icon corresponding to the inspected operating "
10472 "system.  The icon is returned as a buffer containing a PNG image (re-encoded "
10473 "to PNG if necessary)."
10474 msgstr ""
10475
10476 #. type: textblock
10477 #: ../src/guestfs-actions.pod:2768 ../fish/guestfish-actions.pod:1881
10478 msgid ""
10479 "If it was not possible to get an icon this function returns a zero-length "
10480 "(non-NULL) buffer.  I<Callers must check for this case>."
10481 msgstr ""
10482
10483 #. type: textblock
10484 #: ../src/guestfs-actions.pod:2771 ../fish/guestfish-actions.pod:1884
10485 msgid ""
10486 "Libguestfs will start by looking for a file called C</etc/favicon.png> or "
10487 "C<C:\\etc\\favicon.png> and if it has the correct format, the contents of "
10488 "this file will be returned.  You can disable favicons by passing the "
10489 "optional C<favicon> boolean as false (default is true)."
10490 msgstr ""
10491
10492 #. type: textblock
10493 #: ../src/guestfs-actions.pod:2777 ../fish/guestfish-actions.pod:1890
10494 msgid ""
10495 "If finding the favicon fails, then we look in other places in the guest for "
10496 "a suitable icon."
10497 msgstr ""
10498
10499 #. type: textblock
10500 #: ../src/guestfs-actions.pod:2780 ../fish/guestfish-actions.pod:1893
10501 msgid ""
10502 "If the optional C<highquality> boolean is true then only high quality icons "
10503 "are returned, which means only icons of high resolution with an alpha "
10504 "channel.  The default (false) is to return any icon we can, even if it is of "
10505 "substandard quality."
10506 msgstr ""
10507
10508 #. type: textblock
10509 #: ../src/guestfs-actions.pod:2791 ../fish/guestfish-actions.pod:1904
10510 msgid ""
10511 "Unlike most other inspection API calls, the guest's disks must be mounted up "
10512 "before you call this, since it needs to read information from the guest "
10513 "filesystem during the call."
10514 msgstr ""
10515
10516 #. type: textblock
10517 #: ../src/guestfs-actions.pod:2797 ../fish/guestfish-actions.pod:1910
10518 msgid ""
10519 "B<Security:> The icon data comes from the untrusted guest, and should be "
10520 "treated with caution.  PNG files have been known to contain exploits.  "
10521 "Ensure that libpng (or other relevant libraries) are fully up to date before "
10522 "trying to process or display the icon."
10523 msgstr ""
10524
10525 #. type: textblock
10526 #: ../src/guestfs-actions.pod:2805 ../fish/guestfish-actions.pod:1918
10527 msgid ""
10528 "The PNG image returned can be any size.  It might not be square.  Libguestfs "
10529 "tries to return the largest, highest quality icon available.  The "
10530 "application must scale the icon to the required size."
10531 msgstr ""
10532
10533 #. type: textblock
10534 #: ../src/guestfs-actions.pod:2812 ../fish/guestfish-actions.pod:1925
10535 msgid ""
10536 "Extracting icons from Windows guests requires the external C<wrestool> "
10537 "program from the C<icoutils> package, and several programs (C<bmptopnm>, "
10538 "C<pnmtopng>, C<pamcut>)  from the C<netpbm> package.  These must be "
10539 "installed separately."
10540 msgstr ""
10541
10542 #. type: textblock
10543 #: ../src/guestfs-actions.pod:2819 ../fish/guestfish-actions.pod:1932
10544 msgid ""
10545 "Operating system icons are usually trademarks.  Seek legal advice before "
10546 "using trademarks in applications."
10547 msgstr ""
10548
10549 #. type: textblock
10550 #: ../src/guestfs-actions.pod:2828 ../src/guestfs-actions.pod:3653 ../src/guestfs-actions.pod:4907
10551 msgid "(Added in 1.11.12)"
10552 msgstr ""
10553
10554 #. type: =head2
10555 #: ../src/guestfs-actions.pod:2830
10556 msgid "guestfs_inspect_get_icon_va"
10557 msgstr ""
10558
10559 #. type: verbatim
10560 #: ../src/guestfs-actions.pod:2832
10561 #, no-wrap
10562 msgid ""
10563 " char *\n"
10564 " guestfs_inspect_get_icon_va (guestfs_h *g,\n"
10565 "                              const char *root,\n"
10566 "                              size_t *size_r,\n"
10567 "                              va_list args);\n"
10568 "\n"
10569 msgstr ""
10570
10571 #. type: textblock
10572 #: ../src/guestfs-actions.pod:2838
10573 msgid "This is the \"va_list variant\" of L</guestfs_inspect_get_icon>."
10574 msgstr ""
10575
10576 #. type: =head2
10577 #: ../src/guestfs-actions.pod:2842
10578 msgid "guestfs_inspect_get_icon_argv"
10579 msgstr ""
10580
10581 #. type: verbatim
10582 #: ../src/guestfs-actions.pod:2844
10583 #, no-wrap
10584 msgid ""
10585 " char *\n"
10586 " guestfs_inspect_get_icon_argv (guestfs_h *g,\n"
10587 "                                const char *root,\n"
10588 "                                size_t *size_r,\n"
10589 "                                const struct guestfs_inspect_get_icon_argv "
10590 "*optargs);\n"
10591 "\n"
10592 msgstr ""
10593
10594 #. type: textblock
10595 #: ../src/guestfs-actions.pod:2850
10596 msgid "This is the \"argv variant\" of L</guestfs_inspect_get_icon>."
10597 msgstr ""
10598
10599 #. type: =head2
10600 #: ../src/guestfs-actions.pod:2854
10601 msgid "guestfs_inspect_get_major_version"
10602 msgstr ""
10603
10604 #. type: verbatim
10605 #: ../src/guestfs-actions.pod:2856
10606 #, no-wrap
10607 msgid ""
10608 " int\n"
10609 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10610 "                                    const char *root);\n"
10611 "\n"
10612 msgstr ""
10613
10614 #. type: textblock
10615 #: ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1943
10616 msgid "This returns the major version number of the inspected operating system."
10617 msgstr ""
10618
10619 #. type: textblock
10620 #: ../src/guestfs-actions.pod:2863 ../fish/guestfish-actions.pod:1946
10621 msgid ""
10622 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10623 "popular public names used by the operating system.  Notably the operating "
10624 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10625 "1).  You can find out the real versions corresponding to releases of Windows "
10626 "by consulting Wikipedia or MSDN."
10627 msgstr ""
10628
10629 #. type: textblock
10630 #: ../src/guestfs-actions.pod:2870 ../src/guestfs-actions.pod:2887 ../fish/guestfish-actions.pod:1953 ../fish/guestfish-actions.pod:1964
10631 msgid "If the version could not be determined, then C<0> is returned."
10632 msgstr ""
10633
10634 #. type: =head2
10635 #: ../src/guestfs-actions.pod:2878
10636 msgid "guestfs_inspect_get_minor_version"
10637 msgstr ""
10638
10639 #. type: verbatim
10640 #: ../src/guestfs-actions.pod:2880
10641 #, no-wrap
10642 msgid ""
10643 " int\n"
10644 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
10645 "                                    const char *root);\n"
10646 "\n"
10647 msgstr ""
10648
10649 #. type: textblock
10650 #: ../src/guestfs-actions.pod:2884 ../fish/guestfish-actions.pod:1961
10651 msgid "This returns the minor version number of the inspected operating system."
10652 msgstr ""
10653
10654 #. type: textblock
10655 #: ../src/guestfs-actions.pod:2889
10656 msgid ""
10657 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10658 "C<guestfs_inspect_get_major_version>."
10659 msgstr ""
10660
10661 #. type: =head2
10662 #: ../src/guestfs-actions.pod:2896
10663 msgid "guestfs_inspect_get_mountpoints"
10664 msgstr ""
10665
10666 #. type: verbatim
10667 #: ../src/guestfs-actions.pod:2898
10668 #, no-wrap
10669 msgid ""
10670 " char **\n"
10671 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
10672 "                                  const char *root);\n"
10673 "\n"
10674 msgstr ""
10675
10676 #. type: textblock
10677 #: ../src/guestfs-actions.pod:2902 ../fish/guestfish-actions.pod:1973
10678 msgid ""
10679 "This returns a hash of where we think the filesystems associated with this "
10680 "operating system should be mounted.  Callers should note that this is at "
10681 "best an educated guess made by reading configuration files such as "
10682 "C</etc/fstab>.  I<In particular note> that this may return filesystems which "
10683 "are non-existent or not mountable and callers should be prepared to handle "
10684 "or ignore failures if they try to mount them."
10685 msgstr ""
10686
10687 #. type: textblock
10688 #: ../src/guestfs-actions.pod:2911 ../fish/guestfish-actions.pod:1982
10689 msgid ""
10690 "Each element in the returned hashtable has a key which is the path of the "
10691 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
10692 "mounted there (eg. C</dev/sda1>)."
10693 msgstr ""
10694
10695 #. type: textblock
10696 #: ../src/guestfs-actions.pod:2916 ../fish/guestfish-actions.pod:1987
10697 msgid "Non-mounted devices such as swap devices are I<not> returned in this list."
10698 msgstr ""
10699
10700 #. type: textblock
10701 #: ../src/guestfs-actions.pod:2919
10702 msgid ""
10703 "For operating systems like Windows which still use drive letters, this call "
10704 "will only return an entry for the first drive \"mounted on\" C</>.  For "
10705 "information about the mapping of drive letters to partitions, see "
10706 "C<guestfs_inspect_get_drive_mappings>."
10707 msgstr ""
10708
10709 #. type: textblock
10710 #: ../src/guestfs-actions.pod:2925
10711 msgid ""
10712 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10713 "C<guestfs_inspect_get_filesystems>."
10714 msgstr ""
10715
10716 #. type: =head2
10717 #: ../src/guestfs-actions.pod:2936
10718 msgid "guestfs_inspect_get_package_format"
10719 msgstr ""
10720
10721 #. type: verbatim
10722 #: ../src/guestfs-actions.pod:2938
10723 #, no-wrap
10724 msgid ""
10725 " char *\n"
10726 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
10727 "                                     const char *root);\n"
10728 "\n"
10729 msgstr ""
10730
10731 #. type: textblock
10732 #: ../src/guestfs-actions.pod:2942
10733 msgid ""
10734 "This function and C<guestfs_inspect_get_package_management> return the "
10735 "package format and package management tool used by the inspected operating "
10736 "system.  For example for Fedora these functions would return C<rpm> (package "
10737 "format) and C<yum> (package management)."
10738 msgstr ""
10739
10740 #. type: textblock
10741 #: ../src/guestfs-actions.pod:2948 ../fish/guestfish-actions.pod:2009
10742 msgid ""
10743 "This returns the string C<unknown> if we could not determine the package "
10744 "format I<or> if the operating system does not have a real packaging system "
10745 "(eg. Windows)."
10746 msgstr ""
10747
10748 #. type: textblock
10749 #: ../src/guestfs-actions.pod:2952 ../fish/guestfish-actions.pod:2013
10750 msgid ""
10751 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
10752 "Future versions of libguestfs may return other strings."
10753 msgstr ""
10754
10755 #. type: textblock
10756 #: ../src/guestfs-actions.pod:2960 ../src/guestfs-actions.pod:2988
10757 msgid "(Added in 1.7.5)"
10758 msgstr ""
10759
10760 #. type: =head2
10761 #: ../src/guestfs-actions.pod:2962
10762 msgid "guestfs_inspect_get_package_management"
10763 msgstr ""
10764
10765 #. type: verbatim
10766 #: ../src/guestfs-actions.pod:2964
10767 #, no-wrap
10768 msgid ""
10769 " char *\n"
10770 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
10771 "                                         const char *root);\n"
10772 "\n"
10773 msgstr ""
10774
10775 #. type: textblock
10776 #: ../src/guestfs-actions.pod:2968
10777 msgid ""
10778 "C<guestfs_inspect_get_package_format> and this function return the package "
10779 "format and package management tool used by the inspected operating system.  "
10780 "For example for Fedora these functions would return C<rpm> (package format) "
10781 "and C<yum> (package management)."
10782 msgstr ""
10783
10784 #. type: textblock
10785 #: ../src/guestfs-actions.pod:2974 ../fish/guestfish-actions.pod:2028
10786 msgid ""
10787 "This returns the string C<unknown> if we could not determine the package "
10788 "management tool I<or> if the operating system does not have a real packaging "
10789 "system (eg. Windows)."
10790 msgstr ""
10791
10792 #. type: textblock
10793 #: ../src/guestfs-actions.pod:2978 ../fish/guestfish-actions.pod:2032
10794 msgid ""
10795 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
10796 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
10797 "libguestfs may return other strings."
10798 msgstr ""
10799
10800 #. type: =head2
10801 #: ../src/guestfs-actions.pod:2990
10802 msgid "guestfs_inspect_get_product_name"
10803 msgstr ""
10804
10805 #. type: verbatim
10806 #: ../src/guestfs-actions.pod:2992
10807 #, no-wrap
10808 msgid ""
10809 " char *\n"
10810 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
10811 "                                   const char *root);\n"
10812 "\n"
10813 msgstr ""
10814
10815 #. type: textblock
10816 #: ../src/guestfs-actions.pod:2996 ../fish/guestfish-actions.pod:2043
10817 msgid ""
10818 "This returns the product name of the inspected operating system.  The "
10819 "product name is generally some freeform string which can be displayed to the "
10820 "user, but should not be parsed by programs."
10821 msgstr ""
10822
10823 #. type: textblock
10824 #: ../src/guestfs-actions.pod:3001 ../fish/guestfish-actions.pod:2048
10825 msgid ""
10826 "If the product name could not be determined, then the string C<unknown> is "
10827 "returned."
10828 msgstr ""
10829
10830 #. type: =head2
10831 #: ../src/guestfs-actions.pod:3011
10832 msgid "guestfs_inspect_get_product_variant"
10833 msgstr ""
10834
10835 #. type: verbatim
10836 #: ../src/guestfs-actions.pod:3013
10837 #, no-wrap
10838 msgid ""
10839 " char *\n"
10840 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
10841 "                                      const char *root);\n"
10842 "\n"
10843 msgstr ""
10844
10845 #. type: textblock
10846 #: ../src/guestfs-actions.pod:3017 ../fish/guestfish-actions.pod:2057
10847 msgid "This returns the product variant of the inspected operating system."
10848 msgstr ""
10849
10850 #. type: textblock
10851 #: ../src/guestfs-actions.pod:3020 ../fish/guestfish-actions.pod:2060
10852 msgid ""
10853 "For Windows guests, this returns the contents of the Registry key "
10854 "C<HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> "
10855 "which is usually a string such as C<Client> or C<Server> (other values are "
10856 "possible).  This can be used to distinguish consumer and enterprise versions "
10857 "of Windows that have the same version number (for example, Windows 7 and "
10858 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
10859 "the latter is C<Server>)."
10860 msgstr ""
10861
10862 #. type: textblock
10863 #: ../src/guestfs-actions.pod:3029 ../fish/guestfish-actions.pod:2069
10864 msgid ""
10865 "For enterprise Linux guests, in future we intend this to return the product "
10866 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
10867 "implemented at present."
10868 msgstr ""
10869
10870 #. type: textblock
10871 #: ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:2073
10872 msgid ""
10873 "If the product variant could not be determined, then the string C<unknown> "
10874 "is returned."
10875 msgstr ""
10876
10877 #. type: textblock
10878 #: ../src/guestfs-actions.pod:3036
10879 msgid ""
10880 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10881 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
10882 msgstr ""
10883
10884 #. type: textblock
10885 #: ../src/guestfs-actions.pod:3043
10886 msgid "(Added in 1.9.13)"
10887 msgstr ""
10888
10889 #. type: =head2
10890 #: ../src/guestfs-actions.pod:3045
10891 msgid "guestfs_inspect_get_roots"
10892 msgstr ""
10893
10894 #. type: verbatim
10895 #: ../src/guestfs-actions.pod:3047
10896 #, no-wrap
10897 msgid ""
10898 " char **\n"
10899 " guestfs_inspect_get_roots (guestfs_h *g);\n"
10900 "\n"
10901 msgstr ""
10902
10903 #. type: textblock
10904 #: ../src/guestfs-actions.pod:3050
10905 msgid ""
10906 "This function is a convenient way to get the list of root devices, as "
10907 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
10908 "the whole inspection process."
10909 msgstr ""
10910
10911 #. type: textblock
10912 #: ../src/guestfs-actions.pod:3054
10913 msgid ""
10914 "This returns an empty list if either no root devices were found or the "
10915 "caller has not called C<guestfs_inspect_os>."
10916 msgstr ""
10917
10918 #. type: textblock
10919 #: ../src/guestfs-actions.pod:3063
10920 msgid "(Added in 1.7.3)"
10921 msgstr ""
10922
10923 #. type: =head2
10924 #: ../src/guestfs-actions.pod:3065
10925 msgid "guestfs_inspect_get_type"
10926 msgstr ""
10927
10928 #. type: verbatim
10929 #: ../src/guestfs-actions.pod:3067
10930 #, no-wrap
10931 msgid ""
10932 " char *\n"
10933 " guestfs_inspect_get_type (guestfs_h *g,\n"
10934 "                           const char *root);\n"
10935 "\n"
10936 msgstr ""
10937
10938 #. type: textblock
10939 #: ../src/guestfs-actions.pod:3071 ../fish/guestfish-actions.pod:2097
10940 msgid ""
10941 "This returns the type of the inspected operating system.  Currently defined "
10942 "types are:"
10943 msgstr ""
10944
10945 #. type: =item
10946 #: ../src/guestfs-actions.pod:3076 ../fish/guestfish-actions.pod:2102
10947 msgid "\"linux\""
10948 msgstr ""
10949
10950 #. type: textblock
10951 #: ../src/guestfs-actions.pod:3078 ../fish/guestfish-actions.pod:2104
10952 msgid "Any Linux-based operating system."
10953 msgstr ""
10954
10955 #. type: textblock
10956 #: ../src/guestfs-actions.pod:3082 ../fish/guestfish-actions.pod:2108
10957 msgid "Any Microsoft Windows operating system."
10958 msgstr ""
10959
10960 #. type: =item
10961 #: ../src/guestfs-actions.pod:3084 ../fish/guestfish-actions.pod:2110
10962 msgid "\"freebsd\""
10963 msgstr ""
10964
10965 #. type: textblock
10966 #: ../src/guestfs-actions.pod:3086 ../fish/guestfish-actions.pod:2112
10967 msgid "FreeBSD."
10968 msgstr ""
10969
10970 #. type: textblock
10971 #: ../src/guestfs-actions.pod:3090 ../fish/guestfish-actions.pod:2116
10972 msgid "The operating system type could not be determined."
10973 msgstr ""
10974
10975 #. type: =head2
10976 #: ../src/guestfs-actions.pod:3104
10977 msgid "guestfs_inspect_get_windows_current_control_set"
10978 msgstr ""
10979
10980 #. type: verbatim
10981 #: ../src/guestfs-actions.pod:3106
10982 #, no-wrap
10983 msgid ""
10984 " char *\n"
10985 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
10986 "                                                  const char *root);\n"
10987 "\n"
10988 msgstr ""
10989
10990 #. type: textblock
10991 #: ../src/guestfs-actions.pod:3110 ../fish/guestfish-actions.pod:2129
10992 msgid ""
10993 "This returns the Windows CurrentControlSet of the inspected guest.  The "
10994 "CurrentControlSet is a registry key name such as C<ControlSet001>."
10995 msgstr ""
10996
10997 #. type: textblock
10998 #: ../src/guestfs-actions.pod:3113 ../fish/guestfish-actions.pod:2132
10999 msgid ""
11000 "This call assumes that the guest is Windows and that the Registry could be "
11001 "examined by inspection.  If this is not the case then an error is returned."
11002 msgstr ""
11003
11004 #. type: =head2
11005 #: ../src/guestfs-actions.pod:3124
11006 msgid "guestfs_inspect_get_windows_systemroot"
11007 msgstr ""
11008
11009 #. type: verbatim
11010 #: ../src/guestfs-actions.pod:3126
11011 #, no-wrap
11012 msgid ""
11013 " char *\n"
11014 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11015 "                                         const char *root);\n"
11016 "\n"
11017 msgstr ""
11018
11019 #. type: textblock
11020 #: ../src/guestfs-actions.pod:3130 ../fish/guestfish-actions.pod:2142
11021 msgid ""
11022 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11023 "is a directory path such as C</WINDOWS>."
11024 msgstr ""
11025
11026 #. type: textblock
11027 #: ../src/guestfs-actions.pod:3133 ../fish/guestfish-actions.pod:2145
11028 msgid ""
11029 "This call assumes that the guest is Windows and that the systemroot could be "
11030 "determined by inspection.  If this is not the case then an error is "
11031 "returned."
11032 msgstr ""
11033
11034 #. type: textblock
11035 #: ../src/guestfs-actions.pod:3142
11036 msgid "(Added in 1.5.25)"
11037 msgstr ""
11038
11039 #. type: =head2
11040 #: ../src/guestfs-actions.pod:3144
11041 msgid "guestfs_inspect_is_live"
11042 msgstr ""
11043
11044 #. type: verbatim
11045 #: ../src/guestfs-actions.pod:3146
11046 #, no-wrap
11047 msgid ""
11048 " int\n"
11049 " guestfs_inspect_is_live (guestfs_h *g,\n"
11050 "                          const char *root);\n"
11051 "\n"
11052 msgstr ""
11053
11054 #. type: textblock
11055 #: ../src/guestfs-actions.pod:3150
11056 msgid ""
11057 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11058 "disk), then this returns true if a live image was detected on the disk."
11059 msgstr ""
11060
11061 #. type: =head2
11062 #: ../src/guestfs-actions.pod:3160
11063 msgid "guestfs_inspect_is_multipart"
11064 msgstr ""
11065
11066 #. type: verbatim
11067 #: ../src/guestfs-actions.pod:3162
11068 #, no-wrap
11069 msgid ""
11070 " int\n"
11071 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11072 "                               const char *root);\n"
11073 "\n"
11074 msgstr ""
11075
11076 #. type: textblock
11077 #: ../src/guestfs-actions.pod:3166
11078 msgid ""
11079 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11080 "disk), then this returns true if the disk is part of a set."
11081 msgstr ""
11082
11083 #. type: =head2
11084 #: ../src/guestfs-actions.pod:3176
11085 msgid "guestfs_inspect_is_netinst"
11086 msgstr ""
11087
11088 #. type: verbatim
11089 #: ../src/guestfs-actions.pod:3178
11090 #, no-wrap
11091 msgid ""
11092 " int\n"
11093 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11094 "                             const char *root);\n"
11095 "\n"
11096 msgstr ""
11097
11098 #. type: textblock
11099 #: ../src/guestfs-actions.pod:3182
11100 msgid ""
11101 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11102 "disk), then this returns true if the disk is a network installer, ie. not a "
11103 "self-contained install CD but one which is likely to require network access "
11104 "to complete the install."
11105 msgstr ""
11106
11107 #. type: =head2
11108 #: ../src/guestfs-actions.pod:3194
11109 msgid "guestfs_inspect_list_applications"
11110 msgstr ""
11111
11112 #. type: verbatim
11113 #: ../src/guestfs-actions.pod:3196
11114 #, no-wrap
11115 msgid ""
11116 " struct guestfs_application_list *\n"
11117 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11118 "                                    const char *root);\n"
11119 "\n"
11120 msgstr ""
11121
11122 #. type: textblock
11123 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2187
11124 msgid "Return the list of applications installed in the operating system."
11125 msgstr ""
11126
11127 #. type: textblock
11128 #: ../src/guestfs-actions.pod:3202
11129 msgid ""
11130 "I<Note:> This call works differently from other parts of the inspection "
11131 "API.  You have to call C<guestfs_inspect_os>, then "
11132 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11133 "this.  Listing applications is a significantly more difficult operation "
11134 "which requires access to the full filesystem.  Also note that unlike the "
11135 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11136 "the libguestfs handle, this call actually reads parts of the mounted "
11137 "filesystems during the call."
11138 msgstr ""
11139
11140 #. type: textblock
11141 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2199
11142 msgid ""
11143 "This returns an empty list if the inspection code was not able to determine "
11144 "the list of applications."
11145 msgstr ""
11146
11147 #. type: textblock
11148 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2202
11149 msgid "The application structure contains the following fields:"
11150 msgstr ""
11151
11152 #. type: =item
11153 #: ../src/guestfs-actions.pod:3219 ../fish/guestfish-actions.pod:2206
11154 msgid "C<app_name>"
11155 msgstr ""
11156
11157 #. type: textblock
11158 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2208
11159 msgid ""
11160 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11161 "guests, this is the package name."
11162 msgstr ""
11163
11164 #. type: =item
11165 #: ../src/guestfs-actions.pod:3224 ../fish/guestfish-actions.pod:2211
11166 msgid "C<app_display_name>"
11167 msgstr ""
11168
11169 #. type: textblock
11170 #: ../src/guestfs-actions.pod:3226 ../fish/guestfish-actions.pod:2213
11171 msgid ""
11172 "The display name of the application, sometimes localized to the install "
11173 "language of the guest operating system."
11174 msgstr ""
11175
11176 #. type: textblock
11177 #: ../src/guestfs-actions.pod:3229 ../fish/guestfish-actions.pod:2216
11178 msgid ""
11179 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11180 "to display something can use C<app_name> instead."
11181 msgstr ""
11182
11183 #. type: =item
11184 #: ../src/guestfs-actions.pod:3232 ../fish/guestfish-actions.pod:2219
11185 msgid "C<app_epoch>"
11186 msgstr ""
11187
11188 #. type: textblock
11189 #: ../src/guestfs-actions.pod:3234 ../fish/guestfish-actions.pod:2221
11190 msgid ""
11191 "For package managers which use epochs, this contains the epoch of the "
11192 "package (an integer).  If unavailable, this is returned as C<0>."
11193 msgstr ""
11194
11195 #. type: =item
11196 #: ../src/guestfs-actions.pod:3237 ../fish/guestfish-actions.pod:2224
11197 msgid "C<app_version>"
11198 msgstr ""
11199
11200 #. type: textblock
11201 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2226
11202 msgid ""
11203 "The version string of the application or package.  If unavailable this is "
11204 "returned as an empty string C<\"\">."
11205 msgstr ""
11206
11207 #. type: =item
11208 #: ../src/guestfs-actions.pod:3242 ../fish/guestfish-actions.pod:2229
11209 msgid "C<app_release>"
11210 msgstr ""
11211
11212 #. type: textblock
11213 #: ../src/guestfs-actions.pod:3244 ../fish/guestfish-actions.pod:2231
11214 msgid ""
11215 "The release string of the application or package, for package managers that "
11216 "use this.  If unavailable this is returned as an empty string C<\"\">."
11217 msgstr ""
11218
11219 #. type: =item
11220 #: ../src/guestfs-actions.pod:3248 ../fish/guestfish-actions.pod:2235
11221 msgid "C<app_install_path>"
11222 msgstr ""
11223
11224 #. type: textblock
11225 #: ../src/guestfs-actions.pod:3250 ../fish/guestfish-actions.pod:2237
11226 msgid ""
11227 "The installation path of the application (on operating systems such as "
11228 "Windows which use installation paths).  This path is in the format used by "
11229 "the guest operating system, it is not a libguestfs path."
11230 msgstr ""
11231
11232 #. type: textblock
11233 #: ../src/guestfs-actions.pod:3255 ../fish/guestfish-actions.pod:2242
11234 msgid "If unavailable this is returned as an empty string C<\"\">."
11235 msgstr ""
11236
11237 #. type: =item
11238 #: ../src/guestfs-actions.pod:3257 ../fish/guestfish-actions.pod:2244
11239 msgid "C<app_trans_path>"
11240 msgstr ""
11241
11242 #. type: textblock
11243 #: ../src/guestfs-actions.pod:3259 ../fish/guestfish-actions.pod:2246
11244 msgid ""
11245 "The install path translated into a libguestfs path.  If unavailable this is "
11246 "returned as an empty string C<\"\">."
11247 msgstr ""
11248
11249 #. type: =item
11250 #: ../src/guestfs-actions.pod:3262 ../fish/guestfish-actions.pod:2249
11251 msgid "C<app_publisher>"
11252 msgstr ""
11253
11254 #. type: textblock
11255 #: ../src/guestfs-actions.pod:3264 ../fish/guestfish-actions.pod:2251
11256 msgid ""
11257 "The name of the publisher of the application, for package managers that use "
11258 "this.  If unavailable this is returned as an empty string C<\"\">."
11259 msgstr ""
11260
11261 #. type: =item
11262 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2255
11263 msgid "C<app_url>"
11264 msgstr ""
11265
11266 #. type: textblock
11267 #: ../src/guestfs-actions.pod:3270 ../fish/guestfish-actions.pod:2257
11268 msgid ""
11269 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11270 "returned as an empty string C<\"\">."
11271 msgstr ""
11272
11273 #. type: =item
11274 #: ../src/guestfs-actions.pod:3273 ../fish/guestfish-actions.pod:2260
11275 msgid "C<app_source_package>"
11276 msgstr ""
11277
11278 #. type: textblock
11279 #: ../src/guestfs-actions.pod:3275 ../fish/guestfish-actions.pod:2262
11280 msgid ""
11281 "For packaging systems which support this, the name of the source package.  "
11282 "If unavailable this is returned as an empty string C<\"\">."
11283 msgstr ""
11284
11285 #. type: =item
11286 #: ../src/guestfs-actions.pod:3278 ../fish/guestfish-actions.pod:2265
11287 msgid "C<app_summary>"
11288 msgstr ""
11289
11290 #. type: textblock
11291 #: ../src/guestfs-actions.pod:3280 ../fish/guestfish-actions.pod:2267
11292 msgid ""
11293 "A short (usually one line) description of the application or package.  If "
11294 "unavailable this is returned as an empty string C<\"\">."
11295 msgstr ""
11296
11297 #. type: =item
11298 #: ../src/guestfs-actions.pod:3283 ../fish/guestfish-actions.pod:2270
11299 msgid "C<app_description>"
11300 msgstr ""
11301
11302 #. type: textblock
11303 #: ../src/guestfs-actions.pod:3285 ../fish/guestfish-actions.pod:2272
11304 msgid ""
11305 "A longer description of the application or package.  If unavailable this is "
11306 "returned as an empty string C<\"\">."
11307 msgstr ""
11308
11309 #. type: textblock
11310 #: ../src/guestfs-actions.pod:3292
11311 msgid ""
11312 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11313 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11314 "after use>."
11315 msgstr ""
11316
11317 #. type: textblock
11318 #: ../src/guestfs-actions.pod:3296
11319 msgid "(Added in 1.7.8)"
11320 msgstr ""
11321
11322 #. type: =head2
11323 #: ../src/guestfs-actions.pod:3298
11324 msgid "guestfs_inspect_os"
11325 msgstr ""
11326
11327 #. type: verbatim
11328 #: ../src/guestfs-actions.pod:3300
11329 #, no-wrap
11330 msgid ""
11331 " char **\n"
11332 " guestfs_inspect_os (guestfs_h *g);\n"
11333 "\n"
11334 msgstr ""
11335
11336 #. type: textblock
11337 #: ../src/guestfs-actions.pod:3303 ../fish/guestfish-actions.pod:2283
11338 msgid ""
11339 "This function uses other libguestfs functions and certain heuristics to "
11340 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11341 "for operating systems."
11342 msgstr ""
11343
11344 #. type: textblock
11345 #: ../src/guestfs-actions.pod:3307 ../fish/guestfish-actions.pod:2287
11346 msgid "The list returned is empty if no operating systems were found."
11347 msgstr ""
11348
11349 #. type: textblock
11350 #: ../src/guestfs-actions.pod:3309 ../fish/guestfish-actions.pod:2289
11351 msgid ""
11352 "If one operating system was found, then this returns a list with a single "
11353 "element, which is the name of the root filesystem of this operating system.  "
11354 "It is also possible for this function to return a list containing more than "
11355 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11356 "element being the root filesystem of one of the operating systems."
11357 msgstr ""
11358
11359 #. type: textblock
11360 #: ../src/guestfs-actions.pod:3316
11361 msgid ""
11362 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11363 "functions in order to query further information about each operating system, "
11364 "such as the name and version."
11365 msgstr ""
11366
11367 #. type: textblock
11368 #: ../src/guestfs-actions.pod:3321
11369 msgid ""
11370 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11371 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11372 "the contents.  This should be called with no disks currently mounted.  The "
11373 "function may also use Augeas, so any existing Augeas handle will be closed."
11374 msgstr ""
11375
11376 #. type: textblock
11377 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2307
11378 msgid ""
11379 "This function cannot decrypt encrypted disks.  The caller must do that first "
11380 "(supplying the necessary keys) if the disk is encrypted."
11381 msgstr ""
11382
11383 #. type: textblock
11384 #: ../src/guestfs-actions.pod:3333 ../src/guestfs-actions.pod:3664 ../src/guestfs-actions.pod:3746
11385 msgid "See also C<guestfs_list_filesystems>."
11386 msgstr ""
11387
11388 #. type: =head2
11389 #: ../src/guestfs-actions.pod:3341
11390 msgid "guestfs_is_blockdev"
11391 msgstr ""
11392
11393 #. type: verbatim
11394 #: ../src/guestfs-actions.pod:3343
11395 #, no-wrap
11396 msgid ""
11397 " int\n"
11398 " guestfs_is_blockdev (guestfs_h *g,\n"
11399 "                      const char *path);\n"
11400 "\n"
11401 msgstr ""
11402
11403 #. type: textblock
11404 #: ../src/guestfs-actions.pod:3347 ../fish/guestfish-actions.pod:2319
11405 msgid ""
11406 "This returns C<true> if and only if there is a block device with the given "
11407 "C<path> name."
11408 msgstr ""
11409
11410 #. type: textblock
11411 #: ../src/guestfs-actions.pod:3350 ../src/guestfs-actions.pod:3379 ../src/guestfs-actions.pod:3409 ../src/guestfs-actions.pod:3424 ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:3496 ../src/guestfs-actions.pod:3511
11412 msgid "See also C<guestfs_stat>."
11413 msgstr ""
11414
11415 #. type: textblock
11416 #: ../src/guestfs-actions.pod:3354 ../src/guestfs-actions.pod:3383 ../src/guestfs-actions.pod:3428 ../src/guestfs-actions.pod:3500 ../src/guestfs-actions.pod:3515
11417 msgid "(Added in 1.5.10)"
11418 msgstr ""
11419
11420 #. type: =head2
11421 #: ../src/guestfs-actions.pod:3356
11422 msgid "guestfs_is_busy"
11423 msgstr ""
11424
11425 #. type: verbatim
11426 #: ../src/guestfs-actions.pod:3358
11427 #, no-wrap
11428 msgid ""
11429 " int\n"
11430 " guestfs_is_busy (guestfs_h *g);\n"
11431 "\n"
11432 msgstr ""
11433
11434 #. type: textblock
11435 #: ../src/guestfs-actions.pod:3361 ../fish/guestfish-actions.pod:2328
11436 msgid ""
11437 "This returns true iff this handle is busy processing a command (in the "
11438 "C<BUSY> state)."
11439 msgstr ""
11440
11441 #. type: =head2
11442 #: ../src/guestfs-actions.pod:3370
11443 msgid "guestfs_is_chardev"
11444 msgstr ""
11445
11446 #. type: verbatim
11447 #: ../src/guestfs-actions.pod:3372
11448 #, no-wrap
11449 msgid ""
11450 " int\n"
11451 " guestfs_is_chardev (guestfs_h *g,\n"
11452 "                     const char *path);\n"
11453 "\n"
11454 msgstr ""
11455
11456 #. type: textblock
11457 #: ../src/guestfs-actions.pod:3376 ../fish/guestfish-actions.pod:2337
11458 msgid ""
11459 "This returns C<true> if and only if there is a character device with the "
11460 "given C<path> name."
11461 msgstr ""
11462
11463 #. type: =head2
11464 #: ../src/guestfs-actions.pod:3385
11465 msgid "guestfs_is_config"
11466 msgstr ""
11467
11468 #. type: verbatim
11469 #: ../src/guestfs-actions.pod:3387
11470 #, no-wrap
11471 msgid ""
11472 " int\n"
11473 " guestfs_is_config (guestfs_h *g);\n"
11474 "\n"
11475 msgstr ""
11476
11477 #. type: textblock
11478 #: ../src/guestfs-actions.pod:3390 ../fish/guestfish-actions.pod:2346
11479 msgid ""
11480 "This returns true iff this handle is being configured (in the C<CONFIG> "
11481 "state)."
11482 msgstr ""
11483
11484 #. type: =head2
11485 #: ../src/guestfs-actions.pod:3399
11486 msgid "guestfs_is_dir"
11487 msgstr ""
11488
11489 #. type: verbatim
11490 #: ../src/guestfs-actions.pod:3401
11491 #, no-wrap
11492 msgid ""
11493 " int\n"
11494 " guestfs_is_dir (guestfs_h *g,\n"
11495 "                 const char *path);\n"
11496 "\n"
11497 msgstr ""
11498
11499 #. type: textblock
11500 #: ../src/guestfs-actions.pod:3405 ../fish/guestfish-actions.pod:2355
11501 msgid ""
11502 "This returns C<true> if and only if there is a directory with the given "
11503 "C<path> name.  Note that it returns false for other objects like files."
11504 msgstr ""
11505
11506 #. type: =head2
11507 #: ../src/guestfs-actions.pod:3415
11508 msgid "guestfs_is_fifo"
11509 msgstr ""
11510
11511 #. type: verbatim
11512 #: ../src/guestfs-actions.pod:3417
11513 #, no-wrap
11514 msgid ""
11515 " int\n"
11516 " guestfs_is_fifo (guestfs_h *g,\n"
11517 "                  const char *path);\n"
11518 "\n"
11519 msgstr ""
11520
11521 #. type: textblock
11522 #: ../src/guestfs-actions.pod:3421 ../fish/guestfish-actions.pod:2365
11523 msgid ""
11524 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11525 "given C<path> name."
11526 msgstr ""
11527
11528 #. type: =head2
11529 #: ../src/guestfs-actions.pod:3430
11530 msgid "guestfs_is_file"
11531 msgstr ""
11532
11533 #. type: verbatim
11534 #: ../src/guestfs-actions.pod:3432
11535 #, no-wrap
11536 msgid ""
11537 " int\n"
11538 " guestfs_is_file (guestfs_h *g,\n"
11539 "                  const char *path);\n"
11540 "\n"
11541 msgstr ""
11542
11543 #. type: textblock
11544 #: ../src/guestfs-actions.pod:3436 ../fish/guestfish-actions.pod:2374
11545 msgid ""
11546 "This returns C<true> if and only if there is a regular file with the given "
11547 "C<path> name.  Note that it returns false for other objects like "
11548 "directories."
11549 msgstr ""
11550
11551 #. type: =head2
11552 #: ../src/guestfs-actions.pod:3446
11553 msgid "guestfs_is_launching"
11554 msgstr ""
11555
11556 #. type: verbatim
11557 #: ../src/guestfs-actions.pod:3448
11558 #, no-wrap
11559 msgid ""
11560 " int\n"
11561 " guestfs_is_launching (guestfs_h *g);\n"
11562 "\n"
11563 msgstr ""
11564
11565 #. type: textblock
11566 #: ../src/guestfs-actions.pod:3451 ../fish/guestfish-actions.pod:2384
11567 msgid ""
11568 "This returns true iff this handle is launching the subprocess (in the "
11569 "C<LAUNCHING> state)."
11570 msgstr ""
11571
11572 #. type: =head2
11573 #: ../src/guestfs-actions.pod:3460
11574 msgid "guestfs_is_lv"
11575 msgstr ""
11576
11577 #. type: verbatim
11578 #: ../src/guestfs-actions.pod:3462
11579 #, no-wrap
11580 msgid ""
11581 " int\n"
11582 " guestfs_is_lv (guestfs_h *g,\n"
11583 "                const char *device);\n"
11584 "\n"
11585 msgstr ""
11586
11587 #. type: textblock
11588 #: ../src/guestfs-actions.pod:3466 ../fish/guestfish-actions.pod:2393
11589 msgid ""
11590 "This command tests whether C<device> is a logical volume, and returns true "
11591 "iff this is the case."
11592 msgstr ""
11593
11594 #. type: =head2
11595 #: ../src/guestfs-actions.pod:3473
11596 msgid "guestfs_is_ready"
11597 msgstr ""
11598
11599 #. type: verbatim
11600 #: ../src/guestfs-actions.pod:3475
11601 #, no-wrap
11602 msgid ""
11603 " int\n"
11604 " guestfs_is_ready (guestfs_h *g);\n"
11605 "\n"
11606 msgstr ""
11607
11608 #. type: textblock
11609 #: ../src/guestfs-actions.pod:3478 ../fish/guestfish-actions.pod:2400
11610 msgid ""
11611 "This returns true iff this handle is ready to accept commands (in the "
11612 "C<READY> state)."
11613 msgstr ""
11614
11615 #. type: =head2
11616 #: ../src/guestfs-actions.pod:3487
11617 msgid "guestfs_is_socket"
11618 msgstr ""
11619
11620 #. type: verbatim
11621 #: ../src/guestfs-actions.pod:3489
11622 #, no-wrap
11623 msgid ""
11624 " int\n"
11625 " guestfs_is_socket (guestfs_h *g,\n"
11626 "                    const char *path);\n"
11627 "\n"
11628 msgstr ""
11629
11630 #. type: textblock
11631 #: ../src/guestfs-actions.pod:3493 ../fish/guestfish-actions.pod:2409
11632 msgid ""
11633 "This returns C<true> if and only if there is a Unix domain socket with the "
11634 "given C<path> name."
11635 msgstr ""
11636
11637 #. type: =head2
11638 #: ../src/guestfs-actions.pod:3502
11639 msgid "guestfs_is_symlink"
11640 msgstr ""
11641
11642 #. type: verbatim
11643 #: ../src/guestfs-actions.pod:3504
11644 #, no-wrap
11645 msgid ""
11646 " int\n"
11647 " guestfs_is_symlink (guestfs_h *g,\n"
11648 "                     const char *path);\n"
11649 "\n"
11650 msgstr ""
11651
11652 #. type: textblock
11653 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2418
11654 msgid ""
11655 "This returns C<true> if and only if there is a symbolic link with the given "
11656 "C<path> name."
11657 msgstr ""
11658
11659 #. type: =head2
11660 #: ../src/guestfs-actions.pod:3517
11661 msgid "guestfs_is_zero"
11662 msgstr ""
11663
11664 #. type: verbatim
11665 #: ../src/guestfs-actions.pod:3519
11666 #, no-wrap
11667 msgid ""
11668 " int\n"
11669 " guestfs_is_zero (guestfs_h *g,\n"
11670 "                  const char *path);\n"
11671 "\n"
11672 msgstr ""
11673
11674 #. type: textblock
11675 #: ../src/guestfs-actions.pod:3523 ../fish/guestfish-actions.pod:2427
11676 msgid ""
11677 "This returns true iff the file exists and the file is empty or it contains "
11678 "all zero bytes."
11679 msgstr ""
11680
11681 #. type: textblock
11682 #: ../src/guestfs-actions.pod:3528 ../src/guestfs-actions.pod:3542
11683 msgid "(Added in 1.11.8)"
11684 msgstr ""
11685
11686 #. type: =head2
11687 #: ../src/guestfs-actions.pod:3530
11688 msgid "guestfs_is_zero_device"
11689 msgstr ""
11690
11691 #. type: verbatim
11692 #: ../src/guestfs-actions.pod:3532
11693 #, no-wrap
11694 msgid ""
11695 " int\n"
11696 " guestfs_is_zero_device (guestfs_h *g,\n"
11697 "                         const char *device);\n"
11698 "\n"
11699 msgstr ""
11700
11701 #. type: textblock
11702 #: ../src/guestfs-actions.pod:3536 ../fish/guestfish-actions.pod:2434
11703 msgid "This returns true iff the device exists and contains all zero bytes."
11704 msgstr ""
11705
11706 #. type: textblock
11707 #: ../src/guestfs-actions.pod:3538 ../fish/guestfish-actions.pod:2436
11708 msgid "Note that for large devices this can take a long time to run."
11709 msgstr ""
11710
11711 #. type: =head2
11712 #: ../src/guestfs-actions.pod:3544
11713 msgid "guestfs_kill_subprocess"
11714 msgstr ""
11715
11716 #. type: verbatim
11717 #: ../src/guestfs-actions.pod:3546
11718 #, no-wrap
11719 msgid ""
11720 " int\n"
11721 " guestfs_kill_subprocess (guestfs_h *g);\n"
11722 "\n"
11723 msgstr ""
11724
11725 #. type: textblock
11726 #: ../src/guestfs-actions.pod:3549 ../fish/guestfish-actions.pod:2442
11727 msgid "This kills the qemu subprocess.  You should never need to call this."
11728 msgstr ""
11729
11730 #. type: =head2
11731 #: ../src/guestfs-actions.pod:3555
11732 msgid "guestfs_launch"
11733 msgstr ""
11734
11735 #. type: verbatim
11736 #: ../src/guestfs-actions.pod:3557
11737 #, no-wrap
11738 msgid ""
11739 " int\n"
11740 " guestfs_launch (guestfs_h *g);\n"
11741 "\n"
11742 msgstr ""
11743
11744 #. type: textblock
11745 #: ../src/guestfs-actions.pod:3560 ../fish/guestfish-actions.pod:2450
11746 msgid ""
11747 "Internally libguestfs is implemented by running a virtual machine using "
11748 "L<qemu(1)>."
11749 msgstr ""
11750
11751 #. type: textblock
11752 #: ../src/guestfs-actions.pod:3563 ../fish/guestfish-actions.pod:2453
11753 msgid ""
11754 "You should call this after configuring the handle (eg. adding drives) but "
11755 "before performing any actions."
11756 msgstr ""
11757
11758 #. type: =head2
11759 #: ../src/guestfs-actions.pod:3575
11760 msgid "guestfs_lchown"
11761 msgstr ""
11762
11763 #. type: verbatim
11764 #: ../src/guestfs-actions.pod:3577
11765 #, no-wrap
11766 msgid ""
11767 " int\n"
11768 " guestfs_lchown (guestfs_h *g,\n"
11769 "                 int owner,\n"
11770 "                 int group,\n"
11771 "                 const char *path);\n"
11772 "\n"
11773 msgstr ""
11774
11775 #. type: textblock
11776 #: ../src/guestfs-actions.pod:3583
11777 msgid ""
11778 "Change the file owner to C<owner> and group to C<group>.  This is like "
11779 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
11780 "changed, not the target."
11781 msgstr ""
11782
11783 #. type: =head2
11784 #: ../src/guestfs-actions.pod:3595
11785 msgid "guestfs_lgetxattr"
11786 msgstr ""
11787
11788 #. type: verbatim
11789 #: ../src/guestfs-actions.pod:3597
11790 #, no-wrap
11791 msgid ""
11792 " char *\n"
11793 " guestfs_lgetxattr (guestfs_h *g,\n"
11794 "                    const char *path,\n"
11795 "                    const char *name,\n"
11796 "                    size_t *size_r);\n"
11797 "\n"
11798 msgstr ""
11799
11800 #. type: textblock
11801 #: ../src/guestfs-actions.pod:3603 ../fish/guestfish-actions.pod:2472
11802 msgid ""
11803 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
11804 "is a symlink, then this call returns an extended attribute from the symlink."
11805 msgstr ""
11806
11807 #. type: textblock
11808 #: ../src/guestfs-actions.pod:3617
11809 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
11810 msgstr ""
11811
11812 #. type: =head2
11813 #: ../src/guestfs-actions.pod:3625
11814 msgid "guestfs_lgetxattrs"
11815 msgstr ""
11816
11817 #. type: verbatim
11818 #: ../src/guestfs-actions.pod:3627
11819 #, no-wrap
11820 msgid ""
11821 " struct guestfs_xattr_list *\n"
11822 " guestfs_lgetxattrs (guestfs_h *g,\n"
11823 "                     const char *path);\n"
11824 "\n"
11825 msgstr ""
11826
11827 #. type: textblock
11828 #: ../src/guestfs-actions.pod:3631
11829 msgid ""
11830 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
11831 "then it returns the extended attributes of the link itself."
11832 msgstr ""
11833
11834 #. type: =head2
11835 #: ../src/guestfs-actions.pod:3641
11836 msgid "guestfs_list_9p"
11837 msgstr ""
11838
11839 #. type: verbatim
11840 #: ../src/guestfs-actions.pod:3643
11841 #, no-wrap
11842 msgid ""
11843 " char **\n"
11844 " guestfs_list_9p (guestfs_h *g);\n"
11845 "\n"
11846 msgstr ""
11847
11848 #. type: textblock
11849 #: ../src/guestfs-actions.pod:3646 ../fish/guestfish-actions.pod:2500
11850 msgid ""
11851 "List all 9p filesystems attached to the guest.  A list of mount tags is "
11852 "returned."
11853 msgstr ""
11854
11855 #. type: =head2
11856 #: ../src/guestfs-actions.pod:3655
11857 msgid "guestfs_list_devices"
11858 msgstr ""
11859
11860 #. type: verbatim
11861 #: ../src/guestfs-actions.pod:3657
11862 #, no-wrap
11863 msgid ""
11864 " char **\n"
11865 " guestfs_list_devices (guestfs_h *g);\n"
11866 "\n"
11867 msgstr ""
11868
11869 #. type: textblock
11870 #: ../src/guestfs-actions.pod:3660 ../fish/guestfish-actions.pod:2507
11871 msgid "List all the block devices."
11872 msgstr ""
11873
11874 #. type: textblock
11875 #: ../src/guestfs-actions.pod:3662 ../fish/guestfish-actions.pod:2509
11876 msgid "The full block device names are returned, eg. C</dev/sda>."
11877 msgstr ""
11878
11879 #. type: =head2
11880 #: ../src/guestfs-actions.pod:3672
11881 msgid "guestfs_list_dm_devices"
11882 msgstr ""
11883
11884 #. type: verbatim
11885 #: ../src/guestfs-actions.pod:3674
11886 #, no-wrap
11887 msgid ""
11888 " char **\n"
11889 " guestfs_list_dm_devices (guestfs_h *g);\n"
11890 "\n"
11891 msgstr ""
11892
11893 #. type: textblock
11894 #: ../src/guestfs-actions.pod:3677 ../fish/guestfish-actions.pod:2517
11895 msgid "List all device mapper devices."
11896 msgstr ""
11897
11898 #. type: textblock
11899 #: ../src/guestfs-actions.pod:3679
11900 msgid ""
11901 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
11902 "previous call to C<guestfs_luks_open>."
11903 msgstr ""
11904
11905 #. type: textblock
11906 #: ../src/guestfs-actions.pod:3682
11907 msgid ""
11908 "Device mapper devices which correspond to logical volumes are I<not> "
11909 "returned in this list.  Call C<guestfs_lvs> if you want to list logical "
11910 "volumes."
11911 msgstr ""
11912
11913 #. type: textblock
11914 #: ../src/guestfs-actions.pod:3690 ../src/guestfs-actions.pod:5146
11915 msgid "(Added in 1.11.15)"
11916 msgstr ""
11917
11918 #. type: =head2
11919 #: ../src/guestfs-actions.pod:3692
11920 msgid "guestfs_list_filesystems"
11921 msgstr ""
11922
11923 #. type: verbatim
11924 #: ../src/guestfs-actions.pod:3694
11925 #, no-wrap
11926 msgid ""
11927 " char **\n"
11928 " guestfs_list_filesystems (guestfs_h *g);\n"
11929 "\n"
11930 msgstr ""
11931
11932 #. type: textblock
11933 #: ../src/guestfs-actions.pod:3697 ../fish/guestfish-actions.pod:2530
11934 msgid ""
11935 "This inspection command looks for filesystems on partitions, block devices "
11936 "and logical volumes, returning a list of devices containing filesystems and "
11937 "their type."
11938 msgstr ""
11939
11940 #. type: textblock
11941 #: ../src/guestfs-actions.pod:3701 ../fish/guestfish-actions.pod:2534
11942 msgid ""
11943 "The return value is a hash, where the keys are the devices containing "
11944 "filesystems, and the values are the filesystem types.  For example:"
11945 msgstr ""
11946
11947 #. type: verbatim
11948 #: ../src/guestfs-actions.pod:3705 ../fish/guestfish-actions.pod:2538
11949 #, no-wrap
11950 msgid ""
11951 " \"/dev/sda1\" => \"ntfs\"\n"
11952 " \"/dev/sda2\" => \"ext2\"\n"
11953 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
11954 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
11955 "\n"
11956 msgstr ""
11957
11958 #. type: textblock
11959 #: ../src/guestfs-actions.pod:3710 ../fish/guestfish-actions.pod:2543
11960 msgid ""
11961 "The value can have the special value \"unknown\", meaning the content of the "
11962 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
11963 msgstr ""
11964
11965 #. type: textblock
11966 #: ../src/guestfs-actions.pod:3714
11967 msgid ""
11968 "This command runs other libguestfs commands, which might include "
11969 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
11970 "soon after launch and only when nothing is mounted."
11971 msgstr ""
11972
11973 #. type: textblock
11974 #: ../src/guestfs-actions.pod:3718
11975 msgid ""
11976 "Not all of the filesystems returned will be mountable.  In particular, swap "
11977 "partitions are returned in the list.  Also this command does not check that "
11978 "each filesystem found is valid and mountable, and some filesystems might be "
11979 "mountable but require special options.  Filesystems may not all belong to a "
11980 "single logical operating system (use C<guestfs_inspect_os> to look for "
11981 "OSes)."
11982 msgstr ""
11983
11984 #. type: textblock
11985 #: ../src/guestfs-actions.pod:3732 ../src/guestfs-actions.pod:5501
11986 msgid "(Added in 1.5.15)"
11987 msgstr ""
11988
11989 #. type: =head2
11990 #: ../src/guestfs-actions.pod:3734
11991 msgid "guestfs_list_partitions"
11992 msgstr ""
11993
11994 #. type: verbatim
11995 #: ../src/guestfs-actions.pod:3736
11996 #, no-wrap
11997 msgid ""
11998 " char **\n"
11999 " guestfs_list_partitions (guestfs_h *g);\n"
12000 "\n"
12001 msgstr ""
12002
12003 #. type: textblock
12004 #: ../src/guestfs-actions.pod:3739 ../fish/guestfish-actions.pod:2563
12005 msgid "List all the partitions detected on all block devices."
12006 msgstr ""
12007
12008 #. type: textblock
12009 #: ../src/guestfs-actions.pod:3741 ../fish/guestfish-actions.pod:2565
12010 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12011 msgstr ""
12012
12013 #. type: textblock
12014 #: ../src/guestfs-actions.pod:3743
12015 msgid ""
12016 "This does not return logical volumes.  For that you will need to call "
12017 "C<guestfs_lvs>."
12018 msgstr ""
12019
12020 #. type: =head2
12021 #: ../src/guestfs-actions.pod:3754
12022 msgid "guestfs_ll"
12023 msgstr ""
12024
12025 #. type: verbatim
12026 #: ../src/guestfs-actions.pod:3756
12027 #, no-wrap
12028 msgid ""
12029 " char *\n"
12030 " guestfs_ll (guestfs_h *g,\n"
12031 "             const char *directory);\n"
12032 "\n"
12033 msgstr ""
12034
12035 #. type: textblock
12036 #: ../src/guestfs-actions.pod:3760 ../fish/guestfish-actions.pod:2576
12037 msgid ""
12038 "List the files in C<directory> (relative to the root directory, there is no "
12039 "cwd) in the format of 'ls -la'."
12040 msgstr ""
12041
12042 #. type: textblock
12043 #: ../src/guestfs-actions.pod:3763 ../fish/guestfish-actions.pod:2579
12044 msgid ""
12045 "This command is mostly useful for interactive sessions.  It is I<not> "
12046 "intended that you try to parse the output string."
12047 msgstr ""
12048
12049 #. type: =head2
12050 #: ../src/guestfs-actions.pod:3771
12051 msgid "guestfs_ln"
12052 msgstr ""
12053
12054 #. type: verbatim
12055 #: ../src/guestfs-actions.pod:3773
12056 #, no-wrap
12057 msgid ""
12058 " int\n"
12059 " guestfs_ln (guestfs_h *g,\n"
12060 "             const char *target,\n"
12061 "             const char *linkname);\n"
12062 "\n"
12063 msgstr ""
12064
12065 #. type: textblock
12066 #: ../src/guestfs-actions.pod:3778 ../fish/guestfish-actions.pod:2586
12067 msgid "This command creates a hard link using the C<ln> command."
12068 msgstr ""
12069
12070 #. type: =head2
12071 #: ../src/guestfs-actions.pod:3784
12072 msgid "guestfs_ln_f"
12073 msgstr ""
12074
12075 #. type: verbatim
12076 #: ../src/guestfs-actions.pod:3786
12077 #, no-wrap
12078 msgid ""
12079 " int\n"
12080 " guestfs_ln_f (guestfs_h *g,\n"
12081 "               const char *target,\n"
12082 "               const char *linkname);\n"
12083 "\n"
12084 msgstr ""
12085
12086 #. type: textblock
12087 #: ../src/guestfs-actions.pod:3791 ../fish/guestfish-actions.pod:2592
12088 msgid ""
12089 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12090 "option removes the link (C<linkname>) if it exists already."
12091 msgstr ""
12092
12093 #. type: =head2
12094 #: ../src/guestfs-actions.pod:3798
12095 msgid "guestfs_ln_s"
12096 msgstr ""
12097
12098 #. type: verbatim
12099 #: ../src/guestfs-actions.pod:3800
12100 #, no-wrap
12101 msgid ""
12102 " int\n"
12103 " guestfs_ln_s (guestfs_h *g,\n"
12104 "               const char *target,\n"
12105 "               const char *linkname);\n"
12106 "\n"
12107 msgstr ""
12108
12109 #. type: textblock
12110 #: ../src/guestfs-actions.pod:3805 ../fish/guestfish-actions.pod:2599
12111 msgid "This command creates a symbolic link using the C<ln -s> command."
12112 msgstr ""
12113
12114 #. type: =head2
12115 #: ../src/guestfs-actions.pod:3811
12116 msgid "guestfs_ln_sf"
12117 msgstr ""
12118
12119 #. type: verbatim
12120 #: ../src/guestfs-actions.pod:3813
12121 #, no-wrap
12122 msgid ""
12123 " int\n"
12124 " guestfs_ln_sf (guestfs_h *g,\n"
12125 "                const char *target,\n"
12126 "                const char *linkname);\n"
12127 "\n"
12128 msgstr ""
12129
12130 #. type: textblock
12131 #: ../src/guestfs-actions.pod:3818 ../fish/guestfish-actions.pod:2605
12132 msgid ""
12133 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12134 "option removes the link (C<linkname>) if it exists already."
12135 msgstr ""
12136
12137 #. type: =head2
12138 #: ../src/guestfs-actions.pod:3825
12139 msgid "guestfs_lremovexattr"
12140 msgstr ""
12141
12142 #. type: verbatim
12143 #: ../src/guestfs-actions.pod:3827
12144 #, no-wrap
12145 msgid ""
12146 " int\n"
12147 " guestfs_lremovexattr (guestfs_h *g,\n"
12148 "                       const char *xattr,\n"
12149 "                       const char *path);\n"
12150 "\n"
12151 msgstr ""
12152
12153 #. type: textblock
12154 #: ../src/guestfs-actions.pod:3832
12155 msgid ""
12156 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12157 "link, then it removes an extended attribute of the link itself."
12158 msgstr ""
12159
12160 #. type: =head2
12161 #: ../src/guestfs-actions.pod:3840
12162 msgid "guestfs_ls"
12163 msgstr ""
12164
12165 #. type: verbatim
12166 #: ../src/guestfs-actions.pod:3842
12167 #, no-wrap
12168 msgid ""
12169 " char **\n"
12170 " guestfs_ls (guestfs_h *g,\n"
12171 "             const char *directory);\n"
12172 "\n"
12173 msgstr ""
12174
12175 #. type: textblock
12176 #: ../src/guestfs-actions.pod:3846 ../fish/guestfish-actions.pod:2620
12177 msgid ""
12178 "List the files in C<directory> (relative to the root directory, there is no "
12179 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
12180 "shown."
12181 msgstr ""
12182
12183 #. type: textblock
12184 #: ../src/guestfs-actions.pod:3850
12185 msgid ""
12186 "This command is mostly useful for interactive sessions.  Programs should "
12187 "probably use C<guestfs_readdir> instead."
12188 msgstr ""
12189
12190 #. type: =head2
12191 #: ../src/guestfs-actions.pod:3859
12192 msgid "guestfs_lsetxattr"
12193 msgstr ""
12194
12195 #. type: verbatim
12196 #: ../src/guestfs-actions.pod:3861
12197 #, no-wrap
12198 msgid ""
12199 " int\n"
12200 " guestfs_lsetxattr (guestfs_h *g,\n"
12201 "                    const char *xattr,\n"
12202 "                    const char *val,\n"
12203 "                    int vallen,\n"
12204 "                    const char *path);\n"
12205 "\n"
12206 msgstr ""
12207
12208 #. type: textblock
12209 #: ../src/guestfs-actions.pod:3868
12210 msgid ""
12211 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12212 "then it sets an extended attribute of the link itself."
12213 msgstr ""
12214
12215 #. type: =head2
12216 #: ../src/guestfs-actions.pod:3876
12217 msgid "guestfs_lstat"
12218 msgstr ""
12219
12220 #. type: verbatim
12221 #: ../src/guestfs-actions.pod:3878
12222 #, no-wrap
12223 msgid ""
12224 " struct guestfs_stat *\n"
12225 " guestfs_lstat (guestfs_h *g,\n"
12226 "                const char *path);\n"
12227 "\n"
12228 msgstr ""
12229
12230 #. type: textblock
12231 #: ../src/guestfs-actions.pod:3882 ../src/guestfs-actions.pod:6636 ../fish/guestfish-actions.pod:2639 ../fish/guestfish-actions.pod:4426
12232 msgid "Returns file information for the given C<path>."
12233 msgstr ""
12234
12235 #. type: textblock
12236 #: ../src/guestfs-actions.pod:3884
12237 msgid ""
12238 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12239 "link, then the link is stat-ed, not the file it refers to."
12240 msgstr ""
12241
12242 #. type: textblock
12243 #: ../src/guestfs-actions.pod:3888 ../fish/guestfish-actions.pod:2645
12244 msgid "This is the same as the C<lstat(2)> system call."
12245 msgstr ""
12246
12247 #. type: textblock
12248 #: ../src/guestfs-actions.pod:3890 ../src/guestfs-actions.pod:6640
12249 msgid ""
12250 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12251 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12252 msgstr ""
12253
12254 #. type: textblock
12255 #: ../src/guestfs-actions.pod:3894 ../src/guestfs-actions.pod:6644 ../src/guestfs-actions.pod:6662 ../src/guestfs-actions.pod:7043
12256 msgid "(Added in 0.9.2)"
12257 msgstr ""
12258
12259 #. type: =head2
12260 #: ../src/guestfs-actions.pod:3896
12261 msgid "guestfs_lstatlist"
12262 msgstr ""
12263
12264 #. type: verbatim
12265 #: ../src/guestfs-actions.pod:3898
12266 #, no-wrap
12267 msgid ""
12268 " struct guestfs_stat_list *\n"
12269 " guestfs_lstatlist (guestfs_h *g,\n"
12270 "                    const char *path,\n"
12271 "                    char *const *names);\n"
12272 "\n"
12273 msgstr ""
12274
12275 #. type: textblock
12276 #: ../src/guestfs-actions.pod:3903
12277 msgid ""
12278 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12279 "files, where all files are in the directory C<path>.  C<names> is the list "
12280 "of files from this directory."
12281 msgstr ""
12282
12283 #. type: textblock
12284 #: ../src/guestfs-actions.pod:3907 ../fish/guestfish-actions.pod:2655
12285 msgid ""
12286 "On return you get a list of stat structs, with a one-to-one correspondence "
12287 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12288 "then the C<ino> field of that structure is set to C<-1>."
12289 msgstr ""
12290
12291 #. type: textblock
12292 #: ../src/guestfs-actions.pod:3912
12293 msgid ""
12294 "This call is intended for programs that want to efficiently list a directory "
12295 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12296 "for a similarly efficient call for getting extended attributes.  Very long "
12297 "directory listings might cause the protocol message size to be exceeded, "
12298 "causing this call to fail.  The caller must split up such requests into "
12299 "smaller groups of names."
12300 msgstr ""
12301
12302 #. type: textblock
12303 #: ../src/guestfs-actions.pod:3920
12304 msgid ""
12305 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12306 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12307 msgstr ""
12308
12309 #. type: =head2
12310 #: ../src/guestfs-actions.pod:3926
12311 msgid "guestfs_luks_add_key"
12312 msgstr ""
12313
12314 #. type: verbatim
12315 #: ../src/guestfs-actions.pod:3928
12316 #, no-wrap
12317 msgid ""
12318 " int\n"
12319 " guestfs_luks_add_key (guestfs_h *g,\n"
12320 "                       const char *device,\n"
12321 "                       const char *key,\n"
12322 "                       const char *newkey,\n"
12323 "                       int keyslot);\n"
12324 "\n"
12325 msgstr ""
12326
12327 #. type: textblock
12328 #: ../src/guestfs-actions.pod:3935 ../fish/guestfish-actions.pod:2672
12329 msgid ""
12330 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12331 "existing key, and is used to access the device.  C<newkey> is the new key to "
12332 "add.  C<keyslot> is the key slot that will be replaced."
12333 msgstr ""
12334
12335 #. type: textblock
12336 #: ../src/guestfs-actions.pod:3940
12337 msgid ""
12338 "Note that if C<keyslot> already contains a key, then this command will "
12339 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12340 msgstr ""
12341
12342 #. type: textblock
12343 #: ../src/guestfs-actions.pod:3946 ../src/guestfs-actions.pod:3986 ../src/guestfs-actions.pod:4009 ../src/guestfs-actions.pod:4029 ../src/guestfs-actions.pod:4064 ../src/guestfs-actions.pod:4083
12344 msgid ""
12345 "This function takes a key or passphrase parameter which could contain "
12346 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12347 "information."
12348 msgstr ""
12349
12350 #. type: textblock
12351 #: ../src/guestfs-actions.pod:3950 ../src/guestfs-actions.pod:3990 ../src/guestfs-actions.pod:4013 ../src/guestfs-actions.pod:4033
12352 msgid "(Added in 1.5.2)"
12353 msgstr ""
12354
12355 #. type: =head2
12356 #: ../src/guestfs-actions.pod:3952
12357 msgid "guestfs_luks_close"
12358 msgstr ""
12359
12360 #. type: verbatim
12361 #: ../src/guestfs-actions.pod:3954
12362 #, no-wrap
12363 msgid ""
12364 " int\n"
12365 " guestfs_luks_close (guestfs_h *g,\n"
12366 "                     const char *device);\n"
12367 "\n"
12368 msgstr ""
12369
12370 #. type: textblock
12371 #: ../src/guestfs-actions.pod:3958
12372 msgid ""
12373 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12374 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12375 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12376 "underlying block device."
12377 msgstr ""
12378
12379 #. type: textblock
12380 #: ../src/guestfs-actions.pod:3966 ../src/guestfs-actions.pod:4068 ../src/guestfs-actions.pod:4087 ../src/guestfs-actions.pod:4137 ../src/guestfs-actions.pod:4185
12381 msgid "(Added in 1.5.1)"
12382 msgstr ""
12383
12384 #. type: =head2
12385 #: ../src/guestfs-actions.pod:3968
12386 msgid "guestfs_luks_format"
12387 msgstr ""
12388
12389 #. type: verbatim
12390 #: ../src/guestfs-actions.pod:3970
12391 #, no-wrap
12392 msgid ""
12393 " int\n"
12394 " guestfs_luks_format (guestfs_h *g,\n"
12395 "                      const char *device,\n"
12396 "                      const char *key,\n"
12397 "                      int keyslot);\n"
12398 "\n"
12399 msgstr ""
12400
12401 #. type: textblock
12402 #: ../src/guestfs-actions.pod:3976 ../fish/guestfish-actions.pod:2698
12403 msgid ""
12404 "This command erases existing data on C<device> and formats the device as a "
12405 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12406 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12407 msgstr ""
12408
12409 #. type: textblock
12410 #: ../src/guestfs-actions.pod:3983 ../src/guestfs-actions.pod:4006 ../src/guestfs-actions.pod:4149 ../src/guestfs-actions.pod:5252 ../src/guestfs-actions.pod:6034 ../src/guestfs-actions.pod:6443 ../src/guestfs-actions.pod:6473 ../src/guestfs-actions.pod:6506 ../src/guestfs-actions.pod:7682 ../fish/guestfish-actions.pod:2706 ../fish/guestfish-actions.pod:2719 ../fish/guestfish-actions.pod:2806 ../fish/guestfish-actions.pod:3467 ../fish/guestfish-actions.pod:3987 ../fish/guestfish-actions.pod:4297 ../fish/guestfish-actions.pod:4320 ../fish/guestfish-actions.pod:4342 ../fish/guestfish-actions.pod:5066
12411 msgid ""
12412 "B<This command is dangerous.  Without careful use you can easily destroy all "
12413 "your data>."
12414 msgstr ""
12415
12416 #. type: =head2
12417 #: ../src/guestfs-actions.pod:3992
12418 msgid "guestfs_luks_format_cipher"
12419 msgstr ""
12420
12421 #. type: verbatim
12422 #: ../src/guestfs-actions.pod:3994
12423 #, no-wrap
12424 msgid ""
12425 " int\n"
12426 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12427 "                             const char *device,\n"
12428 "                             const char *key,\n"
12429 "                             int keyslot,\n"
12430 "                             const char *cipher);\n"
12431 "\n"
12432 msgstr ""
12433
12434 #. type: textblock
12435 #: ../src/guestfs-actions.pod:4001
12436 msgid ""
12437 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12438 "set the C<cipher> used."
12439 msgstr ""
12440
12441 #. type: =head2
12442 #: ../src/guestfs-actions.pod:4015
12443 msgid "guestfs_luks_kill_slot"
12444 msgstr ""
12445
12446 #. type: verbatim
12447 #: ../src/guestfs-actions.pod:4017
12448 #, no-wrap
12449 msgid ""
12450 " int\n"
12451 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12452 "                         const char *device,\n"
12453 "                         const char *key,\n"
12454 "                         int keyslot);\n"
12455 "\n"
12456 msgstr ""
12457
12458 #. type: textblock
12459 #: ../src/guestfs-actions.pod:4023 ../fish/guestfish-actions.pod:2726
12460 msgid ""
12461 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12462 "device C<device>.  C<key> must be one of the I<other> keys."
12463 msgstr ""
12464
12465 #. type: =head2
12466 #: ../src/guestfs-actions.pod:4035
12467 msgid "guestfs_luks_open"
12468 msgstr ""
12469
12470 #. type: verbatim
12471 #: ../src/guestfs-actions.pod:4037
12472 #, no-wrap
12473 msgid ""
12474 " int\n"
12475 " guestfs_luks_open (guestfs_h *g,\n"
12476 "                    const char *device,\n"
12477 "                    const char *key,\n"
12478 "                    const char *mapname);\n"
12479 "\n"
12480 msgstr ""
12481
12482 #. type: textblock
12483 #: ../src/guestfs-actions.pod:4043 ../fish/guestfish-actions.pod:2737
12484 msgid ""
12485 "This command opens a block device which has been encrypted according to the "
12486 "Linux Unified Key Setup (LUKS) standard."
12487 msgstr ""
12488
12489 #. type: textblock
12490 #: ../src/guestfs-actions.pod:4046 ../fish/guestfish-actions.pod:2740
12491 msgid "C<device> is the encrypted block device or partition."
12492 msgstr ""
12493
12494 #. type: textblock
12495 #: ../src/guestfs-actions.pod:4048 ../fish/guestfish-actions.pod:2742
12496 msgid ""
12497 "The caller must supply one of the keys associated with the LUKS block "
12498 "device, in the C<key> parameter."
12499 msgstr ""
12500
12501 #. type: textblock
12502 #: ../src/guestfs-actions.pod:4051 ../fish/guestfish-actions.pod:2745
12503 msgid ""
12504 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12505 "writes to this block device are decrypted from and encrypted to the "
12506 "underlying C<device> respectively."
12507 msgstr ""
12508
12509 #. type: textblock
12510 #: ../src/guestfs-actions.pod:4055
12511 msgid ""
12512 "If this block device contains LVM volume groups, then calling "
12513 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12514 "visible."
12515 msgstr ""
12516
12517 #. type: textblock
12518 #: ../src/guestfs-actions.pod:4059
12519 msgid "Use C<guestfs_list_dm_devices> to list all device mapper devices."
12520 msgstr ""
12521
12522 #. type: =head2
12523 #: ../src/guestfs-actions.pod:4070
12524 msgid "guestfs_luks_open_ro"
12525 msgstr ""
12526
12527 #. type: verbatim
12528 #: ../src/guestfs-actions.pod:4072
12529 #, no-wrap
12530 msgid ""
12531 " int\n"
12532 " guestfs_luks_open_ro (guestfs_h *g,\n"
12533 "                       const char *device,\n"
12534 "                       const char *key,\n"
12535 "                       const char *mapname);\n"
12536 "\n"
12537 msgstr ""
12538
12539 #. type: textblock
12540 #: ../src/guestfs-actions.pod:4078
12541 msgid ""
12542 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12543 "created."
12544 msgstr ""
12545
12546 #. type: =head2
12547 #: ../src/guestfs-actions.pod:4089
12548 msgid "guestfs_lvcreate"
12549 msgstr ""
12550
12551 #. type: verbatim
12552 #: ../src/guestfs-actions.pod:4091
12553 #, no-wrap
12554 msgid ""
12555 " int\n"
12556 " guestfs_lvcreate (guestfs_h *g,\n"
12557 "                   const char *logvol,\n"
12558 "                   const char *volgroup,\n"
12559 "                   int mbytes);\n"
12560 "\n"
12561 msgstr ""
12562
12563 #. type: textblock
12564 #: ../src/guestfs-actions.pod:4097 ../fish/guestfish-actions.pod:2773
12565 msgid ""
12566 "This creates an LVM logical volume called C<logvol> on the volume group "
12567 "C<volgroup>, with C<size> megabytes."
12568 msgstr ""
12569
12570 #. type: =head2
12571 #: ../src/guestfs-actions.pod:4104
12572 msgid "guestfs_lvm_canonical_lv_name"
12573 msgstr ""
12574
12575 #. type: verbatim
12576 #: ../src/guestfs-actions.pod:4106
12577 #, no-wrap
12578 msgid ""
12579 " char *\n"
12580 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12581 "                                const char *lvname);\n"
12582 "\n"
12583 msgstr ""
12584
12585 #. type: textblock
12586 #: ../src/guestfs-actions.pod:4110 ../fish/guestfish-actions.pod:2780
12587 msgid ""
12588 "This converts alternative naming schemes for LVs that you might find to the "
12589 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
12590 "C</dev/VG/LV>."
12591 msgstr ""
12592
12593 #. type: textblock
12594 #: ../src/guestfs-actions.pod:4114 ../fish/guestfish-actions.pod:2784
12595 msgid ""
12596 "This command returns an error if the C<lvname> parameter does not refer to a "
12597 "logical volume."
12598 msgstr ""
12599
12600 #. type: textblock
12601 #: ../src/guestfs-actions.pod:4117
12602 msgid "See also C<guestfs_is_lv>."
12603 msgstr ""
12604
12605 #. type: textblock
12606 #: ../src/guestfs-actions.pod:4122
12607 msgid "(Added in 1.5.24)"
12608 msgstr ""
12609
12610 #. type: =head2
12611 #: ../src/guestfs-actions.pod:4124
12612 msgid "guestfs_lvm_clear_filter"
12613 msgstr ""
12614
12615 #. type: verbatim
12616 #: ../src/guestfs-actions.pod:4126
12617 #, no-wrap
12618 msgid ""
12619 " int\n"
12620 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12621 "\n"
12622 msgstr ""
12623
12624 #. type: textblock
12625 #: ../src/guestfs-actions.pod:4129
12626 msgid ""
12627 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12628 "see every block device."
12629 msgstr ""
12630
12631 #. type: textblock
12632 #: ../src/guestfs-actions.pod:4132 ../src/guestfs-actions.pod:4174 ../fish/guestfish-actions.pod:2796 ../fish/guestfish-actions.pod:2827
12633 msgid "This command also clears the LVM cache and performs a volume group scan."
12634 msgstr ""
12635
12636 #. type: =head2
12637 #: ../src/guestfs-actions.pod:4139
12638 msgid "guestfs_lvm_remove_all"
12639 msgstr ""
12640
12641 #. type: verbatim
12642 #: ../src/guestfs-actions.pod:4141
12643 #, no-wrap
12644 msgid ""
12645 " int\n"
12646 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12647 "\n"
12648 msgstr ""
12649
12650 #. type: textblock
12651 #: ../src/guestfs-actions.pod:4144 ../fish/guestfish-actions.pod:2803
12652 msgid ""
12653 "This command removes all LVM logical volumes, volume groups and physical "
12654 "volumes."
12655 msgstr ""
12656
12657 #. type: =head2
12658 #: ../src/guestfs-actions.pod:4154
12659 msgid "guestfs_lvm_set_filter"
12660 msgstr ""
12661
12662 #. type: verbatim
12663 #: ../src/guestfs-actions.pod:4156
12664 #, no-wrap
12665 msgid ""
12666 " int\n"
12667 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12668 "                         char *const *devices);\n"
12669 "\n"
12670 msgstr ""
12671
12672 #. type: textblock
12673 #: ../src/guestfs-actions.pod:4160 ../fish/guestfish-actions.pod:2813
12674 msgid ""
12675 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12676 "block devices in the list C<devices>, and will ignore all other attached "
12677 "block devices."
12678 msgstr ""
12679
12680 #. type: textblock
12681 #: ../src/guestfs-actions.pod:4164 ../fish/guestfish-actions.pod:2817
12682 msgid ""
12683 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12684 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12685 "there are two types of duplication possible: either cloned PVs/VGs which "
12686 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12687 "same name.  In normal operation you cannot create this situation, but you "
12688 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12689 "inside the LVM metadata."
12690 msgstr ""
12691
12692 #. type: textblock
12693 #: ../src/guestfs-actions.pod:4177 ../fish/guestfish-actions.pod:2830
12694 msgid "You can filter whole block devices or individual partitions."
12695 msgstr ""
12696
12697 #. type: textblock
12698 #: ../src/guestfs-actions.pod:4179 ../fish/guestfish-actions.pod:2832
12699 msgid ""
12700 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12701 "filesystem), even if you are not filtering out that VG."
12702 msgstr ""
12703
12704 #. type: =head2
12705 #: ../src/guestfs-actions.pod:4187
12706 msgid "guestfs_lvremove"
12707 msgstr ""
12708
12709 #. type: verbatim
12710 #: ../src/guestfs-actions.pod:4189
12711 #, no-wrap
12712 msgid ""
12713 " int\n"
12714 " guestfs_lvremove (guestfs_h *g,\n"
12715 "                   const char *device);\n"
12716 "\n"
12717 msgstr ""
12718
12719 #. type: textblock
12720 #: ../src/guestfs-actions.pod:4193 ../fish/guestfish-actions.pod:2840
12721 msgid ""
12722 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12723 "LV, such as C</dev/VG/LV>."
12724 msgstr ""
12725
12726 #. type: textblock
12727 #: ../src/guestfs-actions.pod:4196 ../fish/guestfish-actions.pod:2843
12728 msgid ""
12729 "You can also remove all LVs in a volume group by specifying the VG name, "
12730 "C</dev/VG>."
12731 msgstr ""
12732
12733 #. type: textblock
12734 #: ../src/guestfs-actions.pod:4201 ../src/guestfs-actions.pod:5598 ../src/guestfs-actions.pod:7413
12735 msgid "(Added in 1.0.13)"
12736 msgstr ""
12737
12738 #. type: =head2
12739 #: ../src/guestfs-actions.pod:4203
12740 msgid "guestfs_lvrename"
12741 msgstr ""
12742
12743 #. type: verbatim
12744 #: ../src/guestfs-actions.pod:4205
12745 #, no-wrap
12746 msgid ""
12747 " int\n"
12748 " guestfs_lvrename (guestfs_h *g,\n"
12749 "                   const char *logvol,\n"
12750 "                   const char *newlogvol);\n"
12751 "\n"
12752 msgstr ""
12753
12754 #. type: textblock
12755 #: ../src/guestfs-actions.pod:4210 ../fish/guestfish-actions.pod:2850
12756 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12757 msgstr ""
12758
12759 #. type: textblock
12760 #: ../src/guestfs-actions.pod:4214 ../src/guestfs-actions.pod:7426
12761 msgid "(Added in 1.0.83)"
12762 msgstr ""
12763
12764 #. type: =head2
12765 #: ../src/guestfs-actions.pod:4216
12766 msgid "guestfs_lvresize"
12767 msgstr ""
12768
12769 #. type: verbatim
12770 #: ../src/guestfs-actions.pod:4218
12771 #, no-wrap
12772 msgid ""
12773 " int\n"
12774 " guestfs_lvresize (guestfs_h *g,\n"
12775 "                   const char *device,\n"
12776 "                   int mbytes);\n"
12777 "\n"
12778 msgstr ""
12779
12780 #. type: textblock
12781 #: ../src/guestfs-actions.pod:4223 ../fish/guestfish-actions.pod:2856
12782 msgid ""
12783 "This resizes (expands or shrinks) an existing LVM logical volume to "
12784 "C<mbytes>.  When reducing, data in the reduced part is lost."
12785 msgstr ""
12786
12787 #. type: =head2
12788 #: ../src/guestfs-actions.pod:4231
12789 msgid "guestfs_lvresize_free"
12790 msgstr ""
12791
12792 #. type: verbatim
12793 #: ../src/guestfs-actions.pod:4233
12794 #, no-wrap
12795 msgid ""
12796 " int\n"
12797 " guestfs_lvresize_free (guestfs_h *g,\n"
12798 "                        const char *lv,\n"
12799 "                        int percent);\n"
12800 "\n"
12801 msgstr ""
12802
12803 #. type: textblock
12804 #: ../src/guestfs-actions.pod:4238 ../fish/guestfish-actions.pod:2864
12805 msgid ""
12806 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
12807 "remaining free space in the volume group.  Commonly you would call this with "
12808 "pc = 100 which expands the logical volume as much as possible, using all "
12809 "remaining free space in the volume group."
12810 msgstr ""
12811
12812 #. type: textblock
12813 #: ../src/guestfs-actions.pod:4246
12814 msgid "(Added in 1.3.3)"
12815 msgstr ""
12816
12817 #. type: =head2
12818 #: ../src/guestfs-actions.pod:4248
12819 msgid "guestfs_lvs"
12820 msgstr ""
12821
12822 #. type: verbatim
12823 #: ../src/guestfs-actions.pod:4250
12824 #, no-wrap
12825 msgid ""
12826 " char **\n"
12827 " guestfs_lvs (guestfs_h *g);\n"
12828 "\n"
12829 msgstr ""
12830
12831 #. type: textblock
12832 #: ../src/guestfs-actions.pod:4253 ../fish/guestfish-actions.pod:2874
12833 msgid ""
12834 "List all the logical volumes detected.  This is the equivalent of the "
12835 "L<lvs(8)> command."
12836 msgstr ""
12837
12838 #. type: textblock
12839 #: ../src/guestfs-actions.pod:4256 ../fish/guestfish-actions.pod:2877
12840 msgid ""
12841 "This returns a list of the logical volume device names "
12842 "(eg. C</dev/VolGroup00/LogVol00>)."
12843 msgstr ""
12844
12845 #. type: textblock
12846 #: ../src/guestfs-actions.pod:4259
12847 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
12848 msgstr ""
12849
12850 #. type: =head2
12851 #: ../src/guestfs-actions.pod:4267
12852 msgid "guestfs_lvs_full"
12853 msgstr ""
12854
12855 #. type: verbatim
12856 #: ../src/guestfs-actions.pod:4269
12857 #, no-wrap
12858 msgid ""
12859 " struct guestfs_lvm_lv_list *\n"
12860 " guestfs_lvs_full (guestfs_h *g);\n"
12861 "\n"
12862 msgstr ""
12863
12864 #. type: textblock
12865 #: ../src/guestfs-actions.pod:4272 ../fish/guestfish-actions.pod:2886
12866 msgid ""
12867 "List all the logical volumes detected.  This is the equivalent of the "
12868 "L<lvs(8)> command.  The \"full\" version includes all fields."
12869 msgstr ""
12870
12871 #. type: textblock
12872 #: ../src/guestfs-actions.pod:4275
12873 msgid ""
12874 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
12875 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
12876 "use>."
12877 msgstr ""
12878
12879 #. type: =head2
12880 #: ../src/guestfs-actions.pod:4281
12881 msgid "guestfs_lvuuid"
12882 msgstr ""
12883
12884 #. type: verbatim
12885 #: ../src/guestfs-actions.pod:4283
12886 #, no-wrap
12887 msgid ""
12888 " char *\n"
12889 " guestfs_lvuuid (guestfs_h *g,\n"
12890 "                 const char *device);\n"
12891 "\n"
12892 msgstr ""
12893
12894 #. type: textblock
12895 #: ../src/guestfs-actions.pod:4287 ../fish/guestfish-actions.pod:2893
12896 msgid "This command returns the UUID of the LVM LV C<device>."
12897 msgstr ""
12898
12899 #. type: =head2
12900 #: ../src/guestfs-actions.pod:4294
12901 msgid "guestfs_lxattrlist"
12902 msgstr ""
12903
12904 #. type: verbatim
12905 #: ../src/guestfs-actions.pod:4296
12906 #, no-wrap
12907 msgid ""
12908 " struct guestfs_xattr_list *\n"
12909 " guestfs_lxattrlist (guestfs_h *g,\n"
12910 "                     const char *path,\n"
12911 "                     char *const *names);\n"
12912 "\n"
12913 msgstr ""
12914
12915 #. type: textblock
12916 #: ../src/guestfs-actions.pod:4301 ../fish/guestfish-actions.pod:2899
12917 msgid ""
12918 "This call allows you to get the extended attributes of multiple files, where "
12919 "all files are in the directory C<path>.  C<names> is the list of files from "
12920 "this directory."
12921 msgstr ""
12922
12923 #. type: textblock
12924 #: ../src/guestfs-actions.pod:4305 ../fish/guestfish-actions.pod:2903
12925 msgid ""
12926 "On return you get a flat list of xattr structs which must be interpreted "
12927 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
12928 "C<attrval> in this struct is zero-length to indicate there was an error "
12929 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
12930 "number (the number of following attributes for this file, which could be "
12931 "C<\"0\">).  Then after the first xattr struct are the zero or more "
12932 "attributes for the first named file.  This repeats for the second and "
12933 "subsequent files."
12934 msgstr ""
12935
12936 #. type: textblock
12937 #: ../src/guestfs-actions.pod:4315
12938 msgid ""
12939 "This call is intended for programs that want to efficiently list a directory "
12940 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
12941 "a similarly efficient call for getting standard stats.  Very long directory "
12942 "listings might cause the protocol message size to be exceeded, causing this "
12943 "call to fail.  The caller must split up such requests into smaller groups of "
12944 "names."
12945 msgstr ""
12946
12947 #. type: =head2
12948 #: ../src/guestfs-actions.pod:4329
12949 msgid "guestfs_mkdir"
12950 msgstr ""
12951
12952 #. type: verbatim
12953 #: ../src/guestfs-actions.pod:4331
12954 #, no-wrap
12955 msgid ""
12956 " int\n"
12957 " guestfs_mkdir (guestfs_h *g,\n"
12958 "                const char *path);\n"
12959 "\n"
12960 msgstr ""
12961
12962 #. type: textblock
12963 #: ../src/guestfs-actions.pod:4335 ../fish/guestfish-actions.pod:2925
12964 msgid "Create a directory named C<path>."
12965 msgstr ""
12966
12967 #. type: =head2
12968 #: ../src/guestfs-actions.pod:4341
12969 msgid "guestfs_mkdir_mode"
12970 msgstr ""
12971
12972 #. type: verbatim
12973 #: ../src/guestfs-actions.pod:4343
12974 #, no-wrap
12975 msgid ""
12976 " int\n"
12977 " guestfs_mkdir_mode (guestfs_h *g,\n"
12978 "                     const char *path,\n"
12979 "                     int mode);\n"
12980 "\n"
12981 msgstr ""
12982
12983 #. type: textblock
12984 #: ../src/guestfs-actions.pod:4348 ../fish/guestfish-actions.pod:2931
12985 msgid ""
12986 "This command creates a directory, setting the initial permissions of the "
12987 "directory to C<mode>."
12988 msgstr ""
12989
12990 #. type: textblock
12991 #: ../src/guestfs-actions.pod:4351 ../fish/guestfish-actions.pod:2934
12992 msgid ""
12993 "For common Linux filesystems, the actual mode which is set will be C<mode & "
12994 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
12995 "other ways."
12996 msgstr ""
12997
12998 #. type: textblock
12999 #: ../src/guestfs-actions.pod:4355
13000 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13001 msgstr ""
13002
13003 #. type: =head2
13004 #: ../src/guestfs-actions.pod:4361
13005 msgid "guestfs_mkdir_p"
13006 msgstr ""
13007
13008 #. type: verbatim
13009 #: ../src/guestfs-actions.pod:4363
13010 #, no-wrap
13011 msgid ""
13012 " int\n"
13013 " guestfs_mkdir_p (guestfs_h *g,\n"
13014 "                  const char *path);\n"
13015 "\n"
13016 msgstr ""
13017
13018 #. type: textblock
13019 #: ../src/guestfs-actions.pod:4367 ../fish/guestfish-actions.pod:2944
13020 msgid ""
13021 "Create a directory named C<path>, creating any parent directories as "
13022 "necessary.  This is like the C<mkdir -p> shell command."
13023 msgstr ""
13024
13025 #. type: =head2
13026 #: ../src/guestfs-actions.pod:4374
13027 msgid "guestfs_mkdtemp"
13028 msgstr ""
13029
13030 #. type: verbatim
13031 #: ../src/guestfs-actions.pod:4376
13032 #, no-wrap
13033 msgid ""
13034 " char *\n"
13035 " guestfs_mkdtemp (guestfs_h *g,\n"
13036 "                  const char *template);\n"
13037 "\n"
13038 msgstr ""
13039
13040 #. type: textblock
13041 #: ../src/guestfs-actions.pod:4380 ../fish/guestfish-actions.pod:2951
13042 msgid ""
13043 "This command creates a temporary directory.  The C<template> parameter "
13044 "should be a full pathname for the temporary directory name with the final "
13045 "six characters being \"XXXXXX\"."
13046 msgstr ""
13047
13048 #. type: textblock
13049 #: ../src/guestfs-actions.pod:4385 ../fish/guestfish-actions.pod:2956
13050 msgid ""
13051 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13052 "being suitable for Windows filesystems."
13053 msgstr ""
13054
13055 #. type: textblock
13056 #: ../src/guestfs-actions.pod:4388 ../fish/guestfish-actions.pod:2959
13057 msgid "The name of the temporary directory that was created is returned."
13058 msgstr ""
13059
13060 #. type: textblock
13061 #: ../src/guestfs-actions.pod:4391 ../fish/guestfish-actions.pod:2962
13062 msgid "The temporary directory is created with mode 0700 and is owned by root."
13063 msgstr ""
13064
13065 #. type: textblock
13066 #: ../src/guestfs-actions.pod:4394 ../fish/guestfish-actions.pod:2965
13067 msgid ""
13068 "The caller is responsible for deleting the temporary directory and its "
13069 "contents after use."
13070 msgstr ""
13071
13072 #. type: textblock
13073 #: ../src/guestfs-actions.pod:4397 ../fish/guestfish-actions.pod:2968
13074 msgid "See also: L<mkdtemp(3)>"
13075 msgstr ""
13076
13077 #. type: =head2
13078 #: ../src/guestfs-actions.pod:4404
13079 msgid "guestfs_mke2fs_J"
13080 msgstr ""
13081
13082 #. type: verbatim
13083 #: ../src/guestfs-actions.pod:4406
13084 #, no-wrap
13085 msgid ""
13086 " int\n"
13087 " guestfs_mke2fs_J (guestfs_h *g,\n"
13088 "                   const char *fstype,\n"
13089 "                   int blocksize,\n"
13090 "                   const char *device,\n"
13091 "                   const char *journal);\n"
13092 "\n"
13093 msgstr ""
13094
13095 #. type: textblock
13096 #: ../src/guestfs-actions.pod:4413 ../fish/guestfish-actions.pod:2974
13097 msgid ""
13098 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13099 "C<journal>.  It is equivalent to the command:"
13100 msgstr ""
13101
13102 #. type: verbatim
13103 #: ../src/guestfs-actions.pod:4417 ../fish/guestfish-actions.pod:2978
13104 #, no-wrap
13105 msgid ""
13106 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13107 "\n"
13108 msgstr ""
13109
13110 #. type: textblock
13111 #: ../src/guestfs-actions.pod:4419
13112 msgid "See also C<guestfs_mke2journal>."
13113 msgstr ""
13114
13115 #. type: textblock
13116 #: ../src/guestfs-actions.pod:4423 ../src/guestfs-actions.pod:4441 ../src/guestfs-actions.pod:4459 ../src/guestfs-actions.pod:4475 ../src/guestfs-actions.pod:4489 ../src/guestfs-actions.pod:4503 ../src/guestfs-actions.pod:4562 ../src/guestfs-actions.pod:4839
13117 msgid "(Added in 1.0.68)"
13118 msgstr ""
13119
13120 #. type: =head2
13121 #: ../src/guestfs-actions.pod:4425
13122 msgid "guestfs_mke2fs_JL"
13123 msgstr ""
13124
13125 #. type: verbatim
13126 #: ../src/guestfs-actions.pod:4427
13127 #, no-wrap
13128 msgid ""
13129 " int\n"
13130 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13131 "                    const char *fstype,\n"
13132 "                    int blocksize,\n"
13133 "                    const char *device,\n"
13134 "                    const char *label);\n"
13135 "\n"
13136 msgstr ""
13137
13138 #. type: textblock
13139 #: ../src/guestfs-actions.pod:4434 ../fish/guestfish-actions.pod:2986
13140 msgid ""
13141 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13142 "the journal labeled C<label>."
13143 msgstr ""
13144
13145 #. type: textblock
13146 #: ../src/guestfs-actions.pod:4437
13147 msgid "See also C<guestfs_mke2journal_L>."
13148 msgstr ""
13149
13150 #. type: =head2
13151 #: ../src/guestfs-actions.pod:4443
13152 msgid "guestfs_mke2fs_JU"
13153 msgstr ""
13154
13155 #. type: verbatim
13156 #: ../src/guestfs-actions.pod:4445
13157 #, no-wrap
13158 msgid ""
13159 " int\n"
13160 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13161 "                    const char *fstype,\n"
13162 "                    int blocksize,\n"
13163 "                    const char *device,\n"
13164 "                    const char *uuid);\n"
13165 "\n"
13166 msgstr ""
13167
13168 #. type: textblock
13169 #: ../src/guestfs-actions.pod:4452 ../fish/guestfish-actions.pod:2995
13170 msgid ""
13171 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13172 "the journal with UUID C<uuid>."
13173 msgstr ""
13174
13175 #. type: textblock
13176 #: ../src/guestfs-actions.pod:4455
13177 msgid "See also C<guestfs_mke2journal_U>."
13178 msgstr ""
13179
13180 #. type: =head2
13181 #: ../src/guestfs-actions.pod:4461
13182 msgid "guestfs_mke2journal"
13183 msgstr ""
13184
13185 #. type: verbatim
13186 #: ../src/guestfs-actions.pod:4463
13187 #, no-wrap
13188 msgid ""
13189 " int\n"
13190 " guestfs_mke2journal (guestfs_h *g,\n"
13191 "                      int blocksize,\n"
13192 "                      const char *device);\n"
13193 "\n"
13194 msgstr ""
13195
13196 #. type: textblock
13197 #: ../src/guestfs-actions.pod:4468 ../fish/guestfish-actions.pod:3004
13198 msgid ""
13199 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13200 "command:"
13201 msgstr ""
13202
13203 #. type: verbatim
13204 #: ../src/guestfs-actions.pod:4471 ../fish/guestfish-actions.pod:3007
13205 #, no-wrap
13206 msgid ""
13207 " mke2fs -O journal_dev -b blocksize device\n"
13208 "\n"
13209 msgstr ""
13210
13211 #. type: =head2
13212 #: ../src/guestfs-actions.pod:4477
13213 msgid "guestfs_mke2journal_L"
13214 msgstr ""
13215
13216 #. type: verbatim
13217 #: ../src/guestfs-actions.pod:4479
13218 #, no-wrap
13219 msgid ""
13220 " int\n"
13221 " guestfs_mke2journal_L (guestfs_h *g,\n"
13222 "                        int blocksize,\n"
13223 "                        const char *label,\n"
13224 "                        const char *device);\n"
13225 "\n"
13226 msgstr ""
13227
13228 #. type: textblock
13229 #: ../src/guestfs-actions.pod:4485 ../fish/guestfish-actions.pod:3013
13230 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13231 msgstr ""
13232
13233 #. type: =head2
13234 #: ../src/guestfs-actions.pod:4491
13235 msgid "guestfs_mke2journal_U"
13236 msgstr ""
13237
13238 #. type: verbatim
13239 #: ../src/guestfs-actions.pod:4493
13240 #, no-wrap
13241 msgid ""
13242 " int\n"
13243 " guestfs_mke2journal_U (guestfs_h *g,\n"
13244 "                        int blocksize,\n"
13245 "                        const char *uuid,\n"
13246 "                        const char *device);\n"
13247 "\n"
13248 msgstr ""
13249
13250 #. type: textblock
13251 #: ../src/guestfs-actions.pod:4499 ../fish/guestfish-actions.pod:3019
13252 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13253 msgstr ""
13254
13255 #. type: =head2
13256 #: ../src/guestfs-actions.pod:4505
13257 msgid "guestfs_mkfifo"
13258 msgstr ""
13259
13260 #. type: verbatim
13261 #: ../src/guestfs-actions.pod:4507
13262 #, no-wrap
13263 msgid ""
13264 " int\n"
13265 " guestfs_mkfifo (guestfs_h *g,\n"
13266 "                 int mode,\n"
13267 "                 const char *path);\n"
13268 "\n"
13269 msgstr ""
13270
13271 #. type: textblock
13272 #: ../src/guestfs-actions.pod:4512
13273 msgid ""
13274 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13275 "is just a convenient wrapper around C<guestfs_mknod>."
13276 msgstr ""
13277
13278 #. type: =head2
13279 #: ../src/guestfs-actions.pod:4522
13280 msgid "guestfs_mkfs"
13281 msgstr ""
13282
13283 #. type: verbatim
13284 #: ../src/guestfs-actions.pod:4524
13285 #, no-wrap
13286 msgid ""
13287 " int\n"
13288 " guestfs_mkfs (guestfs_h *g,\n"
13289 "               const char *fstype,\n"
13290 "               const char *device);\n"
13291 "\n"
13292 msgstr ""
13293
13294 #. type: textblock
13295 #: ../src/guestfs-actions.pod:4529 ../fish/guestfish-actions.pod:3035
13296 msgid ""
13297 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13298 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13299 msgstr ""
13300
13301 #. type: =head2
13302 #: ../src/guestfs-actions.pod:4537
13303 msgid "guestfs_mkfs_b"
13304 msgstr ""
13305
13306 #. type: verbatim
13307 #: ../src/guestfs-actions.pod:4539
13308 #, no-wrap
13309 msgid ""
13310 " int\n"
13311 " guestfs_mkfs_b (guestfs_h *g,\n"
13312 "                 const char *fstype,\n"
13313 "                 int blocksize,\n"
13314 "                 const char *device);\n"
13315 "\n"
13316 msgstr ""
13317
13318 #. type: textblock
13319 #: ../src/guestfs-actions.pod:4545
13320 msgid ""
13321 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13322 "block size of the resulting filesystem.  Supported block sizes depend on the "
13323 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13324 msgstr ""
13325
13326 #. type: textblock
13327 #: ../src/guestfs-actions.pod:4550 ../src/guestfs-actions.pod:4595 ../fish/guestfish-actions.pod:3048 ../fish/guestfish-actions.pod:3075
13328 msgid ""
13329 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13330 "cluster size."
13331 msgstr ""
13332
13333 #. type: textblock
13334 #: ../src/guestfs-actions.pod:4555 ../fish/guestfish-actions.pod:3051
13335 msgid ""
13336 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
13337 "instead."
13338 msgstr ""
13339
13340 #. type: =head2
13341 #: ../src/guestfs-actions.pod:4564
13342 msgid "guestfs_mkfs_opts"
13343 msgstr ""
13344
13345 #. type: verbatim
13346 #: ../src/guestfs-actions.pod:4566
13347 #, no-wrap
13348 msgid ""
13349 " int\n"
13350 " guestfs_mkfs_opts (guestfs_h *g,\n"
13351 "                    const char *fstype,\n"
13352 "                    const char *device,\n"
13353 "                    ...);\n"
13354 "\n"
13355 msgstr ""
13356
13357 #. type: verbatim
13358 #: ../src/guestfs-actions.pod:4577
13359 #, no-wrap
13360 msgid ""
13361 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13362 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13363 " GUESTFS_MKFS_OPTS_INODE, int inode,\n"
13364 " GUESTFS_MKFS_OPTS_SECTORSIZE, int sectorsize,\n"
13365 "\n"
13366 msgstr ""
13367
13368 #. type: textblock
13369 #: ../src/guestfs-actions.pod:4582 ../fish/guestfish-actions.pod:3062
13370 msgid ""
13371 "This function creates a filesystem on C<device>.  The filesystem type is "
13372 "C<fstype>, for example C<ext3>."
13373 msgstr ""
13374
13375 #. type: =item
13376 #: ../src/guestfs-actions.pod:4589 ../fish/guestfish-actions.pod:3069
13377 msgid "C<blocksize>"
13378 msgstr ""
13379
13380 #. type: textblock
13381 #: ../src/guestfs-actions.pod:4591 ../fish/guestfish-actions.pod:3071
13382 msgid ""
13383 "The filesystem block size.  Supported block sizes depend on the filesystem "
13384 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13385 "filesystems."
13386 msgstr ""
13387
13388 #. type: textblock
13389 #: ../src/guestfs-actions.pod:4598 ../fish/guestfish-actions.pod:3078
13390 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13391 msgstr ""
13392
13393 #. type: =item
13394 #: ../src/guestfs-actions.pod:4600 ../fish/guestfish-actions.pod:3080
13395 msgid "C<features>"
13396 msgstr ""
13397
13398 #. type: textblock
13399 #: ../src/guestfs-actions.pod:4602 ../fish/guestfish-actions.pod:3082
13400 msgid "This passes the I<-O> parameter to the external mkfs program."
13401 msgstr ""
13402
13403 #. type: textblock
13404 #: ../src/guestfs-actions.pod:4604 ../fish/guestfish-actions.pod:3084
13405 msgid ""
13406 "For certain filesystem types, this allows extra filesystem features to be "
13407 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13408 msgstr ""
13409
13410 #. type: textblock
13411 #: ../src/guestfs-actions.pod:4608 ../fish/guestfish-actions.pod:3088
13412 msgid ""
13413 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13414 "type."
13415 msgstr ""
13416
13417 #. type: =item
13418 #: ../src/guestfs-actions.pod:4611 ../fish/guestfish-actions.pod:3091
13419 msgid "C<inode>"
13420 msgstr ""
13421
13422 #. type: textblock
13423 #: ../src/guestfs-actions.pod:4613 ../fish/guestfish-actions.pod:3093
13424 msgid ""
13425 "This passes the I<-I> parameter to the external L<mke2fs(8)> program which "
13426 "sets the inode size (only for ext2/3/4 filesystems at present)."
13427 msgstr ""
13428
13429 #. type: =item
13430 #: ../src/guestfs-actions.pod:4616 ../fish/guestfish-actions.pod:3096
13431 msgid "C<sectorsize>"
13432 msgstr ""
13433
13434 #. type: textblock
13435 #: ../src/guestfs-actions.pod:4618 ../fish/guestfish-actions.pod:3098
13436 msgid ""
13437 "This passes the I<-S> parameter to external L<mkfs.ufs(8)> program, which "
13438 "sets sector size for ufs filesystem."
13439 msgstr ""
13440
13441 #. type: textblock
13442 #: ../src/guestfs-actions.pod:4625
13443 msgid "(Added in 1.7.19)"
13444 msgstr ""
13445
13446 #. type: =head2
13447 #: ../src/guestfs-actions.pod:4627
13448 msgid "guestfs_mkfs_opts_va"
13449 msgstr ""
13450
13451 #. type: verbatim
13452 #: ../src/guestfs-actions.pod:4629
13453 #, no-wrap
13454 msgid ""
13455 " int\n"
13456 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13457 "                       const char *fstype,\n"
13458 "                       const char *device,\n"
13459 "                       va_list args);\n"
13460 "\n"
13461 msgstr ""
13462
13463 #. type: textblock
13464 #: ../src/guestfs-actions.pod:4635
13465 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13466 msgstr ""
13467
13468 #. type: =head2
13469 #: ../src/guestfs-actions.pod:4639
13470 msgid "guestfs_mkfs_opts_argv"
13471 msgstr ""
13472
13473 #. type: verbatim
13474 #: ../src/guestfs-actions.pod:4641
13475 #, no-wrap
13476 msgid ""
13477 " int\n"
13478 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13479 "                         const char *fstype,\n"
13480 "                         const char *device,\n"
13481 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13482 "\n"
13483 msgstr ""
13484
13485 #. type: textblock
13486 #: ../src/guestfs-actions.pod:4647
13487 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13488 msgstr ""
13489
13490 #. type: =head2
13491 #: ../src/guestfs-actions.pod:4651
13492 msgid "guestfs_mkmountpoint"
13493 msgstr ""
13494
13495 #. type: verbatim
13496 #: ../src/guestfs-actions.pod:4653
13497 #, no-wrap
13498 msgid ""
13499 " int\n"
13500 " guestfs_mkmountpoint (guestfs_h *g,\n"
13501 "                       const char *exemptpath);\n"
13502 "\n"
13503 msgstr ""
13504
13505 #. type: textblock
13506 #: ../src/guestfs-actions.pod:4657
13507 msgid ""
13508 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13509 "that can be used to create extra mountpoints before mounting the first "
13510 "filesystem."
13511 msgstr ""
13512
13513 #. type: textblock
13514 #: ../src/guestfs-actions.pod:4661 ../fish/guestfish-actions.pod:3113
13515 msgid ""
13516 "These calls are I<only> necessary in some very limited circumstances, mainly "
13517 "the case where you want to mount a mix of unrelated and/or read-only "
13518 "filesystems together."
13519 msgstr ""
13520
13521 #. type: textblock
13522 #: ../src/guestfs-actions.pod:4665 ../fish/guestfish-actions.pod:3117
13523 msgid ""
13524 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13525 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13526 "inside that.  You can unpack this as follows in guestfish:"
13527 msgstr ""
13528
13529 #. type: verbatim
13530 #: ../src/guestfs-actions.pod:4670 ../fish/guestfish-actions.pod:3122
13531 #, no-wrap
13532 msgid ""
13533 " add-ro Fedora-11-i686-Live.iso\n"
13534 " run\n"
13535 " mkmountpoint /cd\n"
13536 " mkmountpoint /sqsh\n"
13537 " mkmountpoint /ext3fs\n"
13538 " mount /dev/sda /cd\n"
13539 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13540 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13541 "\n"
13542 msgstr ""
13543
13544 #. type: textblock
13545 #: ../src/guestfs-actions.pod:4679 ../fish/guestfish-actions.pod:3131
13546 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13547 msgstr ""
13548
13549 #. type: textblock
13550 #: ../src/guestfs-actions.pod:4681
13551 msgid ""
13552 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13553 "may get unexpected errors if you try to mix these calls.  It is safest to "
13554 "manually unmount filesystems and remove mountpoints after use."
13555 msgstr ""
13556
13557 #. type: textblock
13558 #: ../src/guestfs-actions.pod:4685
13559 msgid ""
13560 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13561 "first, so for this to work for manual mountpoints, you must ensure that the "
13562 "innermost mountpoints have the longest pathnames, as in the example code "
13563 "above."
13564 msgstr ""
13565
13566 #. type: textblock
13567 #: ../src/guestfs-actions.pod:4690 ../fish/guestfish-actions.pod:3142
13568 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13569 msgstr ""
13570
13571 #. type: textblock
13572 #: ../src/guestfs-actions.pod:4692
13573 msgid ""
13574 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13575 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13576 "can also trigger these issues."
13577 msgstr ""
13578
13579 #. type: textblock
13580 #: ../src/guestfs-actions.pod:4698 ../src/guestfs-actions.pod:5014 ../src/guestfs-actions.pod:6018
13581 msgid "(Added in 1.0.62)"
13582 msgstr ""
13583
13584 #. type: =head2
13585 #: ../src/guestfs-actions.pod:4700
13586 msgid "guestfs_mknod"
13587 msgstr ""
13588
13589 #. type: verbatim
13590 #: ../src/guestfs-actions.pod:4702
13591 #, no-wrap
13592 msgid ""
13593 " int\n"
13594 " guestfs_mknod (guestfs_h *g,\n"
13595 "                int mode,\n"
13596 "                int devmajor,\n"
13597 "                int devminor,\n"
13598 "                const char *path);\n"
13599 "\n"
13600 msgstr ""
13601
13602 #. type: textblock
13603 #: ../src/guestfs-actions.pod:4709 ../fish/guestfish-actions.pod:3152
13604 msgid ""
13605 "This call creates block or character special devices, or named pipes "
13606 "(FIFOs)."
13607 msgstr ""
13608
13609 #. type: textblock
13610 #: ../src/guestfs-actions.pod:4712 ../fish/guestfish-actions.pod:3155
13611 msgid ""
13612 "The C<mode> parameter should be the mode, using the standard constants.  "
13613 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13614 "used when creating block and character special devices."
13615 msgstr ""
13616
13617 #. type: textblock
13618 #: ../src/guestfs-actions.pod:4717
13619 msgid ""
13620 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13621 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13622 "regular file).  These constants are available in the standard Linux header "
13623 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13624 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13625 "the appropriate constant for you."
13626 msgstr ""
13627
13628 #. type: =head2
13629 #: ../src/guestfs-actions.pod:4731
13630 msgid "guestfs_mknod_b"
13631 msgstr ""
13632
13633 #. type: verbatim
13634 #: ../src/guestfs-actions.pod:4733
13635 #, no-wrap
13636 msgid ""
13637 " int\n"
13638 " guestfs_mknod_b (guestfs_h *g,\n"
13639 "                  int mode,\n"
13640 "                  int devmajor,\n"
13641 "                  int devminor,\n"
13642 "                  const char *path);\n"
13643 "\n"
13644 msgstr ""
13645
13646 #. type: textblock
13647 #: ../src/guestfs-actions.pod:4740
13648 msgid ""
13649 "This call creates a block device node called C<path> with mode C<mode> and "
13650 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13651 "wrapper around C<guestfs_mknod>."
13652 msgstr ""
13653
13654 #. type: =head2
13655 #: ../src/guestfs-actions.pod:4750
13656 msgid "guestfs_mknod_c"
13657 msgstr ""
13658
13659 #. type: verbatim
13660 #: ../src/guestfs-actions.pod:4752
13661 #, no-wrap
13662 msgid ""
13663 " int\n"
13664 " guestfs_mknod_c (guestfs_h *g,\n"
13665 "                  int mode,\n"
13666 "                  int devmajor,\n"
13667 "                  int devminor,\n"
13668 "                  const char *path);\n"
13669 "\n"
13670 msgstr ""
13671
13672 #. type: textblock
13673 #: ../src/guestfs-actions.pod:4759
13674 msgid ""
13675 "This call creates a char device node called C<path> with mode C<mode> and "
13676 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13677 "wrapper around C<guestfs_mknod>."
13678 msgstr ""
13679
13680 #. type: =head2
13681 #: ../src/guestfs-actions.pod:4769
13682 msgid "guestfs_mkswap"
13683 msgstr ""
13684
13685 #. type: verbatim
13686 #: ../src/guestfs-actions.pod:4771
13687 #, no-wrap
13688 msgid ""
13689 " int\n"
13690 " guestfs_mkswap (guestfs_h *g,\n"
13691 "                 const char *device);\n"
13692 "\n"
13693 msgstr ""
13694
13695 #. type: textblock
13696 #: ../src/guestfs-actions.pod:4775 ../fish/guestfish-actions.pod:3194
13697 msgid "Create a swap partition on C<device>."
13698 msgstr ""
13699
13700 #. type: =head2
13701 #: ../src/guestfs-actions.pod:4781
13702 msgid "guestfs_mkswap_L"
13703 msgstr ""
13704
13705 #. type: verbatim
13706 #: ../src/guestfs-actions.pod:4783
13707 #, no-wrap
13708 msgid ""
13709 " int\n"
13710 " guestfs_mkswap_L (guestfs_h *g,\n"
13711 "                   const char *label,\n"
13712 "                   const char *device);\n"
13713 "\n"
13714 msgstr ""
13715
13716 #. type: textblock
13717 #: ../src/guestfs-actions.pod:4788 ../fish/guestfish-actions.pod:3200
13718 msgid "Create a swap partition on C<device> with label C<label>."
13719 msgstr ""
13720
13721 #. type: textblock
13722 #: ../src/guestfs-actions.pod:4790 ../fish/guestfish-actions.pod:3202
13723 msgid ""
13724 "Note that you cannot attach a swap label to a block device "
13725 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
13726 "the kernel or swap tools."
13727 msgstr ""
13728
13729 #. type: =head2
13730 #: ../src/guestfs-actions.pod:4798
13731 msgid "guestfs_mkswap_U"
13732 msgstr ""
13733
13734 #. type: verbatim
13735 #: ../src/guestfs-actions.pod:4800
13736 #, no-wrap
13737 msgid ""
13738 " int\n"
13739 " guestfs_mkswap_U (guestfs_h *g,\n"
13740 "                   const char *uuid,\n"
13741 "                   const char *device);\n"
13742 "\n"
13743 msgstr ""
13744
13745 #. type: textblock
13746 #: ../src/guestfs-actions.pod:4805 ../fish/guestfish-actions.pod:3210
13747 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13748 msgstr ""
13749
13750 #. type: =head2
13751 #: ../src/guestfs-actions.pod:4811
13752 msgid "guestfs_mkswap_file"
13753 msgstr ""
13754
13755 #. type: verbatim
13756 #: ../src/guestfs-actions.pod:4813
13757 #, no-wrap
13758 msgid ""
13759 " int\n"
13760 " guestfs_mkswap_file (guestfs_h *g,\n"
13761 "                      const char *path);\n"
13762 "\n"
13763 msgstr ""
13764
13765 #. type: textblock
13766 #: ../src/guestfs-actions.pod:4817 ../fish/guestfish-actions.pod:3216
13767 msgid "Create a swap file."
13768 msgstr ""
13769
13770 #. type: textblock
13771 #: ../src/guestfs-actions.pod:4819
13772 msgid ""
13773 "This command just writes a swap file signature to an existing file.  To "
13774 "create the file itself, use something like C<guestfs_fallocate>."
13775 msgstr ""
13776
13777 #. type: =head2
13778 #: ../src/guestfs-actions.pod:4826
13779 msgid "guestfs_modprobe"
13780 msgstr ""
13781
13782 #. type: verbatim
13783 #: ../src/guestfs-actions.pod:4828
13784 #, no-wrap
13785 msgid ""
13786 " int\n"
13787 " guestfs_modprobe (guestfs_h *g,\n"
13788 "                   const char *modulename);\n"
13789 "\n"
13790 msgstr ""
13791
13792 #. type: textblock
13793 #: ../src/guestfs-actions.pod:4832 ../fish/guestfish-actions.pod:3225
13794 msgid "This loads a kernel module in the appliance."
13795 msgstr ""
13796
13797 #. type: textblock
13798 #: ../src/guestfs-actions.pod:4834 ../fish/guestfish-actions.pod:3227
13799 msgid ""
13800 "The kernel module must have been whitelisted when libguestfs was built (see "
13801 "C<appliance/kmod.whitelist.in> in the source)."
13802 msgstr ""
13803
13804 #. type: =head2
13805 #: ../src/guestfs-actions.pod:4841
13806 msgid "guestfs_mount"
13807 msgstr ""
13808
13809 #. type: verbatim
13810 #: ../src/guestfs-actions.pod:4843
13811 #, no-wrap
13812 msgid ""
13813 " int\n"
13814 " guestfs_mount (guestfs_h *g,\n"
13815 "                const char *device,\n"
13816 "                const char *mountpoint);\n"
13817 "\n"
13818 msgstr ""
13819
13820 #. type: textblock
13821 #: ../src/guestfs-actions.pod:4848 ../fish/guestfish-actions.pod:3234
13822 msgid ""
13823 "Mount a guest disk at a position in the filesystem.  Block devices are named "
13824 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
13825 "those block devices contain partitions, they will have the usual names "
13826 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
13827 msgstr ""
13828
13829 #. type: textblock
13830 #: ../src/guestfs-actions.pod:4854 ../fish/guestfish-actions.pod:3240
13831 msgid ""
13832 "The rules are the same as for L<mount(2)>: A filesystem must first be "
13833 "mounted on C</> before others can be mounted.  Other filesystems can only be "
13834 "mounted on directories which already exist."
13835 msgstr ""
13836
13837 #. type: textblock
13838 #: ../src/guestfs-actions.pod:4859 ../fish/guestfish-actions.pod:3245
13839 msgid ""
13840 "The mounted filesystem is writable, if we have sufficient permissions on the "
13841 "underlying device."
13842 msgstr ""
13843
13844 #. type: textblock
13845 #: ../src/guestfs-actions.pod:4862
13846 msgid ""
13847 "B<Important note:> When you use this call, the filesystem options C<sync> "
13848 "and C<noatime> are set implicitly.  This was originally done because we "
13849 "thought it would improve reliability, but it turns out that I<-o sync> has a "
13850 "very large negative performance impact and negligible effect on "
13851 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
13852 "in any code that needs performance, and instead use C<guestfs_mount_options> "
13853 "(use an empty string for the first parameter if you don't want any options)."
13854 msgstr ""
13855
13856 #. type: textblock
13857 #: ../src/guestfs-actions.pod:4874 ../fish/guestfish-actions.pod:3258
13858 msgid ""
13859 "This function is deprecated.  In new code, use the C<mount_options> call "
13860 "instead."
13861 msgstr ""
13862
13863 #. type: =head2
13864 #: ../src/guestfs-actions.pod:4883
13865 msgid "guestfs_mount_9p"
13866 msgstr ""
13867
13868 #. type: verbatim
13869 #: ../src/guestfs-actions.pod:4885
13870 #, no-wrap
13871 msgid ""
13872 " int\n"
13873 " guestfs_mount_9p (guestfs_h *g,\n"
13874 "                   const char *mounttag,\n"
13875 "                   const char *mountpoint,\n"
13876 "                   ...);\n"
13877 "\n"
13878 msgstr ""
13879
13880 #. type: verbatim
13881 #: ../src/guestfs-actions.pod:4896
13882 #, no-wrap
13883 msgid ""
13884 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
13885 "\n"
13886 msgstr ""
13887
13888 #. type: textblock
13889 #: ../src/guestfs-actions.pod:4898 ../fish/guestfish-actions.pod:3269
13890 msgid ""
13891 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
13892 "C<mountpoint>."
13893 msgstr ""
13894
13895 #. type: textblock
13896 #: ../src/guestfs-actions.pod:4901 ../fish/guestfish-actions.pod:3272
13897 msgid ""
13898 "If required, C<trans=virtio> will be automatically added to the options.  "
13899 "Any other options required can be passed in the optional C<options> "
13900 "parameter."
13901 msgstr ""
13902
13903 #. type: =head2
13904 #: ../src/guestfs-actions.pod:4909
13905 msgid "guestfs_mount_9p_va"
13906 msgstr ""
13907
13908 #. type: verbatim
13909 #: ../src/guestfs-actions.pod:4911
13910 #, no-wrap
13911 msgid ""
13912 " int\n"
13913 " guestfs_mount_9p_va (guestfs_h *g,\n"
13914 "                      const char *mounttag,\n"
13915 "                      const char *mountpoint,\n"
13916 "                      va_list args);\n"
13917 "\n"
13918 msgstr ""
13919
13920 #. type: textblock
13921 #: ../src/guestfs-actions.pod:4917
13922 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
13923 msgstr ""
13924
13925 #. type: =head2
13926 #: ../src/guestfs-actions.pod:4921
13927 msgid "guestfs_mount_9p_argv"
13928 msgstr ""
13929
13930 #. type: verbatim
13931 #: ../src/guestfs-actions.pod:4923
13932 #, no-wrap
13933 msgid ""
13934 " int\n"
13935 " guestfs_mount_9p_argv (guestfs_h *g,\n"
13936 "                        const char *mounttag,\n"
13937 "                        const char *mountpoint,\n"
13938 "                        const struct guestfs_mount_9p_argv *optargs);\n"
13939 "\n"
13940 msgstr ""
13941
13942 #. type: textblock
13943 #: ../src/guestfs-actions.pod:4929
13944 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
13945 msgstr ""
13946
13947 #. type: =head2
13948 #: ../src/guestfs-actions.pod:4933
13949 msgid "guestfs_mount_loop"
13950 msgstr ""
13951
13952 #. type: verbatim
13953 #: ../src/guestfs-actions.pod:4935
13954 #, no-wrap
13955 msgid ""
13956 " int\n"
13957 " guestfs_mount_loop (guestfs_h *g,\n"
13958 "                     const char *file,\n"
13959 "                     const char *mountpoint);\n"
13960 "\n"
13961 msgstr ""
13962
13963 #. type: textblock
13964 #: ../src/guestfs-actions.pod:4940 ../fish/guestfish-actions.pod:3282
13965 msgid ""
13966 "This command lets you mount C<file> (a filesystem image in a file) on a "
13967 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
13968 "mountpoint>."
13969 msgstr ""
13970
13971 #. type: =head2
13972 #: ../src/guestfs-actions.pod:4948
13973 msgid "guestfs_mount_options"
13974 msgstr ""
13975
13976 #. type: verbatim
13977 #: ../src/guestfs-actions.pod:4950
13978 #, no-wrap
13979 msgid ""
13980 " int\n"
13981 " guestfs_mount_options (guestfs_h *g,\n"
13982 "                        const char *options,\n"
13983 "                        const char *device,\n"
13984 "                        const char *mountpoint);\n"
13985 "\n"
13986 msgstr ""
13987
13988 #. type: textblock
13989 #: ../src/guestfs-actions.pod:4956
13990 msgid ""
13991 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13992 "the mount options as for the L<mount(8)> I<-o> flag."
13993 msgstr ""
13994
13995 #. type: textblock
13996 #: ../src/guestfs-actions.pod:4960 ../fish/guestfish-actions.pod:3294
13997 msgid ""
13998 "If the C<options> parameter is an empty string, then no options are passed "
13999 "(all options default to whatever the filesystem uses)."
14000 msgstr ""
14001
14002 #. type: textblock
14003 #: ../src/guestfs-actions.pod:4966 ../src/guestfs-actions.pod:4980 ../src/guestfs-actions.pod:4997
14004 msgid "(Added in 1.0.10)"
14005 msgstr ""
14006
14007 #. type: =head2
14008 #: ../src/guestfs-actions.pod:4968
14009 msgid "guestfs_mount_ro"
14010 msgstr ""
14011
14012 #. type: verbatim
14013 #: ../src/guestfs-actions.pod:4970
14014 #, no-wrap
14015 msgid ""
14016 " int\n"
14017 " guestfs_mount_ro (guestfs_h *g,\n"
14018 "                   const char *device,\n"
14019 "                   const char *mountpoint);\n"
14020 "\n"
14021 msgstr ""
14022
14023 #. type: textblock
14024 #: ../src/guestfs-actions.pod:4975
14025 msgid ""
14026 "This is the same as the C<guestfs_mount> command, but it mounts the "
14027 "filesystem with the read-only (I<-o ro>) flag."
14028 msgstr ""
14029
14030 #. type: =head2
14031 #: ../src/guestfs-actions.pod:4982
14032 msgid "guestfs_mount_vfs"
14033 msgstr ""
14034
14035 #. type: verbatim
14036 #: ../src/guestfs-actions.pod:4984
14037 #, no-wrap
14038 msgid ""
14039 " int\n"
14040 " guestfs_mount_vfs (guestfs_h *g,\n"
14041 "                    const char *options,\n"
14042 "                    const char *vfstype,\n"
14043 "                    const char *device,\n"
14044 "                    const char *mountpoint);\n"
14045 "\n"
14046 msgstr ""
14047
14048 #. type: textblock
14049 #: ../src/guestfs-actions.pod:4991
14050 msgid ""
14051 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14052 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
14053 "I<-t> flags."
14054 msgstr ""
14055
14056 #. type: =head2
14057 #: ../src/guestfs-actions.pod:4999
14058 msgid "guestfs_mountpoints"
14059 msgstr ""
14060
14061 #. type: verbatim
14062 #: ../src/guestfs-actions.pod:5001
14063 #, no-wrap
14064 msgid ""
14065 " char **\n"
14066 " guestfs_mountpoints (guestfs_h *g);\n"
14067 "\n"
14068 msgstr ""
14069
14070 #. type: textblock
14071 #: ../src/guestfs-actions.pod:5004
14072 msgid ""
14073 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14074 "devices.  This one returns a hash table (map) of device name to directory "
14075 "where the device is mounted."
14076 msgstr ""
14077
14078 #. type: =head2
14079 #: ../src/guestfs-actions.pod:5016
14080 msgid "guestfs_mounts"
14081 msgstr ""
14082
14083 #. type: verbatim
14084 #: ../src/guestfs-actions.pod:5018
14085 #, no-wrap
14086 msgid ""
14087 " char **\n"
14088 " guestfs_mounts (guestfs_h *g);\n"
14089 "\n"
14090 msgstr ""
14091
14092 #. type: textblock
14093 #: ../src/guestfs-actions.pod:5021 ../fish/guestfish-actions.pod:3325
14094 msgid ""
14095 "This returns the list of currently mounted filesystems.  It returns the list "
14096 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14097 msgstr ""
14098
14099 #. type: textblock
14100 #: ../src/guestfs-actions.pod:5024 ../fish/guestfish-actions.pod:3328
14101 msgid "Some internal mounts are not shown."
14102 msgstr ""
14103
14104 #. type: textblock
14105 #: ../src/guestfs-actions.pod:5026
14106 msgid "See also: C<guestfs_mountpoints>"
14107 msgstr ""
14108
14109 #. type: =head2
14110 #: ../src/guestfs-actions.pod:5034
14111 msgid "guestfs_mv"
14112 msgstr ""
14113
14114 #. type: verbatim
14115 #: ../src/guestfs-actions.pod:5036
14116 #, no-wrap
14117 msgid ""
14118 " int\n"
14119 " guestfs_mv (guestfs_h *g,\n"
14120 "             const char *src,\n"
14121 "             const char *dest);\n"
14122 "\n"
14123 msgstr ""
14124
14125 #. type: textblock
14126 #: ../src/guestfs-actions.pod:5041 ../fish/guestfish-actions.pod:3336
14127 msgid ""
14128 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14129 "destination filename or destination directory."
14130 msgstr ""
14131
14132 #. type: =head2
14133 #: ../src/guestfs-actions.pod:5048
14134 msgid "guestfs_ntfs_3g_probe"
14135 msgstr ""
14136
14137 #. type: verbatim
14138 #: ../src/guestfs-actions.pod:5050
14139 #, no-wrap
14140 msgid ""
14141 " int\n"
14142 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14143 "                        int rw,\n"
14144 "                        const char *device);\n"
14145 "\n"
14146 msgstr ""
14147
14148 #. type: textblock
14149 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3343
14150 msgid ""
14151 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14152 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
14153 "read-write, and some cannot be mounted at all)."
14154 msgstr ""
14155
14156 #. type: textblock
14157 #: ../src/guestfs-actions.pod:5059 ../fish/guestfish-actions.pod:3347
14158 msgid ""
14159 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14160 "can be mounted read-write.  Set it to false if you want to test if the "
14161 "volume can be mounted read-only."
14162 msgstr ""
14163
14164 #. type: textblock
14165 #: ../src/guestfs-actions.pod:5063 ../fish/guestfish-actions.pod:3351
14166 msgid ""
14167 "The return value is an integer which C<0> if the operation would succeed, or "
14168 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14169 msgstr ""
14170
14171 #. type: textblock
14172 #: ../src/guestfs-actions.pod:5069
14173 msgid "(Added in 1.0.43)"
14174 msgstr ""
14175
14176 #. type: =head2
14177 #: ../src/guestfs-actions.pod:5071
14178 msgid "guestfs_ntfsresize"
14179 msgstr ""
14180
14181 #. type: verbatim
14182 #: ../src/guestfs-actions.pod:5073
14183 #, no-wrap
14184 msgid ""
14185 " int\n"
14186 " guestfs_ntfsresize (guestfs_h *g,\n"
14187 "                     const char *device);\n"
14188 "\n"
14189 msgstr ""
14190
14191 #. type: textblock
14192 #: ../src/guestfs-actions.pod:5077 ../src/guestfs-actions.pod:5116 ../fish/guestfish-actions.pod:3359 ../fish/guestfish-actions.pod:3383
14193 msgid ""
14194 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14195 "size of the underlying device."
14196 msgstr ""
14197
14198 #. type: textblock
14199 #: ../src/guestfs-actions.pod:5080 ../fish/guestfish-actions.pod:3362
14200 msgid ""
14201 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
14202 "consistency check (for safety).  You have to boot into Windows to perform "
14203 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14204 "resize filesystems which have been marked in this way.  So in effect it is "
14205 "not possible to call ntfsresize multiple times on a single filesystem "
14206 "without booting into Windows between each resize."
14207 msgstr ""
14208
14209 #. type: textblock
14210 #: ../src/guestfs-actions.pod:5088 ../src/guestfs-actions.pod:5142 ../fish/guestfish-actions.pod:3370 ../fish/guestfish-actions.pod:3409
14211 msgid "See also L<ntfsresize(8)>."
14212 msgstr ""
14213
14214 #. type: textblock
14215 #: ../src/guestfs-actions.pod:5092 ../src/guestfs-actions.pod:5182 ../fish/guestfish-actions.pod:3372 ../fish/guestfish-actions.pod:3420
14216 msgid ""
14217 "This function is deprecated.  In new code, use the C<ntfsresize_opts> call "
14218 "instead."
14219 msgstr ""
14220
14221 #. type: =head2
14222 #: ../src/guestfs-actions.pod:5101
14223 msgid "guestfs_ntfsresize_opts"
14224 msgstr ""
14225
14226 #. type: verbatim
14227 #: ../src/guestfs-actions.pod:5103
14228 #, no-wrap
14229 msgid ""
14230 " int\n"
14231 " guestfs_ntfsresize_opts (guestfs_h *g,\n"
14232 "                          const char *device,\n"
14233 "                          ...);\n"
14234 "\n"
14235 msgstr ""
14236
14237 #. type: verbatim
14238 #: ../src/guestfs-actions.pod:5113
14239 #, no-wrap
14240 msgid ""
14241 " GUESTFS_NTFSRESIZE_OPTS_SIZE, int64_t size,\n"
14242 " GUESTFS_NTFSRESIZE_OPTS_FORCE, int force,\n"
14243 "\n"
14244 msgstr ""
14245
14246 #. type: textblock
14247 #: ../src/guestfs-actions.pod:5119 ../fish/guestfish-actions.pod:3386
14248 msgid "The optional parameters are:"
14249 msgstr ""
14250
14251 #. type: =item
14252 #: ../src/guestfs-actions.pod:5123 ../fish/guestfish-actions.pod:3390
14253 msgid "C<size>"
14254 msgstr ""
14255
14256 #. type: textblock
14257 #: ../src/guestfs-actions.pod:5125 ../fish/guestfish-actions.pod:3392
14258 msgid ""
14259 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
14260 "resized to fit the container (eg. partition)."
14261 msgstr ""
14262
14263 #. type: =item
14264 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3395
14265 msgid "C<force>"
14266 msgstr ""
14267
14268 #. type: textblock
14269 #: ../src/guestfs-actions.pod:5130 ../fish/guestfish-actions.pod:3397
14270 msgid ""
14271 "If this option is true, then force the resize of the filesystem even if the "
14272 "filesystem is marked as requiring a consistency check."
14273 msgstr ""
14274
14275 #. type: textblock
14276 #: ../src/guestfs-actions.pod:5133
14277 msgid ""
14278 "After the resize operation, the filesystem is always marked as requiring a "
14279 "consistency check (for safety).  You have to boot into Windows to perform "
14280 "this check and clear this condition.  If you I<don't> set the C<force> "
14281 "option then it is not possible to call C<guestfs_ntfsresize_opts> multiple "
14282 "times on a single filesystem without booting into Windows between each "
14283 "resize."
14284 msgstr ""
14285
14286 #. type: =head2
14287 #: ../src/guestfs-actions.pod:5148
14288 msgid "guestfs_ntfsresize_opts_va"
14289 msgstr ""
14290
14291 #. type: verbatim
14292 #: ../src/guestfs-actions.pod:5150
14293 #, no-wrap
14294 msgid ""
14295 " int\n"
14296 " guestfs_ntfsresize_opts_va (guestfs_h *g,\n"
14297 "                             const char *device,\n"
14298 "                             va_list args);\n"
14299 "\n"
14300 msgstr ""
14301
14302 #. type: textblock
14303 #: ../src/guestfs-actions.pod:5155
14304 msgid "This is the \"va_list variant\" of L</guestfs_ntfsresize_opts>."
14305 msgstr ""
14306
14307 #. type: =head2
14308 #: ../src/guestfs-actions.pod:5159
14309 msgid "guestfs_ntfsresize_opts_argv"
14310 msgstr ""
14311
14312 #. type: verbatim
14313 #: ../src/guestfs-actions.pod:5161
14314 #, no-wrap
14315 msgid ""
14316 " int\n"
14317 " guestfs_ntfsresize_opts_argv (guestfs_h *g,\n"
14318 "                               const char *device,\n"
14319 "                               const struct guestfs_ntfsresize_opts_argv "
14320 "*optargs);\n"
14321 "\n"
14322 msgstr ""
14323
14324 #. type: textblock
14325 #: ../src/guestfs-actions.pod:5166
14326 msgid "This is the \"argv variant\" of L</guestfs_ntfsresize_opts>."
14327 msgstr ""
14328
14329 #. type: =head2
14330 #: ../src/guestfs-actions.pod:5170
14331 msgid "guestfs_ntfsresize_size"
14332 msgstr ""
14333
14334 #. type: verbatim
14335 #: ../src/guestfs-actions.pod:5172
14336 #, no-wrap
14337 msgid ""
14338 " int\n"
14339 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14340 "                          const char *device,\n"
14341 "                          int64_t size);\n"
14342 "\n"
14343 msgstr ""
14344
14345 #. type: textblock
14346 #: ../src/guestfs-actions.pod:5177
14347 msgid ""
14348 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14349 "to specify the new size (in bytes) explicitly."
14350 msgstr ""
14351
14352 #. type: textblock
14353 #: ../src/guestfs-actions.pod:5189 ../src/guestfs-actions.pod:5625 ../src/guestfs-actions.pod:5698 ../src/guestfs-actions.pod:5966 ../src/guestfs-actions.pod:7568
14354 msgid "(Added in 1.3.14)"
14355 msgstr ""
14356
14357 #. type: =head2
14358 #: ../src/guestfs-actions.pod:5191
14359 msgid "guestfs_part_add"
14360 msgstr ""
14361
14362 #. type: verbatim
14363 #: ../src/guestfs-actions.pod:5193
14364 #, no-wrap
14365 msgid ""
14366 " int\n"
14367 " guestfs_part_add (guestfs_h *g,\n"
14368 "                   const char *device,\n"
14369 "                   const char *prlogex,\n"
14370 "                   int64_t startsect,\n"
14371 "                   int64_t endsect);\n"
14372 "\n"
14373 msgstr ""
14374
14375 #. type: textblock
14376 #: ../src/guestfs-actions.pod:5200
14377 msgid ""
14378 "This command adds a partition to C<device>.  If there is no partition table "
14379 "on the device, call C<guestfs_part_init> first."
14380 msgstr ""
14381
14382 #. type: textblock
14383 #: ../src/guestfs-actions.pod:5203 ../fish/guestfish-actions.pod:3434
14384 msgid ""
14385 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14386 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14387 "C<logical>) and C<e> (or C<extended>) partition types."
14388 msgstr ""
14389
14390 #. type: textblock
14391 #: ../src/guestfs-actions.pod:5208 ../fish/guestfish-actions.pod:3439
14392 msgid ""
14393 "C<startsect> and C<endsect> are the start and end of the partition in "
14394 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14395 "from the end of the disk (C<-1> is the last sector)."
14396 msgstr ""
14397
14398 #. type: textblock
14399 #: ../src/guestfs-actions.pod:5212
14400 msgid ""
14401 "Creating a partition which covers the whole disk is not so easy.  Use "
14402 "C<guestfs_part_disk> to do that."
14403 msgstr ""
14404
14405 #. type: textblock
14406 #: ../src/guestfs-actions.pod:5217 ../src/guestfs-actions.pod:5255 ../src/guestfs-actions.pod:5308 ../src/guestfs-actions.pod:5386 ../src/guestfs-actions.pod:5424 ../src/guestfs-actions.pod:5443 ../src/guestfs-actions.pod:5483
14407 msgid "(Added in 1.0.78)"
14408 msgstr ""
14409
14410 #. type: =head2
14411 #: ../src/guestfs-actions.pod:5219
14412 msgid "guestfs_part_del"
14413 msgstr ""
14414
14415 #. type: verbatim
14416 #: ../src/guestfs-actions.pod:5221
14417 #, no-wrap
14418 msgid ""
14419 " int\n"
14420 " guestfs_part_del (guestfs_h *g,\n"
14421 "                   const char *device,\n"
14422 "                   int partnum);\n"
14423 "\n"
14424 msgstr ""
14425
14426 #. type: textblock
14427 #: ../src/guestfs-actions.pod:5226 ../fish/guestfish-actions.pod:3450
14428 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14429 msgstr ""
14430
14431 #. type: textblock
14432 #: ../src/guestfs-actions.pod:5228 ../fish/guestfish-actions.pod:3452
14433 msgid ""
14434 "Note that in the case of MBR partitioning, deleting an extended partition "
14435 "also deletes any logical partitions it contains."
14436 msgstr ""
14437
14438 #. type: =head2
14439 #: ../src/guestfs-actions.pod:5236
14440 msgid "guestfs_part_disk"
14441 msgstr ""
14442
14443 #. type: verbatim
14444 #: ../src/guestfs-actions.pod:5238
14445 #, no-wrap
14446 msgid ""
14447 " int\n"
14448 " guestfs_part_disk (guestfs_h *g,\n"
14449 "                    const char *device,\n"
14450 "                    const char *parttype);\n"
14451 "\n"
14452 msgstr ""
14453
14454 #. type: textblock
14455 #: ../src/guestfs-actions.pod:5243
14456 msgid ""
14457 "This command is simply a combination of C<guestfs_part_init> followed by "
14458 "C<guestfs_part_add> to create a single primary partition covering the whole "
14459 "disk."
14460 msgstr ""
14461
14462 #. type: textblock
14463 #: ../src/guestfs-actions.pod:5247
14464 msgid ""
14465 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14466 "possible values are described in C<guestfs_part_init>."
14467 msgstr ""
14468
14469 #. type: =head2
14470 #: ../src/guestfs-actions.pod:5257
14471 msgid "guestfs_part_get_bootable"
14472 msgstr ""
14473
14474 #. type: verbatim
14475 #: ../src/guestfs-actions.pod:5259
14476 #, no-wrap
14477 msgid ""
14478 " int\n"
14479 " guestfs_part_get_bootable (guestfs_h *g,\n"
14480 "                            const char *device,\n"
14481 "                            int partnum);\n"
14482 "\n"
14483 msgstr ""
14484
14485 #. type: textblock
14486 #: ../src/guestfs-actions.pod:5264 ../fish/guestfish-actions.pod:3474
14487 msgid ""
14488 "This command returns true if the partition C<partnum> on C<device> has the "
14489 "bootable flag set."
14490 msgstr ""
14491
14492 #. type: textblock
14493 #: ../src/guestfs-actions.pod:5267
14494 msgid "See also C<guestfs_part_set_bootable>."
14495 msgstr ""
14496
14497 #. type: =head2
14498 #: ../src/guestfs-actions.pod:5273
14499 msgid "guestfs_part_get_mbr_id"
14500 msgstr ""
14501
14502 #. type: verbatim
14503 #: ../src/guestfs-actions.pod:5275
14504 #, no-wrap
14505 msgid ""
14506 " int\n"
14507 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14508 "                          const char *device,\n"
14509 "                          int partnum);\n"
14510 "\n"
14511 msgstr ""
14512
14513 #. type: textblock
14514 #: ../src/guestfs-actions.pod:5280 ../fish/guestfish-actions.pod:3483
14515 msgid ""
14516 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14517 "partition C<partnum>."
14518 msgstr ""
14519
14520 #. type: textblock
14521 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5459
14522 msgid ""
14523 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14524 "undefined results for other partition table types (see "
14525 "C<guestfs_part_get_parttype>)."
14526 msgstr ""
14527
14528 #. type: =head2
14529 #: ../src/guestfs-actions.pod:5291
14530 msgid "guestfs_part_get_parttype"
14531 msgstr ""
14532
14533 #. type: verbatim
14534 #: ../src/guestfs-actions.pod:5293
14535 #, no-wrap
14536 msgid ""
14537 " char *\n"
14538 " guestfs_part_get_parttype (guestfs_h *g,\n"
14539 "                            const char *device);\n"
14540 "\n"
14541 msgstr ""
14542
14543 #. type: textblock
14544 #: ../src/guestfs-actions.pod:5297 ../fish/guestfish-actions.pod:3494
14545 msgid ""
14546 "This command examines the partition table on C<device> and returns the "
14547 "partition table type (format) being used."
14548 msgstr ""
14549
14550 #. type: textblock
14551 #: ../src/guestfs-actions.pod:5300
14552 msgid ""
14553 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14554 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14555 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14556 msgstr ""
14557
14558 #. type: =head2
14559 #: ../src/guestfs-actions.pod:5310
14560 msgid "guestfs_part_init"
14561 msgstr ""
14562
14563 #. type: verbatim
14564 #: ../src/guestfs-actions.pod:5312
14565 #, no-wrap
14566 msgid ""
14567 " int\n"
14568 " guestfs_part_init (guestfs_h *g,\n"
14569 "                    const char *device,\n"
14570 "                    const char *parttype);\n"
14571 "\n"
14572 msgstr ""
14573
14574 #. type: textblock
14575 #: ../src/guestfs-actions.pod:5317 ../fish/guestfish-actions.pod:3506
14576 msgid ""
14577 "This creates an empty partition table on C<device> of one of the partition "
14578 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14579 "(for large disks)."
14580 msgstr ""
14581
14582 #. type: textblock
14583 #: ../src/guestfs-actions.pod:5321
14584 msgid ""
14585 "Initially there are no partitions.  Following this, you should call "
14586 "C<guestfs_part_add> for each partition required."
14587 msgstr ""
14588
14589 #. type: textblock
14590 #: ../src/guestfs-actions.pod:5324 ../fish/guestfish-actions.pod:3513
14591 msgid "Possible values for C<parttype> are:"
14592 msgstr ""
14593
14594 #. type: =item
14595 #: ../src/guestfs-actions.pod:5328 ../fish/guestfish-actions.pod:3517
14596 msgid "B<efi> | B<gpt>"
14597 msgstr ""
14598
14599 #. type: textblock
14600 #: ../src/guestfs-actions.pod:5330 ../fish/guestfish-actions.pod:3519
14601 msgid "Intel EFI / GPT partition table."
14602 msgstr ""
14603
14604 #. type: textblock
14605 #: ../src/guestfs-actions.pod:5332 ../fish/guestfish-actions.pod:3521
14606 msgid ""
14607 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14608 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14609 "the C<mbr> format."
14610 msgstr ""
14611
14612 #. type: =item
14613 #: ../src/guestfs-actions.pod:5336 ../fish/guestfish-actions.pod:3525
14614 msgid "B<mbr> | B<msdos>"
14615 msgstr ""
14616
14617 #. type: textblock
14618 #: ../src/guestfs-actions.pod:5338 ../fish/guestfish-actions.pod:3527
14619 msgid ""
14620 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14621 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14622 "TB.  For large disks we recommend using C<gpt>."
14623 msgstr ""
14624
14625 #. type: textblock
14626 #: ../src/guestfs-actions.pod:5345 ../fish/guestfish-actions.pod:3534
14627 msgid "Other partition table types that may work but are not supported include:"
14628 msgstr ""
14629
14630 #. type: =item
14631 #: ../src/guestfs-actions.pod:5350 ../fish/guestfish-actions.pod:3539
14632 msgid "B<aix>"
14633 msgstr ""
14634
14635 #. type: textblock
14636 #: ../src/guestfs-actions.pod:5352 ../fish/guestfish-actions.pod:3541
14637 msgid "AIX disk labels."
14638 msgstr ""
14639
14640 #. type: =item
14641 #: ../src/guestfs-actions.pod:5354 ../fish/guestfish-actions.pod:3543
14642 msgid "B<amiga> | B<rdb>"
14643 msgstr ""
14644
14645 #. type: textblock
14646 #: ../src/guestfs-actions.pod:5356 ../fish/guestfish-actions.pod:3545
14647 msgid "Amiga \"Rigid Disk Block\" format."
14648 msgstr ""
14649
14650 #. type: =item
14651 #: ../src/guestfs-actions.pod:5358 ../fish/guestfish-actions.pod:3547
14652 msgid "B<bsd>"
14653 msgstr ""
14654
14655 #. type: textblock
14656 #: ../src/guestfs-actions.pod:5360 ../fish/guestfish-actions.pod:3549
14657 msgid "BSD disk labels."
14658 msgstr ""
14659
14660 #. type: =item
14661 #: ../src/guestfs-actions.pod:5362 ../fish/guestfish-actions.pod:3551
14662 msgid "B<dasd>"
14663 msgstr ""
14664
14665 #. type: textblock
14666 #: ../src/guestfs-actions.pod:5364 ../fish/guestfish-actions.pod:3553
14667 msgid "DASD, used on IBM mainframes."
14668 msgstr ""
14669
14670 #. type: =item
14671 #: ../src/guestfs-actions.pod:5366 ../fish/guestfish-actions.pod:3555
14672 msgid "B<dvh>"
14673 msgstr ""
14674
14675 #. type: textblock
14676 #: ../src/guestfs-actions.pod:5368 ../fish/guestfish-actions.pod:3557
14677 msgid "MIPS/SGI volumes."
14678 msgstr ""
14679
14680 #. type: =item
14681 #: ../src/guestfs-actions.pod:5370 ../fish/guestfish-actions.pod:3559
14682 msgid "B<mac>"
14683 msgstr ""
14684
14685 #. type: textblock
14686 #: ../src/guestfs-actions.pod:5372 ../fish/guestfish-actions.pod:3561
14687 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14688 msgstr ""
14689
14690 #. type: =item
14691 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3563
14692 msgid "B<pc98>"
14693 msgstr ""
14694
14695 #. type: textblock
14696 #: ../src/guestfs-actions.pod:5376 ../fish/guestfish-actions.pod:3565
14697 msgid "NEC PC-98 format, common in Japan apparently."
14698 msgstr ""
14699
14700 #. type: =item
14701 #: ../src/guestfs-actions.pod:5378 ../fish/guestfish-actions.pod:3567
14702 msgid "B<sun>"
14703 msgstr ""
14704
14705 #. type: textblock
14706 #: ../src/guestfs-actions.pod:5380 ../fish/guestfish-actions.pod:3569
14707 msgid "Sun disk labels."
14708 msgstr ""
14709
14710 #. type: =head2
14711 #: ../src/guestfs-actions.pod:5388
14712 msgid "guestfs_part_list"
14713 msgstr ""
14714
14715 #. type: verbatim
14716 #: ../src/guestfs-actions.pod:5390
14717 #, no-wrap
14718 msgid ""
14719 " struct guestfs_partition_list *\n"
14720 " guestfs_part_list (guestfs_h *g,\n"
14721 "                    const char *device);\n"
14722 "\n"
14723 msgstr ""
14724
14725 #. type: textblock
14726 #: ../src/guestfs-actions.pod:5394 ../fish/guestfish-actions.pod:3577
14727 msgid ""
14728 "This command parses the partition table on C<device> and returns the list of "
14729 "partitions found."
14730 msgstr ""
14731
14732 #. type: textblock
14733 #: ../src/guestfs-actions.pod:5397 ../fish/guestfish-actions.pod:3580
14734 msgid "The fields in the returned structure are:"
14735 msgstr ""
14736
14737 #. type: =item
14738 #: ../src/guestfs-actions.pod:5401 ../fish/guestfish-actions.pod:3584
14739 msgid "B<part_num>"
14740 msgstr ""
14741
14742 #. type: textblock
14743 #: ../src/guestfs-actions.pod:5403 ../fish/guestfish-actions.pod:3586
14744 msgid "Partition number, counting from 1."
14745 msgstr ""
14746
14747 #. type: =item
14748 #: ../src/guestfs-actions.pod:5405 ../fish/guestfish-actions.pod:3588
14749 msgid "B<part_start>"
14750 msgstr ""
14751
14752 #. type: textblock
14753 #: ../src/guestfs-actions.pod:5407
14754 msgid ""
14755 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14756 "the device's sector size, see C<guestfs_blockdev_getss>."
14757 msgstr ""
14758
14759 #. type: =item
14760 #: ../src/guestfs-actions.pod:5410 ../fish/guestfish-actions.pod:3593
14761 msgid "B<part_end>"
14762 msgstr ""
14763
14764 #. type: textblock
14765 #: ../src/guestfs-actions.pod:5412 ../fish/guestfish-actions.pod:3595
14766 msgid "End of the partition in bytes."
14767 msgstr ""
14768
14769 #. type: =item
14770 #: ../src/guestfs-actions.pod:5414 ../fish/guestfish-actions.pod:3597
14771 msgid "B<part_size>"
14772 msgstr ""
14773
14774 #. type: textblock
14775 #: ../src/guestfs-actions.pod:5416 ../fish/guestfish-actions.pod:3599
14776 msgid "Size of the partition in bytes."
14777 msgstr ""
14778
14779 #. type: textblock
14780 #: ../src/guestfs-actions.pod:5420
14781 msgid ""
14782 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14783 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14784 "use>."
14785 msgstr ""
14786
14787 #. type: =head2
14788 #: ../src/guestfs-actions.pod:5426
14789 msgid "guestfs_part_set_bootable"
14790 msgstr ""
14791
14792 #. type: verbatim
14793 #: ../src/guestfs-actions.pod:5428
14794 #, no-wrap
14795 msgid ""
14796 " int\n"
14797 " guestfs_part_set_bootable (guestfs_h *g,\n"
14798 "                            const char *device,\n"
14799 "                            int partnum,\n"
14800 "                            int bootable);\n"
14801 "\n"
14802 msgstr ""
14803
14804 #. type: textblock
14805 #: ../src/guestfs-actions.pod:5434 ../fish/guestfish-actions.pod:3607
14806 msgid ""
14807 "This sets the bootable flag on partition numbered C<partnum> on device "
14808 "C<device>.  Note that partitions are numbered from 1."
14809 msgstr ""
14810
14811 #. type: textblock
14812 #: ../src/guestfs-actions.pod:5437 ../fish/guestfish-actions.pod:3610
14813 msgid ""
14814 "The bootable flag is used by some operating systems (notably Windows) to "
14815 "determine which partition to boot from.  It is by no means universally "
14816 "recognized."
14817 msgstr ""
14818
14819 #. type: =head2
14820 #: ../src/guestfs-actions.pod:5445
14821 msgid "guestfs_part_set_mbr_id"
14822 msgstr ""
14823
14824 #. type: verbatim
14825 #: ../src/guestfs-actions.pod:5447
14826 #, no-wrap
14827 msgid ""
14828 " int\n"
14829 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14830 "                          const char *device,\n"
14831 "                          int partnum,\n"
14832 "                          int idbyte);\n"
14833 "\n"
14834 msgstr ""
14835
14836 #. type: textblock
14837 #: ../src/guestfs-actions.pod:5453 ../fish/guestfish-actions.pod:3618
14838 msgid ""
14839 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14840 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14841 "documentation are in fact hexadecimal numbers, but usually documented "
14842 "without any leading \"0x\" which might be confusing."
14843 msgstr ""
14844
14845 #. type: =head2
14846 #: ../src/guestfs-actions.pod:5467
14847 msgid "guestfs_part_set_name"
14848 msgstr ""
14849
14850 #. type: verbatim
14851 #: ../src/guestfs-actions.pod:5469
14852 #, no-wrap
14853 msgid ""
14854 " int\n"
14855 " guestfs_part_set_name (guestfs_h *g,\n"
14856 "                        const char *device,\n"
14857 "                        int partnum,\n"
14858 "                        const char *name);\n"
14859 "\n"
14860 msgstr ""
14861
14862 #. type: textblock
14863 #: ../src/guestfs-actions.pod:5475 ../fish/guestfish-actions.pod:3632
14864 msgid ""
14865 "This sets the partition name on partition numbered C<partnum> on device "
14866 "C<device>.  Note that partitions are numbered from 1."
14867 msgstr ""
14868
14869 #. type: textblock
14870 #: ../src/guestfs-actions.pod:5478 ../fish/guestfish-actions.pod:3635
14871 msgid ""
14872 "The partition name can only be set on certain types of partition table.  "
14873 "This works on C<gpt> but not on C<mbr> partitions."
14874 msgstr ""
14875
14876 #. type: =head2
14877 #: ../src/guestfs-actions.pod:5485
14878 msgid "guestfs_part_to_dev"
14879 msgstr ""
14880
14881 #. type: verbatim
14882 #: ../src/guestfs-actions.pod:5487
14883 #, no-wrap
14884 msgid ""
14885 " char *\n"
14886 " guestfs_part_to_dev (guestfs_h *g,\n"
14887 "                      const char *partition);\n"
14888 "\n"
14889 msgstr ""
14890
14891 #. type: textblock
14892 #: ../src/guestfs-actions.pod:5491 ../fish/guestfish-actions.pod:3642
14893 msgid ""
14894 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14895 "partition number, returning the device name (eg. \"/dev/sdb\")."
14896 msgstr ""
14897
14898 #. type: textblock
14899 #: ../src/guestfs-actions.pod:5495
14900 msgid ""
14901 "The named partition must exist, for example as a string returned from "
14902 "C<guestfs_list_partitions>."
14903 msgstr ""
14904
14905 #. type: =head2
14906 #: ../src/guestfs-actions.pod:5503
14907 msgid "guestfs_ping_daemon"
14908 msgstr ""
14909
14910 #. type: verbatim
14911 #: ../src/guestfs-actions.pod:5505
14912 #, no-wrap
14913 msgid ""
14914 " int\n"
14915 " guestfs_ping_daemon (guestfs_h *g);\n"
14916 "\n"
14917 msgstr ""
14918
14919 #. type: textblock
14920 #: ../src/guestfs-actions.pod:5508 ../fish/guestfish-actions.pod:3653
14921 msgid ""
14922 "This is a test probe into the guestfs daemon running inside the qemu "
14923 "subprocess.  Calling this function checks that the daemon responds to the "
14924 "ping message, without affecting the daemon or attached block device(s) in "
14925 "any other way."
14926 msgstr ""
14927
14928 #. type: =head2
14929 #: ../src/guestfs-actions.pod:5517
14930 msgid "guestfs_pread"
14931 msgstr ""
14932
14933 #. type: verbatim
14934 #: ../src/guestfs-actions.pod:5519
14935 #, no-wrap
14936 msgid ""
14937 " char *\n"
14938 " guestfs_pread (guestfs_h *g,\n"
14939 "                const char *path,\n"
14940 "                int count,\n"
14941 "                int64_t offset,\n"
14942 "                size_t *size_r);\n"
14943 "\n"
14944 msgstr ""
14945
14946 #. type: textblock
14947 #: ../src/guestfs-actions.pod:5526 ../fish/guestfish-actions.pod:3662
14948 msgid ""
14949 "This command lets you read part of a file.  It reads C<count> bytes of the "
14950 "file, starting at C<offset>, from file C<path>."
14951 msgstr ""
14952
14953 #. type: textblock
14954 #: ../src/guestfs-actions.pod:5529 ../src/guestfs-actions.pod:5555 ../fish/guestfish-actions.pod:3665 ../fish/guestfish-actions.pod:3680
14955 msgid ""
14956 "This may read fewer bytes than requested.  For further details see the "
14957 "L<pread(2)> system call."
14958 msgstr ""
14959
14960 #. type: textblock
14961 #: ../src/guestfs-actions.pod:5532
14962 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14963 msgstr ""
14964
14965 #. type: =head2
14966 #: ../src/guestfs-actions.pod:5543
14967 msgid "guestfs_pread_device"
14968 msgstr ""
14969
14970 #. type: verbatim
14971 #: ../src/guestfs-actions.pod:5545
14972 #, no-wrap
14973 msgid ""
14974 " char *\n"
14975 " guestfs_pread_device (guestfs_h *g,\n"
14976 "                       const char *device,\n"
14977 "                       int count,\n"
14978 "                       int64_t offset,\n"
14979 "                       size_t *size_r);\n"
14980 "\n"
14981 msgstr ""
14982
14983 #. type: textblock
14984 #: ../src/guestfs-actions.pod:5552 ../fish/guestfish-actions.pod:3677
14985 msgid ""
14986 "This command lets you read part of a file.  It reads C<count> bytes of "
14987 "C<device>, starting at C<offset>."
14988 msgstr ""
14989
14990 #. type: textblock
14991 #: ../src/guestfs-actions.pod:5558
14992 msgid "See also C<guestfs_pread>."
14993 msgstr ""
14994
14995 #. type: textblock
14996 #: ../src/guestfs-actions.pod:5567
14997 msgid "(Added in 1.5.21)"
14998 msgstr ""
14999
15000 #. type: =head2
15001 #: ../src/guestfs-actions.pod:5569
15002 msgid "guestfs_pvcreate"
15003 msgstr ""
15004
15005 #. type: verbatim
15006 #: ../src/guestfs-actions.pod:5571
15007 #, no-wrap
15008 msgid ""
15009 " int\n"
15010 " guestfs_pvcreate (guestfs_h *g,\n"
15011 "                   const char *device);\n"
15012 "\n"
15013 msgstr ""
15014
15015 #. type: textblock
15016 #: ../src/guestfs-actions.pod:5575 ../fish/guestfish-actions.pod:3692
15017 msgid ""
15018 "This creates an LVM physical volume on the named C<device>, where C<device> "
15019 "should usually be a partition name such as C</dev/sda1>."
15020 msgstr ""
15021
15022 #. type: =head2
15023 #: ../src/guestfs-actions.pod:5583
15024 msgid "guestfs_pvremove"
15025 msgstr ""
15026
15027 #. type: verbatim
15028 #: ../src/guestfs-actions.pod:5585
15029 #, no-wrap
15030 msgid ""
15031 " int\n"
15032 " guestfs_pvremove (guestfs_h *g,\n"
15033 "                   const char *device);\n"
15034 "\n"
15035 msgstr ""
15036
15037 #. type: textblock
15038 #: ../src/guestfs-actions.pod:5589 ../fish/guestfish-actions.pod:3700
15039 msgid ""
15040 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15041 "it."
15042 msgstr ""
15043
15044 #. type: textblock
15045 #: ../src/guestfs-actions.pod:5592 ../fish/guestfish-actions.pod:3703
15046 msgid ""
15047 "The implementation uses the C<pvremove> command which refuses to wipe "
15048 "physical volumes that contain any volume groups, so you have to remove those "
15049 "first."
15050 msgstr ""
15051
15052 #. type: =head2
15053 #: ../src/guestfs-actions.pod:5600
15054 msgid "guestfs_pvresize"
15055 msgstr ""
15056
15057 #. type: verbatim
15058 #: ../src/guestfs-actions.pod:5602
15059 #, no-wrap
15060 msgid ""
15061 " int\n"
15062 " guestfs_pvresize (guestfs_h *g,\n"
15063 "                   const char *device);\n"
15064 "\n"
15065 msgstr ""
15066
15067 #. type: textblock
15068 #: ../src/guestfs-actions.pod:5606 ../fish/guestfish-actions.pod:3711
15069 msgid ""
15070 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15071 "the new size of the underlying device."
15072 msgstr ""
15073
15074 #. type: =head2
15075 #: ../src/guestfs-actions.pod:5613
15076 msgid "guestfs_pvresize_size"
15077 msgstr ""
15078
15079 #. type: verbatim
15080 #: ../src/guestfs-actions.pod:5615
15081 #, no-wrap
15082 msgid ""
15083 " int\n"
15084 " guestfs_pvresize_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:5620
15092 msgid ""
15093 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15094 "specify the new size (in bytes) explicitly."
15095 msgstr ""
15096
15097 #. type: =head2
15098 #: ../src/guestfs-actions.pod:5627
15099 msgid "guestfs_pvs"
15100 msgstr ""
15101
15102 #. type: verbatim
15103 #: ../src/guestfs-actions.pod:5629
15104 #, no-wrap
15105 msgid ""
15106 " char **\n"
15107 " guestfs_pvs (guestfs_h *g);\n"
15108 "\n"
15109 msgstr ""
15110
15111 #. type: textblock
15112 #: ../src/guestfs-actions.pod:5632 ../fish/guestfish-actions.pod:3725
15113 msgid ""
15114 "List all the physical volumes detected.  This is the equivalent of the "
15115 "L<pvs(8)> command."
15116 msgstr ""
15117
15118 #. type: textblock
15119 #: ../src/guestfs-actions.pod:5635 ../fish/guestfish-actions.pod:3728
15120 msgid ""
15121 "This returns a list of just the device names that contain PVs "
15122 "(eg. C</dev/sda2>)."
15123 msgstr ""
15124
15125 #. type: textblock
15126 #: ../src/guestfs-actions.pod:5638
15127 msgid "See also C<guestfs_pvs_full>."
15128 msgstr ""
15129
15130 #. type: =head2
15131 #: ../src/guestfs-actions.pod:5646
15132 msgid "guestfs_pvs_full"
15133 msgstr ""
15134
15135 #. type: verbatim
15136 #: ../src/guestfs-actions.pod:5648
15137 #, no-wrap
15138 msgid ""
15139 " struct guestfs_lvm_pv_list *\n"
15140 " guestfs_pvs_full (guestfs_h *g);\n"
15141 "\n"
15142 msgstr ""
15143
15144 #. type: textblock
15145 #: ../src/guestfs-actions.pod:5651 ../fish/guestfish-actions.pod:3737
15146 msgid ""
15147 "List all the physical volumes detected.  This is the equivalent of the "
15148 "L<pvs(8)> command.  The \"full\" version includes all fields."
15149 msgstr ""
15150
15151 #. type: textblock
15152 #: ../src/guestfs-actions.pod:5654
15153 msgid ""
15154 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15155 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
15156 "use>."
15157 msgstr ""
15158
15159 #. type: =head2
15160 #: ../src/guestfs-actions.pod:5660
15161 msgid "guestfs_pvuuid"
15162 msgstr ""
15163
15164 #. type: verbatim
15165 #: ../src/guestfs-actions.pod:5662
15166 #, no-wrap
15167 msgid ""
15168 " char *\n"
15169 " guestfs_pvuuid (guestfs_h *g,\n"
15170 "                 const char *device);\n"
15171 "\n"
15172 msgstr ""
15173
15174 #. type: textblock
15175 #: ../src/guestfs-actions.pod:5666 ../fish/guestfish-actions.pod:3744
15176 msgid "This command returns the UUID of the LVM PV C<device>."
15177 msgstr ""
15178
15179 #. type: =head2
15180 #: ../src/guestfs-actions.pod:5673
15181 msgid "guestfs_pwrite"
15182 msgstr ""
15183
15184 #. type: verbatim
15185 #: ../src/guestfs-actions.pod:5675
15186 #, no-wrap
15187 msgid ""
15188 " int\n"
15189 " guestfs_pwrite (guestfs_h *g,\n"
15190 "                 const char *path,\n"
15191 "                 const char *content,\n"
15192 "                 size_t content_size,\n"
15193 "                 int64_t offset);\n"
15194 "\n"
15195 msgstr ""
15196
15197 #. type: textblock
15198 #: ../src/guestfs-actions.pod:5682 ../fish/guestfish-actions.pod:3750
15199 msgid ""
15200 "This command writes to part of a file.  It writes the data buffer C<content> "
15201 "to the file C<path> starting at offset C<offset>."
15202 msgstr ""
15203
15204 #. type: textblock
15205 #: ../src/guestfs-actions.pod:5685 ../fish/guestfish-actions.pod:3753
15206 msgid ""
15207 "This command implements the L<pwrite(2)> system call, and like that system "
15208 "call it may not write the full data requested.  The return value is the "
15209 "number of bytes that were actually written to the file.  This could even be "
15210 "0, although short writes are unlikely for regular files in ordinary "
15211 "circumstances."
15212 msgstr ""
15213
15214 #. type: textblock
15215 #: ../src/guestfs-actions.pod:5691
15216 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15217 msgstr ""
15218
15219 #. type: =head2
15220 #: ../src/guestfs-actions.pod:5700
15221 msgid "guestfs_pwrite_device"
15222 msgstr ""
15223
15224 #. type: verbatim
15225 #: ../src/guestfs-actions.pod:5702
15226 #, no-wrap
15227 msgid ""
15228 " int\n"
15229 " guestfs_pwrite_device (guestfs_h *g,\n"
15230 "                        const char *device,\n"
15231 "                        const char *content,\n"
15232 "                        size_t content_size,\n"
15233 "                        int64_t offset);\n"
15234 "\n"
15235 msgstr ""
15236
15237 #. type: textblock
15238 #: ../src/guestfs-actions.pod:5709 ../fish/guestfish-actions.pod:3768
15239 msgid ""
15240 "This command writes to part of a device.  It writes the data buffer "
15241 "C<content> to C<device> starting at offset C<offset>."
15242 msgstr ""
15243
15244 #. type: textblock
15245 #: ../src/guestfs-actions.pod:5712 ../fish/guestfish-actions.pod:3771
15246 msgid ""
15247 "This command implements the L<pwrite(2)> system call, and like that system "
15248 "call it may not write the full data requested (although short writes to disk "
15249 "devices and partitions are probably impossible with standard Linux kernels)."
15250 msgstr ""
15251
15252 #. type: textblock
15253 #: ../src/guestfs-actions.pod:5717
15254 msgid "See also C<guestfs_pwrite>."
15255 msgstr ""
15256
15257 #. type: textblock
15258 #: ../src/guestfs-actions.pod:5724
15259 msgid "(Added in 1.5.20)"
15260 msgstr ""
15261
15262 #. type: =head2
15263 #: ../src/guestfs-actions.pod:5726
15264 msgid "guestfs_read_file"
15265 msgstr ""
15266
15267 #. type: verbatim
15268 #: ../src/guestfs-actions.pod:5728
15269 #, no-wrap
15270 msgid ""
15271 " char *\n"
15272 " guestfs_read_file (guestfs_h *g,\n"
15273 "                    const char *path,\n"
15274 "                    size_t *size_r);\n"
15275 "\n"
15276 msgstr ""
15277
15278 #. type: textblock
15279 #: ../src/guestfs-actions.pod:5733 ../fish/guestfish-actions.pod:3785
15280 msgid "This calls returns the contents of the file C<path> as a buffer."
15281 msgstr ""
15282
15283 #. type: textblock
15284 #: ../src/guestfs-actions.pod:5736
15285 msgid ""
15286 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15287 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15288 "function is limited in the total size of file that can be handled."
15289 msgstr ""
15290
15291 #. type: textblock
15292 #: ../src/guestfs-actions.pod:5748
15293 msgid "(Added in 1.0.63)"
15294 msgstr ""
15295
15296 #. type: =head2
15297 #: ../src/guestfs-actions.pod:5750
15298 msgid "guestfs_read_lines"
15299 msgstr ""
15300
15301 #. type: verbatim
15302 #: ../src/guestfs-actions.pod:5752
15303 #, no-wrap
15304 msgid ""
15305 " char **\n"
15306 " guestfs_read_lines (guestfs_h *g,\n"
15307 "                     const char *path);\n"
15308 "\n"
15309 msgstr ""
15310
15311 #. type: textblock
15312 #: ../src/guestfs-actions.pod:5758 ../fish/guestfish-actions.pod:3802
15313 msgid ""
15314 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15315 "C<CRLF> character sequences are I<not> returned."
15316 msgstr ""
15317
15318 #. type: textblock
15319 #: ../src/guestfs-actions.pod:5761
15320 msgid ""
15321 "Note that this function cannot correctly handle binary files (specifically, "
15322 "files containing C<\\0> character which is treated as end of line).  For "
15323 "those you need to use the C<guestfs_read_file> function which has a more "
15324 "complex interface."
15325 msgstr ""
15326
15327 #. type: =head2
15328 #: ../src/guestfs-actions.pod:5772
15329 msgid "guestfs_readdir"
15330 msgstr ""
15331
15332 #. type: verbatim
15333 #: ../src/guestfs-actions.pod:5774
15334 #, no-wrap
15335 msgid ""
15336 " struct guestfs_dirent_list *\n"
15337 " guestfs_readdir (guestfs_h *g,\n"
15338 "                  const char *dir);\n"
15339 "\n"
15340 msgstr ""
15341
15342 #. type: textblock
15343 #: ../src/guestfs-actions.pod:5778 ../fish/guestfish-actions.pod:3814
15344 msgid "This returns the list of directory entries in directory C<dir>."
15345 msgstr ""
15346
15347 #. type: textblock
15348 #: ../src/guestfs-actions.pod:5780 ../fish/guestfish-actions.pod:3816
15349 msgid ""
15350 "All entries in the directory are returned, including C<.> and C<..>.  The "
15351 "entries are I<not> sorted, but returned in the same order as the underlying "
15352 "filesystem."
15353 msgstr ""
15354
15355 #. type: textblock
15356 #: ../src/guestfs-actions.pod:5784 ../fish/guestfish-actions.pod:3820
15357 msgid ""
15358 "Also this call returns basic file type information about each file.  The "
15359 "C<ftyp> field will contain one of the following characters:"
15360 msgstr ""
15361
15362 #. type: =item
15363 #: ../src/guestfs-actions.pod:5789 ../fish/guestfish-actions.pod:3825
15364 msgid "'b'"
15365 msgstr ""
15366
15367 #. type: textblock
15368 #: ../src/guestfs-actions.pod:5791 ../fish/guestfish-actions.pod:3827
15369 msgid "Block special"
15370 msgstr ""
15371
15372 #. type: =item
15373 #: ../src/guestfs-actions.pod:5793 ../fish/guestfish-actions.pod:3829
15374 msgid "'c'"
15375 msgstr ""
15376
15377 #. type: textblock
15378 #: ../src/guestfs-actions.pod:5795 ../fish/guestfish-actions.pod:3831
15379 msgid "Char special"
15380 msgstr ""
15381
15382 #. type: =item
15383 #: ../src/guestfs-actions.pod:5797 ../fish/guestfish-actions.pod:3833
15384 msgid "'d'"
15385 msgstr ""
15386
15387 #. type: textblock
15388 #: ../src/guestfs-actions.pod:5799 ../fish/guestfish-actions.pod:3835
15389 msgid "Directory"
15390 msgstr ""
15391
15392 #. type: =item
15393 #: ../src/guestfs-actions.pod:5801 ../fish/guestfish-actions.pod:3837
15394 msgid "'f'"
15395 msgstr ""
15396
15397 #. type: textblock
15398 #: ../src/guestfs-actions.pod:5803 ../fish/guestfish-actions.pod:3839
15399 msgid "FIFO (named pipe)"
15400 msgstr ""
15401
15402 #. type: =item
15403 #: ../src/guestfs-actions.pod:5805 ../fish/guestfish-actions.pod:3841
15404 msgid "'l'"
15405 msgstr ""
15406
15407 #. type: textblock
15408 #: ../src/guestfs-actions.pod:5807 ../fish/guestfish-actions.pod:3843
15409 msgid "Symbolic link"
15410 msgstr ""
15411
15412 #. type: =item
15413 #: ../src/guestfs-actions.pod:5809 ../fish/guestfish-actions.pod:3845
15414 msgid "'r'"
15415 msgstr ""
15416
15417 #. type: textblock
15418 #: ../src/guestfs-actions.pod:5811 ../fish/guestfish-actions.pod:3847
15419 msgid "Regular file"
15420 msgstr ""
15421
15422 #. type: =item
15423 #: ../src/guestfs-actions.pod:5813 ../fish/guestfish-actions.pod:3849
15424 msgid "'s'"
15425 msgstr ""
15426
15427 #. type: textblock
15428 #: ../src/guestfs-actions.pod:5815 ../fish/guestfish-actions.pod:3851
15429 msgid "Socket"
15430 msgstr ""
15431
15432 #. type: =item
15433 #: ../src/guestfs-actions.pod:5817 ../fish/guestfish-actions.pod:3853
15434 msgid "'u'"
15435 msgstr ""
15436
15437 #. type: textblock
15438 #: ../src/guestfs-actions.pod:5819 ../fish/guestfish-actions.pod:3855
15439 msgid "Unknown file type"
15440 msgstr ""
15441
15442 #. type: =item
15443 #: ../src/guestfs-actions.pod:5821 ../fish/guestfish-actions.pod:3857
15444 msgid "'?'"
15445 msgstr ""
15446
15447 #. type: textblock
15448 #: ../src/guestfs-actions.pod:5823 ../fish/guestfish-actions.pod:3859
15449 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15450 msgstr ""
15451
15452 #. type: textblock
15453 #: ../src/guestfs-actions.pod:5828
15454 msgid ""
15455 "This function is primarily intended for use by programs.  To get a simple "
15456 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15457 "consumption, use C<guestfs_ll>."
15458 msgstr ""
15459
15460 #. type: textblock
15461 #: ../src/guestfs-actions.pod:5832
15462 msgid ""
15463 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15464 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
15465 "use>."
15466 msgstr ""
15467
15468 #. type: =head2
15469 #: ../src/guestfs-actions.pod:5838
15470 msgid "guestfs_readlink"
15471 msgstr ""
15472
15473 #. type: verbatim
15474 #: ../src/guestfs-actions.pod:5840
15475 #, no-wrap
15476 msgid ""
15477 " char *\n"
15478 " guestfs_readlink (guestfs_h *g,\n"
15479 "                   const char *path);\n"
15480 "\n"
15481 msgstr ""
15482
15483 #. type: textblock
15484 #: ../src/guestfs-actions.pod:5844 ../fish/guestfish-actions.pod:3872
15485 msgid "This command reads the target of a symbolic link."
15486 msgstr ""
15487
15488 #. type: =head2
15489 #: ../src/guestfs-actions.pod:5851
15490 msgid "guestfs_readlinklist"
15491 msgstr ""
15492
15493 #. type: verbatim
15494 #: ../src/guestfs-actions.pod:5853
15495 #, no-wrap
15496 msgid ""
15497 " char **\n"
15498 " guestfs_readlinklist (guestfs_h *g,\n"
15499 "                       const char *path,\n"
15500 "                       char *const *names);\n"
15501 "\n"
15502 msgstr ""
15503
15504 #. type: textblock
15505 #: ../src/guestfs-actions.pod:5858 ../fish/guestfish-actions.pod:3878
15506 msgid ""
15507 "This call allows you to do a C<readlink> operation on multiple files, where "
15508 "all files are in the directory C<path>.  C<names> is the list of files from "
15509 "this directory."
15510 msgstr ""
15511
15512 #. type: textblock
15513 #: ../src/guestfs-actions.pod:5862 ../fish/guestfish-actions.pod:3882
15514 msgid ""
15515 "On return you get a list of strings, with a one-to-one correspondence to the "
15516 "C<names> list.  Each string is the value of the symbolic link."
15517 msgstr ""
15518
15519 #. type: textblock
15520 #: ../src/guestfs-actions.pod:5866 ../fish/guestfish-actions.pod:3886
15521 msgid ""
15522 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15523 "result string is the empty string C<\"\">.  However the whole operation is "
15524 "completed even if there were C<readlink(2)> errors, and so you can call this "
15525 "function with names where you don't know if they are symbolic links already "
15526 "(albeit slightly less efficient)."
15527 msgstr ""
15528
15529 #. type: textblock
15530 #: ../src/guestfs-actions.pod:5873 ../fish/guestfish-actions.pod:3893
15531 msgid ""
15532 "This call is intended for programs that want to efficiently list a directory "
15533 "contents without making many round-trips.  Very long directory listings "
15534 "might cause the protocol message size to be exceeded, causing this call to "
15535 "fail.  The caller must split up such requests into smaller groups of names."
15536 msgstr ""
15537
15538 #. type: =head2
15539 #: ../src/guestfs-actions.pod:5886
15540 msgid "guestfs_realpath"
15541 msgstr ""
15542
15543 #. type: verbatim
15544 #: ../src/guestfs-actions.pod:5888
15545 #, no-wrap
15546 msgid ""
15547 " char *\n"
15548 " guestfs_realpath (guestfs_h *g,\n"
15549 "                   const char *path);\n"
15550 "\n"
15551 msgstr ""
15552
15553 #. type: textblock
15554 #: ../src/guestfs-actions.pod:5892 ../fish/guestfish-actions.pod:3904
15555 msgid ""
15556 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15557 "has no C<.>, C<..> or symbolic link path elements."
15558 msgstr ""
15559
15560 #. type: =head2
15561 #: ../src/guestfs-actions.pod:5900
15562 msgid "guestfs_removexattr"
15563 msgstr ""
15564
15565 #. type: verbatim
15566 #: ../src/guestfs-actions.pod:5902
15567 #, no-wrap
15568 msgid ""
15569 " int\n"
15570 " guestfs_removexattr (guestfs_h *g,\n"
15571 "                      const char *xattr,\n"
15572 "                      const char *path);\n"
15573 "\n"
15574 msgstr ""
15575
15576 #. type: textblock
15577 #: ../src/guestfs-actions.pod:5907 ../fish/guestfish-actions.pod:3911
15578 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
15579 msgstr ""
15580
15581 #. type: textblock
15582 #: ../src/guestfs-actions.pod:5910
15583 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15584 msgstr ""
15585
15586 #. type: =head2
15587 #: ../src/guestfs-actions.pod:5916
15588 msgid "guestfs_resize2fs"
15589 msgstr ""
15590
15591 #. type: verbatim
15592 #: ../src/guestfs-actions.pod:5918
15593 #, no-wrap
15594 msgid ""
15595 " int\n"
15596 " guestfs_resize2fs (guestfs_h *g,\n"
15597 "                    const char *device);\n"
15598 "\n"
15599 msgstr ""
15600
15601 #. type: textblock
15602 #: ../src/guestfs-actions.pod:5922 ../fish/guestfish-actions.pod:3920
15603 msgid ""
15604 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15605 "underlying device."
15606 msgstr ""
15607
15608 #. type: textblock
15609 #: ../src/guestfs-actions.pod:5925
15610 msgid ""
15611 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15612 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15613 "sometimes gives an error about this and sometimes not.  In any case, it is "
15614 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15615 msgstr ""
15616
15617 #. type: =head2
15618 #: ../src/guestfs-actions.pod:5935
15619 msgid "guestfs_resize2fs_M"
15620 msgstr ""
15621
15622 #. type: verbatim
15623 #: ../src/guestfs-actions.pod:5937
15624 #, no-wrap
15625 msgid ""
15626 " int\n"
15627 " guestfs_resize2fs_M (guestfs_h *g,\n"
15628 "                      const char *device);\n"
15629 "\n"
15630 msgstr ""
15631
15632 #. type: textblock
15633 #: ../src/guestfs-actions.pod:5941
15634 msgid ""
15635 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15636 "resized to its minimum size.  This works like the I<-M> option to the "
15637 "C<resize2fs> command."
15638 msgstr ""
15639
15640 #. type: textblock
15641 #: ../src/guestfs-actions.pod:5945
15642 msgid ""
15643 "To get the resulting size of the filesystem you should call "
15644 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15645 "These two numbers, multiplied together, give the resulting size of the "
15646 "minimal filesystem in bytes."
15647 msgstr ""
15648
15649 #. type: =head2
15650 #: ../src/guestfs-actions.pod:5954
15651 msgid "guestfs_resize2fs_size"
15652 msgstr ""
15653
15654 #. type: verbatim
15655 #: ../src/guestfs-actions.pod:5956
15656 #, no-wrap
15657 msgid ""
15658 " int\n"
15659 " guestfs_resize2fs_size (guestfs_h *g,\n"
15660 "                         const char *device,\n"
15661 "                         int64_t size);\n"
15662 "\n"
15663 msgstr ""
15664
15665 #. type: textblock
15666 #: ../src/guestfs-actions.pod:5961
15667 msgid ""
15668 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15669 "to specify the new size (in bytes) explicitly."
15670 msgstr ""
15671
15672 #. type: =head2
15673 #: ../src/guestfs-actions.pod:5968
15674 msgid "guestfs_rm"
15675 msgstr ""
15676
15677 #. type: verbatim
15678 #: ../src/guestfs-actions.pod:5970
15679 #, no-wrap
15680 msgid ""
15681 " int\n"
15682 " guestfs_rm (guestfs_h *g,\n"
15683 "             const char *path);\n"
15684 "\n"
15685 msgstr ""
15686
15687 #. type: textblock
15688 #: ../src/guestfs-actions.pod:5974 ../fish/guestfish-actions.pod:3953
15689 msgid "Remove the single file C<path>."
15690 msgstr ""
15691
15692 #. type: =head2
15693 #: ../src/guestfs-actions.pod:5980
15694 msgid "guestfs_rm_rf"
15695 msgstr ""
15696
15697 #. type: verbatim
15698 #: ../src/guestfs-actions.pod:5982
15699 #, no-wrap
15700 msgid ""
15701 " int\n"
15702 " guestfs_rm_rf (guestfs_h *g,\n"
15703 "                const char *path);\n"
15704 "\n"
15705 msgstr ""
15706
15707 #. type: textblock
15708 #: ../src/guestfs-actions.pod:5986 ../fish/guestfish-actions.pod:3959
15709 msgid ""
15710 "Remove the file or directory C<path>, recursively removing the contents if "
15711 "its a directory.  This is like the C<rm -rf> shell command."
15712 msgstr ""
15713
15714 #. type: =head2
15715 #: ../src/guestfs-actions.pod:5994
15716 msgid "guestfs_rmdir"
15717 msgstr ""
15718
15719 #. type: verbatim
15720 #: ../src/guestfs-actions.pod:5996
15721 #, no-wrap
15722 msgid ""
15723 " int\n"
15724 " guestfs_rmdir (guestfs_h *g,\n"
15725 "                const char *path);\n"
15726 "\n"
15727 msgstr ""
15728
15729 #. type: textblock
15730 #: ../src/guestfs-actions.pod:6000 ../fish/guestfish-actions.pod:3967
15731 msgid "Remove the single directory C<path>."
15732 msgstr ""
15733
15734 #. type: =head2
15735 #: ../src/guestfs-actions.pod:6006
15736 msgid "guestfs_rmmountpoint"
15737 msgstr ""
15738
15739 #. type: verbatim
15740 #: ../src/guestfs-actions.pod:6008
15741 #, no-wrap
15742 msgid ""
15743 " int\n"
15744 " guestfs_rmmountpoint (guestfs_h *g,\n"
15745 "                       const char *exemptpath);\n"
15746 "\n"
15747 msgstr ""
15748
15749 #. type: textblock
15750 #: ../src/guestfs-actions.pod:6012
15751 msgid ""
15752 "This calls removes a mountpoint that was previously created with "
15753 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15754 msgstr ""
15755
15756 #. type: =head2
15757 #: ../src/guestfs-actions.pod:6020
15758 msgid "guestfs_scrub_device"
15759 msgstr ""
15760
15761 #. type: verbatim
15762 #: ../src/guestfs-actions.pod:6022
15763 #, no-wrap
15764 msgid ""
15765 " int\n"
15766 " guestfs_scrub_device (guestfs_h *g,\n"
15767 "                       const char *device);\n"
15768 "\n"
15769 msgstr ""
15770
15771 #. type: textblock
15772 #: ../src/guestfs-actions.pod:6026 ../fish/guestfish-actions.pod:3981
15773 msgid ""
15774 "This command writes patterns over C<device> to make data retrieval more "
15775 "difficult."
15776 msgstr ""
15777
15778 #. type: textblock
15779 #: ../src/guestfs-actions.pod:6029 ../src/guestfs-actions.pod:6050 ../src/guestfs-actions.pod:6069 ../fish/guestfish-actions.pod:3984 ../fish/guestfish-actions.pod:3999 ../fish/guestfish-actions.pod:4012
15780 msgid ""
15781 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15782 "more details."
15783 msgstr ""
15784
15785 #. type: textblock
15786 #: ../src/guestfs-actions.pod:6037 ../src/guestfs-actions.pod:6055 ../src/guestfs-actions.pod:6074
15787 msgid "(Added in 1.0.52)"
15788 msgstr ""
15789
15790 #. type: =head2
15791 #: ../src/guestfs-actions.pod:6039
15792 msgid "guestfs_scrub_file"
15793 msgstr ""
15794
15795 #. type: verbatim
15796 #: ../src/guestfs-actions.pod:6041
15797 #, no-wrap
15798 msgid ""
15799 " int\n"
15800 " guestfs_scrub_file (guestfs_h *g,\n"
15801 "                     const char *file);\n"
15802 "\n"
15803 msgstr ""
15804
15805 #. type: textblock
15806 #: ../src/guestfs-actions.pod:6045 ../fish/guestfish-actions.pod:3994
15807 msgid ""
15808 "This command writes patterns over a file to make data retrieval more "
15809 "difficult."
15810 msgstr ""
15811
15812 #. type: textblock
15813 #: ../src/guestfs-actions.pod:6048 ../fish/guestfish-actions.pod:3997
15814 msgid "The file is I<removed> after scrubbing."
15815 msgstr ""
15816
15817 #. type: =head2
15818 #: ../src/guestfs-actions.pod:6057
15819 msgid "guestfs_scrub_freespace"
15820 msgstr ""
15821
15822 #. type: verbatim
15823 #: ../src/guestfs-actions.pod:6059
15824 #, no-wrap
15825 msgid ""
15826 " int\n"
15827 " guestfs_scrub_freespace (guestfs_h *g,\n"
15828 "                          const char *dir);\n"
15829 "\n"
15830 msgstr ""
15831
15832 #. type: textblock
15833 #: ../src/guestfs-actions.pod:6063
15834 msgid ""
15835 "This command creates the directory C<dir> and then fills it with files until "
15836 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15837 "and deletes them.  The intention is to scrub any free space on the partition "
15838 "containing C<dir>."
15839 msgstr ""
15840
15841 #. type: =head2
15842 #: ../src/guestfs-actions.pod:6076
15843 msgid "guestfs_set_append"
15844 msgstr ""
15845
15846 #. type: verbatim
15847 #: ../src/guestfs-actions.pod:6078
15848 #, no-wrap
15849 msgid ""
15850 " int\n"
15851 " guestfs_set_append (guestfs_h *g,\n"
15852 "                     const char *append);\n"
15853 "\n"
15854 msgstr ""
15855
15856 #. type: textblock
15857 #: ../src/guestfs-actions.pod:6082 ../fish/guestfish-actions.pod:4021
15858 msgid ""
15859 "This function is used to add additional options to the guest kernel command "
15860 "line."
15861 msgstr ""
15862
15863 #. type: textblock
15864 #: ../src/guestfs-actions.pod:6085 ../fish/guestfish-actions.pod:4024
15865 msgid ""
15866 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15867 "environment variable."
15868 msgstr ""
15869
15870 #. type: textblock
15871 #: ../src/guestfs-actions.pod:6088 ../fish/guestfish-actions.pod:4027
15872 msgid ""
15873 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15874 "(libguestfs always adds a few of its own)."
15875 msgstr ""
15876
15877 #. type: =head2
15878 #: ../src/guestfs-actions.pod:6095
15879 msgid "guestfs_set_attach_method"
15880 msgstr ""
15881
15882 #. type: verbatim
15883 #: ../src/guestfs-actions.pod:6097
15884 #, no-wrap
15885 msgid ""
15886 " int\n"
15887 " guestfs_set_attach_method (guestfs_h *g,\n"
15888 "                            const char *attachmethod);\n"
15889 "\n"
15890 msgstr ""
15891
15892 #. type: textblock
15893 #: ../src/guestfs-actions.pod:6101 ../fish/guestfish-actions.pod:4036
15894 msgid ""
15895 "Set the method that libguestfs uses to connect to the back end guestfsd "
15896 "daemon.  Possible methods are:"
15897 msgstr ""
15898
15899 #. type: textblock
15900 #: ../src/guestfs-actions.pod:6108 ../fish/guestfish-actions.pod:4043
15901 msgid ""
15902 "Launch an appliance and connect to it.  This is the ordinary method and the "
15903 "default."
15904 msgstr ""
15905
15906 #. type: =item
15907 #: ../src/guestfs-actions.pod:6111 ../fish/guestfish-actions.pod:4046
15908 msgid "C<unix:I<path>>"
15909 msgstr ""
15910
15911 #. type: textblock
15912 #: ../src/guestfs-actions.pod:6113 ../fish/guestfish-actions.pod:4048
15913 msgid "Connect to the Unix domain socket I<path>."
15914 msgstr ""
15915
15916 #. type: textblock
15917 #: ../src/guestfs-actions.pod:6115 ../fish/guestfish-actions.pod:4050
15918 msgid ""
15919 "This method lets you connect to an existing daemon or (using virtio-serial) "
15920 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15921 "RUNNING DAEMONS>."
15922 msgstr ""
15923
15924 #. type: =head2
15925 #: ../src/guestfs-actions.pod:6125
15926 msgid "guestfs_set_autosync"
15927 msgstr ""
15928
15929 #. type: verbatim
15930 #: ../src/guestfs-actions.pod:6127
15931 #, no-wrap
15932 msgid ""
15933 " int\n"
15934 " guestfs_set_autosync (guestfs_h *g,\n"
15935 "                       int autosync);\n"
15936 "\n"
15937 msgstr ""
15938
15939 #. type: textblock
15940 #: ../src/guestfs-actions.pod:6131 ../fish/guestfish-actions.pod:4062
15941 msgid ""
15942 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15943 "effort attempt to make filesystems consistent and synchronized when the "
15944 "handle is closed (also if the program exits without closing handles)."
15945 msgstr ""
15946
15947 #. type: textblock
15948 #: ../src/guestfs-actions.pod:6136 ../fish/guestfish-actions.pod:4067
15949 msgid ""
15950 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15951 "disabled by default)."
15952 msgstr ""
15953
15954 #. type: =head2
15955 #: ../src/guestfs-actions.pod:6143
15956 msgid "guestfs_set_direct"
15957 msgstr ""
15958
15959 #. type: verbatim
15960 #: ../src/guestfs-actions.pod:6145
15961 #, no-wrap
15962 msgid ""
15963 " int\n"
15964 " guestfs_set_direct (guestfs_h *g,\n"
15965 "                     int direct);\n"
15966 "\n"
15967 msgstr ""
15968
15969 #. type: textblock
15970 #: ../src/guestfs-actions.pod:6149 ../fish/guestfish-actions.pod:4076
15971 msgid ""
15972 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15973 "passed directly through to the appliance once it is launched."
15974 msgstr ""
15975
15976 #. type: textblock
15977 #: ../src/guestfs-actions.pod:6153
15978 msgid ""
15979 "One consequence of this is that log messages aren't caught by the library "
15980 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
15981 "stdout."
15982 msgstr ""
15983
15984 #. type: textblock
15985 #: ../src/guestfs-actions.pod:6157 ../fish/guestfish-actions.pod:4084
15986 msgid "You probably don't want to use this unless you know what you are doing."
15987 msgstr ""
15988
15989 #. type: textblock
15990 #: ../src/guestfs-actions.pod:6160 ../fish/guestfish-actions.pod:4087
15991 msgid "The default is disabled."
15992 msgstr ""
15993
15994 #. type: =head2
15995 #: ../src/guestfs-actions.pod:6166
15996 msgid "guestfs_set_e2label"
15997 msgstr ""
15998
15999 #. type: verbatim
16000 #: ../src/guestfs-actions.pod:6168
16001 #, no-wrap
16002 msgid ""
16003 " int\n"
16004 " guestfs_set_e2label (guestfs_h *g,\n"
16005 "                      const char *device,\n"
16006 "                      const char *label);\n"
16007 "\n"
16008 msgstr ""
16009
16010 #. type: textblock
16011 #: ../src/guestfs-actions.pod:6173 ../fish/guestfish-actions.pod:4093
16012 msgid ""
16013 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16014 "C<label>.  Filesystem labels are limited to 16 characters."
16015 msgstr ""
16016
16017 #. type: textblock
16018 #: ../src/guestfs-actions.pod:6177
16019 msgid ""
16020 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16021 "the existing label on a filesystem."
16022 msgstr ""
16023
16024 #. type: =head2
16025 #: ../src/guestfs-actions.pod:6184
16026 msgid "guestfs_set_e2uuid"
16027 msgstr ""
16028
16029 #. type: verbatim
16030 #: ../src/guestfs-actions.pod:6186
16031 #, no-wrap
16032 msgid ""
16033 " int\n"
16034 " guestfs_set_e2uuid (guestfs_h *g,\n"
16035 "                     const char *device,\n"
16036 "                     const char *uuid);\n"
16037 "\n"
16038 msgstr ""
16039
16040 #. type: textblock
16041 #: ../src/guestfs-actions.pod:6191 ../fish/guestfish-actions.pod:4104
16042 msgid ""
16043 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16044 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16045 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16046 msgstr ""
16047
16048 #. type: textblock
16049 #: ../src/guestfs-actions.pod:6196
16050 msgid ""
16051 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16052 "the existing UUID of a filesystem."
16053 msgstr ""
16054
16055 #. type: =head2
16056 #: ../src/guestfs-actions.pod:6203
16057 msgid "guestfs_set_memsize"
16058 msgstr ""
16059
16060 #. type: verbatim
16061 #: ../src/guestfs-actions.pod:6205
16062 #, no-wrap
16063 msgid ""
16064 " int\n"
16065 " guestfs_set_memsize (guestfs_h *g,\n"
16066 "                      int memsize);\n"
16067 "\n"
16068 msgstr ""
16069
16070 #. type: textblock
16071 #: ../src/guestfs-actions.pod:6209
16072 msgid ""
16073 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16074 "This only has any effect if called before C<guestfs_launch>."
16075 msgstr ""
16076
16077 #. type: textblock
16078 #: ../src/guestfs-actions.pod:6213 ../fish/guestfish-actions.pod:4122
16079 msgid ""
16080 "You can also change this by setting the environment variable "
16081 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16082 msgstr ""
16083
16084 #. type: =head2
16085 #: ../src/guestfs-actions.pod:6224
16086 msgid "guestfs_set_network"
16087 msgstr ""
16088
16089 #. type: verbatim
16090 #: ../src/guestfs-actions.pod:6226
16091 #, no-wrap
16092 msgid ""
16093 " int\n"
16094 " guestfs_set_network (guestfs_h *g,\n"
16095 "                      int network);\n"
16096 "\n"
16097 msgstr ""
16098
16099 #. type: textblock
16100 #: ../src/guestfs-actions.pod:6230 ../fish/guestfish-actions.pod:4135
16101 msgid ""
16102 "If C<network> is true, then the network is enabled in the libguestfs "
16103 "appliance.  The default is false."
16104 msgstr ""
16105
16106 #. type: textblock
16107 #: ../src/guestfs-actions.pod:6233 ../fish/guestfish-actions.pod:4138
16108 msgid ""
16109 "This affects whether commands are able to access the network (see "
16110 "L<guestfs(3)/RUNNING COMMANDS>)."
16111 msgstr ""
16112
16113 #. type: textblock
16114 #: ../src/guestfs-actions.pod:6236
16115 msgid ""
16116 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16117 "effect."
16118 msgstr ""
16119
16120 #. type: =head2
16121 #: ../src/guestfs-actions.pod:6243
16122 msgid "guestfs_set_path"
16123 msgstr ""
16124
16125 #. type: verbatim
16126 #: ../src/guestfs-actions.pod:6245
16127 #, no-wrap
16128 msgid ""
16129 " int\n"
16130 " guestfs_set_path (guestfs_h *g,\n"
16131 "                   const char *searchpath);\n"
16132 "\n"
16133 msgstr ""
16134
16135 #. type: textblock
16136 #: ../src/guestfs-actions.pod:6249 ../fish/guestfish-actions.pod:4150
16137 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16138 msgstr ""
16139
16140 #. type: textblock
16141 #: ../src/guestfs-actions.pod:6251 ../fish/guestfish-actions.pod:4152
16142 msgid ""
16143 "The default is C<$libdir/guestfs> unless overridden by setting "
16144 "C<LIBGUESTFS_PATH> environment variable."
16145 msgstr ""
16146
16147 #. type: textblock
16148 #: ../src/guestfs-actions.pod:6254 ../fish/guestfish-actions.pod:4155
16149 msgid "Setting C<path> to C<NULL> restores the default path."
16150 msgstr ""
16151
16152 #. type: =head2
16153 #: ../src/guestfs-actions.pod:6260
16154 msgid "guestfs_set_qemu"
16155 msgstr ""
16156
16157 #. type: verbatim
16158 #: ../src/guestfs-actions.pod:6262
16159 #, no-wrap
16160 msgid ""
16161 " int\n"
16162 " guestfs_set_qemu (guestfs_h *g,\n"
16163 "                   const char *qemu);\n"
16164 "\n"
16165 msgstr ""
16166
16167 #. type: textblock
16168 #: ../src/guestfs-actions.pod:6266 ../fish/guestfish-actions.pod:4163
16169 msgid "Set the qemu binary that we will use."
16170 msgstr ""
16171
16172 #. type: textblock
16173 #: ../src/guestfs-actions.pod:6268 ../fish/guestfish-actions.pod:4165
16174 msgid "The default is chosen when the library was compiled by the configure script."
16175 msgstr ""
16176
16177 #. type: textblock
16178 #: ../src/guestfs-actions.pod:6271 ../fish/guestfish-actions.pod:4168
16179 msgid ""
16180 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16181 "variable."
16182 msgstr ""
16183
16184 #. type: textblock
16185 #: ../src/guestfs-actions.pod:6274 ../fish/guestfish-actions.pod:4171
16186 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16187 msgstr ""
16188
16189 #. type: textblock
16190 #: ../src/guestfs-actions.pod:6276 ../fish/guestfish-actions.pod:4173
16191 msgid ""
16192 "Note that you should call this function as early as possible after creating "
16193 "the handle.  This is because some pre-launch operations depend on testing "
16194 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16195 "don't retest features, and so you might see inconsistent results.  Using the "
16196 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16197 "the qemu binary at the same time as the handle is created."
16198 msgstr ""
16199
16200 #. type: =head2
16201 #: ../src/guestfs-actions.pod:6288
16202 msgid "guestfs_set_recovery_proc"
16203 msgstr ""
16204
16205 #. type: verbatim
16206 #: ../src/guestfs-actions.pod:6290
16207 #, no-wrap
16208 msgid ""
16209 " int\n"
16210 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16211 "                            int recoveryproc);\n"
16212 "\n"
16213 msgstr ""
16214
16215 #. type: textblock
16216 #: ../src/guestfs-actions.pod:6294
16217 msgid ""
16218 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16219 "not create a recovery process.  The purpose of the recovery process is to "
16220 "stop runaway qemu processes in the case where the main program aborts "
16221 "abruptly."
16222 msgstr ""
16223
16224 #. type: textblock
16225 #: ../src/guestfs-actions.pod:6299
16226 msgid ""
16227 "This only has any effect if called before C<guestfs_launch>, and the default "
16228 "is true."
16229 msgstr ""
16230
16231 #. type: textblock
16232 #: ../src/guestfs-actions.pod:6302 ../fish/guestfish-actions.pod:4195
16233 msgid ""
16234 "About the only time when you would want to disable this is if the main "
16235 "process will fork itself into the background (\"daemonize\" itself).  In "
16236 "this case the recovery process thinks that the main program has disappeared "
16237 "and so kills qemu, which is not very helpful."
16238 msgstr ""
16239
16240 #. type: =head2
16241 #: ../src/guestfs-actions.pod:6312
16242 msgid "guestfs_set_selinux"
16243 msgstr ""
16244
16245 #. type: verbatim
16246 #: ../src/guestfs-actions.pod:6314
16247 #, no-wrap
16248 msgid ""
16249 " int\n"
16250 " guestfs_set_selinux (guestfs_h *g,\n"
16251 "                      int selinux);\n"
16252 "\n"
16253 msgstr ""
16254
16255 #. type: textblock
16256 #: ../src/guestfs-actions.pod:6318 ../fish/guestfish-actions.pod:4207
16257 msgid ""
16258 "This sets the selinux flag that is passed to the appliance at boot time.  "
16259 "The default is C<selinux=0> (disabled)."
16260 msgstr ""
16261
16262 #. type: textblock
16263 #: ../src/guestfs-actions.pod:6321 ../fish/guestfish-actions.pod:4210
16264 msgid ""
16265 "Note that if SELinux is enabled, it is always in Permissive mode "
16266 "(C<enforcing=0>)."
16267 msgstr ""
16268
16269 #. type: =head2
16270 #: ../src/guestfs-actions.pod:6331
16271 msgid "guestfs_set_trace"
16272 msgstr ""
16273
16274 #. type: verbatim
16275 #: ../src/guestfs-actions.pod:6333
16276 #, no-wrap
16277 msgid ""
16278 " int\n"
16279 " guestfs_set_trace (guestfs_h *g,\n"
16280 "                    int trace);\n"
16281 "\n"
16282 msgstr ""
16283
16284 #. type: textblock
16285 #: ../src/guestfs-actions.pod:6337 ../fish/guestfish-actions.pod:4222
16286 msgid ""
16287 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16288 "return values are traced."
16289 msgstr ""
16290
16291 #. type: textblock
16292 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4225
16293 msgid ""
16294 "If you want to trace C API calls into libguestfs (and other libraries) then "
16295 "possibly a better way is to use the external ltrace(1) command."
16296 msgstr ""
16297
16298 #. type: textblock
16299 #: ../src/guestfs-actions.pod:6344 ../fish/guestfish-actions.pod:4229
16300 msgid ""
16301 "Command traces are disabled unless the environment variable "
16302 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16303 msgstr ""
16304
16305 #. type: textblock
16306 #: ../src/guestfs-actions.pod:6347
16307 msgid ""
16308 "Trace messages are normally sent to C<stderr>, unless you register a "
16309 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16310 msgstr ""
16311
16312 #. type: =head2
16313 #: ../src/guestfs-actions.pod:6355
16314 msgid "guestfs_set_verbose"
16315 msgstr ""
16316
16317 #. type: verbatim
16318 #: ../src/guestfs-actions.pod:6357
16319 #, no-wrap
16320 msgid ""
16321 " int\n"
16322 " guestfs_set_verbose (guestfs_h *g,\n"
16323 "                      int verbose);\n"
16324 "\n"
16325 msgstr ""
16326
16327 #. type: textblock
16328 #: ../src/guestfs-actions.pod:6361 ../fish/guestfish-actions.pod:4242
16329 msgid "If C<verbose> is true, this turns on verbose messages."
16330 msgstr ""
16331
16332 #. type: textblock
16333 #: ../src/guestfs-actions.pod:6363 ../fish/guestfish-actions.pod:4244
16334 msgid ""
16335 "Verbose messages are disabled unless the environment variable "
16336 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16337 msgstr ""
16338
16339 #. type: textblock
16340 #: ../src/guestfs-actions.pod:6366
16341 msgid ""
16342 "Verbose messages are normally sent to C<stderr>, unless you register a "
16343 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16344 msgstr ""
16345
16346 #. type: =head2
16347 #: ../src/guestfs-actions.pod:6374
16348 msgid "guestfs_setcon"
16349 msgstr ""
16350
16351 #. type: verbatim
16352 #: ../src/guestfs-actions.pod:6376
16353 #, no-wrap
16354 msgid ""
16355 " int\n"
16356 " guestfs_setcon (guestfs_h *g,\n"
16357 "                 const char *context);\n"
16358 "\n"
16359 msgstr ""
16360
16361 #. type: textblock
16362 #: ../src/guestfs-actions.pod:6380 ../fish/guestfish-actions.pod:4255
16363 msgid ""
16364 "This sets the SELinux security context of the daemon to the string "
16365 "C<context>."
16366 msgstr ""
16367
16368 #. type: textblock
16369 #: ../src/guestfs-actions.pod:6383 ../fish/guestfish-actions.pod:4258
16370 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16371 msgstr ""
16372
16373 #. type: =head2
16374 #: ../src/guestfs-actions.pod:6389
16375 msgid "guestfs_setxattr"
16376 msgstr ""
16377
16378 #. type: verbatim
16379 #: ../src/guestfs-actions.pod:6391
16380 #, no-wrap
16381 msgid ""
16382 " int\n"
16383 " guestfs_setxattr (guestfs_h *g,\n"
16384 "                   const char *xattr,\n"
16385 "                   const char *val,\n"
16386 "                   int vallen,\n"
16387 "                   const char *path);\n"
16388 "\n"
16389 msgstr ""
16390
16391 #. type: textblock
16392 #: ../src/guestfs-actions.pod:6398 ../fish/guestfish-actions.pod:4264
16393 msgid ""
16394 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16395 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16396 msgstr ""
16397
16398 #. type: textblock
16399 #: ../src/guestfs-actions.pod:6402
16400 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16401 msgstr ""
16402
16403 #. type: =head2
16404 #: ../src/guestfs-actions.pod:6408
16405 msgid "guestfs_sfdisk"
16406 msgstr ""
16407
16408 #. type: verbatim
16409 #: ../src/guestfs-actions.pod:6410
16410 #, no-wrap
16411 msgid ""
16412 " int\n"
16413 " guestfs_sfdisk (guestfs_h *g,\n"
16414 "                 const char *device,\n"
16415 "                 int cyls,\n"
16416 "                 int heads,\n"
16417 "                 int sectors,\n"
16418 "                 char *const *lines);\n"
16419 "\n"
16420 msgstr ""
16421
16422 #. type: textblock
16423 #: ../src/guestfs-actions.pod:6418 ../fish/guestfish-actions.pod:4274
16424 msgid ""
16425 "This is a direct interface to the L<sfdisk(8)> program for creating "
16426 "partitions on block devices."
16427 msgstr ""
16428
16429 #. type: textblock
16430 #: ../src/guestfs-actions.pod:6421 ../fish/guestfish-actions.pod:4277
16431 msgid "C<device> should be a block device, for example C</dev/sda>."
16432 msgstr ""
16433
16434 #. type: textblock
16435 #: ../src/guestfs-actions.pod:6423 ../fish/guestfish-actions.pod:4279
16436 msgid ""
16437 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16438 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
16439 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16440 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16441 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16442 "the kernel) cannot work out the right geometry and you will need to tell it."
16443 msgstr ""
16444
16445 #. type: textblock
16446 #: ../src/guestfs-actions.pod:6431 ../fish/guestfish-actions.pod:4287
16447 msgid ""
16448 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16449 "refer to the L<sfdisk(8)> manpage."
16450 msgstr ""
16451
16452 #. type: textblock
16453 #: ../src/guestfs-actions.pod:6434 ../fish/guestfish-actions.pod:4290
16454 msgid ""
16455 "To create a single partition occupying the whole disk, you would pass "
16456 "C<lines> as a single element list, when the single element being the string "
16457 "C<,> (comma)."
16458 msgstr ""
16459
16460 #. type: textblock
16461 #: ../src/guestfs-actions.pod:6438
16462 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16463 msgstr ""
16464
16465 #. type: textblock
16466 #: ../src/guestfs-actions.pod:6446 ../src/guestfs-actions.pod:6476 ../src/guestfs-actions.pod:6509 ../fish/guestfish-actions.pod:4300 ../fish/guestfish-actions.pod:4323 ../fish/guestfish-actions.pod:4345
16467 msgid "This function is deprecated.  In new code, use the C<part_add> call instead."
16468 msgstr ""
16469
16470 #. type: =head2
16471 #: ../src/guestfs-actions.pod:6455
16472 msgid "guestfs_sfdiskM"
16473 msgstr ""
16474
16475 #. type: verbatim
16476 #: ../src/guestfs-actions.pod:6457
16477 #, no-wrap
16478 msgid ""
16479 " int\n"
16480 " guestfs_sfdiskM (guestfs_h *g,\n"
16481 "                  const char *device,\n"
16482 "                  char *const *lines);\n"
16483 "\n"
16484 msgstr ""
16485
16486 #. type: textblock
16487 #: ../src/guestfs-actions.pod:6462
16488 msgid ""
16489 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16490 "partition sizes are specified in megabytes only (rounded to the nearest "
16491 "cylinder) and you don't need to specify the cyls, heads and sectors "
16492 "parameters which were rarely if ever used anyway."
16493 msgstr ""
16494
16495 #. type: textblock
16496 #: ../src/guestfs-actions.pod:6468
16497 msgid ""
16498 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16499 "C<guestfs_part_disk>"
16500 msgstr ""
16501
16502 #. type: =head2
16503 #: ../src/guestfs-actions.pod:6485
16504 msgid "guestfs_sfdisk_N"
16505 msgstr ""
16506
16507 #. type: verbatim
16508 #: ../src/guestfs-actions.pod:6487
16509 #, no-wrap
16510 msgid ""
16511 " int\n"
16512 " guestfs_sfdisk_N (guestfs_h *g,\n"
16513 "                   const char *device,\n"
16514 "                   int partnum,\n"
16515 "                   int cyls,\n"
16516 "                   int heads,\n"
16517 "                   int sectors,\n"
16518 "                   const char *line);\n"
16519 "\n"
16520 msgstr ""
16521
16522 #. type: textblock
16523 #: ../src/guestfs-actions.pod:6496 ../fish/guestfish-actions.pod:4334
16524 msgid ""
16525 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16526 "(note: C<n> counts from 1)."
16527 msgstr ""
16528
16529 #. type: textblock
16530 #: ../src/guestfs-actions.pod:6499
16531 msgid ""
16532 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16533 "for the cyls/heads/sectors parameters."
16534 msgstr ""
16535
16536 #. type: textblock
16537 #: ../src/guestfs-actions.pod:6502
16538 msgid "See also: C<guestfs_part_add>"
16539 msgstr ""
16540
16541 #. type: =head2
16542 #: ../src/guestfs-actions.pod:6518
16543 msgid "guestfs_sfdisk_disk_geometry"
16544 msgstr ""
16545
16546 #. type: verbatim
16547 #: ../src/guestfs-actions.pod:6520
16548 #, no-wrap
16549 msgid ""
16550 " char *\n"
16551 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16552 "                               const char *device);\n"
16553 "\n"
16554 msgstr ""
16555
16556 #. type: textblock
16557 #: ../src/guestfs-actions.pod:6524
16558 msgid ""
16559 "This displays the disk geometry of C<device> read from the partition table.  "
16560 "Especially in the case where the underlying block device has been resized, "
16561 "this can be different from the kernel's idea of the geometry (see "
16562 "C<guestfs_sfdisk_kernel_geometry>)."
16563 msgstr ""
16564
16565 #. type: textblock
16566 #: ../src/guestfs-actions.pod:6529 ../src/guestfs-actions.pod:6545 ../fish/guestfish-actions.pod:4361 ../fish/guestfish-actions.pod:4370
16567 msgid "The result is in human-readable format, and not designed to be parsed."
16568 msgstr ""
16569
16570 #. type: =head2
16571 #: ../src/guestfs-actions.pod:6537
16572 msgid "guestfs_sfdisk_kernel_geometry"
16573 msgstr ""
16574
16575 #. type: verbatim
16576 #: ../src/guestfs-actions.pod:6539
16577 #, no-wrap
16578 msgid ""
16579 " char *\n"
16580 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16581 "                                 const char *device);\n"
16582 "\n"
16583 msgstr ""
16584
16585 #. type: textblock
16586 #: ../src/guestfs-actions.pod:6543 ../fish/guestfish-actions.pod:4368
16587 msgid "This displays the kernel's idea of the geometry of C<device>."
16588 msgstr ""
16589
16590 #. type: =head2
16591 #: ../src/guestfs-actions.pod:6553
16592 msgid "guestfs_sfdisk_l"
16593 msgstr ""
16594
16595 #. type: verbatim
16596 #: ../src/guestfs-actions.pod:6555
16597 #, no-wrap
16598 msgid ""
16599 " char *\n"
16600 " guestfs_sfdisk_l (guestfs_h *g,\n"
16601 "                   const char *device);\n"
16602 "\n"
16603 msgstr ""
16604
16605 #. type: textblock
16606 #: ../src/guestfs-actions.pod:6559 ../fish/guestfish-actions.pod:4377
16607 msgid ""
16608 "This displays the partition table on C<device>, in the human-readable output "
16609 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16610 msgstr ""
16611
16612 #. type: textblock
16613 #: ../src/guestfs-actions.pod:6563
16614 msgid "See also: C<guestfs_part_list>"
16615 msgstr ""
16616
16617 #. type: textblock
16618 #: ../src/guestfs-actions.pod:6568 ../fish/guestfish-actions.pod:4383
16619 msgid ""
16620 "This function is deprecated.  In new code, use the C<part_list> call "
16621 "instead."
16622 msgstr ""
16623
16624 #. type: =head2
16625 #: ../src/guestfs-actions.pod:6577
16626 msgid "guestfs_sh"
16627 msgstr ""
16628
16629 #. type: verbatim
16630 #: ../src/guestfs-actions.pod:6579
16631 #, no-wrap
16632 msgid ""
16633 " char *\n"
16634 " guestfs_sh (guestfs_h *g,\n"
16635 "             const char *command);\n"
16636 "\n"
16637 msgstr ""
16638
16639 #. type: textblock
16640 #: ../src/guestfs-actions.pod:6583 ../fish/guestfish-actions.pod:4394
16641 msgid ""
16642 "This call runs a command from the guest filesystem via the guest's "
16643 "C</bin/sh>."
16644 msgstr ""
16645
16646 #. type: textblock
16647 #: ../src/guestfs-actions.pod:6586
16648 msgid "This is like C<guestfs_command>, but passes the command to:"
16649 msgstr ""
16650
16651 #. type: verbatim
16652 #: ../src/guestfs-actions.pod:6588 ../fish/guestfish-actions.pod:4399
16653 #, no-wrap
16654 msgid ""
16655 " /bin/sh -c \"command\"\n"
16656 "\n"
16657 msgstr ""
16658
16659 #. type: textblock
16660 #: ../src/guestfs-actions.pod:6590 ../fish/guestfish-actions.pod:4401
16661 msgid ""
16662 "Depending on the guest's shell, this usually results in wildcards being "
16663 "expanded, shell expressions being interpolated and so on."
16664 msgstr ""
16665
16666 #. type: textblock
16667 #: ../src/guestfs-actions.pod:6594
16668 msgid "All the provisos about C<guestfs_command> apply to this call."
16669 msgstr ""
16670
16671 #. type: =head2
16672 #: ../src/guestfs-actions.pod:6601
16673 msgid "guestfs_sh_lines"
16674 msgstr ""
16675
16676 #. type: verbatim
16677 #: ../src/guestfs-actions.pod:6603
16678 #, no-wrap
16679 msgid ""
16680 " char **\n"
16681 " guestfs_sh_lines (guestfs_h *g,\n"
16682 "                   const char *command);\n"
16683 "\n"
16684 msgstr ""
16685
16686 #. type: textblock
16687 #: ../src/guestfs-actions.pod:6607
16688 msgid ""
16689 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16690 "lines."
16691 msgstr ""
16692
16693 #. type: textblock
16694 #: ../src/guestfs-actions.pod:6610
16695 msgid "See also: C<guestfs_command_lines>"
16696 msgstr ""
16697
16698 #. type: =head2
16699 #: ../src/guestfs-actions.pod:6618
16700 msgid "guestfs_sleep"
16701 msgstr ""
16702
16703 #. type: verbatim
16704 #: ../src/guestfs-actions.pod:6620
16705 #, no-wrap
16706 msgid ""
16707 " int\n"
16708 " guestfs_sleep (guestfs_h *g,\n"
16709 "                int secs);\n"
16710 "\n"
16711 msgstr ""
16712
16713 #. type: textblock
16714 #: ../src/guestfs-actions.pod:6624 ../fish/guestfish-actions.pod:4420
16715 msgid "Sleep for C<secs> seconds."
16716 msgstr ""
16717
16718 #. type: textblock
16719 #: ../src/guestfs-actions.pod:6628
16720 msgid "(Added in 1.0.41)"
16721 msgstr ""
16722
16723 #. type: =head2
16724 #: ../src/guestfs-actions.pod:6630 ../src/guestfs-structs.pod:109
16725 msgid "guestfs_stat"
16726 msgstr ""
16727
16728 #. type: verbatim
16729 #: ../src/guestfs-actions.pod:6632
16730 #, no-wrap
16731 msgid ""
16732 " struct guestfs_stat *\n"
16733 " guestfs_stat (guestfs_h *g,\n"
16734 "               const char *path);\n"
16735 "\n"
16736 msgstr ""
16737
16738 #. type: textblock
16739 #: ../src/guestfs-actions.pod:6638 ../fish/guestfish-actions.pod:4428
16740 msgid "This is the same as the C<stat(2)> system call."
16741 msgstr ""
16742
16743 #. type: =head2
16744 #: ../src/guestfs-actions.pod:6646 ../src/guestfs-structs.pod:135
16745 msgid "guestfs_statvfs"
16746 msgstr ""
16747
16748 #. type: verbatim
16749 #: ../src/guestfs-actions.pod:6648
16750 #, no-wrap
16751 msgid ""
16752 " struct guestfs_statvfs *\n"
16753 " guestfs_statvfs (guestfs_h *g,\n"
16754 "                  const char *path);\n"
16755 "\n"
16756 msgstr ""
16757
16758 #. type: textblock
16759 #: ../src/guestfs-actions.pod:6652 ../fish/guestfish-actions.pod:4434
16760 msgid ""
16761 "Returns file system statistics for any mounted file system.  C<path> should "
16762 "be a file or directory in the mounted file system (typically it is the mount "
16763 "point itself, but it doesn't need to be)."
16764 msgstr ""
16765
16766 #. type: textblock
16767 #: ../src/guestfs-actions.pod:6656 ../fish/guestfish-actions.pod:4438
16768 msgid "This is the same as the C<statvfs(2)> system call."
16769 msgstr ""
16770
16771 #. type: textblock
16772 #: ../src/guestfs-actions.pod:6658
16773 msgid ""
16774 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16775 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16776 msgstr ""
16777
16778 #. type: =head2
16779 #: ../src/guestfs-actions.pod:6664
16780 msgid "guestfs_strings"
16781 msgstr ""
16782
16783 #. type: verbatim
16784 #: ../src/guestfs-actions.pod:6666
16785 #, no-wrap
16786 msgid ""
16787 " char **\n"
16788 " guestfs_strings (guestfs_h *g,\n"
16789 "                  const char *path);\n"
16790 "\n"
16791 msgstr ""
16792
16793 #. type: textblock
16794 #: ../src/guestfs-actions.pod:6670 ../fish/guestfish-actions.pod:4444
16795 msgid ""
16796 "This runs the L<strings(1)> command on a file and returns the list of "
16797 "printable strings found."
16798 msgstr ""
16799
16800 #. type: =head2
16801 #: ../src/guestfs-actions.pod:6682
16802 msgid "guestfs_strings_e"
16803 msgstr ""
16804
16805 #. type: verbatim
16806 #: ../src/guestfs-actions.pod:6684
16807 #, no-wrap
16808 msgid ""
16809 " char **\n"
16810 " guestfs_strings_e (guestfs_h *g,\n"
16811 "                    const char *encoding,\n"
16812 "                    const char *path);\n"
16813 "\n"
16814 msgstr ""
16815
16816 #. type: textblock
16817 #: ../src/guestfs-actions.pod:6689
16818 msgid ""
16819 "This is like the C<guestfs_strings> command, but allows you to specify the "
16820 "encoding of strings that are looked for in the source file C<path>."
16821 msgstr ""
16822
16823 #. type: textblock
16824 #: ../src/guestfs-actions.pod:6693 ../fish/guestfish-actions.pod:4458
16825 msgid "Allowed encodings are:"
16826 msgstr ""
16827
16828 #. type: =item
16829 #: ../src/guestfs-actions.pod:6697 ../fish/guestfish-actions.pod:4462
16830 msgid "s"
16831 msgstr ""
16832
16833 #. type: textblock
16834 #: ../src/guestfs-actions.pod:6699
16835 msgid ""
16836 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16837 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16838 msgstr ""
16839
16840 #. type: =item
16841 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4467
16842 msgid "S"
16843 msgstr ""
16844
16845 #. type: textblock
16846 #: ../src/guestfs-actions.pod:6704 ../fish/guestfish-actions.pod:4469
16847 msgid "Single 8-bit-byte characters."
16848 msgstr ""
16849
16850 #. type: =item
16851 #: ../src/guestfs-actions.pod:6706 ../fish/guestfish-actions.pod:4471
16852 msgid "b"
16853 msgstr ""
16854
16855 #. type: textblock
16856 #: ../src/guestfs-actions.pod:6708 ../fish/guestfish-actions.pod:4473
16857 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16858 msgstr ""
16859
16860 #. type: =item
16861 #: ../src/guestfs-actions.pod:6711 ../fish/guestfish-actions.pod:4476
16862 msgid "l (lower case letter L)"
16863 msgstr ""
16864
16865 #. type: textblock
16866 #: ../src/guestfs-actions.pod:6713 ../fish/guestfish-actions.pod:4478
16867 msgid ""
16868 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16869 "examining binaries in Windows guests."
16870 msgstr ""
16871
16872 #. type: =item
16873 #: ../src/guestfs-actions.pod:6716 ../fish/guestfish-actions.pod:4481
16874 msgid "B"
16875 msgstr ""
16876
16877 #. type: textblock
16878 #: ../src/guestfs-actions.pod:6718 ../fish/guestfish-actions.pod:4483
16879 msgid "32-bit big endian such as UCS-4BE."
16880 msgstr ""
16881
16882 #. type: =item
16883 #: ../src/guestfs-actions.pod:6720 ../fish/guestfish-actions.pod:4485
16884 msgid "L"
16885 msgstr ""
16886
16887 #. type: textblock
16888 #: ../src/guestfs-actions.pod:6722 ../fish/guestfish-actions.pod:4487
16889 msgid "32-bit little endian such as UCS-4LE."
16890 msgstr ""
16891
16892 #. type: textblock
16893 #: ../src/guestfs-actions.pod:6726 ../fish/guestfish-actions.pod:4491
16894 msgid "The returned strings are transcoded to UTF-8."
16895 msgstr ""
16896
16897 #. type: =head2
16898 #: ../src/guestfs-actions.pod:6737
16899 msgid "guestfs_swapoff_device"
16900 msgstr ""
16901
16902 #. type: verbatim
16903 #: ../src/guestfs-actions.pod:6739
16904 #, no-wrap
16905 msgid ""
16906 " int\n"
16907 " guestfs_swapoff_device (guestfs_h *g,\n"
16908 "                         const char *device);\n"
16909 "\n"
16910 msgstr ""
16911
16912 #. type: textblock
16913 #: ../src/guestfs-actions.pod:6743
16914 msgid ""
16915 "This command disables the libguestfs appliance swap device or partition "
16916 "named C<device>.  See C<guestfs_swapon_device>."
16917 msgstr ""
16918
16919 #. type: =head2
16920 #: ../src/guestfs-actions.pod:6751
16921 msgid "guestfs_swapoff_file"
16922 msgstr ""
16923
16924 #. type: verbatim
16925 #: ../src/guestfs-actions.pod:6753
16926 #, no-wrap
16927 msgid ""
16928 " int\n"
16929 " guestfs_swapoff_file (guestfs_h *g,\n"
16930 "                       const char *file);\n"
16931 "\n"
16932 msgstr ""
16933
16934 #. type: textblock
16935 #: ../src/guestfs-actions.pod:6757 ../fish/guestfish-actions.pod:4508
16936 msgid "This command disables the libguestfs appliance swap on file."
16937 msgstr ""
16938
16939 #. type: =head2
16940 #: ../src/guestfs-actions.pod:6763
16941 msgid "guestfs_swapoff_label"
16942 msgstr ""
16943
16944 #. type: verbatim
16945 #: ../src/guestfs-actions.pod:6765
16946 #, no-wrap
16947 msgid ""
16948 " int\n"
16949 " guestfs_swapoff_label (guestfs_h *g,\n"
16950 "                        const char *label);\n"
16951 "\n"
16952 msgstr ""
16953
16954 #. type: textblock
16955 #: ../src/guestfs-actions.pod:6769 ../fish/guestfish-actions.pod:4514
16956 msgid ""
16957 "This command disables the libguestfs appliance swap on labeled swap "
16958 "partition."
16959 msgstr ""
16960
16961 #. type: =head2
16962 #: ../src/guestfs-actions.pod:6776
16963 msgid "guestfs_swapoff_uuid"
16964 msgstr ""
16965
16966 #. type: verbatim
16967 #: ../src/guestfs-actions.pod:6778
16968 #, no-wrap
16969 msgid ""
16970 " int\n"
16971 " guestfs_swapoff_uuid (guestfs_h *g,\n"
16972 "                       const char *uuid);\n"
16973 "\n"
16974 msgstr ""
16975
16976 #. type: textblock
16977 #: ../src/guestfs-actions.pod:6782 ../fish/guestfish-actions.pod:4521
16978 msgid ""
16979 "This command disables the libguestfs appliance swap partition with the given "
16980 "UUID."
16981 msgstr ""
16982
16983 #. type: =head2
16984 #: ../src/guestfs-actions.pod:6789
16985 msgid "guestfs_swapon_device"
16986 msgstr ""
16987
16988 #. type: verbatim
16989 #: ../src/guestfs-actions.pod:6791
16990 #, no-wrap
16991 msgid ""
16992 " int\n"
16993 " guestfs_swapon_device (guestfs_h *g,\n"
16994 "                        const char *device);\n"
16995 "\n"
16996 msgstr ""
16997
16998 #. type: textblock
16999 #: ../src/guestfs-actions.pod:6795
17000 msgid ""
17001 "This command enables the libguestfs appliance to use the swap device or "
17002 "partition named C<device>.  The increased memory is made available for all "
17003 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17004 msgstr ""
17005
17006 #. type: textblock
17007 #: ../src/guestfs-actions.pod:6800 ../fish/guestfish-actions.pod:4533
17008 msgid ""
17009 "Note that you should not swap to existing guest swap partitions unless you "
17010 "know what you are doing.  They may contain hibernation information, or other "
17011 "information that the guest doesn't want you to trash.  You also risk leaking "
17012 "information about the host to the guest this way.  Instead, attach a new "
17013 "host device to the guest and swap on that."
17014 msgstr ""
17015
17016 #. type: =head2
17017 #: ../src/guestfs-actions.pod:6811
17018 msgid "guestfs_swapon_file"
17019 msgstr ""
17020
17021 #. type: verbatim
17022 #: ../src/guestfs-actions.pod:6813
17023 #, no-wrap
17024 msgid ""
17025 " int\n"
17026 " guestfs_swapon_file (guestfs_h *g,\n"
17027 "                      const char *file);\n"
17028 "\n"
17029 msgstr ""
17030
17031 #. type: textblock
17032 #: ../src/guestfs-actions.pod:6817
17033 msgid ""
17034 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17035 "notes."
17036 msgstr ""
17037
17038 #. type: =head2
17039 #: ../src/guestfs-actions.pod:6824
17040 msgid "guestfs_swapon_label"
17041 msgstr ""
17042
17043 #. type: verbatim
17044 #: ../src/guestfs-actions.pod:6826
17045 #, no-wrap
17046 msgid ""
17047 " int\n"
17048 " guestfs_swapon_label (guestfs_h *g,\n"
17049 "                       const char *label);\n"
17050 "\n"
17051 msgstr ""
17052
17053 #. type: textblock
17054 #: ../src/guestfs-actions.pod:6830
17055 msgid ""
17056 "This command enables swap to a labeled swap partition.  See "
17057 "C<guestfs_swapon_device> for other notes."
17058 msgstr ""
17059
17060 #. type: =head2
17061 #: ../src/guestfs-actions.pod:6837
17062 msgid "guestfs_swapon_uuid"
17063 msgstr ""
17064
17065 #. type: verbatim
17066 #: ../src/guestfs-actions.pod:6839
17067 #, no-wrap
17068 msgid ""
17069 " int\n"
17070 " guestfs_swapon_uuid (guestfs_h *g,\n"
17071 "                      const char *uuid);\n"
17072 "\n"
17073 msgstr ""
17074
17075 #. type: textblock
17076 #: ../src/guestfs-actions.pod:6843
17077 msgid ""
17078 "This command enables swap to a swap partition with the given UUID.  See "
17079 "C<guestfs_swapon_device> for other notes."
17080 msgstr ""
17081
17082 #. type: =head2
17083 #: ../src/guestfs-actions.pod:6850
17084 msgid "guestfs_sync"
17085 msgstr ""
17086
17087 #. type: verbatim
17088 #: ../src/guestfs-actions.pod:6852
17089 #, no-wrap
17090 msgid ""
17091 " int\n"
17092 " guestfs_sync (guestfs_h *g);\n"
17093 "\n"
17094 msgstr ""
17095
17096 #. type: textblock
17097 #: ../src/guestfs-actions.pod:6855 ../fish/guestfish-actions.pod:4565
17098 msgid ""
17099 "This syncs the disk, so that any writes are flushed through to the "
17100 "underlying disk image."
17101 msgstr ""
17102
17103 #. type: textblock
17104 #: ../src/guestfs-actions.pod:6858 ../fish/guestfish-actions.pod:4568
17105 msgid ""
17106 "You should always call this if you have modified a disk image, before "
17107 "closing the handle."
17108 msgstr ""
17109
17110 #. type: =head2
17111 #: ../src/guestfs-actions.pod:6865
17112 msgid "guestfs_tail"
17113 msgstr ""
17114
17115 #. type: verbatim
17116 #: ../src/guestfs-actions.pod:6867
17117 #, no-wrap
17118 msgid ""
17119 " char **\n"
17120 " guestfs_tail (guestfs_h *g,\n"
17121 "               const char *path);\n"
17122 "\n"
17123 msgstr ""
17124
17125 #. type: textblock
17126 #: ../src/guestfs-actions.pod:6871 ../fish/guestfish-actions.pod:4575
17127 msgid "This command returns up to the last 10 lines of a file as a list of strings."
17128 msgstr ""
17129
17130 #. type: =head2
17131 #: ../src/guestfs-actions.pod:6883
17132 msgid "guestfs_tail_n"
17133 msgstr ""
17134
17135 #. type: verbatim
17136 #: ../src/guestfs-actions.pod:6885
17137 #, no-wrap
17138 msgid ""
17139 " char **\n"
17140 " guestfs_tail_n (guestfs_h *g,\n"
17141 "                 int nrlines,\n"
17142 "                 const char *path);\n"
17143 "\n"
17144 msgstr ""
17145
17146 #. type: textblock
17147 #: ../src/guestfs-actions.pod:6890 ../fish/guestfish-actions.pod:4585
17148 msgid ""
17149 "If the parameter C<nrlines> is a positive number, this returns the last "
17150 "C<nrlines> lines of the file C<path>."
17151 msgstr ""
17152
17153 #. type: textblock
17154 #: ../src/guestfs-actions.pod:6893 ../fish/guestfish-actions.pod:4588
17155 msgid ""
17156 "If the parameter C<nrlines> is a negative number, this returns lines from "
17157 "the file C<path>, starting with the C<-nrlines>th line."
17158 msgstr ""
17159
17160 #. type: =head2
17161 #: ../src/guestfs-actions.pod:6907
17162 msgid "guestfs_tar_in"
17163 msgstr ""
17164
17165 #. type: verbatim
17166 #: ../src/guestfs-actions.pod:6909
17167 #, no-wrap
17168 msgid ""
17169 " int\n"
17170 " guestfs_tar_in (guestfs_h *g,\n"
17171 "                 const char *tarfile,\n"
17172 "                 const char *directory);\n"
17173 "\n"
17174 msgstr ""
17175
17176 #. type: textblock
17177 #: ../src/guestfs-actions.pod:6914 ../fish/guestfish-actions.pod:4600
17178 msgid ""
17179 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17180 "tar file) into C<directory>."
17181 msgstr ""
17182
17183 #. type: textblock
17184 #: ../src/guestfs-actions.pod:6917
17185 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17186 msgstr ""
17187
17188 #. type: textblock
17189 #: ../src/guestfs-actions.pod:6922 ../src/guestfs-actions.pod:6939 ../src/guestfs-actions.pod:6955 ../src/guestfs-actions.pod:6971
17190 msgid "(Added in 1.0.3)"
17191 msgstr ""
17192
17193 #. type: =head2
17194 #: ../src/guestfs-actions.pod:6924
17195 msgid "guestfs_tar_out"
17196 msgstr ""
17197
17198 #. type: verbatim
17199 #: ../src/guestfs-actions.pod:6926
17200 #, no-wrap
17201 msgid ""
17202 " int\n"
17203 " guestfs_tar_out (guestfs_h *g,\n"
17204 "                  const char *directory,\n"
17205 "                  const char *tarfile);\n"
17206 "\n"
17207 msgstr ""
17208
17209 #. type: textblock
17210 #: ../src/guestfs-actions.pod:6931 ../fish/guestfish-actions.pod:4612
17211 msgid ""
17212 "This command packs the contents of C<directory> and downloads it to local "
17213 "file C<tarfile>."
17214 msgstr ""
17215
17216 #. type: textblock
17217 #: ../src/guestfs-actions.pod:6934
17218 msgid ""
17219 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17220 "C<guestfs_txz_out>."
17221 msgstr ""
17222
17223 #. type: =head2
17224 #: ../src/guestfs-actions.pod:6941
17225 msgid "guestfs_tgz_in"
17226 msgstr ""
17227
17228 #. type: verbatim
17229 #: ../src/guestfs-actions.pod:6943
17230 #, no-wrap
17231 msgid ""
17232 " int\n"
17233 " guestfs_tgz_in (guestfs_h *g,\n"
17234 "                 const char *tarball,\n"
17235 "                 const char *directory);\n"
17236 "\n"
17237 msgstr ""
17238
17239 #. type: textblock
17240 #: ../src/guestfs-actions.pod:6948 ../fish/guestfish-actions.pod:4624
17241 msgid ""
17242 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17243 "tar file) into C<directory>."
17244 msgstr ""
17245
17246 #. type: textblock
17247 #: ../src/guestfs-actions.pod:6951
17248 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17249 msgstr ""
17250
17251 #. type: =head2
17252 #: ../src/guestfs-actions.pod:6957
17253 msgid "guestfs_tgz_out"
17254 msgstr ""
17255
17256 #. type: verbatim
17257 #: ../src/guestfs-actions.pod:6959
17258 #, no-wrap
17259 msgid ""
17260 " int\n"
17261 " guestfs_tgz_out (guestfs_h *g,\n"
17262 "                  const char *directory,\n"
17263 "                  const char *tarball);\n"
17264 "\n"
17265 msgstr ""
17266
17267 #. type: textblock
17268 #: ../src/guestfs-actions.pod:6964 ../fish/guestfish-actions.pod:4635
17269 msgid ""
17270 "This command packs the contents of C<directory> and downloads it to local "
17271 "file C<tarball>."
17272 msgstr ""
17273
17274 #. type: textblock
17275 #: ../src/guestfs-actions.pod:6967
17276 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17277 msgstr ""
17278
17279 #. type: =head2
17280 #: ../src/guestfs-actions.pod:6973
17281 msgid "guestfs_touch"
17282 msgstr ""
17283
17284 #. type: verbatim
17285 #: ../src/guestfs-actions.pod:6975
17286 #, no-wrap
17287 msgid ""
17288 " int\n"
17289 " guestfs_touch (guestfs_h *g,\n"
17290 "                const char *path);\n"
17291 "\n"
17292 msgstr ""
17293
17294 #. type: textblock
17295 #: ../src/guestfs-actions.pod:6979 ../fish/guestfish-actions.pod:4646
17296 msgid ""
17297 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17298 "timestamps on a file, or, if the file does not exist, to create a new "
17299 "zero-length file."
17300 msgstr ""
17301
17302 #. type: textblock
17303 #: ../src/guestfs-actions.pod:6983 ../fish/guestfish-actions.pod:4650
17304 msgid ""
17305 "This command only works on regular files, and will fail on other file types "
17306 "such as directories, symbolic links, block special etc."
17307 msgstr ""
17308
17309 #. type: =head2
17310 #: ../src/guestfs-actions.pod:6990
17311 msgid "guestfs_truncate"
17312 msgstr ""
17313
17314 #. type: verbatim
17315 #: ../src/guestfs-actions.pod:6992
17316 #, no-wrap
17317 msgid ""
17318 " int\n"
17319 " guestfs_truncate (guestfs_h *g,\n"
17320 "                   const char *path);\n"
17321 "\n"
17322 msgstr ""
17323
17324 #. type: textblock
17325 #: ../src/guestfs-actions.pod:6996 ../fish/guestfish-actions.pod:4657
17326 msgid ""
17327 "This command truncates C<path> to a zero-length file.  The file must exist "
17328 "already."
17329 msgstr ""
17330
17331 #. type: =head2
17332 #: ../src/guestfs-actions.pod:7003
17333 msgid "guestfs_truncate_size"
17334 msgstr ""
17335
17336 #. type: verbatim
17337 #: ../src/guestfs-actions.pod:7005
17338 #, no-wrap
17339 msgid ""
17340 " int\n"
17341 " guestfs_truncate_size (guestfs_h *g,\n"
17342 "                        const char *path,\n"
17343 "                        int64_t size);\n"
17344 "\n"
17345 msgstr ""
17346
17347 #. type: textblock
17348 #: ../src/guestfs-actions.pod:7010 ../fish/guestfish-actions.pod:4664
17349 msgid ""
17350 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17351 "already."
17352 msgstr ""
17353
17354 #. type: textblock
17355 #: ../src/guestfs-actions.pod:7013
17356 msgid ""
17357 "If the current file size is less than C<size> then the file is extended to "
17358 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17359 "blocks are not allocated for the file until you write to it).  To create a "
17360 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17361 msgstr ""
17362
17363 #. type: =head2
17364 #: ../src/guestfs-actions.pod:7023
17365 msgid "guestfs_tune2fs_l"
17366 msgstr ""
17367
17368 #. type: verbatim
17369 #: ../src/guestfs-actions.pod:7025
17370 #, no-wrap
17371 msgid ""
17372 " char **\n"
17373 " guestfs_tune2fs_l (guestfs_h *g,\n"
17374 "                    const char *device);\n"
17375 "\n"
17376 msgstr ""
17377
17378 #. type: textblock
17379 #: ../src/guestfs-actions.pod:7029 ../fish/guestfish-actions.pod:4677
17380 msgid ""
17381 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17382 "C<device>."
17383 msgstr ""
17384
17385 #. type: textblock
17386 #: ../src/guestfs-actions.pod:7032 ../fish/guestfish-actions.pod:4680
17387 msgid ""
17388 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17389 "for more details.  The list of fields returned isn't clearly defined, and "
17390 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17391 "and the filesystem itself."
17392 msgstr ""
17393
17394 #. type: =head2
17395 #: ../src/guestfs-actions.pod:7045
17396 msgid "guestfs_txz_in"
17397 msgstr ""
17398
17399 #. type: verbatim
17400 #: ../src/guestfs-actions.pod:7047
17401 #, no-wrap
17402 msgid ""
17403 " int\n"
17404 " guestfs_txz_in (guestfs_h *g,\n"
17405 "                 const char *tarball,\n"
17406 "                 const char *directory);\n"
17407 "\n"
17408 msgstr ""
17409
17410 #. type: textblock
17411 #: ../src/guestfs-actions.pod:7052 ../fish/guestfish-actions.pod:4689
17412 msgid ""
17413 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17414 "tar file) into C<directory>."
17415 msgstr ""
17416
17417 #. type: =head2
17418 #: ../src/guestfs-actions.pod:7059
17419 msgid "guestfs_txz_out"
17420 msgstr ""
17421
17422 #. type: verbatim
17423 #: ../src/guestfs-actions.pod:7061
17424 #, no-wrap
17425 msgid ""
17426 " int\n"
17427 " guestfs_txz_out (guestfs_h *g,\n"
17428 "                  const char *directory,\n"
17429 "                  const char *tarball);\n"
17430 "\n"
17431 msgstr ""
17432
17433 #. type: textblock
17434 #: ../src/guestfs-actions.pod:7066 ../fish/guestfish-actions.pod:4698
17435 msgid ""
17436 "This command packs the contents of C<directory> and downloads it to local "
17437 "file C<tarball> (as an xz compressed tar archive)."
17438 msgstr ""
17439
17440 #. type: =head2
17441 #: ../src/guestfs-actions.pod:7073
17442 msgid "guestfs_umask"
17443 msgstr ""
17444
17445 #. type: verbatim
17446 #: ../src/guestfs-actions.pod:7075
17447 #, no-wrap
17448 msgid ""
17449 " int\n"
17450 " guestfs_umask (guestfs_h *g,\n"
17451 "                int mask);\n"
17452 "\n"
17453 msgstr ""
17454
17455 #. type: textblock
17456 #: ../src/guestfs-actions.pod:7079 ../fish/guestfish-actions.pod:4707
17457 msgid ""
17458 "This function sets the mask used for creating new files and device nodes to "
17459 "C<mask & 0777>."
17460 msgstr ""
17461
17462 #. type: textblock
17463 #: ../src/guestfs-actions.pod:7082 ../fish/guestfish-actions.pod:4710
17464 msgid ""
17465 "Typical umask values would be C<022> which creates new files with "
17466 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17467 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17468 msgstr ""
17469
17470 #. type: textblock
17471 #: ../src/guestfs-actions.pod:7087 ../fish/guestfish-actions.pod:4715
17472 msgid ""
17473 "The default umask is C<022>.  This is important because it means that "
17474 "directories and device nodes will be created with C<0644> or C<0755> mode "
17475 "even if you specify C<0777>."
17476 msgstr ""
17477
17478 #. type: textblock
17479 #: ../src/guestfs-actions.pod:7091
17480 msgid ""
17481 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17482 "C<guestfs_mkdir>."
17483 msgstr ""
17484
17485 #. type: textblock
17486 #: ../src/guestfs-actions.pod:7094 ../fish/guestfish-actions.pod:4722
17487 msgid "This call returns the previous umask."
17488 msgstr ""
17489
17490 #. type: =head2
17491 #: ../src/guestfs-actions.pod:7100
17492 msgid "guestfs_umount"
17493 msgstr ""
17494
17495 #. type: verbatim
17496 #: ../src/guestfs-actions.pod:7102
17497 #, no-wrap
17498 msgid ""
17499 " int\n"
17500 " guestfs_umount (guestfs_h *g,\n"
17501 "                 const char *pathordevice);\n"
17502 "\n"
17503 msgstr ""
17504
17505 #. type: textblock
17506 #: ../src/guestfs-actions.pod:7106 ../fish/guestfish-actions.pod:4730
17507 msgid ""
17508 "This unmounts the given filesystem.  The filesystem may be specified either "
17509 "by its mountpoint (path) or the device which contains the filesystem."
17510 msgstr ""
17511
17512 #. type: =head2
17513 #: ../src/guestfs-actions.pod:7114
17514 msgid "guestfs_umount_all"
17515 msgstr ""
17516
17517 #. type: verbatim
17518 #: ../src/guestfs-actions.pod:7116
17519 #, no-wrap
17520 msgid ""
17521 " int\n"
17522 " guestfs_umount_all (guestfs_h *g);\n"
17523 "\n"
17524 msgstr ""
17525
17526 #. type: textblock
17527 #: ../src/guestfs-actions.pod:7119 ../fish/guestfish-actions.pod:4740
17528 msgid "This unmounts all mounted filesystems."
17529 msgstr ""
17530
17531 #. type: textblock
17532 #: ../src/guestfs-actions.pod:7121 ../fish/guestfish-actions.pod:4742
17533 msgid "Some internal mounts are not unmounted by this call."
17534 msgstr ""
17535
17536 #. type: =head2
17537 #: ../src/guestfs-actions.pod:7127
17538 msgid "guestfs_upload"
17539 msgstr ""
17540
17541 #. type: verbatim
17542 #: ../src/guestfs-actions.pod:7129
17543 #, no-wrap
17544 msgid ""
17545 " int\n"
17546 " guestfs_upload (guestfs_h *g,\n"
17547 "                 const char *filename,\n"
17548 "                 const char *remotefilename);\n"
17549 "\n"
17550 msgstr ""
17551
17552 #. type: textblock
17553 #: ../src/guestfs-actions.pod:7134 ../src/guestfs-actions.pod:7158 ../fish/guestfish-actions.pod:4748 ../fish/guestfish-actions.pod:4761
17554 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17555 msgstr ""
17556
17557 #. type: textblock
17558 #: ../src/guestfs-actions.pod:7139
17559 msgid "See also C<guestfs_download>."
17560 msgstr ""
17561
17562 #. type: =head2
17563 #: ../src/guestfs-actions.pod:7150
17564 msgid "guestfs_upload_offset"
17565 msgstr ""
17566
17567 #. type: verbatim
17568 #: ../src/guestfs-actions.pod:7152
17569 #, no-wrap
17570 msgid ""
17571 " int\n"
17572 " guestfs_upload_offset (guestfs_h *g,\n"
17573 "                        const char *filename,\n"
17574 "                        const char *remotefilename,\n"
17575 "                        int64_t offset);\n"
17576 "\n"
17577 msgstr ""
17578
17579 #. type: textblock
17580 #: ../src/guestfs-actions.pod:7161 ../fish/guestfish-actions.pod:4764
17581 msgid ""
17582 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17583 "The intention is to overwrite parts of existing files or devices, although "
17584 "if a non-existant file is specified then it is created with a \"hole\" "
17585 "before C<offset>.  The size of the data written is implicit in the size of "
17586 "the source C<filename>."
17587 msgstr ""
17588
17589 #. type: textblock
17590 #: ../src/guestfs-actions.pod:7168
17591 msgid ""
17592 "Note that there is no limit on the amount of data that can be uploaded with "
17593 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17594 "full amount unless an error occurs."
17595 msgstr ""
17596
17597 #. type: textblock
17598 #: ../src/guestfs-actions.pod:7173
17599 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17600 msgstr ""
17601
17602 #. type: =head2
17603 #: ../src/guestfs-actions.pod:7184
17604 msgid "guestfs_utimens"
17605 msgstr ""
17606
17607 #. type: verbatim
17608 #: ../src/guestfs-actions.pod:7186
17609 #, no-wrap
17610 msgid ""
17611 " int\n"
17612 " guestfs_utimens (guestfs_h *g,\n"
17613 "                  const char *path,\n"
17614 "                  int64_t atsecs,\n"
17615 "                  int64_t atnsecs,\n"
17616 "                  int64_t mtsecs,\n"
17617 "                  int64_t mtnsecs);\n"
17618 "\n"
17619 msgstr ""
17620
17621 #. type: textblock
17622 #: ../src/guestfs-actions.pod:7194 ../fish/guestfish-actions.pod:4784
17623 msgid "This command sets the timestamps of a file with nanosecond precision."
17624 msgstr ""
17625
17626 #. type: textblock
17627 #: ../src/guestfs-actions.pod:7197 ../fish/guestfish-actions.pod:4787
17628 msgid ""
17629 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17630 "from the epoch."
17631 msgstr ""
17632
17633 #. type: textblock
17634 #: ../src/guestfs-actions.pod:7200 ../fish/guestfish-actions.pod:4790
17635 msgid ""
17636 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17637 "nanoseconds from the epoch."
17638 msgstr ""
17639
17640 #. type: textblock
17641 #: ../src/guestfs-actions.pod:7203 ../fish/guestfish-actions.pod:4793
17642 msgid ""
17643 "If the C<*nsecs> field contains the special value C<-1> then the "
17644 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17645 "ignored in this case)."
17646 msgstr ""
17647
17648 #. type: textblock
17649 #: ../src/guestfs-actions.pod:7207 ../fish/guestfish-actions.pod:4797
17650 msgid ""
17651 "If the C<*nsecs> field contains the special value C<-2> then the "
17652 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17653 "in this case)."
17654 msgstr ""
17655
17656 #. type: =head2
17657 #: ../src/guestfs-actions.pod:7215 ../src/guestfs-structs.pod:175
17658 msgid "guestfs_version"
17659 msgstr ""
17660
17661 #. type: verbatim
17662 #: ../src/guestfs-actions.pod:7217
17663 #, no-wrap
17664 msgid ""
17665 " struct guestfs_version *\n"
17666 " guestfs_version (guestfs_h *g);\n"
17667 "\n"
17668 msgstr ""
17669
17670 #. type: textblock
17671 #: ../src/guestfs-actions.pod:7220 ../fish/guestfish-actions.pod:4805
17672 msgid "Return the libguestfs version number that the program is linked against."
17673 msgstr ""
17674
17675 #. type: textblock
17676 #: ../src/guestfs-actions.pod:7223 ../fish/guestfish-actions.pod:4808
17677 msgid ""
17678 "Note that because of dynamic linking this is not necessarily the version of "
17679 "libguestfs that you compiled against.  You can compile the program, and then "
17680 "at runtime dynamically link against a completely different C<libguestfs.so> "
17681 "library."
17682 msgstr ""
17683
17684 #. type: textblock
17685 #: ../src/guestfs-actions.pod:7228 ../fish/guestfish-actions.pod:4813
17686 msgid ""
17687 "This call was added in version C<1.0.58>.  In previous versions of "
17688 "libguestfs there was no way to get the version number.  From C code you can "
17689 "use dynamic linker functions to find out if this symbol exists (if it "
17690 "doesn't, then it's an earlier version)."
17691 msgstr ""
17692
17693 #. type: textblock
17694 #: ../src/guestfs-actions.pod:7234 ../fish/guestfish-actions.pod:4819
17695 msgid ""
17696 "The call returns a structure with four elements.  The first three (C<major>, "
17697 "C<minor> and C<release>) are numbers and correspond to the usual version "
17698 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17699 "but may be used for distro-specific information."
17700 msgstr ""
17701
17702 #. type: textblock
17703 #: ../src/guestfs-actions.pod:7240 ../fish/guestfish-actions.pod:4825
17704 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
17705 msgstr ""
17706
17707 #. type: textblock
17708 #: ../src/guestfs-actions.pod:7243 ../fish/guestfish-actions.pod:4828
17709 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17710 msgstr ""
17711
17712 #. type: textblock
17713 #: ../src/guestfs-actions.pod:7245
17714 msgid ""
17715 "I<Note:> Don't use this call to test for availability of features.  In "
17716 "enterprise distributions we backport features from later versions into "
17717 "earlier versions, making this an unreliable way to test for features.  Use "
17718 "C<guestfs_available> instead."
17719 msgstr ""
17720
17721 #. type: textblock
17722 #: ../src/guestfs-actions.pod:7251
17723 msgid ""
17724 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17725 "error.  I<The caller must call C<guestfs_free_version> after use>."
17726 msgstr ""
17727
17728 #. type: textblock
17729 #: ../src/guestfs-actions.pod:7255
17730 msgid "(Added in 1.0.58)"
17731 msgstr ""
17732
17733 #. type: =head2
17734 #: ../src/guestfs-actions.pod:7257
17735 msgid "guestfs_vfs_label"
17736 msgstr ""
17737
17738 #. type: verbatim
17739 #: ../src/guestfs-actions.pod:7259
17740 #, no-wrap
17741 msgid ""
17742 " char *\n"
17743 " guestfs_vfs_label (guestfs_h *g,\n"
17744 "                    const char *device);\n"
17745 "\n"
17746 msgstr ""
17747
17748 #. type: textblock
17749 #: ../src/guestfs-actions.pod:7263 ../fish/guestfish-actions.pod:4840
17750 msgid "This returns the filesystem label of the filesystem on C<device>."
17751 msgstr ""
17752
17753 #. type: textblock
17754 #: ../src/guestfs-actions.pod:7266 ../fish/guestfish-actions.pod:4843
17755 msgid "If the filesystem is unlabeled, this returns the empty string."
17756 msgstr ""
17757
17758 #. type: textblock
17759 #: ../src/guestfs-actions.pod:7268
17760 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17761 msgstr ""
17762
17763 #. type: textblock
17764 #: ../src/guestfs-actions.pod:7273 ../src/guestfs-actions.pod:7310
17765 msgid "(Added in 1.3.18)"
17766 msgstr ""
17767
17768 #. type: =head2
17769 #: ../src/guestfs-actions.pod:7275
17770 msgid "guestfs_vfs_type"
17771 msgstr ""
17772
17773 #. type: verbatim
17774 #: ../src/guestfs-actions.pod:7277
17775 #, no-wrap
17776 msgid ""
17777 " char *\n"
17778 " guestfs_vfs_type (guestfs_h *g,\n"
17779 "                   const char *device);\n"
17780 "\n"
17781 msgstr ""
17782
17783 #. type: textblock
17784 #: ../src/guestfs-actions.pod:7281 ../fish/guestfish-actions.pod:4851
17785 msgid ""
17786 "This command gets the filesystem type corresponding to the filesystem on "
17787 "C<device>."
17788 msgstr ""
17789
17790 #. type: textblock
17791 #: ../src/guestfs-actions.pod:7284 ../fish/guestfish-actions.pod:4854
17792 msgid ""
17793 "For most filesystems, the result is the name of the Linux VFS module which "
17794 "would be used to mount this filesystem if you mounted it without specifying "
17795 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17796 msgstr ""
17797
17798 #. type: =head2
17799 #: ../src/guestfs-actions.pod:7294
17800 msgid "guestfs_vfs_uuid"
17801 msgstr ""
17802
17803 #. type: verbatim
17804 #: ../src/guestfs-actions.pod:7296
17805 #, no-wrap
17806 msgid ""
17807 " char *\n"
17808 " guestfs_vfs_uuid (guestfs_h *g,\n"
17809 "                   const char *device);\n"
17810 "\n"
17811 msgstr ""
17812
17813 #. type: textblock
17814 #: ../src/guestfs-actions.pod:7300 ../fish/guestfish-actions.pod:4863
17815 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17816 msgstr ""
17817
17818 #. type: textblock
17819 #: ../src/guestfs-actions.pod:7303 ../fish/guestfish-actions.pod:4866
17820 msgid "If the filesystem does not have a UUID, this returns the empty string."
17821 msgstr ""
17822
17823 #. type: textblock
17824 #: ../src/guestfs-actions.pod:7305
17825 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17826 msgstr ""
17827
17828 #. type: =head2
17829 #: ../src/guestfs-actions.pod:7312
17830 msgid "guestfs_vg_activate"
17831 msgstr ""
17832
17833 #. type: verbatim
17834 #: ../src/guestfs-actions.pod:7314
17835 #, no-wrap
17836 msgid ""
17837 " int\n"
17838 " guestfs_vg_activate (guestfs_h *g,\n"
17839 "                      int activate,\n"
17840 "                      char *const *volgroups);\n"
17841 "\n"
17842 msgstr ""
17843
17844 #. type: textblock
17845 #: ../src/guestfs-actions.pod:7319 ../fish/guestfish-actions.pod:4874
17846 msgid ""
17847 "This command activates or (if C<activate> is false) deactivates all logical "
17848 "volumes in the listed volume groups C<volgroups>."
17849 msgstr ""
17850
17851 #. type: textblock
17852 #: ../src/guestfs-actions.pod:7322 ../fish/guestfish-actions.pod:4877
17853 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17854 msgstr ""
17855
17856 #. type: textblock
17857 #: ../src/guestfs-actions.pod:7324 ../fish/guestfish-actions.pod:4879
17858 msgid ""
17859 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17860 "activated or deactivated."
17861 msgstr ""
17862
17863 #. type: =head2
17864 #: ../src/guestfs-actions.pod:7331
17865 msgid "guestfs_vg_activate_all"
17866 msgstr ""
17867
17868 #. type: verbatim
17869 #: ../src/guestfs-actions.pod:7333
17870 #, no-wrap
17871 msgid ""
17872 " int\n"
17873 " guestfs_vg_activate_all (guestfs_h *g,\n"
17874 "                          int activate);\n"
17875 "\n"
17876 msgstr ""
17877
17878 #. type: textblock
17879 #: ../src/guestfs-actions.pod:7337 ../fish/guestfish-actions.pod:4886
17880 msgid ""
17881 "This command activates or (if C<activate> is false) deactivates all logical "
17882 "volumes in all volume groups."
17883 msgstr ""
17884
17885 #. type: textblock
17886 #: ../src/guestfs-actions.pod:7340 ../fish/guestfish-actions.pod:4889
17887 msgid "This command is the same as running C<vgchange -a y|n>"
17888 msgstr ""
17889
17890 #. type: =head2
17891 #: ../src/guestfs-actions.pod:7346
17892 msgid "guestfs_vgcreate"
17893 msgstr ""
17894
17895 #. type: verbatim
17896 #: ../src/guestfs-actions.pod:7348
17897 #, no-wrap
17898 msgid ""
17899 " int\n"
17900 " guestfs_vgcreate (guestfs_h *g,\n"
17901 "                   const char *volgroup,\n"
17902 "                   char *const *physvols);\n"
17903 "\n"
17904 msgstr ""
17905
17906 #. type: textblock
17907 #: ../src/guestfs-actions.pod:7353 ../fish/guestfish-actions.pod:4895
17908 msgid ""
17909 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17910 "of physical volumes C<physvols>."
17911 msgstr ""
17912
17913 #. type: =head2
17914 #: ../src/guestfs-actions.pod:7360
17915 msgid "guestfs_vglvuuids"
17916 msgstr ""
17917
17918 #. type: verbatim
17919 #: ../src/guestfs-actions.pod:7362
17920 #, no-wrap
17921 msgid ""
17922 " char **\n"
17923 " guestfs_vglvuuids (guestfs_h *g,\n"
17924 "                    const char *vgname);\n"
17925 "\n"
17926 msgstr ""
17927
17928 #. type: textblock
17929 #: ../src/guestfs-actions.pod:7366 ../fish/guestfish-actions.pod:4902
17930 msgid ""
17931 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17932 "volumes created in this volume group."
17933 msgstr ""
17934
17935 #. type: textblock
17936 #: ../src/guestfs-actions.pod:7369
17937 msgid ""
17938 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17939 "associate logical volumes and volume groups."
17940 msgstr ""
17941
17942 #. type: textblock
17943 #: ../src/guestfs-actions.pod:7372
17944 msgid "See also C<guestfs_vgpvuuids>."
17945 msgstr ""
17946
17947 #. type: =head2
17948 #: ../src/guestfs-actions.pod:7380
17949 msgid "guestfs_vgpvuuids"
17950 msgstr ""
17951
17952 #. type: verbatim
17953 #: ../src/guestfs-actions.pod:7382
17954 #, no-wrap
17955 msgid ""
17956 " char **\n"
17957 " guestfs_vgpvuuids (guestfs_h *g,\n"
17958 "                    const char *vgname);\n"
17959 "\n"
17960 msgstr ""
17961
17962 #. type: textblock
17963 #: ../src/guestfs-actions.pod:7386 ../fish/guestfish-actions.pod:4914
17964 msgid ""
17965 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
17966 "volumes that this volume group resides on."
17967 msgstr ""
17968
17969 #. type: textblock
17970 #: ../src/guestfs-actions.pod:7389
17971 msgid ""
17972 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
17973 "associate physical volumes and volume groups."
17974 msgstr ""
17975
17976 #. type: textblock
17977 #: ../src/guestfs-actions.pod:7392
17978 msgid "See also C<guestfs_vglvuuids>."
17979 msgstr ""
17980
17981 #. type: =head2
17982 #: ../src/guestfs-actions.pod:7400
17983 msgid "guestfs_vgremove"
17984 msgstr ""
17985
17986 #. type: verbatim
17987 #: ../src/guestfs-actions.pod:7402
17988 #, no-wrap
17989 msgid ""
17990 " int\n"
17991 " guestfs_vgremove (guestfs_h *g,\n"
17992 "                   const char *vgname);\n"
17993 "\n"
17994 msgstr ""
17995
17996 #. type: textblock
17997 #: ../src/guestfs-actions.pod:7406 ../fish/guestfish-actions.pod:4926
17998 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
17999 msgstr ""
18000
18001 #. type: textblock
18002 #: ../src/guestfs-actions.pod:7408 ../fish/guestfish-actions.pod:4928
18003 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
18004 msgstr ""
18005
18006 #. type: =head2
18007 #: ../src/guestfs-actions.pod:7415
18008 msgid "guestfs_vgrename"
18009 msgstr ""
18010
18011 #. type: verbatim
18012 #: ../src/guestfs-actions.pod:7417
18013 #, no-wrap
18014 msgid ""
18015 " int\n"
18016 " guestfs_vgrename (guestfs_h *g,\n"
18017 "                   const char *volgroup,\n"
18018 "                   const char *newvolgroup);\n"
18019 "\n"
18020 msgstr ""
18021
18022 #. type: textblock
18023 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4935
18024 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18025 msgstr ""
18026
18027 #. type: =head2
18028 #: ../src/guestfs-actions.pod:7428
18029 msgid "guestfs_vgs"
18030 msgstr ""
18031
18032 #. type: verbatim
18033 #: ../src/guestfs-actions.pod:7430
18034 #, no-wrap
18035 msgid ""
18036 " char **\n"
18037 " guestfs_vgs (guestfs_h *g);\n"
18038 "\n"
18039 msgstr ""
18040
18041 #. type: textblock
18042 #: ../src/guestfs-actions.pod:7433 ../fish/guestfish-actions.pod:4941
18043 msgid ""
18044 "List all the volumes groups detected.  This is the equivalent of the "
18045 "L<vgs(8)> command."
18046 msgstr ""
18047
18048 #. type: textblock
18049 #: ../src/guestfs-actions.pod:7436 ../fish/guestfish-actions.pod:4944
18050 msgid ""
18051 "This returns a list of just the volume group names that were detected "
18052 "(eg. C<VolGroup00>)."
18053 msgstr ""
18054
18055 #. type: textblock
18056 #: ../src/guestfs-actions.pod:7439
18057 msgid "See also C<guestfs_vgs_full>."
18058 msgstr ""
18059
18060 #. type: =head2
18061 #: ../src/guestfs-actions.pod:7447
18062 msgid "guestfs_vgs_full"
18063 msgstr ""
18064
18065 #. type: verbatim
18066 #: ../src/guestfs-actions.pod:7449
18067 #, no-wrap
18068 msgid ""
18069 " struct guestfs_lvm_vg_list *\n"
18070 " guestfs_vgs_full (guestfs_h *g);\n"
18071 "\n"
18072 msgstr ""
18073
18074 #. type: textblock
18075 #: ../src/guestfs-actions.pod:7452 ../fish/guestfish-actions.pod:4953
18076 msgid ""
18077 "List all the volumes groups detected.  This is the equivalent of the "
18078 "L<vgs(8)> command.  The \"full\" version includes all fields."
18079 msgstr ""
18080
18081 #. type: textblock
18082 #: ../src/guestfs-actions.pod:7455
18083 msgid ""
18084 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18085 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
18086 "use>."
18087 msgstr ""
18088
18089 #. type: =head2
18090 #: ../src/guestfs-actions.pod:7461
18091 msgid "guestfs_vgscan"
18092 msgstr ""
18093
18094 #. type: verbatim
18095 #: ../src/guestfs-actions.pod:7463
18096 #, no-wrap
18097 msgid ""
18098 " int\n"
18099 " guestfs_vgscan (guestfs_h *g);\n"
18100 "\n"
18101 msgstr ""
18102
18103 #. type: textblock
18104 #: ../src/guestfs-actions.pod:7466 ../fish/guestfish-actions.pod:4960
18105 msgid ""
18106 "This rescans all block devices and rebuilds the list of LVM physical "
18107 "volumes, volume groups and logical volumes."
18108 msgstr ""
18109
18110 #. type: =head2
18111 #: ../src/guestfs-actions.pod:7473
18112 msgid "guestfs_vguuid"
18113 msgstr ""
18114
18115 #. type: verbatim
18116 #: ../src/guestfs-actions.pod:7475
18117 #, no-wrap
18118 msgid ""
18119 " char *\n"
18120 " guestfs_vguuid (guestfs_h *g,\n"
18121 "                 const char *vgname);\n"
18122 "\n"
18123 msgstr ""
18124
18125 #. type: textblock
18126 #: ../src/guestfs-actions.pod:7479 ../fish/guestfish-actions.pod:4967
18127 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18128 msgstr ""
18129
18130 #. type: =head2
18131 #: ../src/guestfs-actions.pod:7486
18132 msgid "guestfs_wait_ready"
18133 msgstr ""
18134
18135 #. type: verbatim
18136 #: ../src/guestfs-actions.pod:7488
18137 #, no-wrap
18138 msgid ""
18139 " int\n"
18140 " guestfs_wait_ready (guestfs_h *g);\n"
18141 "\n"
18142 msgstr ""
18143
18144 #. type: textblock
18145 #: ../src/guestfs-actions.pod:7491
18146 msgid "This function is a no op."
18147 msgstr ""
18148
18149 #. type: textblock
18150 #: ../src/guestfs-actions.pod:7493
18151 msgid ""
18152 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18153 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18154 "is no longer necessary because C<guestfs_launch> now does the waiting."
18155 msgstr ""
18156
18157 #. type: textblock
18158 #: ../src/guestfs-actions.pod:7498
18159 msgid ""
18160 "If you see any calls to this function in code then you can just remove them, "
18161 "unless you want to retain compatibility with older versions of the API."
18162 msgstr ""
18163
18164 #. type: textblock
18165 #: ../src/guestfs-actions.pod:7504
18166 msgid "This function is deprecated.  In new code, use the C<launch> call instead."
18167 msgstr ""
18168
18169 #. type: =head2
18170 #: ../src/guestfs-actions.pod:7513
18171 msgid "guestfs_wc_c"
18172 msgstr ""
18173
18174 #. type: verbatim
18175 #: ../src/guestfs-actions.pod:7515
18176 #, no-wrap
18177 msgid ""
18178 " int\n"
18179 " guestfs_wc_c (guestfs_h *g,\n"
18180 "               const char *path);\n"
18181 "\n"
18182 msgstr ""
18183
18184 #. type: textblock
18185 #: ../src/guestfs-actions.pod:7519 ../fish/guestfish-actions.pod:4973
18186 msgid ""
18187 "This command counts the characters in a file, using the C<wc -c> external "
18188 "command."
18189 msgstr ""
18190
18191 #. type: =head2
18192 #: ../src/guestfs-actions.pod:7526
18193 msgid "guestfs_wc_l"
18194 msgstr ""
18195
18196 #. type: verbatim
18197 #: ../src/guestfs-actions.pod:7528
18198 #, no-wrap
18199 msgid ""
18200 " int\n"
18201 " guestfs_wc_l (guestfs_h *g,\n"
18202 "               const char *path);\n"
18203 "\n"
18204 msgstr ""
18205
18206 #. type: textblock
18207 #: ../src/guestfs-actions.pod:7532 ../fish/guestfish-actions.pod:4980
18208 msgid ""
18209 "This command counts the lines in a file, using the C<wc -l> external "
18210 "command."
18211 msgstr ""
18212
18213 #. type: =head2
18214 #: ../src/guestfs-actions.pod:7539
18215 msgid "guestfs_wc_w"
18216 msgstr ""
18217
18218 #. type: verbatim
18219 #: ../src/guestfs-actions.pod:7541
18220 #, no-wrap
18221 msgid ""
18222 " int\n"
18223 " guestfs_wc_w (guestfs_h *g,\n"
18224 "               const char *path);\n"
18225 "\n"
18226 msgstr ""
18227
18228 #. type: textblock
18229 #: ../src/guestfs-actions.pod:7545 ../fish/guestfish-actions.pod:4987
18230 msgid ""
18231 "This command counts the words in a file, using the C<wc -w> external "
18232 "command."
18233 msgstr ""
18234
18235 #. type: =head2
18236 #: ../src/guestfs-actions.pod:7552
18237 msgid "guestfs_write"
18238 msgstr ""
18239
18240 #. type: verbatim
18241 #: ../src/guestfs-actions.pod:7554
18242 #, no-wrap
18243 msgid ""
18244 " int\n"
18245 " guestfs_write (guestfs_h *g,\n"
18246 "                const char *path,\n"
18247 "                const char *content,\n"
18248 "                size_t content_size);\n"
18249 "\n"
18250 msgstr ""
18251
18252 #. type: textblock
18253 #: ../src/guestfs-actions.pod:7560 ../fish/guestfish-actions.pod:4994
18254 msgid ""
18255 "This call creates a file called C<path>.  The content of the file is the "
18256 "string C<content> (which can contain any 8 bit data)."
18257 msgstr ""
18258
18259 #. type: =head2
18260 #: ../src/guestfs-actions.pod:7570
18261 msgid "guestfs_write_file"
18262 msgstr ""
18263
18264 #. type: verbatim
18265 #: ../src/guestfs-actions.pod:7572
18266 #, no-wrap
18267 msgid ""
18268 " int\n"
18269 " guestfs_write_file (guestfs_h *g,\n"
18270 "                     const char *path,\n"
18271 "                     const char *content,\n"
18272 "                     int size);\n"
18273 "\n"
18274 msgstr ""
18275
18276 #. type: textblock
18277 #: ../src/guestfs-actions.pod:7578 ../fish/guestfish-actions.pod:5004
18278 msgid ""
18279 "This call creates a file called C<path>.  The contents of the file is the "
18280 "string C<content> (which can contain any 8 bit data), with length C<size>."
18281 msgstr ""
18282
18283 #. type: textblock
18284 #: ../src/guestfs-actions.pod:7582 ../fish/guestfish-actions.pod:5008
18285 msgid ""
18286 "As a special case, if C<size> is C<0> then the length is calculated using "
18287 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18288 msgstr ""
18289
18290 #. type: textblock
18291 #: ../src/guestfs-actions.pod:7586 ../fish/guestfish-actions.pod:5012
18292 msgid ""
18293 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18294 "I<not> work, even if the length is specified."
18295 msgstr ""
18296
18297 #. type: textblock
18298 #: ../src/guestfs-actions.pod:7594 ../fish/guestfish-actions.pod:5018
18299 msgid "This function is deprecated.  In new code, use the C<write> call instead."
18300 msgstr ""
18301
18302 #. type: =head2
18303 #: ../src/guestfs-actions.pod:7603
18304 msgid "guestfs_zegrep"
18305 msgstr ""
18306
18307 #. type: verbatim
18308 #: ../src/guestfs-actions.pod:7605
18309 #, no-wrap
18310 msgid ""
18311 " char **\n"
18312 " guestfs_zegrep (guestfs_h *g,\n"
18313 "                 const char *regex,\n"
18314 "                 const char *path);\n"
18315 "\n"
18316 msgstr ""
18317
18318 #. type: textblock
18319 #: ../src/guestfs-actions.pod:7610 ../fish/guestfish-actions.pod:5029
18320 msgid "This calls the external C<zegrep> program and returns the matching lines."
18321 msgstr ""
18322
18323 #. type: =head2
18324 #: ../src/guestfs-actions.pod:7622
18325 msgid "guestfs_zegrepi"
18326 msgstr ""
18327
18328 #. type: verbatim
18329 #: ../src/guestfs-actions.pod:7624
18330 #, no-wrap
18331 msgid ""
18332 " char **\n"
18333 " guestfs_zegrepi (guestfs_h *g,\n"
18334 "                  const char *regex,\n"
18335 "                  const char *path);\n"
18336 "\n"
18337 msgstr ""
18338
18339 #. type: textblock
18340 #: ../src/guestfs-actions.pod:7629 ../fish/guestfish-actions.pod:5039
18341 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
18342 msgstr ""
18343
18344 #. type: =head2
18345 #: ../src/guestfs-actions.pod:7641
18346 msgid "guestfs_zero"
18347 msgstr ""
18348
18349 #. type: verbatim
18350 #: ../src/guestfs-actions.pod:7643
18351 #, no-wrap
18352 msgid ""
18353 " int\n"
18354 " guestfs_zero (guestfs_h *g,\n"
18355 "               const char *device);\n"
18356 "\n"
18357 msgstr ""
18358
18359 #. type: textblock
18360 #: ../src/guestfs-actions.pod:7647 ../fish/guestfish-actions.pod:5049
18361 msgid "This command writes zeroes over the first few blocks of C<device>."
18362 msgstr ""
18363
18364 #. type: textblock
18365 #: ../src/guestfs-actions.pod:7649 ../fish/guestfish-actions.pod:5051
18366 msgid ""
18367 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18368 "securely wipe the device).  It should be sufficient to remove any partition "
18369 "tables, filesystem superblocks and so on."
18370 msgstr ""
18371
18372 #. type: textblock
18373 #: ../src/guestfs-actions.pod:7653
18374 msgid ""
18375 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
18376 "C<guestfs_is_zero_device>"
18377 msgstr ""
18378
18379 #. type: =head2
18380 #: ../src/guestfs-actions.pod:7665
18381 msgid "guestfs_zero_device"
18382 msgstr ""
18383
18384 #. type: verbatim
18385 #: ../src/guestfs-actions.pod:7667
18386 #, no-wrap
18387 msgid ""
18388 " int\n"
18389 " guestfs_zero_device (guestfs_h *g,\n"
18390 "                      const char *device);\n"
18391 "\n"
18392 msgstr ""
18393
18394 #. type: textblock
18395 #: ../src/guestfs-actions.pod:7671
18396 msgid ""
18397 "This command writes zeroes over the entire C<device>.  Compare with "
18398 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18399 msgstr ""
18400
18401 #. type: textblock
18402 #: ../src/guestfs-actions.pod:7685
18403 msgid "(Added in 1.3.1)"
18404 msgstr ""
18405
18406 #. type: =head2
18407 #: ../src/guestfs-actions.pod:7687
18408 msgid "guestfs_zerofree"
18409 msgstr ""
18410
18411 #. type: verbatim
18412 #: ../src/guestfs-actions.pod:7689
18413 #, no-wrap
18414 msgid ""
18415 " int\n"
18416 " guestfs_zerofree (guestfs_h *g,\n"
18417 "                   const char *device);\n"
18418 "\n"
18419 msgstr ""
18420
18421 #. type: textblock
18422 #: ../src/guestfs-actions.pod:7693 ../fish/guestfish-actions.pod:5073
18423 msgid ""
18424 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18425 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18426 "possible to compress the filesystem more effectively."
18427 msgstr ""
18428
18429 #. type: textblock
18430 #: ../src/guestfs-actions.pod:7698 ../fish/guestfish-actions.pod:5078
18431 msgid "You should B<not> run this program if the filesystem is mounted."
18432 msgstr ""
18433
18434 #. type: textblock
18435 #: ../src/guestfs-actions.pod:7701 ../fish/guestfish-actions.pod:5081
18436 msgid ""
18437 "It is possible that using this program can damage the filesystem or data on "
18438 "the filesystem."
18439 msgstr ""
18440
18441 #. type: =head2
18442 #: ../src/guestfs-actions.pod:7708
18443 msgid "guestfs_zfgrep"
18444 msgstr ""
18445
18446 #. type: verbatim
18447 #: ../src/guestfs-actions.pod:7710
18448 #, no-wrap
18449 msgid ""
18450 " char **\n"
18451 " guestfs_zfgrep (guestfs_h *g,\n"
18452 "                 const char *pattern,\n"
18453 "                 const char *path);\n"
18454 "\n"
18455 msgstr ""
18456
18457 #. type: textblock
18458 #: ../src/guestfs-actions.pod:7715 ../fish/guestfish-actions.pod:5088
18459 msgid "This calls the external C<zfgrep> program and returns the matching lines."
18460 msgstr ""
18461
18462 #. type: =head2
18463 #: ../src/guestfs-actions.pod:7727
18464 msgid "guestfs_zfgrepi"
18465 msgstr ""
18466
18467 #. type: verbatim
18468 #: ../src/guestfs-actions.pod:7729
18469 #, no-wrap
18470 msgid ""
18471 " char **\n"
18472 " guestfs_zfgrepi (guestfs_h *g,\n"
18473 "                  const char *pattern,\n"
18474 "                  const char *path);\n"
18475 "\n"
18476 msgstr ""
18477
18478 #. type: textblock
18479 #: ../src/guestfs-actions.pod:7734 ../fish/guestfish-actions.pod:5098
18480 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
18481 msgstr ""
18482
18483 #. type: =head2
18484 #: ../src/guestfs-actions.pod:7746
18485 msgid "guestfs_zfile"
18486 msgstr ""
18487
18488 #. type: verbatim
18489 #: ../src/guestfs-actions.pod:7748
18490 #, no-wrap
18491 msgid ""
18492 " char *\n"
18493 " guestfs_zfile (guestfs_h *g,\n"
18494 "                const char *meth,\n"
18495 "                const char *path);\n"
18496 "\n"
18497 msgstr ""
18498
18499 #. type: textblock
18500 #: ../src/guestfs-actions.pod:7753 ../fish/guestfish-actions.pod:5108
18501 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
18502 msgstr ""
18503
18504 #. type: textblock
18505 #: ../src/guestfs-actions.pod:7756 ../fish/guestfish-actions.pod:5111
18506 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18507 msgstr ""
18508
18509 #. type: textblock
18510 #: ../src/guestfs-actions.pod:7758
18511 msgid ""
18512 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18513 "files."
18514 msgstr ""
18515
18516 #. type: textblock
18517 #: ../src/guestfs-actions.pod:7764 ../fish/guestfish-actions.pod:5116
18518 msgid "This function is deprecated.  In new code, use the C<file> call instead."
18519 msgstr ""
18520
18521 #. type: =head2
18522 #: ../src/guestfs-actions.pod:7773
18523 msgid "guestfs_zgrep"
18524 msgstr ""
18525
18526 #. type: verbatim
18527 #: ../src/guestfs-actions.pod:7775
18528 #, no-wrap
18529 msgid ""
18530 " char **\n"
18531 " guestfs_zgrep (guestfs_h *g,\n"
18532 "                const char *regex,\n"
18533 "                const char *path);\n"
18534 "\n"
18535 msgstr ""
18536
18537 #. type: textblock
18538 #: ../src/guestfs-actions.pod:7780 ../fish/guestfish-actions.pod:5127
18539 msgid "This calls the external C<zgrep> program and returns the matching lines."
18540 msgstr ""
18541
18542 #. type: =head2
18543 #: ../src/guestfs-actions.pod:7792
18544 msgid "guestfs_zgrepi"
18545 msgstr ""
18546
18547 #. type: verbatim
18548 #: ../src/guestfs-actions.pod:7794
18549 #, no-wrap
18550 msgid ""
18551 " char **\n"
18552 " guestfs_zgrepi (guestfs_h *g,\n"
18553 "                 const char *regex,\n"
18554 "                 const char *path);\n"
18555 "\n"
18556 msgstr ""
18557
18558 #. type: textblock
18559 #: ../src/guestfs-actions.pod:7799 ../fish/guestfish-actions.pod:5137
18560 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
18561 msgstr ""
18562
18563 #. type: =item
18564 #: ../src/guestfs-availability.pod:3
18565 msgid "B<augeas>"
18566 msgstr ""
18567
18568 #. type: textblock
18569 #: ../src/guestfs-availability.pod:5
18570 msgid ""
18571 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
18572 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
18573 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
18574 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
18575 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
18576 msgstr ""
18577
18578 #. type: =item
18579 #: ../src/guestfs-availability.pod:21
18580 msgid "B<inotify>"
18581 msgstr ""
18582
18583 #. type: textblock
18584 #: ../src/guestfs-availability.pod:23
18585 msgid ""
18586 "The following functions: L</guestfs_inotify_add_watch> "
18587 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
18588 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18589 msgstr ""
18590
18591 #. type: =item
18592 #: ../src/guestfs-availability.pod:31
18593 msgid "B<linuxfsuuid>"
18594 msgstr ""
18595
18596 #. type: textblock
18597 #: ../src/guestfs-availability.pod:33
18598 msgid ""
18599 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
18600 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18601 msgstr ""
18602
18603 #. type: =item
18604 #: ../src/guestfs-availability.pod:40
18605 msgid "B<linuxmodules>"
18606 msgstr ""
18607
18608 #. type: textblock
18609 #: ../src/guestfs-availability.pod:42
18610 msgid "The following functions: L</guestfs_modprobe>"
18611 msgstr ""
18612
18613 #. type: =item
18614 #: ../src/guestfs-availability.pod:45
18615 msgid "B<linuxxattrs>"
18616 msgstr ""
18617
18618 #. type: textblock
18619 #: ../src/guestfs-availability.pod:47
18620 msgid ""
18621 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
18622 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
18623 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
18624 "L</guestfs_setxattr>"
18625 msgstr ""
18626
18627 #. type: =item
18628 #: ../src/guestfs-availability.pod:58
18629 msgid "B<luks>"
18630 msgstr ""
18631
18632 #. type: textblock
18633 #: ../src/guestfs-availability.pod:60
18634 msgid ""
18635 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
18636 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
18637 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18638 msgstr ""
18639
18640 #. type: =item
18641 #: ../src/guestfs-availability.pod:69
18642 msgid "B<lvm2>"
18643 msgstr ""
18644
18645 #. type: textblock
18646 #: ../src/guestfs-availability.pod:71
18647 msgid ""
18648 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
18649 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
18650 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
18651 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
18652 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
18653 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
18654 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
18655 "L</guestfs_vgs_full>"
18656 msgstr ""
18657
18658 #. type: =item
18659 #: ../src/guestfs-availability.pod:94
18660 msgid "B<mknod>"
18661 msgstr ""
18662
18663 #. type: textblock
18664 #: ../src/guestfs-availability.pod:96
18665 msgid ""
18666 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
18667 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
18668 msgstr ""
18669
18670 #. type: =item
18671 #: ../src/guestfs-availability.pod:102
18672 msgid "B<ntfs3g>"
18673 msgstr ""
18674
18675 #. type: textblock
18676 #: ../src/guestfs-availability.pod:104
18677 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18678 msgstr ""
18679
18680 #. type: =item
18681 #: ../src/guestfs-availability.pod:107
18682 msgid "B<ntfsprogs>"
18683 msgstr ""
18684
18685 #. type: textblock
18686 #: ../src/guestfs-availability.pod:109
18687 msgid ""
18688 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_opts> "
18689 "L</guestfs_ntfsresize_size>"
18690 msgstr ""
18691
18692 #. type: =item
18693 #: ../src/guestfs-availability.pod:114
18694 msgid "B<realpath>"
18695 msgstr ""
18696
18697 #. type: textblock
18698 #: ../src/guestfs-availability.pod:116
18699 msgid "The following functions: L</guestfs_realpath>"
18700 msgstr ""
18701
18702 #. type: =item
18703 #: ../src/guestfs-availability.pod:119
18704 msgid "B<scrub>"
18705 msgstr ""
18706
18707 #. type: textblock
18708 #: ../src/guestfs-availability.pod:121
18709 msgid ""
18710 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
18711 "L</guestfs_scrub_freespace>"
18712 msgstr ""
18713
18714 #. type: =item
18715 #: ../src/guestfs-availability.pod:126
18716 msgid "B<selinux>"
18717 msgstr ""
18718
18719 #. type: textblock
18720 #: ../src/guestfs-availability.pod:128
18721 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18722 msgstr ""
18723
18724 #. type: =item
18725 #: ../src/guestfs-availability.pod:132
18726 msgid "B<xz>"
18727 msgstr ""
18728
18729 #. type: textblock
18730 #: ../src/guestfs-availability.pod:134
18731 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18732 msgstr ""
18733
18734 #. type: =item
18735 #: ../src/guestfs-availability.pod:138
18736 msgid "B<zerofree>"
18737 msgstr ""
18738
18739 #. type: textblock
18740 #: ../src/guestfs-availability.pod:140
18741 msgid "The following functions: L</guestfs_zerofree>"
18742 msgstr ""
18743
18744 #. type: =head2
18745 #: ../src/guestfs-structs.pod:1
18746 msgid "guestfs_int_bool"
18747 msgstr ""
18748
18749 #. type: verbatim
18750 #: ../src/guestfs-structs.pod:3
18751 #, no-wrap
18752 msgid ""
18753 " struct guestfs_int_bool {\n"
18754 "   int32_t i;\n"
18755 "   int32_t b;\n"
18756 " };\n"
18757 " \n"
18758 msgstr ""
18759
18760 #. type: verbatim
18761 #: ../src/guestfs-structs.pod:8
18762 #, no-wrap
18763 msgid ""
18764 " struct guestfs_int_bool_list {\n"
18765 "   uint32_t len; /* Number of elements in list. */\n"
18766 "   struct guestfs_int_bool *val; /* Elements. */\n"
18767 " };\n"
18768 " \n"
18769 msgstr ""
18770
18771 #. type: verbatim
18772 #: ../src/guestfs-structs.pod:13
18773 #, no-wrap
18774 msgid ""
18775 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18776 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18777 "\n"
18778 msgstr ""
18779
18780 #. type: =head2
18781 #: ../src/guestfs-structs.pod:16
18782 msgid "guestfs_lvm_pv"
18783 msgstr ""
18784
18785 #. type: verbatim
18786 #: ../src/guestfs-structs.pod:18
18787 #, no-wrap
18788 msgid ""
18789 " struct guestfs_lvm_pv {\n"
18790 "   char *pv_name;\n"
18791 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18792 "*/\n"
18793 "   char pv_uuid[32];\n"
18794 "   char *pv_fmt;\n"
18795 "   uint64_t pv_size;\n"
18796 "   uint64_t dev_size;\n"
18797 "   uint64_t pv_free;\n"
18798 "   uint64_t pv_used;\n"
18799 "   char *pv_attr;\n"
18800 "   int64_t pv_pe_count;\n"
18801 "   int64_t pv_pe_alloc_count;\n"
18802 "   char *pv_tags;\n"
18803 "   uint64_t pe_start;\n"
18804 "   int64_t pv_mda_count;\n"
18805 "   uint64_t pv_mda_free;\n"
18806 " };\n"
18807 " \n"
18808 msgstr ""
18809
18810 #. type: verbatim
18811 #: ../src/guestfs-structs.pod:36
18812 #, no-wrap
18813 msgid ""
18814 " struct guestfs_lvm_pv_list {\n"
18815 "   uint32_t len; /* Number of elements in list. */\n"
18816 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18817 " };\n"
18818 " \n"
18819 msgstr ""
18820
18821 #. type: verbatim
18822 #: ../src/guestfs-structs.pod:41
18823 #, no-wrap
18824 msgid ""
18825 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18826 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18827 "\n"
18828 msgstr ""
18829
18830 #. type: =head2
18831 #: ../src/guestfs-structs.pod:44
18832 msgid "guestfs_lvm_vg"
18833 msgstr ""
18834
18835 #. type: verbatim
18836 #: ../src/guestfs-structs.pod:46
18837 #, no-wrap
18838 msgid ""
18839 " struct guestfs_lvm_vg {\n"
18840 "   char *vg_name;\n"
18841 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18842 "*/\n"
18843 "   char vg_uuid[32];\n"
18844 "   char *vg_fmt;\n"
18845 "   char *vg_attr;\n"
18846 "   uint64_t vg_size;\n"
18847 "   uint64_t vg_free;\n"
18848 "   char *vg_sysid;\n"
18849 "   uint64_t vg_extent_size;\n"
18850 "   int64_t vg_extent_count;\n"
18851 "   int64_t vg_free_count;\n"
18852 "   int64_t max_lv;\n"
18853 "   int64_t max_pv;\n"
18854 "   int64_t pv_count;\n"
18855 "   int64_t lv_count;\n"
18856 "   int64_t snap_count;\n"
18857 "   int64_t vg_seqno;\n"
18858 "   char *vg_tags;\n"
18859 "   int64_t vg_mda_count;\n"
18860 "   uint64_t vg_mda_free;\n"
18861 " };\n"
18862 " \n"
18863 msgstr ""
18864
18865 #. type: verbatim
18866 #: ../src/guestfs-structs.pod:69
18867 #, no-wrap
18868 msgid ""
18869 " struct guestfs_lvm_vg_list {\n"
18870 "   uint32_t len; /* Number of elements in list. */\n"
18871 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18872 " };\n"
18873 " \n"
18874 msgstr ""
18875
18876 #. type: verbatim
18877 #: ../src/guestfs-structs.pod:74
18878 #, no-wrap
18879 msgid ""
18880 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18881 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18882 "\n"
18883 msgstr ""
18884
18885 #. type: =head2
18886 #: ../src/guestfs-structs.pod:77
18887 msgid "guestfs_lvm_lv"
18888 msgstr ""
18889
18890 #. type: verbatim
18891 #: ../src/guestfs-structs.pod:79
18892 #, no-wrap
18893 msgid ""
18894 " struct guestfs_lvm_lv {\n"
18895 "   char *lv_name;\n"
18896 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18897 "*/\n"
18898 "   char lv_uuid[32];\n"
18899 "   char *lv_attr;\n"
18900 "   int64_t lv_major;\n"
18901 "   int64_t lv_minor;\n"
18902 "   int64_t lv_kernel_major;\n"
18903 "   int64_t lv_kernel_minor;\n"
18904 "   uint64_t lv_size;\n"
18905 "   int64_t seg_count;\n"
18906 "   char *origin;\n"
18907 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18908 "   float snap_percent;\n"
18909 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18910 "   float copy_percent;\n"
18911 "   char *move_pv;\n"
18912 "   char *lv_tags;\n"
18913 "   char *mirror_log;\n"
18914 "   char *modules;\n"
18915 " };\n"
18916 " \n"
18917 msgstr ""
18918
18919 #. type: verbatim
18920 #: ../src/guestfs-structs.pod:101
18921 #, no-wrap
18922 msgid ""
18923 " struct guestfs_lvm_lv_list {\n"
18924 "   uint32_t len; /* Number of elements in list. */\n"
18925 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18926 " };\n"
18927 " \n"
18928 msgstr ""
18929
18930 #. type: verbatim
18931 #: ../src/guestfs-structs.pod:106
18932 #, no-wrap
18933 msgid ""
18934 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18935 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18936 "\n"
18937 msgstr ""
18938
18939 #. type: verbatim
18940 #: ../src/guestfs-structs.pod:111
18941 #, no-wrap
18942 msgid ""
18943 " struct guestfs_stat {\n"
18944 "   int64_t dev;\n"
18945 "   int64_t ino;\n"
18946 "   int64_t mode;\n"
18947 "   int64_t nlink;\n"
18948 "   int64_t uid;\n"
18949 "   int64_t gid;\n"
18950 "   int64_t rdev;\n"
18951 "   int64_t size;\n"
18952 "   int64_t blksize;\n"
18953 "   int64_t blocks;\n"
18954 "   int64_t atime;\n"
18955 "   int64_t mtime;\n"
18956 "   int64_t ctime;\n"
18957 " };\n"
18958 " \n"
18959 msgstr ""
18960
18961 #. type: verbatim
18962 #: ../src/guestfs-structs.pod:127
18963 #, no-wrap
18964 msgid ""
18965 " struct guestfs_stat_list {\n"
18966 "   uint32_t len; /* Number of elements in list. */\n"
18967 "   struct guestfs_stat *val; /* Elements. */\n"
18968 " };\n"
18969 " \n"
18970 msgstr ""
18971
18972 #. type: verbatim
18973 #: ../src/guestfs-structs.pod:132
18974 #, no-wrap
18975 msgid ""
18976 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
18977 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
18978 "\n"
18979 msgstr ""
18980
18981 #. type: verbatim
18982 #: ../src/guestfs-structs.pod:137
18983 #, no-wrap
18984 msgid ""
18985 " struct guestfs_statvfs {\n"
18986 "   int64_t bsize;\n"
18987 "   int64_t frsize;\n"
18988 "   int64_t blocks;\n"
18989 "   int64_t bfree;\n"
18990 "   int64_t bavail;\n"
18991 "   int64_t files;\n"
18992 "   int64_t ffree;\n"
18993 "   int64_t favail;\n"
18994 "   int64_t fsid;\n"
18995 "   int64_t flag;\n"
18996 "   int64_t namemax;\n"
18997 " };\n"
18998 " \n"
18999 msgstr ""
19000
19001 #. type: verbatim
19002 #: ../src/guestfs-structs.pod:151
19003 #, no-wrap
19004 msgid ""
19005 " struct guestfs_statvfs_list {\n"
19006 "   uint32_t len; /* Number of elements in list. */\n"
19007 "   struct guestfs_statvfs *val; /* Elements. */\n"
19008 " };\n"
19009 " \n"
19010 msgstr ""
19011
19012 #. type: verbatim
19013 #: ../src/guestfs-structs.pod:156
19014 #, no-wrap
19015 msgid ""
19016 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19017 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19018 "\n"
19019 msgstr ""
19020
19021 #. type: =head2
19022 #: ../src/guestfs-structs.pod:159
19023 msgid "guestfs_dirent"
19024 msgstr ""
19025
19026 #. type: verbatim
19027 #: ../src/guestfs-structs.pod:161
19028 #, no-wrap
19029 msgid ""
19030 " struct guestfs_dirent {\n"
19031 "   int64_t ino;\n"
19032 "   char ftyp;\n"
19033 "   char *name;\n"
19034 " };\n"
19035 " \n"
19036 msgstr ""
19037
19038 #. type: verbatim
19039 #: ../src/guestfs-structs.pod:167
19040 #, no-wrap
19041 msgid ""
19042 " struct guestfs_dirent_list {\n"
19043 "   uint32_t len; /* Number of elements in list. */\n"
19044 "   struct guestfs_dirent *val; /* Elements. */\n"
19045 " };\n"
19046 " \n"
19047 msgstr ""
19048
19049 #. type: verbatim
19050 #: ../src/guestfs-structs.pod:172
19051 #, no-wrap
19052 msgid ""
19053 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19054 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19055 "\n"
19056 msgstr ""
19057
19058 #. type: verbatim
19059 #: ../src/guestfs-structs.pod:177
19060 #, no-wrap
19061 msgid ""
19062 " struct guestfs_version {\n"
19063 "   int64_t major;\n"
19064 "   int64_t minor;\n"
19065 "   int64_t release;\n"
19066 "   char *extra;\n"
19067 " };\n"
19068 " \n"
19069 msgstr ""
19070
19071 #. type: verbatim
19072 #: ../src/guestfs-structs.pod:184
19073 #, no-wrap
19074 msgid ""
19075 " struct guestfs_version_list {\n"
19076 "   uint32_t len; /* Number of elements in list. */\n"
19077 "   struct guestfs_version *val; /* Elements. */\n"
19078 " };\n"
19079 " \n"
19080 msgstr ""
19081
19082 #. type: verbatim
19083 #: ../src/guestfs-structs.pod:189
19084 #, no-wrap
19085 msgid ""
19086 " void guestfs_free_version (struct guestfs_free_version *);\n"
19087 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19088 "\n"
19089 msgstr ""
19090
19091 #. type: =head2
19092 #: ../src/guestfs-structs.pod:192
19093 msgid "guestfs_xattr"
19094 msgstr ""
19095
19096 #. type: verbatim
19097 #: ../src/guestfs-structs.pod:194
19098 #, no-wrap
19099 msgid ""
19100 " struct guestfs_xattr {\n"
19101 "   char *attrname;\n"
19102 "   /* The next two fields describe a byte array. */\n"
19103 "   uint32_t attrval_len;\n"
19104 "   char *attrval;\n"
19105 " };\n"
19106 " \n"
19107 msgstr ""
19108
19109 #. type: verbatim
19110 #: ../src/guestfs-structs.pod:201
19111 #, no-wrap
19112 msgid ""
19113 " struct guestfs_xattr_list {\n"
19114 "   uint32_t len; /* Number of elements in list. */\n"
19115 "   struct guestfs_xattr *val; /* Elements. */\n"
19116 " };\n"
19117 " \n"
19118 msgstr ""
19119
19120 #. type: verbatim
19121 #: ../src/guestfs-structs.pod:206
19122 #, no-wrap
19123 msgid ""
19124 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19125 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19126 "\n"
19127 msgstr ""
19128
19129 #. type: =head2
19130 #: ../src/guestfs-structs.pod:209
19131 msgid "guestfs_inotify_event"
19132 msgstr ""
19133
19134 #. type: verbatim
19135 #: ../src/guestfs-structs.pod:211
19136 #, no-wrap
19137 msgid ""
19138 " struct guestfs_inotify_event {\n"
19139 "   int64_t in_wd;\n"
19140 "   uint32_t in_mask;\n"
19141 "   uint32_t in_cookie;\n"
19142 "   char *in_name;\n"
19143 " };\n"
19144 " \n"
19145 msgstr ""
19146
19147 #. type: verbatim
19148 #: ../src/guestfs-structs.pod:218
19149 #, no-wrap
19150 msgid ""
19151 " struct guestfs_inotify_event_list {\n"
19152 "   uint32_t len; /* Number of elements in list. */\n"
19153 "   struct guestfs_inotify_event *val; /* Elements. */\n"
19154 " };\n"
19155 " \n"
19156 msgstr ""
19157
19158 #. type: verbatim
19159 #: ../src/guestfs-structs.pod:223
19160 #, no-wrap
19161 msgid ""
19162 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
19163 " void guestfs_free_inotify_event_list (struct "
19164 "guestfs_free_inotify_event_list *);\n"
19165 "\n"
19166 msgstr ""
19167
19168 #. type: =head2
19169 #: ../src/guestfs-structs.pod:226
19170 msgid "guestfs_partition"
19171 msgstr ""
19172
19173 #. type: verbatim
19174 #: ../src/guestfs-structs.pod:228
19175 #, no-wrap
19176 msgid ""
19177 " struct guestfs_partition {\n"
19178 "   int32_t part_num;\n"
19179 "   uint64_t part_start;\n"
19180 "   uint64_t part_end;\n"
19181 "   uint64_t part_size;\n"
19182 " };\n"
19183 " \n"
19184 msgstr ""
19185
19186 #. type: verbatim
19187 #: ../src/guestfs-structs.pod:235
19188 #, no-wrap
19189 msgid ""
19190 " struct guestfs_partition_list {\n"
19191 "   uint32_t len; /* Number of elements in list. */\n"
19192 "   struct guestfs_partition *val; /* Elements. */\n"
19193 " };\n"
19194 " \n"
19195 msgstr ""
19196
19197 #. type: verbatim
19198 #: ../src/guestfs-structs.pod:240
19199 #, no-wrap
19200 msgid ""
19201 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19202 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19203 "\n"
19204 msgstr ""
19205
19206 #. type: =head2
19207 #: ../src/guestfs-structs.pod:243
19208 msgid "guestfs_application"
19209 msgstr ""
19210
19211 #. type: verbatim
19212 #: ../src/guestfs-structs.pod:245
19213 #, no-wrap
19214 msgid ""
19215 " struct guestfs_application {\n"
19216 "   char *app_name;\n"
19217 "   char *app_display_name;\n"
19218 "   int32_t app_epoch;\n"
19219 "   char *app_version;\n"
19220 "   char *app_release;\n"
19221 "   char *app_install_path;\n"
19222 "   char *app_trans_path;\n"
19223 "   char *app_publisher;\n"
19224 "   char *app_url;\n"
19225 "   char *app_source_package;\n"
19226 "   char *app_summary;\n"
19227 "   char *app_description;\n"
19228 " };\n"
19229 " \n"
19230 msgstr ""
19231
19232 #. type: verbatim
19233 #: ../src/guestfs-structs.pod:260
19234 #, no-wrap
19235 msgid ""
19236 " struct guestfs_application_list {\n"
19237 "   uint32_t len; /* Number of elements in list. */\n"
19238 "   struct guestfs_application *val; /* Elements. */\n"
19239 " };\n"
19240 " \n"
19241 msgstr ""
19242
19243 #. type: verbatim
19244 #: ../src/guestfs-structs.pod:265
19245 #, no-wrap
19246 msgid ""
19247 " void guestfs_free_application (struct guestfs_free_application *);\n"
19248 " void guestfs_free_application_list (struct guestfs_free_application_list "
19249 "*);\n"
19250 "\n"
19251 msgstr ""
19252
19253 #. type: textblock
19254 #: ../fish/guestfish.pod:5
19255 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19256 msgstr ""
19257
19258 #. type: verbatim
19259 #: ../fish/guestfish.pod:9
19260 #, no-wrap
19261 msgid ""
19262 " guestfish [--options] [commands]\n"
19263 "\n"
19264 msgstr ""
19265
19266 #. type: verbatim
19267 #: ../fish/guestfish.pod:11
19268 #, no-wrap
19269 msgid ""
19270 " guestfish\n"
19271 "\n"
19272 msgstr ""
19273
19274 #. type: verbatim
19275 #: ../fish/guestfish.pod:13
19276 #, no-wrap
19277 msgid ""
19278 " guestfish [--ro|--rw] -a disk.img\n"
19279 "\n"
19280 msgstr ""
19281
19282 #. type: verbatim
19283 #: ../fish/guestfish.pod:15
19284 #, no-wrap
19285 msgid ""
19286 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19287 "\n"
19288 msgstr ""
19289
19290 #. type: verbatim
19291 #: ../fish/guestfish.pod:17
19292 #, no-wrap
19293 msgid ""
19294 " guestfish -d libvirt-domain\n"
19295 "\n"
19296 msgstr ""
19297
19298 #. type: verbatim
19299 #: ../fish/guestfish.pod:19
19300 #, no-wrap
19301 msgid ""
19302 " guestfish [--ro|--rw] -a disk.img -i\n"
19303 "\n"
19304 msgstr ""
19305
19306 #. type: verbatim
19307 #: ../fish/guestfish.pod:21
19308 #, no-wrap
19309 msgid ""
19310 " guestfish -d libvirt-domain -i\n"
19311 "\n"
19312 msgstr ""
19313
19314 #. type: =head1
19315 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19316 msgid "WARNING"
19317 msgstr ""
19318
19319 #. type: textblock
19320 #: ../fish/guestfish.pod:25
19321 msgid ""
19322 "Using guestfish in read/write mode on live virtual machines can be "
19323 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19324 "option to use guestfish safely if the disk image or virtual machine might be "
19325 "live."
19326 msgstr ""
19327
19328 #. type: textblock
19329 #: ../fish/guestfish.pod:32
19330 msgid ""
19331 "Guestfish is a shell and command-line tool for examining and modifying "
19332 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19333 "functionality of the guestfs API, see L<guestfs(3)>."
19334 msgstr ""
19335
19336 #. type: textblock
19337 #: ../fish/guestfish.pod:36
19338 msgid ""
19339 "Guestfish gives you structured access to the libguestfs API, from shell "
19340 "scripts or the command line or interactively.  If you want to rescue a "
19341 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19342 "command."
19343 msgstr ""
19344
19345 #. type: =head1
19346 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949 ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
19347 msgid "EXAMPLES"
19348 msgstr ""
19349
19350 #. type: =head2
19351 #: ../fish/guestfish.pod:43
19352 msgid "As an interactive shell"
19353 msgstr ""
19354
19355 #. type: verbatim
19356 #: ../fish/guestfish.pod:45
19357 #, no-wrap
19358 msgid ""
19359 " $ guestfish\n"
19360 " \n"
19361 msgstr ""
19362
19363 #. type: verbatim
19364 #: ../fish/guestfish.pod:47
19365 #, no-wrap
19366 msgid ""
19367 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19368 " editing virtual machine filesystems.\n"
19369 " \n"
19370 msgstr ""
19371
19372 #. type: verbatim
19373 #: ../fish/guestfish.pod:50
19374 #, no-wrap
19375 msgid ""
19376 " Type: 'help' for a list of commands\n"
19377 "       'man' to read the manual\n"
19378 "       'quit' to quit the shell\n"
19379 " \n"
19380 msgstr ""
19381
19382 #. type: verbatim
19383 #: ../fish/guestfish.pod:54
19384 #, no-wrap
19385 msgid ""
19386 " ><fs> add-ro disk.img\n"
19387 " ><fs> run\n"
19388 " ><fs> list-filesystems\n"
19389 " /dev/sda1: ext4\n"
19390 " /dev/vg_guest/lv_root: ext4\n"
19391 " /dev/vg_guest/lv_swap: swap\n"
19392 " ><fs> mount /dev/vg_guest/lv_root /\n"
19393 " ><fs> cat /etc/fstab\n"
19394 " # /etc/fstab\n"
19395 " # Created by anaconda\n"
19396 " [...]\n"
19397 " ><fs> exit\n"
19398 "\n"
19399 msgstr ""
19400
19401 #. type: =head2
19402 #: ../fish/guestfish.pod:67
19403 msgid "From shell scripts"
19404 msgstr ""
19405
19406 #. type: textblock
19407 #: ../fish/guestfish.pod:69
19408 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19409 msgstr ""
19410
19411 #. type: verbatim
19412 #: ../fish/guestfish.pod:71
19413 #, no-wrap
19414 msgid ""
19415 " guestfish <<_EOF_\n"
19416 " add disk.img\n"
19417 " run\n"
19418 " mount /dev/vg_guest/lv_root /\n"
19419 " write /etc/motd \"Welcome, new users\"\n"
19420 " _EOF_\n"
19421 "\n"
19422 msgstr ""
19423
19424 #. type: textblock
19425 #: ../fish/guestfish.pod:78
19426 msgid "List the LVM logical volumes in a disk image:"
19427 msgstr ""
19428
19429 #. type: verbatim
19430 #: ../fish/guestfish.pod:80
19431 #, no-wrap
19432 msgid ""
19433 " guestfish -a disk.img --ro <<_EOF_\n"
19434 " run\n"
19435 " lvs\n"
19436 " _EOF_\n"
19437 "\n"
19438 msgstr ""
19439
19440 #. type: textblock
19441 #: ../fish/guestfish.pod:85
19442 msgid "List all the filesystems in a disk image:"
19443 msgstr ""
19444
19445 #. type: verbatim
19446 #: ../fish/guestfish.pod:87
19447 #, no-wrap
19448 msgid ""
19449 " guestfish -a disk.img --ro <<_EOF_\n"
19450 " run\n"
19451 " list-filesystems\n"
19452 " _EOF_\n"
19453 "\n"
19454 msgstr ""
19455
19456 #. type: =head2
19457 #: ../fish/guestfish.pod:92
19458 msgid "On one command line"
19459 msgstr ""
19460
19461 #. type: textblock
19462 #: ../fish/guestfish.pod:94
19463 msgid "Update C</etc/resolv.conf> in a guest:"
19464 msgstr ""
19465
19466 #. type: verbatim
19467 #: ../fish/guestfish.pod:96
19468 #, no-wrap
19469 msgid ""
19470 " guestfish \\\n"
19471 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19472 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19473 "\n"
19474 msgstr ""
19475
19476 #. type: textblock
19477 #: ../fish/guestfish.pod:100
19478 msgid "Edit C</boot/grub/grub.conf> interactively:"
19479 msgstr ""
19480
19481 #. type: verbatim
19482 #: ../fish/guestfish.pod:102
19483 #, no-wrap
19484 msgid ""
19485 " guestfish --rw --add disk.img \\\n"
19486 "   --mount /dev/vg_guest/lv_root \\\n"
19487 "   --mount /dev/sda1:/boot \\\n"
19488 "   edit /boot/grub/grub.conf\n"
19489 "\n"
19490 msgstr ""
19491
19492 #. type: =head2
19493 #: ../fish/guestfish.pod:107
19494 msgid "Mount disks automatically"
19495 msgstr ""
19496
19497 #. type: textblock
19498 #: ../fish/guestfish.pod:109
19499 msgid ""
19500 "Use the I<-i> option to automatically mount the disks from a virtual "
19501 "machine:"
19502 msgstr ""
19503
19504 #. type: verbatim
19505 #: ../fish/guestfish.pod:112
19506 #, no-wrap
19507 msgid ""
19508 " guestfish --ro -a disk.img -i cat /etc/group\n"
19509 "\n"
19510 msgstr ""
19511
19512 #. type: verbatim
19513 #: ../fish/guestfish.pod:114
19514 #, no-wrap
19515 msgid ""
19516 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19517 "\n"
19518 msgstr ""
19519
19520 #. type: textblock
19521 #: ../fish/guestfish.pod:116
19522 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19523 msgstr ""
19524
19525 #. type: verbatim
19526 #: ../fish/guestfish.pod:118
19527 #, no-wrap
19528 msgid ""
19529 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19530 "\n"
19531 msgstr ""
19532
19533 #. type: =head2
19534 #: ../fish/guestfish.pod:120
19535 msgid "As a script interpreter"
19536 msgstr ""
19537
19538 #. type: textblock
19539 #: ../fish/guestfish.pod:122
19540 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19541 msgstr ""
19542
19543 #. type: verbatim
19544 #: ../fish/guestfish.pod:124
19545 #, no-wrap
19546 msgid ""
19547 " #!/usr/bin/guestfish -f\n"
19548 " sparse test1.img 100M\n"
19549 " run\n"
19550 " part-disk /dev/sda mbr\n"
19551 " mkfs ext2 /dev/sda1\n"
19552 "\n"
19553 msgstr ""
19554
19555 #. type: =head2
19556 #: ../fish/guestfish.pod:130
19557 msgid "Start with a prepared disk"
19558 msgstr ""
19559
19560 #. type: textblock
19561 #: ../fish/guestfish.pod:132
19562 msgid ""
19563 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19564 "single ext2-formatted partition:"
19565 msgstr ""
19566
19567 #. type: verbatim
19568 #: ../fish/guestfish.pod:135
19569 #, no-wrap
19570 msgid ""
19571 " guestfish -N fs\n"
19572 "\n"
19573 msgstr ""
19574
19575 #. type: textblock
19576 #: ../fish/guestfish.pod:137
19577 msgid "To list what is available do:"
19578 msgstr ""
19579
19580 #. type: verbatim
19581 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
19582 #, no-wrap
19583 msgid ""
19584 " guestfish -N help | less\n"
19585 "\n"
19586 msgstr ""
19587
19588 #. type: =head2
19589 #: ../fish/guestfish.pod:141
19590 msgid "Remote control"
19591 msgstr ""
19592
19593 #. type: verbatim
19594 #: ../fish/guestfish.pod:143
19595 #, no-wrap
19596 msgid ""
19597 " eval \"`guestfish --listen`\"\n"
19598 " guestfish --remote add-ro disk.img\n"
19599 " guestfish --remote run\n"
19600 " guestfish --remote lvs\n"
19601 "\n"
19602 msgstr ""
19603
19604 #. type: =head1
19605 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37 ../fuse/guestmount.pod:83 ../tools/virt-win-reg.pl:96 ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:103 ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
19606 msgid "OPTIONS"
19607 msgstr ""
19608
19609 #. type: =item
19610 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:143 ../tools/virt-win-reg.pl:104 ../tools/virt-list-filesystems.pl:61 ../tools/virt-tar.pl:111 ../tools/virt-make-fs.pl:161 ../tools/virt-list-partitions.pl:62
19611 msgid "B<--help>"
19612 msgstr ""
19613
19614 #. type: textblock
19615 #: ../fish/guestfish.pod:154
19616 msgid "Displays general help on options."
19617 msgstr ""
19618
19619 #. type: =item
19620 #: ../fish/guestfish.pod:156
19621 msgid "B<-h>"
19622 msgstr ""
19623
19624 #. type: =item
19625 #: ../fish/guestfish.pod:158
19626 msgid "B<--cmd-help>"
19627 msgstr ""
19628
19629 #. type: textblock
19630 #: ../fish/guestfish.pod:160
19631 msgid "Lists all available guestfish commands."
19632 msgstr ""
19633
19634 #. type: =item
19635 #: ../fish/guestfish.pod:162
19636 msgid "B<-h cmd>"
19637 msgstr ""
19638
19639 #. type: =item
19640 #: ../fish/guestfish.pod:164
19641 msgid "B<--cmd-help cmd>"
19642 msgstr ""
19643
19644 #. type: textblock
19645 #: ../fish/guestfish.pod:166
19646 msgid "Displays detailed help on a single command C<cmd>."
19647 msgstr ""
19648
19649 #. type: =item
19650 #: ../fish/guestfish.pod:168
19651 msgid "B<-a image>"
19652 msgstr ""
19653
19654 #. type: =item
19655 #: ../fish/guestfish.pod:170
19656 msgid "B<--add image>"
19657 msgstr ""
19658
19659 #. type: textblock
19660 #: ../fish/guestfish.pod:172
19661 msgid "Add a block device or virtual machine image to the shell."
19662 msgstr ""
19663
19664 #. type: textblock
19665 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
19666 msgid ""
19667 "The format of the disk image is auto-detected.  To override this and force a "
19668 "particular format use the I<--format=..> option."
19669 msgstr ""
19670
19671 #. type: textblock
19672 #: ../fish/guestfish.pod:177
19673 msgid ""
19674 "Using this flag is mostly equivalent to using the C<add> command, with "
19675 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19676 "the I<--format=...> flag was given."
19677 msgstr ""
19678
19679 #. type: =item
19680 #: ../fish/guestfish.pod:181
19681 msgid "B<-c URI>"
19682 msgstr ""
19683
19684 #. type: =item
19685 #: ../fish/guestfish.pod:183
19686 msgid "B<--connect URI>"
19687 msgstr ""
19688
19689 #. type: textblock
19690 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
19691 msgid ""
19692 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19693 "URI to use.  The default is to use the default libvirt connection."
19694 msgstr ""
19695
19696 #. type: =item
19697 #: ../fish/guestfish.pod:189
19698 msgid "B<--csh>"
19699 msgstr ""
19700
19701 #. type: textblock
19702 #: ../fish/guestfish.pod:191
19703 msgid ""
19704 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19705 "section L</REMOTE CONTROL AND CSH> below."
19706 msgstr ""
19707
19708 #. type: =item
19709 #: ../fish/guestfish.pod:194
19710 msgid "B<-d libvirt-domain>"
19711 msgstr ""
19712
19713 #. type: =item
19714 #: ../fish/guestfish.pod:196
19715 msgid "B<--domain libvirt-domain>"
19716 msgstr ""
19717
19718 #. type: textblock
19719 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
19720 msgid ""
19721 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19722 "used, then any libvirt domain can be used.  However in write mode, only "
19723 "libvirt domains which are shut down can be named here."
19724 msgstr ""
19725
19726 #. type: textblock
19727 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
19728 msgid "Domain UUIDs can be used instead of names."
19729 msgstr ""
19730
19731 #. type: textblock
19732 #: ../fish/guestfish.pod:204
19733 msgid ""
19734 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19735 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19736 "if the I<--format:...> flag was given."
19737 msgstr ""
19738
19739 #. type: =item
19740 #: ../fish/guestfish.pod:208
19741 msgid "B<-D>"
19742 msgstr ""
19743
19744 #. type: =item
19745 #: ../fish/guestfish.pod:210
19746 msgid "B<--no-dest-paths>"
19747 msgstr ""
19748
19749 #. type: textblock
19750 #: ../fish/guestfish.pod:212
19751 msgid ""
19752 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19753 "to hit the tab key to complete paths on the guest filesystem, but this "
19754 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19755 "allow this feature to be disabled."
19756 msgstr ""
19757
19758 #. type: =item
19759 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
19760 msgid "B<--echo-keys>"
19761 msgstr ""
19762
19763 #. type: textblock
19764 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
19765 msgid ""
19766 "When prompting for keys and passphrases, guestfish normally turns echoing "
19767 "off so you cannot see what you are typing.  If you are not worried about "
19768 "Tempest attacks and there is no one else in the room you can specify this "
19769 "flag to see what you are typing."
19770 msgstr ""
19771
19772 #. type: =item
19773 #: ../fish/guestfish.pod:224
19774 msgid "B<-f file>"
19775 msgstr ""
19776
19777 #. type: =item
19778 #: ../fish/guestfish.pod:226
19779 msgid "B<--file file>"
19780 msgstr ""
19781
19782 #. type: textblock
19783 #: ../fish/guestfish.pod:228
19784 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19785 msgstr ""
19786
19787 #. type: verbatim
19788 #: ../fish/guestfish.pod:231
19789 #, no-wrap
19790 msgid ""
19791 " #!/usr/bin/guestfish -f\n"
19792 "\n"
19793 msgstr ""
19794
19795 #. type: =item
19796 #: ../fish/guestfish.pod:233
19797 msgid "B<--format=raw|qcow2|..>"
19798 msgstr ""
19799
19800 #. type: =item
19801 #: ../fish/guestfish.pod:235
19802 msgid "B<--format>"
19803 msgstr ""
19804
19805 #. type: textblock
19806 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
19807 msgid ""
19808 "The default for the I<-a> option is to auto-detect the format of the disk "
19809 "image.  Using this forces the disk format for I<-a> options which follow on "
19810 "the command line.  Using I<--format> with no argument switches back to "
19811 "auto-detection for subsequent I<-a> options."
19812 msgstr ""
19813
19814 #. type: verbatim
19815 #: ../fish/guestfish.pod:244
19816 #, no-wrap
19817 msgid ""
19818 " guestfish --format=raw -a disk.img\n"
19819 "\n"
19820 msgstr ""
19821
19822 #. type: textblock
19823 #: ../fish/guestfish.pod:246
19824 msgid "forces raw format (no auto-detection) for C<disk.img>."
19825 msgstr ""
19826
19827 #. type: verbatim
19828 #: ../fish/guestfish.pod:248
19829 #, no-wrap
19830 msgid ""
19831 " guestfish --format=raw -a disk.img --format -a another.img\n"
19832 "\n"
19833 msgstr ""
19834
19835 #. type: textblock
19836 #: ../fish/guestfish.pod:250
19837 msgid ""
19838 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
19839 "auto-detection for C<another.img>."
19840 msgstr ""
19841
19842 #. type: textblock
19843 #: ../fish/guestfish.pod:253
19844 msgid ""
19845 "If you have untrusted raw-format guest disk images, you should use this "
19846 "option to specify the disk format.  This avoids a possible security problem "
19847 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19848 msgstr ""
19849
19850 #. type: =item
19851 #: ../fish/guestfish.pod:258
19852 msgid "B<-i>"
19853 msgstr ""
19854
19855 #. type: =item
19856 #: ../fish/guestfish.pod:260
19857 msgid "B<--inspector>"
19858 msgstr ""
19859
19860 #. type: textblock
19861 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
19862 msgid ""
19863 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19864 "system and mount filesystems as they would be mounted on the real virtual "
19865 "machine."
19866 msgstr ""
19867
19868 #. type: textblock
19869 #: ../fish/guestfish.pod:266
19870 msgid "Typical usage is either:"
19871 msgstr ""
19872
19873 #. type: verbatim
19874 #: ../fish/guestfish.pod:268
19875 #, no-wrap
19876 msgid ""
19877 " guestfish -d myguest -i\n"
19878 "\n"
19879 msgstr ""
19880
19881 #. type: textblock
19882 #: ../fish/guestfish.pod:270
19883 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19884 msgstr ""
19885
19886 #. type: verbatim
19887 #: ../fish/guestfish.pod:272
19888 #, no-wrap
19889 msgid ""
19890 " guestfish --ro -d myguest -i\n"
19891 "\n"
19892 msgstr ""
19893
19894 #. type: textblock
19895 #: ../fish/guestfish.pod:274
19896 msgid "(for active domains, readonly), or specify the block device directly:"
19897 msgstr ""
19898
19899 #. type: verbatim
19900 #: ../fish/guestfish.pod:276
19901 #, no-wrap
19902 msgid ""
19903 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19904 "\n"
19905 msgstr ""
19906
19907 #. type: textblock
19908 #: ../fish/guestfish.pod:278
19909 msgid ""
19910 "Note that the command line syntax changed slightly over older versions of "
19911 "guestfish.  You can still use the old syntax:"
19912 msgstr ""
19913
19914 #. type: verbatim
19915 #: ../fish/guestfish.pod:281
19916 #, no-wrap
19917 msgid ""
19918 " guestfish [--ro] -i disk.img\n"
19919 "\n"
19920 msgstr ""
19921
19922 #. type: verbatim
19923 #: ../fish/guestfish.pod:283
19924 #, no-wrap
19925 msgid ""
19926 " guestfish [--ro] -i libvirt-domain\n"
19927 "\n"
19928 msgstr ""
19929
19930 #. type: textblock
19931 #: ../fish/guestfish.pod:285
19932 msgid ""
19933 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19934 "then using other commands to mount the filesystems that were found."
19935 msgstr ""
19936
19937 #. type: =item
19938 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
19939 msgid "B<--keys-from-stdin>"
19940 msgstr ""
19941
19942 #. type: textblock
19943 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
19944 msgid ""
19945 "Read key or passphrase parameters from stdin.  The default is to try to read "
19946 "passphrases from the user by opening C</dev/tty>."
19947 msgstr ""
19948
19949 #. type: =item
19950 #: ../fish/guestfish.pod:294
19951 msgid "B<--listen>"
19952 msgstr ""
19953
19954 #. type: textblock
19955 #: ../fish/guestfish.pod:296
19956 msgid ""
19957 "Fork into the background and listen for remote commands.  See section "
19958 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
19959 msgstr ""
19960
19961 #. type: =item
19962 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
19963 msgid "B<--live>"
19964 msgstr ""
19965
19966 #. type: textblock
19967 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
19968 msgid ""
19969 "Connect to a live virtual machine.  (Experimental, see "
19970 "L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
19971 msgstr ""
19972
19973 #. type: =item
19974 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
19975 msgid "B<-m dev[:mountpoint[:options]]>"
19976 msgstr ""
19977
19978 #. type: =item
19979 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
19980 msgid "B<--mount dev[:mountpoint[:options]]>"
19981 msgstr ""
19982
19983 #. type: textblock
19984 #: ../fish/guestfish.pod:308
19985 msgid "Mount the named partition or logical volume on the given mountpoint."
19986 msgstr ""
19987
19988 #. type: textblock
19989 #: ../fish/guestfish.pod:310
19990 msgid "If the mountpoint is omitted, it defaults to C</>."
19991 msgstr ""
19992
19993 #. type: textblock
19994 #: ../fish/guestfish.pod:312
19995 msgid "You have to mount something on C</> before most commands will work."
19996 msgstr ""
19997
19998 #. type: textblock
19999 #: ../fish/guestfish.pod:314
20000 msgid ""
20001 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20002 "launched."
20003 msgstr ""
20004
20005 #. type: textblock
20006 #: ../fish/guestfish.pod:317
20007 msgid ""
20008 "If you don't know what filesystems a disk image contains, you can either run "
20009 "guestfish without this option, then list the partitions, filesystems and LVs "
20010 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20011 "commands), or you can use the L<virt-filesystems(1)> program."
20012 msgstr ""
20013
20014 #. type: textblock
20015 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
20016 msgid ""
20017 "The third (and rarely used) part of the mount parameter is the list of mount "
20018 "options used to mount the underlying filesystem.  If this is not given, then "
20019 "the mount options are either the empty string or C<ro> (the latter if the "
20020 "I<--ro> flag is used).  By specifying the mount options, you override this "
20021 "default choice.  Probably the only time you would use this is to enable ACLs "
20022 "and/or extended attributes if the filesystem can support them:"
20023 msgstr ""
20024
20025 #. type: verbatim
20026 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
20027 #, no-wrap
20028 msgid ""
20029 " -m /dev/sda1:/:acl,user_xattr\n"
20030 "\n"
20031 msgstr ""
20032
20033 #. type: textblock
20034 #: ../fish/guestfish.pod:333
20035 msgid "Using this flag is equivalent to using the C<mount-options> command."
20036 msgstr ""
20037
20038 #. type: =item
20039 #: ../fish/guestfish.pod:335
20040 msgid "B<-n>"
20041 msgstr ""
20042
20043 #. type: =item
20044 #: ../fish/guestfish.pod:337
20045 msgid "B<--no-sync>"
20046 msgstr ""
20047
20048 #. type: textblock
20049 #: ../fish/guestfish.pod:339
20050 msgid ""
20051 "Disable autosync.  This is enabled by default.  See the discussion of "
20052 "autosync in the L<guestfs(3)> manpage."
20053 msgstr ""
20054
20055 #. type: =item
20056 #: ../fish/guestfish.pod:342
20057 msgid "B<-N type>"
20058 msgstr ""
20059
20060 #. type: =item
20061 #: ../fish/guestfish.pod:344
20062 msgid "B<--new type>"
20063 msgstr ""
20064
20065 #. type: =item
20066 #: ../fish/guestfish.pod:346
20067 msgid "B<-N help>"
20068 msgstr ""
20069
20070 #. type: textblock
20071 #: ../fish/guestfish.pod:348
20072 msgid ""
20073 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20074 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20075 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20076 "IMAGES> below."
20077 msgstr ""
20078
20079 #. type: =item
20080 #: ../fish/guestfish.pod:353
20081 msgid "B<--progress-bars>"
20082 msgstr ""
20083
20084 #. type: textblock
20085 #: ../fish/guestfish.pod:355
20086 msgid "Enable progress bars, even when guestfish is used non-interactively."
20087 msgstr ""
20088
20089 #. type: textblock
20090 #: ../fish/guestfish.pod:357
20091 msgid ""
20092 "Progress bars are enabled by default when guestfish is used as an "
20093 "interactive shell."
20094 msgstr ""
20095
20096 #. type: =item
20097 #: ../fish/guestfish.pod:360
20098 msgid "B<--no-progress-bars>"
20099 msgstr ""
20100
20101 #. type: textblock
20102 #: ../fish/guestfish.pod:362
20103 msgid "Disable progress bars."
20104 msgstr ""
20105
20106 #. type: =item
20107 #: ../fish/guestfish.pod:364
20108 msgid "B<--remote[=pid]>"
20109 msgstr ""
20110
20111 #. type: textblock
20112 #: ../fish/guestfish.pod:366
20113 msgid ""
20114 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20115 "CONTROL GUESTFISH OVER A SOCKET> below."
20116 msgstr ""
20117
20118 #. type: =item
20119 #: ../fish/guestfish.pod:369
20120 msgid "B<-r>"
20121 msgstr ""
20122
20123 #. type: =item
20124 #: ../fish/guestfish.pod:371
20125 msgid "B<--ro>"
20126 msgstr ""
20127
20128 #. type: textblock
20129 #: ../fish/guestfish.pod:373
20130 msgid ""
20131 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20132 "mounts are done read-only."
20133 msgstr ""
20134
20135 #. type: textblock
20136 #: ../fish/guestfish.pod:376
20137 msgid ""
20138 "The option must always be used if the disk image or virtual machine might be "
20139 "running, and is generally recommended in cases where you don't need write "
20140 "access to the disk."
20141 msgstr ""
20142
20143 #. type: textblock
20144 #: ../fish/guestfish.pod:380
20145 msgid ""
20146 "Note that prepared disk images created with I<-N> are not affected by this "
20147 "option.  Also commands like C<add> are not affected - you have to specify "
20148 "the C<readonly:true> option explicitly if you need it."
20149 msgstr ""
20150
20151 #. type: textblock
20152 #: ../fish/guestfish.pod:384
20153 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
20154 msgstr ""
20155
20156 #. type: =item
20157 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
20158 msgid "B<--selinux>"
20159 msgstr ""
20160
20161 #. type: textblock
20162 #: ../fish/guestfish.pod:388
20163 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
20164 msgstr ""
20165
20166 #. type: =item
20167 #: ../fish/guestfish.pod:390
20168 msgid "B<-v>"
20169 msgstr ""
20170
20171 #. type: =item
20172 #: ../fish/guestfish.pod:392
20173 msgid "B<--verbose>"
20174 msgstr ""
20175
20176 #. type: textblock
20177 #: ../fish/guestfish.pod:394
20178 msgid ""
20179 "Enable very verbose messages.  This is particularly useful if you find a "
20180 "bug."
20181 msgstr ""
20182
20183 #. type: =item
20184 #: ../fish/guestfish.pod:397
20185 msgid "B<-V>"
20186 msgstr ""
20187
20188 #. type: =item
20189 #: ../fish/guestfish.pod:399 ../tools/virt-win-reg.pl:112 ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:119 ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
20190 msgid "B<--version>"
20191 msgstr ""
20192
20193 #. type: textblock
20194 #: ../fish/guestfish.pod:401
20195 msgid "Display the guestfish / libguestfs version number and exit."
20196 msgstr ""
20197
20198 #. type: =item
20199 #: ../fish/guestfish.pod:403
20200 msgid "B<-w>"
20201 msgstr ""
20202
20203 #. type: =item
20204 #: ../fish/guestfish.pod:405
20205 msgid "B<--rw>"
20206 msgstr ""
20207
20208 #. type: textblock
20209 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
20210 msgid ""
20211 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20212 "mounts are done read-write."
20213 msgstr ""
20214
20215 #. type: textblock
20216 #: ../fish/guestfish.pod:410
20217 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20218 msgstr ""
20219
20220 #. type: =item
20221 #: ../fish/guestfish.pod:412
20222 msgid "B<-x>"
20223 msgstr ""
20224
20225 #. type: textblock
20226 #: ../fish/guestfish.pod:414
20227 msgid "Echo each command before executing it."
20228 msgstr ""
20229
20230 #. type: =head1
20231 #: ../fish/guestfish.pod:418
20232 msgid "COMMANDS ON COMMAND LINE"
20233 msgstr ""
20234
20235 #. type: textblock
20236 #: ../fish/guestfish.pod:420
20237 msgid "Any additional (non-option) arguments are treated as commands to execute."
20238 msgstr ""
20239
20240 #. type: textblock
20241 #: ../fish/guestfish.pod:423
20242 msgid ""
20243 "Commands to execute should be separated by a colon (C<:>), where the colon "
20244 "is a separate parameter.  Thus:"
20245 msgstr ""
20246
20247 #. type: verbatim
20248 #: ../fish/guestfish.pod:426
20249 #, no-wrap
20250 msgid ""
20251 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20252 "\n"
20253 msgstr ""
20254
20255 #. type: textblock
20256 #: ../fish/guestfish.pod:428
20257 msgid ""
20258 "If there are no additional arguments, then we enter a shell, either an "
20259 "interactive shell with a prompt (if the input is a terminal) or a "
20260 "non-interactive shell."
20261 msgstr ""
20262
20263 #. type: textblock
20264 #: ../fish/guestfish.pod:432
20265 msgid ""
20266 "In either command line mode or non-interactive shell, the first command that "
20267 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20268 "prompt) if a command fails, you can continue to enter commands."
20269 msgstr ""
20270
20271 #. type: =head1
20272 #: ../fish/guestfish.pod:437
20273 msgid "USING launch (OR run)"
20274 msgstr ""
20275
20276 #. type: textblock
20277 #: ../fish/guestfish.pod:439
20278 msgid ""
20279 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20280 "then launch it, then mount any disks you need, and finally issue "
20281 "actions/commands.  So the general order of the day is:"
20282 msgstr ""
20283
20284 #. type: textblock
20285 #: ../fish/guestfish.pod:447
20286 msgid "add or -a/--add"
20287 msgstr ""
20288
20289 #. type: textblock
20290 #: ../fish/guestfish.pod:451
20291 msgid "launch (aka run)"
20292 msgstr ""
20293
20294 #. type: textblock
20295 #: ../fish/guestfish.pod:455
20296 msgid "mount or -m/--mount"
20297 msgstr ""
20298
20299 #. type: textblock
20300 #: ../fish/guestfish.pod:459
20301 msgid "any other commands"
20302 msgstr ""
20303
20304 #. type: textblock
20305 #: ../fish/guestfish.pod:463
20306 msgid ""
20307 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20308 "guest before mounting or performing any other commands."
20309 msgstr ""
20310
20311 #. type: textblock
20312 #: ../fish/guestfish.pod:466
20313 msgid ""
20314 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20315 "I<--new> options were given then C<run> is done automatically, simply "
20316 "because guestfish can't perform the action you asked for without doing this."
20317 msgstr ""
20318
20319 #. type: =head1
20320 #: ../fish/guestfish.pod:471
20321 msgid "OPENING DISKS FOR READ AND WRITE"
20322 msgstr ""
20323
20324 #. type: textblock
20325 #: ../fish/guestfish.pod:473
20326 msgid ""
20327 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20328 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20329 "I<-i> and I<-m> open disk images read-only or for writing."
20330 msgstr ""
20331
20332 #. type: textblock
20333 #: ../fish/guestfish.pod:478
20334 msgid ""
20335 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20336 "opening disk images supplied on the command line for write.  To open a disk "
20337 "image read-only you have to do I<-a image --ro>."
20338 msgstr ""
20339
20340 #. type: textblock
20341 #: ../fish/guestfish.pod:482
20342 msgid ""
20343 "This matters: If you accidentally open a live VM disk image writable then "
20344 "you will cause irreversible disk corruption."
20345 msgstr ""
20346
20347 #. type: textblock
20348 #: ../fish/guestfish.pod:485
20349 msgid ""
20350 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20351 "images will be opened read-only.  You will have to either specify "
20352 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20353 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20354 "access for disk images specified by those other command line options."
20355 msgstr ""
20356
20357 #. type: textblock
20358 #: ../fish/guestfish.pod:492
20359 msgid ""
20360 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20361 "which does nothing (it is already the default).  However it is highly "
20362 "recommended that you use this option to indicate that you need write access, "
20363 "and prepare your scripts for the day when this option will be required for "
20364 "write access."
20365 msgstr ""
20366
20367 #. type: textblock
20368 #: ../fish/guestfish.pod:498
20369 msgid ""
20370 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20371 "other libguestfs program apart from guestfish and guestmount."
20372 msgstr ""
20373
20374 #. type: =head1
20375 #: ../fish/guestfish.pod:501
20376 msgid "QUOTING"
20377 msgstr ""
20378
20379 #. type: textblock
20380 #: ../fish/guestfish.pod:503
20381 msgid ""
20382 "You can quote ordinary parameters using either single or double quotes.  For "
20383 "example:"
20384 msgstr ""
20385
20386 #. type: verbatim
20387 #: ../fish/guestfish.pod:506
20388 #, no-wrap
20389 msgid ""
20390 " add \"file with a space.img\"\n"
20391 "\n"
20392 msgstr ""
20393
20394 #. type: verbatim
20395 #: ../fish/guestfish.pod:508
20396 #, no-wrap
20397 msgid ""
20398 " rm '/file name'\n"
20399 "\n"
20400 msgstr ""
20401
20402 #. type: verbatim
20403 #: ../fish/guestfish.pod:510
20404 #, no-wrap
20405 msgid ""
20406 " rm '/\"'\n"
20407 "\n"
20408 msgstr ""
20409
20410 #. type: textblock
20411 #: ../fish/guestfish.pod:512
20412 msgid ""
20413 "A few commands require a list of strings to be passed.  For these, use a "
20414 "whitespace-separated list, enclosed in quotes.  Strings containing "
20415 "whitespace to be passed through must be enclosed in single quotes.  A "
20416 "literal single quote must be escaped with a backslash."
20417 msgstr ""
20418
20419 #. type: verbatim
20420 #: ../fish/guestfish.pod:517
20421 #, no-wrap
20422 msgid ""
20423 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20424 " command \"/bin/echo 'foo      bar'\"\n"
20425 " command \"/bin/echo \\'foo\\'\"\n"
20426 "\n"
20427 msgstr ""
20428
20429 #. type: =head1
20430 #: ../fish/guestfish.pod:521
20431 msgid "OPTIONAL ARGUMENTS"
20432 msgstr ""
20433
20434 #. type: textblock
20435 #: ../fish/guestfish.pod:523
20436 msgid ""
20437 "Some commands take optional arguments.  These arguments appear in this "
20438 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20439 msgstr ""
20440
20441 #. type: verbatim
20442 #: ../fish/guestfish.pod:527
20443 #, no-wrap
20444 msgid ""
20445 " add-drive-opts filename\n"
20446 "\n"
20447 msgstr ""
20448
20449 #. type: verbatim
20450 #: ../fish/guestfish.pod:529
20451 #, no-wrap
20452 msgid ""
20453 " add-drive-opts filename readonly:true\n"
20454 "\n"
20455 msgstr ""
20456
20457 #. type: verbatim
20458 #: ../fish/guestfish.pod:531
20459 #, no-wrap
20460 msgid ""
20461 " add-drive-opts filename format:qcow2 readonly:false\n"
20462 "\n"
20463 msgstr ""
20464
20465 #. type: textblock
20466 #: ../fish/guestfish.pod:533
20467 msgid ""
20468 "Each optional argument can appear at most once.  All optional arguments must "
20469 "appear after the required ones."
20470 msgstr ""
20471
20472 #. type: =head1
20473 #: ../fish/guestfish.pod:536
20474 msgid "NUMBERS"
20475 msgstr ""
20476
20477 #. type: textblock
20478 #: ../fish/guestfish.pod:538
20479 msgid "This section applies to all commands which can take integers as parameters."
20480 msgstr ""
20481
20482 #. type: =head2
20483 #: ../fish/guestfish.pod:541
20484 msgid "SIZE SUFFIX"
20485 msgstr ""
20486
20487 #. type: textblock
20488 #: ../fish/guestfish.pod:543
20489 msgid ""
20490 "When the command takes a parameter measured in bytes, you can use one of the "
20491 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20492 msgstr ""
20493
20494 #. type: =item
20495 #: ../fish/guestfish.pod:549
20496 msgid "B<k> or B<K> or B<KiB>"
20497 msgstr ""
20498
20499 #. type: textblock
20500 #: ../fish/guestfish.pod:551
20501 msgid "The size in kilobytes (multiplied by 1024)."
20502 msgstr ""
20503
20504 #. type: =item
20505 #: ../fish/guestfish.pod:553
20506 msgid "B<KB>"
20507 msgstr ""
20508
20509 #. type: textblock
20510 #: ../fish/guestfish.pod:555
20511 msgid "The size in SI 1000 byte units."
20512 msgstr ""
20513
20514 #. type: =item
20515 #: ../fish/guestfish.pod:557
20516 msgid "B<M> or B<MiB>"
20517 msgstr ""
20518
20519 #. type: textblock
20520 #: ../fish/guestfish.pod:559
20521 msgid "The size in megabytes (multiplied by 1048576)."
20522 msgstr ""
20523
20524 #. type: =item
20525 #: ../fish/guestfish.pod:561
20526 msgid "B<MB>"
20527 msgstr ""
20528
20529 #. type: textblock
20530 #: ../fish/guestfish.pod:563
20531 msgid "The size in SI 1000000 byte units."
20532 msgstr ""
20533
20534 #. type: =item
20535 #: ../fish/guestfish.pod:565
20536 msgid "B<G> or B<GiB>"
20537 msgstr ""
20538
20539 #. type: textblock
20540 #: ../fish/guestfish.pod:567
20541 msgid "The size in gigabytes (multiplied by 2**30)."
20542 msgstr ""
20543
20544 #. type: =item
20545 #: ../fish/guestfish.pod:569
20546 msgid "B<GB>"
20547 msgstr ""
20548
20549 #. type: textblock
20550 #: ../fish/guestfish.pod:571
20551 msgid "The size in SI 10**9 byte units."
20552 msgstr ""
20553
20554 #. type: =item
20555 #: ../fish/guestfish.pod:573
20556 msgid "B<T> or B<TiB>"
20557 msgstr ""
20558
20559 #. type: textblock
20560 #: ../fish/guestfish.pod:575
20561 msgid "The size in terabytes (multiplied by 2**40)."
20562 msgstr ""
20563
20564 #. type: =item
20565 #: ../fish/guestfish.pod:577
20566 msgid "B<TB>"
20567 msgstr ""
20568
20569 #. type: textblock
20570 #: ../fish/guestfish.pod:579
20571 msgid "The size in SI 10**12 byte units."
20572 msgstr ""
20573
20574 #. type: =item
20575 #: ../fish/guestfish.pod:581
20576 msgid "B<P> or B<PiB>"
20577 msgstr ""
20578
20579 #. type: textblock
20580 #: ../fish/guestfish.pod:583
20581 msgid "The size in petabytes (multiplied by 2**50)."
20582 msgstr ""
20583
20584 #. type: =item
20585 #: ../fish/guestfish.pod:585
20586 msgid "B<PB>"
20587 msgstr ""
20588
20589 #. type: textblock
20590 #: ../fish/guestfish.pod:587
20591 msgid "The size in SI 10**15 byte units."
20592 msgstr ""
20593
20594 #. type: =item
20595 #: ../fish/guestfish.pod:589
20596 msgid "B<E> or B<EiB>"
20597 msgstr ""
20598
20599 #. type: textblock
20600 #: ../fish/guestfish.pod:591
20601 msgid "The size in exabytes (multiplied by 2**60)."
20602 msgstr ""
20603
20604 #. type: =item
20605 #: ../fish/guestfish.pod:593
20606 msgid "B<EB>"
20607 msgstr ""
20608
20609 #. type: textblock
20610 #: ../fish/guestfish.pod:595
20611 msgid "The size in SI 10**18 byte units."
20612 msgstr ""
20613
20614 #. type: =item
20615 #: ../fish/guestfish.pod:597
20616 msgid "B<Z> or B<ZiB>"
20617 msgstr ""
20618
20619 #. type: textblock
20620 #: ../fish/guestfish.pod:599
20621 msgid "The size in zettabytes (multiplied by 2**70)."
20622 msgstr ""
20623
20624 #. type: =item
20625 #: ../fish/guestfish.pod:601
20626 msgid "B<ZB>"
20627 msgstr ""
20628
20629 #. type: textblock
20630 #: ../fish/guestfish.pod:603
20631 msgid "The size in SI 10**21 byte units."
20632 msgstr ""
20633
20634 #. type: =item
20635 #: ../fish/guestfish.pod:605
20636 msgid "B<Y> or B<YiB>"
20637 msgstr ""
20638
20639 #. type: textblock
20640 #: ../fish/guestfish.pod:607
20641 msgid "The size in yottabytes (multiplied by 2**80)."
20642 msgstr ""
20643
20644 #. type: =item
20645 #: ../fish/guestfish.pod:609
20646 msgid "B<YB>"
20647 msgstr ""
20648
20649 #. type: textblock
20650 #: ../fish/guestfish.pod:611
20651 msgid "The size in SI 10**24 byte units."
20652 msgstr ""
20653
20654 #. type: verbatim
20655 #: ../fish/guestfish.pod:617
20656 #, no-wrap
20657 msgid ""
20658 " truncate-size /file 1G\n"
20659 "\n"
20660 msgstr ""
20661
20662 #. type: textblock
20663 #: ../fish/guestfish.pod:619
20664 msgid "would truncate the file to 1 gigabyte."
20665 msgstr ""
20666
20667 #. type: textblock
20668 #: ../fish/guestfish.pod:621
20669 msgid ""
20670 "Be careful because a few commands take sizes in kilobytes or megabytes "
20671 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
20672 "Adding a suffix will probably not do what you expect."
20673 msgstr ""
20674
20675 #. type: =head2
20676 #: ../fish/guestfish.pod:625
20677 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20678 msgstr ""
20679
20680 #. type: textblock
20681 #: ../fish/guestfish.pod:627
20682 msgid ""
20683 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20684 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20685 msgstr ""
20686
20687 #. type: verbatim
20688 #: ../fish/guestfish.pod:630
20689 #, no-wrap
20690 msgid ""
20691 " 1234      decimal number 1234\n"
20692 " 02322     octal number, equivalent to decimal 1234\n"
20693 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20694 "\n"
20695 msgstr ""
20696
20697 #. type: textblock
20698 #: ../fish/guestfish.pod:634
20699 msgid ""
20700 "When using the C<chmod> command, you almost always want to specify an octal "
20701 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20702 "L<chmod(1)> program):"
20703 msgstr ""
20704
20705 #. type: verbatim
20706 #: ../fish/guestfish.pod:638
20707 #, no-wrap
20708 msgid ""
20709 " chmod 0777 /public  # OK\n"
20710 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20711 "\n"
20712 msgstr ""
20713
20714 #. type: textblock
20715 #: ../fish/guestfish.pod:641
20716 msgid ""
20717 "Commands that return numbers usually print them in decimal, but some "
20718 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20719 "octal, preceeded by C<0>)."
20720 msgstr ""
20721
20722 #. type: =head1
20723 #: ../fish/guestfish.pod:645
20724 msgid "WILDCARDS AND GLOBBING"
20725 msgstr ""
20726
20727 #. type: textblock
20728 #: ../fish/guestfish.pod:647
20729 msgid ""
20730 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20731 "(globbing) by default.  So for example the following will not do what you "
20732 "expect:"
20733 msgstr ""
20734
20735 #. type: verbatim
20736 #: ../fish/guestfish.pod:651
20737 #, no-wrap
20738 msgid ""
20739 " rm-rf /home/*\n"
20740 "\n"
20741 msgstr ""
20742
20743 #. type: textblock
20744 #: ../fish/guestfish.pod:653
20745 msgid ""
20746 "Assuming you don't have a directory called literally C</home/*> then the "
20747 "above command will return an error."
20748 msgstr ""
20749
20750 #. type: textblock
20751 #: ../fish/guestfish.pod:656
20752 msgid "To perform wildcard expansion, use the C<glob> command."
20753 msgstr ""
20754
20755 #. type: verbatim
20756 #: ../fish/guestfish.pod:658
20757 #, no-wrap
20758 msgid ""
20759 " glob rm-rf /home/*\n"
20760 "\n"
20761 msgstr ""
20762
20763 #. type: textblock
20764 #: ../fish/guestfish.pod:660
20765 msgid ""
20766 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20767 "many times), equivalent to:"
20768 msgstr ""
20769
20770 #. type: verbatim
20771 #: ../fish/guestfish.pod:663
20772 #, no-wrap
20773 msgid ""
20774 " rm-rf /home/jim\n"
20775 " rm-rf /home/joe\n"
20776 " rm-rf /home/mary\n"
20777 "\n"
20778 msgstr ""
20779
20780 #. type: textblock
20781 #: ../fish/guestfish.pod:667
20782 msgid "C<glob> only works on simple guest paths and not on device names."
20783 msgstr ""
20784
20785 #. type: textblock
20786 #: ../fish/guestfish.pod:669
20787 msgid ""
20788 "If you have several parameters, each containing a wildcard, then glob will "
20789 "perform a Cartesian product."
20790 msgstr ""
20791
20792 #. type: =head1
20793 #: ../fish/guestfish.pod:672
20794 msgid "COMMENTS"
20795 msgstr ""
20796
20797 #. type: textblock
20798 #: ../fish/guestfish.pod:674
20799 msgid ""
20800 "Any line which starts with a I<#> character is treated as a comment and "
20801 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20802 "a command.  For example:"
20803 msgstr ""
20804
20805 #. type: verbatim
20806 #: ../fish/guestfish.pod:678
20807 #, no-wrap
20808 msgid ""
20809 " # this is a comment\n"
20810 "         # this is a comment\n"
20811 " foo # NOT a comment\n"
20812 "\n"
20813 msgstr ""
20814
20815 #. type: textblock
20816 #: ../fish/guestfish.pod:682
20817 msgid "Blank lines are also ignored."
20818 msgstr ""
20819
20820 #. type: =head1
20821 #: ../fish/guestfish.pod:684
20822 msgid "RUNNING COMMANDS LOCALLY"
20823 msgstr ""
20824
20825 #. type: textblock
20826 #: ../fish/guestfish.pod:686
20827 msgid ""
20828 "Any line which starts with a I<!> character is treated as a command sent to "
20829 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20830 msgstr ""
20831
20832 #. type: verbatim
20833 #: ../fish/guestfish.pod:690
20834 #, no-wrap
20835 msgid ""
20836 " !mkdir local\n"
20837 " tgz-out /remote local/remote-data.tar.gz\n"
20838 "\n"
20839 msgstr ""
20840
20841 #. type: textblock
20842 #: ../fish/guestfish.pod:693
20843 msgid ""
20844 "will create a directory C<local> on the host, and then export the contents "
20845 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20846 "(See C<tgz-out>)."
20847 msgstr ""
20848
20849 #. type: textblock
20850 #: ../fish/guestfish.pod:697
20851 msgid ""
20852 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20853 "effect, due to the way that subprocesses work in Unix."
20854 msgstr ""
20855
20856 #. type: =head2
20857 #: ../fish/guestfish.pod:700
20858 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20859 msgstr ""
20860
20861 #. type: textblock
20862 #: ../fish/guestfish.pod:702
20863 msgid ""
20864 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20865 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20866 "and executed as guestfish commands."
20867 msgstr ""
20868
20869 #. type: textblock
20870 #: ../fish/guestfish.pod:706
20871 msgid ""
20872 "Thus you can use shell script to construct arbitrary guestfish commands "
20873 "which are then parsed by guestfish."
20874 msgstr ""
20875
20876 #. type: textblock
20877 #: ../fish/guestfish.pod:709
20878 msgid ""
20879 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20880 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20881 "if we use a shell script to create the guestfish commands for us:"
20882 msgstr ""
20883
20884 #. type: verbatim
20885 #: ../fish/guestfish.pod:714
20886 #, no-wrap
20887 msgid ""
20888 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20889 "\n"
20890 msgstr ""
20891
20892 #. type: textblock
20893 #: ../fish/guestfish.pod:716
20894 msgid "or with names like C</foo.001>:"
20895 msgstr ""
20896
20897 #. type: verbatim
20898 #: ../fish/guestfish.pod:718
20899 #, no-wrap
20900 msgid ""
20901 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20902 "\n"
20903 msgstr ""
20904
20905 #. type: textblock
20906 #: ../fish/guestfish.pod:720
20907 msgid ""
20908 "When using guestfish interactively it can be helpful to just run the shell "
20909 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20910 "ordinary I<!> local command), see what guestfish commands it would run, and "
20911 "when you are happy with those prepend the C<E<lt>> character to run the "
20912 "guestfish commands for real."
20913 msgstr ""
20914
20915 #. type: =head1
20916 #: ../fish/guestfish.pod:726
20917 msgid "PIPES"
20918 msgstr ""
20919
20920 #. type: textblock
20921 #: ../fish/guestfish.pod:728
20922 msgid ""
20923 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20924 "command (a guestfish command) to the second command (any host command).  For "
20925 "example:"
20926 msgstr ""
20927
20928 #. type: verbatim
20929 #: ../fish/guestfish.pod:732
20930 #, no-wrap
20931 msgid ""
20932 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20933 "\n"
20934 msgstr ""
20935
20936 #. type: textblock
20937 #: ../fish/guestfish.pod:734
20938 msgid ""
20939 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20940 "program).  The above command would list all accounts in the guest filesystem "
20941 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20942 msgstr ""
20943
20944 #. type: verbatim
20945 #: ../fish/guestfish.pod:739
20946 #, no-wrap
20947 msgid ""
20948 " hexdump /bin/ls | head\n"
20949 " list-devices | tail -1\n"
20950 " tgz-out / - | tar ztf -\n"
20951 "\n"
20952 msgstr ""
20953
20954 #. type: textblock
20955 #: ../fish/guestfish.pod:743
20956 msgid ""
20957 "The space before the pipe symbol is required, any space after the pipe "
20958 "symbol is optional.  Everything after the pipe symbol is just passed "
20959 "straight to the host shell, so it can contain redirections, globs and "
20960 "anything else that makes sense on the host side."
20961 msgstr ""
20962
20963 #. type: textblock
20964 #: ../fish/guestfish.pod:748
20965 msgid ""
20966 "To use a literal argument which begins with a pipe symbol, you have to quote "
20967 "it, eg:"
20968 msgstr ""
20969
20970 #. type: verbatim
20971 #: ../fish/guestfish.pod:751
20972 #, no-wrap
20973 msgid ""
20974 " echo \"|\"\n"
20975 "\n"
20976 msgstr ""
20977
20978 #. type: =head1
20979 #: ../fish/guestfish.pod:753
20980 msgid "HOME DIRECTORIES"
20981 msgstr ""
20982
20983 #. type: textblock
20984 #: ../fish/guestfish.pod:755
20985 msgid ""
20986 "If a parameter starts with the character C<~> then the tilde may be expanded "
20987 "as a home directory path (either C<~> for the current user's home directory, "
20988 "or C<~user> for another user)."
20989 msgstr ""
20990
20991 #. type: textblock
20992 #: ../fish/guestfish.pod:759
20993 msgid ""
20994 "Note that home directory expansion happens for users known I<on the host>, "
20995 "not in the guest filesystem."
20996 msgstr ""
20997
20998 #. type: textblock
20999 #: ../fish/guestfish.pod:762
21000 msgid ""
21001 "To use a literal argument which begins with a tilde, you have to quote it, "
21002 "eg:"
21003 msgstr ""
21004
21005 #. type: verbatim
21006 #: ../fish/guestfish.pod:765
21007 #, no-wrap
21008 msgid ""
21009 " echo \"~\"\n"
21010 "\n"
21011 msgstr ""
21012
21013 #. type: textblock
21014 #: ../fish/guestfish.pod:769
21015 msgid ""
21016 "Libguestfs has some support for Linux guests encrypted according to the "
21017 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
21018 "disk encryption systems used by modern Linux guests.  Currently only "
21019 "LVM-on-LUKS is supported."
21020 msgstr ""
21021
21022 #. type: textblock
21023 #: ../fish/guestfish.pod:774
21024 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
21025 msgstr ""
21026
21027 #. type: verbatim
21028 #: ../fish/guestfish.pod:776
21029 #, no-wrap
21030 msgid ""
21031 " ><fs> vfs-type /dev/sda2\n"
21032 " crypto_LUKS\n"
21033 "\n"
21034 msgstr ""
21035
21036 #. type: textblock
21037 #: ../fish/guestfish.pod:779
21038 msgid ""
21039 "Then open those devices using L</luks-open>.  This creates a device-mapper "
21040 "device called C</dev/mapper/luksdev>."
21041 msgstr ""
21042
21043 #. type: verbatim
21044 #: ../fish/guestfish.pod:782
21045 #, no-wrap
21046 msgid ""
21047 " ><fs> luks-open /dev/sda2 luksdev\n"
21048 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
21049 "\n"
21050 msgstr ""
21051
21052 #. type: textblock
21053 #: ../fish/guestfish.pod:785
21054 msgid ""
21055 "Finally you have to tell LVM to scan for volume groups on the newly created "
21056 "mapper device:"
21057 msgstr ""
21058
21059 #. type: verbatim
21060 #: ../fish/guestfish.pod:788
21061 #, no-wrap
21062 msgid ""
21063 " vgscan\n"
21064 " vg-activate-all true\n"
21065 "\n"
21066 msgstr ""
21067
21068 #. type: textblock
21069 #: ../fish/guestfish.pod:791
21070 msgid "The logical volume(s) can now be mounted in the usual way."
21071 msgstr ""
21072
21073 #. type: textblock
21074 #: ../fish/guestfish.pod:793
21075 msgid ""
21076 "Before closing a LUKS device you must unmount any logical volumes on it and "
21077 "deactivate the volume groups by calling C<vg-activate false VG> on each "
21078 "one.  Then you can close the mapper device:"
21079 msgstr ""
21080
21081 #. type: verbatim
21082 #: ../fish/guestfish.pod:797
21083 #, no-wrap
21084 msgid ""
21085 " vg-activate false /dev/VG\n"
21086 " luks-close /dev/mapper/luksdev\n"
21087 "\n"
21088 msgstr ""
21089
21090 #. type: =head1
21091 #: ../fish/guestfish.pod:800
21092 msgid "WINDOWS PATHS"
21093 msgstr ""
21094
21095 #. type: textblock
21096 #: ../fish/guestfish.pod:802
21097 msgid ""
21098 "If a path is prefixed with C<win:> then you can use Windows-style drive "
21099 "letters and paths (with some limitations).  The following commands are "
21100 "equivalent:"
21101 msgstr ""
21102
21103 #. type: verbatim
21104 #: ../fish/guestfish.pod:806
21105 #, no-wrap
21106 msgid ""
21107 " file /WINDOWS/system32/config/system.LOG\n"
21108 "\n"
21109 msgstr ""
21110
21111 #. type: verbatim
21112 #: ../fish/guestfish.pod:808
21113 #, no-wrap
21114 msgid ""
21115 " file win:\\windows\\system32\\config\\system.log\n"
21116 "\n"
21117 msgstr ""
21118
21119 #. type: verbatim
21120 #: ../fish/guestfish.pod:810
21121 #, no-wrap
21122 msgid ""
21123 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
21124 "\n"
21125 msgstr ""
21126
21127 #. type: textblock
21128 #: ../fish/guestfish.pod:812
21129 msgid ""
21130 "The parameter is rewritten \"behind the scenes\" by looking up the position "
21131 "where the drive is mounted, prepending that to the path, changing all "
21132 "backslash characters to forward slash, then resolving the result using "
21133 "L</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
21134 "then the parameter might be rewritten like this:"
21135 msgstr ""
21136
21137 #. type: verbatim
21138 #: ../fish/guestfish.pod:818
21139 #, no-wrap
21140 msgid ""
21141 " win:e:\\foo\\bar => /e/FOO/bar\n"
21142 "\n"
21143 msgstr ""
21144
21145 #. type: textblock
21146 #: ../fish/guestfish.pod:820
21147 msgid "This only works in argument positions that expect a path."
21148 msgstr ""
21149
21150 #. type: =head1
21151 #: ../fish/guestfish.pod:822
21152 msgid "UPLOADING AND DOWNLOADING FILES"
21153 msgstr ""
21154
21155 #. type: textblock
21156 #: ../fish/guestfish.pod:824
21157 msgid ""
21158 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
21159 "others which upload from or download to a local file, you can use the "
21160 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
21161 msgstr ""
21162
21163 #. type: verbatim
21164 #: ../fish/guestfish.pod:828
21165 #, no-wrap
21166 msgid ""
21167 " upload - /foo\n"
21168 "\n"
21169 msgstr ""
21170
21171 #. type: textblock
21172 #: ../fish/guestfish.pod:830
21173 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
21174 msgstr ""
21175
21176 #. type: verbatim
21177 #: ../fish/guestfish.pod:833
21178 #, no-wrap
21179 msgid ""
21180 " tar-out /etc - | tar tf -\n"
21181 "\n"
21182 msgstr ""
21183
21184 #. type: textblock
21185 #: ../fish/guestfish.pod:835
21186 msgid ""
21187 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21188 "command (see L</PIPES>)."
21189 msgstr ""
21190
21191 #. type: textblock
21192 #: ../fish/guestfish.pod:838
21193 msgid ""
21194 "When using C<-> to read from stdin, the input is read up to the end of "
21195 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21196 "some arbitrary end marker:"
21197 msgstr ""
21198
21199 #. type: verbatim
21200 #: ../fish/guestfish.pod:842
21201 #, no-wrap
21202 msgid ""
21203 " upload -<<END /foo\n"
21204 " input line 1\n"
21205 " input line 2\n"
21206 " input line 3\n"
21207 " END\n"
21208 "\n"
21209 msgstr ""
21210
21211 #. type: textblock
21212 #: ../fish/guestfish.pod:848
21213 msgid ""
21214 "Any string of characters can be used instead of C<END>.  The end marker must "
21215 "appear on a line of its own, without any preceeding or following characters "
21216 "(not even spaces)."
21217 msgstr ""
21218
21219 #. type: textblock
21220 #: ../fish/guestfish.pod:852
21221 msgid ""
21222 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21223 "upload local files (so-called \"FileIn\" parameters in the generator)."
21224 msgstr ""
21225
21226 #. type: =head1
21227 #: ../fish/guestfish.pod:855
21228 msgid "EXIT ON ERROR BEHAVIOUR"
21229 msgstr ""
21230
21231 #. type: textblock
21232 #: ../fish/guestfish.pod:857
21233 msgid ""
21234 "By default, guestfish will ignore any errors when in interactive mode "
21235 "(ie. taking commands from a human over a tty), and will exit on the first "
21236 "error in non-interactive mode (scripts, commands given on the command line)."
21237 msgstr ""
21238
21239 #. type: textblock
21240 #: ../fish/guestfish.pod:862
21241 msgid ""
21242 "If you prefix a command with a I<-> character, then that command will not "
21243 "cause guestfish to exit, even if that (one) command returns an error."
21244 msgstr ""
21245
21246 #. type: =head1
21247 #: ../fish/guestfish.pod:866
21248 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21249 msgstr ""
21250
21251 #. type: textblock
21252 #: ../fish/guestfish.pod:868
21253 msgid ""
21254 "Guestfish can be remote-controlled over a socket.  This is useful "
21255 "particularly in shell scripts where you want to make several different "
21256 "changes to a filesystem, but you don't want the overhead of starting up a "
21257 "guestfish process each time."
21258 msgstr ""
21259
21260 #. type: textblock
21261 #: ../fish/guestfish.pod:873
21262 msgid "Start a guestfish server process using:"
21263 msgstr ""
21264
21265 #. type: verbatim
21266 #: ../fish/guestfish.pod:875
21267 #, no-wrap
21268 msgid ""
21269 " eval \"`guestfish --listen`\"\n"
21270 "\n"
21271 msgstr ""
21272
21273 #. type: textblock
21274 #: ../fish/guestfish.pod:877
21275 msgid "and then send it commands by doing:"
21276 msgstr ""
21277
21278 #. type: verbatim
21279 #: ../fish/guestfish.pod:879
21280 #, no-wrap
21281 msgid ""
21282 " guestfish --remote cmd [...]\n"
21283 "\n"
21284 msgstr ""
21285
21286 #. type: textblock
21287 #: ../fish/guestfish.pod:881
21288 msgid "To cause the server to exit, send it the exit command:"
21289 msgstr ""
21290
21291 #. type: verbatim
21292 #: ../fish/guestfish.pod:883
21293 #, no-wrap
21294 msgid ""
21295 " guestfish --remote exit\n"
21296 "\n"
21297 msgstr ""
21298
21299 #. type: textblock
21300 #: ../fish/guestfish.pod:885
21301 msgid ""
21302 "Note that the server will normally exit if there is an error in a command.  "
21303 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21304 "BEHAVIOUR>."
21305 msgstr ""
21306
21307 #. type: =head2
21308 #: ../fish/guestfish.pod:889
21309 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21310 msgstr ""
21311
21312 #. type: textblock
21313 #: ../fish/guestfish.pod:891
21314 msgid ""
21315 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21316 "is how the I<--remote> option knows where to send the commands.  You can "
21317 "have several guestfish listener processes running using:"
21318 msgstr ""
21319
21320 #. type: verbatim
21321 #: ../fish/guestfish.pod:895
21322 #, no-wrap
21323 msgid ""
21324 " eval \"`guestfish --listen`\"\n"
21325 " pid1=$GUESTFISH_PID\n"
21326 " eval \"`guestfish --listen`\"\n"
21327 " pid2=$GUESTFISH_PID\n"
21328 " ...\n"
21329 " guestfish --remote=$pid1 cmd\n"
21330 " guestfish --remote=$pid2 cmd\n"
21331 "\n"
21332 msgstr ""
21333
21334 #. type: =head2
21335 #: ../fish/guestfish.pod:903
21336 msgid "REMOTE CONTROL AND CSH"
21337 msgstr ""
21338
21339 #. type: textblock
21340 #: ../fish/guestfish.pod:905
21341 msgid ""
21342 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21343 "option:"
21344 msgstr ""
21345
21346 #. type: verbatim
21347 #: ../fish/guestfish.pod:908
21348 #, no-wrap
21349 msgid ""
21350 " eval \"`guestfish --listen --csh`\"\n"
21351 "\n"
21352 msgstr ""
21353
21354 #. type: =head2
21355 #: ../fish/guestfish.pod:910
21356 msgid "REMOTE CONTROL DETAILS"
21357 msgstr ""
21358
21359 #. type: textblock
21360 #: ../fish/guestfish.pod:912
21361 msgid ""
21362 "Remote control happens over a Unix domain socket called "
21363 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
21364 "of the process, and C<$PID> is the process ID of the server."
21365 msgstr ""
21366
21367 #. type: textblock
21368 #: ../fish/guestfish.pod:916
21369 msgid "Guestfish client and server versions must match exactly."
21370 msgstr ""
21371
21372 #. type: =head1
21373 #: ../fish/guestfish.pod:918
21374 msgid "PREPARED DISK IMAGES"
21375 msgstr ""
21376
21377 #. type: textblock
21378 #: ../fish/guestfish.pod:920
21379 msgid ""
21380 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21381 "preformatted disk images that guestfish can make for you to save typing.  "
21382 "This is particularly useful for testing purposes.  This option is used "
21383 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21384 "can be mixed with I<-a>)."
21385 msgstr ""
21386
21387 #. type: textblock
21388 #: ../fish/guestfish.pod:926
21389 msgid ""
21390 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21391 "the second and so on.  Existing files in the current directory are "
21392 "I<overwritten>."
21393 msgstr ""
21394
21395 #. type: textblock
21396 #: ../fish/guestfish.pod:930
21397 msgid ""
21398 "The type briefly describes how the disk should be sized, partitioned, how "
21399 "filesystem(s) should be created, and how content should be added.  "
21400 "Optionally the type can be followed by extra parameters, separated by C<:> "
21401 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
21402 "sparsely-allocated disk, containing a single partition, with the partition "
21403 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
21404 "on a 1GB disk instead."
21405 msgstr ""
21406
21407 #. type: textblock
21408 #: ../fish/guestfish.pod:938
21409 msgid "To list the available types and any extra parameters they take, run:"
21410 msgstr ""
21411
21412 #. type: textblock
21413 #: ../fish/guestfish.pod:942
21414 msgid ""
21415 "Note that the prepared filesystem is not mounted.  You would usually have to "
21416 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21417 msgstr ""
21418
21419 #. type: textblock
21420 #: ../fish/guestfish.pod:946
21421 msgid ""
21422 "If any I<-N> or I<--new> options are given, the guest is automatically "
21423 "launched."
21424 msgstr ""
21425
21426 #. type: textblock
21427 #: ../fish/guestfish.pod:951
21428 msgid "Create a 100MB disk with an ext4-formatted partition:"
21429 msgstr ""
21430
21431 #. type: verbatim
21432 #: ../fish/guestfish.pod:953
21433 #, no-wrap
21434 msgid ""
21435 " guestfish -N fs:ext4\n"
21436 "\n"
21437 msgstr ""
21438
21439 #. type: textblock
21440 #: ../fish/guestfish.pod:955
21441 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21442 msgstr ""
21443
21444 #. type: verbatim
21445 #: ../fish/guestfish.pod:957
21446 #, no-wrap
21447 msgid ""
21448 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21449 "\n"
21450 msgstr ""
21451
21452 #. type: textblock
21453 #: ../fish/guestfish.pod:959
21454 msgid "Create a blank 200MB disk:"
21455 msgstr ""
21456
21457 #. type: verbatim
21458 #: ../fish/guestfish.pod:961
21459 #, no-wrap
21460 msgid ""
21461 " guestfish -N disk:200M\n"
21462 "\n"
21463 msgstr ""
21464
21465 #. type: =head1
21466 #: ../fish/guestfish.pod:963
21467 msgid "PROGRESS BARS"
21468 msgstr ""
21469
21470 #. type: textblock
21471 #: ../fish/guestfish.pod:965
21472 msgid ""
21473 "Some (not all) long-running commands send progress notification messages as "
21474 "they are running.  Guestfish turns these messages into progress bars."
21475 msgstr ""
21476
21477 #. type: textblock
21478 #: ../fish/guestfish.pod:969
21479 msgid ""
21480 "When a command that supports progress bars takes longer than two seconds to "
21481 "run, and if progress bars are enabled, then you will see one appearing below "
21482 "the command:"
21483 msgstr ""
21484
21485 #. type: verbatim
21486 #: ../fish/guestfish.pod:973
21487 #, no-wrap
21488 msgid ""
21489 " ><fs> copy-size /large-file /another-file 2048M\n"
21490 " / 10% [#####-----------------------------------------] 00:30\n"
21491 "\n"
21492 msgstr ""
21493
21494 #. type: textblock
21495 #: ../fish/guestfish.pod:976
21496 msgid ""
21497 "The spinner on the left hand side moves round once for every progress "
21498 "notification received from the backend.  This is a (reasonably) golden "
21499 "assurance that the command is \"doing something\" even if the progress bar "
21500 "is not moving, because the command is able to send the progress "
21501 "notifications.  When the bar reaches 100% and the command finishes, the "
21502 "spinner disappears."
21503 msgstr ""
21504
21505 #. type: textblock
21506 #: ../fish/guestfish.pod:983
21507 msgid ""
21508 "Progress bars are enabled by default when guestfish is used interactively.  "
21509 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21510 "and you can disable them completely using I<--no-progress-bars>."
21511 msgstr ""
21512
21513 #. type: =head1
21514 #: ../fish/guestfish.pod:988
21515 msgid "GUESTFISH COMMANDS"
21516 msgstr ""
21517
21518 #. type: textblock
21519 #: ../fish/guestfish.pod:990
21520 msgid ""
21521 "The commands in this section are guestfish convenience commands, in other "
21522 "words, they are not part of the L<guestfs(3)> API."
21523 msgstr ""
21524
21525 #. type: =head2
21526 #: ../fish/guestfish.pod:993
21527 msgid "help"
21528 msgstr ""
21529
21530 #. type: verbatim
21531 #: ../fish/guestfish.pod:995
21532 #, no-wrap
21533 msgid ""
21534 " help\n"
21535 " help cmd\n"
21536 "\n"
21537 msgstr ""
21538
21539 #. type: textblock
21540 #: ../fish/guestfish.pod:998
21541 msgid "Without any parameter, this provides general help."
21542 msgstr ""
21543
21544 #. type: textblock
21545 #: ../fish/guestfish.pod:1000
21546 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21547 msgstr ""
21548
21549 #. type: =head2
21550 #: ../fish/guestfish.pod:1002
21551 msgid "quit | exit"
21552 msgstr ""
21553
21554 #. type: textblock
21555 #: ../fish/guestfish.pod:1004
21556 msgid "This exits guestfish.  You can also use C<^D> key."
21557 msgstr ""
21558
21559 #. type: textblock
21560 #: ../fish/guestfish.pod:1006
21561 msgid "@FISH_COMMANDS@"
21562 msgstr ""
21563
21564 #. type: =head1
21565 #: ../fish/guestfish.pod:1008
21566 msgid "COMMANDS"
21567 msgstr ""
21568
21569 #. type: =head1
21570 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
21571 msgid "EXIT CODE"
21572 msgstr ""
21573
21574 #. type: textblock
21575 #: ../fish/guestfish.pod:1014
21576 msgid ""
21577 "guestfish returns 0 if the commands completed without error, or 1 if there "
21578 "was an error."
21579 msgstr ""
21580
21581 #. type: =item
21582 #: ../fish/guestfish.pod:1021
21583 msgid "EDITOR"
21584 msgstr ""
21585
21586 #. type: textblock
21587 #: ../fish/guestfish.pod:1023
21588 msgid ""
21589 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21590 "C<vi>."
21591 msgstr ""
21592
21593 #. type: =item
21594 #: ../fish/guestfish.pod:1026
21595 msgid "GUESTFISH_DISPLAY_IMAGE"
21596 msgstr ""
21597
21598 #. type: textblock
21599 #: ../fish/guestfish.pod:1028
21600 msgid ""
21601 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
21602 "If not set, it uses L<display(1)>."
21603 msgstr ""
21604
21605 #. type: =item
21606 #: ../fish/guestfish.pod:1031
21607 msgid "GUESTFISH_PID"
21608 msgstr ""
21609
21610 #. type: textblock
21611 #: ../fish/guestfish.pod:1033
21612 msgid ""
21613 "Used with the I<--remote> option to specify the remote guestfish process to "
21614 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21615 msgstr ""
21616
21617 #. type: =item
21618 #: ../fish/guestfish.pod:1037
21619 msgid "HEXEDITOR"
21620 msgstr ""
21621
21622 #. type: textblock
21623 #: ../fish/guestfish.pod:1039
21624 msgid ""
21625 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21626 "not specified, the external L<hexedit(1)> program is used."
21627 msgstr ""
21628
21629 #. type: =item
21630 #: ../fish/guestfish.pod:1043
21631 msgid "HOME"
21632 msgstr ""
21633
21634 #. type: textblock
21635 #: ../fish/guestfish.pod:1045
21636 msgid ""
21637 "If compiled with GNU readline support, various files in the home directory "
21638 "can be used.  See L</FILES>."
21639 msgstr ""
21640
21641 #. type: textblock
21642 #: ../fish/guestfish.pod:1054
21643 msgid ""
21644 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21645 "effect as using the B<-v> option."
21646 msgstr ""
21647
21648 #. type: textblock
21649 #: ../fish/guestfish.pod:1066
21650 msgid ""
21651 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21652 "the discussion of paths in L<guestfs(3)>."
21653 msgstr ""
21654
21655 #. type: textblock
21656 #: ../fish/guestfish.pod:1077
21657 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21658 msgstr ""
21659
21660 #. type: =item
21661 #: ../fish/guestfish.pod:1079
21662 msgid "PAGER"
21663 msgstr ""
21664
21665 #. type: textblock
21666 #: ../fish/guestfish.pod:1081
21667 msgid ""
21668 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21669 "C<more>."
21670 msgstr ""
21671
21672 #. type: =head1
21673 #: ../fish/guestfish.pod:1097 ../fuse/guestmount.pod:264
21674 msgid "FILES"
21675 msgstr ""
21676
21677 #. type: =item
21678 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:268
21679 msgid "$HOME/.libguestfs-tools.rc"
21680 msgstr ""
21681
21682 #. type: =item
21683 #: ../fish/guestfish.pod:1103 ../fuse/guestmount.pod:270
21684 msgid "/etc/libguestfs-tools.conf"
21685 msgstr ""
21686
21687 #. type: textblock
21688 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:272
21689 msgid ""
21690 "This configuration file controls the default read-only or read-write mode "
21691 "(I<--ro> or I<--rw>)."
21692 msgstr ""
21693
21694 #. type: textblock
21695 #: ../fish/guestfish.pod:1108
21696 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21697 msgstr ""
21698
21699 #. type: =item
21700 #: ../fish/guestfish.pod:1110
21701 msgid "$HOME/.guestfish"
21702 msgstr ""
21703
21704 #. type: textblock
21705 #: ../fish/guestfish.pod:1112
21706 msgid ""
21707 "If compiled with GNU readline support, then the command history is saved in "
21708 "this file."
21709 msgstr ""
21710
21711 #. type: =item
21712 #: ../fish/guestfish.pod:1115
21713 msgid "$HOME/.inputrc"
21714 msgstr ""
21715
21716 #. type: =item
21717 #: ../fish/guestfish.pod:1117
21718 msgid "/etc/inputrc"
21719 msgstr ""
21720
21721 #. type: textblock
21722 #: ../fish/guestfish.pod:1119
21723 msgid ""
21724 "If compiled with GNU readline support, then these files can be used to "
21725 "configure readline.  For further information, please see "
21726 "L<readline(3)/INITIALIZATION FILE>."
21727 msgstr ""
21728
21729 #. type: textblock
21730 #: ../fish/guestfish.pod:1123
21731 msgid "To write rules which only apply to guestfish, use:"
21732 msgstr ""
21733
21734 #. type: verbatim
21735 #: ../fish/guestfish.pod:1125
21736 #, no-wrap
21737 msgid ""
21738 " $if guestfish\n"
21739 " ...\n"
21740 " $endif\n"
21741 "\n"
21742 msgstr ""
21743
21744 #. type: textblock
21745 #: ../fish/guestfish.pod:1129
21746 msgid ""
21747 "Variables that you can set in inputrc that change the behaviour of guestfish "
21748 "in useful ways include:"
21749 msgstr ""
21750
21751 #. type: =item
21752 #: ../fish/guestfish.pod:1134
21753 msgid "completion-ignore-case (default: on)"
21754 msgstr ""
21755
21756 #. type: textblock
21757 #: ../fish/guestfish.pod:1136
21758 msgid ""
21759 "By default, guestfish will ignore case when tab-completing paths on the "
21760 "disk.  Use:"
21761 msgstr ""
21762
21763 #. type: verbatim
21764 #: ../fish/guestfish.pod:1139
21765 #, no-wrap
21766 msgid ""
21767 " set completion-ignore-case off\n"
21768 "\n"
21769 msgstr ""
21770
21771 #. type: textblock
21772 #: ../fish/guestfish.pod:1141
21773 msgid "to make guestfish case sensitive."
21774 msgstr ""
21775
21776 #. type: =item
21777 #: ../fish/guestfish.pod:1145
21778 msgid "test1.img"
21779 msgstr ""
21780
21781 #. type: =item
21782 #: ../fish/guestfish.pod:1147
21783 msgid "test2.img (etc)"
21784 msgstr ""
21785
21786 #. type: textblock
21787 #: ../fish/guestfish.pod:1149
21788 msgid ""
21789 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21790 "will be created in the file C<test1.img> in the current directory.  The "
21791 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21792 "the same name will be overwritten."
21793 msgstr ""
21794
21795 #. type: textblock
21796 #: ../fish/guestfish.pod:1158
21797 msgid ""
21798 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, "
21799 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
21800 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
21801 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
21802 "L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, "
21803 "L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<display(1)>, L<hexedit(1)>."
21804 msgstr ""
21805
21806 #. type: textblock
21807 #: ../fish/guestfish.pod:1189 ../test-tool/libguestfs-test-tool.pod:102 ../fuse/guestmount.pod:299 ../tools/virt-win-reg.pl:778 ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
21808 msgid ""
21809 "This program is free software; you can redistribute it and/or modify it "
21810 "under the terms of the GNU General Public License as published by the Free "
21811 "Software Foundation; either version 2 of the License, or (at your option) "
21812 "any later version."
21813 msgstr ""
21814
21815 #. type: textblock
21816 #: ../fish/guestfish.pod:1194 ../test-tool/libguestfs-test-tool.pod:107 ../fuse/guestmount.pod:304 ../tools/virt-win-reg.pl:783 ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
21817 msgid ""
21818 "This program is distributed in the hope that it will be useful, but WITHOUT "
21819 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21820 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21821 "more details."
21822 msgstr ""
21823
21824 #. type: textblock
21825 #: ../fish/guestfish.pod:1199 ../test-tool/libguestfs-test-tool.pod:112 ../fuse/guestmount.pod:309 ../tools/virt-win-reg.pl:788 ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
21826 msgid ""
21827 "You should have received a copy of the GNU General Public License along with "
21828 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21829 "Ave, Cambridge, MA 02139, USA."
21830 msgstr ""
21831
21832 #. type: =head2
21833 #: ../fish/guestfish-actions.pod:1
21834 msgid "add-cdrom"
21835 msgstr ""
21836
21837 #. type: verbatim
21838 #: ../fish/guestfish-actions.pod:3
21839 #, no-wrap
21840 msgid ""
21841 " add-cdrom filename\n"
21842 "\n"
21843 msgstr ""
21844
21845 #. type: textblock
21846 #: ../fish/guestfish-actions.pod:15
21847 msgid ""
21848 "This call checks for the existence of C<filename>.  This stops you from "
21849 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21850 "and C<http:> URLs.  To specify those, use the general L</config> call "
21851 "instead."
21852 msgstr ""
21853
21854 #. type: textblock
21855 #: ../fish/guestfish-actions.pod:22
21856 msgid ""
21857 "If you just want to add an ISO file (often you use this as an efficient way "
21858 "to transfer large files into the guest), then you should probably use "
21859 "L</add-drive-ro> instead."
21860 msgstr ""
21861
21862 #. type: =head2
21863 #: ../fish/guestfish-actions.pod:35
21864 msgid "add-domain"
21865 msgstr ""
21866
21867 #. type: =head2
21868 #: ../fish/guestfish-actions.pod:37
21869 msgid "domain"
21870 msgstr ""
21871
21872 #. type: verbatim
21873 #: ../fish/guestfish-actions.pod:39
21874 #, no-wrap
21875 msgid ""
21876 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] "
21877 "[allowuuid:..]\n"
21878 "\n"
21879 msgstr ""
21880
21881 #. type: textblock
21882 #: ../fish/guestfish-actions.pod:41
21883 msgid ""
21884 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21885 "It works by connecting to libvirt, requesting the domain and domain XML from "
21886 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21887 msgstr ""
21888
21889 #. type: textblock
21890 #: ../fish/guestfish-actions.pod:76
21891 msgid ""
21892 "The other optional parameters are passed directly through to "
21893 "L</add-drive-opts>."
21894 msgstr ""
21895
21896 #. type: textblock
21897 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143 ../fish/guestfish-actions.pod:1937 ../fish/guestfish-actions.pod:3103 ../fish/guestfish-actions.pod:3276 ../fish/guestfish-actions.pod:3411
21898 msgid ""
21899 "This command has one or more optional arguments.  See L</OPTIONAL "
21900 "ARGUMENTS>."
21901 msgstr ""
21902
21903 #. type: =head2
21904 #: ../fish/guestfish-actions.pod:81
21905 msgid "add-drive"
21906 msgstr ""
21907
21908 #. type: verbatim
21909 #: ../fish/guestfish-actions.pod:83
21910 #, no-wrap
21911 msgid ""
21912 " add-drive filename\n"
21913 "\n"
21914 msgstr ""
21915
21916 #. type: textblock
21917 #: ../fish/guestfish-actions.pod:85
21918 msgid ""
21919 "This function is the equivalent of calling L</add-drive-opts> with no "
21920 "optional parameters, so the disk is added writable, with the format being "
21921 "detected automatically."
21922 msgstr ""
21923
21924 #. type: textblock
21925 #: ../fish/guestfish-actions.pod:89
21926 msgid ""
21927 "Automatic detection of the format opens you up to a potential security hole "
21928 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21929 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21930 "you should think about replacing calls to this function with calls to "
21931 "L</add-drive-opts>, and specifying the format."
21932 msgstr ""
21933
21934 #. type: =head2
21935 #: ../fish/guestfish-actions.pod:96
21936 msgid "add-drive-opts"
21937 msgstr ""
21938
21939 #. type: =head2
21940 #: ../fish/guestfish-actions.pod:98
21941 msgid "add"
21942 msgstr ""
21943
21944 #. type: verbatim
21945 #: ../fish/guestfish-actions.pod:100
21946 #, no-wrap
21947 msgid ""
21948 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21949 "\n"
21950 msgstr ""
21951
21952 #. type: textblock
21953 #: ../fish/guestfish-actions.pod:127
21954 msgid ""
21955 "This forces the image format.  If you omit this (or use L</add-drive> or "
21956 "L</add-drive-ro>) then the format is automatically detected.  Possible "
21957 "formats include C<raw> and C<qcow2>."
21958 msgstr ""
21959
21960 #. type: textblock
21961 #: ../fish/guestfish-actions.pod:138
21962 msgid ""
21963 "This rarely-used option lets you emulate the behaviour of the deprecated "
21964 "L</add-drive-with-if> call (q.v.)"
21965 msgstr ""
21966
21967 #. type: =head2
21968 #: ../fish/guestfish-actions.pod:145
21969 msgid "add-drive-ro"
21970 msgstr ""
21971
21972 #. type: =head2
21973 #: ../fish/guestfish-actions.pod:147
21974 msgid "add-ro"
21975 msgstr ""
21976
21977 #. type: verbatim
21978 #: ../fish/guestfish-actions.pod:149
21979 #, no-wrap
21980 msgid ""
21981 " add-drive-ro filename\n"
21982 "\n"
21983 msgstr ""
21984
21985 #. type: textblock
21986 #: ../fish/guestfish-actions.pod:151
21987 msgid ""
21988 "This function is the equivalent of calling L</add-drive-opts> with the "
21989 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
21990 "is added read-only, with the format being detected automatically."
21991 msgstr ""
21992
21993 #. type: =head2
21994 #: ../fish/guestfish-actions.pod:156
21995 msgid "add-drive-ro-with-if"
21996 msgstr ""
21997
21998 #. type: verbatim
21999 #: ../fish/guestfish-actions.pod:158
22000 #, no-wrap
22001 msgid ""
22002 " add-drive-ro-with-if filename iface\n"
22003 "\n"
22004 msgstr ""
22005
22006 #. type: textblock
22007 #: ../fish/guestfish-actions.pod:160
22008 msgid ""
22009 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
22010 "interface emulation to use at run time."
22011 msgstr ""
22012
22013 #. type: =head2
22014 #: ../fish/guestfish-actions.pod:170
22015 msgid "add-drive-with-if"
22016 msgstr ""
22017
22018 #. type: verbatim
22019 #: ../fish/guestfish-actions.pod:172
22020 #, no-wrap
22021 msgid ""
22022 " add-drive-with-if filename iface\n"
22023 "\n"
22024 msgstr ""
22025
22026 #. type: textblock
22027 #: ../fish/guestfish-actions.pod:174
22028 msgid ""
22029 "This is the same as L</add-drive> but it allows you to specify the QEMU "
22030 "interface emulation to use at run time."
22031 msgstr ""
22032
22033 #. type: =head2
22034 #: ../fish/guestfish-actions.pod:184
22035 msgid "aug-clear"
22036 msgstr ""
22037
22038 #. type: verbatim
22039 #: ../fish/guestfish-actions.pod:186
22040 #, no-wrap
22041 msgid ""
22042 " aug-clear augpath\n"
22043 "\n"
22044 msgstr ""
22045
22046 #. type: =head2
22047 #: ../fish/guestfish-actions.pod:191
22048 msgid "aug-close"
22049 msgstr ""
22050
22051 #. type: verbatim
22052 #: ../fish/guestfish-actions.pod:193
22053 #, no-wrap
22054 msgid ""
22055 " aug-close\n"
22056 "\n"
22057 msgstr ""
22058
22059 #. type: textblock
22060 #: ../fish/guestfish-actions.pod:195
22061 msgid ""
22062 "Close the current Augeas handle and free up any resources used by it.  After "
22063 "calling this, you have to call L</aug-init> again before you can use any "
22064 "other Augeas functions."
22065 msgstr ""
22066
22067 #. type: =head2
22068 #: ../fish/guestfish-actions.pod:200
22069 msgid "aug-defnode"
22070 msgstr ""
22071
22072 #. type: verbatim
22073 #: ../fish/guestfish-actions.pod:202
22074 #, no-wrap
22075 msgid ""
22076 " aug-defnode name expr val\n"
22077 "\n"
22078 msgstr ""
22079
22080 #. type: textblock
22081 #: ../fish/guestfish-actions.pod:207
22082 msgid ""
22083 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
22084 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
22085 "containing that single node."
22086 msgstr ""
22087
22088 #. type: =head2
22089 #: ../fish/guestfish-actions.pod:215
22090 msgid "aug-defvar"
22091 msgstr ""
22092
22093 #. type: verbatim
22094 #: ../fish/guestfish-actions.pod:217
22095 #, no-wrap
22096 msgid ""
22097 " aug-defvar name expr\n"
22098 "\n"
22099 msgstr ""
22100
22101 #. type: =head2
22102 #: ../fish/guestfish-actions.pod:226
22103 msgid "aug-get"
22104 msgstr ""
22105
22106 #. type: verbatim
22107 #: ../fish/guestfish-actions.pod:228
22108 #, no-wrap
22109 msgid ""
22110 " aug-get augpath\n"
22111 "\n"
22112 msgstr ""
22113
22114 #. type: =head2
22115 #: ../fish/guestfish-actions.pod:233
22116 msgid "aug-init"
22117 msgstr ""
22118
22119 #. type: verbatim
22120 #: ../fish/guestfish-actions.pod:235
22121 #, no-wrap
22122 msgid ""
22123 " aug-init root flags\n"
22124 "\n"
22125 msgstr ""
22126
22127 #. type: textblock
22128 #: ../fish/guestfish-actions.pod:241
22129 msgid "You must call this before using any other L</aug-*> commands."
22130 msgstr ""
22131
22132 #. type: textblock
22133 #: ../fish/guestfish-actions.pod:276
22134 msgid "Do not load the tree in L</aug-init>."
22135 msgstr ""
22136
22137 #. type: textblock
22138 #: ../fish/guestfish-actions.pod:280
22139 msgid "To close the handle, you can call L</aug-close>."
22140 msgstr ""
22141
22142 #. type: =head2
22143 #: ../fish/guestfish-actions.pod:284
22144 msgid "aug-insert"
22145 msgstr ""
22146
22147 #. type: verbatim
22148 #: ../fish/guestfish-actions.pod:286
22149 #, no-wrap
22150 msgid ""
22151 " aug-insert augpath label true|false\n"
22152 "\n"
22153 msgstr ""
22154
22155 #. type: =head2
22156 #: ../fish/guestfish-actions.pod:296
22157 msgid "aug-load"
22158 msgstr ""
22159
22160 #. type: verbatim
22161 #: ../fish/guestfish-actions.pod:298
22162 #, no-wrap
22163 msgid ""
22164 " aug-load\n"
22165 "\n"
22166 msgstr ""
22167
22168 #. type: =head2
22169 #: ../fish/guestfish-actions.pod:305
22170 msgid "aug-ls"
22171 msgstr ""
22172
22173 #. type: verbatim
22174 #: ../fish/guestfish-actions.pod:307
22175 #, no-wrap
22176 msgid ""
22177 " aug-ls augpath\n"
22178 "\n"
22179 msgstr ""
22180
22181 #. type: textblock
22182 #: ../fish/guestfish-actions.pod:309
22183 msgid ""
22184 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22185 "resulting nodes into alphabetical order."
22186 msgstr ""
22187
22188 #. type: =head2
22189 #: ../fish/guestfish-actions.pod:312
22190 msgid "aug-match"
22191 msgstr ""
22192
22193 #. type: verbatim
22194 #: ../fish/guestfish-actions.pod:314
22195 #, no-wrap
22196 msgid ""
22197 " aug-match augpath\n"
22198 "\n"
22199 msgstr ""
22200
22201 #. type: =head2
22202 #: ../fish/guestfish-actions.pod:320
22203 msgid "aug-mv"
22204 msgstr ""
22205
22206 #. type: verbatim
22207 #: ../fish/guestfish-actions.pod:322
22208 #, no-wrap
22209 msgid ""
22210 " aug-mv src dest\n"
22211 "\n"
22212 msgstr ""
22213
22214 #. type: =head2
22215 #: ../fish/guestfish-actions.pod:327
22216 msgid "aug-rm"
22217 msgstr ""
22218
22219 #. type: verbatim
22220 #: ../fish/guestfish-actions.pod:329
22221 #, no-wrap
22222 msgid ""
22223 " aug-rm augpath\n"
22224 "\n"
22225 msgstr ""
22226
22227 #. type: =head2
22228 #: ../fish/guestfish-actions.pod:335
22229 msgid "aug-save"
22230 msgstr ""
22231
22232 #. type: verbatim
22233 #: ../fish/guestfish-actions.pod:337
22234 #, no-wrap
22235 msgid ""
22236 " aug-save\n"
22237 "\n"
22238 msgstr ""
22239
22240 #. type: textblock
22241 #: ../fish/guestfish-actions.pod:341
22242 msgid ""
22243 "The flags which were passed to L</aug-init> affect exactly how files are "
22244 "saved."
22245 msgstr ""
22246
22247 #. type: =head2
22248 #: ../fish/guestfish-actions.pod:344
22249 msgid "aug-set"
22250 msgstr ""
22251
22252 #. type: verbatim
22253 #: ../fish/guestfish-actions.pod:346
22254 #, no-wrap
22255 msgid ""
22256 " aug-set augpath val\n"
22257 "\n"
22258 msgstr ""
22259
22260 #. type: textblock
22261 #: ../fish/guestfish-actions.pod:350
22262 msgid ""
22263 "In the Augeas API, it is possible to clear a node by setting the value to "
22264 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22265 "this call.  Instead you must use the L</aug-clear> call."
22266 msgstr ""
22267
22268 #. type: =head2
22269 #: ../fish/guestfish-actions.pod:355
22270 msgid "available"
22271 msgstr ""
22272
22273 #. type: verbatim
22274 #: ../fish/guestfish-actions.pod:357
22275 #, no-wrap
22276 msgid ""
22277 " available 'groups ...'\n"
22278 "\n"
22279 msgstr ""
22280
22281 #. type: textblock
22282 #: ../fish/guestfish-actions.pod:363
22283 msgid ""
22284 "The libguestfs groups, and the functions that those groups correspond to, "
22285 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22286 "runtime by calling L</available-all-groups>."
22287 msgstr ""
22288
22289 #. type: textblock
22290 #: ../fish/guestfish-actions.pod:387
22291 msgid "You must call L</launch> before calling this function."
22292 msgstr ""
22293
22294 #. type: textblock
22295 #: ../fish/guestfish-actions.pod:409
22296 msgid ""
22297 "This call was added in version C<1.0.80>.  In previous versions of "
22298 "libguestfs all you could do would be to speculatively execute a command to "
22299 "find out if the daemon implemented it.  See also L</version>."
22300 msgstr ""
22301
22302 #. type: =head2
22303 #: ../fish/guestfish-actions.pod:416
22304 msgid "available-all-groups"
22305 msgstr ""
22306
22307 #. type: verbatim
22308 #: ../fish/guestfish-actions.pod:418
22309 #, no-wrap
22310 msgid ""
22311 " available-all-groups\n"
22312 "\n"
22313 msgstr ""
22314
22315 #. type: textblock
22316 #: ../fish/guestfish-actions.pod:420
22317 msgid ""
22318 "This command returns a list of all optional groups that this daemon knows "
22319 "about.  Note this returns both supported and unsupported groups.  To find "
22320 "out which ones the daemon can actually support you have to call "
22321 "L</available> on each member of the returned list."
22322 msgstr ""
22323
22324 #. type: textblock
22325 #: ../fish/guestfish-actions.pod:426
22326 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22327 msgstr ""
22328
22329 #. type: =head2
22330 #: ../fish/guestfish-actions.pod:428
22331 msgid "base64-in"
22332 msgstr ""
22333
22334 #. type: verbatim
22335 #: ../fish/guestfish-actions.pod:430
22336 #, no-wrap
22337 msgid ""
22338 " base64-in (base64file|-) filename\n"
22339 "\n"
22340 msgstr ""
22341
22342 #. type: textblock
22343 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444 ../fish/guestfish-actions.pod:668 ../fish/guestfish-actions.pod:837 ../fish/guestfish-actions.pod:856 ../fish/guestfish-actions.pod:1230 ../fish/guestfish-actions.pod:4606 ../fish/guestfish-actions.pod:4618 ../fish/guestfish-actions.pod:4629 ../fish/guestfish-actions.pod:4640 ../fish/guestfish-actions.pod:4692 ../fish/guestfish-actions.pod:4701 ../fish/guestfish-actions.pod:4755 ../fish/guestfish-actions.pod:4778
22344 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22345 msgstr ""
22346
22347 #. type: =head2
22348 #: ../fish/guestfish-actions.pod:437
22349 msgid "base64-out"
22350 msgstr ""
22351
22352 #. type: verbatim
22353 #: ../fish/guestfish-actions.pod:439
22354 #, no-wrap
22355 msgid ""
22356 " base64-out filename (base64file|-)\n"
22357 "\n"
22358 msgstr ""
22359
22360 #. type: =head2
22361 #: ../fish/guestfish-actions.pod:446
22362 msgid "blockdev-flushbufs"
22363 msgstr ""
22364
22365 #. type: verbatim
22366 #: ../fish/guestfish-actions.pod:448
22367 #, no-wrap
22368 msgid ""
22369 " blockdev-flushbufs device\n"
22370 "\n"
22371 msgstr ""
22372
22373 #. type: =head2
22374 #: ../fish/guestfish-actions.pod:455
22375 msgid "blockdev-getbsz"
22376 msgstr ""
22377
22378 #. type: verbatim
22379 #: ../fish/guestfish-actions.pod:457
22380 #, no-wrap
22381 msgid ""
22382 " blockdev-getbsz device\n"
22383 "\n"
22384 msgstr ""
22385
22386 #. type: =head2
22387 #: ../fish/guestfish-actions.pod:466
22388 msgid "blockdev-getro"
22389 msgstr ""
22390
22391 #. type: verbatim
22392 #: ../fish/guestfish-actions.pod:468
22393 #, no-wrap
22394 msgid ""
22395 " blockdev-getro device\n"
22396 "\n"
22397 msgstr ""
22398
22399 #. type: =head2
22400 #: ../fish/guestfish-actions.pod:475
22401 msgid "blockdev-getsize64"
22402 msgstr ""
22403
22404 #. type: verbatim
22405 #: ../fish/guestfish-actions.pod:477
22406 #, no-wrap
22407 msgid ""
22408 " blockdev-getsize64 device\n"
22409 "\n"
22410 msgstr ""
22411
22412 #. type: textblock
22413 #: ../fish/guestfish-actions.pod:481
22414 msgid "See also L</blockdev-getsz>."
22415 msgstr ""
22416
22417 #. type: =head2
22418 #: ../fish/guestfish-actions.pod:485
22419 msgid "blockdev-getss"
22420 msgstr ""
22421
22422 #. type: verbatim
22423 #: ../fish/guestfish-actions.pod:487
22424 #, no-wrap
22425 msgid ""
22426 " blockdev-getss device\n"
22427 "\n"
22428 msgstr ""
22429
22430 #. type: textblock
22431 #: ../fish/guestfish-actions.pod:492
22432 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22433 msgstr ""
22434
22435 #. type: =head2
22436 #: ../fish/guestfish-actions.pod:497
22437 msgid "blockdev-getsz"
22438 msgstr ""
22439
22440 #. type: verbatim
22441 #: ../fish/guestfish-actions.pod:499
22442 #, no-wrap
22443 msgid ""
22444 " blockdev-getsz device\n"
22445 "\n"
22446 msgstr ""
22447
22448 #. type: textblock
22449 #: ../fish/guestfish-actions.pod:504
22450 msgid ""
22451 "See also L</blockdev-getss> for the real sector size of the device, and "
22452 "L</blockdev-getsize64> for the more useful I<size in bytes>."
22453 msgstr ""
22454
22455 #. type: =head2
22456 #: ../fish/guestfish-actions.pod:510
22457 msgid "blockdev-rereadpt"
22458 msgstr ""
22459
22460 #. type: verbatim
22461 #: ../fish/guestfish-actions.pod:512
22462 #, no-wrap
22463 msgid ""
22464 " blockdev-rereadpt device\n"
22465 "\n"
22466 msgstr ""
22467
22468 #. type: =head2
22469 #: ../fish/guestfish-actions.pod:518
22470 msgid "blockdev-setbsz"
22471 msgstr ""
22472
22473 #. type: verbatim
22474 #: ../fish/guestfish-actions.pod:520
22475 #, no-wrap
22476 msgid ""
22477 " blockdev-setbsz device blocksize\n"
22478 "\n"
22479 msgstr ""
22480
22481 #. type: =head2
22482 #: ../fish/guestfish-actions.pod:529
22483 msgid "blockdev-setro"
22484 msgstr ""
22485
22486 #. type: verbatim
22487 #: ../fish/guestfish-actions.pod:531
22488 #, no-wrap
22489 msgid ""
22490 " blockdev-setro device\n"
22491 "\n"
22492 msgstr ""
22493
22494 #. type: =head2
22495 #: ../fish/guestfish-actions.pod:537
22496 msgid "blockdev-setrw"
22497 msgstr ""
22498
22499 #. type: verbatim
22500 #: ../fish/guestfish-actions.pod:539
22501 #, no-wrap
22502 msgid ""
22503 " blockdev-setrw device\n"
22504 "\n"
22505 msgstr ""
22506
22507 #. type: =head2
22508 #: ../fish/guestfish-actions.pod:545
22509 msgid "case-sensitive-path"
22510 msgstr ""
22511
22512 #. type: verbatim
22513 #: ../fish/guestfish-actions.pod:547
22514 #, no-wrap
22515 msgid ""
22516 " case-sensitive-path path\n"
22517 "\n"
22518 msgstr ""
22519
22520 #. type: textblock
22521 #: ../fish/guestfish-actions.pod:571
22522 msgid ""
22523 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
22524 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
22525 "how the directories were originally created under Windows)."
22526 msgstr ""
22527
22528 #. type: textblock
22529 #: ../fish/guestfish-actions.pod:579
22530 msgid "See also L</realpath>."
22531 msgstr ""
22532
22533 #. type: =head2
22534 #: ../fish/guestfish-actions.pod:581
22535 msgid "cat"
22536 msgstr ""
22537
22538 #. type: verbatim
22539 #: ../fish/guestfish-actions.pod:583
22540 #, no-wrap
22541 msgid ""
22542 " cat path\n"
22543 "\n"
22544 msgstr ""
22545
22546 #. type: textblock
22547 #: ../fish/guestfish-actions.pod:587
22548 msgid ""
22549 "Note that this function cannot correctly handle binary files (specifically, "
22550 "files containing C<\\0> character which is treated as end of string).  For "
22551 "those you need to use the L</read-file> or L</download> functions which have "
22552 "a more complex interface."
22553 msgstr ""
22554
22555 #. type: =head2
22556 #: ../fish/guestfish-actions.pod:595
22557 msgid "checksum"
22558 msgstr ""
22559
22560 #. type: verbatim
22561 #: ../fish/guestfish-actions.pod:597
22562 #, no-wrap
22563 msgid ""
22564 " checksum csumtype path\n"
22565 "\n"
22566 msgstr ""
22567
22568 #. type: textblock
22569 #: ../fish/guestfish-actions.pod:640
22570 msgid "To get the checksum for a device, use L</checksum-device>."
22571 msgstr ""
22572
22573 #. type: textblock
22574 #: ../fish/guestfish-actions.pod:642
22575 msgid "To get the checksums for many files, use L</checksums-out>."
22576 msgstr ""
22577
22578 #. type: =head2
22579 #: ../fish/guestfish-actions.pod:644
22580 msgid "checksum-device"
22581 msgstr ""
22582
22583 #. type: verbatim
22584 #: ../fish/guestfish-actions.pod:646
22585 #, no-wrap
22586 msgid ""
22587 " checksum-device csumtype device\n"
22588 "\n"
22589 msgstr ""
22590
22591 #. type: textblock
22592 #: ../fish/guestfish-actions.pod:648
22593 msgid ""
22594 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22595 "device named C<device>.  For the types of checksums supported see the "
22596 "L</checksum> command."
22597 msgstr ""
22598
22599 #. type: =head2
22600 #: ../fish/guestfish-actions.pod:652
22601 msgid "checksums-out"
22602 msgstr ""
22603
22604 #. type: verbatim
22605 #: ../fish/guestfish-actions.pod:654
22606 #, no-wrap
22607 msgid ""
22608 " checksums-out csumtype directory (sumsfile|-)\n"
22609 "\n"
22610 msgstr ""
22611
22612 #. type: =head2
22613 #: ../fish/guestfish-actions.pod:670
22614 msgid "chmod"
22615 msgstr ""
22616
22617 #. type: verbatim
22618 #: ../fish/guestfish-actions.pod:672
22619 #, no-wrap
22620 msgid ""
22621 " chmod mode path\n"
22622 "\n"
22623 msgstr ""
22624
22625 #. type: =head2
22626 #: ../fish/guestfish-actions.pod:683
22627 msgid "chown"
22628 msgstr ""
22629
22630 #. type: verbatim
22631 #: ../fish/guestfish-actions.pod:685
22632 #, no-wrap
22633 msgid ""
22634 " chown owner group path\n"
22635 "\n"
22636 msgstr ""
22637
22638 #. type: =head2
22639 #: ../fish/guestfish-actions.pod:693
22640 msgid "command"
22641 msgstr ""
22642
22643 #. type: verbatim
22644 #: ../fish/guestfish-actions.pod:695
22645 #, no-wrap
22646 msgid ""
22647 " command 'arguments ...'\n"
22648 "\n"
22649 msgstr ""
22650
22651 #. type: textblock
22652 #: ../fish/guestfish-actions.pod:702
22653 msgid ""
22654 "The single parameter is an argv-style list of arguments.  The first element "
22655 "is the name of the program to run.  Subsequent elements are parameters.  The "
22656 "list must be non-empty (ie. must contain a program name).  Note that the "
22657 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22658 msgstr ""
22659
22660 #. type: =head2
22661 #: ../fish/guestfish-actions.pod:730
22662 msgid "command-lines"
22663 msgstr ""
22664
22665 #. type: verbatim
22666 #: ../fish/guestfish-actions.pod:732
22667 #, no-wrap
22668 msgid ""
22669 " command-lines 'arguments ...'\n"
22670 "\n"
22671 msgstr ""
22672
22673 #. type: textblock
22674 #: ../fish/guestfish-actions.pod:734
22675 msgid "This is the same as L</command>, but splits the result into a list of lines."
22676 msgstr ""
22677
22678 #. type: textblock
22679 #: ../fish/guestfish-actions.pod:737
22680 msgid "See also: L</sh-lines>"
22681 msgstr ""
22682
22683 #. type: =head2
22684 #: ../fish/guestfish-actions.pod:742
22685 msgid "config"
22686 msgstr ""
22687
22688 #. type: verbatim
22689 #: ../fish/guestfish-actions.pod:744
22690 #, no-wrap
22691 msgid ""
22692 " config qemuparam qemuvalue\n"
22693 "\n"
22694 msgstr ""
22695
22696 #. type: =head2
22697 #: ../fish/guestfish-actions.pod:755
22698 msgid "copy-size"
22699 msgstr ""
22700
22701 #. type: verbatim
22702 #: ../fish/guestfish-actions.pod:757
22703 #, no-wrap
22704 msgid ""
22705 " copy-size src dest size\n"
22706 "\n"
22707 msgstr ""
22708
22709 #. type: =head2
22710 #: ../fish/guestfish-actions.pod:765
22711 msgid "cp"
22712 msgstr ""
22713
22714 #. type: verbatim
22715 #: ../fish/guestfish-actions.pod:767
22716 #, no-wrap
22717 msgid ""
22718 " cp src dest\n"
22719 "\n"
22720 msgstr ""
22721
22722 #. type: =head2
22723 #: ../fish/guestfish-actions.pod:772
22724 msgid "cp-a"
22725 msgstr ""
22726
22727 #. type: verbatim
22728 #: ../fish/guestfish-actions.pod:774
22729 #, no-wrap
22730 msgid ""
22731 " cp-a src dest\n"
22732 "\n"
22733 msgstr ""
22734
22735 #. type: =head2
22736 #: ../fish/guestfish-actions.pod:779
22737 msgid "dd"
22738 msgstr ""
22739
22740 #. type: verbatim
22741 #: ../fish/guestfish-actions.pod:781
22742 #, no-wrap
22743 msgid ""
22744 " dd src dest\n"
22745 "\n"
22746 msgstr ""
22747
22748 #. type: textblock
22749 #: ../fish/guestfish-actions.pod:788
22750 msgid ""
22751 "If the destination is a device, it must be as large or larger than the "
22752 "source file or device, otherwise the copy will fail.  This command cannot do "
22753 "partial copies (see L</copy-size>)."
22754 msgstr ""
22755
22756 #. type: =head2
22757 #: ../fish/guestfish-actions.pod:792
22758 msgid "df"
22759 msgstr ""
22760
22761 #. type: verbatim
22762 #: ../fish/guestfish-actions.pod:794
22763 #, no-wrap
22764 msgid ""
22765 " df\n"
22766 "\n"
22767 msgstr ""
22768
22769 #. type: textblock
22770 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
22771 msgid ""
22772 "This command is mostly useful for interactive sessions.  It is I<not> "
22773 "intended that you try to parse the output string.  Use L</statvfs> from "
22774 "programs."
22775 msgstr ""
22776
22777 #. type: =head2
22778 #: ../fish/guestfish-actions.pod:802
22779 msgid "df-h"
22780 msgstr ""
22781
22782 #. type: verbatim
22783 #: ../fish/guestfish-actions.pod:804
22784 #, no-wrap
22785 msgid ""
22786 " df-h\n"
22787 "\n"
22788 msgstr ""
22789
22790 #. type: =head2
22791 #: ../fish/guestfish-actions.pod:813
22792 msgid "dmesg"
22793 msgstr ""
22794
22795 #. type: verbatim
22796 #: ../fish/guestfish-actions.pod:815
22797 #, no-wrap
22798 msgid ""
22799 " dmesg\n"
22800 "\n"
22801 msgstr ""
22802
22803 #. type: textblock
22804 #: ../fish/guestfish-actions.pod:821
22805 msgid ""
22806 "Another way to get the same information is to enable verbose messages with "
22807 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22808 "before running the program."
22809 msgstr ""
22810
22811 #. type: =head2
22812 #: ../fish/guestfish-actions.pod:826
22813 msgid "download"
22814 msgstr ""
22815
22816 #. type: verbatim
22817 #: ../fish/guestfish-actions.pod:828
22818 #, no-wrap
22819 msgid ""
22820 " download remotefilename (filename|-)\n"
22821 "\n"
22822 msgstr ""
22823
22824 #. type: textblock
22825 #: ../fish/guestfish-actions.pod:835
22826 msgid "See also L</upload>, L</cat>."
22827 msgstr ""
22828
22829 #. type: =head2
22830 #: ../fish/guestfish-actions.pod:839
22831 msgid "download-offset"
22832 msgstr ""
22833
22834 #. type: verbatim
22835 #: ../fish/guestfish-actions.pod:841
22836 #, no-wrap
22837 msgid ""
22838 " download-offset remotefilename (filename|-) offset size\n"
22839 "\n"
22840 msgstr ""
22841
22842 #. type: textblock
22843 #: ../fish/guestfish-actions.pod:849
22844 msgid ""
22845 "Note that there is no limit on the amount of data that can be downloaded "
22846 "with this call, unlike with L</pread>, and this call always reads the full "
22847 "amount unless an error occurs."
22848 msgstr ""
22849
22850 #. type: textblock
22851 #: ../fish/guestfish-actions.pod:854
22852 msgid "See also L</download>, L</pread>."
22853 msgstr ""
22854
22855 #. type: =head2
22856 #: ../fish/guestfish-actions.pod:858
22857 msgid "drop-caches"
22858 msgstr ""
22859
22860 #. type: verbatim
22861 #: ../fish/guestfish-actions.pod:860
22862 #, no-wrap
22863 msgid ""
22864 " drop-caches whattodrop\n"
22865 "\n"
22866 msgstr ""
22867
22868 #. type: =head2
22869 #: ../fish/guestfish-actions.pod:872
22870 msgid "du"
22871 msgstr ""
22872
22873 #. type: verbatim
22874 #: ../fish/guestfish-actions.pod:874
22875 #, no-wrap
22876 msgid ""
22877 " du path\n"
22878 "\n"
22879 msgstr ""
22880
22881 #. type: =head2
22882 #: ../fish/guestfish-actions.pod:886
22883 msgid "e2fsck-f"
22884 msgstr ""
22885
22886 #. type: verbatim
22887 #: ../fish/guestfish-actions.pod:888
22888 #, no-wrap
22889 msgid ""
22890 " e2fsck-f device\n"
22891 "\n"
22892 msgstr ""
22893
22894 #. type: textblock
22895 #: ../fish/guestfish-actions.pod:894
22896 msgid ""
22897 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22898 "should use L</fsck>."
22899 msgstr ""
22900
22901 #. type: =head2
22902 #: ../fish/guestfish-actions.pod:897
22903 msgid "echo-daemon"
22904 msgstr ""
22905
22906 #. type: verbatim
22907 #: ../fish/guestfish-actions.pod:899
22908 #, no-wrap
22909 msgid ""
22910 " echo-daemon 'words ...'\n"
22911 "\n"
22912 msgstr ""
22913
22914 #. type: textblock
22915 #: ../fish/guestfish-actions.pod:906
22916 msgid "See also L</ping-daemon>."
22917 msgstr ""
22918
22919 #. type: =head2
22920 #: ../fish/guestfish-actions.pod:908
22921 msgid "egrep"
22922 msgstr ""
22923
22924 #. type: verbatim
22925 #: ../fish/guestfish-actions.pod:910
22926 #, no-wrap
22927 msgid ""
22928 " egrep regex path\n"
22929 "\n"
22930 msgstr ""
22931
22932 #. type: =head2
22933 #: ../fish/guestfish-actions.pod:918
22934 msgid "egrepi"
22935 msgstr ""
22936
22937 #. type: verbatim
22938 #: ../fish/guestfish-actions.pod:920
22939 #, no-wrap
22940 msgid ""
22941 " egrepi regex path\n"
22942 "\n"
22943 msgstr ""
22944
22945 #. type: =head2
22946 #: ../fish/guestfish-actions.pod:928
22947 msgid "equal"
22948 msgstr ""
22949
22950 #. type: verbatim
22951 #: ../fish/guestfish-actions.pod:930
22952 #, no-wrap
22953 msgid ""
22954 " equal file1 file2\n"
22955 "\n"
22956 msgstr ""
22957
22958 #. type: =head2
22959 #: ../fish/guestfish-actions.pod:937
22960 msgid "exists"
22961 msgstr ""
22962
22963 #. type: verbatim
22964 #: ../fish/guestfish-actions.pod:939
22965 #, no-wrap
22966 msgid ""
22967 " exists path\n"
22968 "\n"
22969 msgstr ""
22970
22971 #. type: textblock
22972 #: ../fish/guestfish-actions.pod:944
22973 msgid "See also L</is-file>, L</is-dir>, L</stat>."
22974 msgstr ""
22975
22976 #. type: =head2
22977 #: ../fish/guestfish-actions.pod:946
22978 msgid "fallocate"
22979 msgstr ""
22980
22981 #. type: verbatim
22982 #: ../fish/guestfish-actions.pod:948
22983 #, no-wrap
22984 msgid ""
22985 " fallocate path len\n"
22986 "\n"
22987 msgstr ""
22988
22989 #. type: =head2
22990 #: ../fish/guestfish-actions.pod:965
22991 msgid "fallocate64"
22992 msgstr ""
22993
22994 #. type: verbatim
22995 #: ../fish/guestfish-actions.pod:967
22996 #, no-wrap
22997 msgid ""
22998 " fallocate64 path len\n"
22999 "\n"
23000 msgstr ""
23001
23002 #. type: textblock
23003 #: ../fish/guestfish-actions.pod:973
23004 msgid ""
23005 "Note that this call allocates disk blocks for the file.  To create a sparse "
23006 "file use L</truncate-size> instead."
23007 msgstr ""
23008
23009 #. type: textblock
23010 #: ../fish/guestfish-actions.pod:976
23011 msgid ""
23012 "The deprecated call L</fallocate> does the same, but owing to an oversight "
23013 "it only allowed 30 bit lengths to be specified, effectively limiting the "
23014 "maximum size of files created through that call to 1GB."
23015 msgstr ""
23016
23017 #. type: =head2
23018 #: ../fish/guestfish-actions.pod:985
23019 msgid "fgrep"
23020 msgstr ""
23021
23022 #. type: verbatim
23023 #: ../fish/guestfish-actions.pod:987
23024 #, no-wrap
23025 msgid ""
23026 " fgrep pattern path\n"
23027 "\n"
23028 msgstr ""
23029
23030 #. type: =head2
23031 #: ../fish/guestfish-actions.pod:995
23032 msgid "fgrepi"
23033 msgstr ""
23034
23035 #. type: verbatim
23036 #: ../fish/guestfish-actions.pod:997
23037 #, no-wrap
23038 msgid ""
23039 " fgrepi pattern path\n"
23040 "\n"
23041 msgstr ""
23042
23043 #. type: =head2
23044 #: ../fish/guestfish-actions.pod:1005
23045 msgid "file"
23046 msgstr ""
23047
23048 #. type: verbatim
23049 #: ../fish/guestfish-actions.pod:1007
23050 #, no-wrap
23051 msgid ""
23052 " file path\n"
23053 "\n"
23054 msgstr ""
23055
23056 #. type: textblock
23057 #: ../fish/guestfish-actions.pod:1023
23058 msgid ""
23059 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
23060 "(etc), L</is-zero>."
23061 msgstr ""
23062
23063 #. type: =head2
23064 #: ../fish/guestfish-actions.pod:1026
23065 msgid "file-architecture"
23066 msgstr ""
23067
23068 #. type: verbatim
23069 #: ../fish/guestfish-actions.pod:1028
23070 #, no-wrap
23071 msgid ""
23072 " file-architecture filename\n"
23073 "\n"
23074 msgstr ""
23075
23076 #. type: =head2
23077 #: ../fish/guestfish-actions.pod:1131
23078 msgid "filesize"
23079 msgstr ""
23080
23081 #. type: verbatim
23082 #: ../fish/guestfish-actions.pod:1133
23083 #, no-wrap
23084 msgid ""
23085 " filesize file\n"
23086 "\n"
23087 msgstr ""
23088
23089 #. type: textblock
23090 #: ../fish/guestfish-actions.pod:1137
23091 msgid ""
23092 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
23093 "L</is-file> etc.  To get the size of block devices, use "
23094 "L</blockdev-getsize64>."
23095 msgstr ""
23096
23097 #. type: =head2
23098 #: ../fish/guestfish-actions.pod:1141
23099 msgid "fill"
23100 msgstr ""
23101
23102 #. type: verbatim
23103 #: ../fish/guestfish-actions.pod:1143
23104 #, no-wrap
23105 msgid ""
23106 " fill c len path\n"
23107 "\n"
23108 msgstr ""
23109
23110 #. type: textblock
23111 #: ../fish/guestfish-actions.pod:1149
23112 msgid ""
23113 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
23114 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
23115 "L</fill-pattern>."
23116 msgstr ""
23117
23118 #. type: =head2
23119 #: ../fish/guestfish-actions.pod:1154
23120 msgid "fill-pattern"
23121 msgstr ""
23122
23123 #. type: verbatim
23124 #: ../fish/guestfish-actions.pod:1156
23125 #, no-wrap
23126 msgid ""
23127 " fill-pattern pattern len path\n"
23128 "\n"
23129 msgstr ""
23130
23131 #. type: textblock
23132 #: ../fish/guestfish-actions.pod:1158
23133 msgid ""
23134 "This function is like L</fill> except that it creates a new file of length "
23135 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
23136 "is truncated if necessary to ensure the length of the file is exactly C<len> "
23137 "bytes."
23138 msgstr ""
23139
23140 #. type: =head2
23141 #: ../fish/guestfish-actions.pod:1163
23142 msgid "find"
23143 msgstr ""
23144
23145 #. type: verbatim
23146 #: ../fish/guestfish-actions.pod:1165
23147 #, no-wrap
23148 msgid ""
23149 " find directory\n"
23150 "\n"
23151 msgstr ""
23152
23153 #. type: textblock
23154 #: ../fish/guestfish-actions.pod:1179
23155 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
23156 msgstr ""
23157
23158 #. type: textblock
23159 #: ../fish/guestfish-actions.pod:1192
23160 msgid "See also L</find0>."
23161 msgstr ""
23162
23163 #. type: =head2
23164 #: ../fish/guestfish-actions.pod:1197
23165 msgid "find0"
23166 msgstr ""
23167
23168 #. type: verbatim
23169 #: ../fish/guestfish-actions.pod:1199
23170 #, no-wrap
23171 msgid ""
23172 " find0 directory (files|-)\n"
23173 "\n"
23174 msgstr ""
23175
23176 #. type: textblock
23177 #: ../fish/guestfish-actions.pod:1205
23178 msgid "This command works the same way as L</find> with the following exceptions:"
23179 msgstr ""
23180
23181 #. type: =head2
23182 #: ../fish/guestfish-actions.pod:1232
23183 msgid "findfs-label"
23184 msgstr ""
23185
23186 #. type: verbatim
23187 #: ../fish/guestfish-actions.pod:1234
23188 #, no-wrap
23189 msgid ""
23190 " findfs-label label\n"
23191 "\n"
23192 msgstr ""
23193
23194 #. type: textblock
23195 #: ../fish/guestfish-actions.pod:1240
23196 msgid "To find the label of a filesystem, use L</vfs-label>."
23197 msgstr ""
23198
23199 #. type: =head2
23200 #: ../fish/guestfish-actions.pod:1242
23201 msgid "findfs-uuid"
23202 msgstr ""
23203
23204 #. type: verbatim
23205 #: ../fish/guestfish-actions.pod:1244
23206 #, no-wrap
23207 msgid ""
23208 " findfs-uuid uuid\n"
23209 "\n"
23210 msgstr ""
23211
23212 #. type: textblock
23213 #: ../fish/guestfish-actions.pod:1250
23214 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23215 msgstr ""
23216
23217 #. type: =head2
23218 #: ../fish/guestfish-actions.pod:1252
23219 msgid "fsck"
23220 msgstr ""
23221
23222 #. type: verbatim
23223 #: ../fish/guestfish-actions.pod:1254
23224 #, no-wrap
23225 msgid ""
23226 " fsck fstype device\n"
23227 "\n"
23228 msgstr ""
23229
23230 #. type: =head2
23231 #: ../fish/guestfish-actions.pod:1284
23232 msgid "get-append"
23233 msgstr ""
23234
23235 #. type: verbatim
23236 #: ../fish/guestfish-actions.pod:1286
23237 #, no-wrap
23238 msgid ""
23239 " get-append\n"
23240 "\n"
23241 msgstr ""
23242
23243 #. type: =head2
23244 #: ../fish/guestfish-actions.pod:1293
23245 msgid "get-attach-method"
23246 msgstr ""
23247
23248 #. type: verbatim
23249 #: ../fish/guestfish-actions.pod:1295
23250 #, no-wrap
23251 msgid ""
23252 " get-attach-method\n"
23253 "\n"
23254 msgstr ""
23255
23256 #. type: textblock
23257 #: ../fish/guestfish-actions.pod:1297
23258 msgid "Return the current attach method.  See L</set-attach-method>."
23259 msgstr ""
23260
23261 #. type: =head2
23262 #: ../fish/guestfish-actions.pod:1299
23263 msgid "get-autosync"
23264 msgstr ""
23265
23266 #. type: verbatim
23267 #: ../fish/guestfish-actions.pod:1301
23268 #, no-wrap
23269 msgid ""
23270 " get-autosync\n"
23271 "\n"
23272 msgstr ""
23273
23274 #. type: =head2
23275 #: ../fish/guestfish-actions.pod:1305
23276 msgid "get-direct"
23277 msgstr ""
23278
23279 #. type: verbatim
23280 #: ../fish/guestfish-actions.pod:1307
23281 #, no-wrap
23282 msgid ""
23283 " get-direct\n"
23284 "\n"
23285 msgstr ""
23286
23287 #. type: =head2
23288 #: ../fish/guestfish-actions.pod:1311
23289 msgid "get-e2label"
23290 msgstr ""
23291
23292 #. type: verbatim
23293 #: ../fish/guestfish-actions.pod:1313
23294 #, no-wrap
23295 msgid ""
23296 " get-e2label device\n"
23297 "\n"
23298 msgstr ""
23299
23300 #. type: =head2
23301 #: ../fish/guestfish-actions.pod:1325
23302 msgid "get-e2uuid"
23303 msgstr ""
23304
23305 #. type: verbatim
23306 #: ../fish/guestfish-actions.pod:1327
23307 #, no-wrap
23308 msgid ""
23309 " get-e2uuid device\n"
23310 "\n"
23311 msgstr ""
23312
23313 #. type: =head2
23314 #: ../fish/guestfish-actions.pod:1339
23315 msgid "get-memsize"
23316 msgstr ""
23317
23318 #. type: verbatim
23319 #: ../fish/guestfish-actions.pod:1341
23320 #, no-wrap
23321 msgid ""
23322 " get-memsize\n"
23323 "\n"
23324 msgstr ""
23325
23326 #. type: textblock
23327 #: ../fish/guestfish-actions.pod:1346
23328 msgid ""
23329 "If L</set-memsize> was not called on this handle, and if "
23330 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23331 "value for memsize."
23332 msgstr ""
23333
23334 #. type: =head2
23335 #: ../fish/guestfish-actions.pod:1353
23336 msgid "get-network"
23337 msgstr ""
23338
23339 #. type: verbatim
23340 #: ../fish/guestfish-actions.pod:1355
23341 #, no-wrap
23342 msgid ""
23343 " get-network\n"
23344 "\n"
23345 msgstr ""
23346
23347 #. type: =head2
23348 #: ../fish/guestfish-actions.pod:1359
23349 msgid "get-path"
23350 msgstr ""
23351
23352 #. type: verbatim
23353 #: ../fish/guestfish-actions.pod:1361
23354 #, no-wrap
23355 msgid ""
23356 " get-path\n"
23357 "\n"
23358 msgstr ""
23359
23360 #. type: =head2
23361 #: ../fish/guestfish-actions.pod:1368
23362 msgid "get-pid"
23363 msgstr ""
23364
23365 #. type: =head2
23366 #: ../fish/guestfish-actions.pod:1370
23367 msgid "pid"
23368 msgstr ""
23369
23370 #. type: verbatim
23371 #: ../fish/guestfish-actions.pod:1372
23372 #, no-wrap
23373 msgid ""
23374 " get-pid\n"
23375 "\n"
23376 msgstr ""
23377
23378 #. type: =head2
23379 #: ../fish/guestfish-actions.pod:1379
23380 msgid "get-qemu"
23381 msgstr ""
23382
23383 #. type: verbatim
23384 #: ../fish/guestfish-actions.pod:1381
23385 #, no-wrap
23386 msgid ""
23387 " get-qemu\n"
23388 "\n"
23389 msgstr ""
23390
23391 #. type: =head2
23392 #: ../fish/guestfish-actions.pod:1388
23393 msgid "get-recovery-proc"
23394 msgstr ""
23395
23396 #. type: verbatim
23397 #: ../fish/guestfish-actions.pod:1390
23398 #, no-wrap
23399 msgid ""
23400 " get-recovery-proc\n"
23401 "\n"
23402 msgstr ""
23403
23404 #. type: =head2
23405 #: ../fish/guestfish-actions.pod:1394
23406 msgid "get-selinux"
23407 msgstr ""
23408
23409 #. type: verbatim
23410 #: ../fish/guestfish-actions.pod:1396
23411 #, no-wrap
23412 msgid ""
23413 " get-selinux\n"
23414 "\n"
23415 msgstr ""
23416
23417 #. type: textblock
23418 #: ../fish/guestfish-actions.pod:1398
23419 msgid ""
23420 "This returns the current setting of the selinux flag which is passed to the "
23421 "appliance at boot time.  See L</set-selinux>."
23422 msgstr ""
23423
23424 #. type: =head2
23425 #: ../fish/guestfish-actions.pod:1404
23426 msgid "get-state"
23427 msgstr ""
23428
23429 #. type: verbatim
23430 #: ../fish/guestfish-actions.pod:1406
23431 #, no-wrap
23432 msgid ""
23433 " get-state\n"
23434 "\n"
23435 msgstr ""
23436
23437 #. type: =head2
23438 #: ../fish/guestfish-actions.pod:1413
23439 msgid "get-trace"
23440 msgstr ""
23441
23442 #. type: verbatim
23443 #: ../fish/guestfish-actions.pod:1415
23444 #, no-wrap
23445 msgid ""
23446 " get-trace\n"
23447 "\n"
23448 msgstr ""
23449
23450 #. type: =head2
23451 #: ../fish/guestfish-actions.pod:1419
23452 msgid "get-umask"
23453 msgstr ""
23454
23455 #. type: verbatim
23456 #: ../fish/guestfish-actions.pod:1421
23457 #, no-wrap
23458 msgid ""
23459 " get-umask\n"
23460 "\n"
23461 msgstr ""
23462
23463 #. type: textblock
23464 #: ../fish/guestfish-actions.pod:1423
23465 msgid ""
23466 "Return the current umask.  By default the umask is C<022> unless it has been "
23467 "set by calling L</umask>."
23468 msgstr ""
23469
23470 #. type: =head2
23471 #: ../fish/guestfish-actions.pod:1426
23472 msgid "get-verbose"
23473 msgstr ""
23474
23475 #. type: verbatim
23476 #: ../fish/guestfish-actions.pod:1428
23477 #, no-wrap
23478 msgid ""
23479 " get-verbose\n"
23480 "\n"
23481 msgstr ""
23482
23483 #. type: =head2
23484 #: ../fish/guestfish-actions.pod:1432
23485 msgid "getcon"
23486 msgstr ""
23487
23488 #. type: verbatim
23489 #: ../fish/guestfish-actions.pod:1434
23490 #, no-wrap
23491 msgid ""
23492 " getcon\n"
23493 "\n"
23494 msgstr ""
23495
23496 #. type: textblock
23497 #: ../fish/guestfish-actions.pod:1438
23498 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23499 msgstr ""
23500
23501 #. type: =head2
23502 #: ../fish/guestfish-actions.pod:1441
23503 msgid "getxattr"
23504 msgstr ""
23505
23506 #. type: verbatim
23507 #: ../fish/guestfish-actions.pod:1443
23508 #, no-wrap
23509 msgid ""
23510 " getxattr path name\n"
23511 "\n"
23512 msgstr ""
23513
23514 #. type: textblock
23515 #: ../fish/guestfish-actions.pod:1445
23516 msgid ""
23517 "Get a single extended attribute from file C<path> named C<name>.  This call "
23518 "follows symlinks.  If you want to lookup an extended attribute for the "
23519 "symlink itself, use L</lgetxattr>."
23520 msgstr ""
23521
23522 #. type: textblock
23523 #: ../fish/guestfish-actions.pod:1449 ../fish/guestfish-actions.pod:2476
23524 msgid ""
23525 "Normally it is better to get all extended attributes from a file in one go "
23526 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23527 "buggy and do not provide a way to list out attributes.  For these "
23528 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23529 "attributes you want in advance and call this function."
23530 msgstr ""
23531
23532 #. type: textblock
23533 #: ../fish/guestfish-actions.pod:1459
23534 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23535 msgstr ""
23536
23537 #. type: =head2
23538 #: ../fish/guestfish-actions.pod:1461
23539 msgid "getxattrs"
23540 msgstr ""
23541
23542 #. type: verbatim
23543 #: ../fish/guestfish-actions.pod:1463
23544 #, no-wrap
23545 msgid ""
23546 " getxattrs path\n"
23547 "\n"
23548 msgstr ""
23549
23550 #. type: textblock
23551 #: ../fish/guestfish-actions.pod:1471
23552 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23553 msgstr ""
23554
23555 #. type: =head2
23556 #: ../fish/guestfish-actions.pod:1473
23557 msgid "glob-expand"
23558 msgstr ""
23559
23560 #. type: verbatim
23561 #: ../fish/guestfish-actions.pod:1475
23562 #, no-wrap
23563 msgid ""
23564 " glob-expand pattern\n"
23565 "\n"
23566 msgstr ""
23567
23568 #. type: =head2
23569 #: ../fish/guestfish-actions.pod:1488
23570 msgid "grep"
23571 msgstr ""
23572
23573 #. type: verbatim
23574 #: ../fish/guestfish-actions.pod:1490
23575 #, no-wrap
23576 msgid ""
23577 " grep regex path\n"
23578 "\n"
23579 msgstr ""
23580
23581 #. type: =head2
23582 #: ../fish/guestfish-actions.pod:1498
23583 msgid "grepi"
23584 msgstr ""
23585
23586 #. type: verbatim
23587 #: ../fish/guestfish-actions.pod:1500
23588 #, no-wrap
23589 msgid ""
23590 " grepi regex path\n"
23591 "\n"
23592 msgstr ""
23593
23594 #. type: =head2
23595 #: ../fish/guestfish-actions.pod:1508
23596 msgid "grub-install"
23597 msgstr ""
23598
23599 #. type: verbatim
23600 #: ../fish/guestfish-actions.pod:1510
23601 #, no-wrap
23602 msgid ""
23603 " grub-install root device\n"
23604 "\n"
23605 msgstr ""
23606
23607 #. type: =head2
23608 #: ../fish/guestfish-actions.pod:1526
23609 msgid "head"
23610 msgstr ""
23611
23612 #. type: verbatim
23613 #: ../fish/guestfish-actions.pod:1528
23614 #, no-wrap
23615 msgid ""
23616 " head path\n"
23617 "\n"
23618 msgstr ""
23619
23620 #. type: =head2
23621 #: ../fish/guestfish-actions.pod:1536
23622 msgid "head-n"
23623 msgstr ""
23624
23625 #. type: verbatim
23626 #: ../fish/guestfish-actions.pod:1538
23627 #, no-wrap
23628 msgid ""
23629 " head-n nrlines path\n"
23630 "\n"
23631 msgstr ""
23632
23633 #. type: =head2
23634 #: ../fish/guestfish-actions.pod:1551
23635 msgid "hexdump"
23636 msgstr ""
23637
23638 #. type: verbatim
23639 #: ../fish/guestfish-actions.pod:1553
23640 #, no-wrap
23641 msgid ""
23642 " hexdump path\n"
23643 "\n"
23644 msgstr ""
23645
23646 #. type: =head2
23647 #: ../fish/guestfish-actions.pod:1561
23648 msgid "initrd-cat"
23649 msgstr ""
23650
23651 #. type: verbatim
23652 #: ../fish/guestfish-actions.pod:1563
23653 #, no-wrap
23654 msgid ""
23655 " initrd-cat initrdpath filename\n"
23656 "\n"
23657 msgstr ""
23658
23659 #. type: textblock
23660 #: ../fish/guestfish-actions.pod:1575
23661 msgid "See also L</initrd-list>."
23662 msgstr ""
23663
23664 #. type: =head2
23665 #: ../fish/guestfish-actions.pod:1580
23666 msgid "initrd-list"
23667 msgstr ""
23668
23669 #. type: verbatim
23670 #: ../fish/guestfish-actions.pod:1582
23671 #, no-wrap
23672 msgid ""
23673 " initrd-list path\n"
23674 "\n"
23675 msgstr ""
23676
23677 #. type: =head2
23678 #: ../fish/guestfish-actions.pod:1594
23679 msgid "inotify-add-watch"
23680 msgstr ""
23681
23682 #. type: verbatim
23683 #: ../fish/guestfish-actions.pod:1596
23684 #, no-wrap
23685 msgid ""
23686 " inotify-add-watch path mask\n"
23687 "\n"
23688 msgstr ""
23689
23690 #. type: =head2
23691 #: ../fish/guestfish-actions.pod:1608
23692 msgid "inotify-close"
23693 msgstr ""
23694
23695 #. type: verbatim
23696 #: ../fish/guestfish-actions.pod:1610
23697 #, no-wrap
23698 msgid ""
23699 " inotify-close\n"
23700 "\n"
23701 msgstr ""
23702
23703 #. type: =head2
23704 #: ../fish/guestfish-actions.pod:1616
23705 msgid "inotify-files"
23706 msgstr ""
23707
23708 #. type: verbatim
23709 #: ../fish/guestfish-actions.pod:1618
23710 #, no-wrap
23711 msgid ""
23712 " inotify-files\n"
23713 "\n"
23714 msgstr ""
23715
23716 #. type: textblock
23717 #: ../fish/guestfish-actions.pod:1620
23718 msgid ""
23719 "This function is a helpful wrapper around L</inotify-read> which just "
23720 "returns a list of pathnames of objects that were touched.  The returned "
23721 "pathnames are sorted and deduplicated."
23722 msgstr ""
23723
23724 #. type: =head2
23725 #: ../fish/guestfish-actions.pod:1624
23726 msgid "inotify-init"
23727 msgstr ""
23728
23729 #. type: verbatim
23730 #: ../fish/guestfish-actions.pod:1626
23731 #, no-wrap
23732 msgid ""
23733 " inotify-init maxevents\n"
23734 "\n"
23735 msgstr ""
23736
23737 #. type: textblock
23738 #: ../fish/guestfish-actions.pod:1632
23739 msgid ""
23740 "C<maxevents> is the maximum number of events which will be queued up between "
23741 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23742 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23743 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23744 "but records the fact that it threw them away by setting a flag "
23745 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23746 msgstr ""
23747
23748 #. type: textblock
23749 #: ../fish/guestfish-actions.pod:1642
23750 msgid ""
23751 "Before any events are generated, you have to add some watches to the "
23752 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23753 "L</inotify-watch-all>."
23754 msgstr ""
23755
23756 #. type: textblock
23757 #: ../fish/guestfish-actions.pod:1648
23758 msgid ""
23759 "Queued up events should be read periodically by calling L</inotify-read> (or "
23760 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23761 "If you don't read the events out often enough then you risk the internal "
23762 "queue overflowing."
23763 msgstr ""
23764
23765 #. type: textblock
23766 #: ../fish/guestfish-actions.pod:1655
23767 msgid ""
23768 "The handle should be closed after use by calling L</inotify-close>.  This "
23769 "also removes any watches automatically."
23770 msgstr ""
23771
23772 #. type: =head2
23773 #: ../fish/guestfish-actions.pod:1664
23774 msgid "inotify-read"
23775 msgstr ""
23776
23777 #. type: verbatim
23778 #: ../fish/guestfish-actions.pod:1666
23779 #, no-wrap
23780 msgid ""
23781 " inotify-read\n"
23782 "\n"
23783 msgstr ""
23784
23785 #. type: =head2
23786 #: ../fish/guestfish-actions.pod:1679
23787 msgid "inotify-rm-watch"
23788 msgstr ""
23789
23790 #. type: verbatim
23791 #: ../fish/guestfish-actions.pod:1681
23792 #, no-wrap
23793 msgid ""
23794 " inotify-rm-watch wd\n"
23795 "\n"
23796 msgstr ""
23797
23798 #. type: textblock
23799 #: ../fish/guestfish-actions.pod:1683
23800 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23801 msgstr ""
23802
23803 #. type: =head2
23804 #: ../fish/guestfish-actions.pod:1686
23805 msgid "inspect-get-arch"
23806 msgstr ""
23807
23808 #. type: verbatim
23809 #: ../fish/guestfish-actions.pod:1688
23810 #, no-wrap
23811 msgid ""
23812 " inspect-get-arch root\n"
23813 "\n"
23814 msgstr ""
23815
23816 #. type: textblock
23817 #: ../fish/guestfish-actions.pod:1690
23818 msgid ""
23819 "This returns the architecture of the inspected operating system.  The "
23820 "possible return values are listed under L</file-architecture>."
23821 msgstr ""
23822
23823 #. type: =head2
23824 #: ../fish/guestfish-actions.pod:1699
23825 msgid "inspect-get-distro"
23826 msgstr ""
23827
23828 #. type: verbatim
23829 #: ../fish/guestfish-actions.pod:1701
23830 #, no-wrap
23831 msgid ""
23832 " inspect-get-distro root\n"
23833 "\n"
23834 msgstr ""
23835
23836 #. type: =head2
23837 #: ../fish/guestfish-actions.pod:1782
23838 msgid "inspect-get-drive-mappings"
23839 msgstr ""
23840
23841 #. type: verbatim
23842 #: ../fish/guestfish-actions.pod:1784
23843 #, no-wrap
23844 msgid ""
23845 " inspect-get-drive-mappings root\n"
23846 "\n"
23847 msgstr ""
23848
23849 #. type: textblock
23850 #: ../fish/guestfish-actions.pod:1811
23851 msgid ""
23852 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23853 "L</inspect-get-mountpoints>, L</inspect-get-filesystems>."
23854 msgstr ""
23855
23856 #. type: =head2
23857 #: ../fish/guestfish-actions.pod:1815
23858 msgid "inspect-get-filesystems"
23859 msgstr ""
23860
23861 #. type: verbatim
23862 #: ../fish/guestfish-actions.pod:1817
23863 #, no-wrap
23864 msgid ""
23865 " inspect-get-filesystems root\n"
23866 "\n"
23867 msgstr ""
23868
23869 #. type: textblock
23870 #: ../fish/guestfish-actions.pod:1827
23871 msgid ""
23872 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23873 "L</inspect-get-mountpoints>."
23874 msgstr ""
23875
23876 #. type: =head2
23877 #: ../fish/guestfish-actions.pod:1830
23878 msgid "inspect-get-format"
23879 msgstr ""
23880
23881 #. type: verbatim
23882 #: ../fish/guestfish-actions.pod:1832
23883 #, no-wrap
23884 msgid ""
23885 " inspect-get-format root\n"
23886 "\n"
23887 msgstr ""
23888
23889 #. type: =head2
23890 #: ../fish/guestfish-actions.pod:1861
23891 msgid "inspect-get-hostname"
23892 msgstr ""
23893
23894 #. type: verbatim
23895 #: ../fish/guestfish-actions.pod:1863
23896 #, no-wrap
23897 msgid ""
23898 " inspect-get-hostname root\n"
23899 "\n"
23900 msgstr ""
23901
23902 #. type: =head2
23903 #: ../fish/guestfish-actions.pod:1873
23904 msgid "inspect-get-icon"
23905 msgstr ""
23906
23907 #. type: verbatim
23908 #: ../fish/guestfish-actions.pod:1875
23909 #, no-wrap
23910 msgid ""
23911 " inspect-get-icon root [favicon:..] [highquality:..]\n"
23912 "\n"
23913 msgstr ""
23914
23915 #. type: =head2
23916 #: ../fish/guestfish-actions.pod:1939
23917 msgid "inspect-get-major-version"
23918 msgstr ""
23919
23920 #. type: verbatim
23921 #: ../fish/guestfish-actions.pod:1941
23922 #, no-wrap
23923 msgid ""
23924 " inspect-get-major-version root\n"
23925 "\n"
23926 msgstr ""
23927
23928 #. type: =head2
23929 #: ../fish/guestfish-actions.pod:1957
23930 msgid "inspect-get-minor-version"
23931 msgstr ""
23932
23933 #. type: verbatim
23934 #: ../fish/guestfish-actions.pod:1959
23935 #, no-wrap
23936 msgid ""
23937 " inspect-get-minor-version root\n"
23938 "\n"
23939 msgstr ""
23940
23941 #. type: textblock
23942 #: ../fish/guestfish-actions.pod:1966
23943 msgid ""
23944 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23945 "L</inspect-get-major-version>."
23946 msgstr ""
23947
23948 #. type: =head2
23949 #: ../fish/guestfish-actions.pod:1969
23950 msgid "inspect-get-mountpoints"
23951 msgstr ""
23952
23953 #. type: verbatim
23954 #: ../fish/guestfish-actions.pod:1971
23955 #, no-wrap
23956 msgid ""
23957 " inspect-get-mountpoints root\n"
23958 "\n"
23959 msgstr ""
23960
23961 #. type: textblock
23962 #: ../fish/guestfish-actions.pod:1990
23963 msgid ""
23964 "For operating systems like Windows which still use drive letters, this call "
23965 "will only return an entry for the first drive \"mounted on\" C</>.  For "
23966 "information about the mapping of drive letters to partitions, see "
23967 "L</inspect-get-drive-mappings>."
23968 msgstr ""
23969
23970 #. type: textblock
23971 #: ../fish/guestfish-actions.pod:1996
23972 msgid ""
23973 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23974 "L</inspect-get-filesystems>."
23975 msgstr ""
23976
23977 #. type: =head2
23978 #: ../fish/guestfish-actions.pod:1999
23979 msgid "inspect-get-package-format"
23980 msgstr ""
23981
23982 #. type: verbatim
23983 #: ../fish/guestfish-actions.pod:2001
23984 #, no-wrap
23985 msgid ""
23986 " inspect-get-package-format root\n"
23987 "\n"
23988 msgstr ""
23989
23990 #. type: textblock
23991 #: ../fish/guestfish-actions.pod:2003
23992 msgid ""
23993 "This function and L</inspect-get-package-management> return the package "
23994 "format and package management tool used by the inspected operating system.  "
23995 "For example for Fedora these functions would return C<rpm> (package format) "
23996 "and C<yum> (package management)."
23997 msgstr ""
23998
23999 #. type: =head2
24000 #: ../fish/guestfish-actions.pod:2018
24001 msgid "inspect-get-package-management"
24002 msgstr ""
24003
24004 #. type: verbatim
24005 #: ../fish/guestfish-actions.pod:2020
24006 #, no-wrap
24007 msgid ""
24008 " inspect-get-package-management root\n"
24009 "\n"
24010 msgstr ""
24011
24012 #. type: textblock
24013 #: ../fish/guestfish-actions.pod:2022
24014 msgid ""
24015 "L</inspect-get-package-format> and this function return the package format "
24016 "and package management tool used by the inspected operating system.  For "
24017 "example for Fedora these functions would return C<rpm> (package format) and "
24018 "C<yum> (package management)."
24019 msgstr ""
24020
24021 #. type: =head2
24022 #: ../fish/guestfish-actions.pod:2039
24023 msgid "inspect-get-product-name"
24024 msgstr ""
24025
24026 #. type: verbatim
24027 #: ../fish/guestfish-actions.pod:2041
24028 #, no-wrap
24029 msgid ""
24030 " inspect-get-product-name root\n"
24031 "\n"
24032 msgstr ""
24033
24034 #. type: =head2
24035 #: ../fish/guestfish-actions.pod:2053
24036 msgid "inspect-get-product-variant"
24037 msgstr ""
24038
24039 #. type: verbatim
24040 #: ../fish/guestfish-actions.pod:2055
24041 #, no-wrap
24042 msgid ""
24043 " inspect-get-product-variant root\n"
24044 "\n"
24045 msgstr ""
24046
24047 #. type: textblock
24048 #: ../fish/guestfish-actions.pod:2076
24049 msgid ""
24050 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
24051 "L</inspect-get-product-name>, L</inspect-get-major-version>."
24052 msgstr ""
24053
24054 #. type: =head2
24055 #: ../fish/guestfish-actions.pod:2080
24056 msgid "inspect-get-roots"
24057 msgstr ""
24058
24059 #. type: verbatim
24060 #: ../fish/guestfish-actions.pod:2082
24061 #, no-wrap
24062 msgid ""
24063 " inspect-get-roots\n"
24064 "\n"
24065 msgstr ""
24066
24067 #. type: textblock
24068 #: ../fish/guestfish-actions.pod:2084
24069 msgid ""
24070 "This function is a convenient way to get the list of root devices, as "
24071 "returned from a previous call to L</inspect-os>, but without redoing the "
24072 "whole inspection process."
24073 msgstr ""
24074
24075 #. type: textblock
24076 #: ../fish/guestfish-actions.pod:2088
24077 msgid ""
24078 "This returns an empty list if either no root devices were found or the "
24079 "caller has not called L</inspect-os>."
24080 msgstr ""
24081
24082 #. type: =head2
24083 #: ../fish/guestfish-actions.pod:2093
24084 msgid "inspect-get-type"
24085 msgstr ""
24086
24087 #. type: verbatim
24088 #: ../fish/guestfish-actions.pod:2095
24089 #, no-wrap
24090 msgid ""
24091 " inspect-get-type root\n"
24092 "\n"
24093 msgstr ""
24094
24095 #. type: =head2
24096 #: ../fish/guestfish-actions.pod:2125
24097 msgid "inspect-get-windows-current-control-set"
24098 msgstr ""
24099
24100 #. type: verbatim
24101 #: ../fish/guestfish-actions.pod:2127
24102 #, no-wrap
24103 msgid ""
24104 " inspect-get-windows-current-control-set root\n"
24105 "\n"
24106 msgstr ""
24107
24108 #. type: =head2
24109 #: ../fish/guestfish-actions.pod:2138
24110 msgid "inspect-get-windows-systemroot"
24111 msgstr ""
24112
24113 #. type: verbatim
24114 #: ../fish/guestfish-actions.pod:2140
24115 #, no-wrap
24116 msgid ""
24117 " inspect-get-windows-systemroot root\n"
24118 "\n"
24119 msgstr ""
24120
24121 #. type: =head2
24122 #: ../fish/guestfish-actions.pod:2151
24123 msgid "inspect-is-live"
24124 msgstr ""
24125
24126 #. type: verbatim
24127 #: ../fish/guestfish-actions.pod:2153
24128 #, no-wrap
24129 msgid ""
24130 " inspect-is-live root\n"
24131 "\n"
24132 msgstr ""
24133
24134 #. type: textblock
24135 #: ../fish/guestfish-actions.pod:2155
24136 msgid ""
24137 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24138 "then this returns true if a live image was detected on the disk."
24139 msgstr ""
24140
24141 #. type: =head2
24142 #: ../fish/guestfish-actions.pod:2161
24143 msgid "inspect-is-multipart"
24144 msgstr ""
24145
24146 #. type: verbatim
24147 #: ../fish/guestfish-actions.pod:2163
24148 #, no-wrap
24149 msgid ""
24150 " inspect-is-multipart root\n"
24151 "\n"
24152 msgstr ""
24153
24154 #. type: textblock
24155 #: ../fish/guestfish-actions.pod:2165
24156 msgid ""
24157 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24158 "then this returns true if the disk is part of a set."
24159 msgstr ""
24160
24161 #. type: =head2
24162 #: ../fish/guestfish-actions.pod:2171
24163 msgid "inspect-is-netinst"
24164 msgstr ""
24165
24166 #. type: verbatim
24167 #: ../fish/guestfish-actions.pod:2173
24168 #, no-wrap
24169 msgid ""
24170 " inspect-is-netinst root\n"
24171 "\n"
24172 msgstr ""
24173
24174 #. type: textblock
24175 #: ../fish/guestfish-actions.pod:2175
24176 msgid ""
24177 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24178 "then this returns true if the disk is a network installer, ie. not a "
24179 "self-contained install CD but one which is likely to require network access "
24180 "to complete the install."
24181 msgstr ""
24182
24183 #. type: =head2
24184 #: ../fish/guestfish-actions.pod:2183
24185 msgid "inspect-list-applications"
24186 msgstr ""
24187
24188 #. type: verbatim
24189 #: ../fish/guestfish-actions.pod:2185
24190 #, no-wrap
24191 msgid ""
24192 " inspect-list-applications root\n"
24193 "\n"
24194 msgstr ""
24195
24196 #. type: textblock
24197 #: ../fish/guestfish-actions.pod:2189
24198 msgid ""
24199 "I<Note:> This call works differently from other parts of the inspection "
24200 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24201 "then mount up the disks, before calling this.  Listing applications is a "
24202 "significantly more difficult operation which requires access to the full "
24203 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24204 "are just returning data cached in the libguestfs handle, this call actually "
24205 "reads parts of the mounted filesystems during the call."
24206 msgstr ""
24207
24208 #. type: =head2
24209 #: ../fish/guestfish-actions.pod:2279
24210 msgid "inspect-os"
24211 msgstr ""
24212
24213 #. type: verbatim
24214 #: ../fish/guestfish-actions.pod:2281
24215 #, no-wrap
24216 msgid ""
24217 " inspect-os\n"
24218 "\n"
24219 msgstr ""
24220
24221 #. type: textblock
24222 #: ../fish/guestfish-actions.pod:2296
24223 msgid ""
24224 "You can pass the root string(s) returned to other L</inspect-get-*> "
24225 "functions in order to query further information about each operating system, "
24226 "such as the name and version."
24227 msgstr ""
24228
24229 #. type: textblock
24230 #: ../fish/guestfish-actions.pod:2301
24231 msgid ""
24232 "This function uses other libguestfs features such as L</mount-ro> and "
24233 "L</umount-all> in order to mount and unmount filesystems and look at the "
24234 "contents.  This should be called with no disks currently mounted.  The "
24235 "function may also use Augeas, so any existing Augeas handle will be closed."
24236 msgstr ""
24237
24238 #. type: textblock
24239 #: ../fish/guestfish-actions.pod:2313 ../fish/guestfish-actions.pod:2511 ../fish/guestfish-actions.pod:2570
24240 msgid "See also L</list-filesystems>."
24241 msgstr ""
24242
24243 #. type: =head2
24244 #: ../fish/guestfish-actions.pod:2315
24245 msgid "is-blockdev"
24246 msgstr ""
24247
24248 #. type: verbatim
24249 #: ../fish/guestfish-actions.pod:2317
24250 #, no-wrap
24251 msgid ""
24252 " is-blockdev path\n"
24253 "\n"
24254 msgstr ""
24255
24256 #. type: textblock
24257 #: ../fish/guestfish-actions.pod:2322 ../fish/guestfish-actions.pod:2340 ../fish/guestfish-actions.pod:2359 ../fish/guestfish-actions.pod:2368 ../fish/guestfish-actions.pod:2378 ../fish/guestfish-actions.pod:2412 ../fish/guestfish-actions.pod:2421
24258 msgid "See also L</stat>."
24259 msgstr ""
24260
24261 #. type: =head2
24262 #: ../fish/guestfish-actions.pod:2324
24263 msgid "is-busy"
24264 msgstr ""
24265
24266 #. type: verbatim
24267 #: ../fish/guestfish-actions.pod:2326
24268 #, no-wrap
24269 msgid ""
24270 " is-busy\n"
24271 "\n"
24272 msgstr ""
24273
24274 #. type: =head2
24275 #: ../fish/guestfish-actions.pod:2333
24276 msgid "is-chardev"
24277 msgstr ""
24278
24279 #. type: verbatim
24280 #: ../fish/guestfish-actions.pod:2335
24281 #, no-wrap
24282 msgid ""
24283 " is-chardev path\n"
24284 "\n"
24285 msgstr ""
24286
24287 #. type: =head2
24288 #: ../fish/guestfish-actions.pod:2342
24289 msgid "is-config"
24290 msgstr ""
24291
24292 #. type: verbatim
24293 #: ../fish/guestfish-actions.pod:2344
24294 #, no-wrap
24295 msgid ""
24296 " is-config\n"
24297 "\n"
24298 msgstr ""
24299
24300 #. type: =head2
24301 #: ../fish/guestfish-actions.pod:2351
24302 msgid "is-dir"
24303 msgstr ""
24304
24305 #. type: verbatim
24306 #: ../fish/guestfish-actions.pod:2353
24307 #, no-wrap
24308 msgid ""
24309 " is-dir path\n"
24310 "\n"
24311 msgstr ""
24312
24313 #. type: =head2
24314 #: ../fish/guestfish-actions.pod:2361
24315 msgid "is-fifo"
24316 msgstr ""
24317
24318 #. type: verbatim
24319 #: ../fish/guestfish-actions.pod:2363
24320 #, no-wrap
24321 msgid ""
24322 " is-fifo path\n"
24323 "\n"
24324 msgstr ""
24325
24326 #. type: =head2
24327 #: ../fish/guestfish-actions.pod:2370
24328 msgid "is-file"
24329 msgstr ""
24330
24331 #. type: verbatim
24332 #: ../fish/guestfish-actions.pod:2372
24333 #, no-wrap
24334 msgid ""
24335 " is-file path\n"
24336 "\n"
24337 msgstr ""
24338
24339 #. type: =head2
24340 #: ../fish/guestfish-actions.pod:2380
24341 msgid "is-launching"
24342 msgstr ""
24343
24344 #. type: verbatim
24345 #: ../fish/guestfish-actions.pod:2382
24346 #, no-wrap
24347 msgid ""
24348 " is-launching\n"
24349 "\n"
24350 msgstr ""
24351
24352 #. type: =head2
24353 #: ../fish/guestfish-actions.pod:2389
24354 msgid "is-lv"
24355 msgstr ""
24356
24357 #. type: verbatim
24358 #: ../fish/guestfish-actions.pod:2391
24359 #, no-wrap
24360 msgid ""
24361 " is-lv device\n"
24362 "\n"
24363 msgstr ""
24364
24365 #. type: =head2
24366 #: ../fish/guestfish-actions.pod:2396
24367 msgid "is-ready"
24368 msgstr ""
24369
24370 #. type: verbatim
24371 #: ../fish/guestfish-actions.pod:2398
24372 #, no-wrap
24373 msgid ""
24374 " is-ready\n"
24375 "\n"
24376 msgstr ""
24377
24378 #. type: =head2
24379 #: ../fish/guestfish-actions.pod:2405
24380 msgid "is-socket"
24381 msgstr ""
24382
24383 #. type: verbatim
24384 #: ../fish/guestfish-actions.pod:2407
24385 #, no-wrap
24386 msgid ""
24387 " is-socket path\n"
24388 "\n"
24389 msgstr ""
24390
24391 #. type: =head2
24392 #: ../fish/guestfish-actions.pod:2414
24393 msgid "is-symlink"
24394 msgstr ""
24395
24396 #. type: verbatim
24397 #: ../fish/guestfish-actions.pod:2416
24398 #, no-wrap
24399 msgid ""
24400 " is-symlink path\n"
24401 "\n"
24402 msgstr ""
24403
24404 #. type: =head2
24405 #: ../fish/guestfish-actions.pod:2423
24406 msgid "is-zero"
24407 msgstr ""
24408
24409 #. type: verbatim
24410 #: ../fish/guestfish-actions.pod:2425
24411 #, no-wrap
24412 msgid ""
24413 " is-zero path\n"
24414 "\n"
24415 msgstr ""
24416
24417 #. type: =head2
24418 #: ../fish/guestfish-actions.pod:2430
24419 msgid "is-zero-device"
24420 msgstr ""
24421
24422 #. type: verbatim
24423 #: ../fish/guestfish-actions.pod:2432
24424 #, no-wrap
24425 msgid ""
24426 " is-zero-device device\n"
24427 "\n"
24428 msgstr ""
24429
24430 #. type: =head2
24431 #: ../fish/guestfish-actions.pod:2438
24432 msgid "kill-subprocess"
24433 msgstr ""
24434
24435 #. type: verbatim
24436 #: ../fish/guestfish-actions.pod:2440
24437 #, no-wrap
24438 msgid ""
24439 " kill-subprocess\n"
24440 "\n"
24441 msgstr ""
24442
24443 #. type: =head2
24444 #: ../fish/guestfish-actions.pod:2444
24445 msgid "launch"
24446 msgstr ""
24447
24448 #. type: =head2
24449 #: ../fish/guestfish-actions.pod:2446
24450 msgid "run"
24451 msgstr ""
24452
24453 #. type: verbatim
24454 #: ../fish/guestfish-actions.pod:2448
24455 #, no-wrap
24456 msgid ""
24457 " launch\n"
24458 "\n"
24459 msgstr ""
24460
24461 #. type: =head2
24462 #: ../fish/guestfish-actions.pod:2456
24463 msgid "lchown"
24464 msgstr ""
24465
24466 #. type: verbatim
24467 #: ../fish/guestfish-actions.pod:2458
24468 #, no-wrap
24469 msgid ""
24470 " lchown owner group path\n"
24471 "\n"
24472 msgstr ""
24473
24474 #. type: textblock
24475 #: ../fish/guestfish-actions.pod:2460
24476 msgid ""
24477 "Change the file owner to C<owner> and group to C<group>.  This is like "
24478 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
24479 "the target."
24480 msgstr ""
24481
24482 #. type: =head2
24483 #: ../fish/guestfish-actions.pod:2468
24484 msgid "lgetxattr"
24485 msgstr ""
24486
24487 #. type: verbatim
24488 #: ../fish/guestfish-actions.pod:2470
24489 #, no-wrap
24490 msgid ""
24491 " lgetxattr path name\n"
24492 "\n"
24493 msgstr ""
24494
24495 #. type: textblock
24496 #: ../fish/guestfish-actions.pod:2486
24497 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24498 msgstr ""
24499
24500 #. type: =head2
24501 #: ../fish/guestfish-actions.pod:2488
24502 msgid "lgetxattrs"
24503 msgstr ""
24504
24505 #. type: verbatim
24506 #: ../fish/guestfish-actions.pod:2490
24507 #, no-wrap
24508 msgid ""
24509 " lgetxattrs path\n"
24510 "\n"
24511 msgstr ""
24512
24513 #. type: textblock
24514 #: ../fish/guestfish-actions.pod:2492
24515 msgid ""
24516 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24517 "it returns the extended attributes of the link itself."
24518 msgstr ""
24519
24520 #. type: =head2
24521 #: ../fish/guestfish-actions.pod:2496
24522 msgid "list-9p"
24523 msgstr ""
24524
24525 #. type: verbatim
24526 #: ../fish/guestfish-actions.pod:2498
24527 #, no-wrap
24528 msgid ""
24529 " list-9p\n"
24530 "\n"
24531 msgstr ""
24532
24533 #. type: =head2
24534 #: ../fish/guestfish-actions.pod:2503
24535 msgid "list-devices"
24536 msgstr ""
24537
24538 #. type: verbatim
24539 #: ../fish/guestfish-actions.pod:2505
24540 #, no-wrap
24541 msgid ""
24542 " list-devices\n"
24543 "\n"
24544 msgstr ""
24545
24546 #. type: =head2
24547 #: ../fish/guestfish-actions.pod:2513
24548 msgid "list-dm-devices"
24549 msgstr ""
24550
24551 #. type: verbatim
24552 #: ../fish/guestfish-actions.pod:2515
24553 #, no-wrap
24554 msgid ""
24555 " list-dm-devices\n"
24556 "\n"
24557 msgstr ""
24558
24559 #. type: textblock
24560 #: ../fish/guestfish-actions.pod:2519
24561 msgid ""
24562 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
24563 "previous call to L</luks-open>."
24564 msgstr ""
24565
24566 #. type: textblock
24567 #: ../fish/guestfish-actions.pod:2522
24568 msgid ""
24569 "Device mapper devices which correspond to logical volumes are I<not> "
24570 "returned in this list.  Call L</lvs> if you want to list logical volumes."
24571 msgstr ""
24572
24573 #. type: =head2
24574 #: ../fish/guestfish-actions.pod:2526
24575 msgid "list-filesystems"
24576 msgstr ""
24577
24578 #. type: verbatim
24579 #: ../fish/guestfish-actions.pod:2528
24580 #, no-wrap
24581 msgid ""
24582 " list-filesystems\n"
24583 "\n"
24584 msgstr ""
24585
24586 #. type: textblock
24587 #: ../fish/guestfish-actions.pod:2547
24588 msgid ""
24589 "This command runs other libguestfs commands, which might include L</mount> "
24590 "and L</umount>, and therefore you should use this soon after launch and only "
24591 "when nothing is mounted."
24592 msgstr ""
24593
24594 #. type: textblock
24595 #: ../fish/guestfish-actions.pod:2551
24596 msgid ""
24597 "Not all of the filesystems returned will be mountable.  In particular, swap "
24598 "partitions are returned in the list.  Also this command does not check that "
24599 "each filesystem found is valid and mountable, and some filesystems might be "
24600 "mountable but require special options.  Filesystems may not all belong to a "
24601 "single logical operating system (use L</inspect-os> to look for OSes)."
24602 msgstr ""
24603
24604 #. type: =head2
24605 #: ../fish/guestfish-actions.pod:2559
24606 msgid "list-partitions"
24607 msgstr ""
24608
24609 #. type: verbatim
24610 #: ../fish/guestfish-actions.pod:2561
24611 #, no-wrap
24612 msgid ""
24613 " list-partitions\n"
24614 "\n"
24615 msgstr ""
24616
24617 #. type: textblock
24618 #: ../fish/guestfish-actions.pod:2567
24619 msgid ""
24620 "This does not return logical volumes.  For that you will need to call "
24621 "L</lvs>."
24622 msgstr ""
24623
24624 #. type: =head2
24625 #: ../fish/guestfish-actions.pod:2572
24626 msgid "ll"
24627 msgstr ""
24628
24629 #. type: verbatim
24630 #: ../fish/guestfish-actions.pod:2574
24631 #, no-wrap
24632 msgid ""
24633 " ll directory\n"
24634 "\n"
24635 msgstr ""
24636
24637 #. type: =head2
24638 #: ../fish/guestfish-actions.pod:2582
24639 msgid "ln"
24640 msgstr ""
24641
24642 #. type: verbatim
24643 #: ../fish/guestfish-actions.pod:2584
24644 #, no-wrap
24645 msgid ""
24646 " ln target linkname\n"
24647 "\n"
24648 msgstr ""
24649
24650 #. type: =head2
24651 #: ../fish/guestfish-actions.pod:2588
24652 msgid "ln-f"
24653 msgstr ""
24654
24655 #. type: verbatim
24656 #: ../fish/guestfish-actions.pod:2590
24657 #, no-wrap
24658 msgid ""
24659 " ln-f target linkname\n"
24660 "\n"
24661 msgstr ""
24662
24663 #. type: =head2
24664 #: ../fish/guestfish-actions.pod:2595
24665 msgid "ln-s"
24666 msgstr ""
24667
24668 #. type: verbatim
24669 #: ../fish/guestfish-actions.pod:2597
24670 #, no-wrap
24671 msgid ""
24672 " ln-s target linkname\n"
24673 "\n"
24674 msgstr ""
24675
24676 #. type: =head2
24677 #: ../fish/guestfish-actions.pod:2601
24678 msgid "ln-sf"
24679 msgstr ""
24680
24681 #. type: verbatim
24682 #: ../fish/guestfish-actions.pod:2603
24683 #, no-wrap
24684 msgid ""
24685 " ln-sf target linkname\n"
24686 "\n"
24687 msgstr ""
24688
24689 #. type: =head2
24690 #: ../fish/guestfish-actions.pod:2608
24691 msgid "lremovexattr"
24692 msgstr ""
24693
24694 #. type: verbatim
24695 #: ../fish/guestfish-actions.pod:2610
24696 #, no-wrap
24697 msgid ""
24698 " lremovexattr xattr path\n"
24699 "\n"
24700 msgstr ""
24701
24702 #. type: textblock
24703 #: ../fish/guestfish-actions.pod:2612
24704 msgid ""
24705 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24706 "it removes an extended attribute of the link itself."
24707 msgstr ""
24708
24709 #. type: =head2
24710 #: ../fish/guestfish-actions.pod:2616
24711 msgid "ls"
24712 msgstr ""
24713
24714 #. type: verbatim
24715 #: ../fish/guestfish-actions.pod:2618
24716 #, no-wrap
24717 msgid ""
24718 " ls directory\n"
24719 "\n"
24720 msgstr ""
24721
24722 #. type: textblock
24723 #: ../fish/guestfish-actions.pod:2624
24724 msgid ""
24725 "This command is mostly useful for interactive sessions.  Programs should "
24726 "probably use L</readdir> instead."
24727 msgstr ""
24728
24729 #. type: =head2
24730 #: ../fish/guestfish-actions.pod:2627
24731 msgid "lsetxattr"
24732 msgstr ""
24733
24734 #. type: verbatim
24735 #: ../fish/guestfish-actions.pod:2629
24736 #, no-wrap
24737 msgid ""
24738 " lsetxattr xattr val vallen path\n"
24739 "\n"
24740 msgstr ""
24741
24742 #. type: textblock
24743 #: ../fish/guestfish-actions.pod:2631
24744 msgid ""
24745 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24746 "sets an extended attribute of the link itself."
24747 msgstr ""
24748
24749 #. type: =head2
24750 #: ../fish/guestfish-actions.pod:2635
24751 msgid "lstat"
24752 msgstr ""
24753
24754 #. type: verbatim
24755 #: ../fish/guestfish-actions.pod:2637
24756 #, no-wrap
24757 msgid ""
24758 " lstat path\n"
24759 "\n"
24760 msgstr ""
24761
24762 #. type: textblock
24763 #: ../fish/guestfish-actions.pod:2641
24764 msgid ""
24765 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24766 "the link is stat-ed, not the file it refers to."
24767 msgstr ""
24768
24769 #. type: =head2
24770 #: ../fish/guestfish-actions.pod:2647
24771 msgid "lstatlist"
24772 msgstr ""
24773
24774 #. type: verbatim
24775 #: ../fish/guestfish-actions.pod:2649
24776 #, no-wrap
24777 msgid ""
24778 " lstatlist path 'names ...'\n"
24779 "\n"
24780 msgstr ""
24781
24782 #. type: textblock
24783 #: ../fish/guestfish-actions.pod:2651
24784 msgid ""
24785 "This call allows you to perform the L</lstat> operation on multiple files, "
24786 "where all files are in the directory C<path>.  C<names> is the list of files "
24787 "from this directory."
24788 msgstr ""
24789
24790 #. type: textblock
24791 #: ../fish/guestfish-actions.pod:2660
24792 msgid ""
24793 "This call is intended for programs that want to efficiently list a directory "
24794 "contents without making many round-trips.  See also L</lxattrlist> for a "
24795 "similarly efficient call for getting extended attributes.  Very long "
24796 "directory listings might cause the protocol message size to be exceeded, "
24797 "causing this call to fail.  The caller must split up such requests into "
24798 "smaller groups of names."
24799 msgstr ""
24800
24801 #. type: =head2
24802 #: ../fish/guestfish-actions.pod:2668
24803 msgid "luks-add-key"
24804 msgstr ""
24805
24806 #. type: verbatim
24807 #: ../fish/guestfish-actions.pod:2670
24808 #, no-wrap
24809 msgid ""
24810 " luks-add-key device keyslot\n"
24811 "\n"
24812 msgstr ""
24813
24814 #. type: textblock
24815 #: ../fish/guestfish-actions.pod:2677
24816 msgid ""
24817 "Note that if C<keyslot> already contains a key, then this command will "
24818 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24819 msgstr ""
24820
24821 #. type: textblock
24822 #: ../fish/guestfish-actions.pod:2681 ../fish/guestfish-actions.pod:2703 ../fish/guestfish-actions.pod:2716 ../fish/guestfish-actions.pod:2730 ../fish/guestfish-actions.pod:2756 ../fish/guestfish-actions.pod:2766
24823 msgid ""
24824 "This command has one or more key or passphrase parameters.  Guestfish will "
24825 "prompt for these separately."
24826 msgstr ""
24827
24828 #. type: =head2
24829 #: ../fish/guestfish-actions.pod:2684
24830 msgid "luks-close"
24831 msgstr ""
24832
24833 #. type: verbatim
24834 #: ../fish/guestfish-actions.pod:2686
24835 #, no-wrap
24836 msgid ""
24837 " luks-close device\n"
24838 "\n"
24839 msgstr ""
24840
24841 #. type: textblock
24842 #: ../fish/guestfish-actions.pod:2688
24843 msgid ""
24844 "This closes a LUKS device that was created earlier by L</luks-open> or "
24845 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
24846 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
24847 "underlying block device."
24848 msgstr ""
24849
24850 #. type: =head2
24851 #: ../fish/guestfish-actions.pod:2694
24852 msgid "luks-format"
24853 msgstr ""
24854
24855 #. type: verbatim
24856 #: ../fish/guestfish-actions.pod:2696
24857 #, no-wrap
24858 msgid ""
24859 " luks-format device keyslot\n"
24860 "\n"
24861 msgstr ""
24862
24863 #. type: =head2
24864 #: ../fish/guestfish-actions.pod:2709
24865 msgid "luks-format-cipher"
24866 msgstr ""
24867
24868 #. type: verbatim
24869 #: ../fish/guestfish-actions.pod:2711
24870 #, no-wrap
24871 msgid ""
24872 " luks-format-cipher device keyslot cipher\n"
24873 "\n"
24874 msgstr ""
24875
24876 #. type: textblock
24877 #: ../fish/guestfish-actions.pod:2713
24878 msgid ""
24879 "This command is the same as L</luks-format> but it also allows you to set "
24880 "the C<cipher> used."
24881 msgstr ""
24882
24883 #. type: =head2
24884 #: ../fish/guestfish-actions.pod:2722
24885 msgid "luks-kill-slot"
24886 msgstr ""
24887
24888 #. type: verbatim
24889 #: ../fish/guestfish-actions.pod:2724
24890 #, no-wrap
24891 msgid ""
24892 " luks-kill-slot device keyslot\n"
24893 "\n"
24894 msgstr ""
24895
24896 #. type: =head2
24897 #: ../fish/guestfish-actions.pod:2733
24898 msgid "luks-open"
24899 msgstr ""
24900
24901 #. type: verbatim
24902 #: ../fish/guestfish-actions.pod:2735
24903 #, no-wrap
24904 msgid ""
24905 " luks-open device mapname\n"
24906 "\n"
24907 msgstr ""
24908
24909 #. type: textblock
24910 #: ../fish/guestfish-actions.pod:2749
24911 msgid ""
24912 "If this block device contains LVM volume groups, then calling L</vgscan> "
24913 "followed by L</vg-activate-all> will make them visible."
24914 msgstr ""
24915
24916 #. type: textblock
24917 #: ../fish/guestfish-actions.pod:2753
24918 msgid "Use L</list-dm-devices> to list all device mapper devices."
24919 msgstr ""
24920
24921 #. type: =head2
24922 #: ../fish/guestfish-actions.pod:2759
24923 msgid "luks-open-ro"
24924 msgstr ""
24925
24926 #. type: verbatim
24927 #: ../fish/guestfish-actions.pod:2761
24928 #, no-wrap
24929 msgid ""
24930 " luks-open-ro device mapname\n"
24931 "\n"
24932 msgstr ""
24933
24934 #. type: textblock
24935 #: ../fish/guestfish-actions.pod:2763
24936 msgid ""
24937 "This is the same as L</luks-open> except that a read-only mapping is "
24938 "created."
24939 msgstr ""
24940
24941 #. type: =head2
24942 #: ../fish/guestfish-actions.pod:2769
24943 msgid "lvcreate"
24944 msgstr ""
24945
24946 #. type: verbatim
24947 #: ../fish/guestfish-actions.pod:2771
24948 #, no-wrap
24949 msgid ""
24950 " lvcreate logvol volgroup mbytes\n"
24951 "\n"
24952 msgstr ""
24953
24954 #. type: =head2
24955 #: ../fish/guestfish-actions.pod:2776
24956 msgid "lvm-canonical-lv-name"
24957 msgstr ""
24958
24959 #. type: verbatim
24960 #: ../fish/guestfish-actions.pod:2778
24961 #, no-wrap
24962 msgid ""
24963 " lvm-canonical-lv-name lvname\n"
24964 "\n"
24965 msgstr ""
24966
24967 #. type: textblock
24968 #: ../fish/guestfish-actions.pod:2787
24969 msgid "See also L</is-lv>."
24970 msgstr ""
24971
24972 #. type: =head2
24973 #: ../fish/guestfish-actions.pod:2789
24974 msgid "lvm-clear-filter"
24975 msgstr ""
24976
24977 #. type: verbatim
24978 #: ../fish/guestfish-actions.pod:2791
24979 #, no-wrap
24980 msgid ""
24981 " lvm-clear-filter\n"
24982 "\n"
24983 msgstr ""
24984
24985 #. type: textblock
24986 #: ../fish/guestfish-actions.pod:2793
24987 msgid ""
24988 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24989 "block device."
24990 msgstr ""
24991
24992 #. type: =head2
24993 #: ../fish/guestfish-actions.pod:2799
24994 msgid "lvm-remove-all"
24995 msgstr ""
24996
24997 #. type: verbatim
24998 #: ../fish/guestfish-actions.pod:2801
24999 #, no-wrap
25000 msgid ""
25001 " lvm-remove-all\n"
25002 "\n"
25003 msgstr ""
25004
25005 #. type: =head2
25006 #: ../fish/guestfish-actions.pod:2809
25007 msgid "lvm-set-filter"
25008 msgstr ""
25009
25010 #. type: verbatim
25011 #: ../fish/guestfish-actions.pod:2811
25012 #, no-wrap
25013 msgid ""
25014 " lvm-set-filter 'devices ...'\n"
25015 "\n"
25016 msgstr ""
25017
25018 #. type: =head2
25019 #: ../fish/guestfish-actions.pod:2836
25020 msgid "lvremove"
25021 msgstr ""
25022
25023 #. type: verbatim
25024 #: ../fish/guestfish-actions.pod:2838
25025 #, no-wrap
25026 msgid ""
25027 " lvremove device\n"
25028 "\n"
25029 msgstr ""
25030
25031 #. type: =head2
25032 #: ../fish/guestfish-actions.pod:2846
25033 msgid "lvrename"
25034 msgstr ""
25035
25036 #. type: verbatim
25037 #: ../fish/guestfish-actions.pod:2848
25038 #, no-wrap
25039 msgid ""
25040 " lvrename logvol newlogvol\n"
25041 "\n"
25042 msgstr ""
25043
25044 #. type: =head2
25045 #: ../fish/guestfish-actions.pod:2852
25046 msgid "lvresize"
25047 msgstr ""
25048
25049 #. type: verbatim
25050 #: ../fish/guestfish-actions.pod:2854
25051 #, no-wrap
25052 msgid ""
25053 " lvresize device mbytes\n"
25054 "\n"
25055 msgstr ""
25056
25057 #. type: =head2
25058 #: ../fish/guestfish-actions.pod:2860
25059 msgid "lvresize-free"
25060 msgstr ""
25061
25062 #. type: verbatim
25063 #: ../fish/guestfish-actions.pod:2862
25064 #, no-wrap
25065 msgid ""
25066 " lvresize-free lv percent\n"
25067 "\n"
25068 msgstr ""
25069
25070 #. type: =head2
25071 #: ../fish/guestfish-actions.pod:2870
25072 msgid "lvs"
25073 msgstr ""
25074
25075 #. type: verbatim
25076 #: ../fish/guestfish-actions.pod:2872
25077 #, no-wrap
25078 msgid ""
25079 " lvs\n"
25080 "\n"
25081 msgstr ""
25082
25083 #. type: textblock
25084 #: ../fish/guestfish-actions.pod:2880
25085 msgid "See also L</lvs-full>, L</list-filesystems>."
25086 msgstr ""
25087
25088 #. type: =head2
25089 #: ../fish/guestfish-actions.pod:2882
25090 msgid "lvs-full"
25091 msgstr ""
25092
25093 #. type: verbatim
25094 #: ../fish/guestfish-actions.pod:2884
25095 #, no-wrap
25096 msgid ""
25097 " lvs-full\n"
25098 "\n"
25099 msgstr ""
25100
25101 #. type: =head2
25102 #: ../fish/guestfish-actions.pod:2889
25103 msgid "lvuuid"
25104 msgstr ""
25105
25106 #. type: verbatim
25107 #: ../fish/guestfish-actions.pod:2891
25108 #, no-wrap
25109 msgid ""
25110 " lvuuid device\n"
25111 "\n"
25112 msgstr ""
25113
25114 #. type: =head2
25115 #: ../fish/guestfish-actions.pod:2895
25116 msgid "lxattrlist"
25117 msgstr ""
25118
25119 #. type: verbatim
25120 #: ../fish/guestfish-actions.pod:2897
25121 #, no-wrap
25122 msgid ""
25123 " lxattrlist path 'names ...'\n"
25124 "\n"
25125 msgstr ""
25126
25127 #. type: textblock
25128 #: ../fish/guestfish-actions.pod:2913
25129 msgid ""
25130 "This call is intended for programs that want to efficiently list a directory "
25131 "contents without making many round-trips.  See also L</lstatlist> for a "
25132 "similarly efficient call for getting standard stats.  Very long directory "
25133 "listings might cause the protocol message size to be exceeded, causing this "
25134 "call to fail.  The caller must split up such requests into smaller groups of "
25135 "names."
25136 msgstr ""
25137
25138 #. type: =head2
25139 #: ../fish/guestfish-actions.pod:2921
25140 msgid "mkdir"
25141 msgstr ""
25142
25143 #. type: verbatim
25144 #: ../fish/guestfish-actions.pod:2923
25145 #, no-wrap
25146 msgid ""
25147 " mkdir path\n"
25148 "\n"
25149 msgstr ""
25150
25151 #. type: =head2
25152 #: ../fish/guestfish-actions.pod:2927
25153 msgid "mkdir-mode"
25154 msgstr ""
25155
25156 #. type: verbatim
25157 #: ../fish/guestfish-actions.pod:2929
25158 #, no-wrap
25159 msgid ""
25160 " mkdir-mode path mode\n"
25161 "\n"
25162 msgstr ""
25163
25164 #. type: textblock
25165 #: ../fish/guestfish-actions.pod:2938
25166 msgid "See also L</mkdir>, L</umask>"
25167 msgstr ""
25168
25169 #. type: =head2
25170 #: ../fish/guestfish-actions.pod:2940
25171 msgid "mkdir-p"
25172 msgstr ""
25173
25174 #. type: verbatim
25175 #: ../fish/guestfish-actions.pod:2942
25176 #, no-wrap
25177 msgid ""
25178 " mkdir-p path\n"
25179 "\n"
25180 msgstr ""
25181
25182 #. type: =head2
25183 #: ../fish/guestfish-actions.pod:2947
25184 msgid "mkdtemp"
25185 msgstr ""
25186
25187 #. type: verbatim
25188 #: ../fish/guestfish-actions.pod:2949
25189 #, no-wrap
25190 msgid ""
25191 " mkdtemp template\n"
25192 "\n"
25193 msgstr ""
25194
25195 #. type: =head2
25196 #: ../fish/guestfish-actions.pod:2970
25197 msgid "mke2fs-J"
25198 msgstr ""
25199
25200 #. type: verbatim
25201 #: ../fish/guestfish-actions.pod:2972
25202 #, no-wrap
25203 msgid ""
25204 " mke2fs-J fstype blocksize device journal\n"
25205 "\n"
25206 msgstr ""
25207
25208 #. type: textblock
25209 #: ../fish/guestfish-actions.pod:2980
25210 msgid "See also L</mke2journal>."
25211 msgstr ""
25212
25213 #. type: =head2
25214 #: ../fish/guestfish-actions.pod:2982
25215 msgid "mke2fs-JL"
25216 msgstr ""
25217
25218 #. type: verbatim
25219 #: ../fish/guestfish-actions.pod:2984
25220 #, no-wrap
25221 msgid ""
25222 " mke2fs-JL fstype blocksize device label\n"
25223 "\n"
25224 msgstr ""
25225
25226 #. type: textblock
25227 #: ../fish/guestfish-actions.pod:2989
25228 msgid "See also L</mke2journal-L>."
25229 msgstr ""
25230
25231 #. type: =head2
25232 #: ../fish/guestfish-actions.pod:2991
25233 msgid "mke2fs-JU"
25234 msgstr ""
25235
25236 #. type: verbatim
25237 #: ../fish/guestfish-actions.pod:2993
25238 #, no-wrap
25239 msgid ""
25240 " mke2fs-JU fstype blocksize device uuid\n"
25241 "\n"
25242 msgstr ""
25243
25244 #. type: textblock
25245 #: ../fish/guestfish-actions.pod:2998
25246 msgid "See also L</mke2journal-U>."
25247 msgstr ""
25248
25249 #. type: =head2
25250 #: ../fish/guestfish-actions.pod:3000
25251 msgid "mke2journal"
25252 msgstr ""
25253
25254 #. type: verbatim
25255 #: ../fish/guestfish-actions.pod:3002
25256 #, no-wrap
25257 msgid ""
25258 " mke2journal blocksize device\n"
25259 "\n"
25260 msgstr ""
25261
25262 #. type: =head2
25263 #: ../fish/guestfish-actions.pod:3009
25264 msgid "mke2journal-L"
25265 msgstr ""
25266
25267 #. type: verbatim
25268 #: ../fish/guestfish-actions.pod:3011
25269 #, no-wrap
25270 msgid ""
25271 " mke2journal-L blocksize label device\n"
25272 "\n"
25273 msgstr ""
25274
25275 #. type: =head2
25276 #: ../fish/guestfish-actions.pod:3015
25277 msgid "mke2journal-U"
25278 msgstr ""
25279
25280 #. type: verbatim
25281 #: ../fish/guestfish-actions.pod:3017
25282 #, no-wrap
25283 msgid ""
25284 " mke2journal-U blocksize uuid device\n"
25285 "\n"
25286 msgstr ""
25287
25288 #. type: =head2
25289 #: ../fish/guestfish-actions.pod:3021
25290 msgid "mkfifo"
25291 msgstr ""
25292
25293 #. type: verbatim
25294 #: ../fish/guestfish-actions.pod:3023
25295 #, no-wrap
25296 msgid ""
25297 " mkfifo mode path\n"
25298 "\n"
25299 msgstr ""
25300
25301 #. type: textblock
25302 #: ../fish/guestfish-actions.pod:3025
25303 msgid ""
25304 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25305 "is just a convenient wrapper around L</mknod>."
25306 msgstr ""
25307
25308 #. type: =head2
25309 #: ../fish/guestfish-actions.pod:3031
25310 msgid "mkfs"
25311 msgstr ""
25312
25313 #. type: verbatim
25314 #: ../fish/guestfish-actions.pod:3033
25315 #, no-wrap
25316 msgid ""
25317 " mkfs fstype device\n"
25318 "\n"
25319 msgstr ""
25320
25321 #. type: =head2
25322 #: ../fish/guestfish-actions.pod:3039
25323 msgid "mkfs-b"
25324 msgstr ""
25325
25326 #. type: verbatim
25327 #: ../fish/guestfish-actions.pod:3041
25328 #, no-wrap
25329 msgid ""
25330 " mkfs-b fstype blocksize device\n"
25331 "\n"
25332 msgstr ""
25333
25334 #. type: textblock
25335 #: ../fish/guestfish-actions.pod:3043
25336 msgid ""
25337 "This call is similar to L</mkfs>, but it allows you to control the block "
25338 "size of the resulting filesystem.  Supported block sizes depend on the "
25339 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25340 msgstr ""
25341
25342 #. type: =head2
25343 #: ../fish/guestfish-actions.pod:3058
25344 msgid "mkfs-opts"
25345 msgstr ""
25346
25347 #. type: verbatim
25348 #: ../fish/guestfish-actions.pod:3060
25349 #, no-wrap
25350 msgid ""
25351 " mkfs-opts fstype device [blocksize:..] [features:..] [inode:..] "
25352 "[sectorsize:..]\n"
25353 "\n"
25354 msgstr ""
25355
25356 #. type: =head2
25357 #: ../fish/guestfish-actions.pod:3105
25358 msgid "mkmountpoint"
25359 msgstr ""
25360
25361 #. type: verbatim
25362 #: ../fish/guestfish-actions.pod:3107
25363 #, no-wrap
25364 msgid ""
25365 " mkmountpoint exemptpath\n"
25366 "\n"
25367 msgstr ""
25368
25369 #. type: textblock
25370 #: ../fish/guestfish-actions.pod:3109
25371 msgid ""
25372 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25373 "to create extra mountpoints before mounting the first filesystem."
25374 msgstr ""
25375
25376 #. type: textblock
25377 #: ../fish/guestfish-actions.pod:3133
25378 msgid ""
25379 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25380 "unexpected errors if you try to mix these calls.  It is safest to manually "
25381 "unmount filesystems and remove mountpoints after use."
25382 msgstr ""
25383
25384 #. type: textblock
25385 #: ../fish/guestfish-actions.pod:3137
25386 msgid ""
25387 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25388 "for this to work for manual mountpoints, you must ensure that the innermost "
25389 "mountpoints have the longest pathnames, as in the example code above."
25390 msgstr ""
25391
25392 #. type: textblock
25393 #: ../fish/guestfish-actions.pod:3144
25394 msgid ""
25395 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25396 "L</umount-all> to be called when the handle is closed which can also trigger "
25397 "these issues."
25398 msgstr ""
25399
25400 #. type: =head2
25401 #: ../fish/guestfish-actions.pod:3148
25402 msgid "mknod"
25403 msgstr ""
25404
25405 #. type: verbatim
25406 #: ../fish/guestfish-actions.pod:3150
25407 #, no-wrap
25408 msgid ""
25409 " mknod mode devmajor devminor path\n"
25410 "\n"
25411 msgstr ""
25412
25413 #. type: textblock
25414 #: ../fish/guestfish-actions.pod:3160
25415 msgid ""
25416 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25417 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25418 "regular file).  These constants are available in the standard Linux header "
25419 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25420 "wrappers around this command which bitwise OR in the appropriate constant "
25421 "for you."
25422 msgstr ""
25423
25424 #. type: =head2
25425 #: ../fish/guestfish-actions.pod:3170
25426 msgid "mknod-b"
25427 msgstr ""
25428
25429 #. type: verbatim
25430 #: ../fish/guestfish-actions.pod:3172
25431 #, no-wrap
25432 msgid ""
25433 " mknod-b mode devmajor devminor path\n"
25434 "\n"
25435 msgstr ""
25436
25437 #. type: textblock
25438 #: ../fish/guestfish-actions.pod:3174
25439 msgid ""
25440 "This call creates a block device node called C<path> with mode C<mode> and "
25441 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25442 "wrapper around L</mknod>."
25443 msgstr ""
25444
25445 #. type: =head2
25446 #: ../fish/guestfish-actions.pod:3180
25447 msgid "mknod-c"
25448 msgstr ""
25449
25450 #. type: verbatim
25451 #: ../fish/guestfish-actions.pod:3182
25452 #, no-wrap
25453 msgid ""
25454 " mknod-c mode devmajor devminor path\n"
25455 "\n"
25456 msgstr ""
25457
25458 #. type: textblock
25459 #: ../fish/guestfish-actions.pod:3184
25460 msgid ""
25461 "This call creates a char device node called C<path> with mode C<mode> and "
25462 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25463 "wrapper around L</mknod>."
25464 msgstr ""
25465
25466 #. type: =head2
25467 #: ../fish/guestfish-actions.pod:3190
25468 msgid "mkswap"
25469 msgstr ""
25470
25471 #. type: verbatim
25472 #: ../fish/guestfish-actions.pod:3192
25473 #, no-wrap
25474 msgid ""
25475 " mkswap device\n"
25476 "\n"
25477 msgstr ""
25478
25479 #. type: =head2
25480 #: ../fish/guestfish-actions.pod:3196
25481 msgid "mkswap-L"
25482 msgstr ""
25483
25484 #. type: verbatim
25485 #: ../fish/guestfish-actions.pod:3198
25486 #, no-wrap
25487 msgid ""
25488 " mkswap-L label device\n"
25489 "\n"
25490 msgstr ""
25491
25492 #. type: =head2
25493 #: ../fish/guestfish-actions.pod:3206
25494 msgid "mkswap-U"
25495 msgstr ""
25496
25497 #. type: verbatim
25498 #: ../fish/guestfish-actions.pod:3208
25499 #, no-wrap
25500 msgid ""
25501 " mkswap-U uuid device\n"
25502 "\n"
25503 msgstr ""
25504
25505 #. type: =head2
25506 #: ../fish/guestfish-actions.pod:3212
25507 msgid "mkswap-file"
25508 msgstr ""
25509
25510 #. type: verbatim
25511 #: ../fish/guestfish-actions.pod:3214
25512 #, no-wrap
25513 msgid ""
25514 " mkswap-file path\n"
25515 "\n"
25516 msgstr ""
25517
25518 #. type: textblock
25519 #: ../fish/guestfish-actions.pod:3218
25520 msgid ""
25521 "This command just writes a swap file signature to an existing file.  To "
25522 "create the file itself, use something like L</fallocate>."
25523 msgstr ""
25524
25525 #. type: =head2
25526 #: ../fish/guestfish-actions.pod:3221
25527 msgid "modprobe"
25528 msgstr ""
25529
25530 #. type: verbatim
25531 #: ../fish/guestfish-actions.pod:3223
25532 #, no-wrap
25533 msgid ""
25534 " modprobe modulename\n"
25535 "\n"
25536 msgstr ""
25537
25538 #. type: =head2
25539 #: ../fish/guestfish-actions.pod:3230
25540 msgid "mount"
25541 msgstr ""
25542
25543 #. type: verbatim
25544 #: ../fish/guestfish-actions.pod:3232
25545 #, no-wrap
25546 msgid ""
25547 " mount device mountpoint\n"
25548 "\n"
25549 msgstr ""
25550
25551 #. type: textblock
25552 #: ../fish/guestfish-actions.pod:3248
25553 msgid ""
25554 "B<Important note:> When you use this call, the filesystem options C<sync> "
25555 "and C<noatime> are set implicitly.  This was originally done because we "
25556 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25557 "very large negative performance impact and negligible effect on "
25558 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25559 "code that needs performance, and instead use L</mount-options> (use an empty "
25560 "string for the first parameter if you don't want any options)."
25561 msgstr ""
25562
25563 #. type: =head2
25564 #: ../fish/guestfish-actions.pod:3265
25565 msgid "mount-9p"
25566 msgstr ""
25567
25568 #. type: verbatim
25569 #: ../fish/guestfish-actions.pod:3267
25570 #, no-wrap
25571 msgid ""
25572 " mount-9p mounttag mountpoint [options:..]\n"
25573 "\n"
25574 msgstr ""
25575
25576 #. type: =head2
25577 #: ../fish/guestfish-actions.pod:3278
25578 msgid "mount-loop"
25579 msgstr ""
25580
25581 #. type: verbatim
25582 #: ../fish/guestfish-actions.pod:3280
25583 #, no-wrap
25584 msgid ""
25585 " mount-loop file mountpoint\n"
25586 "\n"
25587 msgstr ""
25588
25589 #. type: =head2
25590 #: ../fish/guestfish-actions.pod:3286
25591 msgid "mount-options"
25592 msgstr ""
25593
25594 #. type: verbatim
25595 #: ../fish/guestfish-actions.pod:3288
25596 #, no-wrap
25597 msgid ""
25598 " mount-options options device mountpoint\n"
25599 "\n"
25600 msgstr ""
25601
25602 #. type: textblock
25603 #: ../fish/guestfish-actions.pod:3290
25604 msgid ""
25605 "This is the same as the L</mount> command, but it allows you to set the "
25606 "mount options as for the L<mount(8)> I<-o> flag."
25607 msgstr ""
25608
25609 #. type: =head2
25610 #: ../fish/guestfish-actions.pod:3298
25611 msgid "mount-ro"
25612 msgstr ""
25613
25614 #. type: verbatim
25615 #: ../fish/guestfish-actions.pod:3300
25616 #, no-wrap
25617 msgid ""
25618 " mount-ro device mountpoint\n"
25619 "\n"
25620 msgstr ""
25621
25622 #. type: textblock
25623 #: ../fish/guestfish-actions.pod:3302
25624 msgid ""
25625 "This is the same as the L</mount> command, but it mounts the filesystem with "
25626 "the read-only (I<-o ro>) flag."
25627 msgstr ""
25628
25629 #. type: =head2
25630 #: ../fish/guestfish-actions.pod:3305
25631 msgid "mount-vfs"
25632 msgstr ""
25633
25634 #. type: verbatim
25635 #: ../fish/guestfish-actions.pod:3307
25636 #, no-wrap
25637 msgid ""
25638 " mount-vfs options vfstype device mountpoint\n"
25639 "\n"
25640 msgstr ""
25641
25642 #. type: textblock
25643 #: ../fish/guestfish-actions.pod:3309
25644 msgid ""
25645 "This is the same as the L</mount> command, but it allows you to set both the "
25646 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25647 msgstr ""
25648
25649 #. type: =head2
25650 #: ../fish/guestfish-actions.pod:3313
25651 msgid "mountpoints"
25652 msgstr ""
25653
25654 #. type: verbatim
25655 #: ../fish/guestfish-actions.pod:3315
25656 #, no-wrap
25657 msgid ""
25658 " mountpoints\n"
25659 "\n"
25660 msgstr ""
25661
25662 #. type: textblock
25663 #: ../fish/guestfish-actions.pod:3317
25664 msgid ""
25665 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25666 "This one returns a hash table (map) of device name to directory where the "
25667 "device is mounted."
25668 msgstr ""
25669
25670 #. type: =head2
25671 #: ../fish/guestfish-actions.pod:3321
25672 msgid "mounts"
25673 msgstr ""
25674
25675 #. type: verbatim
25676 #: ../fish/guestfish-actions.pod:3323
25677 #, no-wrap
25678 msgid ""
25679 " mounts\n"
25680 "\n"
25681 msgstr ""
25682
25683 #. type: textblock
25684 #: ../fish/guestfish-actions.pod:3330
25685 msgid "See also: L</mountpoints>"
25686 msgstr ""
25687
25688 #. type: =head2
25689 #: ../fish/guestfish-actions.pod:3332
25690 msgid "mv"
25691 msgstr ""
25692
25693 #. type: verbatim
25694 #: ../fish/guestfish-actions.pod:3334
25695 #, no-wrap
25696 msgid ""
25697 " mv src dest\n"
25698 "\n"
25699 msgstr ""
25700
25701 #. type: =head2
25702 #: ../fish/guestfish-actions.pod:3339
25703 msgid "ntfs-3g-probe"
25704 msgstr ""
25705
25706 #. type: verbatim
25707 #: ../fish/guestfish-actions.pod:3341
25708 #, no-wrap
25709 msgid ""
25710 " ntfs-3g-probe true|false device\n"
25711 "\n"
25712 msgstr ""
25713
25714 #. type: =head2
25715 #: ../fish/guestfish-actions.pod:3355
25716 msgid "ntfsresize"
25717 msgstr ""
25718
25719 #. type: verbatim
25720 #: ../fish/guestfish-actions.pod:3357
25721 #, no-wrap
25722 msgid ""
25723 " ntfsresize device\n"
25724 "\n"
25725 msgstr ""
25726
25727 #. type: =head2
25728 #: ../fish/guestfish-actions.pod:3379
25729 msgid "ntfsresize-opts"
25730 msgstr ""
25731
25732 #. type: verbatim
25733 #: ../fish/guestfish-actions.pod:3381
25734 #, no-wrap
25735 msgid ""
25736 " ntfsresize-opts device [size:..] [force:..]\n"
25737 "\n"
25738 msgstr ""
25739
25740 #. type: textblock
25741 #: ../fish/guestfish-actions.pod:3400
25742 msgid ""
25743 "After the resize operation, the filesystem is always marked as requiring a "
25744 "consistency check (for safety).  You have to boot into Windows to perform "
25745 "this check and clear this condition.  If you I<don't> set the C<force> "
25746 "option then it is not possible to call L</ntfsresize-opts> multiple times on "
25747 "a single filesystem without booting into Windows between each resize."
25748 msgstr ""
25749
25750 #. type: =head2
25751 #: ../fish/guestfish-actions.pod:3413
25752 msgid "ntfsresize-size"
25753 msgstr ""
25754
25755 #. type: verbatim
25756 #: ../fish/guestfish-actions.pod:3415
25757 #, no-wrap
25758 msgid ""
25759 " ntfsresize-size device size\n"
25760 "\n"
25761 msgstr ""
25762
25763 #. type: textblock
25764 #: ../fish/guestfish-actions.pod:3417
25765 msgid ""
25766 "This command is the same as L</ntfsresize> except that it allows you to "
25767 "specify the new size (in bytes) explicitly."
25768 msgstr ""
25769
25770 #. type: =head2
25771 #: ../fish/guestfish-actions.pod:3427
25772 msgid "part-add"
25773 msgstr ""
25774
25775 #. type: verbatim
25776 #: ../fish/guestfish-actions.pod:3429
25777 #, no-wrap
25778 msgid ""
25779 " part-add device prlogex startsect endsect\n"
25780 "\n"
25781 msgstr ""
25782
25783 #. type: textblock
25784 #: ../fish/guestfish-actions.pod:3431
25785 msgid ""
25786 "This command adds a partition to C<device>.  If there is no partition table "
25787 "on the device, call L</part-init> first."
25788 msgstr ""
25789
25790 #. type: textblock
25791 #: ../fish/guestfish-actions.pod:3443
25792 msgid ""
25793 "Creating a partition which covers the whole disk is not so easy.  Use "
25794 "L</part-disk> to do that."
25795 msgstr ""
25796
25797 #. type: =head2
25798 #: ../fish/guestfish-actions.pod:3446
25799 msgid "part-del"
25800 msgstr ""
25801
25802 #. type: verbatim
25803 #: ../fish/guestfish-actions.pod:3448
25804 #, no-wrap
25805 msgid ""
25806 " part-del device partnum\n"
25807 "\n"
25808 msgstr ""
25809
25810 #. type: =head2
25811 #: ../fish/guestfish-actions.pod:3456
25812 msgid "part-disk"
25813 msgstr ""
25814
25815 #. type: verbatim
25816 #: ../fish/guestfish-actions.pod:3458
25817 #, no-wrap
25818 msgid ""
25819 " part-disk device parttype\n"
25820 "\n"
25821 msgstr ""
25822
25823 #. type: textblock
25824 #: ../fish/guestfish-actions.pod:3460
25825 msgid ""
25826 "This command is simply a combination of L</part-init> followed by "
25827 "L</part-add> to create a single primary partition covering the whole disk."
25828 msgstr ""
25829
25830 #. type: textblock
25831 #: ../fish/guestfish-actions.pod:3464
25832 msgid ""
25833 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25834 "possible values are described in L</part-init>."
25835 msgstr ""
25836
25837 #. type: =head2
25838 #: ../fish/guestfish-actions.pod:3470
25839 msgid "part-get-bootable"
25840 msgstr ""
25841
25842 #. type: verbatim
25843 #: ../fish/guestfish-actions.pod:3472
25844 #, no-wrap
25845 msgid ""
25846 " part-get-bootable device partnum\n"
25847 "\n"
25848 msgstr ""
25849
25850 #. type: textblock
25851 #: ../fish/guestfish-actions.pod:3477
25852 msgid "See also L</part-set-bootable>."
25853 msgstr ""
25854
25855 #. type: =head2
25856 #: ../fish/guestfish-actions.pod:3479
25857 msgid "part-get-mbr-id"
25858 msgstr ""
25859
25860 #. type: verbatim
25861 #: ../fish/guestfish-actions.pod:3481
25862 #, no-wrap
25863 msgid ""
25864 " part-get-mbr-id device partnum\n"
25865 "\n"
25866 msgstr ""
25867
25868 #. type: textblock
25869 #: ../fish/guestfish-actions.pod:3486 ../fish/guestfish-actions.pod:3624
25870 msgid ""
25871 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25872 "undefined results for other partition table types (see "
25873 "L</part-get-parttype>)."
25874 msgstr ""
25875
25876 #. type: =head2
25877 #: ../fish/guestfish-actions.pod:3490
25878 msgid "part-get-parttype"
25879 msgstr ""
25880
25881 #. type: verbatim
25882 #: ../fish/guestfish-actions.pod:3492
25883 #, no-wrap
25884 msgid ""
25885 " part-get-parttype device\n"
25886 "\n"
25887 msgstr ""
25888
25889 #. type: textblock
25890 #: ../fish/guestfish-actions.pod:3497
25891 msgid ""
25892 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25893 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25894 "possible, although unusual.  See L</part-init> for a full list."
25895 msgstr ""
25896
25897 #. type: =head2
25898 #: ../fish/guestfish-actions.pod:3502
25899 msgid "part-init"
25900 msgstr ""
25901
25902 #. type: verbatim
25903 #: ../fish/guestfish-actions.pod:3504
25904 #, no-wrap
25905 msgid ""
25906 " part-init device parttype\n"
25907 "\n"
25908 msgstr ""
25909
25910 #. type: textblock
25911 #: ../fish/guestfish-actions.pod:3510
25912 msgid ""
25913 "Initially there are no partitions.  Following this, you should call "
25914 "L</part-add> for each partition required."
25915 msgstr ""
25916
25917 #. type: =head2
25918 #: ../fish/guestfish-actions.pod:3573
25919 msgid "part-list"
25920 msgstr ""
25921
25922 #. type: verbatim
25923 #: ../fish/guestfish-actions.pod:3575
25924 #, no-wrap
25925 msgid ""
25926 " part-list device\n"
25927 "\n"
25928 msgstr ""
25929
25930 #. type: textblock
25931 #: ../fish/guestfish-actions.pod:3590
25932 msgid ""
25933 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25934 "the device's sector size, see L</blockdev-getss>."
25935 msgstr ""
25936
25937 #. type: =head2
25938 #: ../fish/guestfish-actions.pod:3603
25939 msgid "part-set-bootable"
25940 msgstr ""
25941
25942 #. type: verbatim
25943 #: ../fish/guestfish-actions.pod:3605
25944 #, no-wrap
25945 msgid ""
25946 " part-set-bootable device partnum true|false\n"
25947 "\n"
25948 msgstr ""
25949
25950 #. type: =head2
25951 #: ../fish/guestfish-actions.pod:3614
25952 msgid "part-set-mbr-id"
25953 msgstr ""
25954
25955 #. type: verbatim
25956 #: ../fish/guestfish-actions.pod:3616
25957 #, no-wrap
25958 msgid ""
25959 " part-set-mbr-id device partnum idbyte\n"
25960 "\n"
25961 msgstr ""
25962
25963 #. type: =head2
25964 #: ../fish/guestfish-actions.pod:3628
25965 msgid "part-set-name"
25966 msgstr ""
25967
25968 #. type: verbatim
25969 #: ../fish/guestfish-actions.pod:3630
25970 #, no-wrap
25971 msgid ""
25972 " part-set-name device partnum name\n"
25973 "\n"
25974 msgstr ""
25975
25976 #. type: =head2
25977 #: ../fish/guestfish-actions.pod:3638
25978 msgid "part-to-dev"
25979 msgstr ""
25980
25981 #. type: verbatim
25982 #: ../fish/guestfish-actions.pod:3640
25983 #, no-wrap
25984 msgid ""
25985 " part-to-dev partition\n"
25986 "\n"
25987 msgstr ""
25988
25989 #. type: textblock
25990 #: ../fish/guestfish-actions.pod:3646
25991 msgid ""
25992 "The named partition must exist, for example as a string returned from "
25993 "L</list-partitions>."
25994 msgstr ""
25995
25996 #. type: =head2
25997 #: ../fish/guestfish-actions.pod:3649
25998 msgid "ping-daemon"
25999 msgstr ""
26000
26001 #. type: verbatim
26002 #: ../fish/guestfish-actions.pod:3651
26003 #, no-wrap
26004 msgid ""
26005 " ping-daemon\n"
26006 "\n"
26007 msgstr ""
26008
26009 #. type: =head2
26010 #: ../fish/guestfish-actions.pod:3658
26011 msgid "pread"
26012 msgstr ""
26013
26014 #. type: verbatim
26015 #: ../fish/guestfish-actions.pod:3660
26016 #, no-wrap
26017 msgid ""
26018 " pread path count offset\n"
26019 "\n"
26020 msgstr ""
26021
26022 #. type: textblock
26023 #: ../fish/guestfish-actions.pod:3668
26024 msgid "See also L</pwrite>, L</pread-device>."
26025 msgstr ""
26026
26027 #. type: =head2
26028 #: ../fish/guestfish-actions.pod:3673
26029 msgid "pread-device"
26030 msgstr ""
26031
26032 #. type: verbatim
26033 #: ../fish/guestfish-actions.pod:3675
26034 #, no-wrap
26035 msgid ""
26036 " pread-device device count offset\n"
26037 "\n"
26038 msgstr ""
26039
26040 #. type: textblock
26041 #: ../fish/guestfish-actions.pod:3683
26042 msgid "See also L</pread>."
26043 msgstr ""
26044
26045 #. type: =head2
26046 #: ../fish/guestfish-actions.pod:3688
26047 msgid "pvcreate"
26048 msgstr ""
26049
26050 #. type: verbatim
26051 #: ../fish/guestfish-actions.pod:3690
26052 #, no-wrap
26053 msgid ""
26054 " pvcreate device\n"
26055 "\n"
26056 msgstr ""
26057
26058 #. type: =head2
26059 #: ../fish/guestfish-actions.pod:3696
26060 msgid "pvremove"
26061 msgstr ""
26062
26063 #. type: verbatim
26064 #: ../fish/guestfish-actions.pod:3698
26065 #, no-wrap
26066 msgid ""
26067 " pvremove device\n"
26068 "\n"
26069 msgstr ""
26070
26071 #. type: =head2
26072 #: ../fish/guestfish-actions.pod:3707
26073 msgid "pvresize"
26074 msgstr ""
26075
26076 #. type: verbatim
26077 #: ../fish/guestfish-actions.pod:3709
26078 #, no-wrap
26079 msgid ""
26080 " pvresize device\n"
26081 "\n"
26082 msgstr ""
26083
26084 #. type: =head2
26085 #: ../fish/guestfish-actions.pod:3714
26086 msgid "pvresize-size"
26087 msgstr ""
26088
26089 #. type: verbatim
26090 #: ../fish/guestfish-actions.pod:3716
26091 #, no-wrap
26092 msgid ""
26093 " pvresize-size device size\n"
26094 "\n"
26095 msgstr ""
26096
26097 #. type: textblock
26098 #: ../fish/guestfish-actions.pod:3718
26099 msgid ""
26100 "This command is the same as L</pvresize> except that it allows you to "
26101 "specify the new size (in bytes) explicitly."
26102 msgstr ""
26103
26104 #. type: =head2
26105 #: ../fish/guestfish-actions.pod:3721
26106 msgid "pvs"
26107 msgstr ""
26108
26109 #. type: verbatim
26110 #: ../fish/guestfish-actions.pod:3723
26111 #, no-wrap
26112 msgid ""
26113 " pvs\n"
26114 "\n"
26115 msgstr ""
26116
26117 #. type: textblock
26118 #: ../fish/guestfish-actions.pod:3731
26119 msgid "See also L</pvs-full>."
26120 msgstr ""
26121
26122 #. type: =head2
26123 #: ../fish/guestfish-actions.pod:3733
26124 msgid "pvs-full"
26125 msgstr ""
26126
26127 #. type: verbatim
26128 #: ../fish/guestfish-actions.pod:3735
26129 #, no-wrap
26130 msgid ""
26131 " pvs-full\n"
26132 "\n"
26133 msgstr ""
26134
26135 #. type: =head2
26136 #: ../fish/guestfish-actions.pod:3740
26137 msgid "pvuuid"
26138 msgstr ""
26139
26140 #. type: verbatim
26141 #: ../fish/guestfish-actions.pod:3742
26142 #, no-wrap
26143 msgid ""
26144 " pvuuid device\n"
26145 "\n"
26146 msgstr ""
26147
26148 #. type: =head2
26149 #: ../fish/guestfish-actions.pod:3746
26150 msgid "pwrite"
26151 msgstr ""
26152
26153 #. type: verbatim
26154 #: ../fish/guestfish-actions.pod:3748
26155 #, no-wrap
26156 msgid ""
26157 " pwrite path content offset\n"
26158 "\n"
26159 msgstr ""
26160
26161 #. type: textblock
26162 #: ../fish/guestfish-actions.pod:3759
26163 msgid "See also L</pread>, L</pwrite-device>."
26164 msgstr ""
26165
26166 #. type: =head2
26167 #: ../fish/guestfish-actions.pod:3764
26168 msgid "pwrite-device"
26169 msgstr ""
26170
26171 #. type: verbatim
26172 #: ../fish/guestfish-actions.pod:3766
26173 #, no-wrap
26174 msgid ""
26175 " pwrite-device device content offset\n"
26176 "\n"
26177 msgstr ""
26178
26179 #. type: textblock
26180 #: ../fish/guestfish-actions.pod:3776
26181 msgid "See also L</pwrite>."
26182 msgstr ""
26183
26184 #. type: =head2
26185 #: ../fish/guestfish-actions.pod:3781
26186 msgid "read-file"
26187 msgstr ""
26188
26189 #. type: verbatim
26190 #: ../fish/guestfish-actions.pod:3783
26191 #, no-wrap
26192 msgid ""
26193 " read-file path\n"
26194 "\n"
26195 msgstr ""
26196
26197 #. type: textblock
26198 #: ../fish/guestfish-actions.pod:3788
26199 msgid ""
26200 "Unlike L</cat>, this function can correctly handle files that contain "
26201 "embedded ASCII NUL characters.  However unlike L</download>, this function "
26202 "is limited in the total size of file that can be handled."
26203 msgstr ""
26204
26205 #. type: =head2
26206 #: ../fish/guestfish-actions.pod:3796
26207 msgid "read-lines"
26208 msgstr ""
26209
26210 #. type: verbatim
26211 #: ../fish/guestfish-actions.pod:3798
26212 #, no-wrap
26213 msgid ""
26214 " read-lines path\n"
26215 "\n"
26216 msgstr ""
26217
26218 #. type: textblock
26219 #: ../fish/guestfish-actions.pod:3805
26220 msgid ""
26221 "Note that this function cannot correctly handle binary files (specifically, "
26222 "files containing C<\\0> character which is treated as end of line).  For "
26223 "those you need to use the L</read-file> function which has a more complex "
26224 "interface."
26225 msgstr ""
26226
26227 #. type: =head2
26228 #: ../fish/guestfish-actions.pod:3810
26229 msgid "readdir"
26230 msgstr ""
26231
26232 #. type: verbatim
26233 #: ../fish/guestfish-actions.pod:3812
26234 #, no-wrap
26235 msgid ""
26236 " readdir dir\n"
26237 "\n"
26238 msgstr ""
26239
26240 #. type: textblock
26241 #: ../fish/guestfish-actions.pod:3864
26242 msgid ""
26243 "This function is primarily intended for use by programs.  To get a simple "
26244 "list of names, use L</ls>.  To get a printable directory for human "
26245 "consumption, use L</ll>."
26246 msgstr ""
26247
26248 #. type: =head2
26249 #: ../fish/guestfish-actions.pod:3868
26250 msgid "readlink"
26251 msgstr ""
26252
26253 #. type: verbatim
26254 #: ../fish/guestfish-actions.pod:3870
26255 #, no-wrap
26256 msgid ""
26257 " readlink path\n"
26258 "\n"
26259 msgstr ""
26260
26261 #. type: =head2
26262 #: ../fish/guestfish-actions.pod:3874
26263 msgid "readlinklist"
26264 msgstr ""
26265
26266 #. type: verbatim
26267 #: ../fish/guestfish-actions.pod:3876
26268 #, no-wrap
26269 msgid ""
26270 " readlinklist path 'names ...'\n"
26271 "\n"
26272 msgstr ""
26273
26274 #. type: =head2
26275 #: ../fish/guestfish-actions.pod:3900
26276 msgid "realpath"
26277 msgstr ""
26278
26279 #. type: verbatim
26280 #: ../fish/guestfish-actions.pod:3902
26281 #, no-wrap
26282 msgid ""
26283 " realpath path\n"
26284 "\n"
26285 msgstr ""
26286
26287 #. type: =head2
26288 #: ../fish/guestfish-actions.pod:3907
26289 msgid "removexattr"
26290 msgstr ""
26291
26292 #. type: verbatim
26293 #: ../fish/guestfish-actions.pod:3909
26294 #, no-wrap
26295 msgid ""
26296 " removexattr xattr path\n"
26297 "\n"
26298 msgstr ""
26299
26300 #. type: textblock
26301 #: ../fish/guestfish-actions.pod:3914
26302 msgid "See also: L</lremovexattr>, L<attr(5)>."
26303 msgstr ""
26304
26305 #. type: =head2
26306 #: ../fish/guestfish-actions.pod:3916
26307 msgid "resize2fs"
26308 msgstr ""
26309
26310 #. type: verbatim
26311 #: ../fish/guestfish-actions.pod:3918
26312 #, no-wrap
26313 msgid ""
26314 " resize2fs device\n"
26315 "\n"
26316 msgstr ""
26317
26318 #. type: textblock
26319 #: ../fish/guestfish-actions.pod:3923
26320 msgid ""
26321 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26322 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26323 "gives an error about this and sometimes not.  In any case, it is always safe "
26324 "to call L</e2fsck-f> before calling this function."
26325 msgstr ""
26326
26327 #. type: =head2
26328 #: ../fish/guestfish-actions.pod:3929
26329 msgid "resize2fs-M"
26330 msgstr ""
26331
26332 #. type: verbatim
26333 #: ../fish/guestfish-actions.pod:3931
26334 #, no-wrap
26335 msgid ""
26336 " resize2fs-M device\n"
26337 "\n"
26338 msgstr ""
26339
26340 #. type: textblock
26341 #: ../fish/guestfish-actions.pod:3933
26342 msgid ""
26343 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26344 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26345 "command."
26346 msgstr ""
26347
26348 #. type: textblock
26349 #: ../fish/guestfish-actions.pod:3937
26350 msgid ""
26351 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26352 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26353 "multiplied together, give the resulting size of the minimal filesystem in "
26354 "bytes."
26355 msgstr ""
26356
26357 #. type: =head2
26358 #: ../fish/guestfish-actions.pod:3942
26359 msgid "resize2fs-size"
26360 msgstr ""
26361
26362 #. type: verbatim
26363 #: ../fish/guestfish-actions.pod:3944
26364 #, no-wrap
26365 msgid ""
26366 " resize2fs-size device size\n"
26367 "\n"
26368 msgstr ""
26369
26370 #. type: textblock
26371 #: ../fish/guestfish-actions.pod:3946
26372 msgid ""
26373 "This command is the same as L</resize2fs> except that it allows you to "
26374 "specify the new size (in bytes) explicitly."
26375 msgstr ""
26376
26377 #. type: =head2
26378 #: ../fish/guestfish-actions.pod:3949
26379 msgid "rm"
26380 msgstr ""
26381
26382 #. type: verbatim
26383 #: ../fish/guestfish-actions.pod:3951
26384 #, no-wrap
26385 msgid ""
26386 " rm path\n"
26387 "\n"
26388 msgstr ""
26389
26390 #. type: =head2
26391 #: ../fish/guestfish-actions.pod:3955
26392 msgid "rm-rf"
26393 msgstr ""
26394
26395 #. type: verbatim
26396 #: ../fish/guestfish-actions.pod:3957
26397 #, no-wrap
26398 msgid ""
26399 " rm-rf path\n"
26400 "\n"
26401 msgstr ""
26402
26403 #. type: =head2
26404 #: ../fish/guestfish-actions.pod:3963
26405 msgid "rmdir"
26406 msgstr ""
26407
26408 #. type: verbatim
26409 #: ../fish/guestfish-actions.pod:3965
26410 #, no-wrap
26411 msgid ""
26412 " rmdir path\n"
26413 "\n"
26414 msgstr ""
26415
26416 #. type: =head2
26417 #: ../fish/guestfish-actions.pod:3969
26418 msgid "rmmountpoint"
26419 msgstr ""
26420
26421 #. type: verbatim
26422 #: ../fish/guestfish-actions.pod:3971
26423 #, no-wrap
26424 msgid ""
26425 " rmmountpoint exemptpath\n"
26426 "\n"
26427 msgstr ""
26428
26429 #. type: textblock
26430 #: ../fish/guestfish-actions.pod:3973
26431 msgid ""
26432 "This calls removes a mountpoint that was previously created with "
26433 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
26434 msgstr ""
26435
26436 #. type: =head2
26437 #: ../fish/guestfish-actions.pod:3977
26438 msgid "scrub-device"
26439 msgstr ""
26440
26441 #. type: verbatim
26442 #: ../fish/guestfish-actions.pod:3979
26443 #, no-wrap
26444 msgid ""
26445 " scrub-device device\n"
26446 "\n"
26447 msgstr ""
26448
26449 #. type: =head2
26450 #: ../fish/guestfish-actions.pod:3990
26451 msgid "scrub-file"
26452 msgstr ""
26453
26454 #. type: verbatim
26455 #: ../fish/guestfish-actions.pod:3992
26456 #, no-wrap
26457 msgid ""
26458 " scrub-file file\n"
26459 "\n"
26460 msgstr ""
26461
26462 #. type: =head2
26463 #: ../fish/guestfish-actions.pod:4002
26464 msgid "scrub-freespace"
26465 msgstr ""
26466
26467 #. type: verbatim
26468 #: ../fish/guestfish-actions.pod:4004
26469 #, no-wrap
26470 msgid ""
26471 " scrub-freespace dir\n"
26472 "\n"
26473 msgstr ""
26474
26475 #. type: textblock
26476 #: ../fish/guestfish-actions.pod:4006
26477 msgid ""
26478 "This command creates the directory C<dir> and then fills it with files until "
26479 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26480 "deletes them.  The intention is to scrub any free space on the partition "
26481 "containing C<dir>."
26482 msgstr ""
26483
26484 #. type: =head2
26485 #: ../fish/guestfish-actions.pod:4015
26486 msgid "set-append"
26487 msgstr ""
26488
26489 #. type: =head2
26490 #: ../fish/guestfish-actions.pod:4017
26491 msgid "append"
26492 msgstr ""
26493
26494 #. type: verbatim
26495 #: ../fish/guestfish-actions.pod:4019
26496 #, no-wrap
26497 msgid ""
26498 " set-append append\n"
26499 "\n"
26500 msgstr ""
26501
26502 #. type: =head2
26503 #: ../fish/guestfish-actions.pod:4030
26504 msgid "set-attach-method"
26505 msgstr ""
26506
26507 #. type: =head2
26508 #: ../fish/guestfish-actions.pod:4032
26509 msgid "attach-method"
26510 msgstr ""
26511
26512 #. type: verbatim
26513 #: ../fish/guestfish-actions.pod:4034
26514 #, no-wrap
26515 msgid ""
26516 " set-attach-method attachmethod\n"
26517 "\n"
26518 msgstr ""
26519
26520 #. type: =head2
26521 #: ../fish/guestfish-actions.pod:4056
26522 msgid "set-autosync"
26523 msgstr ""
26524
26525 #. type: =head2
26526 #: ../fish/guestfish-actions.pod:4058
26527 msgid "autosync"
26528 msgstr ""
26529
26530 #. type: verbatim
26531 #: ../fish/guestfish-actions.pod:4060
26532 #, no-wrap
26533 msgid ""
26534 " set-autosync true|false\n"
26535 "\n"
26536 msgstr ""
26537
26538 #. type: =head2
26539 #: ../fish/guestfish-actions.pod:4070
26540 msgid "set-direct"
26541 msgstr ""
26542
26543 #. type: =head2
26544 #: ../fish/guestfish-actions.pod:4072
26545 msgid "direct"
26546 msgstr ""
26547
26548 #. type: verbatim
26549 #: ../fish/guestfish-actions.pod:4074
26550 #, no-wrap
26551 msgid ""
26552 " set-direct true|false\n"
26553 "\n"
26554 msgstr ""
26555
26556 #. type: textblock
26557 #: ../fish/guestfish-actions.pod:4080
26558 msgid ""
26559 "One consequence of this is that log messages aren't caught by the library "
26560 "and handled by L</set-log-message-callback>, but go straight to stdout."
26561 msgstr ""
26562
26563 #. type: =head2
26564 #: ../fish/guestfish-actions.pod:4089
26565 msgid "set-e2label"
26566 msgstr ""
26567
26568 #. type: verbatim
26569 #: ../fish/guestfish-actions.pod:4091
26570 #, no-wrap
26571 msgid ""
26572 " set-e2label device label\n"
26573 "\n"
26574 msgstr ""
26575
26576 #. type: textblock
26577 #: ../fish/guestfish-actions.pod:4097
26578 msgid ""
26579 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26580 "label on a filesystem."
26581 msgstr ""
26582
26583 #. type: =head2
26584 #: ../fish/guestfish-actions.pod:4100
26585 msgid "set-e2uuid"
26586 msgstr ""
26587
26588 #. type: verbatim
26589 #: ../fish/guestfish-actions.pod:4102
26590 #, no-wrap
26591 msgid ""
26592 " set-e2uuid device uuid\n"
26593 "\n"
26594 msgstr ""
26595
26596 #. type: textblock
26597 #: ../fish/guestfish-actions.pod:4109
26598 msgid ""
26599 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26600 "UUID of a filesystem."
26601 msgstr ""
26602
26603 #. type: =head2
26604 #: ../fish/guestfish-actions.pod:4112
26605 msgid "set-memsize"
26606 msgstr ""
26607
26608 #. type: =head2
26609 #: ../fish/guestfish-actions.pod:4114
26610 msgid "memsize"
26611 msgstr ""
26612
26613 #. type: verbatim
26614 #: ../fish/guestfish-actions.pod:4116
26615 #, no-wrap
26616 msgid ""
26617 " set-memsize memsize\n"
26618 "\n"
26619 msgstr ""
26620
26621 #. type: textblock
26622 #: ../fish/guestfish-actions.pod:4118
26623 msgid ""
26624 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26625 "This only has any effect if called before L</launch>."
26626 msgstr ""
26627
26628 #. type: =head2
26629 #: ../fish/guestfish-actions.pod:4129
26630 msgid "set-network"
26631 msgstr ""
26632
26633 #. type: =head2
26634 #: ../fish/guestfish-actions.pod:4131
26635 msgid "network"
26636 msgstr ""
26637
26638 #. type: verbatim
26639 #: ../fish/guestfish-actions.pod:4133
26640 #, no-wrap
26641 msgid ""
26642 " set-network true|false\n"
26643 "\n"
26644 msgstr ""
26645
26646 #. type: textblock
26647 #: ../fish/guestfish-actions.pod:4141
26648 msgid "You must call this before calling L</launch>, otherwise it has no effect."
26649 msgstr ""
26650
26651 #. type: =head2
26652 #: ../fish/guestfish-actions.pod:4144
26653 msgid "set-path"
26654 msgstr ""
26655
26656 #. type: =head2
26657 #: ../fish/guestfish-actions.pod:4146
26658 msgid "path"
26659 msgstr ""
26660
26661 #. type: verbatim
26662 #: ../fish/guestfish-actions.pod:4148
26663 #, no-wrap
26664 msgid ""
26665 " set-path searchpath\n"
26666 "\n"
26667 msgstr ""
26668
26669 #. type: =head2
26670 #: ../fish/guestfish-actions.pod:4157
26671 msgid "set-qemu"
26672 msgstr ""
26673
26674 #. type: =head2
26675 #: ../fish/guestfish-actions.pod:4159
26676 msgid "qemu"
26677 msgstr ""
26678
26679 #. type: verbatim
26680 #: ../fish/guestfish-actions.pod:4161
26681 #, no-wrap
26682 msgid ""
26683 " set-qemu qemu\n"
26684 "\n"
26685 msgstr ""
26686
26687 #. type: =head2
26688 #: ../fish/guestfish-actions.pod:4181
26689 msgid "set-recovery-proc"
26690 msgstr ""
26691
26692 #. type: =head2
26693 #: ../fish/guestfish-actions.pod:4183
26694 msgid "recovery-proc"
26695 msgstr ""
26696
26697 #. type: verbatim
26698 #: ../fish/guestfish-actions.pod:4185
26699 #, no-wrap
26700 msgid ""
26701 " set-recovery-proc true|false\n"
26702 "\n"
26703 msgstr ""
26704
26705 #. type: textblock
26706 #: ../fish/guestfish-actions.pod:4187
26707 msgid ""
26708 "If this is called with the parameter C<false> then L</launch> does not "
26709 "create a recovery process.  The purpose of the recovery process is to stop "
26710 "runaway qemu processes in the case where the main program aborts abruptly."
26711 msgstr ""
26712
26713 #. type: textblock
26714 #: ../fish/guestfish-actions.pod:4192
26715 msgid ""
26716 "This only has any effect if called before L</launch>, and the default is "
26717 "true."
26718 msgstr ""
26719
26720 #. type: =head2
26721 #: ../fish/guestfish-actions.pod:4201
26722 msgid "set-selinux"
26723 msgstr ""
26724
26725 #. type: =head2
26726 #: ../fish/guestfish-actions.pod:4203
26727 msgid "selinux"
26728 msgstr ""
26729
26730 #. type: verbatim
26731 #: ../fish/guestfish-actions.pod:4205
26732 #, no-wrap
26733 msgid ""
26734 " set-selinux true|false\n"
26735 "\n"
26736 msgstr ""
26737
26738 #. type: =head2
26739 #: ../fish/guestfish-actions.pod:4216
26740 msgid "set-trace"
26741 msgstr ""
26742
26743 #. type: =head2
26744 #: ../fish/guestfish-actions.pod:4218
26745 msgid "trace"
26746 msgstr ""
26747
26748 #. type: verbatim
26749 #: ../fish/guestfish-actions.pod:4220
26750 #, no-wrap
26751 msgid ""
26752 " set-trace true|false\n"
26753 "\n"
26754 msgstr ""
26755
26756 #. type: textblock
26757 #: ../fish/guestfish-actions.pod:4232
26758 msgid ""
26759 "Trace messages are normally sent to C<stderr>, unless you register a "
26760 "callback to send them somewhere else (see L</set-event-callback>)."
26761 msgstr ""
26762
26763 #. type: =head2
26764 #: ../fish/guestfish-actions.pod:4236
26765 msgid "set-verbose"
26766 msgstr ""
26767
26768 #. type: =head2
26769 #: ../fish/guestfish-actions.pod:4238
26770 msgid "verbose"
26771 msgstr ""
26772
26773 #. type: verbatim
26774 #: ../fish/guestfish-actions.pod:4240
26775 #, no-wrap
26776 msgid ""
26777 " set-verbose true|false\n"
26778 "\n"
26779 msgstr ""
26780
26781 #. type: textblock
26782 #: ../fish/guestfish-actions.pod:4247
26783 msgid ""
26784 "Verbose messages are normally sent to C<stderr>, unless you register a "
26785 "callback to send them somewhere else (see L</set-event-callback>)."
26786 msgstr ""
26787
26788 #. type: =head2
26789 #: ../fish/guestfish-actions.pod:4251
26790 msgid "setcon"
26791 msgstr ""
26792
26793 #. type: verbatim
26794 #: ../fish/guestfish-actions.pod:4253
26795 #, no-wrap
26796 msgid ""
26797 " setcon context\n"
26798 "\n"
26799 msgstr ""
26800
26801 #. type: =head2
26802 #: ../fish/guestfish-actions.pod:4260
26803 msgid "setxattr"
26804 msgstr ""
26805
26806 #. type: verbatim
26807 #: ../fish/guestfish-actions.pod:4262
26808 #, no-wrap
26809 msgid ""
26810 " setxattr xattr val vallen path\n"
26811 "\n"
26812 msgstr ""
26813
26814 #. type: textblock
26815 #: ../fish/guestfish-actions.pod:4268
26816 msgid "See also: L</lsetxattr>, L<attr(5)>."
26817 msgstr ""
26818
26819 #. type: =head2
26820 #: ../fish/guestfish-actions.pod:4270
26821 msgid "sfdisk"
26822 msgstr ""
26823
26824 #. type: verbatim
26825 #: ../fish/guestfish-actions.pod:4272
26826 #, no-wrap
26827 msgid ""
26828 " sfdisk device cyls heads sectors 'lines ...'\n"
26829 "\n"
26830 msgstr ""
26831
26832 #. type: textblock
26833 #: ../fish/guestfish-actions.pod:4294
26834 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26835 msgstr ""
26836
26837 #. type: =head2
26838 #: ../fish/guestfish-actions.pod:4307
26839 msgid "sfdiskM"
26840 msgstr ""
26841
26842 #. type: verbatim
26843 #: ../fish/guestfish-actions.pod:4309
26844 #, no-wrap
26845 msgid ""
26846 " sfdiskM device 'lines ...'\n"
26847 "\n"
26848 msgstr ""
26849
26850 #. type: textblock
26851 #: ../fish/guestfish-actions.pod:4311
26852 msgid ""
26853 "This is a simplified interface to the L</sfdisk> command, where partition "
26854 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26855 "you don't need to specify the cyls, heads and sectors parameters which were "
26856 "rarely if ever used anyway."
26857 msgstr ""
26858
26859 #. type: textblock
26860 #: ../fish/guestfish-actions.pod:4317
26861 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26862 msgstr ""
26863
26864 #. type: =head2
26865 #: ../fish/guestfish-actions.pod:4330
26866 msgid "sfdisk-N"
26867 msgstr ""
26868
26869 #. type: verbatim
26870 #: ../fish/guestfish-actions.pod:4332
26871 #, no-wrap
26872 msgid ""
26873 " sfdisk-N device partnum cyls heads sectors line\n"
26874 "\n"
26875 msgstr ""
26876
26877 #. type: textblock
26878 #: ../fish/guestfish-actions.pod:4337
26879 msgid ""
26880 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26881 "cyls/heads/sectors parameters."
26882 msgstr ""
26883
26884 #. type: textblock
26885 #: ../fish/guestfish-actions.pod:4340
26886 msgid "See also: L</part-add>"
26887 msgstr ""
26888
26889 #. type: =head2
26890 #: ../fish/guestfish-actions.pod:4352
26891 msgid "sfdisk-disk-geometry"
26892 msgstr ""
26893
26894 #. type: verbatim
26895 #: ../fish/guestfish-actions.pod:4354
26896 #, no-wrap
26897 msgid ""
26898 " sfdisk-disk-geometry device\n"
26899 "\n"
26900 msgstr ""
26901
26902 #. type: textblock
26903 #: ../fish/guestfish-actions.pod:4356
26904 msgid ""
26905 "This displays the disk geometry of C<device> read from the partition table.  "
26906 "Especially in the case where the underlying block device has been resized, "
26907 "this can be different from the kernel's idea of the geometry (see "
26908 "L</sfdisk-kernel-geometry>)."
26909 msgstr ""
26910
26911 #. type: =head2
26912 #: ../fish/guestfish-actions.pod:4364
26913 msgid "sfdisk-kernel-geometry"
26914 msgstr ""
26915
26916 #. type: verbatim
26917 #: ../fish/guestfish-actions.pod:4366
26918 #, no-wrap
26919 msgid ""
26920 " sfdisk-kernel-geometry device\n"
26921 "\n"
26922 msgstr ""
26923
26924 #. type: =head2
26925 #: ../fish/guestfish-actions.pod:4373
26926 msgid "sfdisk-l"
26927 msgstr ""
26928
26929 #. type: verbatim
26930 #: ../fish/guestfish-actions.pod:4375
26931 #, no-wrap
26932 msgid ""
26933 " sfdisk-l device\n"
26934 "\n"
26935 msgstr ""
26936
26937 #. type: textblock
26938 #: ../fish/guestfish-actions.pod:4381
26939 msgid "See also: L</part-list>"
26940 msgstr ""
26941
26942 #. type: =head2
26943 #: ../fish/guestfish-actions.pod:4390
26944 msgid "sh"
26945 msgstr ""
26946
26947 #. type: verbatim
26948 #: ../fish/guestfish-actions.pod:4392
26949 #, no-wrap
26950 msgid ""
26951 " sh command\n"
26952 "\n"
26953 msgstr ""
26954
26955 #. type: textblock
26956 #: ../fish/guestfish-actions.pod:4397
26957 msgid "This is like L</command>, but passes the command to:"
26958 msgstr ""
26959
26960 #. type: textblock
26961 #: ../fish/guestfish-actions.pod:4405
26962 msgid "All the provisos about L</command> apply to this call."
26963 msgstr ""
26964
26965 #. type: =head2
26966 #: ../fish/guestfish-actions.pod:4407
26967 msgid "sh-lines"
26968 msgstr ""
26969
26970 #. type: verbatim
26971 #: ../fish/guestfish-actions.pod:4409
26972 #, no-wrap
26973 msgid ""
26974 " sh-lines command\n"
26975 "\n"
26976 msgstr ""
26977
26978 #. type: textblock
26979 #: ../fish/guestfish-actions.pod:4411
26980 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26981 msgstr ""
26982
26983 #. type: textblock
26984 #: ../fish/guestfish-actions.pod:4414
26985 msgid "See also: L</command-lines>"
26986 msgstr ""
26987
26988 #. type: =head2
26989 #: ../fish/guestfish-actions.pod:4416
26990 msgid "sleep"
26991 msgstr ""
26992
26993 #. type: verbatim
26994 #: ../fish/guestfish-actions.pod:4418
26995 #, no-wrap
26996 msgid ""
26997 " sleep secs\n"
26998 "\n"
26999 msgstr ""
27000
27001 #. type: =head2
27002 #: ../fish/guestfish-actions.pod:4422
27003 msgid "stat"
27004 msgstr ""
27005
27006 #. type: verbatim
27007 #: ../fish/guestfish-actions.pod:4424
27008 #, no-wrap
27009 msgid ""
27010 " stat path\n"
27011 "\n"
27012 msgstr ""
27013
27014 #. type: =head2
27015 #: ../fish/guestfish-actions.pod:4430
27016 msgid "statvfs"
27017 msgstr ""
27018
27019 #. type: verbatim
27020 #: ../fish/guestfish-actions.pod:4432
27021 #, no-wrap
27022 msgid ""
27023 " statvfs path\n"
27024 "\n"
27025 msgstr ""
27026
27027 #. type: =head2
27028 #: ../fish/guestfish-actions.pod:4440
27029 msgid "strings"
27030 msgstr ""
27031
27032 #. type: verbatim
27033 #: ../fish/guestfish-actions.pod:4442
27034 #, no-wrap
27035 msgid ""
27036 " strings path\n"
27037 "\n"
27038 msgstr ""
27039
27040 #. type: =head2
27041 #: ../fish/guestfish-actions.pod:4450
27042 msgid "strings-e"
27043 msgstr ""
27044
27045 #. type: verbatim
27046 #: ../fish/guestfish-actions.pod:4452
27047 #, no-wrap
27048 msgid ""
27049 " strings-e encoding path\n"
27050 "\n"
27051 msgstr ""
27052
27053 #. type: textblock
27054 #: ../fish/guestfish-actions.pod:4454
27055 msgid ""
27056 "This is like the L</strings> command, but allows you to specify the encoding "
27057 "of strings that are looked for in the source file C<path>."
27058 msgstr ""
27059
27060 #. type: textblock
27061 #: ../fish/guestfish-actions.pod:4464
27062 msgid ""
27063 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
27064 "ISO-8859-X (this is what L</strings> uses)."
27065 msgstr ""
27066
27067 #. type: =head2
27068 #: ../fish/guestfish-actions.pod:4496
27069 msgid "swapoff-device"
27070 msgstr ""
27071
27072 #. type: verbatim
27073 #: ../fish/guestfish-actions.pod:4498
27074 #, no-wrap
27075 msgid ""
27076 " swapoff-device device\n"
27077 "\n"
27078 msgstr ""
27079
27080 #. type: textblock
27081 #: ../fish/guestfish-actions.pod:4500
27082 msgid ""
27083 "This command disables the libguestfs appliance swap device or partition "
27084 "named C<device>.  See L</swapon-device>."
27085 msgstr ""
27086
27087 #. type: =head2
27088 #: ../fish/guestfish-actions.pod:4504
27089 msgid "swapoff-file"
27090 msgstr ""
27091
27092 #. type: verbatim
27093 #: ../fish/guestfish-actions.pod:4506
27094 #, no-wrap
27095 msgid ""
27096 " swapoff-file file\n"
27097 "\n"
27098 msgstr ""
27099
27100 #. type: =head2
27101 #: ../fish/guestfish-actions.pod:4510
27102 msgid "swapoff-label"
27103 msgstr ""
27104
27105 #. type: verbatim
27106 #: ../fish/guestfish-actions.pod:4512
27107 #, no-wrap
27108 msgid ""
27109 " swapoff-label label\n"
27110 "\n"
27111 msgstr ""
27112
27113 #. type: =head2
27114 #: ../fish/guestfish-actions.pod:4517
27115 msgid "swapoff-uuid"
27116 msgstr ""
27117
27118 #. type: verbatim
27119 #: ../fish/guestfish-actions.pod:4519
27120 #, no-wrap
27121 msgid ""
27122 " swapoff-uuid uuid\n"
27123 "\n"
27124 msgstr ""
27125
27126 #. type: =head2
27127 #: ../fish/guestfish-actions.pod:4524
27128 msgid "swapon-device"
27129 msgstr ""
27130
27131 #. type: verbatim
27132 #: ../fish/guestfish-actions.pod:4526
27133 #, no-wrap
27134 msgid ""
27135 " swapon-device device\n"
27136 "\n"
27137 msgstr ""
27138
27139 #. type: textblock
27140 #: ../fish/guestfish-actions.pod:4528
27141 msgid ""
27142 "This command enables the libguestfs appliance to use the swap device or "
27143 "partition named C<device>.  The increased memory is made available for all "
27144 "commands, for example those run using L</command> or L</sh>."
27145 msgstr ""
27146
27147 #. type: =head2
27148 #: ../fish/guestfish-actions.pod:4540
27149 msgid "swapon-file"
27150 msgstr ""
27151
27152 #. type: verbatim
27153 #: ../fish/guestfish-actions.pod:4542
27154 #, no-wrap
27155 msgid ""
27156 " swapon-file file\n"
27157 "\n"
27158 msgstr ""
27159
27160 #. type: textblock
27161 #: ../fish/guestfish-actions.pod:4544
27162 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
27163 msgstr ""
27164
27165 #. type: =head2
27166 #: ../fish/guestfish-actions.pod:4547
27167 msgid "swapon-label"
27168 msgstr ""
27169
27170 #. type: verbatim
27171 #: ../fish/guestfish-actions.pod:4549
27172 #, no-wrap
27173 msgid ""
27174 " swapon-label label\n"
27175 "\n"
27176 msgstr ""
27177
27178 #. type: textblock
27179 #: ../fish/guestfish-actions.pod:4551
27180 msgid ""
27181 "This command enables swap to a labeled swap partition.  See "
27182 "L</swapon-device> for other notes."
27183 msgstr ""
27184
27185 #. type: =head2
27186 #: ../fish/guestfish-actions.pod:4554
27187 msgid "swapon-uuid"
27188 msgstr ""
27189
27190 #. type: verbatim
27191 #: ../fish/guestfish-actions.pod:4556
27192 #, no-wrap
27193 msgid ""
27194 " swapon-uuid uuid\n"
27195 "\n"
27196 msgstr ""
27197
27198 #. type: textblock
27199 #: ../fish/guestfish-actions.pod:4558
27200 msgid ""
27201 "This command enables swap to a swap partition with the given UUID.  See "
27202 "L</swapon-device> for other notes."
27203 msgstr ""
27204
27205 #. type: =head2
27206 #: ../fish/guestfish-actions.pod:4561
27207 msgid "sync"
27208 msgstr ""
27209
27210 #. type: verbatim
27211 #: ../fish/guestfish-actions.pod:4563
27212 #, no-wrap
27213 msgid ""
27214 " sync\n"
27215 "\n"
27216 msgstr ""
27217
27218 #. type: =head2
27219 #: ../fish/guestfish-actions.pod:4571
27220 msgid "tail"
27221 msgstr ""
27222
27223 #. type: verbatim
27224 #: ../fish/guestfish-actions.pod:4573
27225 #, no-wrap
27226 msgid ""
27227 " tail path\n"
27228 "\n"
27229 msgstr ""
27230
27231 #. type: =head2
27232 #: ../fish/guestfish-actions.pod:4581
27233 msgid "tail-n"
27234 msgstr ""
27235
27236 #. type: verbatim
27237 #: ../fish/guestfish-actions.pod:4583
27238 #, no-wrap
27239 msgid ""
27240 " tail-n nrlines path\n"
27241 "\n"
27242 msgstr ""
27243
27244 #. type: =head2
27245 #: ../fish/guestfish-actions.pod:4596
27246 msgid "tar-in"
27247 msgstr ""
27248
27249 #. type: verbatim
27250 #: ../fish/guestfish-actions.pod:4598
27251 #, no-wrap
27252 msgid ""
27253 " tar-in (tarfile|-) directory\n"
27254 "\n"
27255 msgstr ""
27256
27257 #. type: textblock
27258 #: ../fish/guestfish-actions.pod:4603
27259 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27260 msgstr ""
27261
27262 #. type: =head2
27263 #: ../fish/guestfish-actions.pod:4608
27264 msgid "tar-out"
27265 msgstr ""
27266
27267 #. type: verbatim
27268 #: ../fish/guestfish-actions.pod:4610
27269 #, no-wrap
27270 msgid ""
27271 " tar-out directory (tarfile|-)\n"
27272 "\n"
27273 msgstr ""
27274
27275 #. type: textblock
27276 #: ../fish/guestfish-actions.pod:4615
27277 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27278 msgstr ""
27279
27280 #. type: =head2
27281 #: ../fish/guestfish-actions.pod:4620
27282 msgid "tgz-in"
27283 msgstr ""
27284
27285 #. type: verbatim
27286 #: ../fish/guestfish-actions.pod:4622
27287 #, no-wrap
27288 msgid ""
27289 " tgz-in (tarball|-) directory\n"
27290 "\n"
27291 msgstr ""
27292
27293 #. type: textblock
27294 #: ../fish/guestfish-actions.pod:4627
27295 msgid "To upload an uncompressed tarball, use L</tar-in>."
27296 msgstr ""
27297
27298 #. type: =head2
27299 #: ../fish/guestfish-actions.pod:4631
27300 msgid "tgz-out"
27301 msgstr ""
27302
27303 #. type: verbatim
27304 #: ../fish/guestfish-actions.pod:4633
27305 #, no-wrap
27306 msgid ""
27307 " tgz-out directory (tarball|-)\n"
27308 "\n"
27309 msgstr ""
27310
27311 #. type: textblock
27312 #: ../fish/guestfish-actions.pod:4638
27313 msgid "To download an uncompressed tarball, use L</tar-out>."
27314 msgstr ""
27315
27316 #. type: =head2
27317 #: ../fish/guestfish-actions.pod:4642
27318 msgid "touch"
27319 msgstr ""
27320
27321 #. type: verbatim
27322 #: ../fish/guestfish-actions.pod:4644
27323 #, no-wrap
27324 msgid ""
27325 " touch path\n"
27326 "\n"
27327 msgstr ""
27328
27329 #. type: =head2
27330 #: ../fish/guestfish-actions.pod:4653
27331 msgid "truncate"
27332 msgstr ""
27333
27334 #. type: verbatim
27335 #: ../fish/guestfish-actions.pod:4655
27336 #, no-wrap
27337 msgid ""
27338 " truncate path\n"
27339 "\n"
27340 msgstr ""
27341
27342 #. type: =head2
27343 #: ../fish/guestfish-actions.pod:4660
27344 msgid "truncate-size"
27345 msgstr ""
27346
27347 #. type: verbatim
27348 #: ../fish/guestfish-actions.pod:4662
27349 #, no-wrap
27350 msgid ""
27351 " truncate-size path size\n"
27352 "\n"
27353 msgstr ""
27354
27355 #. type: textblock
27356 #: ../fish/guestfish-actions.pod:4667
27357 msgid ""
27358 "If the current file size is less than C<size> then the file is extended to "
27359 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27360 "blocks are not allocated for the file until you write to it).  To create a "
27361 "non-sparse file of zeroes, use L</fallocate64> instead."
27362 msgstr ""
27363
27364 #. type: =head2
27365 #: ../fish/guestfish-actions.pod:4673
27366 msgid "tune2fs-l"
27367 msgstr ""
27368
27369 #. type: verbatim
27370 #: ../fish/guestfish-actions.pod:4675
27371 #, no-wrap
27372 msgid ""
27373 " tune2fs-l device\n"
27374 "\n"
27375 msgstr ""
27376
27377 #. type: =head2
27378 #: ../fish/guestfish-actions.pod:4685
27379 msgid "txz-in"
27380 msgstr ""
27381
27382 #. type: verbatim
27383 #: ../fish/guestfish-actions.pod:4687
27384 #, no-wrap
27385 msgid ""
27386 " txz-in (tarball|-) directory\n"
27387 "\n"
27388 msgstr ""
27389
27390 #. type: =head2
27391 #: ../fish/guestfish-actions.pod:4694
27392 msgid "txz-out"
27393 msgstr ""
27394
27395 #. type: verbatim
27396 #: ../fish/guestfish-actions.pod:4696
27397 #, no-wrap
27398 msgid ""
27399 " txz-out directory (tarball|-)\n"
27400 "\n"
27401 msgstr ""
27402
27403 #. type: =head2
27404 #: ../fish/guestfish-actions.pod:4703
27405 msgid "umask"
27406 msgstr ""
27407
27408 #. type: verbatim
27409 #: ../fish/guestfish-actions.pod:4705
27410 #, no-wrap
27411 msgid ""
27412 " umask mask\n"
27413 "\n"
27414 msgstr ""
27415
27416 #. type: textblock
27417 #: ../fish/guestfish-actions.pod:4719
27418 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27419 msgstr ""
27420
27421 #. type: =head2
27422 #: ../fish/guestfish-actions.pod:4724
27423 msgid "umount"
27424 msgstr ""
27425
27426 #. type: =head2
27427 #: ../fish/guestfish-actions.pod:4726
27428 msgid "unmount"
27429 msgstr ""
27430
27431 #. type: verbatim
27432 #: ../fish/guestfish-actions.pod:4728
27433 #, no-wrap
27434 msgid ""
27435 " umount pathordevice\n"
27436 "\n"
27437 msgstr ""
27438
27439 #. type: =head2
27440 #: ../fish/guestfish-actions.pod:4734
27441 msgid "umount-all"
27442 msgstr ""
27443
27444 #. type: =head2
27445 #: ../fish/guestfish-actions.pod:4736
27446 msgid "unmount-all"
27447 msgstr ""
27448
27449 #. type: verbatim
27450 #: ../fish/guestfish-actions.pod:4738
27451 #, no-wrap
27452 msgid ""
27453 " umount-all\n"
27454 "\n"
27455 msgstr ""
27456
27457 #. type: =head2
27458 #: ../fish/guestfish-actions.pod:4744
27459 msgid "upload"
27460 msgstr ""
27461
27462 #. type: verbatim
27463 #: ../fish/guestfish-actions.pod:4746
27464 #, no-wrap
27465 msgid ""
27466 " upload (filename|-) remotefilename\n"
27467 "\n"
27468 msgstr ""
27469
27470 #. type: textblock
27471 #: ../fish/guestfish-actions.pod:4753
27472 msgid "See also L</download>."
27473 msgstr ""
27474
27475 #. type: =head2
27476 #: ../fish/guestfish-actions.pod:4757
27477 msgid "upload-offset"
27478 msgstr ""
27479
27480 #. type: verbatim
27481 #: ../fish/guestfish-actions.pod:4759
27482 #, no-wrap
27483 msgid ""
27484 " upload-offset (filename|-) remotefilename offset\n"
27485 "\n"
27486 msgstr ""
27487
27488 #. type: textblock
27489 #: ../fish/guestfish-actions.pod:4771
27490 msgid ""
27491 "Note that there is no limit on the amount of data that can be uploaded with "
27492 "this call, unlike with L</pwrite>, and this call always writes the full "
27493 "amount unless an error occurs."
27494 msgstr ""
27495
27496 #. type: textblock
27497 #: ../fish/guestfish-actions.pod:4776
27498 msgid "See also L</upload>, L</pwrite>."
27499 msgstr ""
27500
27501 #. type: =head2
27502 #: ../fish/guestfish-actions.pod:4780
27503 msgid "utimens"
27504 msgstr ""
27505
27506 #. type: verbatim
27507 #: ../fish/guestfish-actions.pod:4782
27508 #, no-wrap
27509 msgid ""
27510 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27511 "\n"
27512 msgstr ""
27513
27514 #. type: =head2
27515 #: ../fish/guestfish-actions.pod:4801
27516 msgid "version"
27517 msgstr ""
27518
27519 #. type: verbatim
27520 #: ../fish/guestfish-actions.pod:4803
27521 #, no-wrap
27522 msgid ""
27523 " version\n"
27524 "\n"
27525 msgstr ""
27526
27527 #. type: textblock
27528 #: ../fish/guestfish-actions.pod:4830
27529 msgid ""
27530 "I<Note:> Don't use this call to test for availability of features.  In "
27531 "enterprise distributions we backport features from later versions into "
27532 "earlier versions, making this an unreliable way to test for features.  Use "
27533 "L</available> instead."
27534 msgstr ""
27535
27536 #. type: =head2
27537 #: ../fish/guestfish-actions.pod:4836
27538 msgid "vfs-label"
27539 msgstr ""
27540
27541 #. type: verbatim
27542 #: ../fish/guestfish-actions.pod:4838
27543 #, no-wrap
27544 msgid ""
27545 " vfs-label device\n"
27546 "\n"
27547 msgstr ""
27548
27549 #. type: textblock
27550 #: ../fish/guestfish-actions.pod:4845
27551 msgid "To find a filesystem from the label, use L</findfs-label>."
27552 msgstr ""
27553
27554 #. type: =head2
27555 #: ../fish/guestfish-actions.pod:4847
27556 msgid "vfs-type"
27557 msgstr ""
27558
27559 #. type: verbatim
27560 #: ../fish/guestfish-actions.pod:4849
27561 #, no-wrap
27562 msgid ""
27563 " vfs-type device\n"
27564 "\n"
27565 msgstr ""
27566
27567 #. type: =head2
27568 #: ../fish/guestfish-actions.pod:4859
27569 msgid "vfs-uuid"
27570 msgstr ""
27571
27572 #. type: verbatim
27573 #: ../fish/guestfish-actions.pod:4861
27574 #, no-wrap
27575 msgid ""
27576 " vfs-uuid device\n"
27577 "\n"
27578 msgstr ""
27579
27580 #. type: textblock
27581 #: ../fish/guestfish-actions.pod:4868
27582 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27583 msgstr ""
27584
27585 #. type: =head2
27586 #: ../fish/guestfish-actions.pod:4870
27587 msgid "vg-activate"
27588 msgstr ""
27589
27590 #. type: verbatim
27591 #: ../fish/guestfish-actions.pod:4872
27592 #, no-wrap
27593 msgid ""
27594 " vg-activate true|false 'volgroups ...'\n"
27595 "\n"
27596 msgstr ""
27597
27598 #. type: =head2
27599 #: ../fish/guestfish-actions.pod:4882
27600 msgid "vg-activate-all"
27601 msgstr ""
27602
27603 #. type: verbatim
27604 #: ../fish/guestfish-actions.pod:4884
27605 #, no-wrap
27606 msgid ""
27607 " vg-activate-all true|false\n"
27608 "\n"
27609 msgstr ""
27610
27611 #. type: =head2
27612 #: ../fish/guestfish-actions.pod:4891
27613 msgid "vgcreate"
27614 msgstr ""
27615
27616 #. type: verbatim
27617 #: ../fish/guestfish-actions.pod:4893
27618 #, no-wrap
27619 msgid ""
27620 " vgcreate volgroup 'physvols ...'\n"
27621 "\n"
27622 msgstr ""
27623
27624 #. type: =head2
27625 #: ../fish/guestfish-actions.pod:4898
27626 msgid "vglvuuids"
27627 msgstr ""
27628
27629 #. type: verbatim
27630 #: ../fish/guestfish-actions.pod:4900
27631 #, no-wrap
27632 msgid ""
27633 " vglvuuids vgname\n"
27634 "\n"
27635 msgstr ""
27636
27637 #. type: textblock
27638 #: ../fish/guestfish-actions.pod:4905
27639 msgid ""
27640 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27641 "logical volumes and volume groups."
27642 msgstr ""
27643
27644 #. type: textblock
27645 #: ../fish/guestfish-actions.pod:4908
27646 msgid "See also L</vgpvuuids>."
27647 msgstr ""
27648
27649 #. type: =head2
27650 #: ../fish/guestfish-actions.pod:4910
27651 msgid "vgpvuuids"
27652 msgstr ""
27653
27654 #. type: verbatim
27655 #: ../fish/guestfish-actions.pod:4912
27656 #, no-wrap
27657 msgid ""
27658 " vgpvuuids vgname\n"
27659 "\n"
27660 msgstr ""
27661
27662 #. type: textblock
27663 #: ../fish/guestfish-actions.pod:4917
27664 msgid ""
27665 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27666 "physical volumes and volume groups."
27667 msgstr ""
27668
27669 #. type: textblock
27670 #: ../fish/guestfish-actions.pod:4920
27671 msgid "See also L</vglvuuids>."
27672 msgstr ""
27673
27674 #. type: =head2
27675 #: ../fish/guestfish-actions.pod:4922
27676 msgid "vgremove"
27677 msgstr ""
27678
27679 #. type: verbatim
27680 #: ../fish/guestfish-actions.pod:4924
27681 #, no-wrap
27682 msgid ""
27683 " vgremove vgname\n"
27684 "\n"
27685 msgstr ""
27686
27687 #. type: =head2
27688 #: ../fish/guestfish-actions.pod:4931
27689 msgid "vgrename"
27690 msgstr ""
27691
27692 #. type: verbatim
27693 #: ../fish/guestfish-actions.pod:4933
27694 #, no-wrap
27695 msgid ""
27696 " vgrename volgroup newvolgroup\n"
27697 "\n"
27698 msgstr ""
27699
27700 #. type: =head2
27701 #: ../fish/guestfish-actions.pod:4937
27702 msgid "vgs"
27703 msgstr ""
27704
27705 #. type: verbatim
27706 #: ../fish/guestfish-actions.pod:4939
27707 #, no-wrap
27708 msgid ""
27709 " vgs\n"
27710 "\n"
27711 msgstr ""
27712
27713 #. type: textblock
27714 #: ../fish/guestfish-actions.pod:4947
27715 msgid "See also L</vgs-full>."
27716 msgstr ""
27717
27718 #. type: =head2
27719 #: ../fish/guestfish-actions.pod:4949
27720 msgid "vgs-full"
27721 msgstr ""
27722
27723 #. type: verbatim
27724 #: ../fish/guestfish-actions.pod:4951
27725 #, no-wrap
27726 msgid ""
27727 " vgs-full\n"
27728 "\n"
27729 msgstr ""
27730
27731 #. type: =head2
27732 #: ../fish/guestfish-actions.pod:4956
27733 msgid "vgscan"
27734 msgstr ""
27735
27736 #. type: verbatim
27737 #: ../fish/guestfish-actions.pod:4958
27738 #, no-wrap
27739 msgid ""
27740 " vgscan\n"
27741 "\n"
27742 msgstr ""
27743
27744 #. type: =head2
27745 #: ../fish/guestfish-actions.pod:4963
27746 msgid "vguuid"
27747 msgstr ""
27748
27749 #. type: verbatim
27750 #: ../fish/guestfish-actions.pod:4965
27751 #, no-wrap
27752 msgid ""
27753 " vguuid vgname\n"
27754 "\n"
27755 msgstr ""
27756
27757 #. type: =head2
27758 #: ../fish/guestfish-actions.pod:4969
27759 msgid "wc-c"
27760 msgstr ""
27761
27762 #. type: verbatim
27763 #: ../fish/guestfish-actions.pod:4971
27764 #, no-wrap
27765 msgid ""
27766 " wc-c path\n"
27767 "\n"
27768 msgstr ""
27769
27770 #. type: =head2
27771 #: ../fish/guestfish-actions.pod:4976
27772 msgid "wc-l"
27773 msgstr ""
27774
27775 #. type: verbatim
27776 #: ../fish/guestfish-actions.pod:4978
27777 #, no-wrap
27778 msgid ""
27779 " wc-l path\n"
27780 "\n"
27781 msgstr ""
27782
27783 #. type: =head2
27784 #: ../fish/guestfish-actions.pod:4983
27785 msgid "wc-w"
27786 msgstr ""
27787
27788 #. type: verbatim
27789 #: ../fish/guestfish-actions.pod:4985
27790 #, no-wrap
27791 msgid ""
27792 " wc-w path\n"
27793 "\n"
27794 msgstr ""
27795
27796 #. type: =head2
27797 #: ../fish/guestfish-actions.pod:4990
27798 msgid "write"
27799 msgstr ""
27800
27801 #. type: verbatim
27802 #: ../fish/guestfish-actions.pod:4992
27803 #, no-wrap
27804 msgid ""
27805 " write path content\n"
27806 "\n"
27807 msgstr ""
27808
27809 #. type: =head2
27810 #: ../fish/guestfish-actions.pod:5000
27811 msgid "write-file"
27812 msgstr ""
27813
27814 #. type: verbatim
27815 #: ../fish/guestfish-actions.pod:5002
27816 #, no-wrap
27817 msgid ""
27818 " write-file path content size\n"
27819 "\n"
27820 msgstr ""
27821
27822 #. type: =head2
27823 #: ../fish/guestfish-actions.pod:5025
27824 msgid "zegrep"
27825 msgstr ""
27826
27827 #. type: verbatim
27828 #: ../fish/guestfish-actions.pod:5027
27829 #, no-wrap
27830 msgid ""
27831 " zegrep regex path\n"
27832 "\n"
27833 msgstr ""
27834
27835 #. type: =head2
27836 #: ../fish/guestfish-actions.pod:5035
27837 msgid "zegrepi"
27838 msgstr ""
27839
27840 #. type: verbatim
27841 #: ../fish/guestfish-actions.pod:5037
27842 #, no-wrap
27843 msgid ""
27844 " zegrepi regex path\n"
27845 "\n"
27846 msgstr ""
27847
27848 #. type: =head2
27849 #: ../fish/guestfish-actions.pod:5045
27850 msgid "zero"
27851 msgstr ""
27852
27853 #. type: verbatim
27854 #: ../fish/guestfish-actions.pod:5047
27855 #, no-wrap
27856 msgid ""
27857 " zero device\n"
27858 "\n"
27859 msgstr ""
27860
27861 #. type: textblock
27862 #: ../fish/guestfish-actions.pod:5055
27863 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
27864 msgstr ""
27865
27866 #. type: =head2
27867 #: ../fish/guestfish-actions.pod:5058
27868 msgid "zero-device"
27869 msgstr ""
27870
27871 #. type: verbatim
27872 #: ../fish/guestfish-actions.pod:5060
27873 #, no-wrap
27874 msgid ""
27875 " zero-device device\n"
27876 "\n"
27877 msgstr ""
27878
27879 #. type: textblock
27880 #: ../fish/guestfish-actions.pod:5062
27881 msgid ""
27882 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27883 "which just zeroes the first few blocks of a device."
27884 msgstr ""
27885
27886 #. type: =head2
27887 #: ../fish/guestfish-actions.pod:5069
27888 msgid "zerofree"
27889 msgstr ""
27890
27891 #. type: verbatim
27892 #: ../fish/guestfish-actions.pod:5071
27893 #, no-wrap
27894 msgid ""
27895 " zerofree device\n"
27896 "\n"
27897 msgstr ""
27898
27899 #. type: =head2
27900 #: ../fish/guestfish-actions.pod:5084
27901 msgid "zfgrep"
27902 msgstr ""
27903
27904 #. type: verbatim
27905 #: ../fish/guestfish-actions.pod:5086
27906 #, no-wrap
27907 msgid ""
27908 " zfgrep pattern path\n"
27909 "\n"
27910 msgstr ""
27911
27912 #. type: =head2
27913 #: ../fish/guestfish-actions.pod:5094
27914 msgid "zfgrepi"
27915 msgstr ""
27916
27917 #. type: verbatim
27918 #: ../fish/guestfish-actions.pod:5096
27919 #, no-wrap
27920 msgid ""
27921 " zfgrepi pattern path\n"
27922 "\n"
27923 msgstr ""
27924
27925 #. type: =head2
27926 #: ../fish/guestfish-actions.pod:5104
27927 msgid "zfile"
27928 msgstr ""
27929
27930 #. type: verbatim
27931 #: ../fish/guestfish-actions.pod:5106
27932 #, no-wrap
27933 msgid ""
27934 " zfile meth path\n"
27935 "\n"
27936 msgstr ""
27937
27938 #. type: textblock
27939 #: ../fish/guestfish-actions.pod:5113
27940 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
27941 msgstr ""
27942
27943 #. type: =head2
27944 #: ../fish/guestfish-actions.pod:5123
27945 msgid "zgrep"
27946 msgstr ""
27947
27948 #. type: verbatim
27949 #: ../fish/guestfish-actions.pod:5125
27950 #, no-wrap
27951 msgid ""
27952 " zgrep regex path\n"
27953 "\n"
27954 msgstr ""
27955
27956 #. type: =head2
27957 #: ../fish/guestfish-actions.pod:5133
27958 msgid "zgrepi"
27959 msgstr ""
27960
27961 #. type: verbatim
27962 #: ../fish/guestfish-actions.pod:5135
27963 #, no-wrap
27964 msgid ""
27965 " zgrepi regex path\n"
27966 "\n"
27967 msgstr ""
27968
27969 #. type: =head2
27970 #: ../fish/guestfish-commands.pod:1
27971 msgid "alloc"
27972 msgstr ""
27973
27974 #. type: =head2
27975 #: ../fish/guestfish-commands.pod:3
27976 msgid "allocate"
27977 msgstr ""
27978
27979 #. type: verbatim
27980 #: ../fish/guestfish-commands.pod:5
27981 #, no-wrap
27982 msgid ""
27983 " alloc filename size\n"
27984 "\n"
27985 msgstr ""
27986
27987 #. type: textblock
27988 #: ../fish/guestfish-commands.pod:7
27989 msgid ""
27990 "This creates an empty (zeroed) file of the given size, and then adds so it "
27991 "can be further examined."
27992 msgstr ""
27993
27994 #. type: textblock
27995 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
27996 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27997 msgstr ""
27998
27999 #. type: textblock
28000 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
28001 msgid "Size can be specified using standard suffixes, eg. C<1M>."
28002 msgstr ""
28003
28004 #. type: textblock
28005 #: ../fish/guestfish-commands.pod:14
28006 msgid ""
28007 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
28008 "image, see L</PREPARED DISK IMAGES>."
28009 msgstr ""
28010
28011 #. type: =head2
28012 #: ../fish/guestfish-commands.pod:17
28013 msgid "copy-in"
28014 msgstr ""
28015
28016 #. type: verbatim
28017 #: ../fish/guestfish-commands.pod:19
28018 #, no-wrap
28019 msgid ""
28020 " copy-in local [local ...] /remotedir\n"
28021 "\n"
28022 msgstr ""
28023
28024 #. type: textblock
28025 #: ../fish/guestfish-commands.pod:21
28026 msgid ""
28027 "C<copy-in> copies local files or directories recursively into the disk "
28028 "image, placing them in the directory called C</remotedir> (which must "
28029 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
28030 "other commands as necessary."
28031 msgstr ""
28032
28033 #. type: textblock
28034 #: ../fish/guestfish-commands.pod:26
28035 msgid ""
28036 "Multiple local files and directories can be specified, but the last "
28037 "parameter must always be a remote directory.  Wildcards cannot be used."
28038 msgstr ""
28039
28040 #. type: =head2
28041 #: ../fish/guestfish-commands.pod:30
28042 msgid "copy-out"
28043 msgstr ""
28044
28045 #. type: verbatim
28046 #: ../fish/guestfish-commands.pod:32
28047 #, no-wrap
28048 msgid ""
28049 " copy-out remote [remote ...] localdir\n"
28050 "\n"
28051 msgstr ""
28052
28053 #. type: textblock
28054 #: ../fish/guestfish-commands.pod:34
28055 msgid ""
28056 "C<copy-out> copies remote files or directories recursively out of the disk "
28057 "image, placing them on the host disk in a local directory called C<localdir> "
28058 "(which must exist).  This guestfish meta-command turns into a sequence of "
28059 "L</download>, L</tar-out> and other commands as necessary."
28060 msgstr ""
28061
28062 #. type: textblock
28063 #: ../fish/guestfish-commands.pod:40
28064 msgid ""
28065 "Multiple remote files and directories can be specified, but the last "
28066 "parameter must always be a local directory.  To download to the current "
28067 "directory, use C<.> as in:"
28068 msgstr ""
28069
28070 #. type: verbatim
28071 #: ../fish/guestfish-commands.pod:44
28072 #, no-wrap
28073 msgid ""
28074 " copy-out /home .\n"
28075 "\n"
28076 msgstr ""
28077
28078 #. type: textblock
28079 #: ../fish/guestfish-commands.pod:46
28080 msgid ""
28081 "Wildcards cannot be used in the ordinary command, but you can use them with "
28082 "the help of L</glob> like this:"
28083 msgstr ""
28084
28085 #. type: verbatim
28086 #: ../fish/guestfish-commands.pod:49
28087 #, no-wrap
28088 msgid ""
28089 " glob copy-out /home/* .\n"
28090 "\n"
28091 msgstr ""
28092
28093 #. type: =head2
28094 #: ../fish/guestfish-commands.pod:51
28095 msgid "display"
28096 msgstr ""
28097
28098 #. type: verbatim
28099 #: ../fish/guestfish-commands.pod:53
28100 #, no-wrap
28101 msgid ""
28102 " display filename\n"
28103 "\n"
28104 msgstr ""
28105
28106 #. type: textblock
28107 #: ../fish/guestfish-commands.pod:55
28108 msgid ""
28109 "Use C<display> (a graphical display program) to display an image file.  It "
28110 "downloads the file, and runs C<display> on it."
28111 msgstr ""
28112
28113 #. type: textblock
28114 #: ../fish/guestfish-commands.pod:58
28115 msgid ""
28116 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
28117 "environment variable.  For example to use the GNOME display program:"
28118 msgstr ""
28119
28120 #. type: verbatim
28121 #: ../fish/guestfish-commands.pod:61
28122 #, no-wrap
28123 msgid ""
28124 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
28125 "\n"
28126 msgstr ""
28127
28128 #. type: textblock
28129 #: ../fish/guestfish-commands.pod:63
28130 msgid "See also L<display(1)>."
28131 msgstr ""
28132
28133 #. type: =head2
28134 #: ../fish/guestfish-commands.pod:65
28135 msgid "echo"
28136 msgstr ""
28137
28138 #. type: verbatim
28139 #: ../fish/guestfish-commands.pod:67
28140 #, no-wrap
28141 msgid ""
28142 " echo [params ...]\n"
28143 "\n"
28144 msgstr ""
28145
28146 #. type: textblock
28147 #: ../fish/guestfish-commands.pod:69
28148 msgid "This echos the parameters to the terminal."
28149 msgstr ""
28150
28151 #. type: =head2
28152 #: ../fish/guestfish-commands.pod:71
28153 msgid "edit"
28154 msgstr ""
28155
28156 #. type: =head2
28157 #: ../fish/guestfish-commands.pod:73
28158 msgid "vi"
28159 msgstr ""
28160
28161 #. type: =head2
28162 #: ../fish/guestfish-commands.pod:75
28163 msgid "emacs"
28164 msgstr ""
28165
28166 #. type: verbatim
28167 #: ../fish/guestfish-commands.pod:77
28168 #, no-wrap
28169 msgid ""
28170 " edit filename\n"
28171 "\n"
28172 msgstr ""
28173
28174 #. type: textblock
28175 #: ../fish/guestfish-commands.pod:79
28176 msgid ""
28177 "This is used to edit a file.  It downloads the file, edits it locally using "
28178 "your editor, then uploads the result."
28179 msgstr ""
28180
28181 #. type: textblock
28182 #: ../fish/guestfish-commands.pod:82
28183 msgid ""
28184 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
28185 "or C<emacs> you will get those corresponding editors."
28186 msgstr ""
28187
28188 #. type: =head2
28189 #: ../fish/guestfish-commands.pod:86
28190 msgid "glob"
28191 msgstr ""
28192
28193 #. type: verbatim
28194 #: ../fish/guestfish-commands.pod:88
28195 #, no-wrap
28196 msgid ""
28197 " glob command args...\n"
28198 "\n"
28199 msgstr ""
28200
28201 #. type: textblock
28202 #: ../fish/guestfish-commands.pod:90
28203 msgid ""
28204 "Expand wildcards in any paths in the args list, and run C<command> "
28205 "repeatedly on each matching path."
28206 msgstr ""
28207
28208 #. type: textblock
28209 #: ../fish/guestfish-commands.pod:93
28210 msgid "See L</WILDCARDS AND GLOBBING>."
28211 msgstr ""
28212
28213 #. type: =head2
28214 #: ../fish/guestfish-commands.pod:95
28215 msgid "hexedit"
28216 msgstr ""
28217
28218 #. type: verbatim
28219 #: ../fish/guestfish-commands.pod:97
28220 #, no-wrap
28221 msgid ""
28222 " hexedit <filename|device>\n"
28223 " hexedit <filename|device> <max>\n"
28224 " hexedit <filename|device> <start> <max>\n"
28225 "\n"
28226 msgstr ""
28227
28228 #. type: textblock
28229 #: ../fish/guestfish-commands.pod:101
28230 msgid ""
28231 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28232 "device."
28233 msgstr ""
28234
28235 #. type: textblock
28236 #: ../fish/guestfish-commands.pod:104
28237 msgid ""
28238 "This command works by downloading potentially the whole file or device, "
28239 "editing it locally, then uploading it.  If the file or device is large, you "
28240 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28241 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28242 "usual modifiers allowed such as C<1M> (1 megabyte)."
28243 msgstr ""
28244
28245 #. type: textblock
28246 #: ../fish/guestfish-commands.pod:111
28247 msgid "For example to edit the first few sectors of a disk you might do:"
28248 msgstr ""
28249
28250 #. type: verbatim
28251 #: ../fish/guestfish-commands.pod:114
28252 #, no-wrap
28253 msgid ""
28254 " hexedit /dev/sda 1M\n"
28255 "\n"
28256 msgstr ""
28257
28258 #. type: textblock
28259 #: ../fish/guestfish-commands.pod:116
28260 msgid ""
28261 "which would allow you to edit anywhere within the first megabyte of the "
28262 "disk."
28263 msgstr ""
28264
28265 #. type: textblock
28266 #: ../fish/guestfish-commands.pod:119
28267 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28268 msgstr ""
28269
28270 #. type: verbatim
28271 #: ../fish/guestfish-commands.pod:121
28272 #, no-wrap
28273 msgid ""
28274 " hexedit /dev/sda1 0x400 0x400\n"
28275 "\n"
28276 msgstr ""
28277
28278 #. type: textblock
28279 #: ../fish/guestfish-commands.pod:123
28280 msgid "(assuming the superblock is in the standard location)."
28281 msgstr ""
28282
28283 #. type: textblock
28284 #: ../fish/guestfish-commands.pod:125
28285 msgid ""
28286 "This command requires the external L<hexedit(1)> program.  You can specify "
28287 "another program to use by setting the C<HEXEDITOR> environment variable."
28288 msgstr ""
28289
28290 #. type: textblock
28291 #: ../fish/guestfish-commands.pod:129
28292 msgid "See also L</hexdump>."
28293 msgstr ""
28294
28295 #. type: =head2
28296 #: ../fish/guestfish-commands.pod:131
28297 msgid "lcd"
28298 msgstr ""
28299
28300 #. type: verbatim
28301 #: ../fish/guestfish-commands.pod:133
28302 #, no-wrap
28303 msgid ""
28304 " lcd directory\n"
28305 "\n"
28306 msgstr ""
28307
28308 #. type: textblock
28309 #: ../fish/guestfish-commands.pod:135
28310 msgid "Change the local directory, ie. the current directory of guestfish itself."
28311 msgstr ""
28312
28313 #. type: textblock
28314 #: ../fish/guestfish-commands.pod:138
28315 msgid "Note that C<!cd> won't do what you might expect."
28316 msgstr ""
28317
28318 #. type: =head2
28319 #: ../fish/guestfish-commands.pod:140
28320 msgid "man"
28321 msgstr ""
28322
28323 #. type: =head2
28324 #: ../fish/guestfish-commands.pod:142
28325 msgid "manual"
28326 msgstr ""
28327
28328 #. type: verbatim
28329 #: ../fish/guestfish-commands.pod:144
28330 #, no-wrap
28331 msgid ""
28332 "  man\n"
28333 "\n"
28334 msgstr ""
28335
28336 #. type: textblock
28337 #: ../fish/guestfish-commands.pod:146
28338 msgid "Opens the manual page for guestfish."
28339 msgstr ""
28340
28341 #. type: =head2
28342 #: ../fish/guestfish-commands.pod:148
28343 msgid "more"
28344 msgstr ""
28345
28346 #. type: =head2
28347 #: ../fish/guestfish-commands.pod:150
28348 msgid "less"
28349 msgstr ""
28350
28351 #. type: verbatim
28352 #: ../fish/guestfish-commands.pod:152
28353 #, no-wrap
28354 msgid ""
28355 " more filename\n"
28356 "\n"
28357 msgstr ""
28358
28359 #. type: verbatim
28360 #: ../fish/guestfish-commands.pod:154
28361 #, no-wrap
28362 msgid ""
28363 " less filename\n"
28364 "\n"
28365 msgstr ""
28366
28367 #. type: textblock
28368 #: ../fish/guestfish-commands.pod:156
28369 msgid "This is used to view a file."
28370 msgstr ""
28371
28372 #. type: textblock
28373 #: ../fish/guestfish-commands.pod:158
28374 msgid ""
28375 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28376 "C<less> you will get the C<less> command specifically."
28377 msgstr ""
28378
28379 #. type: =head2
28380 #: ../fish/guestfish-commands.pod:161
28381 msgid "reopen"
28382 msgstr ""
28383
28384 #. type: verbatim
28385 #: ../fish/guestfish-commands.pod:163
28386 #, no-wrap
28387 msgid ""
28388 "  reopen\n"
28389 "\n"
28390 msgstr ""
28391
28392 #. type: textblock
28393 #: ../fish/guestfish-commands.pod:165
28394 msgid ""
28395 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28396 "normally, because the handle is closed properly when guestfish exits.  "
28397 "However this is occasionally useful for testing."
28398 msgstr ""
28399
28400 #. type: =head2
28401 #: ../fish/guestfish-commands.pod:169
28402 msgid "sparse"
28403 msgstr ""
28404
28405 #. type: verbatim
28406 #: ../fish/guestfish-commands.pod:171
28407 #, no-wrap
28408 msgid ""
28409 " sparse filename size\n"
28410 "\n"
28411 msgstr ""
28412
28413 #. type: textblock
28414 #: ../fish/guestfish-commands.pod:173
28415 msgid ""
28416 "This creates an empty sparse file of the given size, and then adds so it can "
28417 "be further examined."
28418 msgstr ""
28419
28420 #. type: textblock
28421 #: ../fish/guestfish-commands.pod:176
28422 msgid ""
28423 "In all respects it works the same as the L</alloc> command, except that the "
28424 "image file is allocated sparsely, which means that disk blocks are not "
28425 "assigned to the file until they are needed.  Sparse disk files only use "
28426 "space when written to, but they are slower and there is a danger you could "
28427 "run out of real disk space during a write operation."
28428 msgstr ""
28429
28430 #. type: =head2
28431 #: ../fish/guestfish-commands.pod:186
28432 msgid "supported"
28433 msgstr ""
28434
28435 #. type: verbatim
28436 #: ../fish/guestfish-commands.pod:188
28437 #, no-wrap
28438 msgid ""
28439 " supported\n"
28440 "\n"
28441 msgstr ""
28442
28443 #. type: textblock
28444 #: ../fish/guestfish-commands.pod:190
28445 msgid ""
28446 "This command returns a list of the optional groups known to the daemon, and "
28447 "indicates which ones are supported by this build of the libguestfs "
28448 "appliance."
28449 msgstr ""
28450
28451 #. type: textblock
28452 #: ../fish/guestfish-commands.pod:194
28453 msgid "See also L<guestfs(3)/AVAILABILITY>."
28454 msgstr ""
28455
28456 #. type: =head2
28457 #: ../fish/guestfish-commands.pod:196
28458 msgid "time"
28459 msgstr ""
28460
28461 #. type: verbatim
28462 #: ../fish/guestfish-commands.pod:198
28463 #, no-wrap
28464 msgid ""
28465 " time command args...\n"
28466 "\n"
28467 msgstr ""
28468
28469 #. type: textblock
28470 #: ../fish/guestfish-commands.pod:200
28471 msgid ""
28472 "Run the command as usual, but print the elapsed time afterwards.  This can "
28473 "be useful for benchmarking operations."
28474 msgstr ""
28475
28476 #. type: textblock
28477 #: ../test-tool/libguestfs-test-tool.pod:5
28478 msgid "libguestfs-test-tool - End user tests for libguestfs"
28479 msgstr ""
28480
28481 #. type: verbatim
28482 #: ../test-tool/libguestfs-test-tool.pod:9
28483 #, no-wrap
28484 msgid ""
28485 " libguestfs-test-tool [--options]\n"
28486 "\n"
28487 msgstr ""
28488
28489 #. type: textblock
28490 #: ../test-tool/libguestfs-test-tool.pod:13
28491 msgid ""
28492 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28493 "and developers, to allow them to check basic libguestfs functionality is "
28494 "working.  This is needed because libguestfs occasionally breaks for reasons "
28495 "beyond our control: usually because of changes in the underlying qemu or "
28496 "kernel packages, or the host environment."
28497 msgstr ""
28498
28499 #. type: textblock
28500 #: ../test-tool/libguestfs-test-tool.pod:20
28501 msgid "If you suspect a problem in libguestfs, then just run:"
28502 msgstr ""
28503
28504 #. type: verbatim
28505 #: ../test-tool/libguestfs-test-tool.pod:22
28506 #, no-wrap
28507 msgid ""
28508 " libguestfs-test-tool\n"
28509 "\n"
28510 msgstr ""
28511
28512 #. type: textblock
28513 #: ../test-tool/libguestfs-test-tool.pod:24
28514 msgid "It will print lots of diagnostic messages."
28515 msgstr ""
28516
28517 #. type: textblock
28518 #: ../test-tool/libguestfs-test-tool.pod:26
28519 msgid "If it runs to completion successfully, you will see this near the end:"
28520 msgstr ""
28521
28522 #. type: verbatim
28523 #: ../test-tool/libguestfs-test-tool.pod:28
28524 #, no-wrap
28525 msgid ""
28526 " ===== TEST FINISHED OK =====\n"
28527 "\n"
28528 msgstr ""
28529
28530 #. type: textblock
28531 #: ../test-tool/libguestfs-test-tool.pod:30
28532 msgid "and the test tool will exit with code 0."
28533 msgstr ""
28534
28535 #. type: textblock
28536 #: ../test-tool/libguestfs-test-tool.pod:32
28537 msgid ""
28538 "If it fails (and/or exits with non-zero error code), please paste the "
28539 "B<complete, unedited> output of the test tool into a bug report.  More "
28540 "information about reporting bugs can be found on the "
28541 "L<http://libguestfs.org/> website."
28542 msgstr ""
28543
28544 #. type: =item
28545 #: ../test-tool/libguestfs-test-tool.pod:41
28546 msgid "I<--help>"
28547 msgstr ""
28548
28549 #. type: textblock
28550 #: ../test-tool/libguestfs-test-tool.pod:43
28551 msgid "Display short usage information and exit."
28552 msgstr ""
28553
28554 #. type: =item
28555 #: ../test-tool/libguestfs-test-tool.pod:45
28556 msgid "I<--qemu qemu_binary>"
28557 msgstr ""
28558
28559 #. type: textblock
28560 #: ../test-tool/libguestfs-test-tool.pod:47
28561 msgid ""
28562 "If you have downloaded another qemu binary, point this option at the full "
28563 "path of the binary to try it."
28564 msgstr ""
28565
28566 #. type: =item
28567 #: ../test-tool/libguestfs-test-tool.pod:50
28568 msgid "I<--qemudir qemu_source_dir>"
28569 msgstr ""
28570
28571 #. type: textblock
28572 #: ../test-tool/libguestfs-test-tool.pod:52
28573 msgid ""
28574 "If you have compiled qemu from source, point this option at the source "
28575 "directory to try it."
28576 msgstr ""
28577
28578 #. type: =item
28579 #: ../test-tool/libguestfs-test-tool.pod:55
28580 msgid "I<--timeout N>"
28581 msgstr ""
28582
28583 #. type: textblock
28584 #: ../test-tool/libguestfs-test-tool.pod:57
28585 msgid ""
28586 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28587 "does not usually need to be adjusted unless your machine is very slow."
28588 msgstr ""
28589
28590 #. type: =head1
28591 #: ../test-tool/libguestfs-test-tool.pod:63
28592 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28593 msgstr ""
28594
28595 #. type: textblock
28596 #: ../test-tool/libguestfs-test-tool.pod:65
28597 msgid ""
28598 "If you have compiled another version of qemu from source and would like to "
28599 "try that, then you can use the I<--qemudir> option to point to the qemu "
28600 "source directory."
28601 msgstr ""
28602
28603 #. type: textblock
28604 #: ../test-tool/libguestfs-test-tool.pod:69
28605 msgid ""
28606 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28607 "option to point to the binary."
28608 msgstr ""
28609
28610 #. type: textblock
28611 #: ../test-tool/libguestfs-test-tool.pod:72
28612 msgid ""
28613 "When using an alternate qemu with libguestfs, usually you would need to "
28614 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
28615 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
28616 "when you use either of the I<--qemudir> or I<--qemu> options."
28617 msgstr ""
28618
28619 #. type: textblock
28620 #: ../test-tool/libguestfs-test-tool.pod:79
28621 msgid ""
28622 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28623 "I<1> if there was an error."
28624 msgstr ""
28625
28626 #. type: textblock
28627 #: ../test-tool/libguestfs-test-tool.pod:84
28628 msgid ""
28629 "For the full list of environment variables which may affect libguestfs, "
28630 "please see the L<guestfs(3)> manual page."
28631 msgstr ""
28632
28633 #. type: textblock
28634 #: ../test-tool/libguestfs-test-tool.pod:89
28635 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28636 msgstr ""
28637
28638 #. type: textblock
28639 #: ../fuse/guestmount.pod:5
28640 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28641 msgstr ""
28642
28643 #. type: verbatim
28644 #: ../fuse/guestmount.pod:9
28645 #, no-wrap
28646 msgid ""
28647 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28648 "\n"
28649 msgstr ""
28650
28651 #. type: verbatim
28652 #: ../fuse/guestmount.pod:11
28653 #, no-wrap
28654 msgid ""
28655 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28656 "\n"
28657 msgstr ""
28658
28659 #. type: verbatim
28660 #: ../fuse/guestmount.pod:13
28661 #, no-wrap
28662 msgid ""
28663 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28664 "\n"
28665 msgstr ""
28666
28667 #. type: textblock
28668 #: ../fuse/guestmount.pod:17
28669 msgid ""
28670 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28671 "machines.  If you do this, you risk disk corruption in the VM."
28672 msgstr ""
28673
28674 #. type: textblock
28675 #: ../fuse/guestmount.pod:22
28676 msgid ""
28677 "The guestmount program can be used to mount virtual machine filesystems and "
28678 "other disk images on the host.  It uses libguestfs for access to the guest "
28679 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28680 "a mountable device."
28681 msgstr ""
28682
28683 #. type: textblock
28684 #: ../fuse/guestmount.pod:27
28685 msgid ""
28686 "Along with other options, you have to give at least one device (I<-a> "
28687 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28688 "option) or use the I<-i> inspection option.  How this works is better "
28689 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28690 "below."
28691 msgstr ""
28692
28693 #. type: textblock
28694 #: ../fuse/guestmount.pod:33
28695 msgid ""
28696 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28697 "by you, and the filesystem will not be visible to any other users unless you "
28698 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28699 "the filesystem, use the C<fusermount -u> command."
28700 msgstr ""
28701
28702 #. type: textblock
28703 #: ../fuse/guestmount.pod:41
28704 msgid ""
28705 "For a typical Windows guest which has its main filesystem on the first "
28706 "partition:"
28707 msgstr ""
28708
28709 #. type: verbatim
28710 #: ../fuse/guestmount.pod:44
28711 #, no-wrap
28712 msgid ""
28713 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28714 "\n"
28715 msgstr ""
28716
28717 #. type: textblock
28718 #: ../fuse/guestmount.pod:46
28719 msgid ""
28720 "For a typical Linux guest which has a /boot filesystem on the first "
28721 "partition, and the root filesystem on a logical volume:"
28722 msgstr ""
28723
28724 #. type: verbatim
28725 #: ../fuse/guestmount.pod:49
28726 #, no-wrap
28727 msgid ""
28728 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28729 "\n"
28730 msgstr ""
28731
28732 #. type: textblock
28733 #: ../fuse/guestmount.pod:51
28734 msgid "To get libguestfs to detect guest mountpoints for you:"
28735 msgstr ""
28736
28737 #. type: verbatim
28738 #: ../fuse/guestmount.pod:53
28739 #, no-wrap
28740 msgid ""
28741 " guestmount -a guest.img -i --ro /mnt\n"
28742 "\n"
28743 msgstr ""
28744
28745 #. type: textblock
28746 #: ../fuse/guestmount.pod:55
28747 msgid "For a libvirt guest called \"Guest\" you could do:"
28748 msgstr ""
28749
28750 #. type: verbatim
28751 #: ../fuse/guestmount.pod:57
28752 #, no-wrap
28753 msgid ""
28754 " guestmount -d Guest -i --ro /mnt\n"
28755 "\n"
28756 msgstr ""
28757
28758 #. type: textblock
28759 #: ../fuse/guestmount.pod:59
28760 msgid ""
28761 "If you don't know what filesystems are contained in a guest or disk image, "
28762 "use L<virt-filesystems(1)> first:"
28763 msgstr ""
28764
28765 #. type: verbatim
28766 #: ../fuse/guestmount.pod:62
28767 #, no-wrap
28768 msgid ""
28769 " virt-filesystems MyGuest\n"
28770 "\n"
28771 msgstr ""
28772
28773 #. type: textblock
28774 #: ../fuse/guestmount.pod:64
28775 msgid ""
28776 "If you want to trace the libguestfs calls but without excessive debugging "
28777 "information, we recommend:"
28778 msgstr ""
28779
28780 #. type: verbatim
28781 #: ../fuse/guestmount.pod:67
28782 #, no-wrap
28783 msgid ""
28784 " guestmount [...] --trace /mnt\n"
28785 "\n"
28786 msgstr ""
28787
28788 #. type: textblock
28789 #: ../fuse/guestmount.pod:69
28790 msgid "If you want to debug the program, we recommend:"
28791 msgstr ""
28792
28793 #. type: verbatim
28794 #: ../fuse/guestmount.pod:71
28795 #, no-wrap
28796 msgid ""
28797 " guestmount [...] --trace --verbose /mnt\n"
28798 "\n"
28799 msgstr ""
28800
28801 #. type: =head1
28802 #: ../fuse/guestmount.pod:73
28803 msgid "NOTES"
28804 msgstr ""
28805
28806 #. type: =head2
28807 #: ../fuse/guestmount.pod:75
28808 msgid "Other users cannot see the filesystem by default"
28809 msgstr ""
28810
28811 #. type: textblock
28812 #: ../fuse/guestmount.pod:77
28813 msgid ""
28814 "If you mount a filesystem as one user (eg. root), then other users will not "
28815 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
28816 "option when mounting:"
28817 msgstr ""
28818
28819 #. type: verbatim
28820 #: ../fuse/guestmount.pod:81
28821 #, no-wrap
28822 msgid ""
28823 " sudo guestmount [...] -o allow_other /mnt\n"
28824 "\n"
28825 msgstr ""
28826
28827 #. type: =item
28828 #: ../fuse/guestmount.pod:87
28829 msgid "B<-a image> | B<--add image>"
28830 msgstr ""
28831
28832 #. type: textblock
28833 #: ../fuse/guestmount.pod:89
28834 msgid "Add a block device or virtual machine image."
28835 msgstr ""
28836
28837 #. type: =item
28838 #: ../fuse/guestmount.pod:94
28839 msgid "B<-c URI> | B<--connect URI>"
28840 msgstr ""
28841
28842 #. type: =item
28843 #: ../fuse/guestmount.pod:100
28844 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28845 msgstr ""
28846
28847 #. type: =item
28848 #: ../fuse/guestmount.pod:108
28849 msgid "B<--dir-cache-timeout N>"
28850 msgstr ""
28851
28852 #. type: textblock
28853 #: ../fuse/guestmount.pod:110
28854 msgid ""
28855 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28856 "seconds.  The readdir cache [actually, there are several semi-independent "
28857 "caches] is populated after a readdir(2) call with the stat and extended "
28858 "attributes of the files in the directory, in anticipation that they will be "
28859 "requested soon after."
28860 msgstr ""
28861
28862 #. type: textblock
28863 #: ../fuse/guestmount.pod:116
28864 msgid ""
28865 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28866 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28867 "requests, only cache existing ones."
28868 msgstr ""
28869
28870 #. type: =item
28871 #: ../fuse/guestmount.pod:127
28872 msgid "B<--format=raw|qcow2|..> | B<--format>"
28873 msgstr ""
28874
28875 #. type: textblock
28876 #: ../fuse/guestmount.pod:134
28877 msgid ""
28878 "If you have untrusted raw-format guest disk images, you should use this "
28879 "option to specify the disk format.  This avoids a possible security problem "
28880 "with malicious guests (CVE-2010-3851).  See also "
28881 "L<guestfs(3)/guestfs_add_drive_opts>."
28882 msgstr ""
28883
28884 #. type: =item
28885 #: ../fuse/guestmount.pod:139
28886 msgid "B<--fuse-help>"
28887 msgstr ""
28888
28889 #. type: textblock
28890 #: ../fuse/guestmount.pod:141
28891 msgid "Display help on special FUSE options (see I<-o> below)."
28892 msgstr ""
28893
28894 #. type: textblock
28895 #: ../fuse/guestmount.pod:145
28896 msgid "Display brief help and exit."
28897 msgstr ""
28898
28899 #. type: =item
28900 #: ../fuse/guestmount.pod:147
28901 msgid "B<-i> | B<--inspector>"
28902 msgstr ""
28903
28904 #. type: textblock
28905 #: ../fuse/guestmount.pod:167
28906 msgid ""
28907 "Mount the named partition or logical volume on the given mountpoint B<in the "
28908 "guest> (this has nothing to do with mountpoints in the host)."
28909 msgstr ""
28910
28911 #. type: textblock
28912 #: ../fuse/guestmount.pod:170
28913 msgid ""
28914 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28915 "something on C</>."
28916 msgstr ""
28917
28918 #. type: =item
28919 #: ../fuse/guestmount.pod:183
28920 msgid "B<-n> | B<--no-sync>"
28921 msgstr ""
28922
28923 #. type: textblock
28924 #: ../fuse/guestmount.pod:185
28925 msgid ""
28926 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28927 "unmounted.  If you specify this option, then we don't attempt to sync the "
28928 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28929 msgstr ""
28930
28931 #. type: =item
28932 #: ../fuse/guestmount.pod:190
28933 msgid "B<-o option> | B<--option option>"
28934 msgstr ""
28935
28936 #. type: textblock
28937 #: ../fuse/guestmount.pod:192
28938 msgid "Pass extra options to FUSE."
28939 msgstr ""
28940
28941 #. type: textblock
28942 #: ../fuse/guestmount.pod:194
28943 msgid ""
28944 "To get a list of all the extra options supported by FUSE, use the command "
28945 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28946 "of them are a good idea."
28947 msgstr ""
28948
28949 #. type: verbatim
28950 #: ../fuse/guestmount.pod:198
28951 #, no-wrap
28952 msgid ""
28953 " guestmount --fuse-help\n"
28954 "\n"
28955 msgstr ""
28956
28957 #. type: textblock
28958 #: ../fuse/guestmount.pod:200
28959 msgid "Some potentially useful FUSE options:"
28960 msgstr ""
28961
28962 #. type: =item
28963 #: ../fuse/guestmount.pod:204
28964 msgid "B<-o allow_other>"
28965 msgstr ""
28966
28967 #. type: textblock
28968 #: ../fuse/guestmount.pod:206
28969 msgid "Allow other users to see the filesystem."
28970 msgstr ""
28971
28972 #. type: =item
28973 #: ../fuse/guestmount.pod:208
28974 msgid "B<-o attr_timeout=N>"
28975 msgstr ""
28976
28977 #. type: textblock
28978 #: ../fuse/guestmount.pod:210
28979 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28980 msgstr ""
28981
28982 #. type: =item
28983 #: ../fuse/guestmount.pod:212
28984 msgid "B<-o kernel_cache>"
28985 msgstr ""
28986
28987 #. type: textblock
28988 #: ../fuse/guestmount.pod:214
28989 msgid ""
28990 "Allow the kernel to cache files (reduces the number of reads that have to go "
28991 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28992 "afford the extra memory usage."
28993 msgstr ""
28994
28995 #. type: =item
28996 #: ../fuse/guestmount.pod:218
28997 msgid "B<-o uid=N> B<-o gid=N>"
28998 msgstr ""
28999
29000 #. type: textblock
29001 #: ../fuse/guestmount.pod:220
29002 msgid ""
29003 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
29004 "the chosen values."
29005 msgstr ""
29006
29007 #. type: =item
29008 #: ../fuse/guestmount.pod:225
29009 msgid "B<-r> | B<--ro>"
29010 msgstr ""
29011
29012 #. type: textblock
29013 #: ../fuse/guestmount.pod:227
29014 msgid ""
29015 "Add devices and mount everything read-only.  Also disallow writes and make "
29016 "the disk appear read-only to FUSE."
29017 msgstr ""
29018
29019 #. type: textblock
29020 #: ../fuse/guestmount.pod:230
29021 msgid ""
29022 "This is highly recommended if you are not going to edit the guest disk.  If "
29023 "the guest is running and this option is I<not> supplied, then there is a "
29024 "strong risk of disk corruption in the guest.  We try to prevent this from "
29025 "happening, but it is not always possible."
29026 msgstr ""
29027
29028 #. type: textblock
29029 #: ../fuse/guestmount.pod:235
29030 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29031 msgstr ""
29032
29033 #. type: textblock
29034 #: ../fuse/guestmount.pod:239
29035 msgid "Enable SELinux support for the guest."
29036 msgstr ""
29037
29038 #. type: =item
29039 #: ../fuse/guestmount.pod:241
29040 msgid "B<-v> | B<--verbose>"
29041 msgstr ""
29042
29043 #. type: textblock
29044 #: ../fuse/guestmount.pod:243
29045 msgid "Enable verbose messages from underlying libguestfs."
29046 msgstr ""
29047
29048 #. type: =item
29049 #: ../fuse/guestmount.pod:245
29050 msgid "B<-V> | B<--version>"
29051 msgstr ""
29052
29053 #. type: textblock
29054 #: ../fuse/guestmount.pod:247
29055 msgid "Display the program version and exit."
29056 msgstr ""
29057
29058 #. type: =item
29059 #: ../fuse/guestmount.pod:249
29060 msgid "B<-w> | B<--rw>"
29061 msgstr ""
29062
29063 #. type: textblock
29064 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
29065 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29066 msgstr ""
29067
29068 #. type: =item
29069 #: ../fuse/guestmount.pod:256
29070 msgid "B<-x> | B<--trace>"
29071 msgstr ""
29072
29073 #. type: textblock
29074 #: ../fuse/guestmount.pod:258
29075 msgid "Trace libguestfs calls and entry into each FUSE function."
29076 msgstr ""
29077
29078 #. type: textblock
29079 #: ../fuse/guestmount.pod:260
29080 msgid "This also stops the daemon from forking into the background."
29081 msgstr ""
29082
29083 #. type: textblock
29084 #: ../fuse/guestmount.pod:281
29085 msgid ""
29086 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29087 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
29088 "L<http://fuse.sf.net/>."
29089 msgstr ""
29090
29091 #. type: textblock
29092 #: ../fuse/guestmount.pod:296
29093 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
29094 msgstr ""
29095
29096 #. type: textblock
29097 #: ../tools/virt-win-reg.pl:37
29098 msgid ""
29099 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
29100 "guest"
29101 msgstr ""
29102
29103 #. type: verbatim
29104 #: ../tools/virt-win-reg.pl:41
29105 #, no-wrap
29106 msgid ""
29107 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29108 "\n"
29109 msgstr ""
29110
29111 #. type: verbatim
29112 #: ../tools/virt-win-reg.pl:43
29113 #, no-wrap
29114 msgid ""
29115 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29116 "\n"
29117 msgstr ""
29118
29119 #. type: verbatim
29120 #: ../tools/virt-win-reg.pl:45
29121 #, no-wrap
29122 msgid ""
29123 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29124 "\n"
29125 msgstr ""
29126
29127 #. type: verbatim
29128 #: ../tools/virt-win-reg.pl:47
29129 #, no-wrap
29130 msgid ""
29131 " virt-win-reg --merge domname [input.reg ...]\n"
29132 "\n"
29133 msgstr ""
29134
29135 #. type: verbatim
29136 #: ../tools/virt-win-reg.pl:49
29137 #, no-wrap
29138 msgid ""
29139 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29140 "\n"
29141 msgstr ""
29142
29143 #. type: textblock
29144 #: ../tools/virt-win-reg.pl:53
29145 msgid ""
29146 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
29147 "virtual machines.  If you do this, you I<will> get irreversible disk "
29148 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29149 "but doesn't catch all cases."
29150 msgstr ""
29151
29152 #. type: textblock
29153 #: ../tools/virt-win-reg.pl:58
29154 msgid ""
29155 "Modifying the Windows Registry is an inherently risky operation.  The format "
29156 "is deliberately obscure and undocumented, and Registry changes can leave the "
29157 "system unbootable.  Therefore when using the I<--merge> option, make sure "
29158 "you have a reliable backup first."
29159 msgstr ""
29160
29161 #. type: textblock
29162 #: ../tools/virt-win-reg.pl:65
29163 msgid ""
29164 "This program can export and merge Windows Registry entries from a Windows "
29165 "guest."
29166 msgstr ""
29167
29168 #. type: textblock
29169 #: ../tools/virt-win-reg.pl:68
29170 msgid ""
29171 "The first parameter is the libvirt guest name or the raw disk image of a "
29172 "Windows guest."
29173 msgstr ""
29174
29175 #. type: textblock
29176 #: ../tools/virt-win-reg.pl:71
29177 msgid ""
29178 "If I<--merge> is I<not> specified, then the chosen registry key is "
29179 "displayed/exported (recursively).  For example:"
29180 msgstr ""
29181
29182 #. type: verbatim
29183 #: ../tools/virt-win-reg.pl:74
29184 #, no-wrap
29185 msgid ""
29186 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29187 "\n"
29188 msgstr ""
29189
29190 #. type: textblock
29191 #: ../tools/virt-win-reg.pl:76
29192 msgid "You can also display single values from within registry keys, for example:"
29193 msgstr ""
29194
29195 #. type: verbatim
29196 #: ../tools/virt-win-reg.pl:79
29197 #, no-wrap
29198 msgid ""
29199 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29200 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29201 " Windows 7 Enterprise\n"
29202 "\n"
29203 msgstr ""
29204
29205 #. type: textblock
29206 #: ../tools/virt-win-reg.pl:83
29207 msgid ""
29208 "With I<--merge>, you can merge a textual regedit file into the Windows "
29209 "Registry:"
29210 msgstr ""
29211
29212 #. type: verbatim
29213 #: ../tools/virt-win-reg.pl:86
29214 #, no-wrap
29215 msgid ""
29216 " $ virt-win-reg --merge Windows7 changes.reg\n"
29217 "\n"
29218 msgstr ""
29219
29220 #. type: =head1
29221 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29222 msgid "NOTE"
29223 msgstr ""
29224
29225 #. type: textblock
29226 #: ../tools/virt-win-reg.pl:90
29227 msgid ""
29228 "This program is only meant for simple access to the registry.  If you want "
29229 "to do complicated things with the registry, we suggest you download the "
29230 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29231 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29232 "L<hivexregedit(1)>."
29233 msgstr ""
29234
29235 #. type: textblock
29236 #: ../tools/virt-win-reg.pl:106 ../tools/virt-list-filesystems.pl:63 ../tools/virt-tar.pl:113 ../tools/virt-make-fs.pl:163 ../tools/virt-list-partitions.pl:64
29237 msgid "Display brief help."
29238 msgstr ""
29239
29240 #. type: textblock
29241 #: ../tools/virt-win-reg.pl:114 ../tools/virt-list-filesystems.pl:71 ../tools/virt-tar.pl:121 ../tools/virt-make-fs.pl:171 ../tools/virt-list-partitions.pl:72
29242 msgid "Display version number and exit."
29243 msgstr ""
29244
29245 #. type: =item
29246 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29247 msgid "B<--debug>"
29248 msgstr ""
29249
29250 #. type: textblock
29251 #: ../tools/virt-win-reg.pl:122
29252 msgid "Enable debugging messages."
29253 msgstr ""
29254
29255 #. type: =item
29256 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
29257 msgid "B<--connect URI> | B<-c URI>"
29258 msgstr ""
29259
29260 #. type: textblock
29261 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
29262 msgid ""
29263 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29264 "to the default libvirt hypervisor."
29265 msgstr ""
29266
29267 #. type: textblock
29268 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
29269 msgid ""
29270 "If you specify guest block devices directly, then libvirt is not used at "
29271 "all."
29272 msgstr ""
29273
29274 #. type: =item
29275 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
29276 msgid "B<--format> raw"
29277 msgstr ""
29278
29279 #. type: textblock
29280 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
29281 msgid ""
29282 "Specify the format of disk images given on the command line.  If this is "
29283 "omitted then the format is autodetected from the content of the disk image."
29284 msgstr ""
29285
29286 #. type: textblock
29287 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
29288 msgid ""
29289 "If disk images are requested from libvirt, then this program asks libvirt "
29290 "for this information.  In this case, the value of the format parameter is "
29291 "ignored."
29292 msgstr ""
29293
29294 #. type: textblock
29295 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
29296 msgid ""
29297 "If working with untrusted raw-format guest disk images, you should ensure "
29298 "the format is always specified."
29299 msgstr ""
29300
29301 #. type: =item
29302 #: ../tools/virt-win-reg.pl:157
29303 msgid "B<--merge>"
29304 msgstr ""
29305
29306 #. type: textblock
29307 #: ../tools/virt-win-reg.pl:159
29308 msgid ""
29309 "In merge mode, this merges a textual regedit file into the Windows Registry "
29310 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29311 "displays or exports Registry entries instead."
29312 msgstr ""
29313
29314 #. type: textblock
29315 #: ../tools/virt-win-reg.pl:163
29316 msgid ""
29317 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29318 "result in disk corruption.  However exporting (without this flag)  is always "
29319 "safe."
29320 msgstr ""
29321
29322 #. type: =item
29323 #: ../tools/virt-win-reg.pl:171
29324 msgid "B<--encoding> UTF-16LE|ASCII"
29325 msgstr ""
29326
29327 #. type: textblock
29328 #: ../tools/virt-win-reg.pl:173
29329 msgid ""
29330 "When merging (only), you may need to specify the encoding for strings to be "
29331 "used in the hive file.  This is explained in detail in "
29332 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
29333 msgstr ""
29334
29335 #. type: textblock
29336 #: ../tools/virt-win-reg.pl:177
29337 msgid ""
29338 "The default is to use UTF-16LE, which should work with recent versions of "
29339 "Windows."
29340 msgstr ""
29341
29342 #. type: =item
29343 #: ../tools/virt-win-reg.pl:184
29344 msgid "B<--unsafe-printable-strings>"
29345 msgstr ""
29346
29347 #. type: textblock
29348 #: ../tools/virt-win-reg.pl:186
29349 msgid ""
29350 "When exporting (only), assume strings are UTF-16LE and print them as strings "
29351 "instead of hex sequences.  Remove the final zero codepoint from strings if "
29352 "present."
29353 msgstr ""
29354
29355 #. type: textblock
29356 #: ../tools/virt-win-reg.pl:190
29357 msgid ""
29358 "This is unsafe and does not preserve the fidelity of strings in the original "
29359 "Registry for various reasons:"
29360 msgstr ""
29361
29362 #. type: textblock
29363 #: ../tools/virt-win-reg.pl:197
29364 msgid ""
29365 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
29366 "other encodings will be corrupted by this transformation."
29367 msgstr ""
29368
29369 #. type: textblock
29370 #: ../tools/virt-win-reg.pl:202
29371 msgid ""
29372 "Assumes that everything which has type 1 or 2 is really a string and that "
29373 "everything else is not a string, but the type field in real Registries is "
29374 "not reliable."
29375 msgstr ""
29376
29377 #. type: textblock
29378 #: ../tools/virt-win-reg.pl:208
29379 msgid ""
29380 "Loses information about whether a zero codepoint followed the string in the "
29381 "Registry or not."
29382 msgstr ""
29383
29384 #. type: textblock
29385 #: ../tools/virt-win-reg.pl:213
29386 msgid ""
29387 "This all happens because the Registry itself contains no information about "
29388 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
29389 msgstr ""
29390
29391 #. type: textblock
29392 #: ../tools/virt-win-reg.pl:217
29393 msgid ""
29394 "You should only use this option for quick hacking and debugging of the "
29395 "Registry contents, and I<never> use it if the output is going to be passed "
29396 "into another program or stored in another Registry."
29397 msgstr ""
29398
29399 #. type: =head1
29400 #: ../tools/virt-win-reg.pl:554
29401 msgid "SUPPORTED SYSTEMS"
29402 msgstr ""
29403
29404 #. type: textblock
29405 #: ../tools/virt-win-reg.pl:556
29406 msgid ""
29407 "The program currently supports Windows NT-derived guests starting with "
29408 "Windows XP through to at least Windows 7."
29409 msgstr ""
29410
29411 #. type: textblock
29412 #: ../tools/virt-win-reg.pl:559
29413 msgid "The following Registry keys are supported:"
29414 msgstr ""
29415
29416 #. type: =item
29417 #: ../tools/virt-win-reg.pl:563
29418 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
29419 msgstr ""
29420
29421 #. type: =item
29422 #: ../tools/virt-win-reg.pl:565
29423 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
29424 msgstr ""
29425
29426 #. type: =item
29427 #: ../tools/virt-win-reg.pl:567
29428 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
29429 msgstr ""
29430
29431 #. type: =item
29432 #: ../tools/virt-win-reg.pl:569
29433 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
29434 msgstr ""
29435
29436 #. type: =item
29437 #: ../tools/virt-win-reg.pl:571
29438 msgid "C<HKEY_USERS\\.DEFAULT>"
29439 msgstr ""
29440
29441 #. type: =item
29442 #: ../tools/virt-win-reg.pl:573
29443 msgid "C<HKEY_USERS\\I<SID>>"
29444 msgstr ""
29445
29446 #. type: textblock
29447 #: ../tools/virt-win-reg.pl:575
29448 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
29449 msgstr ""
29450
29451 #. type: =item
29452 #: ../tools/virt-win-reg.pl:577
29453 msgid "C<HKEY_USERS\\I<username>>"
29454 msgstr ""
29455
29456 #. type: textblock
29457 #: ../tools/virt-win-reg.pl:579
29458 msgid "where I<username> is a local user name (this is a libguestfs extension)."
29459 msgstr ""
29460
29461 #. type: textblock
29462 #: ../tools/virt-win-reg.pl:583
29463 msgid ""
29464 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29465 "C<HKEY_USERS>."
29466 msgstr ""
29467
29468 #. type: textblock
29469 #: ../tools/virt-win-reg.pl:586
29470 msgid ""
29471 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
29472 "supported (there is no \"current user\")."
29473 msgstr ""
29474
29475 #. type: =head1
29476 #: ../tools/virt-win-reg.pl:589
29477 msgid "ENCODING"
29478 msgstr ""
29479
29480 #. type: textblock
29481 #: ../tools/virt-win-reg.pl:591
29482 msgid ""
29483 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29484 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
29485 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
29486 "with Windows-style line endings, you may need to reencode the whole file "
29487 "before or after processing."
29488 msgstr ""
29489
29490 #. type: textblock
29491 #: ../tools/virt-win-reg.pl:597
29492 msgid ""
29493 "To reencode a file from Windows format to Linux (before processing it with "
29494 "the I<--merge> option), you would do something like this:"
29495 msgstr ""
29496
29497 #. type: verbatim
29498 #: ../tools/virt-win-reg.pl:600
29499 #, no-wrap
29500 msgid ""
29501 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29502 "\n"
29503 msgstr ""
29504
29505 #. type: textblock
29506 #: ../tools/virt-win-reg.pl:602
29507 msgid ""
29508 "To go in the opposite direction, after exporting and before sending the file "
29509 "to a Windows user, do something like this:"
29510 msgstr ""
29511
29512 #. type: verbatim
29513 #: ../tools/virt-win-reg.pl:605
29514 #, no-wrap
29515 msgid ""
29516 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29517 "\n"
29518 msgstr ""
29519
29520 #. type: textblock
29521 #: ../tools/virt-win-reg.pl:607
29522 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29523 msgstr ""
29524
29525 #. type: textblock
29526 #: ../tools/virt-win-reg.pl:609
29527 msgid ""
29528 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29529 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
29530 "Windows-style (CRLF) line endings, like this:"
29531 msgstr ""
29532
29533 #. type: verbatim
29534 #: ../tools/virt-win-reg.pl:613
29535 #, no-wrap
29536 msgid ""
29537 " $ file software.reg\n"
29538 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29539 " with CRLF line terminators\n"
29540 "\n"
29541 msgstr ""
29542
29543 #. type: textblock
29544 #: ../tools/virt-win-reg.pl:617
29545 msgid "This file would need conversion before you could I<--merge> it."
29546 msgstr ""
29547
29548 #. type: =head1
29549 #: ../tools/virt-win-reg.pl:619
29550 msgid "CurrentControlSet etc."
29551 msgstr ""
29552
29553 #. type: textblock
29554 #: ../tools/virt-win-reg.pl:621
29555 msgid ""
29556 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29557 "Registry at the level of the hive file, and therefore you cannot modify "
29558 "these."
29559 msgstr ""
29560
29561 #. type: textblock
29562 #: ../tools/virt-win-reg.pl:625
29563 msgid ""
29564 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29565 "circumstances it might refer to another control set.  The way to find out is "
29566 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29567 msgstr ""
29568
29569 #. type: verbatim
29570 #: ../tools/virt-win-reg.pl:629
29571 #, no-wrap
29572 msgid ""
29573 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29574 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29575 " \"Current\"=dword:00000001\n"
29576 " \"Default\"=dword:00000001\n"
29577 " \"Failed\"=dword:00000000\n"
29578 " \"LastKnownGood\"=dword:00000002\n"
29579 "\n"
29580 msgstr ""
29581
29582 #. type: textblock
29583 #: ../tools/virt-win-reg.pl:636
29584 msgid "\"Current\" is the one which Windows will choose when it boots."
29585 msgstr ""
29586
29587 #. type: textblock
29588 #: ../tools/virt-win-reg.pl:638
29589 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
29590 msgstr ""
29591
29592 #. type: =head1
29593 #: ../tools/virt-win-reg.pl:641
29594 msgid "WINDOWS TIPS"
29595 msgstr ""
29596
29597 #. type: textblock
29598 #: ../tools/virt-win-reg.pl:643
29599 msgid ""
29600 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29601 "be shut off, else you will get disk corruption."
29602 msgstr ""
29603
29604 #. type: =head2
29605 #: ../tools/virt-win-reg.pl:646
29606 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29607 msgstr ""
29608
29609 #. type: textblock
29610 #: ../tools/virt-win-reg.pl:648
29611 msgid ""
29612 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29613 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29614 "is uploaded into C<C:\\>:"
29615 msgstr ""
29616
29617 #. type: verbatim
29618 #: ../tools/virt-win-reg.pl:652
29619 #, no-wrap
29620 msgid ""
29621 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29622 "\n"
29623 msgstr ""
29624
29625 #. type: textblock
29626 #: ../tools/virt-win-reg.pl:654
29627 msgid "Prepare a regedit file containing the registry change:"
29628 msgstr ""
29629
29630 #. type: verbatim
29631 #: ../tools/virt-win-reg.pl:656
29632 #, no-wrap
29633 msgid ""
29634 " cat > test.reg <<'EOF'\n"
29635 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29636 " \"Test\"=\"c:\\\\test.bat\"\n"
29637 " EOF\n"
29638 "\n"
29639 msgstr ""
29640
29641 #. type: textblock
29642 #: ../tools/virt-win-reg.pl:661
29643 msgid ""
29644 "In this example we use the key C<RunOnce> which means that the script will "
29645 "run precisely once when the first user logs in.  If you want it to run every "
29646 "time a user logs in, replace C<RunOnce> with C<Run>."
29647 msgstr ""
29648
29649 #. type: textblock
29650 #: ../tools/virt-win-reg.pl:665
29651 msgid "Now update the registry:"
29652 msgstr ""
29653
29654 #. type: verbatim
29655 #: ../tools/virt-win-reg.pl:667
29656 #, no-wrap
29657 msgid ""
29658 " virt-win-reg --merge WindowsGuest test.reg\n"
29659 "\n"
29660 msgstr ""
29661
29662 #. type: =head2
29663 #: ../tools/virt-win-reg.pl:669
29664 msgid "INSTALLING A SERVICE"
29665 msgstr ""
29666
29667 #. type: textblock
29668 #: ../tools/virt-win-reg.pl:671
29669 msgid ""
29670 "This section assumes you are familiar with Windows services, and you either "
29671 "have a program which handles the Windows Service Control Protocol directly "
29672 "or you want to run any program using a service wrapper like SrvAny or the "
29673 "free RHSrvAny."
29674 msgstr ""
29675
29676 #. type: textblock
29677 #: ../tools/virt-win-reg.pl:676
29678 msgid ""
29679 "First upload the program and optionally the service wrapper.  In this case "
29680 "the test program is called C<test.exe> and we are using the RHSrvAny "
29681 "wrapper:"
29682 msgstr ""
29683
29684 #. type: verbatim
29685 #: ../tools/virt-win-reg.pl:680
29686 #, no-wrap
29687 msgid ""
29688 " guestfish -i -d WindowsGuest <<EOF\n"
29689 "   upload rhsrvany.exe /rhsrvany.exe\n"
29690 "   upload test.exe /test.exe\n"
29691 " EOF\n"
29692 "\n"
29693 msgstr ""
29694
29695 #. type: textblock
29696 #: ../tools/virt-win-reg.pl:685
29697 msgid ""
29698 "Prepare a regedit file containing the registry changes.  In this example, "
29699 "the first registry change is needed for the service itself or the service "
29700 "wrapper (if used).  The second registry change is only needed because I am "
29701 "using the RHSrvAny service wrapper."
29702 msgstr ""
29703
29704 #. type: verbatim
29705 #: ../tools/virt-win-reg.pl:690
29706 #, no-wrap
29707 msgid ""
29708 " cat > service.reg <<'EOF'\n"
29709 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
29710 " \"Type\"=dword:00000010\n"
29711 " \"Start\"=dword:00000002\n"
29712 " \"ErrorControl\"=dword:00000001\n"
29713 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
29714 " \"DisplayName\"=\"RHSrvAny\"\n"
29715 " \"ObjectName\"=\"NetworkService\"\n"
29716 " \n"
29717 msgstr ""
29718
29719 #. type: verbatim
29720 #: ../tools/virt-win-reg.pl:699
29721 #, no-wrap
29722 msgid ""
29723 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
29724 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
29725 " \"PWD\"=\"c:\\\\Temp\"\n"
29726 " EOF\n"
29727 "\n"
29728 msgstr ""
29729
29730 #. type: textblock
29731 #: ../tools/virt-win-reg.pl:710
29732 msgid ""
29733 "For use of C<ControlSet001> see the section above in this manual page.  You "
29734 "may need to adjust this according to the control set that is in use by the "
29735 "guest."
29736 msgstr ""
29737
29738 #. type: textblock
29739 #: ../tools/virt-win-reg.pl:716
29740 msgid ""
29741 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
29742 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
29743 "privileged account."
29744 msgstr ""
29745
29746 #. type: textblock
29747 #: ../tools/virt-win-reg.pl:722
29748 msgid ""
29749 "For the meaning of the magic numbers, see this Microsoft KB article: "
29750 "L<http://support.microsoft.com/kb/103000>."
29751 msgstr ""
29752
29753 #. type: textblock
29754 #: ../tools/virt-win-reg.pl:727
29755 msgid "Update the registry:"
29756 msgstr ""
29757
29758 #. type: verbatim
29759 #: ../tools/virt-win-reg.pl:729
29760 #, no-wrap
29761 msgid ""
29762 " virt-win-reg --merge WindowsGuest service.reg\n"
29763 "\n"
29764 msgstr ""
29765
29766 #. type: =head1
29767 #: ../tools/virt-win-reg.pl:731 ../tools/virt-list-filesystems.pl:182 ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:532 ../tools/virt-list-partitions.pl:250
29768 msgid "SHELL QUOTING"
29769 msgstr ""
29770
29771 #. type: textblock
29772 #: ../tools/virt-win-reg.pl:733
29773 msgid ""
29774 "Be careful when passing parameters containing C<\\> (backslash) in the "
29775 "shell.  Usually you will have to use 'single quotes' or double backslashes "
29776 "(but not both) to protect them from the shell."
29777 msgstr ""
29778
29779 #. type: textblock
29780 #: ../tools/virt-win-reg.pl:737
29781 msgid "Paths and value names are case-insensitive."
29782 msgstr ""
29783
29784 #. type: textblock
29785 #: ../tools/virt-win-reg.pl:739 ../tools/virt-list-filesystems.pl:184 ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:534 ../tools/virt-list-partitions.pl:252
29786 msgid ""
29787 "Libvirt guest names can contain arbitrary characters, some of which have "
29788 "meaning to the shell such as C<#> and space.  You may need to quote or "
29789 "escape these characters on the command line.  See the shell manual page "
29790 "L<sh(1)> for details."
29791 msgstr ""
29792
29793 #. type: textblock
29794 #: ../tools/virt-win-reg.pl:746
29795 msgid ""
29796 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
29797 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
29798 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
29799 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29800 msgstr ""
29801
29802 #. type: textblock
29803 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
29804 msgid ""
29805 "When reporting bugs, please enable debugging and capture the I<complete> "
29806 "output:"
29807 msgstr ""
29808
29809 #. type: verbatim
29810 #: ../tools/virt-win-reg.pl:764
29811 #, no-wrap
29812 msgid ""
29813 " export LIBGUESTFS_DEBUG=1\n"
29814 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
29815 "\n"
29816 msgstr ""
29817
29818 #. type: textblock
29819 #: ../tools/virt-win-reg.pl:767
29820 msgid ""
29821 "Attach /tmp/virt-win-reg.log to a new bug report at "
29822 "L<https://bugzilla.redhat.com/>"
29823 msgstr ""
29824
29825 #. type: =head1
29826 #: ../tools/virt-win-reg.pl:770 ../tools/virt-list-filesystems.pl:202 ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564 ../tools/virt-list-partitions.pl:269
29827 msgid "AUTHOR"
29828 msgstr ""
29829
29830 #. type: textblock
29831 #: ../tools/virt-win-reg.pl:772 ../tools/virt-list-filesystems.pl:204 ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566 ../tools/virt-list-partitions.pl:271
29832 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29833 msgstr ""
29834
29835 #. type: textblock
29836 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
29837 msgid "Copyright (C) 2010 Red Hat Inc."
29838 msgstr ""
29839
29840 #. type: textblock
29841 #: ../tools/virt-list-filesystems.pl:32
29842 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
29843 msgstr ""
29844
29845 #. type: verbatim
29846 #: ../tools/virt-list-filesystems.pl:36
29847 #, no-wrap
29848 msgid ""
29849 " virt-list-filesystems [--options] domname\n"
29850 "\n"
29851 msgstr ""
29852
29853 #. type: verbatim
29854 #: ../tools/virt-list-filesystems.pl:38
29855 #, no-wrap
29856 msgid ""
29857 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29858 "\n"
29859 msgstr ""
29860
29861 #. type: textblock
29862 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29863 msgid ""
29864 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29865 "replacement."
29866 msgstr ""
29867
29868 #. type: textblock
29869 #: ../tools/virt-list-filesystems.pl:45
29870 msgid ""
29871 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29872 "are contained in a virtual machine or disk image."
29873 msgstr ""
29874
29875 #. type: textblock
29876 #: ../tools/virt-list-filesystems.pl:49
29877 msgid ""
29878 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29879 "functionality.  For more complex cases you should look at the "
29880 "L<guestfish(1)> tool."
29881 msgstr ""
29882
29883 #. type: =item
29884 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
29885 msgid "B<-l> | B<--long>"
29886 msgstr ""
29887
29888 #. type: textblock
29889 #: ../tools/virt-list-filesystems.pl:108
29890 msgid ""
29891 "With this option, C<virt-list-filesystems> displays the type of each "
29892 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
29893 msgstr ""
29894
29895 #. type: =item
29896 #: ../tools/virt-list-filesystems.pl:115
29897 msgid "B<-a> | B<--all>"
29898 msgstr ""
29899
29900 #. type: textblock
29901 #: ../tools/virt-list-filesystems.pl:117
29902 msgid ""
29903 "Normally we only show mountable filesystems.  If this option is given then "
29904 "swap devices are shown too."
29905 msgstr ""
29906
29907 #. type: textblock
29908 #: ../tools/virt-list-filesystems.pl:191
29909 msgid ""
29910 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
29911 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
29912 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29913 msgstr ""
29914
29915 #. type: textblock
29916 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
29917 msgid "Copyright (C) 2009 Red Hat Inc."
29918 msgstr ""
29919
29920 #. type: textblock
29921 #: ../tools/virt-tar.pl:33
29922 msgid "virt-tar - Extract or upload files to a virtual machine"
29923 msgstr ""
29924
29925 #. type: verbatim
29926 #: ../tools/virt-tar.pl:37
29927 #, no-wrap
29928 msgid ""
29929 " virt-tar [--options] -x domname directory tarball\n"
29930 "\n"
29931 msgstr ""
29932
29933 #. type: verbatim
29934 #: ../tools/virt-tar.pl:39
29935 #, no-wrap
29936 msgid ""
29937 " virt-tar [--options] -u domname tarball directory\n"
29938 "\n"
29939 msgstr ""
29940
29941 #. type: verbatim
29942 #: ../tools/virt-tar.pl:41
29943 #, no-wrap
29944 msgid ""
29945 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
29946 "\n"
29947 msgstr ""
29948
29949 #. type: verbatim
29950 #: ../tools/virt-tar.pl:43
29951 #, no-wrap
29952 msgid ""
29953 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
29954 "\n"
29955 msgstr ""
29956
29957 #. type: textblock
29958 #: ../tools/virt-tar.pl:47
29959 msgid ""
29960 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, "
29961 "L<virt-tar-in(1)>, L<virt-tar-out(1)> as replacements."
29962 msgstr ""
29963
29964 #. type: textblock
29965 #: ../tools/virt-tar.pl:52
29966 msgid "Download C</home> from the VM into a local tarball:"
29967 msgstr ""
29968
29969 #. type: verbatim
29970 #: ../tools/virt-tar.pl:54
29971 #, no-wrap
29972 msgid ""
29973 " virt-tar -x domname /home home.tar\n"
29974 "\n"
29975 msgstr ""
29976
29977 #. type: verbatim
29978 #: ../tools/virt-tar.pl:56
29979 #, no-wrap
29980 msgid ""
29981 " virt-tar -zx domname /home home.tar.gz\n"
29982 "\n"
29983 msgstr ""
29984
29985 #. type: textblock
29986 #: ../tools/virt-tar.pl:58
29987 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29988 msgstr ""
29989
29990 #. type: verbatim
29991 #: ../tools/virt-tar.pl:60
29992 #, no-wrap
29993 msgid ""
29994 " virt-tar -u domname uploadstuff.tar /tmp\n"
29995 "\n"
29996 msgstr ""
29997
29998 #. type: verbatim
29999 #: ../tools/virt-tar.pl:62
30000 #, no-wrap
30001 msgid ""
30002 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30003 "\n"
30004 msgstr ""
30005
30006 #. type: textblock
30007 #: ../tools/virt-tar.pl:66
30008 msgid ""
30009 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
30010 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30011 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30012 msgstr ""
30013
30014 #. type: textblock
30015 #: ../tools/virt-tar.pl:71
30016 msgid ""
30017 "You can use I<-x> (extract) on live virtual machines, but you might get "
30018 "inconsistent results or errors if there is filesystem activity inside the "
30019 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30020 "work, but the only way to guarantee consistent results is if the virtual "
30021 "machine is shut down."
30022 msgstr ""
30023
30024 #. type: textblock
30025 #: ../tools/virt-tar.pl:79
30026 msgid ""
30027 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30028 "parts of a guest filesystem.  There are many possibilities: making backups, "
30029 "uploading data files, snooping on guest activity, fixing or customizing "
30030 "guests, etc."
30031 msgstr ""
30032
30033 #. type: textblock
30034 #: ../tools/virt-tar.pl:84
30035 msgid ""
30036 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30037 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30038 "should look at the L<guestfish(1)> tool."
30039 msgstr ""
30040
30041 #. type: textblock
30042 #: ../tools/virt-tar.pl:88
30043 msgid ""
30044 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
30045 "its contents (recursively) from the virtual machine into a local tarball.  "
30046 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
30047 "virtual machine.  You cannot use these two options together."
30048 msgstr ""
30049
30050 #. type: textblock
30051 #: ../tools/virt-tar.pl:94
30052 msgid ""
30053 "In addition, you may need to use the I<-z> (gZip) option to enable "
30054 "compression.  When uploading, you have to specify I<-z> if the upload file "
30055 "is compressed because virt-tar won't detect this on its own."
30056 msgstr ""
30057
30058 #. type: textblock
30059 #: ../tools/virt-tar.pl:98
30060 msgid ""
30061 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30062 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30063 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30064 "the L<libguestfs(3)> API)."
30065 msgstr ""
30066
30067 #. type: =item
30068 #: ../tools/virt-tar.pl:156
30069 msgid "B<-x> | B<--extract> | B<--download>"
30070 msgstr ""
30071
30072 #. type: =item
30073 #: ../tools/virt-tar.pl:158
30074 msgid "B<-u> | B<--upload>"
30075 msgstr ""
30076
30077 #. type: textblock
30078 #: ../tools/virt-tar.pl:160
30079 msgid ""
30080 "Use I<-x> to extract (download) a directory from a virtual machine to a "
30081 "local tarball."
30082 msgstr ""
30083
30084 #. type: textblock
30085 #: ../tools/virt-tar.pl:163
30086 msgid ""
30087 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
30088 "Please read the L</WARNING> section above before using this option."
30089 msgstr ""
30090
30091 #. type: textblock
30092 #: ../tools/virt-tar.pl:167
30093 msgid "You must specify exactly one of these options."
30094 msgstr ""
30095
30096 #. type: =item
30097 #: ../tools/virt-tar.pl:173
30098 msgid "B<-z> | B<--gzip>"
30099 msgstr ""
30100
30101 #. type: textblock
30102 #: ../tools/virt-tar.pl:175
30103 msgid "Specify that the input or output tarball is gzip-compressed."
30104 msgstr ""
30105
30106 #. type: textblock
30107 #: ../tools/virt-tar.pl:288
30108 msgid ""
30109 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
30110 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
30111 "L<virt-tar-out(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, "
30112 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30113 msgstr ""
30114
30115 #. type: textblock
30116 #: ../tools/virt-make-fs.pl:37
30117 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30118 msgstr ""
30119
30120 #. type: verbatim
30121 #: ../tools/virt-make-fs.pl:41
30122 #, no-wrap
30123 msgid ""
30124 " virt-make-fs [--options] input.tar output.img\n"
30125 "\n"
30126 msgstr ""
30127
30128 #. type: verbatim
30129 #: ../tools/virt-make-fs.pl:43
30130 #, no-wrap
30131 msgid ""
30132 " virt-make-fs [--options] input.tar.gz output.img\n"
30133 "\n"
30134 msgstr ""
30135
30136 #. type: verbatim
30137 #: ../tools/virt-make-fs.pl:45
30138 #, no-wrap
30139 msgid ""
30140 " virt-make-fs [--options] directory output.img\n"
30141 "\n"
30142 msgstr ""
30143
30144 #. type: textblock
30145 #: ../tools/virt-make-fs.pl:49
30146 msgid ""
30147 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30148 "archive or some files in a directory.  It is similar to tools like "
30149 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
30150 "it can create common filesystem types like ext2/3 or NTFS, which can be "
30151 "useful if you want to attach these filesystems to existing virtual machines "
30152 "(eg. to import large amounts of read-only data to a VM)."
30153 msgstr ""
30154
30155 #. type: textblock
30156 #: ../tools/virt-make-fs.pl:57
30157 msgid "Basic usage is:"
30158 msgstr ""
30159
30160 #. type: verbatim
30161 #: ../tools/virt-make-fs.pl:59
30162 #, no-wrap
30163 msgid ""
30164 " virt-make-fs input output\n"
30165 "\n"
30166 msgstr ""
30167
30168 #. type: textblock
30169 #: ../tools/virt-make-fs.pl:61
30170 msgid ""
30171 "where C<input> is either a directory containing files that you want to add, "
30172 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30173 "C<output> is a disk image.  The input type is detected automatically.  The "
30174 "output disk image defaults to a raw ext2 image unless you specify extra "
30175 "flags (see L</OPTIONS> below)."
30176 msgstr ""
30177
30178 #. type: =head2
30179 #: ../tools/virt-make-fs.pl:67
30180 msgid "EXTRA SPACE"
30181 msgstr ""
30182
30183 #. type: textblock
30184 #: ../tools/virt-make-fs.pl:69
30185 msgid ""
30186 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30187 "the files that it contains, but might have extra space.  Depending on how "
30188 "you are going to use the output, you might think this extra space is wasted "
30189 "and want to minimize it, or you might want to leave space so that more files "
30190 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30191 "but you can use the I<--size> flag to leave space in the filesystem if you "
30192 "want it."
30193 msgstr ""
30194
30195 #. type: textblock
30196 #: ../tools/virt-make-fs.pl:77
30197 msgid ""
30198 "An alternative way to leave extra space but not make the output image any "
30199 "bigger is to use an alternative disk image format (instead of the default "
30200 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
30201 "image format (check your hypervisor supports this before using it).  This "
30202 "allows you to choose a large I<--size> but the extra space won't actually be "
30203 "allocated in the image until you try to store something in it."
30204 msgstr ""
30205
30206 #. type: textblock
30207 #: ../tools/virt-make-fs.pl:85
30208 msgid ""
30209 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30210 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30211 "to build another image from scratch."
30212 msgstr ""
30213
30214 #. type: =head3
30215 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
30216 msgid "EXAMPLE"
30217 msgstr ""
30218
30219 #. type: verbatim
30220 #: ../tools/virt-make-fs.pl:91
30221 #, no-wrap
30222 msgid ""
30223 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30224 "\n"
30225 msgstr ""
30226
30227 #. type: =head2
30228 #: ../tools/virt-make-fs.pl:93
30229 msgid "FILESYSTEM TYPE"
30230 msgstr ""
30231
30232 #. type: textblock
30233 #: ../tools/virt-make-fs.pl:95
30234 msgid ""
30235 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30236 "libguestfs supports can be used (but I<not> read-only formats like "
30237 "ISO9660).  Here are some of the more common choices:"
30238 msgstr ""
30239
30240 #. type: =item
30241 #: ../tools/virt-make-fs.pl:101
30242 msgid "I<ext3>"
30243 msgstr ""
30244
30245 #. type: textblock
30246 #: ../tools/virt-make-fs.pl:103
30247 msgid ""
30248 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30249 "you are not going to use the filesystem in a way that requires the journal, "
30250 "then this is just wasted overhead."
30251 msgstr ""
30252
30253 #. type: =item
30254 #: ../tools/virt-make-fs.pl:107
30255 msgid "I<ntfs> or I<vfat>"
30256 msgstr ""
30257
30258 #. type: textblock
30259 #: ../tools/virt-make-fs.pl:109
30260 msgid "Useful if exporting data to a Windows guest."
30261 msgstr ""
30262
30263 #. type: textblock
30264 #: ../tools/virt-make-fs.pl:111
30265 msgid ""
30266 "I<Note for vfat>: The tar archive or local directory must only contain files "
30267 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30268 "program running within libguestfs is unable to change the ownership of "
30269 "non-root files, since vfat itself does not support this."
30270 msgstr ""
30271
30272 #. type: =item
30273 #: ../tools/virt-make-fs.pl:116
30274 msgid "I<minix>"
30275 msgstr ""
30276
30277 #. type: textblock
30278 #: ../tools/virt-make-fs.pl:118
30279 msgid ""
30280 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30281 "total filesystem size."
30282 msgstr ""
30283
30284 #. type: verbatim
30285 #: ../tools/virt-make-fs.pl:125
30286 #, no-wrap
30287 msgid ""
30288 " virt-make-fs --type=minix input minixfs.img\n"
30289 "\n"
30290 msgstr ""
30291
30292 #. type: =head2
30293 #: ../tools/virt-make-fs.pl:127
30294 msgid "TO PARTITION OR NOT TO PARTITION"
30295 msgstr ""
30296
30297 #. type: textblock
30298 #: ../tools/virt-make-fs.pl:129
30299 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30300 msgstr ""
30301
30302 #. type: textblock
30303 #: ../tools/virt-make-fs.pl:131
30304 msgid ""
30305 "Adding a partition can make the disk image more compatible with certain "
30306 "virtualized operating systems which don't expect to see a filesystem "
30307 "directly located on a block device (Linux doesn't care and will happily "
30308 "handle both types)."
30309 msgstr ""
30310
30311 #. type: textblock
30312 #: ../tools/virt-make-fs.pl:136
30313 msgid ""
30314 "On the other hand, if you have a partition table then the output image is no "
30315 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30316 "directly on a partitioned disk image.  (However libguestfs tools such as "
30317 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30318 msgstr ""
30319
30320 #. type: textblock
30321 #: ../tools/virt-make-fs.pl:144
30322 msgid "Add an MBR partition:"
30323 msgstr ""
30324
30325 #. type: verbatim
30326 #: ../tools/virt-make-fs.pl:146
30327 #, no-wrap
30328 msgid ""
30329 " virt-make-fs --partition -- input disk.img\n"
30330 "\n"
30331 msgstr ""
30332
30333 #. type: textblock
30334 #: ../tools/virt-make-fs.pl:148
30335 msgid ""
30336 "If the output disk image could be terabyte-sized or larger, it's better to "
30337 "use an EFI/GPT-compatible partition table:"
30338 msgstr ""
30339
30340 #. type: verbatim
30341 #: ../tools/virt-make-fs.pl:151
30342 #, no-wrap
30343 msgid ""
30344 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30345 "\n"
30346 msgstr ""
30347
30348 #. type: textblock
30349 #: ../tools/virt-make-fs.pl:179
30350 msgid "Enable debugging information."
30351 msgstr ""
30352
30353 #. type: =item
30354 #: ../tools/virt-make-fs.pl:185
30355 msgid "B<--size=E<lt>NE<gt>>"
30356 msgstr ""
30357
30358 #. type: =item
30359 #: ../tools/virt-make-fs.pl:187
30360 msgid "B<--size=+E<lt>NE<gt>>"
30361 msgstr ""
30362
30363 #. type: =item
30364 #: ../tools/virt-make-fs.pl:189
30365 msgid "B<-s E<lt>NE<gt>>"
30366 msgstr ""
30367
30368 #. type: =item
30369 #: ../tools/virt-make-fs.pl:191
30370 msgid "B<-s +E<lt>NE<gt>>"
30371 msgstr ""
30372
30373 #. type: textblock
30374 #: ../tools/virt-make-fs.pl:193
30375 msgid "Use the I<--size> (or I<-s>) option to choose the size of the output image."
30376 msgstr ""
30377
30378 #. type: textblock
30379 #: ../tools/virt-make-fs.pl:196
30380 msgid ""
30381 "If this option is I<not> given, then the output image will be just large "
30382 "enough to contain all the files, with not much wasted space."
30383 msgstr ""
30384
30385 #. type: textblock
30386 #: ../tools/virt-make-fs.pl:199
30387 msgid ""
30388 "To choose a fixed size output disk, specify an absolute number followed by "
30389 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30390 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30391 "files, else you will get an error."
30392 msgstr ""
30393
30394 #. type: textblock
30395 #: ../tools/virt-make-fs.pl:204
30396 msgid ""
30397 "To leave extra space, specify C<+> (plus sign) and a number followed by "
30398 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30399 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
30400 "the input files, and (approximately) an extra 200 MB free space."
30401 msgstr ""
30402
30403 #. type: textblock
30404 #: ../tools/virt-make-fs.pl:210
30405 msgid ""
30406 "Note that virt-make-fs estimates free space, and therefore will not produce "
30407 "filesystems containing precisely the free space requested.  (It is much more "
30408 "expensive and time-consuming to produce a filesystem which has precisely the "
30409 "desired free space)."
30410 msgstr ""
30411
30412 #. type: =item
30413 #: ../tools/virt-make-fs.pl:219
30414 msgid "B<--format=E<lt>fmtE<gt>>"
30415 msgstr ""
30416
30417 #. type: =item
30418 #: ../tools/virt-make-fs.pl:221
30419 msgid "B<-F E<lt>fmtE<gt>>"
30420 msgstr ""
30421
30422 #. type: textblock
30423 #: ../tools/virt-make-fs.pl:223
30424 msgid "Choose the output disk image format."
30425 msgstr ""
30426
30427 #. type: textblock
30428 #: ../tools/virt-make-fs.pl:225
30429 msgid "The default is C<raw> (raw disk image)."
30430 msgstr ""
30431
30432 #. type: textblock
30433 #: ../tools/virt-make-fs.pl:227
30434 msgid ""
30435 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30436 "that would really make sense here is C<qcow2>."
30437 msgstr ""
30438
30439 #. type: =item
30440 #: ../tools/virt-make-fs.pl:234
30441 msgid "B<--type=E<lt>fsE<gt>>"
30442 msgstr ""
30443
30444 #. type: =item
30445 #: ../tools/virt-make-fs.pl:236
30446 msgid "B<-t E<lt>fsE<gt>>"
30447 msgstr ""
30448
30449 #. type: textblock
30450 #: ../tools/virt-make-fs.pl:238
30451 msgid "Choose the output filesystem type."
30452 msgstr ""
30453
30454 #. type: textblock
30455 #: ../tools/virt-make-fs.pl:240
30456 msgid "The default is C<ext2>."
30457 msgstr ""
30458
30459 #. type: textblock
30460 #: ../tools/virt-make-fs.pl:242
30461 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
30462 msgstr ""
30463
30464 #. type: =item
30465 #: ../tools/virt-make-fs.pl:249
30466 msgid "B<--partition>"
30467 msgstr ""
30468
30469 #. type: =item
30470 #: ../tools/virt-make-fs.pl:251
30471 msgid "B<--partition=E<lt>parttypeE<gt>>"
30472 msgstr ""
30473
30474 #. type: textblock
30475 #: ../tools/virt-make-fs.pl:253
30476 msgid ""
30477 "If specified, this flag adds an MBR partition table to the output disk "
30478 "image."
30479 msgstr ""
30480
30481 #. type: textblock
30482 #: ../tools/virt-make-fs.pl:256
30483 msgid ""
30484 "You can change the partition table type, eg. I<--partition=gpt> for large "
30485 "disks."
30486 msgstr ""
30487
30488 #. type: textblock
30489 #: ../tools/virt-make-fs.pl:259
30490 msgid ""
30491 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
30492 "might consider the next parameter to be the partition type.  For example:"
30493 msgstr ""
30494
30495 #. type: verbatim
30496 #: ../tools/virt-make-fs.pl:263
30497 #, no-wrap
30498 msgid ""
30499 " virt-make-fs --partition input.tar ...\n"
30500 "\n"
30501 msgstr ""
30502
30503 #. type: textblock
30504 #: ../tools/virt-make-fs.pl:265
30505 msgid ""
30506 "would cause virt-make-fs to think you wanted to use a partition type of "
30507 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
30508 "dash) between options and the input file argument:"
30509 msgstr ""
30510
30511 #. type: verbatim
30512 #: ../tools/virt-make-fs.pl:269
30513 #, no-wrap
30514 msgid ""
30515 " virt-make-fs --partition -- input.tar ...\n"
30516 "\n"
30517 msgstr ""
30518
30519 #. type: textblock
30520 #: ../tools/virt-make-fs.pl:541
30521 msgid ""
30522 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30523 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
30524 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30525 msgstr ""
30526
30527 #. type: verbatim
30528 #: ../tools/virt-make-fs.pl:558
30529 #, no-wrap
30530 msgid ""
30531 " export LIBGUESTFS_DEBUG=1\n"
30532 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30533 "\n"
30534 msgstr ""
30535
30536 #. type: textblock
30537 #: ../tools/virt-make-fs.pl:561
30538 msgid ""
30539 "Attach /tmp/virt-make-fs.log to a new bug report at "
30540 "L<https://bugzilla.redhat.com/>"
30541 msgstr ""
30542
30543 #. type: textblock
30544 #: ../tools/virt-list-partitions.pl:32
30545 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
30546 msgstr ""
30547
30548 #. type: verbatim
30549 #: ../tools/virt-list-partitions.pl:36
30550 #, no-wrap
30551 msgid ""
30552 " virt-list-partitions [--options] domname\n"
30553 "\n"
30554 msgstr ""
30555
30556 #. type: verbatim
30557 #: ../tools/virt-list-partitions.pl:38
30558 #, no-wrap
30559 msgid ""
30560 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30561 "\n"
30562 msgstr ""
30563
30564 #. type: textblock
30565 #: ../tools/virt-list-partitions.pl:45
30566 msgid ""
30567 "C<virt-list-partitions> is a command line tool to list the partitions that "
30568 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30569 "first step to using L<virt-resize(1)>."
30570 msgstr ""
30571
30572 #. type: textblock
30573 #: ../tools/virt-list-partitions.pl:50
30574 msgid ""
30575 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30576 "functionality.  For more complex cases you should look at the "
30577 "L<guestfish(1)> tool."
30578 msgstr ""
30579
30580 #. type: =item
30581 #: ../tools/virt-list-partitions.pl:107
30582 msgid "B<-h> | B<--human-readable>"
30583 msgstr ""
30584
30585 #. type: textblock
30586 #: ../tools/virt-list-partitions.pl:109
30587 msgid "Show sizes in human-readable form (eg. \"1G\")."
30588 msgstr ""
30589
30590 #. type: textblock
30591 #: ../tools/virt-list-partitions.pl:117
30592 msgid ""
30593 "With this option, C<virt-list-partitions> displays the type and size of each "
30594 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30595 msgstr ""
30596
30597 #. type: =item
30598 #: ../tools/virt-list-partitions.pl:124
30599 msgid "B<-t> | B<--total>"
30600 msgstr ""
30601
30602 #. type: textblock
30603 #: ../tools/virt-list-partitions.pl:126
30604 msgid "Display the total size of each block device (as a separate row or rows)."
30605 msgstr ""
30606
30607 #. type: textblock
30608 #: ../tools/virt-list-partitions.pl:259
30609 msgid ""
30610 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
30611 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
30612 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30613 msgstr ""
30614
30615 #. type: textblock
30616 #: ../tools/virt-list-partitions.pl:275
30617 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30618 msgstr ""