Version 1.11.15.
[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.15\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-07-12 19:46+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:6102 ../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:3778 ../src/guestfs-actions.pod:3792 ../src/guestfs-actions.pod:3805 ../src/guestfs-actions.pod:3819 ../src/guestfs-actions.pod:3834 ../src/guestfs-actions.pod:3870 ../src/guestfs-actions.pod:3942 ../src/guestfs-actions.pod:3962 ../src/guestfs-actions.pod:3979 ../src/guestfs-actions.pod:4002 ../src/guestfs-actions.pod:4025 ../src/guestfs-actions.pod:4060 ../src/guestfs-actions.pod:4079 ../src/guestfs-actions.pod:4098 ../src/guestfs-actions.pod:4133 ../src/guestfs-actions.pod:4145 ../src/guestfs-actions.pod:4181 ../src/guestfs-actions.pod:4197 ../src/guestfs-actions.pod:4210 ../src/guestfs-actions.pod:4225 ../src/guestfs-actions.pod:4242 ../src/guestfs-actions.pod:4335 ../src/guestfs-actions.pod:4355 ../src/guestfs-actions.pod:4368 ../src/guestfs-actions.pod:4419 ../src/guestfs-actions.pod:4437 ../src/guestfs-actions.pod:4455 ../src/guestfs-actions.pod:4471 ../src/guestfs-actions.pod:4485 ../src/guestfs-actions.pod:4499 ../src/guestfs-actions.pod:4516 ../src/guestfs-actions.pod:4531 ../src/guestfs-actions.pod:4551 ../src/guestfs-actions.pod:4621 ../src/guestfs-actions.pod:4694 ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:4744 ../src/guestfs-actions.pod:4763 ../src/guestfs-actions.pod:4775 ../src/guestfs-actions.pod:4792 ../src/guestfs-actions.pod:4805 ../src/guestfs-actions.pod:4820 ../src/guestfs-actions.pod:4835 ../src/guestfs-actions.pod:4870 ../src/guestfs-actions.pod:4903 ../src/guestfs-actions.pod:4942 ../src/guestfs-actions.pod:4962 ../src/guestfs-actions.pod:4976 ../src/guestfs-actions.pod:4993 ../src/guestfs-actions.pod:5042 ../src/guestfs-actions.pod:5088 ../src/guestfs-actions.pod:5142 ../src/guestfs-actions.pod:5176 ../src/guestfs-actions.pod:5211 ../src/guestfs-actions.pod:5228 ../src/guestfs-actions.pod:5246 ../src/guestfs-actions.pod:5380 ../src/guestfs-actions.pod:5437 ../src/guestfs-actions.pod:5459 ../src/guestfs-actions.pod:5477 ../src/guestfs-actions.pod:5509 ../src/guestfs-actions.pod:5575 ../src/guestfs-actions.pod:5592 ../src/guestfs-actions.pod:5605 ../src/guestfs-actions.pod:5619 ../src/guestfs-actions.pod:5908 ../src/guestfs-actions.pod:5927 ../src/guestfs-actions.pod:5946 ../src/guestfs-actions.pod:5960 ../src/guestfs-actions.pod:5972 ../src/guestfs-actions.pod:5986 ../src/guestfs-actions.pod:5998 ../src/guestfs-actions.pod:6012 ../src/guestfs-actions.pod:6028 ../src/guestfs-actions.pod:6049 ../src/guestfs-actions.pod:6068 ../src/guestfs-actions.pod:6087 ../src/guestfs-actions.pod:6117 ../src/guestfs-actions.pod:6135 ../src/guestfs-actions.pod:6158 ../src/guestfs-actions.pod:6176 ../src/guestfs-actions.pod:6195 ../src/guestfs-actions.pod:6216 ../src/guestfs-actions.pod:6235 ../src/guestfs-actions.pod:6252 ../src/guestfs-actions.pod:6280 ../src/guestfs-actions.pod:6304 ../src/guestfs-actions.pod:6323 ../src/guestfs-actions.pod:6347 ../src/guestfs-actions.pod:6366 ../src/guestfs-actions.pod:6381 ../src/guestfs-actions.pod:6400 ../src/guestfs-actions.pod:6437 ../src/guestfs-actions.pod:6467 ../src/guestfs-actions.pod:6500 ../src/guestfs-actions.pod:6622 ../src/guestfs-actions.pod:6743 ../src/guestfs-actions.pod:6755 ../src/guestfs-actions.pod:6768 ../src/guestfs-actions.pod:6781 ../src/guestfs-actions.pod:6803 ../src/guestfs-actions.pod:6816 ../src/guestfs-actions.pod:6829 ../src/guestfs-actions.pod:6842 ../src/guestfs-actions.pod:6857 ../src/guestfs-actions.pod:6916 ../src/guestfs-actions.pod:6933 ../src/guestfs-actions.pod:6949 ../src/guestfs-actions.pod:6965 ../src/guestfs-actions.pod:6982 ../src/guestfs-actions.pod:6995 ../src/guestfs-actions.pod:7015 ../src/guestfs-actions.pod:7051 ../src/guestfs-actions.pod:7065 ../src/guestfs-actions.pod:7106 ../src/guestfs-actions.pod:7119 ../src/guestfs-actions.pod:7137 ../src/guestfs-actions.pod:7171 ../src/guestfs-actions.pod:7207 ../src/guestfs-actions.pod:7323 ../src/guestfs-actions.pod:7338 ../src/guestfs-actions.pod:7352 ../src/guestfs-actions.pod:7407 ../src/guestfs-actions.pod:7420 ../src/guestfs-actions.pod:7465 ../src/guestfs-actions.pod:7498 ../src/guestfs-actions.pod:7559 ../src/guestfs-actions.pod:7585 ../src/guestfs-actions.pod:7652 ../src/guestfs-actions.pod:7671 ../src/guestfs-actions.pod:7700
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:4556 ../src/guestfs-actions.pod:4875 ../src/guestfs-actions.pod:5093 ../src/guestfs-actions.pod:5181 ../src/guestfs-actions.pod:6445 ../src/guestfs-actions.pod:6475 ../src/guestfs-actions.pod:6508 ../src/guestfs-actions.pod:6567 ../src/guestfs-actions.pod:7503 ../src/guestfs-actions.pod:7593 ../src/guestfs-actions.pod:7763 ../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:4879 ../src/guestfs-actions.pod:6137 ../src/guestfs-actions.pod:6254 ../src/guestfs-actions.pod:6368 ../src/guestfs-actions.pod:6859 ../src/guestfs-actions.pod:6984 ../src/guestfs-actions.pod:7507
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:4570 ../src/guestfs-actions.pod:4889 ../src/guestfs-actions.pod:5106
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:5065 ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5689 ../src/guestfs-actions.pod:5715 ../src/guestfs-actions.pod:7092 ../src/guestfs-actions.pod:7518 ../src/guestfs-actions.pod:7531 ../src/guestfs-actions.pod:7544
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:4635 ../src/guestfs-actions.pod:4647 ../src/guestfs-actions.pod:4917 ../src/guestfs-actions.pod:4929 ../src/guestfs-actions.pod:5153 ../src/guestfs-actions.pod:5164
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:4583 ../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:5766
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:3764 ../src/guestfs-actions.pod:4117 ../src/guestfs-actions.pod:4287 ../src/guestfs-actions.pod:4397 ../src/guestfs-actions.pod:5301 ../src/guestfs-actions.pod:5494 ../src/guestfs-actions.pod:5664 ../src/guestfs-actions.pod:5842 ../src/guestfs-actions.pod:5891 ../src/guestfs-actions.pod:6528 ../src/guestfs-actions.pod:6544 ../src/guestfs-actions.pod:6561 ../src/guestfs-actions.pod:6592 ../src/guestfs-actions.pod:7266 ../src/guestfs-actions.pod:7285 ../src/guestfs-actions.pod:7303 ../src/guestfs-actions.pod:7477 ../src/guestfs-actions.pod:7757
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:3746 ../src/guestfs-actions.pod:3851 ../src/guestfs-actions.pod:4259 ../src/guestfs-actions.pod:5026 ../src/guestfs-actions.pod:5636 ../src/guestfs-actions.pod:5762 ../src/guestfs-actions.pod:5876 ../src/guestfs-actions.pod:6608 ../src/guestfs-actions.pod:6669 ../src/guestfs-actions.pod:6724 ../src/guestfs-actions.pod:6870 ../src/guestfs-actions.pod:6894 ../src/guestfs-actions.pod:7370 ../src/guestfs-actions.pod:7390 ../src/guestfs-actions.pod:7437 ../src/guestfs-actions.pod:7609 ../src/guestfs-actions.pod:7628 ../src/guestfs-actions.pod:7714 ../src/guestfs-actions.pod:7733 ../src/guestfs-actions.pod:7779 ../src/guestfs-actions.pod:7798
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:4100 ../src/guestfs-actions.pod:4150 ../src/guestfs-actions.pod:4337 ../src/guestfs-actions.pod:4370 ../src/guestfs-actions.pod:4533 ../src/guestfs-actions.pod:5030 ../src/guestfs-actions.pod:5577 ../src/guestfs-actions.pod:5974 ../src/guestfs-actions.pod:5988 ../src/guestfs-actions.pod:6000 ../src/guestfs-actions.pod:6449 ../src/guestfs-actions.pod:7108 ../src/guestfs-actions.pod:7121 ../src/guestfs-actions.pod:7354 ../src/guestfs-actions.pod:7597
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:5265
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:7288
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:5752 ../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:5534 ../src/guestfs-actions.pod:5560 ../src/guestfs-actions.pod:5691 ../src/guestfs-actions.pod:5717 ../src/guestfs-actions.pod:5741 ../src/guestfs-actions.pod:6673 ../src/guestfs-actions.pod:6728 ../src/guestfs-actions.pod:6874 ../src/guestfs-actions.pod:6898 ../src/guestfs-actions.pod:7561 ../src/guestfs-actions.pod:7587 ../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 ../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:3750 ../src/guestfs-actions.pod:3767 ../src/guestfs-actions.pod:3855 ../src/guestfs-actions.pod:4263 ../src/guestfs-actions.pod:4277 ../src/guestfs-actions.pod:5640 ../src/guestfs-actions.pod:5654 ../src/guestfs-actions.pod:7441 ../src/guestfs-actions.pod:7455
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:7144
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:5097 ../src/guestfs-actions.pod:5230 ../src/guestfs-actions.pod:5267 ../src/guestfs-actions.pod:5285 ../src/guestfs-actions.pod:5461 ../src/guestfs-actions.pod:7053 ../src/guestfs-actions.pod:7067 ../src/guestfs-actions.pod:7467
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:4514 ../src/guestfs-actions.pod:4723 ../src/guestfs-actions.pod:4742 ../src/guestfs-actions.pod:4761 ../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:7139 ../src/guestfs-actions.pod:7173 ../src/guestfs-actions.pod:7654 ../src/guestfs-actions.pod:7673
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:4290 ../src/guestfs-actions.pod:5667 ../src/guestfs-actions.pod:7374 ../src/guestfs-actions.pod:7394 ../src/guestfs-actions.pod:7480
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:5044 ../src/guestfs-actions.pod:5511
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:4400 ../src/guestfs-actions.pod:4944 ../src/guestfs-actions.pod:6877 ../src/guestfs-actions.pod:6901 ../src/guestfs-actions.pod:7520 ../src/guestfs-actions.pod:7533 ../src/guestfs-actions.pod:7546
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:7133 ../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:7178
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:6349
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:3780 ../src/guestfs-actions.pod:3794 ../src/guestfs-actions.pod:3807 ../src/guestfs-actions.pod:3821 ../src/guestfs-actions.pod:4822 ../src/guestfs-actions.pod:5845 ../src/guestfs-actions.pod:5894 ../src/guestfs-actions.pod:6745 ../src/guestfs-actions.pod:6757 ../src/guestfs-actions.pod:6770 ../src/guestfs-actions.pod:6783 ../src/guestfs-actions.pod:6805 ../src/guestfs-actions.pod:6818 ../src/guestfs-actions.pod:6831 ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:7616 ../src/guestfs-actions.pod:7635 ../src/guestfs-actions.pod:7721 ../src/guestfs-actions.pod:7740 ../src/guestfs-actions.pod:7786 ../src/guestfs-actions.pod:7805
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:4227 ../src/guestfs-actions.pod:5929
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:7659
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:5607 ../src/guestfs-actions.pod:6089 ../src/guestfs-actions.pod:6512 ../src/guestfs-actions.pod:6531 ../src/guestfs-actions.pod:6547 ../src/guestfs-actions.pod:6571 ../src/guestfs-actions.pod:7325 ../src/guestfs-actions.pod:7340 ../src/guestfs-actions.pod:7702
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:6119
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:6160
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:6178 ../src/guestfs-actions.pod:6197
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:6213 ../src/guestfs-actions.pod:6320 ../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:4518 ../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:5832 ../src/guestfs-actions.pod:6218 ../src/guestfs-actions.pod:6479 ../src/guestfs-actions.pod:7094
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:6237
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:6282
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:3922 ../src/guestfs-actions.pod:4325 ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:5537 ../src/guestfs-actions.pod:5880 ../src/guestfs-actions.pod:6306 ../src/guestfs-actions.pod:6997 ../src/guestfs-actions.pod:7017 ../src/guestfs-actions.pod:7209
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:6325 ../src/guestfs-actions.pod:6383
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:5530 ../src/guestfs-actions.pod:5556 ../src/guestfs-actions.pod:5737
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:4321
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:3836 ../src/guestfs-actions.pod:3872 ../src/guestfs-actions.pod:5910 ../src/guestfs-actions.pod:6402 ../src/guestfs-actions.pod:7767
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:6595 ../src/guestfs-actions.pod:6612
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:6892 ../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:6676 ../src/guestfs-actions.pod:6731
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:3724 ../src/guestfs-actions.pod:5006 ../src/guestfs-actions.pod:7033
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:5948
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:4905
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:3744
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: =head2
11914 #: ../src/guestfs-actions.pod:3690
11915 msgid "guestfs_list_filesystems"
11916 msgstr ""
11917
11918 #. type: verbatim
11919 #: ../src/guestfs-actions.pod:3692
11920 #, no-wrap
11921 msgid ""
11922 " char **\n"
11923 " guestfs_list_filesystems (guestfs_h *g);\n"
11924 "\n"
11925 msgstr ""
11926
11927 #. type: textblock
11928 #: ../src/guestfs-actions.pod:3695 ../fish/guestfish-actions.pod:2530
11929 msgid ""
11930 "This inspection command looks for filesystems on partitions, block devices "
11931 "and logical volumes, returning a list of devices containing filesystems and "
11932 "their type."
11933 msgstr ""
11934
11935 #. type: textblock
11936 #: ../src/guestfs-actions.pod:3699 ../fish/guestfish-actions.pod:2534
11937 msgid ""
11938 "The return value is a hash, where the keys are the devices containing "
11939 "filesystems, and the values are the filesystem types.  For example:"
11940 msgstr ""
11941
11942 #. type: verbatim
11943 #: ../src/guestfs-actions.pod:3703 ../fish/guestfish-actions.pod:2538
11944 #, no-wrap
11945 msgid ""
11946 " \"/dev/sda1\" => \"ntfs\"\n"
11947 " \"/dev/sda2\" => \"ext2\"\n"
11948 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
11949 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
11950 "\n"
11951 msgstr ""
11952
11953 #. type: textblock
11954 #: ../src/guestfs-actions.pod:3708 ../fish/guestfish-actions.pod:2543
11955 msgid ""
11956 "The value can have the special value \"unknown\", meaning the content of the "
11957 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
11958 msgstr ""
11959
11960 #. type: textblock
11961 #: ../src/guestfs-actions.pod:3712
11962 msgid ""
11963 "This command runs other libguestfs commands, which might include "
11964 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
11965 "soon after launch and only when nothing is mounted."
11966 msgstr ""
11967
11968 #. type: textblock
11969 #: ../src/guestfs-actions.pod:3716
11970 msgid ""
11971 "Not all of the filesystems returned will be mountable.  In particular, swap "
11972 "partitions are returned in the list.  Also this command does not check that "
11973 "each filesystem found is valid and mountable, and some filesystems might be "
11974 "mountable but require special options.  Filesystems may not all belong to a "
11975 "single logical operating system (use C<guestfs_inspect_os> to look for "
11976 "OSes)."
11977 msgstr ""
11978
11979 #. type: textblock
11980 #: ../src/guestfs-actions.pod:3730 ../src/guestfs-actions.pod:5497
11981 msgid "(Added in 1.5.15)"
11982 msgstr ""
11983
11984 #. type: =head2
11985 #: ../src/guestfs-actions.pod:3732
11986 msgid "guestfs_list_partitions"
11987 msgstr ""
11988
11989 #. type: verbatim
11990 #: ../src/guestfs-actions.pod:3734
11991 #, no-wrap
11992 msgid ""
11993 " char **\n"
11994 " guestfs_list_partitions (guestfs_h *g);\n"
11995 "\n"
11996 msgstr ""
11997
11998 #. type: textblock
11999 #: ../src/guestfs-actions.pod:3737 ../fish/guestfish-actions.pod:2563
12000 msgid "List all the partitions detected on all block devices."
12001 msgstr ""
12002
12003 #. type: textblock
12004 #: ../src/guestfs-actions.pod:3739 ../fish/guestfish-actions.pod:2565
12005 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12006 msgstr ""
12007
12008 #. type: textblock
12009 #: ../src/guestfs-actions.pod:3741
12010 msgid ""
12011 "This does not return logical volumes.  For that you will need to call "
12012 "C<guestfs_lvs>."
12013 msgstr ""
12014
12015 #. type: =head2
12016 #: ../src/guestfs-actions.pod:3752
12017 msgid "guestfs_ll"
12018 msgstr ""
12019
12020 #. type: verbatim
12021 #: ../src/guestfs-actions.pod:3754
12022 #, no-wrap
12023 msgid ""
12024 " char *\n"
12025 " guestfs_ll (guestfs_h *g,\n"
12026 "             const char *directory);\n"
12027 "\n"
12028 msgstr ""
12029
12030 #. type: textblock
12031 #: ../src/guestfs-actions.pod:3758 ../fish/guestfish-actions.pod:2576
12032 msgid ""
12033 "List the files in C<directory> (relative to the root directory, there is no "
12034 "cwd) in the format of 'ls -la'."
12035 msgstr ""
12036
12037 #. type: textblock
12038 #: ../src/guestfs-actions.pod:3761 ../fish/guestfish-actions.pod:2579
12039 msgid ""
12040 "This command is mostly useful for interactive sessions.  It is I<not> "
12041 "intended that you try to parse the output string."
12042 msgstr ""
12043
12044 #. type: =head2
12045 #: ../src/guestfs-actions.pod:3769
12046 msgid "guestfs_ln"
12047 msgstr ""
12048
12049 #. type: verbatim
12050 #: ../src/guestfs-actions.pod:3771
12051 #, no-wrap
12052 msgid ""
12053 " int\n"
12054 " guestfs_ln (guestfs_h *g,\n"
12055 "             const char *target,\n"
12056 "             const char *linkname);\n"
12057 "\n"
12058 msgstr ""
12059
12060 #. type: textblock
12061 #: ../src/guestfs-actions.pod:3776 ../fish/guestfish-actions.pod:2586
12062 msgid "This command creates a hard link using the C<ln> command."
12063 msgstr ""
12064
12065 #. type: =head2
12066 #: ../src/guestfs-actions.pod:3782
12067 msgid "guestfs_ln_f"
12068 msgstr ""
12069
12070 #. type: verbatim
12071 #: ../src/guestfs-actions.pod:3784
12072 #, no-wrap
12073 msgid ""
12074 " int\n"
12075 " guestfs_ln_f (guestfs_h *g,\n"
12076 "               const char *target,\n"
12077 "               const char *linkname);\n"
12078 "\n"
12079 msgstr ""
12080
12081 #. type: textblock
12082 #: ../src/guestfs-actions.pod:3789 ../fish/guestfish-actions.pod:2592
12083 msgid ""
12084 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12085 "option removes the link (C<linkname>) if it exists already."
12086 msgstr ""
12087
12088 #. type: =head2
12089 #: ../src/guestfs-actions.pod:3796
12090 msgid "guestfs_ln_s"
12091 msgstr ""
12092
12093 #. type: verbatim
12094 #: ../src/guestfs-actions.pod:3798
12095 #, no-wrap
12096 msgid ""
12097 " int\n"
12098 " guestfs_ln_s (guestfs_h *g,\n"
12099 "               const char *target,\n"
12100 "               const char *linkname);\n"
12101 "\n"
12102 msgstr ""
12103
12104 #. type: textblock
12105 #: ../src/guestfs-actions.pod:3803 ../fish/guestfish-actions.pod:2599
12106 msgid "This command creates a symbolic link using the C<ln -s> command."
12107 msgstr ""
12108
12109 #. type: =head2
12110 #: ../src/guestfs-actions.pod:3809
12111 msgid "guestfs_ln_sf"
12112 msgstr ""
12113
12114 #. type: verbatim
12115 #: ../src/guestfs-actions.pod:3811
12116 #, no-wrap
12117 msgid ""
12118 " int\n"
12119 " guestfs_ln_sf (guestfs_h *g,\n"
12120 "                const char *target,\n"
12121 "                const char *linkname);\n"
12122 "\n"
12123 msgstr ""
12124
12125 #. type: textblock
12126 #: ../src/guestfs-actions.pod:3816 ../fish/guestfish-actions.pod:2605
12127 msgid ""
12128 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12129 "option removes the link (C<linkname>) if it exists already."
12130 msgstr ""
12131
12132 #. type: =head2
12133 #: ../src/guestfs-actions.pod:3823
12134 msgid "guestfs_lremovexattr"
12135 msgstr ""
12136
12137 #. type: verbatim
12138 #: ../src/guestfs-actions.pod:3825
12139 #, no-wrap
12140 msgid ""
12141 " int\n"
12142 " guestfs_lremovexattr (guestfs_h *g,\n"
12143 "                       const char *xattr,\n"
12144 "                       const char *path);\n"
12145 "\n"
12146 msgstr ""
12147
12148 #. type: textblock
12149 #: ../src/guestfs-actions.pod:3830
12150 msgid ""
12151 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12152 "link, then it removes an extended attribute of the link itself."
12153 msgstr ""
12154
12155 #. type: =head2
12156 #: ../src/guestfs-actions.pod:3838
12157 msgid "guestfs_ls"
12158 msgstr ""
12159
12160 #. type: verbatim
12161 #: ../src/guestfs-actions.pod:3840
12162 #, no-wrap
12163 msgid ""
12164 " char **\n"
12165 " guestfs_ls (guestfs_h *g,\n"
12166 "             const char *directory);\n"
12167 "\n"
12168 msgstr ""
12169
12170 #. type: textblock
12171 #: ../src/guestfs-actions.pod:3844 ../fish/guestfish-actions.pod:2620
12172 msgid ""
12173 "List the files in C<directory> (relative to the root directory, there is no "
12174 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
12175 "shown."
12176 msgstr ""
12177
12178 #. type: textblock
12179 #: ../src/guestfs-actions.pod:3848
12180 msgid ""
12181 "This command is mostly useful for interactive sessions.  Programs should "
12182 "probably use C<guestfs_readdir> instead."
12183 msgstr ""
12184
12185 #. type: =head2
12186 #: ../src/guestfs-actions.pod:3857
12187 msgid "guestfs_lsetxattr"
12188 msgstr ""
12189
12190 #. type: verbatim
12191 #: ../src/guestfs-actions.pod:3859
12192 #, no-wrap
12193 msgid ""
12194 " int\n"
12195 " guestfs_lsetxattr (guestfs_h *g,\n"
12196 "                    const char *xattr,\n"
12197 "                    const char *val,\n"
12198 "                    int vallen,\n"
12199 "                    const char *path);\n"
12200 "\n"
12201 msgstr ""
12202
12203 #. type: textblock
12204 #: ../src/guestfs-actions.pod:3866
12205 msgid ""
12206 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12207 "then it sets an extended attribute of the link itself."
12208 msgstr ""
12209
12210 #. type: =head2
12211 #: ../src/guestfs-actions.pod:3874
12212 msgid "guestfs_lstat"
12213 msgstr ""
12214
12215 #. type: verbatim
12216 #: ../src/guestfs-actions.pod:3876
12217 #, no-wrap
12218 msgid ""
12219 " struct guestfs_stat *\n"
12220 " guestfs_lstat (guestfs_h *g,\n"
12221 "                const char *path);\n"
12222 "\n"
12223 msgstr ""
12224
12225 #. type: textblock
12226 #: ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:6632 ../fish/guestfish-actions.pod:2639 ../fish/guestfish-actions.pod:4426
12227 msgid "Returns file information for the given C<path>."
12228 msgstr ""
12229
12230 #. type: textblock
12231 #: ../src/guestfs-actions.pod:3882
12232 msgid ""
12233 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12234 "link, then the link is stat-ed, not the file it refers to."
12235 msgstr ""
12236
12237 #. type: textblock
12238 #: ../src/guestfs-actions.pod:3886 ../fish/guestfish-actions.pod:2645
12239 msgid "This is the same as the C<lstat(2)> system call."
12240 msgstr ""
12241
12242 #. type: textblock
12243 #: ../src/guestfs-actions.pod:3888 ../src/guestfs-actions.pod:6636
12244 msgid ""
12245 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12246 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12247 msgstr ""
12248
12249 #. type: textblock
12250 #: ../src/guestfs-actions.pod:3892 ../src/guestfs-actions.pod:6640 ../src/guestfs-actions.pod:6658 ../src/guestfs-actions.pod:7039
12251 msgid "(Added in 0.9.2)"
12252 msgstr ""
12253
12254 #. type: =head2
12255 #: ../src/guestfs-actions.pod:3894
12256 msgid "guestfs_lstatlist"
12257 msgstr ""
12258
12259 #. type: verbatim
12260 #: ../src/guestfs-actions.pod:3896
12261 #, no-wrap
12262 msgid ""
12263 " struct guestfs_stat_list *\n"
12264 " guestfs_lstatlist (guestfs_h *g,\n"
12265 "                    const char *path,\n"
12266 "                    char *const *names);\n"
12267 "\n"
12268 msgstr ""
12269
12270 #. type: textblock
12271 #: ../src/guestfs-actions.pod:3901
12272 msgid ""
12273 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12274 "files, where all files are in the directory C<path>.  C<names> is the list "
12275 "of files from this directory."
12276 msgstr ""
12277
12278 #. type: textblock
12279 #: ../src/guestfs-actions.pod:3905 ../fish/guestfish-actions.pod:2655
12280 msgid ""
12281 "On return you get a list of stat structs, with a one-to-one correspondence "
12282 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12283 "then the C<ino> field of that structure is set to C<-1>."
12284 msgstr ""
12285
12286 #. type: textblock
12287 #: ../src/guestfs-actions.pod:3910
12288 msgid ""
12289 "This call is intended for programs that want to efficiently list a directory "
12290 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12291 "for a similarly efficient call for getting extended attributes.  Very long "
12292 "directory listings might cause the protocol message size to be exceeded, "
12293 "causing this call to fail.  The caller must split up such requests into "
12294 "smaller groups of names."
12295 msgstr ""
12296
12297 #. type: textblock
12298 #: ../src/guestfs-actions.pod:3918
12299 msgid ""
12300 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12301 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12302 msgstr ""
12303
12304 #. type: =head2
12305 #: ../src/guestfs-actions.pod:3924
12306 msgid "guestfs_luks_add_key"
12307 msgstr ""
12308
12309 #. type: verbatim
12310 #: ../src/guestfs-actions.pod:3926
12311 #, no-wrap
12312 msgid ""
12313 " int\n"
12314 " guestfs_luks_add_key (guestfs_h *g,\n"
12315 "                       const char *device,\n"
12316 "                       const char *key,\n"
12317 "                       const char *newkey,\n"
12318 "                       int keyslot);\n"
12319 "\n"
12320 msgstr ""
12321
12322 #. type: textblock
12323 #: ../src/guestfs-actions.pod:3933 ../fish/guestfish-actions.pod:2672
12324 msgid ""
12325 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12326 "existing key, and is used to access the device.  C<newkey> is the new key to "
12327 "add.  C<keyslot> is the key slot that will be replaced."
12328 msgstr ""
12329
12330 #. type: textblock
12331 #: ../src/guestfs-actions.pod:3938
12332 msgid ""
12333 "Note that if C<keyslot> already contains a key, then this command will "
12334 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12335 msgstr ""
12336
12337 #. type: textblock
12338 #: ../src/guestfs-actions.pod:3944 ../src/guestfs-actions.pod:3984 ../src/guestfs-actions.pod:4007 ../src/guestfs-actions.pod:4027 ../src/guestfs-actions.pod:4062 ../src/guestfs-actions.pod:4081
12339 msgid ""
12340 "This function takes a key or passphrase parameter which could contain "
12341 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12342 "information."
12343 msgstr ""
12344
12345 #. type: textblock
12346 #: ../src/guestfs-actions.pod:3948 ../src/guestfs-actions.pod:3988 ../src/guestfs-actions.pod:4011 ../src/guestfs-actions.pod:4031
12347 msgid "(Added in 1.5.2)"
12348 msgstr ""
12349
12350 #. type: =head2
12351 #: ../src/guestfs-actions.pod:3950
12352 msgid "guestfs_luks_close"
12353 msgstr ""
12354
12355 #. type: verbatim
12356 #: ../src/guestfs-actions.pod:3952
12357 #, no-wrap
12358 msgid ""
12359 " int\n"
12360 " guestfs_luks_close (guestfs_h *g,\n"
12361 "                     const char *device);\n"
12362 "\n"
12363 msgstr ""
12364
12365 #. type: textblock
12366 #: ../src/guestfs-actions.pod:3956
12367 msgid ""
12368 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12369 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12370 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12371 "underlying block device."
12372 msgstr ""
12373
12374 #. type: textblock
12375 #: ../src/guestfs-actions.pod:3964 ../src/guestfs-actions.pod:4066 ../src/guestfs-actions.pod:4085 ../src/guestfs-actions.pod:4135 ../src/guestfs-actions.pod:4183
12376 msgid "(Added in 1.5.1)"
12377 msgstr ""
12378
12379 #. type: =head2
12380 #: ../src/guestfs-actions.pod:3966
12381 msgid "guestfs_luks_format"
12382 msgstr ""
12383
12384 #. type: verbatim
12385 #: ../src/guestfs-actions.pod:3968
12386 #, no-wrap
12387 msgid ""
12388 " int\n"
12389 " guestfs_luks_format (guestfs_h *g,\n"
12390 "                      const char *device,\n"
12391 "                      const char *key,\n"
12392 "                      int keyslot);\n"
12393 "\n"
12394 msgstr ""
12395
12396 #. type: textblock
12397 #: ../src/guestfs-actions.pod:3974 ../fish/guestfish-actions.pod:2698
12398 msgid ""
12399 "This command erases existing data on C<device> and formats the device as a "
12400 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12401 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12402 msgstr ""
12403
12404 #. type: textblock
12405 #: ../src/guestfs-actions.pod:3981 ../src/guestfs-actions.pod:4004 ../src/guestfs-actions.pod:4147 ../src/guestfs-actions.pod:5248 ../src/guestfs-actions.pod:6030 ../src/guestfs-actions.pod:6439 ../src/guestfs-actions.pod:6469 ../src/guestfs-actions.pod:6502 ../src/guestfs-actions.pod:7678 ../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
12406 msgid ""
12407 "B<This command is dangerous.  Without careful use you can easily destroy all "
12408 "your data>."
12409 msgstr ""
12410
12411 #. type: =head2
12412 #: ../src/guestfs-actions.pod:3990
12413 msgid "guestfs_luks_format_cipher"
12414 msgstr ""
12415
12416 #. type: verbatim
12417 #: ../src/guestfs-actions.pod:3992
12418 #, no-wrap
12419 msgid ""
12420 " int\n"
12421 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12422 "                             const char *device,\n"
12423 "                             const char *key,\n"
12424 "                             int keyslot,\n"
12425 "                             const char *cipher);\n"
12426 "\n"
12427 msgstr ""
12428
12429 #. type: textblock
12430 #: ../src/guestfs-actions.pod:3999
12431 msgid ""
12432 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12433 "set the C<cipher> used."
12434 msgstr ""
12435
12436 #. type: =head2
12437 #: ../src/guestfs-actions.pod:4013
12438 msgid "guestfs_luks_kill_slot"
12439 msgstr ""
12440
12441 #. type: verbatim
12442 #: ../src/guestfs-actions.pod:4015
12443 #, no-wrap
12444 msgid ""
12445 " int\n"
12446 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12447 "                         const char *device,\n"
12448 "                         const char *key,\n"
12449 "                         int keyslot);\n"
12450 "\n"
12451 msgstr ""
12452
12453 #. type: textblock
12454 #: ../src/guestfs-actions.pod:4021 ../fish/guestfish-actions.pod:2726
12455 msgid ""
12456 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12457 "device C<device>.  C<key> must be one of the I<other> keys."
12458 msgstr ""
12459
12460 #. type: =head2
12461 #: ../src/guestfs-actions.pod:4033
12462 msgid "guestfs_luks_open"
12463 msgstr ""
12464
12465 #. type: verbatim
12466 #: ../src/guestfs-actions.pod:4035
12467 #, no-wrap
12468 msgid ""
12469 " int\n"
12470 " guestfs_luks_open (guestfs_h *g,\n"
12471 "                    const char *device,\n"
12472 "                    const char *key,\n"
12473 "                    const char *mapname);\n"
12474 "\n"
12475 msgstr ""
12476
12477 #. type: textblock
12478 #: ../src/guestfs-actions.pod:4041 ../fish/guestfish-actions.pod:2737
12479 msgid ""
12480 "This command opens a block device which has been encrypted according to the "
12481 "Linux Unified Key Setup (LUKS) standard."
12482 msgstr ""
12483
12484 #. type: textblock
12485 #: ../src/guestfs-actions.pod:4044 ../fish/guestfish-actions.pod:2740
12486 msgid "C<device> is the encrypted block device or partition."
12487 msgstr ""
12488
12489 #. type: textblock
12490 #: ../src/guestfs-actions.pod:4046 ../fish/guestfish-actions.pod:2742
12491 msgid ""
12492 "The caller must supply one of the keys associated with the LUKS block "
12493 "device, in the C<key> parameter."
12494 msgstr ""
12495
12496 #. type: textblock
12497 #: ../src/guestfs-actions.pod:4049 ../fish/guestfish-actions.pod:2745
12498 msgid ""
12499 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12500 "writes to this block device are decrypted from and encrypted to the "
12501 "underlying C<device> respectively."
12502 msgstr ""
12503
12504 #. type: textblock
12505 #: ../src/guestfs-actions.pod:4053
12506 msgid ""
12507 "If this block device contains LVM volume groups, then calling "
12508 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12509 "visible."
12510 msgstr ""
12511
12512 #. type: textblock
12513 #: ../src/guestfs-actions.pod:4057
12514 msgid "Use C<guestfs_list_dm_devices> to list all device mapper devices."
12515 msgstr ""
12516
12517 #. type: =head2
12518 #: ../src/guestfs-actions.pod:4068
12519 msgid "guestfs_luks_open_ro"
12520 msgstr ""
12521
12522 #. type: verbatim
12523 #: ../src/guestfs-actions.pod:4070
12524 #, no-wrap
12525 msgid ""
12526 " int\n"
12527 " guestfs_luks_open_ro (guestfs_h *g,\n"
12528 "                       const char *device,\n"
12529 "                       const char *key,\n"
12530 "                       const char *mapname);\n"
12531 "\n"
12532 msgstr ""
12533
12534 #. type: textblock
12535 #: ../src/guestfs-actions.pod:4076
12536 msgid ""
12537 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12538 "created."
12539 msgstr ""
12540
12541 #. type: =head2
12542 #: ../src/guestfs-actions.pod:4087
12543 msgid "guestfs_lvcreate"
12544 msgstr ""
12545
12546 #. type: verbatim
12547 #: ../src/guestfs-actions.pod:4089
12548 #, no-wrap
12549 msgid ""
12550 " int\n"
12551 " guestfs_lvcreate (guestfs_h *g,\n"
12552 "                   const char *logvol,\n"
12553 "                   const char *volgroup,\n"
12554 "                   int mbytes);\n"
12555 "\n"
12556 msgstr ""
12557
12558 #. type: textblock
12559 #: ../src/guestfs-actions.pod:4095 ../fish/guestfish-actions.pod:2773
12560 msgid ""
12561 "This creates an LVM logical volume called C<logvol> on the volume group "
12562 "C<volgroup>, with C<size> megabytes."
12563 msgstr ""
12564
12565 #. type: =head2
12566 #: ../src/guestfs-actions.pod:4102
12567 msgid "guestfs_lvm_canonical_lv_name"
12568 msgstr ""
12569
12570 #. type: verbatim
12571 #: ../src/guestfs-actions.pod:4104
12572 #, no-wrap
12573 msgid ""
12574 " char *\n"
12575 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12576 "                                const char *lvname);\n"
12577 "\n"
12578 msgstr ""
12579
12580 #. type: textblock
12581 #: ../src/guestfs-actions.pod:4108 ../fish/guestfish-actions.pod:2780
12582 msgid ""
12583 "This converts alternative naming schemes for LVs that you might find to the "
12584 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
12585 "C</dev/VG/LV>."
12586 msgstr ""
12587
12588 #. type: textblock
12589 #: ../src/guestfs-actions.pod:4112 ../fish/guestfish-actions.pod:2784
12590 msgid ""
12591 "This command returns an error if the C<lvname> parameter does not refer to a "
12592 "logical volume."
12593 msgstr ""
12594
12595 #. type: textblock
12596 #: ../src/guestfs-actions.pod:4115
12597 msgid "See also C<guestfs_is_lv>."
12598 msgstr ""
12599
12600 #. type: textblock
12601 #: ../src/guestfs-actions.pod:4120
12602 msgid "(Added in 1.5.24)"
12603 msgstr ""
12604
12605 #. type: =head2
12606 #: ../src/guestfs-actions.pod:4122
12607 msgid "guestfs_lvm_clear_filter"
12608 msgstr ""
12609
12610 #. type: verbatim
12611 #: ../src/guestfs-actions.pod:4124
12612 #, no-wrap
12613 msgid ""
12614 " int\n"
12615 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12616 "\n"
12617 msgstr ""
12618
12619 #. type: textblock
12620 #: ../src/guestfs-actions.pod:4127
12621 msgid ""
12622 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12623 "see every block device."
12624 msgstr ""
12625
12626 #. type: textblock
12627 #: ../src/guestfs-actions.pod:4130 ../src/guestfs-actions.pod:4172 ../fish/guestfish-actions.pod:2796 ../fish/guestfish-actions.pod:2827
12628 msgid "This command also clears the LVM cache and performs a volume group scan."
12629 msgstr ""
12630
12631 #. type: =head2
12632 #: ../src/guestfs-actions.pod:4137
12633 msgid "guestfs_lvm_remove_all"
12634 msgstr ""
12635
12636 #. type: verbatim
12637 #: ../src/guestfs-actions.pod:4139
12638 #, no-wrap
12639 msgid ""
12640 " int\n"
12641 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12642 "\n"
12643 msgstr ""
12644
12645 #. type: textblock
12646 #: ../src/guestfs-actions.pod:4142 ../fish/guestfish-actions.pod:2803
12647 msgid ""
12648 "This command removes all LVM logical volumes, volume groups and physical "
12649 "volumes."
12650 msgstr ""
12651
12652 #. type: =head2
12653 #: ../src/guestfs-actions.pod:4152
12654 msgid "guestfs_lvm_set_filter"
12655 msgstr ""
12656
12657 #. type: verbatim
12658 #: ../src/guestfs-actions.pod:4154
12659 #, no-wrap
12660 msgid ""
12661 " int\n"
12662 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12663 "                         char *const *devices);\n"
12664 "\n"
12665 msgstr ""
12666
12667 #. type: textblock
12668 #: ../src/guestfs-actions.pod:4158 ../fish/guestfish-actions.pod:2813
12669 msgid ""
12670 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12671 "block devices in the list C<devices>, and will ignore all other attached "
12672 "block devices."
12673 msgstr ""
12674
12675 #. type: textblock
12676 #: ../src/guestfs-actions.pod:4162 ../fish/guestfish-actions.pod:2817
12677 msgid ""
12678 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12679 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12680 "there are two types of duplication possible: either cloned PVs/VGs which "
12681 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12682 "same name.  In normal operation you cannot create this situation, but you "
12683 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12684 "inside the LVM metadata."
12685 msgstr ""
12686
12687 #. type: textblock
12688 #: ../src/guestfs-actions.pod:4175 ../fish/guestfish-actions.pod:2830
12689 msgid "You can filter whole block devices or individual partitions."
12690 msgstr ""
12691
12692 #. type: textblock
12693 #: ../src/guestfs-actions.pod:4177 ../fish/guestfish-actions.pod:2832
12694 msgid ""
12695 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12696 "filesystem), even if you are not filtering out that VG."
12697 msgstr ""
12698
12699 #. type: =head2
12700 #: ../src/guestfs-actions.pod:4185
12701 msgid "guestfs_lvremove"
12702 msgstr ""
12703
12704 #. type: verbatim
12705 #: ../src/guestfs-actions.pod:4187
12706 #, no-wrap
12707 msgid ""
12708 " int\n"
12709 " guestfs_lvremove (guestfs_h *g,\n"
12710 "                   const char *device);\n"
12711 "\n"
12712 msgstr ""
12713
12714 #. type: textblock
12715 #: ../src/guestfs-actions.pod:4191 ../fish/guestfish-actions.pod:2840
12716 msgid ""
12717 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12718 "LV, such as C</dev/VG/LV>."
12719 msgstr ""
12720
12721 #. type: textblock
12722 #: ../src/guestfs-actions.pod:4194 ../fish/guestfish-actions.pod:2843
12723 msgid ""
12724 "You can also remove all LVs in a volume group by specifying the VG name, "
12725 "C</dev/VG>."
12726 msgstr ""
12727
12728 #. type: textblock
12729 #: ../src/guestfs-actions.pod:4199 ../src/guestfs-actions.pod:5594 ../src/guestfs-actions.pod:7409
12730 msgid "(Added in 1.0.13)"
12731 msgstr ""
12732
12733 #. type: =head2
12734 #: ../src/guestfs-actions.pod:4201
12735 msgid "guestfs_lvrename"
12736 msgstr ""
12737
12738 #. type: verbatim
12739 #: ../src/guestfs-actions.pod:4203
12740 #, no-wrap
12741 msgid ""
12742 " int\n"
12743 " guestfs_lvrename (guestfs_h *g,\n"
12744 "                   const char *logvol,\n"
12745 "                   const char *newlogvol);\n"
12746 "\n"
12747 msgstr ""
12748
12749 #. type: textblock
12750 #: ../src/guestfs-actions.pod:4208 ../fish/guestfish-actions.pod:2850
12751 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12752 msgstr ""
12753
12754 #. type: textblock
12755 #: ../src/guestfs-actions.pod:4212 ../src/guestfs-actions.pod:7422
12756 msgid "(Added in 1.0.83)"
12757 msgstr ""
12758
12759 #. type: =head2
12760 #: ../src/guestfs-actions.pod:4214
12761 msgid "guestfs_lvresize"
12762 msgstr ""
12763
12764 #. type: verbatim
12765 #: ../src/guestfs-actions.pod:4216
12766 #, no-wrap
12767 msgid ""
12768 " int\n"
12769 " guestfs_lvresize (guestfs_h *g,\n"
12770 "                   const char *device,\n"
12771 "                   int mbytes);\n"
12772 "\n"
12773 msgstr ""
12774
12775 #. type: textblock
12776 #: ../src/guestfs-actions.pod:4221 ../fish/guestfish-actions.pod:2856
12777 msgid ""
12778 "This resizes (expands or shrinks) an existing LVM logical volume to "
12779 "C<mbytes>.  When reducing, data in the reduced part is lost."
12780 msgstr ""
12781
12782 #. type: =head2
12783 #: ../src/guestfs-actions.pod:4229
12784 msgid "guestfs_lvresize_free"
12785 msgstr ""
12786
12787 #. type: verbatim
12788 #: ../src/guestfs-actions.pod:4231
12789 #, no-wrap
12790 msgid ""
12791 " int\n"
12792 " guestfs_lvresize_free (guestfs_h *g,\n"
12793 "                        const char *lv,\n"
12794 "                        int percent);\n"
12795 "\n"
12796 msgstr ""
12797
12798 #. type: textblock
12799 #: ../src/guestfs-actions.pod:4236 ../fish/guestfish-actions.pod:2864
12800 msgid ""
12801 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
12802 "remaining free space in the volume group.  Commonly you would call this with "
12803 "pc = 100 which expands the logical volume as much as possible, using all "
12804 "remaining free space in the volume group."
12805 msgstr ""
12806
12807 #. type: textblock
12808 #: ../src/guestfs-actions.pod:4244
12809 msgid "(Added in 1.3.3)"
12810 msgstr ""
12811
12812 #. type: =head2
12813 #: ../src/guestfs-actions.pod:4246
12814 msgid "guestfs_lvs"
12815 msgstr ""
12816
12817 #. type: verbatim
12818 #: ../src/guestfs-actions.pod:4248
12819 #, no-wrap
12820 msgid ""
12821 " char **\n"
12822 " guestfs_lvs (guestfs_h *g);\n"
12823 "\n"
12824 msgstr ""
12825
12826 #. type: textblock
12827 #: ../src/guestfs-actions.pod:4251 ../fish/guestfish-actions.pod:2874
12828 msgid ""
12829 "List all the logical volumes detected.  This is the equivalent of the "
12830 "L<lvs(8)> command."
12831 msgstr ""
12832
12833 #. type: textblock
12834 #: ../src/guestfs-actions.pod:4254 ../fish/guestfish-actions.pod:2877
12835 msgid ""
12836 "This returns a list of the logical volume device names "
12837 "(eg. C</dev/VolGroup00/LogVol00>)."
12838 msgstr ""
12839
12840 #. type: textblock
12841 #: ../src/guestfs-actions.pod:4257
12842 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
12843 msgstr ""
12844
12845 #. type: =head2
12846 #: ../src/guestfs-actions.pod:4265
12847 msgid "guestfs_lvs_full"
12848 msgstr ""
12849
12850 #. type: verbatim
12851 #: ../src/guestfs-actions.pod:4267
12852 #, no-wrap
12853 msgid ""
12854 " struct guestfs_lvm_lv_list *\n"
12855 " guestfs_lvs_full (guestfs_h *g);\n"
12856 "\n"
12857 msgstr ""
12858
12859 #. type: textblock
12860 #: ../src/guestfs-actions.pod:4270 ../fish/guestfish-actions.pod:2886
12861 msgid ""
12862 "List all the logical volumes detected.  This is the equivalent of the "
12863 "L<lvs(8)> command.  The \"full\" version includes all fields."
12864 msgstr ""
12865
12866 #. type: textblock
12867 #: ../src/guestfs-actions.pod:4273
12868 msgid ""
12869 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
12870 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
12871 "use>."
12872 msgstr ""
12873
12874 #. type: =head2
12875 #: ../src/guestfs-actions.pod:4279
12876 msgid "guestfs_lvuuid"
12877 msgstr ""
12878
12879 #. type: verbatim
12880 #: ../src/guestfs-actions.pod:4281
12881 #, no-wrap
12882 msgid ""
12883 " char *\n"
12884 " guestfs_lvuuid (guestfs_h *g,\n"
12885 "                 const char *device);\n"
12886 "\n"
12887 msgstr ""
12888
12889 #. type: textblock
12890 #: ../src/guestfs-actions.pod:4285 ../fish/guestfish-actions.pod:2893
12891 msgid "This command returns the UUID of the LVM LV C<device>."
12892 msgstr ""
12893
12894 #. type: =head2
12895 #: ../src/guestfs-actions.pod:4292
12896 msgid "guestfs_lxattrlist"
12897 msgstr ""
12898
12899 #. type: verbatim
12900 #: ../src/guestfs-actions.pod:4294
12901 #, no-wrap
12902 msgid ""
12903 " struct guestfs_xattr_list *\n"
12904 " guestfs_lxattrlist (guestfs_h *g,\n"
12905 "                     const char *path,\n"
12906 "                     char *const *names);\n"
12907 "\n"
12908 msgstr ""
12909
12910 #. type: textblock
12911 #: ../src/guestfs-actions.pod:4299 ../fish/guestfish-actions.pod:2899
12912 msgid ""
12913 "This call allows you to get the extended attributes of multiple files, where "
12914 "all files are in the directory C<path>.  C<names> is the list of files from "
12915 "this directory."
12916 msgstr ""
12917
12918 #. type: textblock
12919 #: ../src/guestfs-actions.pod:4303 ../fish/guestfish-actions.pod:2903
12920 msgid ""
12921 "On return you get a flat list of xattr structs which must be interpreted "
12922 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
12923 "C<attrval> in this struct is zero-length to indicate there was an error "
12924 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
12925 "number (the number of following attributes for this file, which could be "
12926 "C<\"0\">).  Then after the first xattr struct are the zero or more "
12927 "attributes for the first named file.  This repeats for the second and "
12928 "subsequent files."
12929 msgstr ""
12930
12931 #. type: textblock
12932 #: ../src/guestfs-actions.pod:4313
12933 msgid ""
12934 "This call is intended for programs that want to efficiently list a directory "
12935 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
12936 "a similarly efficient call for getting standard stats.  Very long directory "
12937 "listings might cause the protocol message size to be exceeded, causing this "
12938 "call to fail.  The caller must split up such requests into smaller groups of "
12939 "names."
12940 msgstr ""
12941
12942 #. type: =head2
12943 #: ../src/guestfs-actions.pod:4327
12944 msgid "guestfs_mkdir"
12945 msgstr ""
12946
12947 #. type: verbatim
12948 #: ../src/guestfs-actions.pod:4329
12949 #, no-wrap
12950 msgid ""
12951 " int\n"
12952 " guestfs_mkdir (guestfs_h *g,\n"
12953 "                const char *path);\n"
12954 "\n"
12955 msgstr ""
12956
12957 #. type: textblock
12958 #: ../src/guestfs-actions.pod:4333 ../fish/guestfish-actions.pod:2925
12959 msgid "Create a directory named C<path>."
12960 msgstr ""
12961
12962 #. type: =head2
12963 #: ../src/guestfs-actions.pod:4339
12964 msgid "guestfs_mkdir_mode"
12965 msgstr ""
12966
12967 #. type: verbatim
12968 #: ../src/guestfs-actions.pod:4341
12969 #, no-wrap
12970 msgid ""
12971 " int\n"
12972 " guestfs_mkdir_mode (guestfs_h *g,\n"
12973 "                     const char *path,\n"
12974 "                     int mode);\n"
12975 "\n"
12976 msgstr ""
12977
12978 #. type: textblock
12979 #: ../src/guestfs-actions.pod:4346 ../fish/guestfish-actions.pod:2931
12980 msgid ""
12981 "This command creates a directory, setting the initial permissions of the "
12982 "directory to C<mode>."
12983 msgstr ""
12984
12985 #. type: textblock
12986 #: ../src/guestfs-actions.pod:4349 ../fish/guestfish-actions.pod:2934
12987 msgid ""
12988 "For common Linux filesystems, the actual mode which is set will be C<mode & "
12989 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
12990 "other ways."
12991 msgstr ""
12992
12993 #. type: textblock
12994 #: ../src/guestfs-actions.pod:4353
12995 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
12996 msgstr ""
12997
12998 #. type: =head2
12999 #: ../src/guestfs-actions.pod:4359
13000 msgid "guestfs_mkdir_p"
13001 msgstr ""
13002
13003 #. type: verbatim
13004 #: ../src/guestfs-actions.pod:4361
13005 #, no-wrap
13006 msgid ""
13007 " int\n"
13008 " guestfs_mkdir_p (guestfs_h *g,\n"
13009 "                  const char *path);\n"
13010 "\n"
13011 msgstr ""
13012
13013 #. type: textblock
13014 #: ../src/guestfs-actions.pod:4365 ../fish/guestfish-actions.pod:2944
13015 msgid ""
13016 "Create a directory named C<path>, creating any parent directories as "
13017 "necessary.  This is like the C<mkdir -p> shell command."
13018 msgstr ""
13019
13020 #. type: =head2
13021 #: ../src/guestfs-actions.pod:4372
13022 msgid "guestfs_mkdtemp"
13023 msgstr ""
13024
13025 #. type: verbatim
13026 #: ../src/guestfs-actions.pod:4374
13027 #, no-wrap
13028 msgid ""
13029 " char *\n"
13030 " guestfs_mkdtemp (guestfs_h *g,\n"
13031 "                  const char *template);\n"
13032 "\n"
13033 msgstr ""
13034
13035 #. type: textblock
13036 #: ../src/guestfs-actions.pod:4378 ../fish/guestfish-actions.pod:2951
13037 msgid ""
13038 "This command creates a temporary directory.  The C<template> parameter "
13039 "should be a full pathname for the temporary directory name with the final "
13040 "six characters being \"XXXXXX\"."
13041 msgstr ""
13042
13043 #. type: textblock
13044 #: ../src/guestfs-actions.pod:4383 ../fish/guestfish-actions.pod:2956
13045 msgid ""
13046 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13047 "being suitable for Windows filesystems."
13048 msgstr ""
13049
13050 #. type: textblock
13051 #: ../src/guestfs-actions.pod:4386 ../fish/guestfish-actions.pod:2959
13052 msgid "The name of the temporary directory that was created is returned."
13053 msgstr ""
13054
13055 #. type: textblock
13056 #: ../src/guestfs-actions.pod:4389 ../fish/guestfish-actions.pod:2962
13057 msgid "The temporary directory is created with mode 0700 and is owned by root."
13058 msgstr ""
13059
13060 #. type: textblock
13061 #: ../src/guestfs-actions.pod:4392 ../fish/guestfish-actions.pod:2965
13062 msgid ""
13063 "The caller is responsible for deleting the temporary directory and its "
13064 "contents after use."
13065 msgstr ""
13066
13067 #. type: textblock
13068 #: ../src/guestfs-actions.pod:4395 ../fish/guestfish-actions.pod:2968
13069 msgid "See also: L<mkdtemp(3)>"
13070 msgstr ""
13071
13072 #. type: =head2
13073 #: ../src/guestfs-actions.pod:4402
13074 msgid "guestfs_mke2fs_J"
13075 msgstr ""
13076
13077 #. type: verbatim
13078 #: ../src/guestfs-actions.pod:4404
13079 #, no-wrap
13080 msgid ""
13081 " int\n"
13082 " guestfs_mke2fs_J (guestfs_h *g,\n"
13083 "                   const char *fstype,\n"
13084 "                   int blocksize,\n"
13085 "                   const char *device,\n"
13086 "                   const char *journal);\n"
13087 "\n"
13088 msgstr ""
13089
13090 #. type: textblock
13091 #: ../src/guestfs-actions.pod:4411 ../fish/guestfish-actions.pod:2974
13092 msgid ""
13093 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13094 "C<journal>.  It is equivalent to the command:"
13095 msgstr ""
13096
13097 #. type: verbatim
13098 #: ../src/guestfs-actions.pod:4415 ../fish/guestfish-actions.pod:2978
13099 #, no-wrap
13100 msgid ""
13101 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13102 "\n"
13103 msgstr ""
13104
13105 #. type: textblock
13106 #: ../src/guestfs-actions.pod:4417
13107 msgid "See also C<guestfs_mke2journal>."
13108 msgstr ""
13109
13110 #. type: textblock
13111 #: ../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:4560 ../src/guestfs-actions.pod:4837
13112 msgid "(Added in 1.0.68)"
13113 msgstr ""
13114
13115 #. type: =head2
13116 #: ../src/guestfs-actions.pod:4423
13117 msgid "guestfs_mke2fs_JL"
13118 msgstr ""
13119
13120 #. type: verbatim
13121 #: ../src/guestfs-actions.pod:4425
13122 #, no-wrap
13123 msgid ""
13124 " int\n"
13125 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13126 "                    const char *fstype,\n"
13127 "                    int blocksize,\n"
13128 "                    const char *device,\n"
13129 "                    const char *label);\n"
13130 "\n"
13131 msgstr ""
13132
13133 #. type: textblock
13134 #: ../src/guestfs-actions.pod:4432 ../fish/guestfish-actions.pod:2986
13135 msgid ""
13136 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13137 "the journal labeled C<label>."
13138 msgstr ""
13139
13140 #. type: textblock
13141 #: ../src/guestfs-actions.pod:4435
13142 msgid "See also C<guestfs_mke2journal_L>."
13143 msgstr ""
13144
13145 #. type: =head2
13146 #: ../src/guestfs-actions.pod:4441
13147 msgid "guestfs_mke2fs_JU"
13148 msgstr ""
13149
13150 #. type: verbatim
13151 #: ../src/guestfs-actions.pod:4443
13152 #, no-wrap
13153 msgid ""
13154 " int\n"
13155 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13156 "                    const char *fstype,\n"
13157 "                    int blocksize,\n"
13158 "                    const char *device,\n"
13159 "                    const char *uuid);\n"
13160 "\n"
13161 msgstr ""
13162
13163 #. type: textblock
13164 #: ../src/guestfs-actions.pod:4450 ../fish/guestfish-actions.pod:2995
13165 msgid ""
13166 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13167 "the journal with UUID C<uuid>."
13168 msgstr ""
13169
13170 #. type: textblock
13171 #: ../src/guestfs-actions.pod:4453
13172 msgid "See also C<guestfs_mke2journal_U>."
13173 msgstr ""
13174
13175 #. type: =head2
13176 #: ../src/guestfs-actions.pod:4459
13177 msgid "guestfs_mke2journal"
13178 msgstr ""
13179
13180 #. type: verbatim
13181 #: ../src/guestfs-actions.pod:4461
13182 #, no-wrap
13183 msgid ""
13184 " int\n"
13185 " guestfs_mke2journal (guestfs_h *g,\n"
13186 "                      int blocksize,\n"
13187 "                      const char *device);\n"
13188 "\n"
13189 msgstr ""
13190
13191 #. type: textblock
13192 #: ../src/guestfs-actions.pod:4466 ../fish/guestfish-actions.pod:3004
13193 msgid ""
13194 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13195 "command:"
13196 msgstr ""
13197
13198 #. type: verbatim
13199 #: ../src/guestfs-actions.pod:4469 ../fish/guestfish-actions.pod:3007
13200 #, no-wrap
13201 msgid ""
13202 " mke2fs -O journal_dev -b blocksize device\n"
13203 "\n"
13204 msgstr ""
13205
13206 #. type: =head2
13207 #: ../src/guestfs-actions.pod:4475
13208 msgid "guestfs_mke2journal_L"
13209 msgstr ""
13210
13211 #. type: verbatim
13212 #: ../src/guestfs-actions.pod:4477
13213 #, no-wrap
13214 msgid ""
13215 " int\n"
13216 " guestfs_mke2journal_L (guestfs_h *g,\n"
13217 "                        int blocksize,\n"
13218 "                        const char *label,\n"
13219 "                        const char *device);\n"
13220 "\n"
13221 msgstr ""
13222
13223 #. type: textblock
13224 #: ../src/guestfs-actions.pod:4483 ../fish/guestfish-actions.pod:3013
13225 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13226 msgstr ""
13227
13228 #. type: =head2
13229 #: ../src/guestfs-actions.pod:4489
13230 msgid "guestfs_mke2journal_U"
13231 msgstr ""
13232
13233 #. type: verbatim
13234 #: ../src/guestfs-actions.pod:4491
13235 #, no-wrap
13236 msgid ""
13237 " int\n"
13238 " guestfs_mke2journal_U (guestfs_h *g,\n"
13239 "                        int blocksize,\n"
13240 "                        const char *uuid,\n"
13241 "                        const char *device);\n"
13242 "\n"
13243 msgstr ""
13244
13245 #. type: textblock
13246 #: ../src/guestfs-actions.pod:4497 ../fish/guestfish-actions.pod:3019
13247 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13248 msgstr ""
13249
13250 #. type: =head2
13251 #: ../src/guestfs-actions.pod:4503
13252 msgid "guestfs_mkfifo"
13253 msgstr ""
13254
13255 #. type: verbatim
13256 #: ../src/guestfs-actions.pod:4505
13257 #, no-wrap
13258 msgid ""
13259 " int\n"
13260 " guestfs_mkfifo (guestfs_h *g,\n"
13261 "                 int mode,\n"
13262 "                 const char *path);\n"
13263 "\n"
13264 msgstr ""
13265
13266 #. type: textblock
13267 #: ../src/guestfs-actions.pod:4510
13268 msgid ""
13269 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13270 "is just a convenient wrapper around C<guestfs_mknod>."
13271 msgstr ""
13272
13273 #. type: =head2
13274 #: ../src/guestfs-actions.pod:4520
13275 msgid "guestfs_mkfs"
13276 msgstr ""
13277
13278 #. type: verbatim
13279 #: ../src/guestfs-actions.pod:4522
13280 #, no-wrap
13281 msgid ""
13282 " int\n"
13283 " guestfs_mkfs (guestfs_h *g,\n"
13284 "               const char *fstype,\n"
13285 "               const char *device);\n"
13286 "\n"
13287 msgstr ""
13288
13289 #. type: textblock
13290 #: ../src/guestfs-actions.pod:4527 ../fish/guestfish-actions.pod:3035
13291 msgid ""
13292 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13293 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13294 msgstr ""
13295
13296 #. type: =head2
13297 #: ../src/guestfs-actions.pod:4535
13298 msgid "guestfs_mkfs_b"
13299 msgstr ""
13300
13301 #. type: verbatim
13302 #: ../src/guestfs-actions.pod:4537
13303 #, no-wrap
13304 msgid ""
13305 " int\n"
13306 " guestfs_mkfs_b (guestfs_h *g,\n"
13307 "                 const char *fstype,\n"
13308 "                 int blocksize,\n"
13309 "                 const char *device);\n"
13310 "\n"
13311 msgstr ""
13312
13313 #. type: textblock
13314 #: ../src/guestfs-actions.pod:4543
13315 msgid ""
13316 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13317 "block size of the resulting filesystem.  Supported block sizes depend on the "
13318 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13319 msgstr ""
13320
13321 #. type: textblock
13322 #: ../src/guestfs-actions.pod:4548 ../src/guestfs-actions.pod:4593 ../fish/guestfish-actions.pod:3048 ../fish/guestfish-actions.pod:3075
13323 msgid ""
13324 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13325 "cluster size."
13326 msgstr ""
13327
13328 #. type: textblock
13329 #: ../src/guestfs-actions.pod:4553 ../fish/guestfish-actions.pod:3051
13330 msgid ""
13331 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
13332 "instead."
13333 msgstr ""
13334
13335 #. type: =head2
13336 #: ../src/guestfs-actions.pod:4562
13337 msgid "guestfs_mkfs_opts"
13338 msgstr ""
13339
13340 #. type: verbatim
13341 #: ../src/guestfs-actions.pod:4564
13342 #, no-wrap
13343 msgid ""
13344 " int\n"
13345 " guestfs_mkfs_opts (guestfs_h *g,\n"
13346 "                    const char *fstype,\n"
13347 "                    const char *device,\n"
13348 "                    ...);\n"
13349 "\n"
13350 msgstr ""
13351
13352 #. type: verbatim
13353 #: ../src/guestfs-actions.pod:4575
13354 #, no-wrap
13355 msgid ""
13356 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13357 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13358 " GUESTFS_MKFS_OPTS_INODE, int inode,\n"
13359 " GUESTFS_MKFS_OPTS_SECTORSIZE, int sectorsize,\n"
13360 "\n"
13361 msgstr ""
13362
13363 #. type: textblock
13364 #: ../src/guestfs-actions.pod:4580 ../fish/guestfish-actions.pod:3062
13365 msgid ""
13366 "This function creates a filesystem on C<device>.  The filesystem type is "
13367 "C<fstype>, for example C<ext3>."
13368 msgstr ""
13369
13370 #. type: =item
13371 #: ../src/guestfs-actions.pod:4587 ../fish/guestfish-actions.pod:3069
13372 msgid "C<blocksize>"
13373 msgstr ""
13374
13375 #. type: textblock
13376 #: ../src/guestfs-actions.pod:4589 ../fish/guestfish-actions.pod:3071
13377 msgid ""
13378 "The filesystem block size.  Supported block sizes depend on the filesystem "
13379 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13380 "filesystems."
13381 msgstr ""
13382
13383 #. type: textblock
13384 #: ../src/guestfs-actions.pod:4596 ../fish/guestfish-actions.pod:3078
13385 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13386 msgstr ""
13387
13388 #. type: =item
13389 #: ../src/guestfs-actions.pod:4598 ../fish/guestfish-actions.pod:3080
13390 msgid "C<features>"
13391 msgstr ""
13392
13393 #. type: textblock
13394 #: ../src/guestfs-actions.pod:4600 ../fish/guestfish-actions.pod:3082
13395 msgid "This passes the I<-O> parameter to the external mkfs program."
13396 msgstr ""
13397
13398 #. type: textblock
13399 #: ../src/guestfs-actions.pod:4602 ../fish/guestfish-actions.pod:3084
13400 msgid ""
13401 "For certain filesystem types, this allows extra filesystem features to be "
13402 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13403 msgstr ""
13404
13405 #. type: textblock
13406 #: ../src/guestfs-actions.pod:4606 ../fish/guestfish-actions.pod:3088
13407 msgid ""
13408 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13409 "type."
13410 msgstr ""
13411
13412 #. type: =item
13413 #: ../src/guestfs-actions.pod:4609 ../fish/guestfish-actions.pod:3091
13414 msgid "C<inode>"
13415 msgstr ""
13416
13417 #. type: textblock
13418 #: ../src/guestfs-actions.pod:4611 ../fish/guestfish-actions.pod:3093
13419 msgid ""
13420 "This passes the I<-I> parameter to the external L<mke2fs(8)> program which "
13421 "sets the inode size (only for ext2/3/4 filesystems at present)."
13422 msgstr ""
13423
13424 #. type: =item
13425 #: ../src/guestfs-actions.pod:4614 ../fish/guestfish-actions.pod:3096
13426 msgid "C<sectorsize>"
13427 msgstr ""
13428
13429 #. type: textblock
13430 #: ../src/guestfs-actions.pod:4616 ../fish/guestfish-actions.pod:3098
13431 msgid ""
13432 "This passes the I<-S> parameter to external L<mkfs.ufs(8)> program, which "
13433 "sets sector size for ufs filesystem."
13434 msgstr ""
13435
13436 #. type: textblock
13437 #: ../src/guestfs-actions.pod:4623
13438 msgid "(Added in 1.7.19)"
13439 msgstr ""
13440
13441 #. type: =head2
13442 #: ../src/guestfs-actions.pod:4625
13443 msgid "guestfs_mkfs_opts_va"
13444 msgstr ""
13445
13446 #. type: verbatim
13447 #: ../src/guestfs-actions.pod:4627
13448 #, no-wrap
13449 msgid ""
13450 " int\n"
13451 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13452 "                       const char *fstype,\n"
13453 "                       const char *device,\n"
13454 "                       va_list args);\n"
13455 "\n"
13456 msgstr ""
13457
13458 #. type: textblock
13459 #: ../src/guestfs-actions.pod:4633
13460 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13461 msgstr ""
13462
13463 #. type: =head2
13464 #: ../src/guestfs-actions.pod:4637
13465 msgid "guestfs_mkfs_opts_argv"
13466 msgstr ""
13467
13468 #. type: verbatim
13469 #: ../src/guestfs-actions.pod:4639
13470 #, no-wrap
13471 msgid ""
13472 " int\n"
13473 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13474 "                         const char *fstype,\n"
13475 "                         const char *device,\n"
13476 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13477 "\n"
13478 msgstr ""
13479
13480 #. type: textblock
13481 #: ../src/guestfs-actions.pod:4645
13482 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13483 msgstr ""
13484
13485 #. type: =head2
13486 #: ../src/guestfs-actions.pod:4649
13487 msgid "guestfs_mkmountpoint"
13488 msgstr ""
13489
13490 #. type: verbatim
13491 #: ../src/guestfs-actions.pod:4651
13492 #, no-wrap
13493 msgid ""
13494 " int\n"
13495 " guestfs_mkmountpoint (guestfs_h *g,\n"
13496 "                       const char *exemptpath);\n"
13497 "\n"
13498 msgstr ""
13499
13500 #. type: textblock
13501 #: ../src/guestfs-actions.pod:4655
13502 msgid ""
13503 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13504 "that can be used to create extra mountpoints before mounting the first "
13505 "filesystem."
13506 msgstr ""
13507
13508 #. type: textblock
13509 #: ../src/guestfs-actions.pod:4659 ../fish/guestfish-actions.pod:3113
13510 msgid ""
13511 "These calls are I<only> necessary in some very limited circumstances, mainly "
13512 "the case where you want to mount a mix of unrelated and/or read-only "
13513 "filesystems together."
13514 msgstr ""
13515
13516 #. type: textblock
13517 #: ../src/guestfs-actions.pod:4663 ../fish/guestfish-actions.pod:3117
13518 msgid ""
13519 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13520 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13521 "inside that.  You can unpack this as follows in guestfish:"
13522 msgstr ""
13523
13524 #. type: verbatim
13525 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3122
13526 #, no-wrap
13527 msgid ""
13528 " add-ro Fedora-11-i686-Live.iso\n"
13529 " run\n"
13530 " mkmountpoint /cd\n"
13531 " mkmountpoint /sqsh\n"
13532 " mkmountpoint /ext3fs\n"
13533 " mount /dev/sda /cd\n"
13534 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13535 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13536 "\n"
13537 msgstr ""
13538
13539 #. type: textblock
13540 #: ../src/guestfs-actions.pod:4677 ../fish/guestfish-actions.pod:3131
13541 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13542 msgstr ""
13543
13544 #. type: textblock
13545 #: ../src/guestfs-actions.pod:4679
13546 msgid ""
13547 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13548 "may get unexpected errors if you try to mix these calls.  It is safest to "
13549 "manually unmount filesystems and remove mountpoints after use."
13550 msgstr ""
13551
13552 #. type: textblock
13553 #: ../src/guestfs-actions.pod:4683
13554 msgid ""
13555 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13556 "first, so for this to work for manual mountpoints, you must ensure that the "
13557 "innermost mountpoints have the longest pathnames, as in the example code "
13558 "above."
13559 msgstr ""
13560
13561 #. type: textblock
13562 #: ../src/guestfs-actions.pod:4688 ../fish/guestfish-actions.pod:3142
13563 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13564 msgstr ""
13565
13566 #. type: textblock
13567 #: ../src/guestfs-actions.pod:4690
13568 msgid ""
13569 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13570 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13571 "can also trigger these issues."
13572 msgstr ""
13573
13574 #. type: textblock
13575 #: ../src/guestfs-actions.pod:4696 ../src/guestfs-actions.pod:5012 ../src/guestfs-actions.pod:6014
13576 msgid "(Added in 1.0.62)"
13577 msgstr ""
13578
13579 #. type: =head2
13580 #: ../src/guestfs-actions.pod:4698
13581 msgid "guestfs_mknod"
13582 msgstr ""
13583
13584 #. type: verbatim
13585 #: ../src/guestfs-actions.pod:4700
13586 #, no-wrap
13587 msgid ""
13588 " int\n"
13589 " guestfs_mknod (guestfs_h *g,\n"
13590 "                int mode,\n"
13591 "                int devmajor,\n"
13592 "                int devminor,\n"
13593 "                const char *path);\n"
13594 "\n"
13595 msgstr ""
13596
13597 #. type: textblock
13598 #: ../src/guestfs-actions.pod:4707 ../fish/guestfish-actions.pod:3152
13599 msgid ""
13600 "This call creates block or character special devices, or named pipes "
13601 "(FIFOs)."
13602 msgstr ""
13603
13604 #. type: textblock
13605 #: ../src/guestfs-actions.pod:4710 ../fish/guestfish-actions.pod:3155
13606 msgid ""
13607 "The C<mode> parameter should be the mode, using the standard constants.  "
13608 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13609 "used when creating block and character special devices."
13610 msgstr ""
13611
13612 #. type: textblock
13613 #: ../src/guestfs-actions.pod:4715
13614 msgid ""
13615 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13616 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13617 "regular file).  These constants are available in the standard Linux header "
13618 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13619 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13620 "the appropriate constant for you."
13621 msgstr ""
13622
13623 #. type: =head2
13624 #: ../src/guestfs-actions.pod:4729
13625 msgid "guestfs_mknod_b"
13626 msgstr ""
13627
13628 #. type: verbatim
13629 #: ../src/guestfs-actions.pod:4731
13630 #, no-wrap
13631 msgid ""
13632 " int\n"
13633 " guestfs_mknod_b (guestfs_h *g,\n"
13634 "                  int mode,\n"
13635 "                  int devmajor,\n"
13636 "                  int devminor,\n"
13637 "                  const char *path);\n"
13638 "\n"
13639 msgstr ""
13640
13641 #. type: textblock
13642 #: ../src/guestfs-actions.pod:4738
13643 msgid ""
13644 "This call creates a block device node called C<path> with mode C<mode> and "
13645 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13646 "wrapper around C<guestfs_mknod>."
13647 msgstr ""
13648
13649 #. type: =head2
13650 #: ../src/guestfs-actions.pod:4748
13651 msgid "guestfs_mknod_c"
13652 msgstr ""
13653
13654 #. type: verbatim
13655 #: ../src/guestfs-actions.pod:4750
13656 #, no-wrap
13657 msgid ""
13658 " int\n"
13659 " guestfs_mknod_c (guestfs_h *g,\n"
13660 "                  int mode,\n"
13661 "                  int devmajor,\n"
13662 "                  int devminor,\n"
13663 "                  const char *path);\n"
13664 "\n"
13665 msgstr ""
13666
13667 #. type: textblock
13668 #: ../src/guestfs-actions.pod:4757
13669 msgid ""
13670 "This call creates a char device node called C<path> with mode C<mode> and "
13671 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13672 "wrapper around C<guestfs_mknod>."
13673 msgstr ""
13674
13675 #. type: =head2
13676 #: ../src/guestfs-actions.pod:4767
13677 msgid "guestfs_mkswap"
13678 msgstr ""
13679
13680 #. type: verbatim
13681 #: ../src/guestfs-actions.pod:4769
13682 #, no-wrap
13683 msgid ""
13684 " int\n"
13685 " guestfs_mkswap (guestfs_h *g,\n"
13686 "                 const char *device);\n"
13687 "\n"
13688 msgstr ""
13689
13690 #. type: textblock
13691 #: ../src/guestfs-actions.pod:4773 ../fish/guestfish-actions.pod:3194
13692 msgid "Create a swap partition on C<device>."
13693 msgstr ""
13694
13695 #. type: =head2
13696 #: ../src/guestfs-actions.pod:4779
13697 msgid "guestfs_mkswap_L"
13698 msgstr ""
13699
13700 #. type: verbatim
13701 #: ../src/guestfs-actions.pod:4781
13702 #, no-wrap
13703 msgid ""
13704 " int\n"
13705 " guestfs_mkswap_L (guestfs_h *g,\n"
13706 "                   const char *label,\n"
13707 "                   const char *device);\n"
13708 "\n"
13709 msgstr ""
13710
13711 #. type: textblock
13712 #: ../src/guestfs-actions.pod:4786 ../fish/guestfish-actions.pod:3200
13713 msgid "Create a swap partition on C<device> with label C<label>."
13714 msgstr ""
13715
13716 #. type: textblock
13717 #: ../src/guestfs-actions.pod:4788 ../fish/guestfish-actions.pod:3202
13718 msgid ""
13719 "Note that you cannot attach a swap label to a block device "
13720 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
13721 "the kernel or swap tools."
13722 msgstr ""
13723
13724 #. type: =head2
13725 #: ../src/guestfs-actions.pod:4796
13726 msgid "guestfs_mkswap_U"
13727 msgstr ""
13728
13729 #. type: verbatim
13730 #: ../src/guestfs-actions.pod:4798
13731 #, no-wrap
13732 msgid ""
13733 " int\n"
13734 " guestfs_mkswap_U (guestfs_h *g,\n"
13735 "                   const char *uuid,\n"
13736 "                   const char *device);\n"
13737 "\n"
13738 msgstr ""
13739
13740 #. type: textblock
13741 #: ../src/guestfs-actions.pod:4803 ../fish/guestfish-actions.pod:3210
13742 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13743 msgstr ""
13744
13745 #. type: =head2
13746 #: ../src/guestfs-actions.pod:4809
13747 msgid "guestfs_mkswap_file"
13748 msgstr ""
13749
13750 #. type: verbatim
13751 #: ../src/guestfs-actions.pod:4811
13752 #, no-wrap
13753 msgid ""
13754 " int\n"
13755 " guestfs_mkswap_file (guestfs_h *g,\n"
13756 "                      const char *path);\n"
13757 "\n"
13758 msgstr ""
13759
13760 #. type: textblock
13761 #: ../src/guestfs-actions.pod:4815 ../fish/guestfish-actions.pod:3216
13762 msgid "Create a swap file."
13763 msgstr ""
13764
13765 #. type: textblock
13766 #: ../src/guestfs-actions.pod:4817
13767 msgid ""
13768 "This command just writes a swap file signature to an existing file.  To "
13769 "create the file itself, use something like C<guestfs_fallocate>."
13770 msgstr ""
13771
13772 #. type: =head2
13773 #: ../src/guestfs-actions.pod:4824
13774 msgid "guestfs_modprobe"
13775 msgstr ""
13776
13777 #. type: verbatim
13778 #: ../src/guestfs-actions.pod:4826
13779 #, no-wrap
13780 msgid ""
13781 " int\n"
13782 " guestfs_modprobe (guestfs_h *g,\n"
13783 "                   const char *modulename);\n"
13784 "\n"
13785 msgstr ""
13786
13787 #. type: textblock
13788 #: ../src/guestfs-actions.pod:4830 ../fish/guestfish-actions.pod:3225
13789 msgid "This loads a kernel module in the appliance."
13790 msgstr ""
13791
13792 #. type: textblock
13793 #: ../src/guestfs-actions.pod:4832 ../fish/guestfish-actions.pod:3227
13794 msgid ""
13795 "The kernel module must have been whitelisted when libguestfs was built (see "
13796 "C<appliance/kmod.whitelist.in> in the source)."
13797 msgstr ""
13798
13799 #. type: =head2
13800 #: ../src/guestfs-actions.pod:4839
13801 msgid "guestfs_mount"
13802 msgstr ""
13803
13804 #. type: verbatim
13805 #: ../src/guestfs-actions.pod:4841
13806 #, no-wrap
13807 msgid ""
13808 " int\n"
13809 " guestfs_mount (guestfs_h *g,\n"
13810 "                const char *device,\n"
13811 "                const char *mountpoint);\n"
13812 "\n"
13813 msgstr ""
13814
13815 #. type: textblock
13816 #: ../src/guestfs-actions.pod:4846 ../fish/guestfish-actions.pod:3234
13817 msgid ""
13818 "Mount a guest disk at a position in the filesystem.  Block devices are named "
13819 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
13820 "those block devices contain partitions, they will have the usual names "
13821 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
13822 msgstr ""
13823
13824 #. type: textblock
13825 #: ../src/guestfs-actions.pod:4852 ../fish/guestfish-actions.pod:3240
13826 msgid ""
13827 "The rules are the same as for L<mount(2)>: A filesystem must first be "
13828 "mounted on C</> before others can be mounted.  Other filesystems can only be "
13829 "mounted on directories which already exist."
13830 msgstr ""
13831
13832 #. type: textblock
13833 #: ../src/guestfs-actions.pod:4857 ../fish/guestfish-actions.pod:3245
13834 msgid ""
13835 "The mounted filesystem is writable, if we have sufficient permissions on the "
13836 "underlying device."
13837 msgstr ""
13838
13839 #. type: textblock
13840 #: ../src/guestfs-actions.pod:4860
13841 msgid ""
13842 "B<Important note:> When you use this call, the filesystem options C<sync> "
13843 "and C<noatime> are set implicitly.  This was originally done because we "
13844 "thought it would improve reliability, but it turns out that I<-o sync> has a "
13845 "very large negative performance impact and negligible effect on "
13846 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
13847 "in any code that needs performance, and instead use C<guestfs_mount_options> "
13848 "(use an empty string for the first parameter if you don't want any options)."
13849 msgstr ""
13850
13851 #. type: textblock
13852 #: ../src/guestfs-actions.pod:4872 ../fish/guestfish-actions.pod:3258
13853 msgid ""
13854 "This function is deprecated.  In new code, use the C<mount_options> call "
13855 "instead."
13856 msgstr ""
13857
13858 #. type: =head2
13859 #: ../src/guestfs-actions.pod:4881
13860 msgid "guestfs_mount_9p"
13861 msgstr ""
13862
13863 #. type: verbatim
13864 #: ../src/guestfs-actions.pod:4883
13865 #, no-wrap
13866 msgid ""
13867 " int\n"
13868 " guestfs_mount_9p (guestfs_h *g,\n"
13869 "                   const char *mounttag,\n"
13870 "                   const char *mountpoint,\n"
13871 "                   ...);\n"
13872 "\n"
13873 msgstr ""
13874
13875 #. type: verbatim
13876 #: ../src/guestfs-actions.pod:4894
13877 #, no-wrap
13878 msgid ""
13879 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
13880 "\n"
13881 msgstr ""
13882
13883 #. type: textblock
13884 #: ../src/guestfs-actions.pod:4896 ../fish/guestfish-actions.pod:3269
13885 msgid ""
13886 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
13887 "C<mountpoint>."
13888 msgstr ""
13889
13890 #. type: textblock
13891 #: ../src/guestfs-actions.pod:4899 ../fish/guestfish-actions.pod:3272
13892 msgid ""
13893 "If required, C<trans=virtio> will be automatically added to the options.  "
13894 "Any other options required can be passed in the optional C<options> "
13895 "parameter."
13896 msgstr ""
13897
13898 #. type: =head2
13899 #: ../src/guestfs-actions.pod:4907
13900 msgid "guestfs_mount_9p_va"
13901 msgstr ""
13902
13903 #. type: verbatim
13904 #: ../src/guestfs-actions.pod:4909
13905 #, no-wrap
13906 msgid ""
13907 " int\n"
13908 " guestfs_mount_9p_va (guestfs_h *g,\n"
13909 "                      const char *mounttag,\n"
13910 "                      const char *mountpoint,\n"
13911 "                      va_list args);\n"
13912 "\n"
13913 msgstr ""
13914
13915 #. type: textblock
13916 #: ../src/guestfs-actions.pod:4915
13917 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
13918 msgstr ""
13919
13920 #. type: =head2
13921 #: ../src/guestfs-actions.pod:4919
13922 msgid "guestfs_mount_9p_argv"
13923 msgstr ""
13924
13925 #. type: verbatim
13926 #: ../src/guestfs-actions.pod:4921
13927 #, no-wrap
13928 msgid ""
13929 " int\n"
13930 " guestfs_mount_9p_argv (guestfs_h *g,\n"
13931 "                        const char *mounttag,\n"
13932 "                        const char *mountpoint,\n"
13933 "                        const struct guestfs_mount_9p_argv *optargs);\n"
13934 "\n"
13935 msgstr ""
13936
13937 #. type: textblock
13938 #: ../src/guestfs-actions.pod:4927
13939 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
13940 msgstr ""
13941
13942 #. type: =head2
13943 #: ../src/guestfs-actions.pod:4931
13944 msgid "guestfs_mount_loop"
13945 msgstr ""
13946
13947 #. type: verbatim
13948 #: ../src/guestfs-actions.pod:4933
13949 #, no-wrap
13950 msgid ""
13951 " int\n"
13952 " guestfs_mount_loop (guestfs_h *g,\n"
13953 "                     const char *file,\n"
13954 "                     const char *mountpoint);\n"
13955 "\n"
13956 msgstr ""
13957
13958 #. type: textblock
13959 #: ../src/guestfs-actions.pod:4938 ../fish/guestfish-actions.pod:3282
13960 msgid ""
13961 "This command lets you mount C<file> (a filesystem image in a file) on a "
13962 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
13963 "mountpoint>."
13964 msgstr ""
13965
13966 #. type: =head2
13967 #: ../src/guestfs-actions.pod:4946
13968 msgid "guestfs_mount_options"
13969 msgstr ""
13970
13971 #. type: verbatim
13972 #: ../src/guestfs-actions.pod:4948
13973 #, no-wrap
13974 msgid ""
13975 " int\n"
13976 " guestfs_mount_options (guestfs_h *g,\n"
13977 "                        const char *options,\n"
13978 "                        const char *device,\n"
13979 "                        const char *mountpoint);\n"
13980 "\n"
13981 msgstr ""
13982
13983 #. type: textblock
13984 #: ../src/guestfs-actions.pod:4954
13985 msgid ""
13986 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13987 "the mount options as for the L<mount(8)> I<-o> flag."
13988 msgstr ""
13989
13990 #. type: textblock
13991 #: ../src/guestfs-actions.pod:4958 ../fish/guestfish-actions.pod:3294
13992 msgid ""
13993 "If the C<options> parameter is an empty string, then no options are passed "
13994 "(all options default to whatever the filesystem uses)."
13995 msgstr ""
13996
13997 #. type: textblock
13998 #: ../src/guestfs-actions.pod:4964 ../src/guestfs-actions.pod:4978 ../src/guestfs-actions.pod:4995
13999 msgid "(Added in 1.0.10)"
14000 msgstr ""
14001
14002 #. type: =head2
14003 #: ../src/guestfs-actions.pod:4966
14004 msgid "guestfs_mount_ro"
14005 msgstr ""
14006
14007 #. type: verbatim
14008 #: ../src/guestfs-actions.pod:4968
14009 #, no-wrap
14010 msgid ""
14011 " int\n"
14012 " guestfs_mount_ro (guestfs_h *g,\n"
14013 "                   const char *device,\n"
14014 "                   const char *mountpoint);\n"
14015 "\n"
14016 msgstr ""
14017
14018 #. type: textblock
14019 #: ../src/guestfs-actions.pod:4973
14020 msgid ""
14021 "This is the same as the C<guestfs_mount> command, but it mounts the "
14022 "filesystem with the read-only (I<-o ro>) flag."
14023 msgstr ""
14024
14025 #. type: =head2
14026 #: ../src/guestfs-actions.pod:4980
14027 msgid "guestfs_mount_vfs"
14028 msgstr ""
14029
14030 #. type: verbatim
14031 #: ../src/guestfs-actions.pod:4982
14032 #, no-wrap
14033 msgid ""
14034 " int\n"
14035 " guestfs_mount_vfs (guestfs_h *g,\n"
14036 "                    const char *options,\n"
14037 "                    const char *vfstype,\n"
14038 "                    const char *device,\n"
14039 "                    const char *mountpoint);\n"
14040 "\n"
14041 msgstr ""
14042
14043 #. type: textblock
14044 #: ../src/guestfs-actions.pod:4989
14045 msgid ""
14046 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14047 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
14048 "I<-t> flags."
14049 msgstr ""
14050
14051 #. type: =head2
14052 #: ../src/guestfs-actions.pod:4997
14053 msgid "guestfs_mountpoints"
14054 msgstr ""
14055
14056 #. type: verbatim
14057 #: ../src/guestfs-actions.pod:4999
14058 #, no-wrap
14059 msgid ""
14060 " char **\n"
14061 " guestfs_mountpoints (guestfs_h *g);\n"
14062 "\n"
14063 msgstr ""
14064
14065 #. type: textblock
14066 #: ../src/guestfs-actions.pod:5002
14067 msgid ""
14068 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14069 "devices.  This one returns a hash table (map) of device name to directory "
14070 "where the device is mounted."
14071 msgstr ""
14072
14073 #. type: =head2
14074 #: ../src/guestfs-actions.pod:5014
14075 msgid "guestfs_mounts"
14076 msgstr ""
14077
14078 #. type: verbatim
14079 #: ../src/guestfs-actions.pod:5016
14080 #, no-wrap
14081 msgid ""
14082 " char **\n"
14083 " guestfs_mounts (guestfs_h *g);\n"
14084 "\n"
14085 msgstr ""
14086
14087 #. type: textblock
14088 #: ../src/guestfs-actions.pod:5019 ../fish/guestfish-actions.pod:3325
14089 msgid ""
14090 "This returns the list of currently mounted filesystems.  It returns the list "
14091 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14092 msgstr ""
14093
14094 #. type: textblock
14095 #: ../src/guestfs-actions.pod:5022 ../fish/guestfish-actions.pod:3328
14096 msgid "Some internal mounts are not shown."
14097 msgstr ""
14098
14099 #. type: textblock
14100 #: ../src/guestfs-actions.pod:5024
14101 msgid "See also: C<guestfs_mountpoints>"
14102 msgstr ""
14103
14104 #. type: =head2
14105 #: ../src/guestfs-actions.pod:5032
14106 msgid "guestfs_mv"
14107 msgstr ""
14108
14109 #. type: verbatim
14110 #: ../src/guestfs-actions.pod:5034
14111 #, no-wrap
14112 msgid ""
14113 " int\n"
14114 " guestfs_mv (guestfs_h *g,\n"
14115 "             const char *src,\n"
14116 "             const char *dest);\n"
14117 "\n"
14118 msgstr ""
14119
14120 #. type: textblock
14121 #: ../src/guestfs-actions.pod:5039 ../fish/guestfish-actions.pod:3336
14122 msgid ""
14123 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14124 "destination filename or destination directory."
14125 msgstr ""
14126
14127 #. type: =head2
14128 #: ../src/guestfs-actions.pod:5046
14129 msgid "guestfs_ntfs_3g_probe"
14130 msgstr ""
14131
14132 #. type: verbatim
14133 #: ../src/guestfs-actions.pod:5048
14134 #, no-wrap
14135 msgid ""
14136 " int\n"
14137 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14138 "                        int rw,\n"
14139 "                        const char *device);\n"
14140 "\n"
14141 msgstr ""
14142
14143 #. type: textblock
14144 #: ../src/guestfs-actions.pod:5053 ../fish/guestfish-actions.pod:3343
14145 msgid ""
14146 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14147 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
14148 "read-write, and some cannot be mounted at all)."
14149 msgstr ""
14150
14151 #. type: textblock
14152 #: ../src/guestfs-actions.pod:5057 ../fish/guestfish-actions.pod:3347
14153 msgid ""
14154 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14155 "can be mounted read-write.  Set it to false if you want to test if the "
14156 "volume can be mounted read-only."
14157 msgstr ""
14158
14159 #. type: textblock
14160 #: ../src/guestfs-actions.pod:5061 ../fish/guestfish-actions.pod:3351
14161 msgid ""
14162 "The return value is an integer which C<0> if the operation would succeed, or "
14163 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14164 msgstr ""
14165
14166 #. type: textblock
14167 #: ../src/guestfs-actions.pod:5067
14168 msgid "(Added in 1.0.43)"
14169 msgstr ""
14170
14171 #. type: =head2
14172 #: ../src/guestfs-actions.pod:5069
14173 msgid "guestfs_ntfsresize"
14174 msgstr ""
14175
14176 #. type: verbatim
14177 #: ../src/guestfs-actions.pod:5071
14178 #, no-wrap
14179 msgid ""
14180 " int\n"
14181 " guestfs_ntfsresize (guestfs_h *g,\n"
14182 "                     const char *device);\n"
14183 "\n"
14184 msgstr ""
14185
14186 #. type: textblock
14187 #: ../src/guestfs-actions.pod:5075 ../src/guestfs-actions.pod:5114 ../fish/guestfish-actions.pod:3359 ../fish/guestfish-actions.pod:3383
14188 msgid ""
14189 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14190 "size of the underlying device."
14191 msgstr ""
14192
14193 #. type: textblock
14194 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3362
14195 msgid ""
14196 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
14197 "consistency check (for safety).  You have to boot into Windows to perform "
14198 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14199 "resize filesystems which have been marked in this way.  So in effect it is "
14200 "not possible to call ntfsresize multiple times on a single filesystem "
14201 "without booting into Windows between each resize."
14202 msgstr ""
14203
14204 #. type: textblock
14205 #: ../src/guestfs-actions.pod:5086 ../src/guestfs-actions.pod:5140 ../fish/guestfish-actions.pod:3370 ../fish/guestfish-actions.pod:3409
14206 msgid "See also L<ntfsresize(8)>."
14207 msgstr ""
14208
14209 #. type: textblock
14210 #: ../src/guestfs-actions.pod:5090 ../src/guestfs-actions.pod:5178 ../fish/guestfish-actions.pod:3372 ../fish/guestfish-actions.pod:3420
14211 msgid ""
14212 "This function is deprecated.  In new code, use the C<ntfsresize_opts> call "
14213 "instead."
14214 msgstr ""
14215
14216 #. type: =head2
14217 #: ../src/guestfs-actions.pod:5099
14218 msgid "guestfs_ntfsresize_opts"
14219 msgstr ""
14220
14221 #. type: verbatim
14222 #: ../src/guestfs-actions.pod:5101
14223 #, no-wrap
14224 msgid ""
14225 " int\n"
14226 " guestfs_ntfsresize_opts (guestfs_h *g,\n"
14227 "                          const char *device,\n"
14228 "                          ...);\n"
14229 "\n"
14230 msgstr ""
14231
14232 #. type: verbatim
14233 #: ../src/guestfs-actions.pod:5111
14234 #, no-wrap
14235 msgid ""
14236 " GUESTFS_NTFSRESIZE_OPTS_SIZE, int64_t size,\n"
14237 " GUESTFS_NTFSRESIZE_OPTS_FORCE, int force,\n"
14238 "\n"
14239 msgstr ""
14240
14241 #. type: textblock
14242 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3386
14243 msgid "The optional parameters are:"
14244 msgstr ""
14245
14246 #. type: =item
14247 #: ../src/guestfs-actions.pod:5121 ../fish/guestfish-actions.pod:3390
14248 msgid "C<size>"
14249 msgstr ""
14250
14251 #. type: textblock
14252 #: ../src/guestfs-actions.pod:5123 ../fish/guestfish-actions.pod:3392
14253 msgid ""
14254 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
14255 "resized to fit the container (eg. partition)."
14256 msgstr ""
14257
14258 #. type: =item
14259 #: ../src/guestfs-actions.pod:5126 ../fish/guestfish-actions.pod:3395
14260 msgid "C<force>"
14261 msgstr ""
14262
14263 #. type: textblock
14264 #: ../src/guestfs-actions.pod:5128 ../fish/guestfish-actions.pod:3397
14265 msgid ""
14266 "If this option is true, then force the resize of the filesystem even if the "
14267 "filesystem is marked as requiring a consistency check."
14268 msgstr ""
14269
14270 #. type: textblock
14271 #: ../src/guestfs-actions.pod:5131
14272 msgid ""
14273 "After the resize operation, the filesystem is always marked as requiring a "
14274 "consistency check (for safety).  You have to boot into Windows to perform "
14275 "this check and clear this condition.  If you I<don't> set the C<force> "
14276 "option then it is not possible to call C<guestfs_ntfsresize_opts> multiple "
14277 "times on a single filesystem without booting into Windows between each "
14278 "resize."
14279 msgstr ""
14280
14281 #. type: =head2
14282 #: ../src/guestfs-actions.pod:5144
14283 msgid "guestfs_ntfsresize_opts_va"
14284 msgstr ""
14285
14286 #. type: verbatim
14287 #: ../src/guestfs-actions.pod:5146
14288 #, no-wrap
14289 msgid ""
14290 " int\n"
14291 " guestfs_ntfsresize_opts_va (guestfs_h *g,\n"
14292 "                             const char *device,\n"
14293 "                             va_list args);\n"
14294 "\n"
14295 msgstr ""
14296
14297 #. type: textblock
14298 #: ../src/guestfs-actions.pod:5151
14299 msgid "This is the \"va_list variant\" of L</guestfs_ntfsresize_opts>."
14300 msgstr ""
14301
14302 #. type: =head2
14303 #: ../src/guestfs-actions.pod:5155
14304 msgid "guestfs_ntfsresize_opts_argv"
14305 msgstr ""
14306
14307 #. type: verbatim
14308 #: ../src/guestfs-actions.pod:5157
14309 #, no-wrap
14310 msgid ""
14311 " int\n"
14312 " guestfs_ntfsresize_opts_argv (guestfs_h *g,\n"
14313 "                               const char *device,\n"
14314 "                               const struct guestfs_ntfsresize_opts_argv "
14315 "*optargs);\n"
14316 "\n"
14317 msgstr ""
14318
14319 #. type: textblock
14320 #: ../src/guestfs-actions.pod:5162
14321 msgid "This is the \"argv variant\" of L</guestfs_ntfsresize_opts>."
14322 msgstr ""
14323
14324 #. type: =head2
14325 #: ../src/guestfs-actions.pod:5166
14326 msgid "guestfs_ntfsresize_size"
14327 msgstr ""
14328
14329 #. type: verbatim
14330 #: ../src/guestfs-actions.pod:5168
14331 #, no-wrap
14332 msgid ""
14333 " int\n"
14334 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14335 "                          const char *device,\n"
14336 "                          int64_t size);\n"
14337 "\n"
14338 msgstr ""
14339
14340 #. type: textblock
14341 #: ../src/guestfs-actions.pod:5173
14342 msgid ""
14343 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14344 "to specify the new size (in bytes) explicitly."
14345 msgstr ""
14346
14347 #. type: textblock
14348 #: ../src/guestfs-actions.pod:5185 ../src/guestfs-actions.pod:5621 ../src/guestfs-actions.pod:5694 ../src/guestfs-actions.pod:5962 ../src/guestfs-actions.pod:7564
14349 msgid "(Added in 1.3.14)"
14350 msgstr ""
14351
14352 #. type: =head2
14353 #: ../src/guestfs-actions.pod:5187
14354 msgid "guestfs_part_add"
14355 msgstr ""
14356
14357 #. type: verbatim
14358 #: ../src/guestfs-actions.pod:5189
14359 #, no-wrap
14360 msgid ""
14361 " int\n"
14362 " guestfs_part_add (guestfs_h *g,\n"
14363 "                   const char *device,\n"
14364 "                   const char *prlogex,\n"
14365 "                   int64_t startsect,\n"
14366 "                   int64_t endsect);\n"
14367 "\n"
14368 msgstr ""
14369
14370 #. type: textblock
14371 #: ../src/guestfs-actions.pod:5196
14372 msgid ""
14373 "This command adds a partition to C<device>.  If there is no partition table "
14374 "on the device, call C<guestfs_part_init> first."
14375 msgstr ""
14376
14377 #. type: textblock
14378 #: ../src/guestfs-actions.pod:5199 ../fish/guestfish-actions.pod:3434
14379 msgid ""
14380 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14381 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14382 "C<logical>) and C<e> (or C<extended>) partition types."
14383 msgstr ""
14384
14385 #. type: textblock
14386 #: ../src/guestfs-actions.pod:5204 ../fish/guestfish-actions.pod:3439
14387 msgid ""
14388 "C<startsect> and C<endsect> are the start and end of the partition in "
14389 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14390 "from the end of the disk (C<-1> is the last sector)."
14391 msgstr ""
14392
14393 #. type: textblock
14394 #: ../src/guestfs-actions.pod:5208
14395 msgid ""
14396 "Creating a partition which covers the whole disk is not so easy.  Use "
14397 "C<guestfs_part_disk> to do that."
14398 msgstr ""
14399
14400 #. type: textblock
14401 #: ../src/guestfs-actions.pod:5213 ../src/guestfs-actions.pod:5251 ../src/guestfs-actions.pod:5304 ../src/guestfs-actions.pod:5382 ../src/guestfs-actions.pod:5420 ../src/guestfs-actions.pod:5439 ../src/guestfs-actions.pod:5479
14402 msgid "(Added in 1.0.78)"
14403 msgstr ""
14404
14405 #. type: =head2
14406 #: ../src/guestfs-actions.pod:5215
14407 msgid "guestfs_part_del"
14408 msgstr ""
14409
14410 #. type: verbatim
14411 #: ../src/guestfs-actions.pod:5217
14412 #, no-wrap
14413 msgid ""
14414 " int\n"
14415 " guestfs_part_del (guestfs_h *g,\n"
14416 "                   const char *device,\n"
14417 "                   int partnum);\n"
14418 "\n"
14419 msgstr ""
14420
14421 #. type: textblock
14422 #: ../src/guestfs-actions.pod:5222 ../fish/guestfish-actions.pod:3450
14423 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14424 msgstr ""
14425
14426 #. type: textblock
14427 #: ../src/guestfs-actions.pod:5224 ../fish/guestfish-actions.pod:3452
14428 msgid ""
14429 "Note that in the case of MBR partitioning, deleting an extended partition "
14430 "also deletes any logical partitions it contains."
14431 msgstr ""
14432
14433 #. type: =head2
14434 #: ../src/guestfs-actions.pod:5232
14435 msgid "guestfs_part_disk"
14436 msgstr ""
14437
14438 #. type: verbatim
14439 #: ../src/guestfs-actions.pod:5234
14440 #, no-wrap
14441 msgid ""
14442 " int\n"
14443 " guestfs_part_disk (guestfs_h *g,\n"
14444 "                    const char *device,\n"
14445 "                    const char *parttype);\n"
14446 "\n"
14447 msgstr ""
14448
14449 #. type: textblock
14450 #: ../src/guestfs-actions.pod:5239
14451 msgid ""
14452 "This command is simply a combination of C<guestfs_part_init> followed by "
14453 "C<guestfs_part_add> to create a single primary partition covering the whole "
14454 "disk."
14455 msgstr ""
14456
14457 #. type: textblock
14458 #: ../src/guestfs-actions.pod:5243
14459 msgid ""
14460 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14461 "possible values are described in C<guestfs_part_init>."
14462 msgstr ""
14463
14464 #. type: =head2
14465 #: ../src/guestfs-actions.pod:5253
14466 msgid "guestfs_part_get_bootable"
14467 msgstr ""
14468
14469 #. type: verbatim
14470 #: ../src/guestfs-actions.pod:5255
14471 #, no-wrap
14472 msgid ""
14473 " int\n"
14474 " guestfs_part_get_bootable (guestfs_h *g,\n"
14475 "                            const char *device,\n"
14476 "                            int partnum);\n"
14477 "\n"
14478 msgstr ""
14479
14480 #. type: textblock
14481 #: ../src/guestfs-actions.pod:5260 ../fish/guestfish-actions.pod:3474
14482 msgid ""
14483 "This command returns true if the partition C<partnum> on C<device> has the "
14484 "bootable flag set."
14485 msgstr ""
14486
14487 #. type: textblock
14488 #: ../src/guestfs-actions.pod:5263
14489 msgid "See also C<guestfs_part_set_bootable>."
14490 msgstr ""
14491
14492 #. type: =head2
14493 #: ../src/guestfs-actions.pod:5269
14494 msgid "guestfs_part_get_mbr_id"
14495 msgstr ""
14496
14497 #. type: verbatim
14498 #: ../src/guestfs-actions.pod:5271
14499 #, no-wrap
14500 msgid ""
14501 " int\n"
14502 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14503 "                          const char *device,\n"
14504 "                          int partnum);\n"
14505 "\n"
14506 msgstr ""
14507
14508 #. type: textblock
14509 #: ../src/guestfs-actions.pod:5276 ../fish/guestfish-actions.pod:3483
14510 msgid ""
14511 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14512 "partition C<partnum>."
14513 msgstr ""
14514
14515 #. type: textblock
14516 #: ../src/guestfs-actions.pod:5279 ../src/guestfs-actions.pod:5455
14517 msgid ""
14518 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14519 "undefined results for other partition table types (see "
14520 "C<guestfs_part_get_parttype>)."
14521 msgstr ""
14522
14523 #. type: =head2
14524 #: ../src/guestfs-actions.pod:5287
14525 msgid "guestfs_part_get_parttype"
14526 msgstr ""
14527
14528 #. type: verbatim
14529 #: ../src/guestfs-actions.pod:5289
14530 #, no-wrap
14531 msgid ""
14532 " char *\n"
14533 " guestfs_part_get_parttype (guestfs_h *g,\n"
14534 "                            const char *device);\n"
14535 "\n"
14536 msgstr ""
14537
14538 #. type: textblock
14539 #: ../src/guestfs-actions.pod:5293 ../fish/guestfish-actions.pod:3494
14540 msgid ""
14541 "This command examines the partition table on C<device> and returns the "
14542 "partition table type (format) being used."
14543 msgstr ""
14544
14545 #. type: textblock
14546 #: ../src/guestfs-actions.pod:5296
14547 msgid ""
14548 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14549 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14550 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14551 msgstr ""
14552
14553 #. type: =head2
14554 #: ../src/guestfs-actions.pod:5306
14555 msgid "guestfs_part_init"
14556 msgstr ""
14557
14558 #. type: verbatim
14559 #: ../src/guestfs-actions.pod:5308
14560 #, no-wrap
14561 msgid ""
14562 " int\n"
14563 " guestfs_part_init (guestfs_h *g,\n"
14564 "                    const char *device,\n"
14565 "                    const char *parttype);\n"
14566 "\n"
14567 msgstr ""
14568
14569 #. type: textblock
14570 #: ../src/guestfs-actions.pod:5313 ../fish/guestfish-actions.pod:3506
14571 msgid ""
14572 "This creates an empty partition table on C<device> of one of the partition "
14573 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14574 "(for large disks)."
14575 msgstr ""
14576
14577 #. type: textblock
14578 #: ../src/guestfs-actions.pod:5317
14579 msgid ""
14580 "Initially there are no partitions.  Following this, you should call "
14581 "C<guestfs_part_add> for each partition required."
14582 msgstr ""
14583
14584 #. type: textblock
14585 #: ../src/guestfs-actions.pod:5320 ../fish/guestfish-actions.pod:3513
14586 msgid "Possible values for C<parttype> are:"
14587 msgstr ""
14588
14589 #. type: =item
14590 #: ../src/guestfs-actions.pod:5324 ../fish/guestfish-actions.pod:3517
14591 msgid "B<efi> | B<gpt>"
14592 msgstr ""
14593
14594 #. type: textblock
14595 #: ../src/guestfs-actions.pod:5326 ../fish/guestfish-actions.pod:3519
14596 msgid "Intel EFI / GPT partition table."
14597 msgstr ""
14598
14599 #. type: textblock
14600 #: ../src/guestfs-actions.pod:5328 ../fish/guestfish-actions.pod:3521
14601 msgid ""
14602 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14603 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14604 "the C<mbr> format."
14605 msgstr ""
14606
14607 #. type: =item
14608 #: ../src/guestfs-actions.pod:5332 ../fish/guestfish-actions.pod:3525
14609 msgid "B<mbr> | B<msdos>"
14610 msgstr ""
14611
14612 #. type: textblock
14613 #: ../src/guestfs-actions.pod:5334 ../fish/guestfish-actions.pod:3527
14614 msgid ""
14615 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14616 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14617 "TB.  For large disks we recommend using C<gpt>."
14618 msgstr ""
14619
14620 #. type: textblock
14621 #: ../src/guestfs-actions.pod:5341 ../fish/guestfish-actions.pod:3534
14622 msgid "Other partition table types that may work but are not supported include:"
14623 msgstr ""
14624
14625 #. type: =item
14626 #: ../src/guestfs-actions.pod:5346 ../fish/guestfish-actions.pod:3539
14627 msgid "B<aix>"
14628 msgstr ""
14629
14630 #. type: textblock
14631 #: ../src/guestfs-actions.pod:5348 ../fish/guestfish-actions.pod:3541
14632 msgid "AIX disk labels."
14633 msgstr ""
14634
14635 #. type: =item
14636 #: ../src/guestfs-actions.pod:5350 ../fish/guestfish-actions.pod:3543
14637 msgid "B<amiga> | B<rdb>"
14638 msgstr ""
14639
14640 #. type: textblock
14641 #: ../src/guestfs-actions.pod:5352 ../fish/guestfish-actions.pod:3545
14642 msgid "Amiga \"Rigid Disk Block\" format."
14643 msgstr ""
14644
14645 #. type: =item
14646 #: ../src/guestfs-actions.pod:5354 ../fish/guestfish-actions.pod:3547
14647 msgid "B<bsd>"
14648 msgstr ""
14649
14650 #. type: textblock
14651 #: ../src/guestfs-actions.pod:5356 ../fish/guestfish-actions.pod:3549
14652 msgid "BSD disk labels."
14653 msgstr ""
14654
14655 #. type: =item
14656 #: ../src/guestfs-actions.pod:5358 ../fish/guestfish-actions.pod:3551
14657 msgid "B<dasd>"
14658 msgstr ""
14659
14660 #. type: textblock
14661 #: ../src/guestfs-actions.pod:5360 ../fish/guestfish-actions.pod:3553
14662 msgid "DASD, used on IBM mainframes."
14663 msgstr ""
14664
14665 #. type: =item
14666 #: ../src/guestfs-actions.pod:5362 ../fish/guestfish-actions.pod:3555
14667 msgid "B<dvh>"
14668 msgstr ""
14669
14670 #. type: textblock
14671 #: ../src/guestfs-actions.pod:5364 ../fish/guestfish-actions.pod:3557
14672 msgid "MIPS/SGI volumes."
14673 msgstr ""
14674
14675 #. type: =item
14676 #: ../src/guestfs-actions.pod:5366 ../fish/guestfish-actions.pod:3559
14677 msgid "B<mac>"
14678 msgstr ""
14679
14680 #. type: textblock
14681 #: ../src/guestfs-actions.pod:5368 ../fish/guestfish-actions.pod:3561
14682 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14683 msgstr ""
14684
14685 #. type: =item
14686 #: ../src/guestfs-actions.pod:5370 ../fish/guestfish-actions.pod:3563
14687 msgid "B<pc98>"
14688 msgstr ""
14689
14690 #. type: textblock
14691 #: ../src/guestfs-actions.pod:5372 ../fish/guestfish-actions.pod:3565
14692 msgid "NEC PC-98 format, common in Japan apparently."
14693 msgstr ""
14694
14695 #. type: =item
14696 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3567
14697 msgid "B<sun>"
14698 msgstr ""
14699
14700 #. type: textblock
14701 #: ../src/guestfs-actions.pod:5376 ../fish/guestfish-actions.pod:3569
14702 msgid "Sun disk labels."
14703 msgstr ""
14704
14705 #. type: =head2
14706 #: ../src/guestfs-actions.pod:5384
14707 msgid "guestfs_part_list"
14708 msgstr ""
14709
14710 #. type: verbatim
14711 #: ../src/guestfs-actions.pod:5386
14712 #, no-wrap
14713 msgid ""
14714 " struct guestfs_partition_list *\n"
14715 " guestfs_part_list (guestfs_h *g,\n"
14716 "                    const char *device);\n"
14717 "\n"
14718 msgstr ""
14719
14720 #. type: textblock
14721 #: ../src/guestfs-actions.pod:5390 ../fish/guestfish-actions.pod:3577
14722 msgid ""
14723 "This command parses the partition table on C<device> and returns the list of "
14724 "partitions found."
14725 msgstr ""
14726
14727 #. type: textblock
14728 #: ../src/guestfs-actions.pod:5393 ../fish/guestfish-actions.pod:3580
14729 msgid "The fields in the returned structure are:"
14730 msgstr ""
14731
14732 #. type: =item
14733 #: ../src/guestfs-actions.pod:5397 ../fish/guestfish-actions.pod:3584
14734 msgid "B<part_num>"
14735 msgstr ""
14736
14737 #. type: textblock
14738 #: ../src/guestfs-actions.pod:5399 ../fish/guestfish-actions.pod:3586
14739 msgid "Partition number, counting from 1."
14740 msgstr ""
14741
14742 #. type: =item
14743 #: ../src/guestfs-actions.pod:5401 ../fish/guestfish-actions.pod:3588
14744 msgid "B<part_start>"
14745 msgstr ""
14746
14747 #. type: textblock
14748 #: ../src/guestfs-actions.pod:5403
14749 msgid ""
14750 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14751 "the device's sector size, see C<guestfs_blockdev_getss>."
14752 msgstr ""
14753
14754 #. type: =item
14755 #: ../src/guestfs-actions.pod:5406 ../fish/guestfish-actions.pod:3593
14756 msgid "B<part_end>"
14757 msgstr ""
14758
14759 #. type: textblock
14760 #: ../src/guestfs-actions.pod:5408 ../fish/guestfish-actions.pod:3595
14761 msgid "End of the partition in bytes."
14762 msgstr ""
14763
14764 #. type: =item
14765 #: ../src/guestfs-actions.pod:5410 ../fish/guestfish-actions.pod:3597
14766 msgid "B<part_size>"
14767 msgstr ""
14768
14769 #. type: textblock
14770 #: ../src/guestfs-actions.pod:5412 ../fish/guestfish-actions.pod:3599
14771 msgid "Size of the partition in bytes."
14772 msgstr ""
14773
14774 #. type: textblock
14775 #: ../src/guestfs-actions.pod:5416
14776 msgid ""
14777 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14778 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14779 "use>."
14780 msgstr ""
14781
14782 #. type: =head2
14783 #: ../src/guestfs-actions.pod:5422
14784 msgid "guestfs_part_set_bootable"
14785 msgstr ""
14786
14787 #. type: verbatim
14788 #: ../src/guestfs-actions.pod:5424
14789 #, no-wrap
14790 msgid ""
14791 " int\n"
14792 " guestfs_part_set_bootable (guestfs_h *g,\n"
14793 "                            const char *device,\n"
14794 "                            int partnum,\n"
14795 "                            int bootable);\n"
14796 "\n"
14797 msgstr ""
14798
14799 #. type: textblock
14800 #: ../src/guestfs-actions.pod:5430 ../fish/guestfish-actions.pod:3607
14801 msgid ""
14802 "This sets the bootable flag on partition numbered C<partnum> on device "
14803 "C<device>.  Note that partitions are numbered from 1."
14804 msgstr ""
14805
14806 #. type: textblock
14807 #: ../src/guestfs-actions.pod:5433 ../fish/guestfish-actions.pod:3610
14808 msgid ""
14809 "The bootable flag is used by some operating systems (notably Windows) to "
14810 "determine which partition to boot from.  It is by no means universally "
14811 "recognized."
14812 msgstr ""
14813
14814 #. type: =head2
14815 #: ../src/guestfs-actions.pod:5441
14816 msgid "guestfs_part_set_mbr_id"
14817 msgstr ""
14818
14819 #. type: verbatim
14820 #: ../src/guestfs-actions.pod:5443
14821 #, no-wrap
14822 msgid ""
14823 " int\n"
14824 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14825 "                          const char *device,\n"
14826 "                          int partnum,\n"
14827 "                          int idbyte);\n"
14828 "\n"
14829 msgstr ""
14830
14831 #. type: textblock
14832 #: ../src/guestfs-actions.pod:5449 ../fish/guestfish-actions.pod:3618
14833 msgid ""
14834 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14835 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14836 "documentation are in fact hexadecimal numbers, but usually documented "
14837 "without any leading \"0x\" which might be confusing."
14838 msgstr ""
14839
14840 #. type: =head2
14841 #: ../src/guestfs-actions.pod:5463
14842 msgid "guestfs_part_set_name"
14843 msgstr ""
14844
14845 #. type: verbatim
14846 #: ../src/guestfs-actions.pod:5465
14847 #, no-wrap
14848 msgid ""
14849 " int\n"
14850 " guestfs_part_set_name (guestfs_h *g,\n"
14851 "                        const char *device,\n"
14852 "                        int partnum,\n"
14853 "                        const char *name);\n"
14854 "\n"
14855 msgstr ""
14856
14857 #. type: textblock
14858 #: ../src/guestfs-actions.pod:5471 ../fish/guestfish-actions.pod:3632
14859 msgid ""
14860 "This sets the partition name on partition numbered C<partnum> on device "
14861 "C<device>.  Note that partitions are numbered from 1."
14862 msgstr ""
14863
14864 #. type: textblock
14865 #: ../src/guestfs-actions.pod:5474 ../fish/guestfish-actions.pod:3635
14866 msgid ""
14867 "The partition name can only be set on certain types of partition table.  "
14868 "This works on C<gpt> but not on C<mbr> partitions."
14869 msgstr ""
14870
14871 #. type: =head2
14872 #: ../src/guestfs-actions.pod:5481
14873 msgid "guestfs_part_to_dev"
14874 msgstr ""
14875
14876 #. type: verbatim
14877 #: ../src/guestfs-actions.pod:5483
14878 #, no-wrap
14879 msgid ""
14880 " char *\n"
14881 " guestfs_part_to_dev (guestfs_h *g,\n"
14882 "                      const char *partition);\n"
14883 "\n"
14884 msgstr ""
14885
14886 #. type: textblock
14887 #: ../src/guestfs-actions.pod:5487 ../fish/guestfish-actions.pod:3642
14888 msgid ""
14889 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14890 "partition number, returning the device name (eg. \"/dev/sdb\")."
14891 msgstr ""
14892
14893 #. type: textblock
14894 #: ../src/guestfs-actions.pod:5491
14895 msgid ""
14896 "The named partition must exist, for example as a string returned from "
14897 "C<guestfs_list_partitions>."
14898 msgstr ""
14899
14900 #. type: =head2
14901 #: ../src/guestfs-actions.pod:5499
14902 msgid "guestfs_ping_daemon"
14903 msgstr ""
14904
14905 #. type: verbatim
14906 #: ../src/guestfs-actions.pod:5501
14907 #, no-wrap
14908 msgid ""
14909 " int\n"
14910 " guestfs_ping_daemon (guestfs_h *g);\n"
14911 "\n"
14912 msgstr ""
14913
14914 #. type: textblock
14915 #: ../src/guestfs-actions.pod:5504 ../fish/guestfish-actions.pod:3653
14916 msgid ""
14917 "This is a test probe into the guestfs daemon running inside the qemu "
14918 "subprocess.  Calling this function checks that the daemon responds to the "
14919 "ping message, without affecting the daemon or attached block device(s) in "
14920 "any other way."
14921 msgstr ""
14922
14923 #. type: =head2
14924 #: ../src/guestfs-actions.pod:5513
14925 msgid "guestfs_pread"
14926 msgstr ""
14927
14928 #. type: verbatim
14929 #: ../src/guestfs-actions.pod:5515
14930 #, no-wrap
14931 msgid ""
14932 " char *\n"
14933 " guestfs_pread (guestfs_h *g,\n"
14934 "                const char *path,\n"
14935 "                int count,\n"
14936 "                int64_t offset,\n"
14937 "                size_t *size_r);\n"
14938 "\n"
14939 msgstr ""
14940
14941 #. type: textblock
14942 #: ../src/guestfs-actions.pod:5522 ../fish/guestfish-actions.pod:3662
14943 msgid ""
14944 "This command lets you read part of a file.  It reads C<count> bytes of the "
14945 "file, starting at C<offset>, from file C<path>."
14946 msgstr ""
14947
14948 #. type: textblock
14949 #: ../src/guestfs-actions.pod:5525 ../src/guestfs-actions.pod:5551 ../fish/guestfish-actions.pod:3665 ../fish/guestfish-actions.pod:3680
14950 msgid ""
14951 "This may read fewer bytes than requested.  For further details see the "
14952 "L<pread(2)> system call."
14953 msgstr ""
14954
14955 #. type: textblock
14956 #: ../src/guestfs-actions.pod:5528
14957 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14958 msgstr ""
14959
14960 #. type: =head2
14961 #: ../src/guestfs-actions.pod:5539
14962 msgid "guestfs_pread_device"
14963 msgstr ""
14964
14965 #. type: verbatim
14966 #: ../src/guestfs-actions.pod:5541
14967 #, no-wrap
14968 msgid ""
14969 " char *\n"
14970 " guestfs_pread_device (guestfs_h *g,\n"
14971 "                       const char *device,\n"
14972 "                       int count,\n"
14973 "                       int64_t offset,\n"
14974 "                       size_t *size_r);\n"
14975 "\n"
14976 msgstr ""
14977
14978 #. type: textblock
14979 #: ../src/guestfs-actions.pod:5548 ../fish/guestfish-actions.pod:3677
14980 msgid ""
14981 "This command lets you read part of a file.  It reads C<count> bytes of "
14982 "C<device>, starting at C<offset>."
14983 msgstr ""
14984
14985 #. type: textblock
14986 #: ../src/guestfs-actions.pod:5554
14987 msgid "See also C<guestfs_pread>."
14988 msgstr ""
14989
14990 #. type: textblock
14991 #: ../src/guestfs-actions.pod:5563
14992 msgid "(Added in 1.5.21)"
14993 msgstr ""
14994
14995 #. type: =head2
14996 #: ../src/guestfs-actions.pod:5565
14997 msgid "guestfs_pvcreate"
14998 msgstr ""
14999
15000 #. type: verbatim
15001 #: ../src/guestfs-actions.pod:5567
15002 #, no-wrap
15003 msgid ""
15004 " int\n"
15005 " guestfs_pvcreate (guestfs_h *g,\n"
15006 "                   const char *device);\n"
15007 "\n"
15008 msgstr ""
15009
15010 #. type: textblock
15011 #: ../src/guestfs-actions.pod:5571 ../fish/guestfish-actions.pod:3692
15012 msgid ""
15013 "This creates an LVM physical volume on the named C<device>, where C<device> "
15014 "should usually be a partition name such as C</dev/sda1>."
15015 msgstr ""
15016
15017 #. type: =head2
15018 #: ../src/guestfs-actions.pod:5579
15019 msgid "guestfs_pvremove"
15020 msgstr ""
15021
15022 #. type: verbatim
15023 #: ../src/guestfs-actions.pod:5581
15024 #, no-wrap
15025 msgid ""
15026 " int\n"
15027 " guestfs_pvremove (guestfs_h *g,\n"
15028 "                   const char *device);\n"
15029 "\n"
15030 msgstr ""
15031
15032 #. type: textblock
15033 #: ../src/guestfs-actions.pod:5585 ../fish/guestfish-actions.pod:3700
15034 msgid ""
15035 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15036 "it."
15037 msgstr ""
15038
15039 #. type: textblock
15040 #: ../src/guestfs-actions.pod:5588 ../fish/guestfish-actions.pod:3703
15041 msgid ""
15042 "The implementation uses the C<pvremove> command which refuses to wipe "
15043 "physical volumes that contain any volume groups, so you have to remove those "
15044 "first."
15045 msgstr ""
15046
15047 #. type: =head2
15048 #: ../src/guestfs-actions.pod:5596
15049 msgid "guestfs_pvresize"
15050 msgstr ""
15051
15052 #. type: verbatim
15053 #: ../src/guestfs-actions.pod:5598
15054 #, no-wrap
15055 msgid ""
15056 " int\n"
15057 " guestfs_pvresize (guestfs_h *g,\n"
15058 "                   const char *device);\n"
15059 "\n"
15060 msgstr ""
15061
15062 #. type: textblock
15063 #: ../src/guestfs-actions.pod:5602 ../fish/guestfish-actions.pod:3711
15064 msgid ""
15065 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15066 "the new size of the underlying device."
15067 msgstr ""
15068
15069 #. type: =head2
15070 #: ../src/guestfs-actions.pod:5609
15071 msgid "guestfs_pvresize_size"
15072 msgstr ""
15073
15074 #. type: verbatim
15075 #: ../src/guestfs-actions.pod:5611
15076 #, no-wrap
15077 msgid ""
15078 " int\n"
15079 " guestfs_pvresize_size (guestfs_h *g,\n"
15080 "                        const char *device,\n"
15081 "                        int64_t size);\n"
15082 "\n"
15083 msgstr ""
15084
15085 #. type: textblock
15086 #: ../src/guestfs-actions.pod:5616
15087 msgid ""
15088 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15089 "specify the new size (in bytes) explicitly."
15090 msgstr ""
15091
15092 #. type: =head2
15093 #: ../src/guestfs-actions.pod:5623
15094 msgid "guestfs_pvs"
15095 msgstr ""
15096
15097 #. type: verbatim
15098 #: ../src/guestfs-actions.pod:5625
15099 #, no-wrap
15100 msgid ""
15101 " char **\n"
15102 " guestfs_pvs (guestfs_h *g);\n"
15103 "\n"
15104 msgstr ""
15105
15106 #. type: textblock
15107 #: ../src/guestfs-actions.pod:5628 ../fish/guestfish-actions.pod:3725
15108 msgid ""
15109 "List all the physical volumes detected.  This is the equivalent of the "
15110 "L<pvs(8)> command."
15111 msgstr ""
15112
15113 #. type: textblock
15114 #: ../src/guestfs-actions.pod:5631 ../fish/guestfish-actions.pod:3728
15115 msgid ""
15116 "This returns a list of just the device names that contain PVs "
15117 "(eg. C</dev/sda2>)."
15118 msgstr ""
15119
15120 #. type: textblock
15121 #: ../src/guestfs-actions.pod:5634
15122 msgid "See also C<guestfs_pvs_full>."
15123 msgstr ""
15124
15125 #. type: =head2
15126 #: ../src/guestfs-actions.pod:5642
15127 msgid "guestfs_pvs_full"
15128 msgstr ""
15129
15130 #. type: verbatim
15131 #: ../src/guestfs-actions.pod:5644
15132 #, no-wrap
15133 msgid ""
15134 " struct guestfs_lvm_pv_list *\n"
15135 " guestfs_pvs_full (guestfs_h *g);\n"
15136 "\n"
15137 msgstr ""
15138
15139 #. type: textblock
15140 #: ../src/guestfs-actions.pod:5647 ../fish/guestfish-actions.pod:3737
15141 msgid ""
15142 "List all the physical volumes detected.  This is the equivalent of the "
15143 "L<pvs(8)> command.  The \"full\" version includes all fields."
15144 msgstr ""
15145
15146 #. type: textblock
15147 #: ../src/guestfs-actions.pod:5650
15148 msgid ""
15149 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15150 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
15151 "use>."
15152 msgstr ""
15153
15154 #. type: =head2
15155 #: ../src/guestfs-actions.pod:5656
15156 msgid "guestfs_pvuuid"
15157 msgstr ""
15158
15159 #. type: verbatim
15160 #: ../src/guestfs-actions.pod:5658
15161 #, no-wrap
15162 msgid ""
15163 " char *\n"
15164 " guestfs_pvuuid (guestfs_h *g,\n"
15165 "                 const char *device);\n"
15166 "\n"
15167 msgstr ""
15168
15169 #. type: textblock
15170 #: ../src/guestfs-actions.pod:5662 ../fish/guestfish-actions.pod:3744
15171 msgid "This command returns the UUID of the LVM PV C<device>."
15172 msgstr ""
15173
15174 #. type: =head2
15175 #: ../src/guestfs-actions.pod:5669
15176 msgid "guestfs_pwrite"
15177 msgstr ""
15178
15179 #. type: verbatim
15180 #: ../src/guestfs-actions.pod:5671
15181 #, no-wrap
15182 msgid ""
15183 " int\n"
15184 " guestfs_pwrite (guestfs_h *g,\n"
15185 "                 const char *path,\n"
15186 "                 const char *content,\n"
15187 "                 size_t content_size,\n"
15188 "                 int64_t offset);\n"
15189 "\n"
15190 msgstr ""
15191
15192 #. type: textblock
15193 #: ../src/guestfs-actions.pod:5678 ../fish/guestfish-actions.pod:3750
15194 msgid ""
15195 "This command writes to part of a file.  It writes the data buffer C<content> "
15196 "to the file C<path> starting at offset C<offset>."
15197 msgstr ""
15198
15199 #. type: textblock
15200 #: ../src/guestfs-actions.pod:5681 ../fish/guestfish-actions.pod:3753
15201 msgid ""
15202 "This command implements the L<pwrite(2)> system call, and like that system "
15203 "call it may not write the full data requested.  The return value is the "
15204 "number of bytes that were actually written to the file.  This could even be "
15205 "0, although short writes are unlikely for regular files in ordinary "
15206 "circumstances."
15207 msgstr ""
15208
15209 #. type: textblock
15210 #: ../src/guestfs-actions.pod:5687
15211 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15212 msgstr ""
15213
15214 #. type: =head2
15215 #: ../src/guestfs-actions.pod:5696
15216 msgid "guestfs_pwrite_device"
15217 msgstr ""
15218
15219 #. type: verbatim
15220 #: ../src/guestfs-actions.pod:5698
15221 #, no-wrap
15222 msgid ""
15223 " int\n"
15224 " guestfs_pwrite_device (guestfs_h *g,\n"
15225 "                        const char *device,\n"
15226 "                        const char *content,\n"
15227 "                        size_t content_size,\n"
15228 "                        int64_t offset);\n"
15229 "\n"
15230 msgstr ""
15231
15232 #. type: textblock
15233 #: ../src/guestfs-actions.pod:5705 ../fish/guestfish-actions.pod:3768
15234 msgid ""
15235 "This command writes to part of a device.  It writes the data buffer "
15236 "C<content> to C<device> starting at offset C<offset>."
15237 msgstr ""
15238
15239 #. type: textblock
15240 #: ../src/guestfs-actions.pod:5708 ../fish/guestfish-actions.pod:3771
15241 msgid ""
15242 "This command implements the L<pwrite(2)> system call, and like that system "
15243 "call it may not write the full data requested (although short writes to disk "
15244 "devices and partitions are probably impossible with standard Linux kernels)."
15245 msgstr ""
15246
15247 #. type: textblock
15248 #: ../src/guestfs-actions.pod:5713
15249 msgid "See also C<guestfs_pwrite>."
15250 msgstr ""
15251
15252 #. type: textblock
15253 #: ../src/guestfs-actions.pod:5720
15254 msgid "(Added in 1.5.20)"
15255 msgstr ""
15256
15257 #. type: =head2
15258 #: ../src/guestfs-actions.pod:5722
15259 msgid "guestfs_read_file"
15260 msgstr ""
15261
15262 #. type: verbatim
15263 #: ../src/guestfs-actions.pod:5724
15264 #, no-wrap
15265 msgid ""
15266 " char *\n"
15267 " guestfs_read_file (guestfs_h *g,\n"
15268 "                    const char *path,\n"
15269 "                    size_t *size_r);\n"
15270 "\n"
15271 msgstr ""
15272
15273 #. type: textblock
15274 #: ../src/guestfs-actions.pod:5729 ../fish/guestfish-actions.pod:3785
15275 msgid "This calls returns the contents of the file C<path> as a buffer."
15276 msgstr ""
15277
15278 #. type: textblock
15279 #: ../src/guestfs-actions.pod:5732
15280 msgid ""
15281 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15282 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15283 "function is limited in the total size of file that can be handled."
15284 msgstr ""
15285
15286 #. type: textblock
15287 #: ../src/guestfs-actions.pod:5744
15288 msgid "(Added in 1.0.63)"
15289 msgstr ""
15290
15291 #. type: =head2
15292 #: ../src/guestfs-actions.pod:5746
15293 msgid "guestfs_read_lines"
15294 msgstr ""
15295
15296 #. type: verbatim
15297 #: ../src/guestfs-actions.pod:5748
15298 #, no-wrap
15299 msgid ""
15300 " char **\n"
15301 " guestfs_read_lines (guestfs_h *g,\n"
15302 "                     const char *path);\n"
15303 "\n"
15304 msgstr ""
15305
15306 #. type: textblock
15307 #: ../src/guestfs-actions.pod:5754 ../fish/guestfish-actions.pod:3802
15308 msgid ""
15309 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15310 "C<CRLF> character sequences are I<not> returned."
15311 msgstr ""
15312
15313 #. type: textblock
15314 #: ../src/guestfs-actions.pod:5757
15315 msgid ""
15316 "Note that this function cannot correctly handle binary files (specifically, "
15317 "files containing C<\\0> character which is treated as end of line).  For "
15318 "those you need to use the C<guestfs_read_file> function which has a more "
15319 "complex interface."
15320 msgstr ""
15321
15322 #. type: =head2
15323 #: ../src/guestfs-actions.pod:5768
15324 msgid "guestfs_readdir"
15325 msgstr ""
15326
15327 #. type: verbatim
15328 #: ../src/guestfs-actions.pod:5770
15329 #, no-wrap
15330 msgid ""
15331 " struct guestfs_dirent_list *\n"
15332 " guestfs_readdir (guestfs_h *g,\n"
15333 "                  const char *dir);\n"
15334 "\n"
15335 msgstr ""
15336
15337 #. type: textblock
15338 #: ../src/guestfs-actions.pod:5774 ../fish/guestfish-actions.pod:3814
15339 msgid "This returns the list of directory entries in directory C<dir>."
15340 msgstr ""
15341
15342 #. type: textblock
15343 #: ../src/guestfs-actions.pod:5776 ../fish/guestfish-actions.pod:3816
15344 msgid ""
15345 "All entries in the directory are returned, including C<.> and C<..>.  The "
15346 "entries are I<not> sorted, but returned in the same order as the underlying "
15347 "filesystem."
15348 msgstr ""
15349
15350 #. type: textblock
15351 #: ../src/guestfs-actions.pod:5780 ../fish/guestfish-actions.pod:3820
15352 msgid ""
15353 "Also this call returns basic file type information about each file.  The "
15354 "C<ftyp> field will contain one of the following characters:"
15355 msgstr ""
15356
15357 #. type: =item
15358 #: ../src/guestfs-actions.pod:5785 ../fish/guestfish-actions.pod:3825
15359 msgid "'b'"
15360 msgstr ""
15361
15362 #. type: textblock
15363 #: ../src/guestfs-actions.pod:5787 ../fish/guestfish-actions.pod:3827
15364 msgid "Block special"
15365 msgstr ""
15366
15367 #. type: =item
15368 #: ../src/guestfs-actions.pod:5789 ../fish/guestfish-actions.pod:3829
15369 msgid "'c'"
15370 msgstr ""
15371
15372 #. type: textblock
15373 #: ../src/guestfs-actions.pod:5791 ../fish/guestfish-actions.pod:3831
15374 msgid "Char special"
15375 msgstr ""
15376
15377 #. type: =item
15378 #: ../src/guestfs-actions.pod:5793 ../fish/guestfish-actions.pod:3833
15379 msgid "'d'"
15380 msgstr ""
15381
15382 #. type: textblock
15383 #: ../src/guestfs-actions.pod:5795 ../fish/guestfish-actions.pod:3835
15384 msgid "Directory"
15385 msgstr ""
15386
15387 #. type: =item
15388 #: ../src/guestfs-actions.pod:5797 ../fish/guestfish-actions.pod:3837
15389 msgid "'f'"
15390 msgstr ""
15391
15392 #. type: textblock
15393 #: ../src/guestfs-actions.pod:5799 ../fish/guestfish-actions.pod:3839
15394 msgid "FIFO (named pipe)"
15395 msgstr ""
15396
15397 #. type: =item
15398 #: ../src/guestfs-actions.pod:5801 ../fish/guestfish-actions.pod:3841
15399 msgid "'l'"
15400 msgstr ""
15401
15402 #. type: textblock
15403 #: ../src/guestfs-actions.pod:5803 ../fish/guestfish-actions.pod:3843
15404 msgid "Symbolic link"
15405 msgstr ""
15406
15407 #. type: =item
15408 #: ../src/guestfs-actions.pod:5805 ../fish/guestfish-actions.pod:3845
15409 msgid "'r'"
15410 msgstr ""
15411
15412 #. type: textblock
15413 #: ../src/guestfs-actions.pod:5807 ../fish/guestfish-actions.pod:3847
15414 msgid "Regular file"
15415 msgstr ""
15416
15417 #. type: =item
15418 #: ../src/guestfs-actions.pod:5809 ../fish/guestfish-actions.pod:3849
15419 msgid "'s'"
15420 msgstr ""
15421
15422 #. type: textblock
15423 #: ../src/guestfs-actions.pod:5811 ../fish/guestfish-actions.pod:3851
15424 msgid "Socket"
15425 msgstr ""
15426
15427 #. type: =item
15428 #: ../src/guestfs-actions.pod:5813 ../fish/guestfish-actions.pod:3853
15429 msgid "'u'"
15430 msgstr ""
15431
15432 #. type: textblock
15433 #: ../src/guestfs-actions.pod:5815 ../fish/guestfish-actions.pod:3855
15434 msgid "Unknown file type"
15435 msgstr ""
15436
15437 #. type: =item
15438 #: ../src/guestfs-actions.pod:5817 ../fish/guestfish-actions.pod:3857
15439 msgid "'?'"
15440 msgstr ""
15441
15442 #. type: textblock
15443 #: ../src/guestfs-actions.pod:5819 ../fish/guestfish-actions.pod:3859
15444 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15445 msgstr ""
15446
15447 #. type: textblock
15448 #: ../src/guestfs-actions.pod:5824
15449 msgid ""
15450 "This function is primarily intended for use by programs.  To get a simple "
15451 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15452 "consumption, use C<guestfs_ll>."
15453 msgstr ""
15454
15455 #. type: textblock
15456 #: ../src/guestfs-actions.pod:5828
15457 msgid ""
15458 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15459 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
15460 "use>."
15461 msgstr ""
15462
15463 #. type: =head2
15464 #: ../src/guestfs-actions.pod:5834
15465 msgid "guestfs_readlink"
15466 msgstr ""
15467
15468 #. type: verbatim
15469 #: ../src/guestfs-actions.pod:5836
15470 #, no-wrap
15471 msgid ""
15472 " char *\n"
15473 " guestfs_readlink (guestfs_h *g,\n"
15474 "                   const char *path);\n"
15475 "\n"
15476 msgstr ""
15477
15478 #. type: textblock
15479 #: ../src/guestfs-actions.pod:5840 ../fish/guestfish-actions.pod:3872
15480 msgid "This command reads the target of a symbolic link."
15481 msgstr ""
15482
15483 #. type: =head2
15484 #: ../src/guestfs-actions.pod:5847
15485 msgid "guestfs_readlinklist"
15486 msgstr ""
15487
15488 #. type: verbatim
15489 #: ../src/guestfs-actions.pod:5849
15490 #, no-wrap
15491 msgid ""
15492 " char **\n"
15493 " guestfs_readlinklist (guestfs_h *g,\n"
15494 "                       const char *path,\n"
15495 "                       char *const *names);\n"
15496 "\n"
15497 msgstr ""
15498
15499 #. type: textblock
15500 #: ../src/guestfs-actions.pod:5854 ../fish/guestfish-actions.pod:3878
15501 msgid ""
15502 "This call allows you to do a C<readlink> operation on multiple files, where "
15503 "all files are in the directory C<path>.  C<names> is the list of files from "
15504 "this directory."
15505 msgstr ""
15506
15507 #. type: textblock
15508 #: ../src/guestfs-actions.pod:5858 ../fish/guestfish-actions.pod:3882
15509 msgid ""
15510 "On return you get a list of strings, with a one-to-one correspondence to the "
15511 "C<names> list.  Each string is the value of the symbolic link."
15512 msgstr ""
15513
15514 #. type: textblock
15515 #: ../src/guestfs-actions.pod:5862 ../fish/guestfish-actions.pod:3886
15516 msgid ""
15517 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15518 "result string is the empty string C<\"\">.  However the whole operation is "
15519 "completed even if there were C<readlink(2)> errors, and so you can call this "
15520 "function with names where you don't know if they are symbolic links already "
15521 "(albeit slightly less efficient)."
15522 msgstr ""
15523
15524 #. type: textblock
15525 #: ../src/guestfs-actions.pod:5869 ../fish/guestfish-actions.pod:3893
15526 msgid ""
15527 "This call is intended for programs that want to efficiently list a directory "
15528 "contents without making many round-trips.  Very long directory listings "
15529 "might cause the protocol message size to be exceeded, causing this call to "
15530 "fail.  The caller must split up such requests into smaller groups of names."
15531 msgstr ""
15532
15533 #. type: =head2
15534 #: ../src/guestfs-actions.pod:5882
15535 msgid "guestfs_realpath"
15536 msgstr ""
15537
15538 #. type: verbatim
15539 #: ../src/guestfs-actions.pod:5884
15540 #, no-wrap
15541 msgid ""
15542 " char *\n"
15543 " guestfs_realpath (guestfs_h *g,\n"
15544 "                   const char *path);\n"
15545 "\n"
15546 msgstr ""
15547
15548 #. type: textblock
15549 #: ../src/guestfs-actions.pod:5888 ../fish/guestfish-actions.pod:3904
15550 msgid ""
15551 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15552 "has no C<.>, C<..> or symbolic link path elements."
15553 msgstr ""
15554
15555 #. type: =head2
15556 #: ../src/guestfs-actions.pod:5896
15557 msgid "guestfs_removexattr"
15558 msgstr ""
15559
15560 #. type: verbatim
15561 #: ../src/guestfs-actions.pod:5898
15562 #, no-wrap
15563 msgid ""
15564 " int\n"
15565 " guestfs_removexattr (guestfs_h *g,\n"
15566 "                      const char *xattr,\n"
15567 "                      const char *path);\n"
15568 "\n"
15569 msgstr ""
15570
15571 #. type: textblock
15572 #: ../src/guestfs-actions.pod:5903 ../fish/guestfish-actions.pod:3911
15573 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
15574 msgstr ""
15575
15576 #. type: textblock
15577 #: ../src/guestfs-actions.pod:5906
15578 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15579 msgstr ""
15580
15581 #. type: =head2
15582 #: ../src/guestfs-actions.pod:5912
15583 msgid "guestfs_resize2fs"
15584 msgstr ""
15585
15586 #. type: verbatim
15587 #: ../src/guestfs-actions.pod:5914
15588 #, no-wrap
15589 msgid ""
15590 " int\n"
15591 " guestfs_resize2fs (guestfs_h *g,\n"
15592 "                    const char *device);\n"
15593 "\n"
15594 msgstr ""
15595
15596 #. type: textblock
15597 #: ../src/guestfs-actions.pod:5918 ../fish/guestfish-actions.pod:3920
15598 msgid ""
15599 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15600 "underlying device."
15601 msgstr ""
15602
15603 #. type: textblock
15604 #: ../src/guestfs-actions.pod:5921
15605 msgid ""
15606 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15607 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15608 "sometimes gives an error about this and sometimes not.  In any case, it is "
15609 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15610 msgstr ""
15611
15612 #. type: =head2
15613 #: ../src/guestfs-actions.pod:5931
15614 msgid "guestfs_resize2fs_M"
15615 msgstr ""
15616
15617 #. type: verbatim
15618 #: ../src/guestfs-actions.pod:5933
15619 #, no-wrap
15620 msgid ""
15621 " int\n"
15622 " guestfs_resize2fs_M (guestfs_h *g,\n"
15623 "                      const char *device);\n"
15624 "\n"
15625 msgstr ""
15626
15627 #. type: textblock
15628 #: ../src/guestfs-actions.pod:5937
15629 msgid ""
15630 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15631 "resized to its minimum size.  This works like the I<-M> option to the "
15632 "C<resize2fs> command."
15633 msgstr ""
15634
15635 #. type: textblock
15636 #: ../src/guestfs-actions.pod:5941
15637 msgid ""
15638 "To get the resulting size of the filesystem you should call "
15639 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15640 "These two numbers, multiplied together, give the resulting size of the "
15641 "minimal filesystem in bytes."
15642 msgstr ""
15643
15644 #. type: =head2
15645 #: ../src/guestfs-actions.pod:5950
15646 msgid "guestfs_resize2fs_size"
15647 msgstr ""
15648
15649 #. type: verbatim
15650 #: ../src/guestfs-actions.pod:5952
15651 #, no-wrap
15652 msgid ""
15653 " int\n"
15654 " guestfs_resize2fs_size (guestfs_h *g,\n"
15655 "                         const char *device,\n"
15656 "                         int64_t size);\n"
15657 "\n"
15658 msgstr ""
15659
15660 #. type: textblock
15661 #: ../src/guestfs-actions.pod:5957
15662 msgid ""
15663 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15664 "to specify the new size (in bytes) explicitly."
15665 msgstr ""
15666
15667 #. type: =head2
15668 #: ../src/guestfs-actions.pod:5964
15669 msgid "guestfs_rm"
15670 msgstr ""
15671
15672 #. type: verbatim
15673 #: ../src/guestfs-actions.pod:5966
15674 #, no-wrap
15675 msgid ""
15676 " int\n"
15677 " guestfs_rm (guestfs_h *g,\n"
15678 "             const char *path);\n"
15679 "\n"
15680 msgstr ""
15681
15682 #. type: textblock
15683 #: ../src/guestfs-actions.pod:5970 ../fish/guestfish-actions.pod:3953
15684 msgid "Remove the single file C<path>."
15685 msgstr ""
15686
15687 #. type: =head2
15688 #: ../src/guestfs-actions.pod:5976
15689 msgid "guestfs_rm_rf"
15690 msgstr ""
15691
15692 #. type: verbatim
15693 #: ../src/guestfs-actions.pod:5978
15694 #, no-wrap
15695 msgid ""
15696 " int\n"
15697 " guestfs_rm_rf (guestfs_h *g,\n"
15698 "                const char *path);\n"
15699 "\n"
15700 msgstr ""
15701
15702 #. type: textblock
15703 #: ../src/guestfs-actions.pod:5982 ../fish/guestfish-actions.pod:3959
15704 msgid ""
15705 "Remove the file or directory C<path>, recursively removing the contents if "
15706 "its a directory.  This is like the C<rm -rf> shell command."
15707 msgstr ""
15708
15709 #. type: =head2
15710 #: ../src/guestfs-actions.pod:5990
15711 msgid "guestfs_rmdir"
15712 msgstr ""
15713
15714 #. type: verbatim
15715 #: ../src/guestfs-actions.pod:5992
15716 #, no-wrap
15717 msgid ""
15718 " int\n"
15719 " guestfs_rmdir (guestfs_h *g,\n"
15720 "                const char *path);\n"
15721 "\n"
15722 msgstr ""
15723
15724 #. type: textblock
15725 #: ../src/guestfs-actions.pod:5996 ../fish/guestfish-actions.pod:3967
15726 msgid "Remove the single directory C<path>."
15727 msgstr ""
15728
15729 #. type: =head2
15730 #: ../src/guestfs-actions.pod:6002
15731 msgid "guestfs_rmmountpoint"
15732 msgstr ""
15733
15734 #. type: verbatim
15735 #: ../src/guestfs-actions.pod:6004
15736 #, no-wrap
15737 msgid ""
15738 " int\n"
15739 " guestfs_rmmountpoint (guestfs_h *g,\n"
15740 "                       const char *exemptpath);\n"
15741 "\n"
15742 msgstr ""
15743
15744 #. type: textblock
15745 #: ../src/guestfs-actions.pod:6008
15746 msgid ""
15747 "This calls removes a mountpoint that was previously created with "
15748 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15749 msgstr ""
15750
15751 #. type: =head2
15752 #: ../src/guestfs-actions.pod:6016
15753 msgid "guestfs_scrub_device"
15754 msgstr ""
15755
15756 #. type: verbatim
15757 #: ../src/guestfs-actions.pod:6018
15758 #, no-wrap
15759 msgid ""
15760 " int\n"
15761 " guestfs_scrub_device (guestfs_h *g,\n"
15762 "                       const char *device);\n"
15763 "\n"
15764 msgstr ""
15765
15766 #. type: textblock
15767 #: ../src/guestfs-actions.pod:6022 ../fish/guestfish-actions.pod:3981
15768 msgid ""
15769 "This command writes patterns over C<device> to make data retrieval more "
15770 "difficult."
15771 msgstr ""
15772
15773 #. type: textblock
15774 #: ../src/guestfs-actions.pod:6025 ../src/guestfs-actions.pod:6046 ../src/guestfs-actions.pod:6065 ../fish/guestfish-actions.pod:3984 ../fish/guestfish-actions.pod:3999 ../fish/guestfish-actions.pod:4012
15775 msgid ""
15776 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15777 "more details."
15778 msgstr ""
15779
15780 #. type: textblock
15781 #: ../src/guestfs-actions.pod:6033 ../src/guestfs-actions.pod:6051 ../src/guestfs-actions.pod:6070
15782 msgid "(Added in 1.0.52)"
15783 msgstr ""
15784
15785 #. type: =head2
15786 #: ../src/guestfs-actions.pod:6035
15787 msgid "guestfs_scrub_file"
15788 msgstr ""
15789
15790 #. type: verbatim
15791 #: ../src/guestfs-actions.pod:6037
15792 #, no-wrap
15793 msgid ""
15794 " int\n"
15795 " guestfs_scrub_file (guestfs_h *g,\n"
15796 "                     const char *file);\n"
15797 "\n"
15798 msgstr ""
15799
15800 #. type: textblock
15801 #: ../src/guestfs-actions.pod:6041 ../fish/guestfish-actions.pod:3994
15802 msgid ""
15803 "This command writes patterns over a file to make data retrieval more "
15804 "difficult."
15805 msgstr ""
15806
15807 #. type: textblock
15808 #: ../src/guestfs-actions.pod:6044 ../fish/guestfish-actions.pod:3997
15809 msgid "The file is I<removed> after scrubbing."
15810 msgstr ""
15811
15812 #. type: =head2
15813 #: ../src/guestfs-actions.pod:6053
15814 msgid "guestfs_scrub_freespace"
15815 msgstr ""
15816
15817 #. type: verbatim
15818 #: ../src/guestfs-actions.pod:6055
15819 #, no-wrap
15820 msgid ""
15821 " int\n"
15822 " guestfs_scrub_freespace (guestfs_h *g,\n"
15823 "                          const char *dir);\n"
15824 "\n"
15825 msgstr ""
15826
15827 #. type: textblock
15828 #: ../src/guestfs-actions.pod:6059
15829 msgid ""
15830 "This command creates the directory C<dir> and then fills it with files until "
15831 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15832 "and deletes them.  The intention is to scrub any free space on the partition "
15833 "containing C<dir>."
15834 msgstr ""
15835
15836 #. type: =head2
15837 #: ../src/guestfs-actions.pod:6072
15838 msgid "guestfs_set_append"
15839 msgstr ""
15840
15841 #. type: verbatim
15842 #: ../src/guestfs-actions.pod:6074
15843 #, no-wrap
15844 msgid ""
15845 " int\n"
15846 " guestfs_set_append (guestfs_h *g,\n"
15847 "                     const char *append);\n"
15848 "\n"
15849 msgstr ""
15850
15851 #. type: textblock
15852 #: ../src/guestfs-actions.pod:6078 ../fish/guestfish-actions.pod:4021
15853 msgid ""
15854 "This function is used to add additional options to the guest kernel command "
15855 "line."
15856 msgstr ""
15857
15858 #. type: textblock
15859 #: ../src/guestfs-actions.pod:6081 ../fish/guestfish-actions.pod:4024
15860 msgid ""
15861 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15862 "environment variable."
15863 msgstr ""
15864
15865 #. type: textblock
15866 #: ../src/guestfs-actions.pod:6084 ../fish/guestfish-actions.pod:4027
15867 msgid ""
15868 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15869 "(libguestfs always adds a few of its own)."
15870 msgstr ""
15871
15872 #. type: =head2
15873 #: ../src/guestfs-actions.pod:6091
15874 msgid "guestfs_set_attach_method"
15875 msgstr ""
15876
15877 #. type: verbatim
15878 #: ../src/guestfs-actions.pod:6093
15879 #, no-wrap
15880 msgid ""
15881 " int\n"
15882 " guestfs_set_attach_method (guestfs_h *g,\n"
15883 "                            const char *attachmethod);\n"
15884 "\n"
15885 msgstr ""
15886
15887 #. type: textblock
15888 #: ../src/guestfs-actions.pod:6097 ../fish/guestfish-actions.pod:4036
15889 msgid ""
15890 "Set the method that libguestfs uses to connect to the back end guestfsd "
15891 "daemon.  Possible methods are:"
15892 msgstr ""
15893
15894 #. type: textblock
15895 #: ../src/guestfs-actions.pod:6104 ../fish/guestfish-actions.pod:4043
15896 msgid ""
15897 "Launch an appliance and connect to it.  This is the ordinary method and the "
15898 "default."
15899 msgstr ""
15900
15901 #. type: =item
15902 #: ../src/guestfs-actions.pod:6107 ../fish/guestfish-actions.pod:4046
15903 msgid "C<unix:I<path>>"
15904 msgstr ""
15905
15906 #. type: textblock
15907 #: ../src/guestfs-actions.pod:6109 ../fish/guestfish-actions.pod:4048
15908 msgid "Connect to the Unix domain socket I<path>."
15909 msgstr ""
15910
15911 #. type: textblock
15912 #: ../src/guestfs-actions.pod:6111 ../fish/guestfish-actions.pod:4050
15913 msgid ""
15914 "This method lets you connect to an existing daemon or (using virtio-serial) "
15915 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15916 "RUNNING DAEMONS>."
15917 msgstr ""
15918
15919 #. type: =head2
15920 #: ../src/guestfs-actions.pod:6121
15921 msgid "guestfs_set_autosync"
15922 msgstr ""
15923
15924 #. type: verbatim
15925 #: ../src/guestfs-actions.pod:6123
15926 #, no-wrap
15927 msgid ""
15928 " int\n"
15929 " guestfs_set_autosync (guestfs_h *g,\n"
15930 "                       int autosync);\n"
15931 "\n"
15932 msgstr ""
15933
15934 #. type: textblock
15935 #: ../src/guestfs-actions.pod:6127 ../fish/guestfish-actions.pod:4062
15936 msgid ""
15937 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15938 "effort attempt to make filesystems consistent and synchronized when the "
15939 "handle is closed (also if the program exits without closing handles)."
15940 msgstr ""
15941
15942 #. type: textblock
15943 #: ../src/guestfs-actions.pod:6132 ../fish/guestfish-actions.pod:4067
15944 msgid ""
15945 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15946 "disabled by default)."
15947 msgstr ""
15948
15949 #. type: =head2
15950 #: ../src/guestfs-actions.pod:6139
15951 msgid "guestfs_set_direct"
15952 msgstr ""
15953
15954 #. type: verbatim
15955 #: ../src/guestfs-actions.pod:6141
15956 #, no-wrap
15957 msgid ""
15958 " int\n"
15959 " guestfs_set_direct (guestfs_h *g,\n"
15960 "                     int direct);\n"
15961 "\n"
15962 msgstr ""
15963
15964 #. type: textblock
15965 #: ../src/guestfs-actions.pod:6145 ../fish/guestfish-actions.pod:4076
15966 msgid ""
15967 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15968 "passed directly through to the appliance once it is launched."
15969 msgstr ""
15970
15971 #. type: textblock
15972 #: ../src/guestfs-actions.pod:6149
15973 msgid ""
15974 "One consequence of this is that log messages aren't caught by the library "
15975 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
15976 "stdout."
15977 msgstr ""
15978
15979 #. type: textblock
15980 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4084
15981 msgid "You probably don't want to use this unless you know what you are doing."
15982 msgstr ""
15983
15984 #. type: textblock
15985 #: ../src/guestfs-actions.pod:6156 ../fish/guestfish-actions.pod:4087
15986 msgid "The default is disabled."
15987 msgstr ""
15988
15989 #. type: =head2
15990 #: ../src/guestfs-actions.pod:6162
15991 msgid "guestfs_set_e2label"
15992 msgstr ""
15993
15994 #. type: verbatim
15995 #: ../src/guestfs-actions.pod:6164
15996 #, no-wrap
15997 msgid ""
15998 " int\n"
15999 " guestfs_set_e2label (guestfs_h *g,\n"
16000 "                      const char *device,\n"
16001 "                      const char *label);\n"
16002 "\n"
16003 msgstr ""
16004
16005 #. type: textblock
16006 #: ../src/guestfs-actions.pod:6169 ../fish/guestfish-actions.pod:4093
16007 msgid ""
16008 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16009 "C<label>.  Filesystem labels are limited to 16 characters."
16010 msgstr ""
16011
16012 #. type: textblock
16013 #: ../src/guestfs-actions.pod:6173
16014 msgid ""
16015 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16016 "the existing label on a filesystem."
16017 msgstr ""
16018
16019 #. type: =head2
16020 #: ../src/guestfs-actions.pod:6180
16021 msgid "guestfs_set_e2uuid"
16022 msgstr ""
16023
16024 #. type: verbatim
16025 #: ../src/guestfs-actions.pod:6182
16026 #, no-wrap
16027 msgid ""
16028 " int\n"
16029 " guestfs_set_e2uuid (guestfs_h *g,\n"
16030 "                     const char *device,\n"
16031 "                     const char *uuid);\n"
16032 "\n"
16033 msgstr ""
16034
16035 #. type: textblock
16036 #: ../src/guestfs-actions.pod:6187 ../fish/guestfish-actions.pod:4104
16037 msgid ""
16038 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16039 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16040 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16041 msgstr ""
16042
16043 #. type: textblock
16044 #: ../src/guestfs-actions.pod:6192
16045 msgid ""
16046 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16047 "the existing UUID of a filesystem."
16048 msgstr ""
16049
16050 #. type: =head2
16051 #: ../src/guestfs-actions.pod:6199
16052 msgid "guestfs_set_memsize"
16053 msgstr ""
16054
16055 #. type: verbatim
16056 #: ../src/guestfs-actions.pod:6201
16057 #, no-wrap
16058 msgid ""
16059 " int\n"
16060 " guestfs_set_memsize (guestfs_h *g,\n"
16061 "                      int memsize);\n"
16062 "\n"
16063 msgstr ""
16064
16065 #. type: textblock
16066 #: ../src/guestfs-actions.pod:6205
16067 msgid ""
16068 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16069 "This only has any effect if called before C<guestfs_launch>."
16070 msgstr ""
16071
16072 #. type: textblock
16073 #: ../src/guestfs-actions.pod:6209 ../fish/guestfish-actions.pod:4122
16074 msgid ""
16075 "You can also change this by setting the environment variable "
16076 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16077 msgstr ""
16078
16079 #. type: =head2
16080 #: ../src/guestfs-actions.pod:6220
16081 msgid "guestfs_set_network"
16082 msgstr ""
16083
16084 #. type: verbatim
16085 #: ../src/guestfs-actions.pod:6222
16086 #, no-wrap
16087 msgid ""
16088 " int\n"
16089 " guestfs_set_network (guestfs_h *g,\n"
16090 "                      int network);\n"
16091 "\n"
16092 msgstr ""
16093
16094 #. type: textblock
16095 #: ../src/guestfs-actions.pod:6226 ../fish/guestfish-actions.pod:4135
16096 msgid ""
16097 "If C<network> is true, then the network is enabled in the libguestfs "
16098 "appliance.  The default is false."
16099 msgstr ""
16100
16101 #. type: textblock
16102 #: ../src/guestfs-actions.pod:6229 ../fish/guestfish-actions.pod:4138
16103 msgid ""
16104 "This affects whether commands are able to access the network (see "
16105 "L<guestfs(3)/RUNNING COMMANDS>)."
16106 msgstr ""
16107
16108 #. type: textblock
16109 #: ../src/guestfs-actions.pod:6232
16110 msgid ""
16111 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16112 "effect."
16113 msgstr ""
16114
16115 #. type: =head2
16116 #: ../src/guestfs-actions.pod:6239
16117 msgid "guestfs_set_path"
16118 msgstr ""
16119
16120 #. type: verbatim
16121 #: ../src/guestfs-actions.pod:6241
16122 #, no-wrap
16123 msgid ""
16124 " int\n"
16125 " guestfs_set_path (guestfs_h *g,\n"
16126 "                   const char *searchpath);\n"
16127 "\n"
16128 msgstr ""
16129
16130 #. type: textblock
16131 #: ../src/guestfs-actions.pod:6245 ../fish/guestfish-actions.pod:4150
16132 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16133 msgstr ""
16134
16135 #. type: textblock
16136 #: ../src/guestfs-actions.pod:6247 ../fish/guestfish-actions.pod:4152
16137 msgid ""
16138 "The default is C<$libdir/guestfs> unless overridden by setting "
16139 "C<LIBGUESTFS_PATH> environment variable."
16140 msgstr ""
16141
16142 #. type: textblock
16143 #: ../src/guestfs-actions.pod:6250 ../fish/guestfish-actions.pod:4155
16144 msgid "Setting C<path> to C<NULL> restores the default path."
16145 msgstr ""
16146
16147 #. type: =head2
16148 #: ../src/guestfs-actions.pod:6256
16149 msgid "guestfs_set_qemu"
16150 msgstr ""
16151
16152 #. type: verbatim
16153 #: ../src/guestfs-actions.pod:6258
16154 #, no-wrap
16155 msgid ""
16156 " int\n"
16157 " guestfs_set_qemu (guestfs_h *g,\n"
16158 "                   const char *qemu);\n"
16159 "\n"
16160 msgstr ""
16161
16162 #. type: textblock
16163 #: ../src/guestfs-actions.pod:6262 ../fish/guestfish-actions.pod:4163
16164 msgid "Set the qemu binary that we will use."
16165 msgstr ""
16166
16167 #. type: textblock
16168 #: ../src/guestfs-actions.pod:6264 ../fish/guestfish-actions.pod:4165
16169 msgid "The default is chosen when the library was compiled by the configure script."
16170 msgstr ""
16171
16172 #. type: textblock
16173 #: ../src/guestfs-actions.pod:6267 ../fish/guestfish-actions.pod:4168
16174 msgid ""
16175 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16176 "variable."
16177 msgstr ""
16178
16179 #. type: textblock
16180 #: ../src/guestfs-actions.pod:6270 ../fish/guestfish-actions.pod:4171
16181 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16182 msgstr ""
16183
16184 #. type: textblock
16185 #: ../src/guestfs-actions.pod:6272 ../fish/guestfish-actions.pod:4173
16186 msgid ""
16187 "Note that you should call this function as early as possible after creating "
16188 "the handle.  This is because some pre-launch operations depend on testing "
16189 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16190 "don't retest features, and so you might see inconsistent results.  Using the "
16191 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16192 "the qemu binary at the same time as the handle is created."
16193 msgstr ""
16194
16195 #. type: =head2
16196 #: ../src/guestfs-actions.pod:6284
16197 msgid "guestfs_set_recovery_proc"
16198 msgstr ""
16199
16200 #. type: verbatim
16201 #: ../src/guestfs-actions.pod:6286
16202 #, no-wrap
16203 msgid ""
16204 " int\n"
16205 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16206 "                            int recoveryproc);\n"
16207 "\n"
16208 msgstr ""
16209
16210 #. type: textblock
16211 #: ../src/guestfs-actions.pod:6290
16212 msgid ""
16213 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16214 "not create a recovery process.  The purpose of the recovery process is to "
16215 "stop runaway qemu processes in the case where the main program aborts "
16216 "abruptly."
16217 msgstr ""
16218
16219 #. type: textblock
16220 #: ../src/guestfs-actions.pod:6295
16221 msgid ""
16222 "This only has any effect if called before C<guestfs_launch>, and the default "
16223 "is true."
16224 msgstr ""
16225
16226 #. type: textblock
16227 #: ../src/guestfs-actions.pod:6298 ../fish/guestfish-actions.pod:4195
16228 msgid ""
16229 "About the only time when you would want to disable this is if the main "
16230 "process will fork itself into the background (\"daemonize\" itself).  In "
16231 "this case the recovery process thinks that the main program has disappeared "
16232 "and so kills qemu, which is not very helpful."
16233 msgstr ""
16234
16235 #. type: =head2
16236 #: ../src/guestfs-actions.pod:6308
16237 msgid "guestfs_set_selinux"
16238 msgstr ""
16239
16240 #. type: verbatim
16241 #: ../src/guestfs-actions.pod:6310
16242 #, no-wrap
16243 msgid ""
16244 " int\n"
16245 " guestfs_set_selinux (guestfs_h *g,\n"
16246 "                      int selinux);\n"
16247 "\n"
16248 msgstr ""
16249
16250 #. type: textblock
16251 #: ../src/guestfs-actions.pod:6314 ../fish/guestfish-actions.pod:4207
16252 msgid ""
16253 "This sets the selinux flag that is passed to the appliance at boot time.  "
16254 "The default is C<selinux=0> (disabled)."
16255 msgstr ""
16256
16257 #. type: textblock
16258 #: ../src/guestfs-actions.pod:6317 ../fish/guestfish-actions.pod:4210
16259 msgid ""
16260 "Note that if SELinux is enabled, it is always in Permissive mode "
16261 "(C<enforcing=0>)."
16262 msgstr ""
16263
16264 #. type: =head2
16265 #: ../src/guestfs-actions.pod:6327
16266 msgid "guestfs_set_trace"
16267 msgstr ""
16268
16269 #. type: verbatim
16270 #: ../src/guestfs-actions.pod:6329
16271 #, no-wrap
16272 msgid ""
16273 " int\n"
16274 " guestfs_set_trace (guestfs_h *g,\n"
16275 "                    int trace);\n"
16276 "\n"
16277 msgstr ""
16278
16279 #. type: textblock
16280 #: ../src/guestfs-actions.pod:6333 ../fish/guestfish-actions.pod:4222
16281 msgid ""
16282 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16283 "return values are traced."
16284 msgstr ""
16285
16286 #. type: textblock
16287 #: ../src/guestfs-actions.pod:6336 ../fish/guestfish-actions.pod:4225
16288 msgid ""
16289 "If you want to trace C API calls into libguestfs (and other libraries) then "
16290 "possibly a better way is to use the external ltrace(1) command."
16291 msgstr ""
16292
16293 #. type: textblock
16294 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4229
16295 msgid ""
16296 "Command traces are disabled unless the environment variable "
16297 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16298 msgstr ""
16299
16300 #. type: textblock
16301 #: ../src/guestfs-actions.pod:6343
16302 msgid ""
16303 "Trace messages are normally sent to C<stderr>, unless you register a "
16304 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16305 msgstr ""
16306
16307 #. type: =head2
16308 #: ../src/guestfs-actions.pod:6351
16309 msgid "guestfs_set_verbose"
16310 msgstr ""
16311
16312 #. type: verbatim
16313 #: ../src/guestfs-actions.pod:6353
16314 #, no-wrap
16315 msgid ""
16316 " int\n"
16317 " guestfs_set_verbose (guestfs_h *g,\n"
16318 "                      int verbose);\n"
16319 "\n"
16320 msgstr ""
16321
16322 #. type: textblock
16323 #: ../src/guestfs-actions.pod:6357 ../fish/guestfish-actions.pod:4242
16324 msgid "If C<verbose> is true, this turns on verbose messages."
16325 msgstr ""
16326
16327 #. type: textblock
16328 #: ../src/guestfs-actions.pod:6359 ../fish/guestfish-actions.pod:4244
16329 msgid ""
16330 "Verbose messages are disabled unless the environment variable "
16331 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16332 msgstr ""
16333
16334 #. type: textblock
16335 #: ../src/guestfs-actions.pod:6362
16336 msgid ""
16337 "Verbose messages are normally sent to C<stderr>, unless you register a "
16338 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16339 msgstr ""
16340
16341 #. type: =head2
16342 #: ../src/guestfs-actions.pod:6370
16343 msgid "guestfs_setcon"
16344 msgstr ""
16345
16346 #. type: verbatim
16347 #: ../src/guestfs-actions.pod:6372
16348 #, no-wrap
16349 msgid ""
16350 " int\n"
16351 " guestfs_setcon (guestfs_h *g,\n"
16352 "                 const char *context);\n"
16353 "\n"
16354 msgstr ""
16355
16356 #. type: textblock
16357 #: ../src/guestfs-actions.pod:6376 ../fish/guestfish-actions.pod:4255
16358 msgid ""
16359 "This sets the SELinux security context of the daemon to the string "
16360 "C<context>."
16361 msgstr ""
16362
16363 #. type: textblock
16364 #: ../src/guestfs-actions.pod:6379 ../fish/guestfish-actions.pod:4258
16365 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16366 msgstr ""
16367
16368 #. type: =head2
16369 #: ../src/guestfs-actions.pod:6385
16370 msgid "guestfs_setxattr"
16371 msgstr ""
16372
16373 #. type: verbatim
16374 #: ../src/guestfs-actions.pod:6387
16375 #, no-wrap
16376 msgid ""
16377 " int\n"
16378 " guestfs_setxattr (guestfs_h *g,\n"
16379 "                   const char *xattr,\n"
16380 "                   const char *val,\n"
16381 "                   int vallen,\n"
16382 "                   const char *path);\n"
16383 "\n"
16384 msgstr ""
16385
16386 #. type: textblock
16387 #: ../src/guestfs-actions.pod:6394 ../fish/guestfish-actions.pod:4264
16388 msgid ""
16389 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16390 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16391 msgstr ""
16392
16393 #. type: textblock
16394 #: ../src/guestfs-actions.pod:6398
16395 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16396 msgstr ""
16397
16398 #. type: =head2
16399 #: ../src/guestfs-actions.pod:6404
16400 msgid "guestfs_sfdisk"
16401 msgstr ""
16402
16403 #. type: verbatim
16404 #: ../src/guestfs-actions.pod:6406
16405 #, no-wrap
16406 msgid ""
16407 " int\n"
16408 " guestfs_sfdisk (guestfs_h *g,\n"
16409 "                 const char *device,\n"
16410 "                 int cyls,\n"
16411 "                 int heads,\n"
16412 "                 int sectors,\n"
16413 "                 char *const *lines);\n"
16414 "\n"
16415 msgstr ""
16416
16417 #. type: textblock
16418 #: ../src/guestfs-actions.pod:6414 ../fish/guestfish-actions.pod:4274
16419 msgid ""
16420 "This is a direct interface to the L<sfdisk(8)> program for creating "
16421 "partitions on block devices."
16422 msgstr ""
16423
16424 #. type: textblock
16425 #: ../src/guestfs-actions.pod:6417 ../fish/guestfish-actions.pod:4277
16426 msgid "C<device> should be a block device, for example C</dev/sda>."
16427 msgstr ""
16428
16429 #. type: textblock
16430 #: ../src/guestfs-actions.pod:6419 ../fish/guestfish-actions.pod:4279
16431 msgid ""
16432 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16433 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
16434 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16435 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16436 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16437 "the kernel) cannot work out the right geometry and you will need to tell it."
16438 msgstr ""
16439
16440 #. type: textblock
16441 #: ../src/guestfs-actions.pod:6427 ../fish/guestfish-actions.pod:4287
16442 msgid ""
16443 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16444 "refer to the L<sfdisk(8)> manpage."
16445 msgstr ""
16446
16447 #. type: textblock
16448 #: ../src/guestfs-actions.pod:6430 ../fish/guestfish-actions.pod:4290
16449 msgid ""
16450 "To create a single partition occupying the whole disk, you would pass "
16451 "C<lines> as a single element list, when the single element being the string "
16452 "C<,> (comma)."
16453 msgstr ""
16454
16455 #. type: textblock
16456 #: ../src/guestfs-actions.pod:6434
16457 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16458 msgstr ""
16459
16460 #. type: textblock
16461 #: ../src/guestfs-actions.pod:6442 ../src/guestfs-actions.pod:6472 ../src/guestfs-actions.pod:6505 ../fish/guestfish-actions.pod:4300 ../fish/guestfish-actions.pod:4323 ../fish/guestfish-actions.pod:4345
16462 msgid "This function is deprecated.  In new code, use the C<part_add> call instead."
16463 msgstr ""
16464
16465 #. type: =head2
16466 #: ../src/guestfs-actions.pod:6451
16467 msgid "guestfs_sfdiskM"
16468 msgstr ""
16469
16470 #. type: verbatim
16471 #: ../src/guestfs-actions.pod:6453
16472 #, no-wrap
16473 msgid ""
16474 " int\n"
16475 " guestfs_sfdiskM (guestfs_h *g,\n"
16476 "                  const char *device,\n"
16477 "                  char *const *lines);\n"
16478 "\n"
16479 msgstr ""
16480
16481 #. type: textblock
16482 #: ../src/guestfs-actions.pod:6458
16483 msgid ""
16484 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16485 "partition sizes are specified in megabytes only (rounded to the nearest "
16486 "cylinder) and you don't need to specify the cyls, heads and sectors "
16487 "parameters which were rarely if ever used anyway."
16488 msgstr ""
16489
16490 #. type: textblock
16491 #: ../src/guestfs-actions.pod:6464
16492 msgid ""
16493 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16494 "C<guestfs_part_disk>"
16495 msgstr ""
16496
16497 #. type: =head2
16498 #: ../src/guestfs-actions.pod:6481
16499 msgid "guestfs_sfdisk_N"
16500 msgstr ""
16501
16502 #. type: verbatim
16503 #: ../src/guestfs-actions.pod:6483
16504 #, no-wrap
16505 msgid ""
16506 " int\n"
16507 " guestfs_sfdisk_N (guestfs_h *g,\n"
16508 "                   const char *device,\n"
16509 "                   int partnum,\n"
16510 "                   int cyls,\n"
16511 "                   int heads,\n"
16512 "                   int sectors,\n"
16513 "                   const char *line);\n"
16514 "\n"
16515 msgstr ""
16516
16517 #. type: textblock
16518 #: ../src/guestfs-actions.pod:6492 ../fish/guestfish-actions.pod:4334
16519 msgid ""
16520 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16521 "(note: C<n> counts from 1)."
16522 msgstr ""
16523
16524 #. type: textblock
16525 #: ../src/guestfs-actions.pod:6495
16526 msgid ""
16527 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16528 "for the cyls/heads/sectors parameters."
16529 msgstr ""
16530
16531 #. type: textblock
16532 #: ../src/guestfs-actions.pod:6498
16533 msgid "See also: C<guestfs_part_add>"
16534 msgstr ""
16535
16536 #. type: =head2
16537 #: ../src/guestfs-actions.pod:6514
16538 msgid "guestfs_sfdisk_disk_geometry"
16539 msgstr ""
16540
16541 #. type: verbatim
16542 #: ../src/guestfs-actions.pod:6516
16543 #, no-wrap
16544 msgid ""
16545 " char *\n"
16546 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16547 "                               const char *device);\n"
16548 "\n"
16549 msgstr ""
16550
16551 #. type: textblock
16552 #: ../src/guestfs-actions.pod:6520
16553 msgid ""
16554 "This displays the disk geometry of C<device> read from the partition table.  "
16555 "Especially in the case where the underlying block device has been resized, "
16556 "this can be different from the kernel's idea of the geometry (see "
16557 "C<guestfs_sfdisk_kernel_geometry>)."
16558 msgstr ""
16559
16560 #. type: textblock
16561 #: ../src/guestfs-actions.pod:6525 ../src/guestfs-actions.pod:6541 ../fish/guestfish-actions.pod:4361 ../fish/guestfish-actions.pod:4370
16562 msgid "The result is in human-readable format, and not designed to be parsed."
16563 msgstr ""
16564
16565 #. type: =head2
16566 #: ../src/guestfs-actions.pod:6533
16567 msgid "guestfs_sfdisk_kernel_geometry"
16568 msgstr ""
16569
16570 #. type: verbatim
16571 #: ../src/guestfs-actions.pod:6535
16572 #, no-wrap
16573 msgid ""
16574 " char *\n"
16575 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16576 "                                 const char *device);\n"
16577 "\n"
16578 msgstr ""
16579
16580 #. type: textblock
16581 #: ../src/guestfs-actions.pod:6539 ../fish/guestfish-actions.pod:4368
16582 msgid "This displays the kernel's idea of the geometry of C<device>."
16583 msgstr ""
16584
16585 #. type: =head2
16586 #: ../src/guestfs-actions.pod:6549
16587 msgid "guestfs_sfdisk_l"
16588 msgstr ""
16589
16590 #. type: verbatim
16591 #: ../src/guestfs-actions.pod:6551
16592 #, no-wrap
16593 msgid ""
16594 " char *\n"
16595 " guestfs_sfdisk_l (guestfs_h *g,\n"
16596 "                   const char *device);\n"
16597 "\n"
16598 msgstr ""
16599
16600 #. type: textblock
16601 #: ../src/guestfs-actions.pod:6555 ../fish/guestfish-actions.pod:4377
16602 msgid ""
16603 "This displays the partition table on C<device>, in the human-readable output "
16604 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16605 msgstr ""
16606
16607 #. type: textblock
16608 #: ../src/guestfs-actions.pod:6559
16609 msgid "See also: C<guestfs_part_list>"
16610 msgstr ""
16611
16612 #. type: textblock
16613 #: ../src/guestfs-actions.pod:6564 ../fish/guestfish-actions.pod:4383
16614 msgid ""
16615 "This function is deprecated.  In new code, use the C<part_list> call "
16616 "instead."
16617 msgstr ""
16618
16619 #. type: =head2
16620 #: ../src/guestfs-actions.pod:6573
16621 msgid "guestfs_sh"
16622 msgstr ""
16623
16624 #. type: verbatim
16625 #: ../src/guestfs-actions.pod:6575
16626 #, no-wrap
16627 msgid ""
16628 " char *\n"
16629 " guestfs_sh (guestfs_h *g,\n"
16630 "             const char *command);\n"
16631 "\n"
16632 msgstr ""
16633
16634 #. type: textblock
16635 #: ../src/guestfs-actions.pod:6579 ../fish/guestfish-actions.pod:4394
16636 msgid ""
16637 "This call runs a command from the guest filesystem via the guest's "
16638 "C</bin/sh>."
16639 msgstr ""
16640
16641 #. type: textblock
16642 #: ../src/guestfs-actions.pod:6582
16643 msgid "This is like C<guestfs_command>, but passes the command to:"
16644 msgstr ""
16645
16646 #. type: verbatim
16647 #: ../src/guestfs-actions.pod:6584 ../fish/guestfish-actions.pod:4399
16648 #, no-wrap
16649 msgid ""
16650 " /bin/sh -c \"command\"\n"
16651 "\n"
16652 msgstr ""
16653
16654 #. type: textblock
16655 #: ../src/guestfs-actions.pod:6586 ../fish/guestfish-actions.pod:4401
16656 msgid ""
16657 "Depending on the guest's shell, this usually results in wildcards being "
16658 "expanded, shell expressions being interpolated and so on."
16659 msgstr ""
16660
16661 #. type: textblock
16662 #: ../src/guestfs-actions.pod:6590
16663 msgid "All the provisos about C<guestfs_command> apply to this call."
16664 msgstr ""
16665
16666 #. type: =head2
16667 #: ../src/guestfs-actions.pod:6597
16668 msgid "guestfs_sh_lines"
16669 msgstr ""
16670
16671 #. type: verbatim
16672 #: ../src/guestfs-actions.pod:6599
16673 #, no-wrap
16674 msgid ""
16675 " char **\n"
16676 " guestfs_sh_lines (guestfs_h *g,\n"
16677 "                   const char *command);\n"
16678 "\n"
16679 msgstr ""
16680
16681 #. type: textblock
16682 #: ../src/guestfs-actions.pod:6603
16683 msgid ""
16684 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16685 "lines."
16686 msgstr ""
16687
16688 #. type: textblock
16689 #: ../src/guestfs-actions.pod:6606
16690 msgid "See also: C<guestfs_command_lines>"
16691 msgstr ""
16692
16693 #. type: =head2
16694 #: ../src/guestfs-actions.pod:6614
16695 msgid "guestfs_sleep"
16696 msgstr ""
16697
16698 #. type: verbatim
16699 #: ../src/guestfs-actions.pod:6616
16700 #, no-wrap
16701 msgid ""
16702 " int\n"
16703 " guestfs_sleep (guestfs_h *g,\n"
16704 "                int secs);\n"
16705 "\n"
16706 msgstr ""
16707
16708 #. type: textblock
16709 #: ../src/guestfs-actions.pod:6620 ../fish/guestfish-actions.pod:4420
16710 msgid "Sleep for C<secs> seconds."
16711 msgstr ""
16712
16713 #. type: textblock
16714 #: ../src/guestfs-actions.pod:6624
16715 msgid "(Added in 1.0.41)"
16716 msgstr ""
16717
16718 #. type: =head2
16719 #: ../src/guestfs-actions.pod:6626 ../src/guestfs-structs.pod:109
16720 msgid "guestfs_stat"
16721 msgstr ""
16722
16723 #. type: verbatim
16724 #: ../src/guestfs-actions.pod:6628
16725 #, no-wrap
16726 msgid ""
16727 " struct guestfs_stat *\n"
16728 " guestfs_stat (guestfs_h *g,\n"
16729 "               const char *path);\n"
16730 "\n"
16731 msgstr ""
16732
16733 #. type: textblock
16734 #: ../src/guestfs-actions.pod:6634 ../fish/guestfish-actions.pod:4428
16735 msgid "This is the same as the C<stat(2)> system call."
16736 msgstr ""
16737
16738 #. type: =head2
16739 #: ../src/guestfs-actions.pod:6642 ../src/guestfs-structs.pod:135
16740 msgid "guestfs_statvfs"
16741 msgstr ""
16742
16743 #. type: verbatim
16744 #: ../src/guestfs-actions.pod:6644
16745 #, no-wrap
16746 msgid ""
16747 " struct guestfs_statvfs *\n"
16748 " guestfs_statvfs (guestfs_h *g,\n"
16749 "                  const char *path);\n"
16750 "\n"
16751 msgstr ""
16752
16753 #. type: textblock
16754 #: ../src/guestfs-actions.pod:6648 ../fish/guestfish-actions.pod:4434
16755 msgid ""
16756 "Returns file system statistics for any mounted file system.  C<path> should "
16757 "be a file or directory in the mounted file system (typically it is the mount "
16758 "point itself, but it doesn't need to be)."
16759 msgstr ""
16760
16761 #. type: textblock
16762 #: ../src/guestfs-actions.pod:6652 ../fish/guestfish-actions.pod:4438
16763 msgid "This is the same as the C<statvfs(2)> system call."
16764 msgstr ""
16765
16766 #. type: textblock
16767 #: ../src/guestfs-actions.pod:6654
16768 msgid ""
16769 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16770 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16771 msgstr ""
16772
16773 #. type: =head2
16774 #: ../src/guestfs-actions.pod:6660
16775 msgid "guestfs_strings"
16776 msgstr ""
16777
16778 #. type: verbatim
16779 #: ../src/guestfs-actions.pod:6662
16780 #, no-wrap
16781 msgid ""
16782 " char **\n"
16783 " guestfs_strings (guestfs_h *g,\n"
16784 "                  const char *path);\n"
16785 "\n"
16786 msgstr ""
16787
16788 #. type: textblock
16789 #: ../src/guestfs-actions.pod:6666 ../fish/guestfish-actions.pod:4444
16790 msgid ""
16791 "This runs the L<strings(1)> command on a file and returns the list of "
16792 "printable strings found."
16793 msgstr ""
16794
16795 #. type: =head2
16796 #: ../src/guestfs-actions.pod:6678
16797 msgid "guestfs_strings_e"
16798 msgstr ""
16799
16800 #. type: verbatim
16801 #: ../src/guestfs-actions.pod:6680
16802 #, no-wrap
16803 msgid ""
16804 " char **\n"
16805 " guestfs_strings_e (guestfs_h *g,\n"
16806 "                    const char *encoding,\n"
16807 "                    const char *path);\n"
16808 "\n"
16809 msgstr ""
16810
16811 #. type: textblock
16812 #: ../src/guestfs-actions.pod:6685
16813 msgid ""
16814 "This is like the C<guestfs_strings> command, but allows you to specify the "
16815 "encoding of strings that are looked for in the source file C<path>."
16816 msgstr ""
16817
16818 #. type: textblock
16819 #: ../src/guestfs-actions.pod:6689 ../fish/guestfish-actions.pod:4458
16820 msgid "Allowed encodings are:"
16821 msgstr ""
16822
16823 #. type: =item
16824 #: ../src/guestfs-actions.pod:6693 ../fish/guestfish-actions.pod:4462
16825 msgid "s"
16826 msgstr ""
16827
16828 #. type: textblock
16829 #: ../src/guestfs-actions.pod:6695
16830 msgid ""
16831 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16832 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16833 msgstr ""
16834
16835 #. type: =item
16836 #: ../src/guestfs-actions.pod:6698 ../fish/guestfish-actions.pod:4467
16837 msgid "S"
16838 msgstr ""
16839
16840 #. type: textblock
16841 #: ../src/guestfs-actions.pod:6700 ../fish/guestfish-actions.pod:4469
16842 msgid "Single 8-bit-byte characters."
16843 msgstr ""
16844
16845 #. type: =item
16846 #: ../src/guestfs-actions.pod:6702 ../fish/guestfish-actions.pod:4471
16847 msgid "b"
16848 msgstr ""
16849
16850 #. type: textblock
16851 #: ../src/guestfs-actions.pod:6704 ../fish/guestfish-actions.pod:4473
16852 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16853 msgstr ""
16854
16855 #. type: =item
16856 #: ../src/guestfs-actions.pod:6707 ../fish/guestfish-actions.pod:4476
16857 msgid "l (lower case letter L)"
16858 msgstr ""
16859
16860 #. type: textblock
16861 #: ../src/guestfs-actions.pod:6709 ../fish/guestfish-actions.pod:4478
16862 msgid ""
16863 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16864 "examining binaries in Windows guests."
16865 msgstr ""
16866
16867 #. type: =item
16868 #: ../src/guestfs-actions.pod:6712 ../fish/guestfish-actions.pod:4481
16869 msgid "B"
16870 msgstr ""
16871
16872 #. type: textblock
16873 #: ../src/guestfs-actions.pod:6714 ../fish/guestfish-actions.pod:4483
16874 msgid "32-bit big endian such as UCS-4BE."
16875 msgstr ""
16876
16877 #. type: =item
16878 #: ../src/guestfs-actions.pod:6716 ../fish/guestfish-actions.pod:4485
16879 msgid "L"
16880 msgstr ""
16881
16882 #. type: textblock
16883 #: ../src/guestfs-actions.pod:6718 ../fish/guestfish-actions.pod:4487
16884 msgid "32-bit little endian such as UCS-4LE."
16885 msgstr ""
16886
16887 #. type: textblock
16888 #: ../src/guestfs-actions.pod:6722 ../fish/guestfish-actions.pod:4491
16889 msgid "The returned strings are transcoded to UTF-8."
16890 msgstr ""
16891
16892 #. type: =head2
16893 #: ../src/guestfs-actions.pod:6733
16894 msgid "guestfs_swapoff_device"
16895 msgstr ""
16896
16897 #. type: verbatim
16898 #: ../src/guestfs-actions.pod:6735
16899 #, no-wrap
16900 msgid ""
16901 " int\n"
16902 " guestfs_swapoff_device (guestfs_h *g,\n"
16903 "                         const char *device);\n"
16904 "\n"
16905 msgstr ""
16906
16907 #. type: textblock
16908 #: ../src/guestfs-actions.pod:6739
16909 msgid ""
16910 "This command disables the libguestfs appliance swap device or partition "
16911 "named C<device>.  See C<guestfs_swapon_device>."
16912 msgstr ""
16913
16914 #. type: =head2
16915 #: ../src/guestfs-actions.pod:6747
16916 msgid "guestfs_swapoff_file"
16917 msgstr ""
16918
16919 #. type: verbatim
16920 #: ../src/guestfs-actions.pod:6749
16921 #, no-wrap
16922 msgid ""
16923 " int\n"
16924 " guestfs_swapoff_file (guestfs_h *g,\n"
16925 "                       const char *file);\n"
16926 "\n"
16927 msgstr ""
16928
16929 #. type: textblock
16930 #: ../src/guestfs-actions.pod:6753 ../fish/guestfish-actions.pod:4508
16931 msgid "This command disables the libguestfs appliance swap on file."
16932 msgstr ""
16933
16934 #. type: =head2
16935 #: ../src/guestfs-actions.pod:6759
16936 msgid "guestfs_swapoff_label"
16937 msgstr ""
16938
16939 #. type: verbatim
16940 #: ../src/guestfs-actions.pod:6761
16941 #, no-wrap
16942 msgid ""
16943 " int\n"
16944 " guestfs_swapoff_label (guestfs_h *g,\n"
16945 "                        const char *label);\n"
16946 "\n"
16947 msgstr ""
16948
16949 #. type: textblock
16950 #: ../src/guestfs-actions.pod:6765 ../fish/guestfish-actions.pod:4514
16951 msgid ""
16952 "This command disables the libguestfs appliance swap on labeled swap "
16953 "partition."
16954 msgstr ""
16955
16956 #. type: =head2
16957 #: ../src/guestfs-actions.pod:6772
16958 msgid "guestfs_swapoff_uuid"
16959 msgstr ""
16960
16961 #. type: verbatim
16962 #: ../src/guestfs-actions.pod:6774
16963 #, no-wrap
16964 msgid ""
16965 " int\n"
16966 " guestfs_swapoff_uuid (guestfs_h *g,\n"
16967 "                       const char *uuid);\n"
16968 "\n"
16969 msgstr ""
16970
16971 #. type: textblock
16972 #: ../src/guestfs-actions.pod:6778 ../fish/guestfish-actions.pod:4521
16973 msgid ""
16974 "This command disables the libguestfs appliance swap partition with the given "
16975 "UUID."
16976 msgstr ""
16977
16978 #. type: =head2
16979 #: ../src/guestfs-actions.pod:6785
16980 msgid "guestfs_swapon_device"
16981 msgstr ""
16982
16983 #. type: verbatim
16984 #: ../src/guestfs-actions.pod:6787
16985 #, no-wrap
16986 msgid ""
16987 " int\n"
16988 " guestfs_swapon_device (guestfs_h *g,\n"
16989 "                        const char *device);\n"
16990 "\n"
16991 msgstr ""
16992
16993 #. type: textblock
16994 #: ../src/guestfs-actions.pod:6791
16995 msgid ""
16996 "This command enables the libguestfs appliance to use the swap device or "
16997 "partition named C<device>.  The increased memory is made available for all "
16998 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
16999 msgstr ""
17000
17001 #. type: textblock
17002 #: ../src/guestfs-actions.pod:6796 ../fish/guestfish-actions.pod:4533
17003 msgid ""
17004 "Note that you should not swap to existing guest swap partitions unless you "
17005 "know what you are doing.  They may contain hibernation information, or other "
17006 "information that the guest doesn't want you to trash.  You also risk leaking "
17007 "information about the host to the guest this way.  Instead, attach a new "
17008 "host device to the guest and swap on that."
17009 msgstr ""
17010
17011 #. type: =head2
17012 #: ../src/guestfs-actions.pod:6807
17013 msgid "guestfs_swapon_file"
17014 msgstr ""
17015
17016 #. type: verbatim
17017 #: ../src/guestfs-actions.pod:6809
17018 #, no-wrap
17019 msgid ""
17020 " int\n"
17021 " guestfs_swapon_file (guestfs_h *g,\n"
17022 "                      const char *file);\n"
17023 "\n"
17024 msgstr ""
17025
17026 #. type: textblock
17027 #: ../src/guestfs-actions.pod:6813
17028 msgid ""
17029 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17030 "notes."
17031 msgstr ""
17032
17033 #. type: =head2
17034 #: ../src/guestfs-actions.pod:6820
17035 msgid "guestfs_swapon_label"
17036 msgstr ""
17037
17038 #. type: verbatim
17039 #: ../src/guestfs-actions.pod:6822
17040 #, no-wrap
17041 msgid ""
17042 " int\n"
17043 " guestfs_swapon_label (guestfs_h *g,\n"
17044 "                       const char *label);\n"
17045 "\n"
17046 msgstr ""
17047
17048 #. type: textblock
17049 #: ../src/guestfs-actions.pod:6826
17050 msgid ""
17051 "This command enables swap to a labeled swap partition.  See "
17052 "C<guestfs_swapon_device> for other notes."
17053 msgstr ""
17054
17055 #. type: =head2
17056 #: ../src/guestfs-actions.pod:6833
17057 msgid "guestfs_swapon_uuid"
17058 msgstr ""
17059
17060 #. type: verbatim
17061 #: ../src/guestfs-actions.pod:6835
17062 #, no-wrap
17063 msgid ""
17064 " int\n"
17065 " guestfs_swapon_uuid (guestfs_h *g,\n"
17066 "                      const char *uuid);\n"
17067 "\n"
17068 msgstr ""
17069
17070 #. type: textblock
17071 #: ../src/guestfs-actions.pod:6839
17072 msgid ""
17073 "This command enables swap to a swap partition with the given UUID.  See "
17074 "C<guestfs_swapon_device> for other notes."
17075 msgstr ""
17076
17077 #. type: =head2
17078 #: ../src/guestfs-actions.pod:6846
17079 msgid "guestfs_sync"
17080 msgstr ""
17081
17082 #. type: verbatim
17083 #: ../src/guestfs-actions.pod:6848
17084 #, no-wrap
17085 msgid ""
17086 " int\n"
17087 " guestfs_sync (guestfs_h *g);\n"
17088 "\n"
17089 msgstr ""
17090
17091 #. type: textblock
17092 #: ../src/guestfs-actions.pod:6851 ../fish/guestfish-actions.pod:4565
17093 msgid ""
17094 "This syncs the disk, so that any writes are flushed through to the "
17095 "underlying disk image."
17096 msgstr ""
17097
17098 #. type: textblock
17099 #: ../src/guestfs-actions.pod:6854 ../fish/guestfish-actions.pod:4568
17100 msgid ""
17101 "You should always call this if you have modified a disk image, before "
17102 "closing the handle."
17103 msgstr ""
17104
17105 #. type: =head2
17106 #: ../src/guestfs-actions.pod:6861
17107 msgid "guestfs_tail"
17108 msgstr ""
17109
17110 #. type: verbatim
17111 #: ../src/guestfs-actions.pod:6863
17112 #, no-wrap
17113 msgid ""
17114 " char **\n"
17115 " guestfs_tail (guestfs_h *g,\n"
17116 "               const char *path);\n"
17117 "\n"
17118 msgstr ""
17119
17120 #. type: textblock
17121 #: ../src/guestfs-actions.pod:6867 ../fish/guestfish-actions.pod:4575
17122 msgid "This command returns up to the last 10 lines of a file as a list of strings."
17123 msgstr ""
17124
17125 #. type: =head2
17126 #: ../src/guestfs-actions.pod:6879
17127 msgid "guestfs_tail_n"
17128 msgstr ""
17129
17130 #. type: verbatim
17131 #: ../src/guestfs-actions.pod:6881
17132 #, no-wrap
17133 msgid ""
17134 " char **\n"
17135 " guestfs_tail_n (guestfs_h *g,\n"
17136 "                 int nrlines,\n"
17137 "                 const char *path);\n"
17138 "\n"
17139 msgstr ""
17140
17141 #. type: textblock
17142 #: ../src/guestfs-actions.pod:6886 ../fish/guestfish-actions.pod:4585
17143 msgid ""
17144 "If the parameter C<nrlines> is a positive number, this returns the last "
17145 "C<nrlines> lines of the file C<path>."
17146 msgstr ""
17147
17148 #. type: textblock
17149 #: ../src/guestfs-actions.pod:6889 ../fish/guestfish-actions.pod:4588
17150 msgid ""
17151 "If the parameter C<nrlines> is a negative number, this returns lines from "
17152 "the file C<path>, starting with the C<-nrlines>th line."
17153 msgstr ""
17154
17155 #. type: =head2
17156 #: ../src/guestfs-actions.pod:6903
17157 msgid "guestfs_tar_in"
17158 msgstr ""
17159
17160 #. type: verbatim
17161 #: ../src/guestfs-actions.pod:6905
17162 #, no-wrap
17163 msgid ""
17164 " int\n"
17165 " guestfs_tar_in (guestfs_h *g,\n"
17166 "                 const char *tarfile,\n"
17167 "                 const char *directory);\n"
17168 "\n"
17169 msgstr ""
17170
17171 #. type: textblock
17172 #: ../src/guestfs-actions.pod:6910 ../fish/guestfish-actions.pod:4600
17173 msgid ""
17174 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17175 "tar file) into C<directory>."
17176 msgstr ""
17177
17178 #. type: textblock
17179 #: ../src/guestfs-actions.pod:6913
17180 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17181 msgstr ""
17182
17183 #. type: textblock
17184 #: ../src/guestfs-actions.pod:6918 ../src/guestfs-actions.pod:6935 ../src/guestfs-actions.pod:6951 ../src/guestfs-actions.pod:6967
17185 msgid "(Added in 1.0.3)"
17186 msgstr ""
17187
17188 #. type: =head2
17189 #: ../src/guestfs-actions.pod:6920
17190 msgid "guestfs_tar_out"
17191 msgstr ""
17192
17193 #. type: verbatim
17194 #: ../src/guestfs-actions.pod:6922
17195 #, no-wrap
17196 msgid ""
17197 " int\n"
17198 " guestfs_tar_out (guestfs_h *g,\n"
17199 "                  const char *directory,\n"
17200 "                  const char *tarfile);\n"
17201 "\n"
17202 msgstr ""
17203
17204 #. type: textblock
17205 #: ../src/guestfs-actions.pod:6927 ../fish/guestfish-actions.pod:4612
17206 msgid ""
17207 "This command packs the contents of C<directory> and downloads it to local "
17208 "file C<tarfile>."
17209 msgstr ""
17210
17211 #. type: textblock
17212 #: ../src/guestfs-actions.pod:6930
17213 msgid ""
17214 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17215 "C<guestfs_txz_out>."
17216 msgstr ""
17217
17218 #. type: =head2
17219 #: ../src/guestfs-actions.pod:6937
17220 msgid "guestfs_tgz_in"
17221 msgstr ""
17222
17223 #. type: verbatim
17224 #: ../src/guestfs-actions.pod:6939
17225 #, no-wrap
17226 msgid ""
17227 " int\n"
17228 " guestfs_tgz_in (guestfs_h *g,\n"
17229 "                 const char *tarball,\n"
17230 "                 const char *directory);\n"
17231 "\n"
17232 msgstr ""
17233
17234 #. type: textblock
17235 #: ../src/guestfs-actions.pod:6944 ../fish/guestfish-actions.pod:4624
17236 msgid ""
17237 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17238 "tar file) into C<directory>."
17239 msgstr ""
17240
17241 #. type: textblock
17242 #: ../src/guestfs-actions.pod:6947
17243 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17244 msgstr ""
17245
17246 #. type: =head2
17247 #: ../src/guestfs-actions.pod:6953
17248 msgid "guestfs_tgz_out"
17249 msgstr ""
17250
17251 #. type: verbatim
17252 #: ../src/guestfs-actions.pod:6955
17253 #, no-wrap
17254 msgid ""
17255 " int\n"
17256 " guestfs_tgz_out (guestfs_h *g,\n"
17257 "                  const char *directory,\n"
17258 "                  const char *tarball);\n"
17259 "\n"
17260 msgstr ""
17261
17262 #. type: textblock
17263 #: ../src/guestfs-actions.pod:6960 ../fish/guestfish-actions.pod:4635
17264 msgid ""
17265 "This command packs the contents of C<directory> and downloads it to local "
17266 "file C<tarball>."
17267 msgstr ""
17268
17269 #. type: textblock
17270 #: ../src/guestfs-actions.pod:6963
17271 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17272 msgstr ""
17273
17274 #. type: =head2
17275 #: ../src/guestfs-actions.pod:6969
17276 msgid "guestfs_touch"
17277 msgstr ""
17278
17279 #. type: verbatim
17280 #: ../src/guestfs-actions.pod:6971
17281 #, no-wrap
17282 msgid ""
17283 " int\n"
17284 " guestfs_touch (guestfs_h *g,\n"
17285 "                const char *path);\n"
17286 "\n"
17287 msgstr ""
17288
17289 #. type: textblock
17290 #: ../src/guestfs-actions.pod:6975 ../fish/guestfish-actions.pod:4646
17291 msgid ""
17292 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17293 "timestamps on a file, or, if the file does not exist, to create a new "
17294 "zero-length file."
17295 msgstr ""
17296
17297 #. type: textblock
17298 #: ../src/guestfs-actions.pod:6979 ../fish/guestfish-actions.pod:4650
17299 msgid ""
17300 "This command only works on regular files, and will fail on other file types "
17301 "such as directories, symbolic links, block special etc."
17302 msgstr ""
17303
17304 #. type: =head2
17305 #: ../src/guestfs-actions.pod:6986
17306 msgid "guestfs_truncate"
17307 msgstr ""
17308
17309 #. type: verbatim
17310 #: ../src/guestfs-actions.pod:6988
17311 #, no-wrap
17312 msgid ""
17313 " int\n"
17314 " guestfs_truncate (guestfs_h *g,\n"
17315 "                   const char *path);\n"
17316 "\n"
17317 msgstr ""
17318
17319 #. type: textblock
17320 #: ../src/guestfs-actions.pod:6992 ../fish/guestfish-actions.pod:4657
17321 msgid ""
17322 "This command truncates C<path> to a zero-length file.  The file must exist "
17323 "already."
17324 msgstr ""
17325
17326 #. type: =head2
17327 #: ../src/guestfs-actions.pod:6999
17328 msgid "guestfs_truncate_size"
17329 msgstr ""
17330
17331 #. type: verbatim
17332 #: ../src/guestfs-actions.pod:7001
17333 #, no-wrap
17334 msgid ""
17335 " int\n"
17336 " guestfs_truncate_size (guestfs_h *g,\n"
17337 "                        const char *path,\n"
17338 "                        int64_t size);\n"
17339 "\n"
17340 msgstr ""
17341
17342 #. type: textblock
17343 #: ../src/guestfs-actions.pod:7006 ../fish/guestfish-actions.pod:4664
17344 msgid ""
17345 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17346 "already."
17347 msgstr ""
17348
17349 #. type: textblock
17350 #: ../src/guestfs-actions.pod:7009
17351 msgid ""
17352 "If the current file size is less than C<size> then the file is extended to "
17353 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17354 "blocks are not allocated for the file until you write to it).  To create a "
17355 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17356 msgstr ""
17357
17358 #. type: =head2
17359 #: ../src/guestfs-actions.pod:7019
17360 msgid "guestfs_tune2fs_l"
17361 msgstr ""
17362
17363 #. type: verbatim
17364 #: ../src/guestfs-actions.pod:7021
17365 #, no-wrap
17366 msgid ""
17367 " char **\n"
17368 " guestfs_tune2fs_l (guestfs_h *g,\n"
17369 "                    const char *device);\n"
17370 "\n"
17371 msgstr ""
17372
17373 #. type: textblock
17374 #: ../src/guestfs-actions.pod:7025 ../fish/guestfish-actions.pod:4677
17375 msgid ""
17376 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17377 "C<device>."
17378 msgstr ""
17379
17380 #. type: textblock
17381 #: ../src/guestfs-actions.pod:7028 ../fish/guestfish-actions.pod:4680
17382 msgid ""
17383 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17384 "for more details.  The list of fields returned isn't clearly defined, and "
17385 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17386 "and the filesystem itself."
17387 msgstr ""
17388
17389 #. type: =head2
17390 #: ../src/guestfs-actions.pod:7041
17391 msgid "guestfs_txz_in"
17392 msgstr ""
17393
17394 #. type: verbatim
17395 #: ../src/guestfs-actions.pod:7043
17396 #, no-wrap
17397 msgid ""
17398 " int\n"
17399 " guestfs_txz_in (guestfs_h *g,\n"
17400 "                 const char *tarball,\n"
17401 "                 const char *directory);\n"
17402 "\n"
17403 msgstr ""
17404
17405 #. type: textblock
17406 #: ../src/guestfs-actions.pod:7048 ../fish/guestfish-actions.pod:4689
17407 msgid ""
17408 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17409 "tar file) into C<directory>."
17410 msgstr ""
17411
17412 #. type: =head2
17413 #: ../src/guestfs-actions.pod:7055
17414 msgid "guestfs_txz_out"
17415 msgstr ""
17416
17417 #. type: verbatim
17418 #: ../src/guestfs-actions.pod:7057
17419 #, no-wrap
17420 msgid ""
17421 " int\n"
17422 " guestfs_txz_out (guestfs_h *g,\n"
17423 "                  const char *directory,\n"
17424 "                  const char *tarball);\n"
17425 "\n"
17426 msgstr ""
17427
17428 #. type: textblock
17429 #: ../src/guestfs-actions.pod:7062 ../fish/guestfish-actions.pod:4698
17430 msgid ""
17431 "This command packs the contents of C<directory> and downloads it to local "
17432 "file C<tarball> (as an xz compressed tar archive)."
17433 msgstr ""
17434
17435 #. type: =head2
17436 #: ../src/guestfs-actions.pod:7069
17437 msgid "guestfs_umask"
17438 msgstr ""
17439
17440 #. type: verbatim
17441 #: ../src/guestfs-actions.pod:7071
17442 #, no-wrap
17443 msgid ""
17444 " int\n"
17445 " guestfs_umask (guestfs_h *g,\n"
17446 "                int mask);\n"
17447 "\n"
17448 msgstr ""
17449
17450 #. type: textblock
17451 #: ../src/guestfs-actions.pod:7075 ../fish/guestfish-actions.pod:4707
17452 msgid ""
17453 "This function sets the mask used for creating new files and device nodes to "
17454 "C<mask & 0777>."
17455 msgstr ""
17456
17457 #. type: textblock
17458 #: ../src/guestfs-actions.pod:7078 ../fish/guestfish-actions.pod:4710
17459 msgid ""
17460 "Typical umask values would be C<022> which creates new files with "
17461 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17462 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17463 msgstr ""
17464
17465 #. type: textblock
17466 #: ../src/guestfs-actions.pod:7083 ../fish/guestfish-actions.pod:4715
17467 msgid ""
17468 "The default umask is C<022>.  This is important because it means that "
17469 "directories and device nodes will be created with C<0644> or C<0755> mode "
17470 "even if you specify C<0777>."
17471 msgstr ""
17472
17473 #. type: textblock
17474 #: ../src/guestfs-actions.pod:7087
17475 msgid ""
17476 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17477 "C<guestfs_mkdir>."
17478 msgstr ""
17479
17480 #. type: textblock
17481 #: ../src/guestfs-actions.pod:7090 ../fish/guestfish-actions.pod:4722
17482 msgid "This call returns the previous umask."
17483 msgstr ""
17484
17485 #. type: =head2
17486 #: ../src/guestfs-actions.pod:7096
17487 msgid "guestfs_umount"
17488 msgstr ""
17489
17490 #. type: verbatim
17491 #: ../src/guestfs-actions.pod:7098
17492 #, no-wrap
17493 msgid ""
17494 " int\n"
17495 " guestfs_umount (guestfs_h *g,\n"
17496 "                 const char *pathordevice);\n"
17497 "\n"
17498 msgstr ""
17499
17500 #. type: textblock
17501 #: ../src/guestfs-actions.pod:7102 ../fish/guestfish-actions.pod:4730
17502 msgid ""
17503 "This unmounts the given filesystem.  The filesystem may be specified either "
17504 "by its mountpoint (path) or the device which contains the filesystem."
17505 msgstr ""
17506
17507 #. type: =head2
17508 #: ../src/guestfs-actions.pod:7110
17509 msgid "guestfs_umount_all"
17510 msgstr ""
17511
17512 #. type: verbatim
17513 #: ../src/guestfs-actions.pod:7112
17514 #, no-wrap
17515 msgid ""
17516 " int\n"
17517 " guestfs_umount_all (guestfs_h *g);\n"
17518 "\n"
17519 msgstr ""
17520
17521 #. type: textblock
17522 #: ../src/guestfs-actions.pod:7115 ../fish/guestfish-actions.pod:4740
17523 msgid "This unmounts all mounted filesystems."
17524 msgstr ""
17525
17526 #. type: textblock
17527 #: ../src/guestfs-actions.pod:7117 ../fish/guestfish-actions.pod:4742
17528 msgid "Some internal mounts are not unmounted by this call."
17529 msgstr ""
17530
17531 #. type: =head2
17532 #: ../src/guestfs-actions.pod:7123
17533 msgid "guestfs_upload"
17534 msgstr ""
17535
17536 #. type: verbatim
17537 #: ../src/guestfs-actions.pod:7125
17538 #, no-wrap
17539 msgid ""
17540 " int\n"
17541 " guestfs_upload (guestfs_h *g,\n"
17542 "                 const char *filename,\n"
17543 "                 const char *remotefilename);\n"
17544 "\n"
17545 msgstr ""
17546
17547 #. type: textblock
17548 #: ../src/guestfs-actions.pod:7130 ../src/guestfs-actions.pod:7154 ../fish/guestfish-actions.pod:4748 ../fish/guestfish-actions.pod:4761
17549 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17550 msgstr ""
17551
17552 #. type: textblock
17553 #: ../src/guestfs-actions.pod:7135
17554 msgid "See also C<guestfs_download>."
17555 msgstr ""
17556
17557 #. type: =head2
17558 #: ../src/guestfs-actions.pod:7146
17559 msgid "guestfs_upload_offset"
17560 msgstr ""
17561
17562 #. type: verbatim
17563 #: ../src/guestfs-actions.pod:7148
17564 #, no-wrap
17565 msgid ""
17566 " int\n"
17567 " guestfs_upload_offset (guestfs_h *g,\n"
17568 "                        const char *filename,\n"
17569 "                        const char *remotefilename,\n"
17570 "                        int64_t offset);\n"
17571 "\n"
17572 msgstr ""
17573
17574 #. type: textblock
17575 #: ../src/guestfs-actions.pod:7157 ../fish/guestfish-actions.pod:4764
17576 msgid ""
17577 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17578 "The intention is to overwrite parts of existing files or devices, although "
17579 "if a non-existant file is specified then it is created with a \"hole\" "
17580 "before C<offset>.  The size of the data written is implicit in the size of "
17581 "the source C<filename>."
17582 msgstr ""
17583
17584 #. type: textblock
17585 #: ../src/guestfs-actions.pod:7164
17586 msgid ""
17587 "Note that there is no limit on the amount of data that can be uploaded with "
17588 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17589 "full amount unless an error occurs."
17590 msgstr ""
17591
17592 #. type: textblock
17593 #: ../src/guestfs-actions.pod:7169
17594 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17595 msgstr ""
17596
17597 #. type: =head2
17598 #: ../src/guestfs-actions.pod:7180
17599 msgid "guestfs_utimens"
17600 msgstr ""
17601
17602 #. type: verbatim
17603 #: ../src/guestfs-actions.pod:7182
17604 #, no-wrap
17605 msgid ""
17606 " int\n"
17607 " guestfs_utimens (guestfs_h *g,\n"
17608 "                  const char *path,\n"
17609 "                  int64_t atsecs,\n"
17610 "                  int64_t atnsecs,\n"
17611 "                  int64_t mtsecs,\n"
17612 "                  int64_t mtnsecs);\n"
17613 "\n"
17614 msgstr ""
17615
17616 #. type: textblock
17617 #: ../src/guestfs-actions.pod:7190 ../fish/guestfish-actions.pod:4784
17618 msgid "This command sets the timestamps of a file with nanosecond precision."
17619 msgstr ""
17620
17621 #. type: textblock
17622 #: ../src/guestfs-actions.pod:7193 ../fish/guestfish-actions.pod:4787
17623 msgid ""
17624 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17625 "from the epoch."
17626 msgstr ""
17627
17628 #. type: textblock
17629 #: ../src/guestfs-actions.pod:7196 ../fish/guestfish-actions.pod:4790
17630 msgid ""
17631 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17632 "nanoseconds from the epoch."
17633 msgstr ""
17634
17635 #. type: textblock
17636 #: ../src/guestfs-actions.pod:7199 ../fish/guestfish-actions.pod:4793
17637 msgid ""
17638 "If the C<*nsecs> field contains the special value C<-1> then the "
17639 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17640 "ignored in this case)."
17641 msgstr ""
17642
17643 #. type: textblock
17644 #: ../src/guestfs-actions.pod:7203 ../fish/guestfish-actions.pod:4797
17645 msgid ""
17646 "If the C<*nsecs> field contains the special value C<-2> then the "
17647 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17648 "in this case)."
17649 msgstr ""
17650
17651 #. type: =head2
17652 #: ../src/guestfs-actions.pod:7211 ../src/guestfs-structs.pod:175
17653 msgid "guestfs_version"
17654 msgstr ""
17655
17656 #. type: verbatim
17657 #: ../src/guestfs-actions.pod:7213
17658 #, no-wrap
17659 msgid ""
17660 " struct guestfs_version *\n"
17661 " guestfs_version (guestfs_h *g);\n"
17662 "\n"
17663 msgstr ""
17664
17665 #. type: textblock
17666 #: ../src/guestfs-actions.pod:7216 ../fish/guestfish-actions.pod:4805
17667 msgid "Return the libguestfs version number that the program is linked against."
17668 msgstr ""
17669
17670 #. type: textblock
17671 #: ../src/guestfs-actions.pod:7219 ../fish/guestfish-actions.pod:4808
17672 msgid ""
17673 "Note that because of dynamic linking this is not necessarily the version of "
17674 "libguestfs that you compiled against.  You can compile the program, and then "
17675 "at runtime dynamically link against a completely different C<libguestfs.so> "
17676 "library."
17677 msgstr ""
17678
17679 #. type: textblock
17680 #: ../src/guestfs-actions.pod:7224 ../fish/guestfish-actions.pod:4813
17681 msgid ""
17682 "This call was added in version C<1.0.58>.  In previous versions of "
17683 "libguestfs there was no way to get the version number.  From C code you can "
17684 "use dynamic linker functions to find out if this symbol exists (if it "
17685 "doesn't, then it's an earlier version)."
17686 msgstr ""
17687
17688 #. type: textblock
17689 #: ../src/guestfs-actions.pod:7230 ../fish/guestfish-actions.pod:4819
17690 msgid ""
17691 "The call returns a structure with four elements.  The first three (C<major>, "
17692 "C<minor> and C<release>) are numbers and correspond to the usual version "
17693 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17694 "but may be used for distro-specific information."
17695 msgstr ""
17696
17697 #. type: textblock
17698 #: ../src/guestfs-actions.pod:7236 ../fish/guestfish-actions.pod:4825
17699 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
17700 msgstr ""
17701
17702 #. type: textblock
17703 #: ../src/guestfs-actions.pod:7239 ../fish/guestfish-actions.pod:4828
17704 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17705 msgstr ""
17706
17707 #. type: textblock
17708 #: ../src/guestfs-actions.pod:7241
17709 msgid ""
17710 "I<Note:> Don't use this call to test for availability of features.  In "
17711 "enterprise distributions we backport features from later versions into "
17712 "earlier versions, making this an unreliable way to test for features.  Use "
17713 "C<guestfs_available> instead."
17714 msgstr ""
17715
17716 #. type: textblock
17717 #: ../src/guestfs-actions.pod:7247
17718 msgid ""
17719 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17720 "error.  I<The caller must call C<guestfs_free_version> after use>."
17721 msgstr ""
17722
17723 #. type: textblock
17724 #: ../src/guestfs-actions.pod:7251
17725 msgid "(Added in 1.0.58)"
17726 msgstr ""
17727
17728 #. type: =head2
17729 #: ../src/guestfs-actions.pod:7253
17730 msgid "guestfs_vfs_label"
17731 msgstr ""
17732
17733 #. type: verbatim
17734 #: ../src/guestfs-actions.pod:7255
17735 #, no-wrap
17736 msgid ""
17737 " char *\n"
17738 " guestfs_vfs_label (guestfs_h *g,\n"
17739 "                    const char *device);\n"
17740 "\n"
17741 msgstr ""
17742
17743 #. type: textblock
17744 #: ../src/guestfs-actions.pod:7259 ../fish/guestfish-actions.pod:4840
17745 msgid "This returns the filesystem label of the filesystem on C<device>."
17746 msgstr ""
17747
17748 #. type: textblock
17749 #: ../src/guestfs-actions.pod:7262 ../fish/guestfish-actions.pod:4843
17750 msgid "If the filesystem is unlabeled, this returns the empty string."
17751 msgstr ""
17752
17753 #. type: textblock
17754 #: ../src/guestfs-actions.pod:7264
17755 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17756 msgstr ""
17757
17758 #. type: textblock
17759 #: ../src/guestfs-actions.pod:7269 ../src/guestfs-actions.pod:7306
17760 msgid "(Added in 1.3.18)"
17761 msgstr ""
17762
17763 #. type: =head2
17764 #: ../src/guestfs-actions.pod:7271
17765 msgid "guestfs_vfs_type"
17766 msgstr ""
17767
17768 #. type: verbatim
17769 #: ../src/guestfs-actions.pod:7273
17770 #, no-wrap
17771 msgid ""
17772 " char *\n"
17773 " guestfs_vfs_type (guestfs_h *g,\n"
17774 "                   const char *device);\n"
17775 "\n"
17776 msgstr ""
17777
17778 #. type: textblock
17779 #: ../src/guestfs-actions.pod:7277 ../fish/guestfish-actions.pod:4851
17780 msgid ""
17781 "This command gets the filesystem type corresponding to the filesystem on "
17782 "C<device>."
17783 msgstr ""
17784
17785 #. type: textblock
17786 #: ../src/guestfs-actions.pod:7280 ../fish/guestfish-actions.pod:4854
17787 msgid ""
17788 "For most filesystems, the result is the name of the Linux VFS module which "
17789 "would be used to mount this filesystem if you mounted it without specifying "
17790 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17791 msgstr ""
17792
17793 #. type: =head2
17794 #: ../src/guestfs-actions.pod:7290
17795 msgid "guestfs_vfs_uuid"
17796 msgstr ""
17797
17798 #. type: verbatim
17799 #: ../src/guestfs-actions.pod:7292
17800 #, no-wrap
17801 msgid ""
17802 " char *\n"
17803 " guestfs_vfs_uuid (guestfs_h *g,\n"
17804 "                   const char *device);\n"
17805 "\n"
17806 msgstr ""
17807
17808 #. type: textblock
17809 #: ../src/guestfs-actions.pod:7296 ../fish/guestfish-actions.pod:4863
17810 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17811 msgstr ""
17812
17813 #. type: textblock
17814 #: ../src/guestfs-actions.pod:7299 ../fish/guestfish-actions.pod:4866
17815 msgid "If the filesystem does not have a UUID, this returns the empty string."
17816 msgstr ""
17817
17818 #. type: textblock
17819 #: ../src/guestfs-actions.pod:7301
17820 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17821 msgstr ""
17822
17823 #. type: =head2
17824 #: ../src/guestfs-actions.pod:7308
17825 msgid "guestfs_vg_activate"
17826 msgstr ""
17827
17828 #. type: verbatim
17829 #: ../src/guestfs-actions.pod:7310
17830 #, no-wrap
17831 msgid ""
17832 " int\n"
17833 " guestfs_vg_activate (guestfs_h *g,\n"
17834 "                      int activate,\n"
17835 "                      char *const *volgroups);\n"
17836 "\n"
17837 msgstr ""
17838
17839 #. type: textblock
17840 #: ../src/guestfs-actions.pod:7315 ../fish/guestfish-actions.pod:4874
17841 msgid ""
17842 "This command activates or (if C<activate> is false) deactivates all logical "
17843 "volumes in the listed volume groups C<volgroups>."
17844 msgstr ""
17845
17846 #. type: textblock
17847 #: ../src/guestfs-actions.pod:7318 ../fish/guestfish-actions.pod:4877
17848 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17849 msgstr ""
17850
17851 #. type: textblock
17852 #: ../src/guestfs-actions.pod:7320 ../fish/guestfish-actions.pod:4879
17853 msgid ""
17854 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17855 "activated or deactivated."
17856 msgstr ""
17857
17858 #. type: =head2
17859 #: ../src/guestfs-actions.pod:7327
17860 msgid "guestfs_vg_activate_all"
17861 msgstr ""
17862
17863 #. type: verbatim
17864 #: ../src/guestfs-actions.pod:7329
17865 #, no-wrap
17866 msgid ""
17867 " int\n"
17868 " guestfs_vg_activate_all (guestfs_h *g,\n"
17869 "                          int activate);\n"
17870 "\n"
17871 msgstr ""
17872
17873 #. type: textblock
17874 #: ../src/guestfs-actions.pod:7333 ../fish/guestfish-actions.pod:4886
17875 msgid ""
17876 "This command activates or (if C<activate> is false) deactivates all logical "
17877 "volumes in all volume groups."
17878 msgstr ""
17879
17880 #. type: textblock
17881 #: ../src/guestfs-actions.pod:7336 ../fish/guestfish-actions.pod:4889
17882 msgid "This command is the same as running C<vgchange -a y|n>"
17883 msgstr ""
17884
17885 #. type: =head2
17886 #: ../src/guestfs-actions.pod:7342
17887 msgid "guestfs_vgcreate"
17888 msgstr ""
17889
17890 #. type: verbatim
17891 #: ../src/guestfs-actions.pod:7344
17892 #, no-wrap
17893 msgid ""
17894 " int\n"
17895 " guestfs_vgcreate (guestfs_h *g,\n"
17896 "                   const char *volgroup,\n"
17897 "                   char *const *physvols);\n"
17898 "\n"
17899 msgstr ""
17900
17901 #. type: textblock
17902 #: ../src/guestfs-actions.pod:7349 ../fish/guestfish-actions.pod:4895
17903 msgid ""
17904 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17905 "of physical volumes C<physvols>."
17906 msgstr ""
17907
17908 #. type: =head2
17909 #: ../src/guestfs-actions.pod:7356
17910 msgid "guestfs_vglvuuids"
17911 msgstr ""
17912
17913 #. type: verbatim
17914 #: ../src/guestfs-actions.pod:7358
17915 #, no-wrap
17916 msgid ""
17917 " char **\n"
17918 " guestfs_vglvuuids (guestfs_h *g,\n"
17919 "                    const char *vgname);\n"
17920 "\n"
17921 msgstr ""
17922
17923 #. type: textblock
17924 #: ../src/guestfs-actions.pod:7362 ../fish/guestfish-actions.pod:4902
17925 msgid ""
17926 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17927 "volumes created in this volume group."
17928 msgstr ""
17929
17930 #. type: textblock
17931 #: ../src/guestfs-actions.pod:7365
17932 msgid ""
17933 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17934 "associate logical volumes and volume groups."
17935 msgstr ""
17936
17937 #. type: textblock
17938 #: ../src/guestfs-actions.pod:7368
17939 msgid "See also C<guestfs_vgpvuuids>."
17940 msgstr ""
17941
17942 #. type: =head2
17943 #: ../src/guestfs-actions.pod:7376
17944 msgid "guestfs_vgpvuuids"
17945 msgstr ""
17946
17947 #. type: verbatim
17948 #: ../src/guestfs-actions.pod:7378
17949 #, no-wrap
17950 msgid ""
17951 " char **\n"
17952 " guestfs_vgpvuuids (guestfs_h *g,\n"
17953 "                    const char *vgname);\n"
17954 "\n"
17955 msgstr ""
17956
17957 #. type: textblock
17958 #: ../src/guestfs-actions.pod:7382 ../fish/guestfish-actions.pod:4914
17959 msgid ""
17960 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
17961 "volumes that this volume group resides on."
17962 msgstr ""
17963
17964 #. type: textblock
17965 #: ../src/guestfs-actions.pod:7385
17966 msgid ""
17967 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
17968 "associate physical volumes and volume groups."
17969 msgstr ""
17970
17971 #. type: textblock
17972 #: ../src/guestfs-actions.pod:7388
17973 msgid "See also C<guestfs_vglvuuids>."
17974 msgstr ""
17975
17976 #. type: =head2
17977 #: ../src/guestfs-actions.pod:7396
17978 msgid "guestfs_vgremove"
17979 msgstr ""
17980
17981 #. type: verbatim
17982 #: ../src/guestfs-actions.pod:7398
17983 #, no-wrap
17984 msgid ""
17985 " int\n"
17986 " guestfs_vgremove (guestfs_h *g,\n"
17987 "                   const char *vgname);\n"
17988 "\n"
17989 msgstr ""
17990
17991 #. type: textblock
17992 #: ../src/guestfs-actions.pod:7402 ../fish/guestfish-actions.pod:4926
17993 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
17994 msgstr ""
17995
17996 #. type: textblock
17997 #: ../src/guestfs-actions.pod:7404 ../fish/guestfish-actions.pod:4928
17998 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
17999 msgstr ""
18000
18001 #. type: =head2
18002 #: ../src/guestfs-actions.pod:7411
18003 msgid "guestfs_vgrename"
18004 msgstr ""
18005
18006 #. type: verbatim
18007 #: ../src/guestfs-actions.pod:7413
18008 #, no-wrap
18009 msgid ""
18010 " int\n"
18011 " guestfs_vgrename (guestfs_h *g,\n"
18012 "                   const char *volgroup,\n"
18013 "                   const char *newvolgroup);\n"
18014 "\n"
18015 msgstr ""
18016
18017 #. type: textblock
18018 #: ../src/guestfs-actions.pod:7418 ../fish/guestfish-actions.pod:4935
18019 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18020 msgstr ""
18021
18022 #. type: =head2
18023 #: ../src/guestfs-actions.pod:7424
18024 msgid "guestfs_vgs"
18025 msgstr ""
18026
18027 #. type: verbatim
18028 #: ../src/guestfs-actions.pod:7426
18029 #, no-wrap
18030 msgid ""
18031 " char **\n"
18032 " guestfs_vgs (guestfs_h *g);\n"
18033 "\n"
18034 msgstr ""
18035
18036 #. type: textblock
18037 #: ../src/guestfs-actions.pod:7429 ../fish/guestfish-actions.pod:4941
18038 msgid ""
18039 "List all the volumes groups detected.  This is the equivalent of the "
18040 "L<vgs(8)> command."
18041 msgstr ""
18042
18043 #. type: textblock
18044 #: ../src/guestfs-actions.pod:7432 ../fish/guestfish-actions.pod:4944
18045 msgid ""
18046 "This returns a list of just the volume group names that were detected "
18047 "(eg. C<VolGroup00>)."
18048 msgstr ""
18049
18050 #. type: textblock
18051 #: ../src/guestfs-actions.pod:7435
18052 msgid "See also C<guestfs_vgs_full>."
18053 msgstr ""
18054
18055 #. type: =head2
18056 #: ../src/guestfs-actions.pod:7443
18057 msgid "guestfs_vgs_full"
18058 msgstr ""
18059
18060 #. type: verbatim
18061 #: ../src/guestfs-actions.pod:7445
18062 #, no-wrap
18063 msgid ""
18064 " struct guestfs_lvm_vg_list *\n"
18065 " guestfs_vgs_full (guestfs_h *g);\n"
18066 "\n"
18067 msgstr ""
18068
18069 #. type: textblock
18070 #: ../src/guestfs-actions.pod:7448 ../fish/guestfish-actions.pod:4953
18071 msgid ""
18072 "List all the volumes groups detected.  This is the equivalent of the "
18073 "L<vgs(8)> command.  The \"full\" version includes all fields."
18074 msgstr ""
18075
18076 #. type: textblock
18077 #: ../src/guestfs-actions.pod:7451
18078 msgid ""
18079 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18080 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
18081 "use>."
18082 msgstr ""
18083
18084 #. type: =head2
18085 #: ../src/guestfs-actions.pod:7457
18086 msgid "guestfs_vgscan"
18087 msgstr ""
18088
18089 #. type: verbatim
18090 #: ../src/guestfs-actions.pod:7459
18091 #, no-wrap
18092 msgid ""
18093 " int\n"
18094 " guestfs_vgscan (guestfs_h *g);\n"
18095 "\n"
18096 msgstr ""
18097
18098 #. type: textblock
18099 #: ../src/guestfs-actions.pod:7462 ../fish/guestfish-actions.pod:4960
18100 msgid ""
18101 "This rescans all block devices and rebuilds the list of LVM physical "
18102 "volumes, volume groups and logical volumes."
18103 msgstr ""
18104
18105 #. type: =head2
18106 #: ../src/guestfs-actions.pod:7469
18107 msgid "guestfs_vguuid"
18108 msgstr ""
18109
18110 #. type: verbatim
18111 #: ../src/guestfs-actions.pod:7471
18112 #, no-wrap
18113 msgid ""
18114 " char *\n"
18115 " guestfs_vguuid (guestfs_h *g,\n"
18116 "                 const char *vgname);\n"
18117 "\n"
18118 msgstr ""
18119
18120 #. type: textblock
18121 #: ../src/guestfs-actions.pod:7475 ../fish/guestfish-actions.pod:4967
18122 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18123 msgstr ""
18124
18125 #. type: =head2
18126 #: ../src/guestfs-actions.pod:7482
18127 msgid "guestfs_wait_ready"
18128 msgstr ""
18129
18130 #. type: verbatim
18131 #: ../src/guestfs-actions.pod:7484
18132 #, no-wrap
18133 msgid ""
18134 " int\n"
18135 " guestfs_wait_ready (guestfs_h *g);\n"
18136 "\n"
18137 msgstr ""
18138
18139 #. type: textblock
18140 #: ../src/guestfs-actions.pod:7487
18141 msgid "This function is a no op."
18142 msgstr ""
18143
18144 #. type: textblock
18145 #: ../src/guestfs-actions.pod:7489
18146 msgid ""
18147 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18148 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18149 "is no longer necessary because C<guestfs_launch> now does the waiting."
18150 msgstr ""
18151
18152 #. type: textblock
18153 #: ../src/guestfs-actions.pod:7494
18154 msgid ""
18155 "If you see any calls to this function in code then you can just remove them, "
18156 "unless you want to retain compatibility with older versions of the API."
18157 msgstr ""
18158
18159 #. type: textblock
18160 #: ../src/guestfs-actions.pod:7500
18161 msgid "This function is deprecated.  In new code, use the C<launch> call instead."
18162 msgstr ""
18163
18164 #. type: =head2
18165 #: ../src/guestfs-actions.pod:7509
18166 msgid "guestfs_wc_c"
18167 msgstr ""
18168
18169 #. type: verbatim
18170 #: ../src/guestfs-actions.pod:7511
18171 #, no-wrap
18172 msgid ""
18173 " int\n"
18174 " guestfs_wc_c (guestfs_h *g,\n"
18175 "               const char *path);\n"
18176 "\n"
18177 msgstr ""
18178
18179 #. type: textblock
18180 #: ../src/guestfs-actions.pod:7515 ../fish/guestfish-actions.pod:4973
18181 msgid ""
18182 "This command counts the characters in a file, using the C<wc -c> external "
18183 "command."
18184 msgstr ""
18185
18186 #. type: =head2
18187 #: ../src/guestfs-actions.pod:7522
18188 msgid "guestfs_wc_l"
18189 msgstr ""
18190
18191 #. type: verbatim
18192 #: ../src/guestfs-actions.pod:7524
18193 #, no-wrap
18194 msgid ""
18195 " int\n"
18196 " guestfs_wc_l (guestfs_h *g,\n"
18197 "               const char *path);\n"
18198 "\n"
18199 msgstr ""
18200
18201 #. type: textblock
18202 #: ../src/guestfs-actions.pod:7528 ../fish/guestfish-actions.pod:4980
18203 msgid ""
18204 "This command counts the lines in a file, using the C<wc -l> external "
18205 "command."
18206 msgstr ""
18207
18208 #. type: =head2
18209 #: ../src/guestfs-actions.pod:7535
18210 msgid "guestfs_wc_w"
18211 msgstr ""
18212
18213 #. type: verbatim
18214 #: ../src/guestfs-actions.pod:7537
18215 #, no-wrap
18216 msgid ""
18217 " int\n"
18218 " guestfs_wc_w (guestfs_h *g,\n"
18219 "               const char *path);\n"
18220 "\n"
18221 msgstr ""
18222
18223 #. type: textblock
18224 #: ../src/guestfs-actions.pod:7541 ../fish/guestfish-actions.pod:4987
18225 msgid ""
18226 "This command counts the words in a file, using the C<wc -w> external "
18227 "command."
18228 msgstr ""
18229
18230 #. type: =head2
18231 #: ../src/guestfs-actions.pod:7548
18232 msgid "guestfs_write"
18233 msgstr ""
18234
18235 #. type: verbatim
18236 #: ../src/guestfs-actions.pod:7550
18237 #, no-wrap
18238 msgid ""
18239 " int\n"
18240 " guestfs_write (guestfs_h *g,\n"
18241 "                const char *path,\n"
18242 "                const char *content,\n"
18243 "                size_t content_size);\n"
18244 "\n"
18245 msgstr ""
18246
18247 #. type: textblock
18248 #: ../src/guestfs-actions.pod:7556 ../fish/guestfish-actions.pod:4994
18249 msgid ""
18250 "This call creates a file called C<path>.  The content of the file is the "
18251 "string C<content> (which can contain any 8 bit data)."
18252 msgstr ""
18253
18254 #. type: =head2
18255 #: ../src/guestfs-actions.pod:7566
18256 msgid "guestfs_write_file"
18257 msgstr ""
18258
18259 #. type: verbatim
18260 #: ../src/guestfs-actions.pod:7568
18261 #, no-wrap
18262 msgid ""
18263 " int\n"
18264 " guestfs_write_file (guestfs_h *g,\n"
18265 "                     const char *path,\n"
18266 "                     const char *content,\n"
18267 "                     int size);\n"
18268 "\n"
18269 msgstr ""
18270
18271 #. type: textblock
18272 #: ../src/guestfs-actions.pod:7574 ../fish/guestfish-actions.pod:5004
18273 msgid ""
18274 "This call creates a file called C<path>.  The contents of the file is the "
18275 "string C<content> (which can contain any 8 bit data), with length C<size>."
18276 msgstr ""
18277
18278 #. type: textblock
18279 #: ../src/guestfs-actions.pod:7578 ../fish/guestfish-actions.pod:5008
18280 msgid ""
18281 "As a special case, if C<size> is C<0> then the length is calculated using "
18282 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18283 msgstr ""
18284
18285 #. type: textblock
18286 #: ../src/guestfs-actions.pod:7582 ../fish/guestfish-actions.pod:5012
18287 msgid ""
18288 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18289 "I<not> work, even if the length is specified."
18290 msgstr ""
18291
18292 #. type: textblock
18293 #: ../src/guestfs-actions.pod:7590 ../fish/guestfish-actions.pod:5018
18294 msgid "This function is deprecated.  In new code, use the C<write> call instead."
18295 msgstr ""
18296
18297 #. type: =head2
18298 #: ../src/guestfs-actions.pod:7599
18299 msgid "guestfs_zegrep"
18300 msgstr ""
18301
18302 #. type: verbatim
18303 #: ../src/guestfs-actions.pod:7601
18304 #, no-wrap
18305 msgid ""
18306 " char **\n"
18307 " guestfs_zegrep (guestfs_h *g,\n"
18308 "                 const char *regex,\n"
18309 "                 const char *path);\n"
18310 "\n"
18311 msgstr ""
18312
18313 #. type: textblock
18314 #: ../src/guestfs-actions.pod:7606 ../fish/guestfish-actions.pod:5029
18315 msgid "This calls the external C<zegrep> program and returns the matching lines."
18316 msgstr ""
18317
18318 #. type: =head2
18319 #: ../src/guestfs-actions.pod:7618
18320 msgid "guestfs_zegrepi"
18321 msgstr ""
18322
18323 #. type: verbatim
18324 #: ../src/guestfs-actions.pod:7620
18325 #, no-wrap
18326 msgid ""
18327 " char **\n"
18328 " guestfs_zegrepi (guestfs_h *g,\n"
18329 "                  const char *regex,\n"
18330 "                  const char *path);\n"
18331 "\n"
18332 msgstr ""
18333
18334 #. type: textblock
18335 #: ../src/guestfs-actions.pod:7625 ../fish/guestfish-actions.pod:5039
18336 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
18337 msgstr ""
18338
18339 #. type: =head2
18340 #: ../src/guestfs-actions.pod:7637
18341 msgid "guestfs_zero"
18342 msgstr ""
18343
18344 #. type: verbatim
18345 #: ../src/guestfs-actions.pod:7639
18346 #, no-wrap
18347 msgid ""
18348 " int\n"
18349 " guestfs_zero (guestfs_h *g,\n"
18350 "               const char *device);\n"
18351 "\n"
18352 msgstr ""
18353
18354 #. type: textblock
18355 #: ../src/guestfs-actions.pod:7643 ../fish/guestfish-actions.pod:5049
18356 msgid "This command writes zeroes over the first few blocks of C<device>."
18357 msgstr ""
18358
18359 #. type: textblock
18360 #: ../src/guestfs-actions.pod:7645 ../fish/guestfish-actions.pod:5051
18361 msgid ""
18362 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18363 "securely wipe the device).  It should be sufficient to remove any partition "
18364 "tables, filesystem superblocks and so on."
18365 msgstr ""
18366
18367 #. type: textblock
18368 #: ../src/guestfs-actions.pod:7649
18369 msgid ""
18370 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
18371 "C<guestfs_is_zero_device>"
18372 msgstr ""
18373
18374 #. type: =head2
18375 #: ../src/guestfs-actions.pod:7661
18376 msgid "guestfs_zero_device"
18377 msgstr ""
18378
18379 #. type: verbatim
18380 #: ../src/guestfs-actions.pod:7663
18381 #, no-wrap
18382 msgid ""
18383 " int\n"
18384 " guestfs_zero_device (guestfs_h *g,\n"
18385 "                      const char *device);\n"
18386 "\n"
18387 msgstr ""
18388
18389 #. type: textblock
18390 #: ../src/guestfs-actions.pod:7667
18391 msgid ""
18392 "This command writes zeroes over the entire C<device>.  Compare with "
18393 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18394 msgstr ""
18395
18396 #. type: textblock
18397 #: ../src/guestfs-actions.pod:7681
18398 msgid "(Added in 1.3.1)"
18399 msgstr ""
18400
18401 #. type: =head2
18402 #: ../src/guestfs-actions.pod:7683
18403 msgid "guestfs_zerofree"
18404 msgstr ""
18405
18406 #. type: verbatim
18407 #: ../src/guestfs-actions.pod:7685
18408 #, no-wrap
18409 msgid ""
18410 " int\n"
18411 " guestfs_zerofree (guestfs_h *g,\n"
18412 "                   const char *device);\n"
18413 "\n"
18414 msgstr ""
18415
18416 #. type: textblock
18417 #: ../src/guestfs-actions.pod:7689 ../fish/guestfish-actions.pod:5073
18418 msgid ""
18419 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18420 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18421 "possible to compress the filesystem more effectively."
18422 msgstr ""
18423
18424 #. type: textblock
18425 #: ../src/guestfs-actions.pod:7694 ../fish/guestfish-actions.pod:5078
18426 msgid "You should B<not> run this program if the filesystem is mounted."
18427 msgstr ""
18428
18429 #. type: textblock
18430 #: ../src/guestfs-actions.pod:7697 ../fish/guestfish-actions.pod:5081
18431 msgid ""
18432 "It is possible that using this program can damage the filesystem or data on "
18433 "the filesystem."
18434 msgstr ""
18435
18436 #. type: =head2
18437 #: ../src/guestfs-actions.pod:7704
18438 msgid "guestfs_zfgrep"
18439 msgstr ""
18440
18441 #. type: verbatim
18442 #: ../src/guestfs-actions.pod:7706
18443 #, no-wrap
18444 msgid ""
18445 " char **\n"
18446 " guestfs_zfgrep (guestfs_h *g,\n"
18447 "                 const char *pattern,\n"
18448 "                 const char *path);\n"
18449 "\n"
18450 msgstr ""
18451
18452 #. type: textblock
18453 #: ../src/guestfs-actions.pod:7711 ../fish/guestfish-actions.pod:5088
18454 msgid "This calls the external C<zfgrep> program and returns the matching lines."
18455 msgstr ""
18456
18457 #. type: =head2
18458 #: ../src/guestfs-actions.pod:7723
18459 msgid "guestfs_zfgrepi"
18460 msgstr ""
18461
18462 #. type: verbatim
18463 #: ../src/guestfs-actions.pod:7725
18464 #, no-wrap
18465 msgid ""
18466 " char **\n"
18467 " guestfs_zfgrepi (guestfs_h *g,\n"
18468 "                  const char *pattern,\n"
18469 "                  const char *path);\n"
18470 "\n"
18471 msgstr ""
18472
18473 #. type: textblock
18474 #: ../src/guestfs-actions.pod:7730 ../fish/guestfish-actions.pod:5098
18475 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
18476 msgstr ""
18477
18478 #. type: =head2
18479 #: ../src/guestfs-actions.pod:7742
18480 msgid "guestfs_zfile"
18481 msgstr ""
18482
18483 #. type: verbatim
18484 #: ../src/guestfs-actions.pod:7744
18485 #, no-wrap
18486 msgid ""
18487 " char *\n"
18488 " guestfs_zfile (guestfs_h *g,\n"
18489 "                const char *meth,\n"
18490 "                const char *path);\n"
18491 "\n"
18492 msgstr ""
18493
18494 #. type: textblock
18495 #: ../src/guestfs-actions.pod:7749 ../fish/guestfish-actions.pod:5108
18496 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
18497 msgstr ""
18498
18499 #. type: textblock
18500 #: ../src/guestfs-actions.pod:7752 ../fish/guestfish-actions.pod:5111
18501 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18502 msgstr ""
18503
18504 #. type: textblock
18505 #: ../src/guestfs-actions.pod:7754
18506 msgid ""
18507 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18508 "files."
18509 msgstr ""
18510
18511 #. type: textblock
18512 #: ../src/guestfs-actions.pod:7760 ../fish/guestfish-actions.pod:5116
18513 msgid "This function is deprecated.  In new code, use the C<file> call instead."
18514 msgstr ""
18515
18516 #. type: =head2
18517 #: ../src/guestfs-actions.pod:7769
18518 msgid "guestfs_zgrep"
18519 msgstr ""
18520
18521 #. type: verbatim
18522 #: ../src/guestfs-actions.pod:7771
18523 #, no-wrap
18524 msgid ""
18525 " char **\n"
18526 " guestfs_zgrep (guestfs_h *g,\n"
18527 "                const char *regex,\n"
18528 "                const char *path);\n"
18529 "\n"
18530 msgstr ""
18531
18532 #. type: textblock
18533 #: ../src/guestfs-actions.pod:7776 ../fish/guestfish-actions.pod:5127
18534 msgid "This calls the external C<zgrep> program and returns the matching lines."
18535 msgstr ""
18536
18537 #. type: =head2
18538 #: ../src/guestfs-actions.pod:7788
18539 msgid "guestfs_zgrepi"
18540 msgstr ""
18541
18542 #. type: verbatim
18543 #: ../src/guestfs-actions.pod:7790
18544 #, no-wrap
18545 msgid ""
18546 " char **\n"
18547 " guestfs_zgrepi (guestfs_h *g,\n"
18548 "                 const char *regex,\n"
18549 "                 const char *path);\n"
18550 "\n"
18551 msgstr ""
18552
18553 #. type: textblock
18554 #: ../src/guestfs-actions.pod:7795 ../fish/guestfish-actions.pod:5137
18555 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
18556 msgstr ""
18557
18558 #. type: =item
18559 #: ../src/guestfs-availability.pod:3
18560 msgid "B<augeas>"
18561 msgstr ""
18562
18563 #. type: textblock
18564 #: ../src/guestfs-availability.pod:5
18565 msgid ""
18566 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
18567 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
18568 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
18569 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
18570 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
18571 msgstr ""
18572
18573 #. type: =item
18574 #: ../src/guestfs-availability.pod:21
18575 msgid "B<inotify>"
18576 msgstr ""
18577
18578 #. type: textblock
18579 #: ../src/guestfs-availability.pod:23
18580 msgid ""
18581 "The following functions: L</guestfs_inotify_add_watch> "
18582 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
18583 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18584 msgstr ""
18585
18586 #. type: =item
18587 #: ../src/guestfs-availability.pod:31
18588 msgid "B<linuxfsuuid>"
18589 msgstr ""
18590
18591 #. type: textblock
18592 #: ../src/guestfs-availability.pod:33
18593 msgid ""
18594 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
18595 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18596 msgstr ""
18597
18598 #. type: =item
18599 #: ../src/guestfs-availability.pod:40
18600 msgid "B<linuxmodules>"
18601 msgstr ""
18602
18603 #. type: textblock
18604 #: ../src/guestfs-availability.pod:42
18605 msgid "The following functions: L</guestfs_modprobe>"
18606 msgstr ""
18607
18608 #. type: =item
18609 #: ../src/guestfs-availability.pod:45
18610 msgid "B<linuxxattrs>"
18611 msgstr ""
18612
18613 #. type: textblock
18614 #: ../src/guestfs-availability.pod:47
18615 msgid ""
18616 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
18617 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
18618 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
18619 "L</guestfs_setxattr>"
18620 msgstr ""
18621
18622 #. type: =item
18623 #: ../src/guestfs-availability.pod:58
18624 msgid "B<luks>"
18625 msgstr ""
18626
18627 #. type: textblock
18628 #: ../src/guestfs-availability.pod:60
18629 msgid ""
18630 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
18631 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
18632 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18633 msgstr ""
18634
18635 #. type: =item
18636 #: ../src/guestfs-availability.pod:69
18637 msgid "B<lvm2>"
18638 msgstr ""
18639
18640 #. type: textblock
18641 #: ../src/guestfs-availability.pod:71
18642 msgid ""
18643 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
18644 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
18645 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
18646 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
18647 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
18648 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
18649 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
18650 "L</guestfs_vgs_full>"
18651 msgstr ""
18652
18653 #. type: =item
18654 #: ../src/guestfs-availability.pod:94
18655 msgid "B<mknod>"
18656 msgstr ""
18657
18658 #. type: textblock
18659 #: ../src/guestfs-availability.pod:96
18660 msgid ""
18661 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
18662 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
18663 msgstr ""
18664
18665 #. type: =item
18666 #: ../src/guestfs-availability.pod:102
18667 msgid "B<ntfs3g>"
18668 msgstr ""
18669
18670 #. type: textblock
18671 #: ../src/guestfs-availability.pod:104
18672 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18673 msgstr ""
18674
18675 #. type: =item
18676 #: ../src/guestfs-availability.pod:107
18677 msgid "B<ntfsprogs>"
18678 msgstr ""
18679
18680 #. type: textblock
18681 #: ../src/guestfs-availability.pod:109
18682 msgid ""
18683 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_opts> "
18684 "L</guestfs_ntfsresize_size>"
18685 msgstr ""
18686
18687 #. type: =item
18688 #: ../src/guestfs-availability.pod:114
18689 msgid "B<realpath>"
18690 msgstr ""
18691
18692 #. type: textblock
18693 #: ../src/guestfs-availability.pod:116
18694 msgid "The following functions: L</guestfs_realpath>"
18695 msgstr ""
18696
18697 #. type: =item
18698 #: ../src/guestfs-availability.pod:119
18699 msgid "B<scrub>"
18700 msgstr ""
18701
18702 #. type: textblock
18703 #: ../src/guestfs-availability.pod:121
18704 msgid ""
18705 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
18706 "L</guestfs_scrub_freespace>"
18707 msgstr ""
18708
18709 #. type: =item
18710 #: ../src/guestfs-availability.pod:126
18711 msgid "B<selinux>"
18712 msgstr ""
18713
18714 #. type: textblock
18715 #: ../src/guestfs-availability.pod:128
18716 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18717 msgstr ""
18718
18719 #. type: =item
18720 #: ../src/guestfs-availability.pod:132
18721 msgid "B<xz>"
18722 msgstr ""
18723
18724 #. type: textblock
18725 #: ../src/guestfs-availability.pod:134
18726 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18727 msgstr ""
18728
18729 #. type: =item
18730 #: ../src/guestfs-availability.pod:138
18731 msgid "B<zerofree>"
18732 msgstr ""
18733
18734 #. type: textblock
18735 #: ../src/guestfs-availability.pod:140
18736 msgid "The following functions: L</guestfs_zerofree>"
18737 msgstr ""
18738
18739 #. type: =head2
18740 #: ../src/guestfs-structs.pod:1
18741 msgid "guestfs_int_bool"
18742 msgstr ""
18743
18744 #. type: verbatim
18745 #: ../src/guestfs-structs.pod:3
18746 #, no-wrap
18747 msgid ""
18748 " struct guestfs_int_bool {\n"
18749 "   int32_t i;\n"
18750 "   int32_t b;\n"
18751 " };\n"
18752 " \n"
18753 msgstr ""
18754
18755 #. type: verbatim
18756 #: ../src/guestfs-structs.pod:8
18757 #, no-wrap
18758 msgid ""
18759 " struct guestfs_int_bool_list {\n"
18760 "   uint32_t len; /* Number of elements in list. */\n"
18761 "   struct guestfs_int_bool *val; /* Elements. */\n"
18762 " };\n"
18763 " \n"
18764 msgstr ""
18765
18766 #. type: verbatim
18767 #: ../src/guestfs-structs.pod:13
18768 #, no-wrap
18769 msgid ""
18770 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18771 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18772 "\n"
18773 msgstr ""
18774
18775 #. type: =head2
18776 #: ../src/guestfs-structs.pod:16
18777 msgid "guestfs_lvm_pv"
18778 msgstr ""
18779
18780 #. type: verbatim
18781 #: ../src/guestfs-structs.pod:18
18782 #, no-wrap
18783 msgid ""
18784 " struct guestfs_lvm_pv {\n"
18785 "   char *pv_name;\n"
18786 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18787 "*/\n"
18788 "   char pv_uuid[32];\n"
18789 "   char *pv_fmt;\n"
18790 "   uint64_t pv_size;\n"
18791 "   uint64_t dev_size;\n"
18792 "   uint64_t pv_free;\n"
18793 "   uint64_t pv_used;\n"
18794 "   char *pv_attr;\n"
18795 "   int64_t pv_pe_count;\n"
18796 "   int64_t pv_pe_alloc_count;\n"
18797 "   char *pv_tags;\n"
18798 "   uint64_t pe_start;\n"
18799 "   int64_t pv_mda_count;\n"
18800 "   uint64_t pv_mda_free;\n"
18801 " };\n"
18802 " \n"
18803 msgstr ""
18804
18805 #. type: verbatim
18806 #: ../src/guestfs-structs.pod:36
18807 #, no-wrap
18808 msgid ""
18809 " struct guestfs_lvm_pv_list {\n"
18810 "   uint32_t len; /* Number of elements in list. */\n"
18811 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18812 " };\n"
18813 " \n"
18814 msgstr ""
18815
18816 #. type: verbatim
18817 #: ../src/guestfs-structs.pod:41
18818 #, no-wrap
18819 msgid ""
18820 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18821 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18822 "\n"
18823 msgstr ""
18824
18825 #. type: =head2
18826 #: ../src/guestfs-structs.pod:44
18827 msgid "guestfs_lvm_vg"
18828 msgstr ""
18829
18830 #. type: verbatim
18831 #: ../src/guestfs-structs.pod:46
18832 #, no-wrap
18833 msgid ""
18834 " struct guestfs_lvm_vg {\n"
18835 "   char *vg_name;\n"
18836 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18837 "*/\n"
18838 "   char vg_uuid[32];\n"
18839 "   char *vg_fmt;\n"
18840 "   char *vg_attr;\n"
18841 "   uint64_t vg_size;\n"
18842 "   uint64_t vg_free;\n"
18843 "   char *vg_sysid;\n"
18844 "   uint64_t vg_extent_size;\n"
18845 "   int64_t vg_extent_count;\n"
18846 "   int64_t vg_free_count;\n"
18847 "   int64_t max_lv;\n"
18848 "   int64_t max_pv;\n"
18849 "   int64_t pv_count;\n"
18850 "   int64_t lv_count;\n"
18851 "   int64_t snap_count;\n"
18852 "   int64_t vg_seqno;\n"
18853 "   char *vg_tags;\n"
18854 "   int64_t vg_mda_count;\n"
18855 "   uint64_t vg_mda_free;\n"
18856 " };\n"
18857 " \n"
18858 msgstr ""
18859
18860 #. type: verbatim
18861 #: ../src/guestfs-structs.pod:69
18862 #, no-wrap
18863 msgid ""
18864 " struct guestfs_lvm_vg_list {\n"
18865 "   uint32_t len; /* Number of elements in list. */\n"
18866 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18867 " };\n"
18868 " \n"
18869 msgstr ""
18870
18871 #. type: verbatim
18872 #: ../src/guestfs-structs.pod:74
18873 #, no-wrap
18874 msgid ""
18875 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18876 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18877 "\n"
18878 msgstr ""
18879
18880 #. type: =head2
18881 #: ../src/guestfs-structs.pod:77
18882 msgid "guestfs_lvm_lv"
18883 msgstr ""
18884
18885 #. type: verbatim
18886 #: ../src/guestfs-structs.pod:79
18887 #, no-wrap
18888 msgid ""
18889 " struct guestfs_lvm_lv {\n"
18890 "   char *lv_name;\n"
18891 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18892 "*/\n"
18893 "   char lv_uuid[32];\n"
18894 "   char *lv_attr;\n"
18895 "   int64_t lv_major;\n"
18896 "   int64_t lv_minor;\n"
18897 "   int64_t lv_kernel_major;\n"
18898 "   int64_t lv_kernel_minor;\n"
18899 "   uint64_t lv_size;\n"
18900 "   int64_t seg_count;\n"
18901 "   char *origin;\n"
18902 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18903 "   float snap_percent;\n"
18904 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18905 "   float copy_percent;\n"
18906 "   char *move_pv;\n"
18907 "   char *lv_tags;\n"
18908 "   char *mirror_log;\n"
18909 "   char *modules;\n"
18910 " };\n"
18911 " \n"
18912 msgstr ""
18913
18914 #. type: verbatim
18915 #: ../src/guestfs-structs.pod:101
18916 #, no-wrap
18917 msgid ""
18918 " struct guestfs_lvm_lv_list {\n"
18919 "   uint32_t len; /* Number of elements in list. */\n"
18920 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18921 " };\n"
18922 " \n"
18923 msgstr ""
18924
18925 #. type: verbatim
18926 #: ../src/guestfs-structs.pod:106
18927 #, no-wrap
18928 msgid ""
18929 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18930 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18931 "\n"
18932 msgstr ""
18933
18934 #. type: verbatim
18935 #: ../src/guestfs-structs.pod:111
18936 #, no-wrap
18937 msgid ""
18938 " struct guestfs_stat {\n"
18939 "   int64_t dev;\n"
18940 "   int64_t ino;\n"
18941 "   int64_t mode;\n"
18942 "   int64_t nlink;\n"
18943 "   int64_t uid;\n"
18944 "   int64_t gid;\n"
18945 "   int64_t rdev;\n"
18946 "   int64_t size;\n"
18947 "   int64_t blksize;\n"
18948 "   int64_t blocks;\n"
18949 "   int64_t atime;\n"
18950 "   int64_t mtime;\n"
18951 "   int64_t ctime;\n"
18952 " };\n"
18953 " \n"
18954 msgstr ""
18955
18956 #. type: verbatim
18957 #: ../src/guestfs-structs.pod:127
18958 #, no-wrap
18959 msgid ""
18960 " struct guestfs_stat_list {\n"
18961 "   uint32_t len; /* Number of elements in list. */\n"
18962 "   struct guestfs_stat *val; /* Elements. */\n"
18963 " };\n"
18964 " \n"
18965 msgstr ""
18966
18967 #. type: verbatim
18968 #: ../src/guestfs-structs.pod:132
18969 #, no-wrap
18970 msgid ""
18971 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
18972 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
18973 "\n"
18974 msgstr ""
18975
18976 #. type: verbatim
18977 #: ../src/guestfs-structs.pod:137
18978 #, no-wrap
18979 msgid ""
18980 " struct guestfs_statvfs {\n"
18981 "   int64_t bsize;\n"
18982 "   int64_t frsize;\n"
18983 "   int64_t blocks;\n"
18984 "   int64_t bfree;\n"
18985 "   int64_t bavail;\n"
18986 "   int64_t files;\n"
18987 "   int64_t ffree;\n"
18988 "   int64_t favail;\n"
18989 "   int64_t fsid;\n"
18990 "   int64_t flag;\n"
18991 "   int64_t namemax;\n"
18992 " };\n"
18993 " \n"
18994 msgstr ""
18995
18996 #. type: verbatim
18997 #: ../src/guestfs-structs.pod:151
18998 #, no-wrap
18999 msgid ""
19000 " struct guestfs_statvfs_list {\n"
19001 "   uint32_t len; /* Number of elements in list. */\n"
19002 "   struct guestfs_statvfs *val; /* Elements. */\n"
19003 " };\n"
19004 " \n"
19005 msgstr ""
19006
19007 #. type: verbatim
19008 #: ../src/guestfs-structs.pod:156
19009 #, no-wrap
19010 msgid ""
19011 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19012 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19013 "\n"
19014 msgstr ""
19015
19016 #. type: =head2
19017 #: ../src/guestfs-structs.pod:159
19018 msgid "guestfs_dirent"
19019 msgstr ""
19020
19021 #. type: verbatim
19022 #: ../src/guestfs-structs.pod:161
19023 #, no-wrap
19024 msgid ""
19025 " struct guestfs_dirent {\n"
19026 "   int64_t ino;\n"
19027 "   char ftyp;\n"
19028 "   char *name;\n"
19029 " };\n"
19030 " \n"
19031 msgstr ""
19032
19033 #. type: verbatim
19034 #: ../src/guestfs-structs.pod:167
19035 #, no-wrap
19036 msgid ""
19037 " struct guestfs_dirent_list {\n"
19038 "   uint32_t len; /* Number of elements in list. */\n"
19039 "   struct guestfs_dirent *val; /* Elements. */\n"
19040 " };\n"
19041 " \n"
19042 msgstr ""
19043
19044 #. type: verbatim
19045 #: ../src/guestfs-structs.pod:172
19046 #, no-wrap
19047 msgid ""
19048 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19049 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19050 "\n"
19051 msgstr ""
19052
19053 #. type: verbatim
19054 #: ../src/guestfs-structs.pod:177
19055 #, no-wrap
19056 msgid ""
19057 " struct guestfs_version {\n"
19058 "   int64_t major;\n"
19059 "   int64_t minor;\n"
19060 "   int64_t release;\n"
19061 "   char *extra;\n"
19062 " };\n"
19063 " \n"
19064 msgstr ""
19065
19066 #. type: verbatim
19067 #: ../src/guestfs-structs.pod:184
19068 #, no-wrap
19069 msgid ""
19070 " struct guestfs_version_list {\n"
19071 "   uint32_t len; /* Number of elements in list. */\n"
19072 "   struct guestfs_version *val; /* Elements. */\n"
19073 " };\n"
19074 " \n"
19075 msgstr ""
19076
19077 #. type: verbatim
19078 #: ../src/guestfs-structs.pod:189
19079 #, no-wrap
19080 msgid ""
19081 " void guestfs_free_version (struct guestfs_free_version *);\n"
19082 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19083 "\n"
19084 msgstr ""
19085
19086 #. type: =head2
19087 #: ../src/guestfs-structs.pod:192
19088 msgid "guestfs_xattr"
19089 msgstr ""
19090
19091 #. type: verbatim
19092 #: ../src/guestfs-structs.pod:194
19093 #, no-wrap
19094 msgid ""
19095 " struct guestfs_xattr {\n"
19096 "   char *attrname;\n"
19097 "   /* The next two fields describe a byte array. */\n"
19098 "   uint32_t attrval_len;\n"
19099 "   char *attrval;\n"
19100 " };\n"
19101 " \n"
19102 msgstr ""
19103
19104 #. type: verbatim
19105 #: ../src/guestfs-structs.pod:201
19106 #, no-wrap
19107 msgid ""
19108 " struct guestfs_xattr_list {\n"
19109 "   uint32_t len; /* Number of elements in list. */\n"
19110 "   struct guestfs_xattr *val; /* Elements. */\n"
19111 " };\n"
19112 " \n"
19113 msgstr ""
19114
19115 #. type: verbatim
19116 #: ../src/guestfs-structs.pod:206
19117 #, no-wrap
19118 msgid ""
19119 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19120 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19121 "\n"
19122 msgstr ""
19123
19124 #. type: =head2
19125 #: ../src/guestfs-structs.pod:209
19126 msgid "guestfs_inotify_event"
19127 msgstr ""
19128
19129 #. type: verbatim
19130 #: ../src/guestfs-structs.pod:211
19131 #, no-wrap
19132 msgid ""
19133 " struct guestfs_inotify_event {\n"
19134 "   int64_t in_wd;\n"
19135 "   uint32_t in_mask;\n"
19136 "   uint32_t in_cookie;\n"
19137 "   char *in_name;\n"
19138 " };\n"
19139 " \n"
19140 msgstr ""
19141
19142 #. type: verbatim
19143 #: ../src/guestfs-structs.pod:218
19144 #, no-wrap
19145 msgid ""
19146 " struct guestfs_inotify_event_list {\n"
19147 "   uint32_t len; /* Number of elements in list. */\n"
19148 "   struct guestfs_inotify_event *val; /* Elements. */\n"
19149 " };\n"
19150 " \n"
19151 msgstr ""
19152
19153 #. type: verbatim
19154 #: ../src/guestfs-structs.pod:223
19155 #, no-wrap
19156 msgid ""
19157 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
19158 " void guestfs_free_inotify_event_list (struct "
19159 "guestfs_free_inotify_event_list *);\n"
19160 "\n"
19161 msgstr ""
19162
19163 #. type: =head2
19164 #: ../src/guestfs-structs.pod:226
19165 msgid "guestfs_partition"
19166 msgstr ""
19167
19168 #. type: verbatim
19169 #: ../src/guestfs-structs.pod:228
19170 #, no-wrap
19171 msgid ""
19172 " struct guestfs_partition {\n"
19173 "   int32_t part_num;\n"
19174 "   uint64_t part_start;\n"
19175 "   uint64_t part_end;\n"
19176 "   uint64_t part_size;\n"
19177 " };\n"
19178 " \n"
19179 msgstr ""
19180
19181 #. type: verbatim
19182 #: ../src/guestfs-structs.pod:235
19183 #, no-wrap
19184 msgid ""
19185 " struct guestfs_partition_list {\n"
19186 "   uint32_t len; /* Number of elements in list. */\n"
19187 "   struct guestfs_partition *val; /* Elements. */\n"
19188 " };\n"
19189 " \n"
19190 msgstr ""
19191
19192 #. type: verbatim
19193 #: ../src/guestfs-structs.pod:240
19194 #, no-wrap
19195 msgid ""
19196 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19197 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19198 "\n"
19199 msgstr ""
19200
19201 #. type: =head2
19202 #: ../src/guestfs-structs.pod:243
19203 msgid "guestfs_application"
19204 msgstr ""
19205
19206 #. type: verbatim
19207 #: ../src/guestfs-structs.pod:245
19208 #, no-wrap
19209 msgid ""
19210 " struct guestfs_application {\n"
19211 "   char *app_name;\n"
19212 "   char *app_display_name;\n"
19213 "   int32_t app_epoch;\n"
19214 "   char *app_version;\n"
19215 "   char *app_release;\n"
19216 "   char *app_install_path;\n"
19217 "   char *app_trans_path;\n"
19218 "   char *app_publisher;\n"
19219 "   char *app_url;\n"
19220 "   char *app_source_package;\n"
19221 "   char *app_summary;\n"
19222 "   char *app_description;\n"
19223 " };\n"
19224 " \n"
19225 msgstr ""
19226
19227 #. type: verbatim
19228 #: ../src/guestfs-structs.pod:260
19229 #, no-wrap
19230 msgid ""
19231 " struct guestfs_application_list {\n"
19232 "   uint32_t len; /* Number of elements in list. */\n"
19233 "   struct guestfs_application *val; /* Elements. */\n"
19234 " };\n"
19235 " \n"
19236 msgstr ""
19237
19238 #. type: verbatim
19239 #: ../src/guestfs-structs.pod:265
19240 #, no-wrap
19241 msgid ""
19242 " void guestfs_free_application (struct guestfs_free_application *);\n"
19243 " void guestfs_free_application_list (struct guestfs_free_application_list "
19244 "*);\n"
19245 "\n"
19246 msgstr ""
19247
19248 #. type: textblock
19249 #: ../fish/guestfish.pod:5
19250 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19251 msgstr ""
19252
19253 #. type: verbatim
19254 #: ../fish/guestfish.pod:9
19255 #, no-wrap
19256 msgid ""
19257 " guestfish [--options] [commands]\n"
19258 "\n"
19259 msgstr ""
19260
19261 #. type: verbatim
19262 #: ../fish/guestfish.pod:11
19263 #, no-wrap
19264 msgid ""
19265 " guestfish\n"
19266 "\n"
19267 msgstr ""
19268
19269 #. type: verbatim
19270 #: ../fish/guestfish.pod:13
19271 #, no-wrap
19272 msgid ""
19273 " guestfish [--ro|--rw] -a disk.img\n"
19274 "\n"
19275 msgstr ""
19276
19277 #. type: verbatim
19278 #: ../fish/guestfish.pod:15
19279 #, no-wrap
19280 msgid ""
19281 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19282 "\n"
19283 msgstr ""
19284
19285 #. type: verbatim
19286 #: ../fish/guestfish.pod:17
19287 #, no-wrap
19288 msgid ""
19289 " guestfish -d libvirt-domain\n"
19290 "\n"
19291 msgstr ""
19292
19293 #. type: verbatim
19294 #: ../fish/guestfish.pod:19
19295 #, no-wrap
19296 msgid ""
19297 " guestfish [--ro|--rw] -a disk.img -i\n"
19298 "\n"
19299 msgstr ""
19300
19301 #. type: verbatim
19302 #: ../fish/guestfish.pod:21
19303 #, no-wrap
19304 msgid ""
19305 " guestfish -d libvirt-domain -i\n"
19306 "\n"
19307 msgstr ""
19308
19309 #. type: =head1
19310 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19311 msgid "WARNING"
19312 msgstr ""
19313
19314 #. type: textblock
19315 #: ../fish/guestfish.pod:25
19316 msgid ""
19317 "Using guestfish in read/write mode on live virtual machines can be "
19318 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19319 "option to use guestfish safely if the disk image or virtual machine might be "
19320 "live."
19321 msgstr ""
19322
19323 #. type: textblock
19324 #: ../fish/guestfish.pod:32
19325 msgid ""
19326 "Guestfish is a shell and command-line tool for examining and modifying "
19327 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19328 "functionality of the guestfs API, see L<guestfs(3)>."
19329 msgstr ""
19330
19331 #. type: textblock
19332 #: ../fish/guestfish.pod:36
19333 msgid ""
19334 "Guestfish gives you structured access to the libguestfs API, from shell "
19335 "scripts or the command line or interactively.  If you want to rescue a "
19336 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19337 "command."
19338 msgstr ""
19339
19340 #. type: =head1
19341 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949 ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
19342 msgid "EXAMPLES"
19343 msgstr ""
19344
19345 #. type: =head2
19346 #: ../fish/guestfish.pod:43
19347 msgid "As an interactive shell"
19348 msgstr ""
19349
19350 #. type: verbatim
19351 #: ../fish/guestfish.pod:45
19352 #, no-wrap
19353 msgid ""
19354 " $ guestfish\n"
19355 " \n"
19356 msgstr ""
19357
19358 #. type: verbatim
19359 #: ../fish/guestfish.pod:47
19360 #, no-wrap
19361 msgid ""
19362 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19363 " editing virtual machine filesystems.\n"
19364 " \n"
19365 msgstr ""
19366
19367 #. type: verbatim
19368 #: ../fish/guestfish.pod:50
19369 #, no-wrap
19370 msgid ""
19371 " Type: 'help' for a list of commands\n"
19372 "       'man' to read the manual\n"
19373 "       'quit' to quit the shell\n"
19374 " \n"
19375 msgstr ""
19376
19377 #. type: verbatim
19378 #: ../fish/guestfish.pod:54
19379 #, no-wrap
19380 msgid ""
19381 " ><fs> add-ro disk.img\n"
19382 " ><fs> run\n"
19383 " ><fs> list-filesystems\n"
19384 " /dev/sda1: ext4\n"
19385 " /dev/vg_guest/lv_root: ext4\n"
19386 " /dev/vg_guest/lv_swap: swap\n"
19387 " ><fs> mount /dev/vg_guest/lv_root /\n"
19388 " ><fs> cat /etc/fstab\n"
19389 " # /etc/fstab\n"
19390 " # Created by anaconda\n"
19391 " [...]\n"
19392 " ><fs> exit\n"
19393 "\n"
19394 msgstr ""
19395
19396 #. type: =head2
19397 #: ../fish/guestfish.pod:67
19398 msgid "From shell scripts"
19399 msgstr ""
19400
19401 #. type: textblock
19402 #: ../fish/guestfish.pod:69
19403 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19404 msgstr ""
19405
19406 #. type: verbatim
19407 #: ../fish/guestfish.pod:71
19408 #, no-wrap
19409 msgid ""
19410 " guestfish <<_EOF_\n"
19411 " add disk.img\n"
19412 " run\n"
19413 " mount /dev/vg_guest/lv_root /\n"
19414 " write /etc/motd \"Welcome, new users\"\n"
19415 " _EOF_\n"
19416 "\n"
19417 msgstr ""
19418
19419 #. type: textblock
19420 #: ../fish/guestfish.pod:78
19421 msgid "List the LVM logical volumes in a disk image:"
19422 msgstr ""
19423
19424 #. type: verbatim
19425 #: ../fish/guestfish.pod:80
19426 #, no-wrap
19427 msgid ""
19428 " guestfish -a disk.img --ro <<_EOF_\n"
19429 " run\n"
19430 " lvs\n"
19431 " _EOF_\n"
19432 "\n"
19433 msgstr ""
19434
19435 #. type: textblock
19436 #: ../fish/guestfish.pod:85
19437 msgid "List all the filesystems in a disk image:"
19438 msgstr ""
19439
19440 #. type: verbatim
19441 #: ../fish/guestfish.pod:87
19442 #, no-wrap
19443 msgid ""
19444 " guestfish -a disk.img --ro <<_EOF_\n"
19445 " run\n"
19446 " list-filesystems\n"
19447 " _EOF_\n"
19448 "\n"
19449 msgstr ""
19450
19451 #. type: =head2
19452 #: ../fish/guestfish.pod:92
19453 msgid "On one command line"
19454 msgstr ""
19455
19456 #. type: textblock
19457 #: ../fish/guestfish.pod:94
19458 msgid "Update C</etc/resolv.conf> in a guest:"
19459 msgstr ""
19460
19461 #. type: verbatim
19462 #: ../fish/guestfish.pod:96
19463 #, no-wrap
19464 msgid ""
19465 " guestfish \\\n"
19466 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19467 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19468 "\n"
19469 msgstr ""
19470
19471 #. type: textblock
19472 #: ../fish/guestfish.pod:100
19473 msgid "Edit C</boot/grub/grub.conf> interactively:"
19474 msgstr ""
19475
19476 #. type: verbatim
19477 #: ../fish/guestfish.pod:102
19478 #, no-wrap
19479 msgid ""
19480 " guestfish --rw --add disk.img \\\n"
19481 "   --mount /dev/vg_guest/lv_root \\\n"
19482 "   --mount /dev/sda1:/boot \\\n"
19483 "   edit /boot/grub/grub.conf\n"
19484 "\n"
19485 msgstr ""
19486
19487 #. type: =head2
19488 #: ../fish/guestfish.pod:107
19489 msgid "Mount disks automatically"
19490 msgstr ""
19491
19492 #. type: textblock
19493 #: ../fish/guestfish.pod:109
19494 msgid ""
19495 "Use the I<-i> option to automatically mount the disks from a virtual "
19496 "machine:"
19497 msgstr ""
19498
19499 #. type: verbatim
19500 #: ../fish/guestfish.pod:112
19501 #, no-wrap
19502 msgid ""
19503 " guestfish --ro -a disk.img -i cat /etc/group\n"
19504 "\n"
19505 msgstr ""
19506
19507 #. type: verbatim
19508 #: ../fish/guestfish.pod:114
19509 #, no-wrap
19510 msgid ""
19511 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19512 "\n"
19513 msgstr ""
19514
19515 #. type: textblock
19516 #: ../fish/guestfish.pod:116
19517 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19518 msgstr ""
19519
19520 #. type: verbatim
19521 #: ../fish/guestfish.pod:118
19522 #, no-wrap
19523 msgid ""
19524 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19525 "\n"
19526 msgstr ""
19527
19528 #. type: =head2
19529 #: ../fish/guestfish.pod:120
19530 msgid "As a script interpreter"
19531 msgstr ""
19532
19533 #. type: textblock
19534 #: ../fish/guestfish.pod:122
19535 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19536 msgstr ""
19537
19538 #. type: verbatim
19539 #: ../fish/guestfish.pod:124
19540 #, no-wrap
19541 msgid ""
19542 " #!/usr/bin/guestfish -f\n"
19543 " sparse test1.img 100M\n"
19544 " run\n"
19545 " part-disk /dev/sda mbr\n"
19546 " mkfs ext2 /dev/sda1\n"
19547 "\n"
19548 msgstr ""
19549
19550 #. type: =head2
19551 #: ../fish/guestfish.pod:130
19552 msgid "Start with a prepared disk"
19553 msgstr ""
19554
19555 #. type: textblock
19556 #: ../fish/guestfish.pod:132
19557 msgid ""
19558 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19559 "single ext2-formatted partition:"
19560 msgstr ""
19561
19562 #. type: verbatim
19563 #: ../fish/guestfish.pod:135
19564 #, no-wrap
19565 msgid ""
19566 " guestfish -N fs\n"
19567 "\n"
19568 msgstr ""
19569
19570 #. type: textblock
19571 #: ../fish/guestfish.pod:137
19572 msgid "To list what is available do:"
19573 msgstr ""
19574
19575 #. type: verbatim
19576 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
19577 #, no-wrap
19578 msgid ""
19579 " guestfish -N help | less\n"
19580 "\n"
19581 msgstr ""
19582
19583 #. type: =head2
19584 #: ../fish/guestfish.pod:141
19585 msgid "Remote control"
19586 msgstr ""
19587
19588 #. type: verbatim
19589 #: ../fish/guestfish.pod:143
19590 #, no-wrap
19591 msgid ""
19592 " eval \"`guestfish --listen`\"\n"
19593 " guestfish --remote add-ro disk.img\n"
19594 " guestfish --remote run\n"
19595 " guestfish --remote lvs\n"
19596 "\n"
19597 msgstr ""
19598
19599 #. type: =head1
19600 #: ../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
19601 msgid "OPTIONS"
19602 msgstr ""
19603
19604 #. type: =item
19605 #: ../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
19606 msgid "B<--help>"
19607 msgstr ""
19608
19609 #. type: textblock
19610 #: ../fish/guestfish.pod:154
19611 msgid "Displays general help on options."
19612 msgstr ""
19613
19614 #. type: =item
19615 #: ../fish/guestfish.pod:156
19616 msgid "B<-h>"
19617 msgstr ""
19618
19619 #. type: =item
19620 #: ../fish/guestfish.pod:158
19621 msgid "B<--cmd-help>"
19622 msgstr ""
19623
19624 #. type: textblock
19625 #: ../fish/guestfish.pod:160
19626 msgid "Lists all available guestfish commands."
19627 msgstr ""
19628
19629 #. type: =item
19630 #: ../fish/guestfish.pod:162
19631 msgid "B<-h cmd>"
19632 msgstr ""
19633
19634 #. type: =item
19635 #: ../fish/guestfish.pod:164
19636 msgid "B<--cmd-help cmd>"
19637 msgstr ""
19638
19639 #. type: textblock
19640 #: ../fish/guestfish.pod:166
19641 msgid "Displays detailed help on a single command C<cmd>."
19642 msgstr ""
19643
19644 #. type: =item
19645 #: ../fish/guestfish.pod:168
19646 msgid "B<-a image>"
19647 msgstr ""
19648
19649 #. type: =item
19650 #: ../fish/guestfish.pod:170
19651 msgid "B<--add image>"
19652 msgstr ""
19653
19654 #. type: textblock
19655 #: ../fish/guestfish.pod:172
19656 msgid "Add a block device or virtual machine image to the shell."
19657 msgstr ""
19658
19659 #. type: textblock
19660 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
19661 msgid ""
19662 "The format of the disk image is auto-detected.  To override this and force a "
19663 "particular format use the I<--format=..> option."
19664 msgstr ""
19665
19666 #. type: textblock
19667 #: ../fish/guestfish.pod:177
19668 msgid ""
19669 "Using this flag is mostly equivalent to using the C<add> command, with "
19670 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19671 "the I<--format=...> flag was given."
19672 msgstr ""
19673
19674 #. type: =item
19675 #: ../fish/guestfish.pod:181
19676 msgid "B<-c URI>"
19677 msgstr ""
19678
19679 #. type: =item
19680 #: ../fish/guestfish.pod:183
19681 msgid "B<--connect URI>"
19682 msgstr ""
19683
19684 #. type: textblock
19685 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
19686 msgid ""
19687 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19688 "URI to use.  The default is to use the default libvirt connection."
19689 msgstr ""
19690
19691 #. type: =item
19692 #: ../fish/guestfish.pod:189
19693 msgid "B<--csh>"
19694 msgstr ""
19695
19696 #. type: textblock
19697 #: ../fish/guestfish.pod:191
19698 msgid ""
19699 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19700 "section L</REMOTE CONTROL AND CSH> below."
19701 msgstr ""
19702
19703 #. type: =item
19704 #: ../fish/guestfish.pod:194
19705 msgid "B<-d libvirt-domain>"
19706 msgstr ""
19707
19708 #. type: =item
19709 #: ../fish/guestfish.pod:196
19710 msgid "B<--domain libvirt-domain>"
19711 msgstr ""
19712
19713 #. type: textblock
19714 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
19715 msgid ""
19716 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19717 "used, then any libvirt domain can be used.  However in write mode, only "
19718 "libvirt domains which are shut down can be named here."
19719 msgstr ""
19720
19721 #. type: textblock
19722 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
19723 msgid "Domain UUIDs can be used instead of names."
19724 msgstr ""
19725
19726 #. type: textblock
19727 #: ../fish/guestfish.pod:204
19728 msgid ""
19729 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19730 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19731 "if the I<--format:...> flag was given."
19732 msgstr ""
19733
19734 #. type: =item
19735 #: ../fish/guestfish.pod:208
19736 msgid "B<-D>"
19737 msgstr ""
19738
19739 #. type: =item
19740 #: ../fish/guestfish.pod:210
19741 msgid "B<--no-dest-paths>"
19742 msgstr ""
19743
19744 #. type: textblock
19745 #: ../fish/guestfish.pod:212
19746 msgid ""
19747 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19748 "to hit the tab key to complete paths on the guest filesystem, but this "
19749 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19750 "allow this feature to be disabled."
19751 msgstr ""
19752
19753 #. type: =item
19754 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
19755 msgid "B<--echo-keys>"
19756 msgstr ""
19757
19758 #. type: textblock
19759 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
19760 msgid ""
19761 "When prompting for keys and passphrases, guestfish normally turns echoing "
19762 "off so you cannot see what you are typing.  If you are not worried about "
19763 "Tempest attacks and there is no one else in the room you can specify this "
19764 "flag to see what you are typing."
19765 msgstr ""
19766
19767 #. type: =item
19768 #: ../fish/guestfish.pod:224
19769 msgid "B<-f file>"
19770 msgstr ""
19771
19772 #. type: =item
19773 #: ../fish/guestfish.pod:226
19774 msgid "B<--file file>"
19775 msgstr ""
19776
19777 #. type: textblock
19778 #: ../fish/guestfish.pod:228
19779 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19780 msgstr ""
19781
19782 #. type: verbatim
19783 #: ../fish/guestfish.pod:231
19784 #, no-wrap
19785 msgid ""
19786 " #!/usr/bin/guestfish -f\n"
19787 "\n"
19788 msgstr ""
19789
19790 #. type: =item
19791 #: ../fish/guestfish.pod:233
19792 msgid "B<--format=raw|qcow2|..>"
19793 msgstr ""
19794
19795 #. type: =item
19796 #: ../fish/guestfish.pod:235
19797 msgid "B<--format>"
19798 msgstr ""
19799
19800 #. type: textblock
19801 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
19802 msgid ""
19803 "The default for the I<-a> option is to auto-detect the format of the disk "
19804 "image.  Using this forces the disk format for I<-a> options which follow on "
19805 "the command line.  Using I<--format> with no argument switches back to "
19806 "auto-detection for subsequent I<-a> options."
19807 msgstr ""
19808
19809 #. type: verbatim
19810 #: ../fish/guestfish.pod:244
19811 #, no-wrap
19812 msgid ""
19813 " guestfish --format=raw -a disk.img\n"
19814 "\n"
19815 msgstr ""
19816
19817 #. type: textblock
19818 #: ../fish/guestfish.pod:246
19819 msgid "forces raw format (no auto-detection) for C<disk.img>."
19820 msgstr ""
19821
19822 #. type: verbatim
19823 #: ../fish/guestfish.pod:248
19824 #, no-wrap
19825 msgid ""
19826 " guestfish --format=raw -a disk.img --format -a another.img\n"
19827 "\n"
19828 msgstr ""
19829
19830 #. type: textblock
19831 #: ../fish/guestfish.pod:250
19832 msgid ""
19833 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
19834 "auto-detection for C<another.img>."
19835 msgstr ""
19836
19837 #. type: textblock
19838 #: ../fish/guestfish.pod:253
19839 msgid ""
19840 "If you have untrusted raw-format guest disk images, you should use this "
19841 "option to specify the disk format.  This avoids a possible security problem "
19842 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19843 msgstr ""
19844
19845 #. type: =item
19846 #: ../fish/guestfish.pod:258
19847 msgid "B<-i>"
19848 msgstr ""
19849
19850 #. type: =item
19851 #: ../fish/guestfish.pod:260
19852 msgid "B<--inspector>"
19853 msgstr ""
19854
19855 #. type: textblock
19856 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
19857 msgid ""
19858 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19859 "system and mount filesystems as they would be mounted on the real virtual "
19860 "machine."
19861 msgstr ""
19862
19863 #. type: textblock
19864 #: ../fish/guestfish.pod:266
19865 msgid "Typical usage is either:"
19866 msgstr ""
19867
19868 #. type: verbatim
19869 #: ../fish/guestfish.pod:268
19870 #, no-wrap
19871 msgid ""
19872 " guestfish -d myguest -i\n"
19873 "\n"
19874 msgstr ""
19875
19876 #. type: textblock
19877 #: ../fish/guestfish.pod:270
19878 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19879 msgstr ""
19880
19881 #. type: verbatim
19882 #: ../fish/guestfish.pod:272
19883 #, no-wrap
19884 msgid ""
19885 " guestfish --ro -d myguest -i\n"
19886 "\n"
19887 msgstr ""
19888
19889 #. type: textblock
19890 #: ../fish/guestfish.pod:274
19891 msgid "(for active domains, readonly), or specify the block device directly:"
19892 msgstr ""
19893
19894 #. type: verbatim
19895 #: ../fish/guestfish.pod:276
19896 #, no-wrap
19897 msgid ""
19898 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19899 "\n"
19900 msgstr ""
19901
19902 #. type: textblock
19903 #: ../fish/guestfish.pod:278
19904 msgid ""
19905 "Note that the command line syntax changed slightly over older versions of "
19906 "guestfish.  You can still use the old syntax:"
19907 msgstr ""
19908
19909 #. type: verbatim
19910 #: ../fish/guestfish.pod:281
19911 #, no-wrap
19912 msgid ""
19913 " guestfish [--ro] -i disk.img\n"
19914 "\n"
19915 msgstr ""
19916
19917 #. type: verbatim
19918 #: ../fish/guestfish.pod:283
19919 #, no-wrap
19920 msgid ""
19921 " guestfish [--ro] -i libvirt-domain\n"
19922 "\n"
19923 msgstr ""
19924
19925 #. type: textblock
19926 #: ../fish/guestfish.pod:285
19927 msgid ""
19928 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19929 "then using other commands to mount the filesystems that were found."
19930 msgstr ""
19931
19932 #. type: =item
19933 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
19934 msgid "B<--keys-from-stdin>"
19935 msgstr ""
19936
19937 #. type: textblock
19938 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
19939 msgid ""
19940 "Read key or passphrase parameters from stdin.  The default is to try to read "
19941 "passphrases from the user by opening C</dev/tty>."
19942 msgstr ""
19943
19944 #. type: =item
19945 #: ../fish/guestfish.pod:294
19946 msgid "B<--listen>"
19947 msgstr ""
19948
19949 #. type: textblock
19950 #: ../fish/guestfish.pod:296
19951 msgid ""
19952 "Fork into the background and listen for remote commands.  See section "
19953 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
19954 msgstr ""
19955
19956 #. type: =item
19957 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
19958 msgid "B<--live>"
19959 msgstr ""
19960
19961 #. type: textblock
19962 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
19963 msgid ""
19964 "Connect to a live virtual machine.  (Experimental, see "
19965 "L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
19966 msgstr ""
19967
19968 #. type: =item
19969 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
19970 msgid "B<-m dev[:mountpoint[:options]]>"
19971 msgstr ""
19972
19973 #. type: =item
19974 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
19975 msgid "B<--mount dev[:mountpoint[:options]]>"
19976 msgstr ""
19977
19978 #. type: textblock
19979 #: ../fish/guestfish.pod:308
19980 msgid "Mount the named partition or logical volume on the given mountpoint."
19981 msgstr ""
19982
19983 #. type: textblock
19984 #: ../fish/guestfish.pod:310
19985 msgid "If the mountpoint is omitted, it defaults to C</>."
19986 msgstr ""
19987
19988 #. type: textblock
19989 #: ../fish/guestfish.pod:312
19990 msgid "You have to mount something on C</> before most commands will work."
19991 msgstr ""
19992
19993 #. type: textblock
19994 #: ../fish/guestfish.pod:314
19995 msgid ""
19996 "If any I<-m> or I<--mount> options are given, the guest is automatically "
19997 "launched."
19998 msgstr ""
19999
20000 #. type: textblock
20001 #: ../fish/guestfish.pod:317
20002 msgid ""
20003 "If you don't know what filesystems a disk image contains, you can either run "
20004 "guestfish without this option, then list the partitions, filesystems and LVs "
20005 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20006 "commands), or you can use the L<virt-filesystems(1)> program."
20007 msgstr ""
20008
20009 #. type: textblock
20010 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
20011 msgid ""
20012 "The third (and rarely used) part of the mount parameter is the list of mount "
20013 "options used to mount the underlying filesystem.  If this is not given, then "
20014 "the mount options are either the empty string or C<ro> (the latter if the "
20015 "I<--ro> flag is used).  By specifying the mount options, you override this "
20016 "default choice.  Probably the only time you would use this is to enable ACLs "
20017 "and/or extended attributes if the filesystem can support them:"
20018 msgstr ""
20019
20020 #. type: verbatim
20021 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
20022 #, no-wrap
20023 msgid ""
20024 " -m /dev/sda1:/:acl,user_xattr\n"
20025 "\n"
20026 msgstr ""
20027
20028 #. type: textblock
20029 #: ../fish/guestfish.pod:333
20030 msgid "Using this flag is equivalent to using the C<mount-options> command."
20031 msgstr ""
20032
20033 #. type: =item
20034 #: ../fish/guestfish.pod:335
20035 msgid "B<-n>"
20036 msgstr ""
20037
20038 #. type: =item
20039 #: ../fish/guestfish.pod:337
20040 msgid "B<--no-sync>"
20041 msgstr ""
20042
20043 #. type: textblock
20044 #: ../fish/guestfish.pod:339
20045 msgid ""
20046 "Disable autosync.  This is enabled by default.  See the discussion of "
20047 "autosync in the L<guestfs(3)> manpage."
20048 msgstr ""
20049
20050 #. type: =item
20051 #: ../fish/guestfish.pod:342
20052 msgid "B<-N type>"
20053 msgstr ""
20054
20055 #. type: =item
20056 #: ../fish/guestfish.pod:344
20057 msgid "B<--new type>"
20058 msgstr ""
20059
20060 #. type: =item
20061 #: ../fish/guestfish.pod:346
20062 msgid "B<-N help>"
20063 msgstr ""
20064
20065 #. type: textblock
20066 #: ../fish/guestfish.pod:348
20067 msgid ""
20068 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20069 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20070 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20071 "IMAGES> below."
20072 msgstr ""
20073
20074 #. type: =item
20075 #: ../fish/guestfish.pod:353
20076 msgid "B<--progress-bars>"
20077 msgstr ""
20078
20079 #. type: textblock
20080 #: ../fish/guestfish.pod:355
20081 msgid "Enable progress bars, even when guestfish is used non-interactively."
20082 msgstr ""
20083
20084 #. type: textblock
20085 #: ../fish/guestfish.pod:357
20086 msgid ""
20087 "Progress bars are enabled by default when guestfish is used as an "
20088 "interactive shell."
20089 msgstr ""
20090
20091 #. type: =item
20092 #: ../fish/guestfish.pod:360
20093 msgid "B<--no-progress-bars>"
20094 msgstr ""
20095
20096 #. type: textblock
20097 #: ../fish/guestfish.pod:362
20098 msgid "Disable progress bars."
20099 msgstr ""
20100
20101 #. type: =item
20102 #: ../fish/guestfish.pod:364
20103 msgid "B<--remote[=pid]>"
20104 msgstr ""
20105
20106 #. type: textblock
20107 #: ../fish/guestfish.pod:366
20108 msgid ""
20109 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20110 "CONTROL GUESTFISH OVER A SOCKET> below."
20111 msgstr ""
20112
20113 #. type: =item
20114 #: ../fish/guestfish.pod:369
20115 msgid "B<-r>"
20116 msgstr ""
20117
20118 #. type: =item
20119 #: ../fish/guestfish.pod:371
20120 msgid "B<--ro>"
20121 msgstr ""
20122
20123 #. type: textblock
20124 #: ../fish/guestfish.pod:373
20125 msgid ""
20126 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20127 "mounts are done read-only."
20128 msgstr ""
20129
20130 #. type: textblock
20131 #: ../fish/guestfish.pod:376
20132 msgid ""
20133 "The option must always be used if the disk image or virtual machine might be "
20134 "running, and is generally recommended in cases where you don't need write "
20135 "access to the disk."
20136 msgstr ""
20137
20138 #. type: textblock
20139 #: ../fish/guestfish.pod:380
20140 msgid ""
20141 "Note that prepared disk images created with I<-N> are not affected by this "
20142 "option.  Also commands like C<add> are not affected - you have to specify "
20143 "the C<readonly:true> option explicitly if you need it."
20144 msgstr ""
20145
20146 #. type: textblock
20147 #: ../fish/guestfish.pod:384
20148 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
20149 msgstr ""
20150
20151 #. type: =item
20152 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
20153 msgid "B<--selinux>"
20154 msgstr ""
20155
20156 #. type: textblock
20157 #: ../fish/guestfish.pod:388
20158 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
20159 msgstr ""
20160
20161 #. type: =item
20162 #: ../fish/guestfish.pod:390
20163 msgid "B<-v>"
20164 msgstr ""
20165
20166 #. type: =item
20167 #: ../fish/guestfish.pod:392
20168 msgid "B<--verbose>"
20169 msgstr ""
20170
20171 #. type: textblock
20172 #: ../fish/guestfish.pod:394
20173 msgid ""
20174 "Enable very verbose messages.  This is particularly useful if you find a "
20175 "bug."
20176 msgstr ""
20177
20178 #. type: =item
20179 #: ../fish/guestfish.pod:397
20180 msgid "B<-V>"
20181 msgstr ""
20182
20183 #. type: =item
20184 #: ../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
20185 msgid "B<--version>"
20186 msgstr ""
20187
20188 #. type: textblock
20189 #: ../fish/guestfish.pod:401
20190 msgid "Display the guestfish / libguestfs version number and exit."
20191 msgstr ""
20192
20193 #. type: =item
20194 #: ../fish/guestfish.pod:403
20195 msgid "B<-w>"
20196 msgstr ""
20197
20198 #. type: =item
20199 #: ../fish/guestfish.pod:405
20200 msgid "B<--rw>"
20201 msgstr ""
20202
20203 #. type: textblock
20204 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
20205 msgid ""
20206 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20207 "mounts are done read-write."
20208 msgstr ""
20209
20210 #. type: textblock
20211 #: ../fish/guestfish.pod:410
20212 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20213 msgstr ""
20214
20215 #. type: =item
20216 #: ../fish/guestfish.pod:412
20217 msgid "B<-x>"
20218 msgstr ""
20219
20220 #. type: textblock
20221 #: ../fish/guestfish.pod:414
20222 msgid "Echo each command before executing it."
20223 msgstr ""
20224
20225 #. type: =head1
20226 #: ../fish/guestfish.pod:418
20227 msgid "COMMANDS ON COMMAND LINE"
20228 msgstr ""
20229
20230 #. type: textblock
20231 #: ../fish/guestfish.pod:420
20232 msgid "Any additional (non-option) arguments are treated as commands to execute."
20233 msgstr ""
20234
20235 #. type: textblock
20236 #: ../fish/guestfish.pod:423
20237 msgid ""
20238 "Commands to execute should be separated by a colon (C<:>), where the colon "
20239 "is a separate parameter.  Thus:"
20240 msgstr ""
20241
20242 #. type: verbatim
20243 #: ../fish/guestfish.pod:426
20244 #, no-wrap
20245 msgid ""
20246 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20247 "\n"
20248 msgstr ""
20249
20250 #. type: textblock
20251 #: ../fish/guestfish.pod:428
20252 msgid ""
20253 "If there are no additional arguments, then we enter a shell, either an "
20254 "interactive shell with a prompt (if the input is a terminal) or a "
20255 "non-interactive shell."
20256 msgstr ""
20257
20258 #. type: textblock
20259 #: ../fish/guestfish.pod:432
20260 msgid ""
20261 "In either command line mode or non-interactive shell, the first command that "
20262 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20263 "prompt) if a command fails, you can continue to enter commands."
20264 msgstr ""
20265
20266 #. type: =head1
20267 #: ../fish/guestfish.pod:437
20268 msgid "USING launch (OR run)"
20269 msgstr ""
20270
20271 #. type: textblock
20272 #: ../fish/guestfish.pod:439
20273 msgid ""
20274 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20275 "then launch it, then mount any disks you need, and finally issue "
20276 "actions/commands.  So the general order of the day is:"
20277 msgstr ""
20278
20279 #. type: textblock
20280 #: ../fish/guestfish.pod:447
20281 msgid "add or -a/--add"
20282 msgstr ""
20283
20284 #. type: textblock
20285 #: ../fish/guestfish.pod:451
20286 msgid "launch (aka run)"
20287 msgstr ""
20288
20289 #. type: textblock
20290 #: ../fish/guestfish.pod:455
20291 msgid "mount or -m/--mount"
20292 msgstr ""
20293
20294 #. type: textblock
20295 #: ../fish/guestfish.pod:459
20296 msgid "any other commands"
20297 msgstr ""
20298
20299 #. type: textblock
20300 #: ../fish/guestfish.pod:463
20301 msgid ""
20302 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20303 "guest before mounting or performing any other commands."
20304 msgstr ""
20305
20306 #. type: textblock
20307 #: ../fish/guestfish.pod:466
20308 msgid ""
20309 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20310 "I<--new> options were given then C<run> is done automatically, simply "
20311 "because guestfish can't perform the action you asked for without doing this."
20312 msgstr ""
20313
20314 #. type: =head1
20315 #: ../fish/guestfish.pod:471
20316 msgid "OPENING DISKS FOR READ AND WRITE"
20317 msgstr ""
20318
20319 #. type: textblock
20320 #: ../fish/guestfish.pod:473
20321 msgid ""
20322 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20323 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20324 "I<-i> and I<-m> open disk images read-only or for writing."
20325 msgstr ""
20326
20327 #. type: textblock
20328 #: ../fish/guestfish.pod:478
20329 msgid ""
20330 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20331 "opening disk images supplied on the command line for write.  To open a disk "
20332 "image read-only you have to do I<-a image --ro>."
20333 msgstr ""
20334
20335 #. type: textblock
20336 #: ../fish/guestfish.pod:482
20337 msgid ""
20338 "This matters: If you accidentally open a live VM disk image writable then "
20339 "you will cause irreversible disk corruption."
20340 msgstr ""
20341
20342 #. type: textblock
20343 #: ../fish/guestfish.pod:485
20344 msgid ""
20345 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20346 "images will be opened read-only.  You will have to either specify "
20347 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20348 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20349 "access for disk images specified by those other command line options."
20350 msgstr ""
20351
20352 #. type: textblock
20353 #: ../fish/guestfish.pod:492
20354 msgid ""
20355 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20356 "which does nothing (it is already the default).  However it is highly "
20357 "recommended that you use this option to indicate that you need write access, "
20358 "and prepare your scripts for the day when this option will be required for "
20359 "write access."
20360 msgstr ""
20361
20362 #. type: textblock
20363 #: ../fish/guestfish.pod:498
20364 msgid ""
20365 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20366 "other libguestfs program apart from guestfish and guestmount."
20367 msgstr ""
20368
20369 #. type: =head1
20370 #: ../fish/guestfish.pod:501
20371 msgid "QUOTING"
20372 msgstr ""
20373
20374 #. type: textblock
20375 #: ../fish/guestfish.pod:503
20376 msgid ""
20377 "You can quote ordinary parameters using either single or double quotes.  For "
20378 "example:"
20379 msgstr ""
20380
20381 #. type: verbatim
20382 #: ../fish/guestfish.pod:506
20383 #, no-wrap
20384 msgid ""
20385 " add \"file with a space.img\"\n"
20386 "\n"
20387 msgstr ""
20388
20389 #. type: verbatim
20390 #: ../fish/guestfish.pod:508
20391 #, no-wrap
20392 msgid ""
20393 " rm '/file name'\n"
20394 "\n"
20395 msgstr ""
20396
20397 #. type: verbatim
20398 #: ../fish/guestfish.pod:510
20399 #, no-wrap
20400 msgid ""
20401 " rm '/\"'\n"
20402 "\n"
20403 msgstr ""
20404
20405 #. type: textblock
20406 #: ../fish/guestfish.pod:512
20407 msgid ""
20408 "A few commands require a list of strings to be passed.  For these, use a "
20409 "whitespace-separated list, enclosed in quotes.  Strings containing "
20410 "whitespace to be passed through must be enclosed in single quotes.  A "
20411 "literal single quote must be escaped with a backslash."
20412 msgstr ""
20413
20414 #. type: verbatim
20415 #: ../fish/guestfish.pod:517
20416 #, no-wrap
20417 msgid ""
20418 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20419 " command \"/bin/echo 'foo      bar'\"\n"
20420 " command \"/bin/echo \\'foo\\'\"\n"
20421 "\n"
20422 msgstr ""
20423
20424 #. type: =head1
20425 #: ../fish/guestfish.pod:521
20426 msgid "OPTIONAL ARGUMENTS"
20427 msgstr ""
20428
20429 #. type: textblock
20430 #: ../fish/guestfish.pod:523
20431 msgid ""
20432 "Some commands take optional arguments.  These arguments appear in this "
20433 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20434 msgstr ""
20435
20436 #. type: verbatim
20437 #: ../fish/guestfish.pod:527
20438 #, no-wrap
20439 msgid ""
20440 " add-drive-opts filename\n"
20441 "\n"
20442 msgstr ""
20443
20444 #. type: verbatim
20445 #: ../fish/guestfish.pod:529
20446 #, no-wrap
20447 msgid ""
20448 " add-drive-opts filename readonly:true\n"
20449 "\n"
20450 msgstr ""
20451
20452 #. type: verbatim
20453 #: ../fish/guestfish.pod:531
20454 #, no-wrap
20455 msgid ""
20456 " add-drive-opts filename format:qcow2 readonly:false\n"
20457 "\n"
20458 msgstr ""
20459
20460 #. type: textblock
20461 #: ../fish/guestfish.pod:533
20462 msgid ""
20463 "Each optional argument can appear at most once.  All optional arguments must "
20464 "appear after the required ones."
20465 msgstr ""
20466
20467 #. type: =head1
20468 #: ../fish/guestfish.pod:536
20469 msgid "NUMBERS"
20470 msgstr ""
20471
20472 #. type: textblock
20473 #: ../fish/guestfish.pod:538
20474 msgid "This section applies to all commands which can take integers as parameters."
20475 msgstr ""
20476
20477 #. type: =head2
20478 #: ../fish/guestfish.pod:541
20479 msgid "SIZE SUFFIX"
20480 msgstr ""
20481
20482 #. type: textblock
20483 #: ../fish/guestfish.pod:543
20484 msgid ""
20485 "When the command takes a parameter measured in bytes, you can use one of the "
20486 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20487 msgstr ""
20488
20489 #. type: =item
20490 #: ../fish/guestfish.pod:549
20491 msgid "B<k> or B<K> or B<KiB>"
20492 msgstr ""
20493
20494 #. type: textblock
20495 #: ../fish/guestfish.pod:551
20496 msgid "The size in kilobytes (multiplied by 1024)."
20497 msgstr ""
20498
20499 #. type: =item
20500 #: ../fish/guestfish.pod:553
20501 msgid "B<KB>"
20502 msgstr ""
20503
20504 #. type: textblock
20505 #: ../fish/guestfish.pod:555
20506 msgid "The size in SI 1000 byte units."
20507 msgstr ""
20508
20509 #. type: =item
20510 #: ../fish/guestfish.pod:557
20511 msgid "B<M> or B<MiB>"
20512 msgstr ""
20513
20514 #. type: textblock
20515 #: ../fish/guestfish.pod:559
20516 msgid "The size in megabytes (multiplied by 1048576)."
20517 msgstr ""
20518
20519 #. type: =item
20520 #: ../fish/guestfish.pod:561
20521 msgid "B<MB>"
20522 msgstr ""
20523
20524 #. type: textblock
20525 #: ../fish/guestfish.pod:563
20526 msgid "The size in SI 1000000 byte units."
20527 msgstr ""
20528
20529 #. type: =item
20530 #: ../fish/guestfish.pod:565
20531 msgid "B<G> or B<GiB>"
20532 msgstr ""
20533
20534 #. type: textblock
20535 #: ../fish/guestfish.pod:567
20536 msgid "The size in gigabytes (multiplied by 2**30)."
20537 msgstr ""
20538
20539 #. type: =item
20540 #: ../fish/guestfish.pod:569
20541 msgid "B<GB>"
20542 msgstr ""
20543
20544 #. type: textblock
20545 #: ../fish/guestfish.pod:571
20546 msgid "The size in SI 10**9 byte units."
20547 msgstr ""
20548
20549 #. type: =item
20550 #: ../fish/guestfish.pod:573
20551 msgid "B<T> or B<TiB>"
20552 msgstr ""
20553
20554 #. type: textblock
20555 #: ../fish/guestfish.pod:575
20556 msgid "The size in terabytes (multiplied by 2**40)."
20557 msgstr ""
20558
20559 #. type: =item
20560 #: ../fish/guestfish.pod:577
20561 msgid "B<TB>"
20562 msgstr ""
20563
20564 #. type: textblock
20565 #: ../fish/guestfish.pod:579
20566 msgid "The size in SI 10**12 byte units."
20567 msgstr ""
20568
20569 #. type: =item
20570 #: ../fish/guestfish.pod:581
20571 msgid "B<P> or B<PiB>"
20572 msgstr ""
20573
20574 #. type: textblock
20575 #: ../fish/guestfish.pod:583
20576 msgid "The size in petabytes (multiplied by 2**50)."
20577 msgstr ""
20578
20579 #. type: =item
20580 #: ../fish/guestfish.pod:585
20581 msgid "B<PB>"
20582 msgstr ""
20583
20584 #. type: textblock
20585 #: ../fish/guestfish.pod:587
20586 msgid "The size in SI 10**15 byte units."
20587 msgstr ""
20588
20589 #. type: =item
20590 #: ../fish/guestfish.pod:589
20591 msgid "B<E> or B<EiB>"
20592 msgstr ""
20593
20594 #. type: textblock
20595 #: ../fish/guestfish.pod:591
20596 msgid "The size in exabytes (multiplied by 2**60)."
20597 msgstr ""
20598
20599 #. type: =item
20600 #: ../fish/guestfish.pod:593
20601 msgid "B<EB>"
20602 msgstr ""
20603
20604 #. type: textblock
20605 #: ../fish/guestfish.pod:595
20606 msgid "The size in SI 10**18 byte units."
20607 msgstr ""
20608
20609 #. type: =item
20610 #: ../fish/guestfish.pod:597
20611 msgid "B<Z> or B<ZiB>"
20612 msgstr ""
20613
20614 #. type: textblock
20615 #: ../fish/guestfish.pod:599
20616 msgid "The size in zettabytes (multiplied by 2**70)."
20617 msgstr ""
20618
20619 #. type: =item
20620 #: ../fish/guestfish.pod:601
20621 msgid "B<ZB>"
20622 msgstr ""
20623
20624 #. type: textblock
20625 #: ../fish/guestfish.pod:603
20626 msgid "The size in SI 10**21 byte units."
20627 msgstr ""
20628
20629 #. type: =item
20630 #: ../fish/guestfish.pod:605
20631 msgid "B<Y> or B<YiB>"
20632 msgstr ""
20633
20634 #. type: textblock
20635 #: ../fish/guestfish.pod:607
20636 msgid "The size in yottabytes (multiplied by 2**80)."
20637 msgstr ""
20638
20639 #. type: =item
20640 #: ../fish/guestfish.pod:609
20641 msgid "B<YB>"
20642 msgstr ""
20643
20644 #. type: textblock
20645 #: ../fish/guestfish.pod:611
20646 msgid "The size in SI 10**24 byte units."
20647 msgstr ""
20648
20649 #. type: verbatim
20650 #: ../fish/guestfish.pod:617
20651 #, no-wrap
20652 msgid ""
20653 " truncate-size /file 1G\n"
20654 "\n"
20655 msgstr ""
20656
20657 #. type: textblock
20658 #: ../fish/guestfish.pod:619
20659 msgid "would truncate the file to 1 gigabyte."
20660 msgstr ""
20661
20662 #. type: textblock
20663 #: ../fish/guestfish.pod:621
20664 msgid ""
20665 "Be careful because a few commands take sizes in kilobytes or megabytes "
20666 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
20667 "Adding a suffix will probably not do what you expect."
20668 msgstr ""
20669
20670 #. type: =head2
20671 #: ../fish/guestfish.pod:625
20672 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20673 msgstr ""
20674
20675 #. type: textblock
20676 #: ../fish/guestfish.pod:627
20677 msgid ""
20678 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20679 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20680 msgstr ""
20681
20682 #. type: verbatim
20683 #: ../fish/guestfish.pod:630
20684 #, no-wrap
20685 msgid ""
20686 " 1234      decimal number 1234\n"
20687 " 02322     octal number, equivalent to decimal 1234\n"
20688 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20689 "\n"
20690 msgstr ""
20691
20692 #. type: textblock
20693 #: ../fish/guestfish.pod:634
20694 msgid ""
20695 "When using the C<chmod> command, you almost always want to specify an octal "
20696 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20697 "L<chmod(1)> program):"
20698 msgstr ""
20699
20700 #. type: verbatim
20701 #: ../fish/guestfish.pod:638
20702 #, no-wrap
20703 msgid ""
20704 " chmod 0777 /public  # OK\n"
20705 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20706 "\n"
20707 msgstr ""
20708
20709 #. type: textblock
20710 #: ../fish/guestfish.pod:641
20711 msgid ""
20712 "Commands that return numbers usually print them in decimal, but some "
20713 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20714 "octal, preceeded by C<0>)."
20715 msgstr ""
20716
20717 #. type: =head1
20718 #: ../fish/guestfish.pod:645
20719 msgid "WILDCARDS AND GLOBBING"
20720 msgstr ""
20721
20722 #. type: textblock
20723 #: ../fish/guestfish.pod:647
20724 msgid ""
20725 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20726 "(globbing) by default.  So for example the following will not do what you "
20727 "expect:"
20728 msgstr ""
20729
20730 #. type: verbatim
20731 #: ../fish/guestfish.pod:651
20732 #, no-wrap
20733 msgid ""
20734 " rm-rf /home/*\n"
20735 "\n"
20736 msgstr ""
20737
20738 #. type: textblock
20739 #: ../fish/guestfish.pod:653
20740 msgid ""
20741 "Assuming you don't have a directory called literally C</home/*> then the "
20742 "above command will return an error."
20743 msgstr ""
20744
20745 #. type: textblock
20746 #: ../fish/guestfish.pod:656
20747 msgid "To perform wildcard expansion, use the C<glob> command."
20748 msgstr ""
20749
20750 #. type: verbatim
20751 #: ../fish/guestfish.pod:658
20752 #, no-wrap
20753 msgid ""
20754 " glob rm-rf /home/*\n"
20755 "\n"
20756 msgstr ""
20757
20758 #. type: textblock
20759 #: ../fish/guestfish.pod:660
20760 msgid ""
20761 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20762 "many times), equivalent to:"
20763 msgstr ""
20764
20765 #. type: verbatim
20766 #: ../fish/guestfish.pod:663
20767 #, no-wrap
20768 msgid ""
20769 " rm-rf /home/jim\n"
20770 " rm-rf /home/joe\n"
20771 " rm-rf /home/mary\n"
20772 "\n"
20773 msgstr ""
20774
20775 #. type: textblock
20776 #: ../fish/guestfish.pod:667
20777 msgid "C<glob> only works on simple guest paths and not on device names."
20778 msgstr ""
20779
20780 #. type: textblock
20781 #: ../fish/guestfish.pod:669
20782 msgid ""
20783 "If you have several parameters, each containing a wildcard, then glob will "
20784 "perform a Cartesian product."
20785 msgstr ""
20786
20787 #. type: =head1
20788 #: ../fish/guestfish.pod:672
20789 msgid "COMMENTS"
20790 msgstr ""
20791
20792 #. type: textblock
20793 #: ../fish/guestfish.pod:674
20794 msgid ""
20795 "Any line which starts with a I<#> character is treated as a comment and "
20796 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20797 "a command.  For example:"
20798 msgstr ""
20799
20800 #. type: verbatim
20801 #: ../fish/guestfish.pod:678
20802 #, no-wrap
20803 msgid ""
20804 " # this is a comment\n"
20805 "         # this is a comment\n"
20806 " foo # NOT a comment\n"
20807 "\n"
20808 msgstr ""
20809
20810 #. type: textblock
20811 #: ../fish/guestfish.pod:682
20812 msgid "Blank lines are also ignored."
20813 msgstr ""
20814
20815 #. type: =head1
20816 #: ../fish/guestfish.pod:684
20817 msgid "RUNNING COMMANDS LOCALLY"
20818 msgstr ""
20819
20820 #. type: textblock
20821 #: ../fish/guestfish.pod:686
20822 msgid ""
20823 "Any line which starts with a I<!> character is treated as a command sent to "
20824 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20825 msgstr ""
20826
20827 #. type: verbatim
20828 #: ../fish/guestfish.pod:690
20829 #, no-wrap
20830 msgid ""
20831 " !mkdir local\n"
20832 " tgz-out /remote local/remote-data.tar.gz\n"
20833 "\n"
20834 msgstr ""
20835
20836 #. type: textblock
20837 #: ../fish/guestfish.pod:693
20838 msgid ""
20839 "will create a directory C<local> on the host, and then export the contents "
20840 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20841 "(See C<tgz-out>)."
20842 msgstr ""
20843
20844 #. type: textblock
20845 #: ../fish/guestfish.pod:697
20846 msgid ""
20847 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20848 "effect, due to the way that subprocesses work in Unix."
20849 msgstr ""
20850
20851 #. type: =head2
20852 #: ../fish/guestfish.pod:700
20853 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20854 msgstr ""
20855
20856 #. type: textblock
20857 #: ../fish/guestfish.pod:702
20858 msgid ""
20859 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20860 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20861 "and executed as guestfish commands."
20862 msgstr ""
20863
20864 #. type: textblock
20865 #: ../fish/guestfish.pod:706
20866 msgid ""
20867 "Thus you can use shell script to construct arbitrary guestfish commands "
20868 "which are then parsed by guestfish."
20869 msgstr ""
20870
20871 #. type: textblock
20872 #: ../fish/guestfish.pod:709
20873 msgid ""
20874 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20875 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20876 "if we use a shell script to create the guestfish commands for us:"
20877 msgstr ""
20878
20879 #. type: verbatim
20880 #: ../fish/guestfish.pod:714
20881 #, no-wrap
20882 msgid ""
20883 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20884 "\n"
20885 msgstr ""
20886
20887 #. type: textblock
20888 #: ../fish/guestfish.pod:716
20889 msgid "or with names like C</foo.001>:"
20890 msgstr ""
20891
20892 #. type: verbatim
20893 #: ../fish/guestfish.pod:718
20894 #, no-wrap
20895 msgid ""
20896 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20897 "\n"
20898 msgstr ""
20899
20900 #. type: textblock
20901 #: ../fish/guestfish.pod:720
20902 msgid ""
20903 "When using guestfish interactively it can be helpful to just run the shell "
20904 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20905 "ordinary I<!> local command), see what guestfish commands it would run, and "
20906 "when you are happy with those prepend the C<E<lt>> character to run the "
20907 "guestfish commands for real."
20908 msgstr ""
20909
20910 #. type: =head1
20911 #: ../fish/guestfish.pod:726
20912 msgid "PIPES"
20913 msgstr ""
20914
20915 #. type: textblock
20916 #: ../fish/guestfish.pod:728
20917 msgid ""
20918 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20919 "command (a guestfish command) to the second command (any host command).  For "
20920 "example:"
20921 msgstr ""
20922
20923 #. type: verbatim
20924 #: ../fish/guestfish.pod:732
20925 #, no-wrap
20926 msgid ""
20927 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20928 "\n"
20929 msgstr ""
20930
20931 #. type: textblock
20932 #: ../fish/guestfish.pod:734
20933 msgid ""
20934 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20935 "program).  The above command would list all accounts in the guest filesystem "
20936 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20937 msgstr ""
20938
20939 #. type: verbatim
20940 #: ../fish/guestfish.pod:739
20941 #, no-wrap
20942 msgid ""
20943 " hexdump /bin/ls | head\n"
20944 " list-devices | tail -1\n"
20945 " tgz-out / - | tar ztf -\n"
20946 "\n"
20947 msgstr ""
20948
20949 #. type: textblock
20950 #: ../fish/guestfish.pod:743
20951 msgid ""
20952 "The space before the pipe symbol is required, any space after the pipe "
20953 "symbol is optional.  Everything after the pipe symbol is just passed "
20954 "straight to the host shell, so it can contain redirections, globs and "
20955 "anything else that makes sense on the host side."
20956 msgstr ""
20957
20958 #. type: textblock
20959 #: ../fish/guestfish.pod:748
20960 msgid ""
20961 "To use a literal argument which begins with a pipe symbol, you have to quote "
20962 "it, eg:"
20963 msgstr ""
20964
20965 #. type: verbatim
20966 #: ../fish/guestfish.pod:751
20967 #, no-wrap
20968 msgid ""
20969 " echo \"|\"\n"
20970 "\n"
20971 msgstr ""
20972
20973 #. type: =head1
20974 #: ../fish/guestfish.pod:753
20975 msgid "HOME DIRECTORIES"
20976 msgstr ""
20977
20978 #. type: textblock
20979 #: ../fish/guestfish.pod:755
20980 msgid ""
20981 "If a parameter starts with the character C<~> then the tilde may be expanded "
20982 "as a home directory path (either C<~> for the current user's home directory, "
20983 "or C<~user> for another user)."
20984 msgstr ""
20985
20986 #. type: textblock
20987 #: ../fish/guestfish.pod:759
20988 msgid ""
20989 "Note that home directory expansion happens for users known I<on the host>, "
20990 "not in the guest filesystem."
20991 msgstr ""
20992
20993 #. type: textblock
20994 #: ../fish/guestfish.pod:762
20995 msgid ""
20996 "To use a literal argument which begins with a tilde, you have to quote it, "
20997 "eg:"
20998 msgstr ""
20999
21000 #. type: verbatim
21001 #: ../fish/guestfish.pod:765
21002 #, no-wrap
21003 msgid ""
21004 " echo \"~\"\n"
21005 "\n"
21006 msgstr ""
21007
21008 #. type: textblock
21009 #: ../fish/guestfish.pod:769
21010 msgid ""
21011 "Libguestfs has some support for Linux guests encrypted according to the "
21012 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
21013 "disk encryption systems used by modern Linux guests.  Currently only "
21014 "LVM-on-LUKS is supported."
21015 msgstr ""
21016
21017 #. type: textblock
21018 #: ../fish/guestfish.pod:774
21019 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
21020 msgstr ""
21021
21022 #. type: verbatim
21023 #: ../fish/guestfish.pod:776
21024 #, no-wrap
21025 msgid ""
21026 " ><fs> vfs-type /dev/sda2\n"
21027 " crypto_LUKS\n"
21028 "\n"
21029 msgstr ""
21030
21031 #. type: textblock
21032 #: ../fish/guestfish.pod:779
21033 msgid ""
21034 "Then open those devices using L</luks-open>.  This creates a device-mapper "
21035 "device called C</dev/mapper/luksdev>."
21036 msgstr ""
21037
21038 #. type: verbatim
21039 #: ../fish/guestfish.pod:782
21040 #, no-wrap
21041 msgid ""
21042 " ><fs> luks-open /dev/sda2 luksdev\n"
21043 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
21044 "\n"
21045 msgstr ""
21046
21047 #. type: textblock
21048 #: ../fish/guestfish.pod:785
21049 msgid ""
21050 "Finally you have to tell LVM to scan for volume groups on the newly created "
21051 "mapper device:"
21052 msgstr ""
21053
21054 #. type: verbatim
21055 #: ../fish/guestfish.pod:788
21056 #, no-wrap
21057 msgid ""
21058 " vgscan\n"
21059 " vg-activate-all true\n"
21060 "\n"
21061 msgstr ""
21062
21063 #. type: textblock
21064 #: ../fish/guestfish.pod:791
21065 msgid "The logical volume(s) can now be mounted in the usual way."
21066 msgstr ""
21067
21068 #. type: textblock
21069 #: ../fish/guestfish.pod:793
21070 msgid ""
21071 "Before closing a LUKS device you must unmount any logical volumes on it and "
21072 "deactivate the volume groups by calling C<vg-activate false VG> on each "
21073 "one.  Then you can close the mapper device:"
21074 msgstr ""
21075
21076 #. type: verbatim
21077 #: ../fish/guestfish.pod:797
21078 #, no-wrap
21079 msgid ""
21080 " vg-activate false /dev/VG\n"
21081 " luks-close /dev/mapper/luksdev\n"
21082 "\n"
21083 msgstr ""
21084
21085 #. type: =head1
21086 #: ../fish/guestfish.pod:800
21087 msgid "WINDOWS PATHS"
21088 msgstr ""
21089
21090 #. type: textblock
21091 #: ../fish/guestfish.pod:802
21092 msgid ""
21093 "If a path is prefixed with C<win:> then you can use Windows-style drive "
21094 "letters and paths (with some limitations).  The following commands are "
21095 "equivalent:"
21096 msgstr ""
21097
21098 #. type: verbatim
21099 #: ../fish/guestfish.pod:806
21100 #, no-wrap
21101 msgid ""
21102 " file /WINDOWS/system32/config/system.LOG\n"
21103 "\n"
21104 msgstr ""
21105
21106 #. type: verbatim
21107 #: ../fish/guestfish.pod:808
21108 #, no-wrap
21109 msgid ""
21110 " file win:\\windows\\system32\\config\\system.log\n"
21111 "\n"
21112 msgstr ""
21113
21114 #. type: verbatim
21115 #: ../fish/guestfish.pod:810
21116 #, no-wrap
21117 msgid ""
21118 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
21119 "\n"
21120 msgstr ""
21121
21122 #. type: textblock
21123 #: ../fish/guestfish.pod:812
21124 msgid ""
21125 "The parameter is rewritten \"behind the scenes\" by looking up the position "
21126 "where the drive is mounted, prepending that to the path, changing all "
21127 "backslash characters to forward slash, then resolving the result using "
21128 "L</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
21129 "then the parameter might be rewritten like this:"
21130 msgstr ""
21131
21132 #. type: verbatim
21133 #: ../fish/guestfish.pod:818
21134 #, no-wrap
21135 msgid ""
21136 " win:e:\\foo\\bar => /e/FOO/bar\n"
21137 "\n"
21138 msgstr ""
21139
21140 #. type: textblock
21141 #: ../fish/guestfish.pod:820
21142 msgid "This only works in argument positions that expect a path."
21143 msgstr ""
21144
21145 #. type: =head1
21146 #: ../fish/guestfish.pod:822
21147 msgid "UPLOADING AND DOWNLOADING FILES"
21148 msgstr ""
21149
21150 #. type: textblock
21151 #: ../fish/guestfish.pod:824
21152 msgid ""
21153 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
21154 "others which upload from or download to a local file, you can use the "
21155 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
21156 msgstr ""
21157
21158 #. type: verbatim
21159 #: ../fish/guestfish.pod:828
21160 #, no-wrap
21161 msgid ""
21162 " upload - /foo\n"
21163 "\n"
21164 msgstr ""
21165
21166 #. type: textblock
21167 #: ../fish/guestfish.pod:830
21168 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
21169 msgstr ""
21170
21171 #. type: verbatim
21172 #: ../fish/guestfish.pod:833
21173 #, no-wrap
21174 msgid ""
21175 " tar-out /etc - | tar tf -\n"
21176 "\n"
21177 msgstr ""
21178
21179 #. type: textblock
21180 #: ../fish/guestfish.pod:835
21181 msgid ""
21182 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21183 "command (see L</PIPES>)."
21184 msgstr ""
21185
21186 #. type: textblock
21187 #: ../fish/guestfish.pod:838
21188 msgid ""
21189 "When using C<-> to read from stdin, the input is read up to the end of "
21190 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21191 "some arbitrary end marker:"
21192 msgstr ""
21193
21194 #. type: verbatim
21195 #: ../fish/guestfish.pod:842
21196 #, no-wrap
21197 msgid ""
21198 " upload -<<END /foo\n"
21199 " input line 1\n"
21200 " input line 2\n"
21201 " input line 3\n"
21202 " END\n"
21203 "\n"
21204 msgstr ""
21205
21206 #. type: textblock
21207 #: ../fish/guestfish.pod:848
21208 msgid ""
21209 "Any string of characters can be used instead of C<END>.  The end marker must "
21210 "appear on a line of its own, without any preceeding or following characters "
21211 "(not even spaces)."
21212 msgstr ""
21213
21214 #. type: textblock
21215 #: ../fish/guestfish.pod:852
21216 msgid ""
21217 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21218 "upload local files (so-called \"FileIn\" parameters in the generator)."
21219 msgstr ""
21220
21221 #. type: =head1
21222 #: ../fish/guestfish.pod:855
21223 msgid "EXIT ON ERROR BEHAVIOUR"
21224 msgstr ""
21225
21226 #. type: textblock
21227 #: ../fish/guestfish.pod:857
21228 msgid ""
21229 "By default, guestfish will ignore any errors when in interactive mode "
21230 "(ie. taking commands from a human over a tty), and will exit on the first "
21231 "error in non-interactive mode (scripts, commands given on the command line)."
21232 msgstr ""
21233
21234 #. type: textblock
21235 #: ../fish/guestfish.pod:862
21236 msgid ""
21237 "If you prefix a command with a I<-> character, then that command will not "
21238 "cause guestfish to exit, even if that (one) command returns an error."
21239 msgstr ""
21240
21241 #. type: =head1
21242 #: ../fish/guestfish.pod:866
21243 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21244 msgstr ""
21245
21246 #. type: textblock
21247 #: ../fish/guestfish.pod:868
21248 msgid ""
21249 "Guestfish can be remote-controlled over a socket.  This is useful "
21250 "particularly in shell scripts where you want to make several different "
21251 "changes to a filesystem, but you don't want the overhead of starting up a "
21252 "guestfish process each time."
21253 msgstr ""
21254
21255 #. type: textblock
21256 #: ../fish/guestfish.pod:873
21257 msgid "Start a guestfish server process using:"
21258 msgstr ""
21259
21260 #. type: verbatim
21261 #: ../fish/guestfish.pod:875
21262 #, no-wrap
21263 msgid ""
21264 " eval \"`guestfish --listen`\"\n"
21265 "\n"
21266 msgstr ""
21267
21268 #. type: textblock
21269 #: ../fish/guestfish.pod:877
21270 msgid "and then send it commands by doing:"
21271 msgstr ""
21272
21273 #. type: verbatim
21274 #: ../fish/guestfish.pod:879
21275 #, no-wrap
21276 msgid ""
21277 " guestfish --remote cmd [...]\n"
21278 "\n"
21279 msgstr ""
21280
21281 #. type: textblock
21282 #: ../fish/guestfish.pod:881
21283 msgid "To cause the server to exit, send it the exit command:"
21284 msgstr ""
21285
21286 #. type: verbatim
21287 #: ../fish/guestfish.pod:883
21288 #, no-wrap
21289 msgid ""
21290 " guestfish --remote exit\n"
21291 "\n"
21292 msgstr ""
21293
21294 #. type: textblock
21295 #: ../fish/guestfish.pod:885
21296 msgid ""
21297 "Note that the server will normally exit if there is an error in a command.  "
21298 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21299 "BEHAVIOUR>."
21300 msgstr ""
21301
21302 #. type: =head2
21303 #: ../fish/guestfish.pod:889
21304 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21305 msgstr ""
21306
21307 #. type: textblock
21308 #: ../fish/guestfish.pod:891
21309 msgid ""
21310 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21311 "is how the I<--remote> option knows where to send the commands.  You can "
21312 "have several guestfish listener processes running using:"
21313 msgstr ""
21314
21315 #. type: verbatim
21316 #: ../fish/guestfish.pod:895
21317 #, no-wrap
21318 msgid ""
21319 " eval \"`guestfish --listen`\"\n"
21320 " pid1=$GUESTFISH_PID\n"
21321 " eval \"`guestfish --listen`\"\n"
21322 " pid2=$GUESTFISH_PID\n"
21323 " ...\n"
21324 " guestfish --remote=$pid1 cmd\n"
21325 " guestfish --remote=$pid2 cmd\n"
21326 "\n"
21327 msgstr ""
21328
21329 #. type: =head2
21330 #: ../fish/guestfish.pod:903
21331 msgid "REMOTE CONTROL AND CSH"
21332 msgstr ""
21333
21334 #. type: textblock
21335 #: ../fish/guestfish.pod:905
21336 msgid ""
21337 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21338 "option:"
21339 msgstr ""
21340
21341 #. type: verbatim
21342 #: ../fish/guestfish.pod:908
21343 #, no-wrap
21344 msgid ""
21345 " eval \"`guestfish --listen --csh`\"\n"
21346 "\n"
21347 msgstr ""
21348
21349 #. type: =head2
21350 #: ../fish/guestfish.pod:910
21351 msgid "REMOTE CONTROL DETAILS"
21352 msgstr ""
21353
21354 #. type: textblock
21355 #: ../fish/guestfish.pod:912
21356 msgid ""
21357 "Remote control happens over a Unix domain socket called "
21358 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
21359 "of the process, and C<$PID> is the process ID of the server."
21360 msgstr ""
21361
21362 #. type: textblock
21363 #: ../fish/guestfish.pod:916
21364 msgid "Guestfish client and server versions must match exactly."
21365 msgstr ""
21366
21367 #. type: =head1
21368 #: ../fish/guestfish.pod:918
21369 msgid "PREPARED DISK IMAGES"
21370 msgstr ""
21371
21372 #. type: textblock
21373 #: ../fish/guestfish.pod:920
21374 msgid ""
21375 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21376 "preformatted disk images that guestfish can make for you to save typing.  "
21377 "This is particularly useful for testing purposes.  This option is used "
21378 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21379 "can be mixed with I<-a>)."
21380 msgstr ""
21381
21382 #. type: textblock
21383 #: ../fish/guestfish.pod:926
21384 msgid ""
21385 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21386 "the second and so on.  Existing files in the current directory are "
21387 "I<overwritten>."
21388 msgstr ""
21389
21390 #. type: textblock
21391 #: ../fish/guestfish.pod:930
21392 msgid ""
21393 "The type briefly describes how the disk should be sized, partitioned, how "
21394 "filesystem(s) should be created, and how content should be added.  "
21395 "Optionally the type can be followed by extra parameters, separated by C<:> "
21396 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
21397 "sparsely-allocated disk, containing a single partition, with the partition "
21398 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
21399 "on a 1GB disk instead."
21400 msgstr ""
21401
21402 #. type: textblock
21403 #: ../fish/guestfish.pod:938
21404 msgid "To list the available types and any extra parameters they take, run:"
21405 msgstr ""
21406
21407 #. type: textblock
21408 #: ../fish/guestfish.pod:942
21409 msgid ""
21410 "Note that the prepared filesystem is not mounted.  You would usually have to "
21411 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21412 msgstr ""
21413
21414 #. type: textblock
21415 #: ../fish/guestfish.pod:946
21416 msgid ""
21417 "If any I<-N> or I<--new> options are given, the guest is automatically "
21418 "launched."
21419 msgstr ""
21420
21421 #. type: textblock
21422 #: ../fish/guestfish.pod:951
21423 msgid "Create a 100MB disk with an ext4-formatted partition:"
21424 msgstr ""
21425
21426 #. type: verbatim
21427 #: ../fish/guestfish.pod:953
21428 #, no-wrap
21429 msgid ""
21430 " guestfish -N fs:ext4\n"
21431 "\n"
21432 msgstr ""
21433
21434 #. type: textblock
21435 #: ../fish/guestfish.pod:955
21436 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21437 msgstr ""
21438
21439 #. type: verbatim
21440 #: ../fish/guestfish.pod:957
21441 #, no-wrap
21442 msgid ""
21443 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21444 "\n"
21445 msgstr ""
21446
21447 #. type: textblock
21448 #: ../fish/guestfish.pod:959
21449 msgid "Create a blank 200MB disk:"
21450 msgstr ""
21451
21452 #. type: verbatim
21453 #: ../fish/guestfish.pod:961
21454 #, no-wrap
21455 msgid ""
21456 " guestfish -N disk:200M\n"
21457 "\n"
21458 msgstr ""
21459
21460 #. type: =head1
21461 #: ../fish/guestfish.pod:963
21462 msgid "PROGRESS BARS"
21463 msgstr ""
21464
21465 #. type: textblock
21466 #: ../fish/guestfish.pod:965
21467 msgid ""
21468 "Some (not all) long-running commands send progress notification messages as "
21469 "they are running.  Guestfish turns these messages into progress bars."
21470 msgstr ""
21471
21472 #. type: textblock
21473 #: ../fish/guestfish.pod:969
21474 msgid ""
21475 "When a command that supports progress bars takes longer than two seconds to "
21476 "run, and if progress bars are enabled, then you will see one appearing below "
21477 "the command:"
21478 msgstr ""
21479
21480 #. type: verbatim
21481 #: ../fish/guestfish.pod:973
21482 #, no-wrap
21483 msgid ""
21484 " ><fs> copy-size /large-file /another-file 2048M\n"
21485 " / 10% [#####-----------------------------------------] 00:30\n"
21486 "\n"
21487 msgstr ""
21488
21489 #. type: textblock
21490 #: ../fish/guestfish.pod:976
21491 msgid ""
21492 "The spinner on the left hand side moves round once for every progress "
21493 "notification received from the backend.  This is a (reasonably) golden "
21494 "assurance that the command is \"doing something\" even if the progress bar "
21495 "is not moving, because the command is able to send the progress "
21496 "notifications.  When the bar reaches 100% and the command finishes, the "
21497 "spinner disappears."
21498 msgstr ""
21499
21500 #. type: textblock
21501 #: ../fish/guestfish.pod:983
21502 msgid ""
21503 "Progress bars are enabled by default when guestfish is used interactively.  "
21504 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21505 "and you can disable them completely using I<--no-progress-bars>."
21506 msgstr ""
21507
21508 #. type: =head1
21509 #: ../fish/guestfish.pod:988
21510 msgid "GUESTFISH COMMANDS"
21511 msgstr ""
21512
21513 #. type: textblock
21514 #: ../fish/guestfish.pod:990
21515 msgid ""
21516 "The commands in this section are guestfish convenience commands, in other "
21517 "words, they are not part of the L<guestfs(3)> API."
21518 msgstr ""
21519
21520 #. type: =head2
21521 #: ../fish/guestfish.pod:993
21522 msgid "help"
21523 msgstr ""
21524
21525 #. type: verbatim
21526 #: ../fish/guestfish.pod:995
21527 #, no-wrap
21528 msgid ""
21529 " help\n"
21530 " help cmd\n"
21531 "\n"
21532 msgstr ""
21533
21534 #. type: textblock
21535 #: ../fish/guestfish.pod:998
21536 msgid "Without any parameter, this provides general help."
21537 msgstr ""
21538
21539 #. type: textblock
21540 #: ../fish/guestfish.pod:1000
21541 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21542 msgstr ""
21543
21544 #. type: =head2
21545 #: ../fish/guestfish.pod:1002
21546 msgid "quit | exit"
21547 msgstr ""
21548
21549 #. type: textblock
21550 #: ../fish/guestfish.pod:1004
21551 msgid "This exits guestfish.  You can also use C<^D> key."
21552 msgstr ""
21553
21554 #. type: textblock
21555 #: ../fish/guestfish.pod:1006
21556 msgid "@FISH_COMMANDS@"
21557 msgstr ""
21558
21559 #. type: =head1
21560 #: ../fish/guestfish.pod:1008
21561 msgid "COMMANDS"
21562 msgstr ""
21563
21564 #. type: =head1
21565 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
21566 msgid "EXIT CODE"
21567 msgstr ""
21568
21569 #. type: textblock
21570 #: ../fish/guestfish.pod:1014
21571 msgid ""
21572 "guestfish returns 0 if the commands completed without error, or 1 if there "
21573 "was an error."
21574 msgstr ""
21575
21576 #. type: =item
21577 #: ../fish/guestfish.pod:1021
21578 msgid "EDITOR"
21579 msgstr ""
21580
21581 #. type: textblock
21582 #: ../fish/guestfish.pod:1023
21583 msgid ""
21584 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21585 "C<vi>."
21586 msgstr ""
21587
21588 #. type: =item
21589 #: ../fish/guestfish.pod:1026
21590 msgid "GUESTFISH_DISPLAY_IMAGE"
21591 msgstr ""
21592
21593 #. type: textblock
21594 #: ../fish/guestfish.pod:1028
21595 msgid ""
21596 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
21597 "If not set, it uses L<display(1)>."
21598 msgstr ""
21599
21600 #. type: =item
21601 #: ../fish/guestfish.pod:1031
21602 msgid "GUESTFISH_PID"
21603 msgstr ""
21604
21605 #. type: textblock
21606 #: ../fish/guestfish.pod:1033
21607 msgid ""
21608 "Used with the I<--remote> option to specify the remote guestfish process to "
21609 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21610 msgstr ""
21611
21612 #. type: =item
21613 #: ../fish/guestfish.pod:1037
21614 msgid "HEXEDITOR"
21615 msgstr ""
21616
21617 #. type: textblock
21618 #: ../fish/guestfish.pod:1039
21619 msgid ""
21620 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21621 "not specified, the external L<hexedit(1)> program is used."
21622 msgstr ""
21623
21624 #. type: =item
21625 #: ../fish/guestfish.pod:1043
21626 msgid "HOME"
21627 msgstr ""
21628
21629 #. type: textblock
21630 #: ../fish/guestfish.pod:1045
21631 msgid ""
21632 "If compiled with GNU readline support, various files in the home directory "
21633 "can be used.  See L</FILES>."
21634 msgstr ""
21635
21636 #. type: textblock
21637 #: ../fish/guestfish.pod:1054
21638 msgid ""
21639 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21640 "effect as using the B<-v> option."
21641 msgstr ""
21642
21643 #. type: textblock
21644 #: ../fish/guestfish.pod:1066
21645 msgid ""
21646 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21647 "the discussion of paths in L<guestfs(3)>."
21648 msgstr ""
21649
21650 #. type: textblock
21651 #: ../fish/guestfish.pod:1077
21652 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21653 msgstr ""
21654
21655 #. type: =item
21656 #: ../fish/guestfish.pod:1079
21657 msgid "PAGER"
21658 msgstr ""
21659
21660 #. type: textblock
21661 #: ../fish/guestfish.pod:1081
21662 msgid ""
21663 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21664 "C<more>."
21665 msgstr ""
21666
21667 #. type: =head1
21668 #: ../fish/guestfish.pod:1097 ../fuse/guestmount.pod:264
21669 msgid "FILES"
21670 msgstr ""
21671
21672 #. type: =item
21673 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:268
21674 msgid "$HOME/.libguestfs-tools.rc"
21675 msgstr ""
21676
21677 #. type: =item
21678 #: ../fish/guestfish.pod:1103 ../fuse/guestmount.pod:270
21679 msgid "/etc/libguestfs-tools.conf"
21680 msgstr ""
21681
21682 #. type: textblock
21683 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:272
21684 msgid ""
21685 "This configuration file controls the default read-only or read-write mode "
21686 "(I<--ro> or I<--rw>)."
21687 msgstr ""
21688
21689 #. type: textblock
21690 #: ../fish/guestfish.pod:1108
21691 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21692 msgstr ""
21693
21694 #. type: =item
21695 #: ../fish/guestfish.pod:1110
21696 msgid "$HOME/.guestfish"
21697 msgstr ""
21698
21699 #. type: textblock
21700 #: ../fish/guestfish.pod:1112
21701 msgid ""
21702 "If compiled with GNU readline support, then the command history is saved in "
21703 "this file."
21704 msgstr ""
21705
21706 #. type: =item
21707 #: ../fish/guestfish.pod:1115
21708 msgid "$HOME/.inputrc"
21709 msgstr ""
21710
21711 #. type: =item
21712 #: ../fish/guestfish.pod:1117
21713 msgid "/etc/inputrc"
21714 msgstr ""
21715
21716 #. type: textblock
21717 #: ../fish/guestfish.pod:1119
21718 msgid ""
21719 "If compiled with GNU readline support, then these files can be used to "
21720 "configure readline.  For further information, please see "
21721 "L<readline(3)/INITIALIZATION FILE>."
21722 msgstr ""
21723
21724 #. type: textblock
21725 #: ../fish/guestfish.pod:1123
21726 msgid "To write rules which only apply to guestfish, use:"
21727 msgstr ""
21728
21729 #. type: verbatim
21730 #: ../fish/guestfish.pod:1125
21731 #, no-wrap
21732 msgid ""
21733 " $if guestfish\n"
21734 " ...\n"
21735 " $endif\n"
21736 "\n"
21737 msgstr ""
21738
21739 #. type: textblock
21740 #: ../fish/guestfish.pod:1129
21741 msgid ""
21742 "Variables that you can set in inputrc that change the behaviour of guestfish "
21743 "in useful ways include:"
21744 msgstr ""
21745
21746 #. type: =item
21747 #: ../fish/guestfish.pod:1134
21748 msgid "completion-ignore-case (default: on)"
21749 msgstr ""
21750
21751 #. type: textblock
21752 #: ../fish/guestfish.pod:1136
21753 msgid ""
21754 "By default, guestfish will ignore case when tab-completing paths on the "
21755 "disk.  Use:"
21756 msgstr ""
21757
21758 #. type: verbatim
21759 #: ../fish/guestfish.pod:1139
21760 #, no-wrap
21761 msgid ""
21762 " set completion-ignore-case off\n"
21763 "\n"
21764 msgstr ""
21765
21766 #. type: textblock
21767 #: ../fish/guestfish.pod:1141
21768 msgid "to make guestfish case sensitive."
21769 msgstr ""
21770
21771 #. type: =item
21772 #: ../fish/guestfish.pod:1145
21773 msgid "test1.img"
21774 msgstr ""
21775
21776 #. type: =item
21777 #: ../fish/guestfish.pod:1147
21778 msgid "test2.img (etc)"
21779 msgstr ""
21780
21781 #. type: textblock
21782 #: ../fish/guestfish.pod:1149
21783 msgid ""
21784 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21785 "will be created in the file C<test1.img> in the current directory.  The "
21786 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21787 "the same name will be overwritten."
21788 msgstr ""
21789
21790 #. type: textblock
21791 #: ../fish/guestfish.pod:1158
21792 msgid ""
21793 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, "
21794 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
21795 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
21796 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
21797 "L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, "
21798 "L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<display(1)>, L<hexedit(1)>."
21799 msgstr ""
21800
21801 #. type: textblock
21802 #: ../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
21803 msgid ""
21804 "This program is free software; you can redistribute it and/or modify it "
21805 "under the terms of the GNU General Public License as published by the Free "
21806 "Software Foundation; either version 2 of the License, or (at your option) "
21807 "any later version."
21808 msgstr ""
21809
21810 #. type: textblock
21811 #: ../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
21812 msgid ""
21813 "This program is distributed in the hope that it will be useful, but WITHOUT "
21814 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21815 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21816 "more details."
21817 msgstr ""
21818
21819 #. type: textblock
21820 #: ../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
21821 msgid ""
21822 "You should have received a copy of the GNU General Public License along with "
21823 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21824 "Ave, Cambridge, MA 02139, USA."
21825 msgstr ""
21826
21827 #. type: =head2
21828 #: ../fish/guestfish-actions.pod:1
21829 msgid "add-cdrom"
21830 msgstr ""
21831
21832 #. type: verbatim
21833 #: ../fish/guestfish-actions.pod:3
21834 #, no-wrap
21835 msgid ""
21836 " add-cdrom filename\n"
21837 "\n"
21838 msgstr ""
21839
21840 #. type: textblock
21841 #: ../fish/guestfish-actions.pod:15
21842 msgid ""
21843 "This call checks for the existence of C<filename>.  This stops you from "
21844 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21845 "and C<http:> URLs.  To specify those, use the general L</config> call "
21846 "instead."
21847 msgstr ""
21848
21849 #. type: textblock
21850 #: ../fish/guestfish-actions.pod:22
21851 msgid ""
21852 "If you just want to add an ISO file (often you use this as an efficient way "
21853 "to transfer large files into the guest), then you should probably use "
21854 "L</add-drive-ro> instead."
21855 msgstr ""
21856
21857 #. type: =head2
21858 #: ../fish/guestfish-actions.pod:35
21859 msgid "add-domain"
21860 msgstr ""
21861
21862 #. type: =head2
21863 #: ../fish/guestfish-actions.pod:37
21864 msgid "domain"
21865 msgstr ""
21866
21867 #. type: verbatim
21868 #: ../fish/guestfish-actions.pod:39
21869 #, no-wrap
21870 msgid ""
21871 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] "
21872 "[allowuuid:..]\n"
21873 "\n"
21874 msgstr ""
21875
21876 #. type: textblock
21877 #: ../fish/guestfish-actions.pod:41
21878 msgid ""
21879 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21880 "It works by connecting to libvirt, requesting the domain and domain XML from "
21881 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21882 msgstr ""
21883
21884 #. type: textblock
21885 #: ../fish/guestfish-actions.pod:76
21886 msgid ""
21887 "The other optional parameters are passed directly through to "
21888 "L</add-drive-opts>."
21889 msgstr ""
21890
21891 #. type: textblock
21892 #: ../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
21893 msgid ""
21894 "This command has one or more optional arguments.  See L</OPTIONAL "
21895 "ARGUMENTS>."
21896 msgstr ""
21897
21898 #. type: =head2
21899 #: ../fish/guestfish-actions.pod:81
21900 msgid "add-drive"
21901 msgstr ""
21902
21903 #. type: verbatim
21904 #: ../fish/guestfish-actions.pod:83
21905 #, no-wrap
21906 msgid ""
21907 " add-drive filename\n"
21908 "\n"
21909 msgstr ""
21910
21911 #. type: textblock
21912 #: ../fish/guestfish-actions.pod:85
21913 msgid ""
21914 "This function is the equivalent of calling L</add-drive-opts> with no "
21915 "optional parameters, so the disk is added writable, with the format being "
21916 "detected automatically."
21917 msgstr ""
21918
21919 #. type: textblock
21920 #: ../fish/guestfish-actions.pod:89
21921 msgid ""
21922 "Automatic detection of the format opens you up to a potential security hole "
21923 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21924 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21925 "you should think about replacing calls to this function with calls to "
21926 "L</add-drive-opts>, and specifying the format."
21927 msgstr ""
21928
21929 #. type: =head2
21930 #: ../fish/guestfish-actions.pod:96
21931 msgid "add-drive-opts"
21932 msgstr ""
21933
21934 #. type: =head2
21935 #: ../fish/guestfish-actions.pod:98
21936 msgid "add"
21937 msgstr ""
21938
21939 #. type: verbatim
21940 #: ../fish/guestfish-actions.pod:100
21941 #, no-wrap
21942 msgid ""
21943 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21944 "\n"
21945 msgstr ""
21946
21947 #. type: textblock
21948 #: ../fish/guestfish-actions.pod:127
21949 msgid ""
21950 "This forces the image format.  If you omit this (or use L</add-drive> or "
21951 "L</add-drive-ro>) then the format is automatically detected.  Possible "
21952 "formats include C<raw> and C<qcow2>."
21953 msgstr ""
21954
21955 #. type: textblock
21956 #: ../fish/guestfish-actions.pod:138
21957 msgid ""
21958 "This rarely-used option lets you emulate the behaviour of the deprecated "
21959 "L</add-drive-with-if> call (q.v.)"
21960 msgstr ""
21961
21962 #. type: =head2
21963 #: ../fish/guestfish-actions.pod:145
21964 msgid "add-drive-ro"
21965 msgstr ""
21966
21967 #. type: =head2
21968 #: ../fish/guestfish-actions.pod:147
21969 msgid "add-ro"
21970 msgstr ""
21971
21972 #. type: verbatim
21973 #: ../fish/guestfish-actions.pod:149
21974 #, no-wrap
21975 msgid ""
21976 " add-drive-ro filename\n"
21977 "\n"
21978 msgstr ""
21979
21980 #. type: textblock
21981 #: ../fish/guestfish-actions.pod:151
21982 msgid ""
21983 "This function is the equivalent of calling L</add-drive-opts> with the "
21984 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
21985 "is added read-only, with the format being detected automatically."
21986 msgstr ""
21987
21988 #. type: =head2
21989 #: ../fish/guestfish-actions.pod:156
21990 msgid "add-drive-ro-with-if"
21991 msgstr ""
21992
21993 #. type: verbatim
21994 #: ../fish/guestfish-actions.pod:158
21995 #, no-wrap
21996 msgid ""
21997 " add-drive-ro-with-if filename iface\n"
21998 "\n"
21999 msgstr ""
22000
22001 #. type: textblock
22002 #: ../fish/guestfish-actions.pod:160
22003 msgid ""
22004 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
22005 "interface emulation to use at run time."
22006 msgstr ""
22007
22008 #. type: =head2
22009 #: ../fish/guestfish-actions.pod:170
22010 msgid "add-drive-with-if"
22011 msgstr ""
22012
22013 #. type: verbatim
22014 #: ../fish/guestfish-actions.pod:172
22015 #, no-wrap
22016 msgid ""
22017 " add-drive-with-if filename iface\n"
22018 "\n"
22019 msgstr ""
22020
22021 #. type: textblock
22022 #: ../fish/guestfish-actions.pod:174
22023 msgid ""
22024 "This is the same as L</add-drive> but it allows you to specify the QEMU "
22025 "interface emulation to use at run time."
22026 msgstr ""
22027
22028 #. type: =head2
22029 #: ../fish/guestfish-actions.pod:184
22030 msgid "aug-clear"
22031 msgstr ""
22032
22033 #. type: verbatim
22034 #: ../fish/guestfish-actions.pod:186
22035 #, no-wrap
22036 msgid ""
22037 " aug-clear augpath\n"
22038 "\n"
22039 msgstr ""
22040
22041 #. type: =head2
22042 #: ../fish/guestfish-actions.pod:191
22043 msgid "aug-close"
22044 msgstr ""
22045
22046 #. type: verbatim
22047 #: ../fish/guestfish-actions.pod:193
22048 #, no-wrap
22049 msgid ""
22050 " aug-close\n"
22051 "\n"
22052 msgstr ""
22053
22054 #. type: textblock
22055 #: ../fish/guestfish-actions.pod:195
22056 msgid ""
22057 "Close the current Augeas handle and free up any resources used by it.  After "
22058 "calling this, you have to call L</aug-init> again before you can use any "
22059 "other Augeas functions."
22060 msgstr ""
22061
22062 #. type: =head2
22063 #: ../fish/guestfish-actions.pod:200
22064 msgid "aug-defnode"
22065 msgstr ""
22066
22067 #. type: verbatim
22068 #: ../fish/guestfish-actions.pod:202
22069 #, no-wrap
22070 msgid ""
22071 " aug-defnode name expr val\n"
22072 "\n"
22073 msgstr ""
22074
22075 #. type: textblock
22076 #: ../fish/guestfish-actions.pod:207
22077 msgid ""
22078 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
22079 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
22080 "containing that single node."
22081 msgstr ""
22082
22083 #. type: =head2
22084 #: ../fish/guestfish-actions.pod:215
22085 msgid "aug-defvar"
22086 msgstr ""
22087
22088 #. type: verbatim
22089 #: ../fish/guestfish-actions.pod:217
22090 #, no-wrap
22091 msgid ""
22092 " aug-defvar name expr\n"
22093 "\n"
22094 msgstr ""
22095
22096 #. type: =head2
22097 #: ../fish/guestfish-actions.pod:226
22098 msgid "aug-get"
22099 msgstr ""
22100
22101 #. type: verbatim
22102 #: ../fish/guestfish-actions.pod:228
22103 #, no-wrap
22104 msgid ""
22105 " aug-get augpath\n"
22106 "\n"
22107 msgstr ""
22108
22109 #. type: =head2
22110 #: ../fish/guestfish-actions.pod:233
22111 msgid "aug-init"
22112 msgstr ""
22113
22114 #. type: verbatim
22115 #: ../fish/guestfish-actions.pod:235
22116 #, no-wrap
22117 msgid ""
22118 " aug-init root flags\n"
22119 "\n"
22120 msgstr ""
22121
22122 #. type: textblock
22123 #: ../fish/guestfish-actions.pod:241
22124 msgid "You must call this before using any other L</aug-*> commands."
22125 msgstr ""
22126
22127 #. type: textblock
22128 #: ../fish/guestfish-actions.pod:276
22129 msgid "Do not load the tree in L</aug-init>."
22130 msgstr ""
22131
22132 #. type: textblock
22133 #: ../fish/guestfish-actions.pod:280
22134 msgid "To close the handle, you can call L</aug-close>."
22135 msgstr ""
22136
22137 #. type: =head2
22138 #: ../fish/guestfish-actions.pod:284
22139 msgid "aug-insert"
22140 msgstr ""
22141
22142 #. type: verbatim
22143 #: ../fish/guestfish-actions.pod:286
22144 #, no-wrap
22145 msgid ""
22146 " aug-insert augpath label true|false\n"
22147 "\n"
22148 msgstr ""
22149
22150 #. type: =head2
22151 #: ../fish/guestfish-actions.pod:296
22152 msgid "aug-load"
22153 msgstr ""
22154
22155 #. type: verbatim
22156 #: ../fish/guestfish-actions.pod:298
22157 #, no-wrap
22158 msgid ""
22159 " aug-load\n"
22160 "\n"
22161 msgstr ""
22162
22163 #. type: =head2
22164 #: ../fish/guestfish-actions.pod:305
22165 msgid "aug-ls"
22166 msgstr ""
22167
22168 #. type: verbatim
22169 #: ../fish/guestfish-actions.pod:307
22170 #, no-wrap
22171 msgid ""
22172 " aug-ls augpath\n"
22173 "\n"
22174 msgstr ""
22175
22176 #. type: textblock
22177 #: ../fish/guestfish-actions.pod:309
22178 msgid ""
22179 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22180 "resulting nodes into alphabetical order."
22181 msgstr ""
22182
22183 #. type: =head2
22184 #: ../fish/guestfish-actions.pod:312
22185 msgid "aug-match"
22186 msgstr ""
22187
22188 #. type: verbatim
22189 #: ../fish/guestfish-actions.pod:314
22190 #, no-wrap
22191 msgid ""
22192 " aug-match augpath\n"
22193 "\n"
22194 msgstr ""
22195
22196 #. type: =head2
22197 #: ../fish/guestfish-actions.pod:320
22198 msgid "aug-mv"
22199 msgstr ""
22200
22201 #. type: verbatim
22202 #: ../fish/guestfish-actions.pod:322
22203 #, no-wrap
22204 msgid ""
22205 " aug-mv src dest\n"
22206 "\n"
22207 msgstr ""
22208
22209 #. type: =head2
22210 #: ../fish/guestfish-actions.pod:327
22211 msgid "aug-rm"
22212 msgstr ""
22213
22214 #. type: verbatim
22215 #: ../fish/guestfish-actions.pod:329
22216 #, no-wrap
22217 msgid ""
22218 " aug-rm augpath\n"
22219 "\n"
22220 msgstr ""
22221
22222 #. type: =head2
22223 #: ../fish/guestfish-actions.pod:335
22224 msgid "aug-save"
22225 msgstr ""
22226
22227 #. type: verbatim
22228 #: ../fish/guestfish-actions.pod:337
22229 #, no-wrap
22230 msgid ""
22231 " aug-save\n"
22232 "\n"
22233 msgstr ""
22234
22235 #. type: textblock
22236 #: ../fish/guestfish-actions.pod:341
22237 msgid ""
22238 "The flags which were passed to L</aug-init> affect exactly how files are "
22239 "saved."
22240 msgstr ""
22241
22242 #. type: =head2
22243 #: ../fish/guestfish-actions.pod:344
22244 msgid "aug-set"
22245 msgstr ""
22246
22247 #. type: verbatim
22248 #: ../fish/guestfish-actions.pod:346
22249 #, no-wrap
22250 msgid ""
22251 " aug-set augpath val\n"
22252 "\n"
22253 msgstr ""
22254
22255 #. type: textblock
22256 #: ../fish/guestfish-actions.pod:350
22257 msgid ""
22258 "In the Augeas API, it is possible to clear a node by setting the value to "
22259 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22260 "this call.  Instead you must use the L</aug-clear> call."
22261 msgstr ""
22262
22263 #. type: =head2
22264 #: ../fish/guestfish-actions.pod:355
22265 msgid "available"
22266 msgstr ""
22267
22268 #. type: verbatim
22269 #: ../fish/guestfish-actions.pod:357
22270 #, no-wrap
22271 msgid ""
22272 " available 'groups ...'\n"
22273 "\n"
22274 msgstr ""
22275
22276 #. type: textblock
22277 #: ../fish/guestfish-actions.pod:363
22278 msgid ""
22279 "The libguestfs groups, and the functions that those groups correspond to, "
22280 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22281 "runtime by calling L</available-all-groups>."
22282 msgstr ""
22283
22284 #. type: textblock
22285 #: ../fish/guestfish-actions.pod:387
22286 msgid "You must call L</launch> before calling this function."
22287 msgstr ""
22288
22289 #. type: textblock
22290 #: ../fish/guestfish-actions.pod:409
22291 msgid ""
22292 "This call was added in version C<1.0.80>.  In previous versions of "
22293 "libguestfs all you could do would be to speculatively execute a command to "
22294 "find out if the daemon implemented it.  See also L</version>."
22295 msgstr ""
22296
22297 #. type: =head2
22298 #: ../fish/guestfish-actions.pod:416
22299 msgid "available-all-groups"
22300 msgstr ""
22301
22302 #. type: verbatim
22303 #: ../fish/guestfish-actions.pod:418
22304 #, no-wrap
22305 msgid ""
22306 " available-all-groups\n"
22307 "\n"
22308 msgstr ""
22309
22310 #. type: textblock
22311 #: ../fish/guestfish-actions.pod:420
22312 msgid ""
22313 "This command returns a list of all optional groups that this daemon knows "
22314 "about.  Note this returns both supported and unsupported groups.  To find "
22315 "out which ones the daemon can actually support you have to call "
22316 "L</available> on each member of the returned list."
22317 msgstr ""
22318
22319 #. type: textblock
22320 #: ../fish/guestfish-actions.pod:426
22321 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22322 msgstr ""
22323
22324 #. type: =head2
22325 #: ../fish/guestfish-actions.pod:428
22326 msgid "base64-in"
22327 msgstr ""
22328
22329 #. type: verbatim
22330 #: ../fish/guestfish-actions.pod:430
22331 #, no-wrap
22332 msgid ""
22333 " base64-in (base64file|-) filename\n"
22334 "\n"
22335 msgstr ""
22336
22337 #. type: textblock
22338 #: ../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
22339 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22340 msgstr ""
22341
22342 #. type: =head2
22343 #: ../fish/guestfish-actions.pod:437
22344 msgid "base64-out"
22345 msgstr ""
22346
22347 #. type: verbatim
22348 #: ../fish/guestfish-actions.pod:439
22349 #, no-wrap
22350 msgid ""
22351 " base64-out filename (base64file|-)\n"
22352 "\n"
22353 msgstr ""
22354
22355 #. type: =head2
22356 #: ../fish/guestfish-actions.pod:446
22357 msgid "blockdev-flushbufs"
22358 msgstr ""
22359
22360 #. type: verbatim
22361 #: ../fish/guestfish-actions.pod:448
22362 #, no-wrap
22363 msgid ""
22364 " blockdev-flushbufs device\n"
22365 "\n"
22366 msgstr ""
22367
22368 #. type: =head2
22369 #: ../fish/guestfish-actions.pod:455
22370 msgid "blockdev-getbsz"
22371 msgstr ""
22372
22373 #. type: verbatim
22374 #: ../fish/guestfish-actions.pod:457
22375 #, no-wrap
22376 msgid ""
22377 " blockdev-getbsz device\n"
22378 "\n"
22379 msgstr ""
22380
22381 #. type: =head2
22382 #: ../fish/guestfish-actions.pod:466
22383 msgid "blockdev-getro"
22384 msgstr ""
22385
22386 #. type: verbatim
22387 #: ../fish/guestfish-actions.pod:468
22388 #, no-wrap
22389 msgid ""
22390 " blockdev-getro device\n"
22391 "\n"
22392 msgstr ""
22393
22394 #. type: =head2
22395 #: ../fish/guestfish-actions.pod:475
22396 msgid "blockdev-getsize64"
22397 msgstr ""
22398
22399 #. type: verbatim
22400 #: ../fish/guestfish-actions.pod:477
22401 #, no-wrap
22402 msgid ""
22403 " blockdev-getsize64 device\n"
22404 "\n"
22405 msgstr ""
22406
22407 #. type: textblock
22408 #: ../fish/guestfish-actions.pod:481
22409 msgid "See also L</blockdev-getsz>."
22410 msgstr ""
22411
22412 #. type: =head2
22413 #: ../fish/guestfish-actions.pod:485
22414 msgid "blockdev-getss"
22415 msgstr ""
22416
22417 #. type: verbatim
22418 #: ../fish/guestfish-actions.pod:487
22419 #, no-wrap
22420 msgid ""
22421 " blockdev-getss device\n"
22422 "\n"
22423 msgstr ""
22424
22425 #. type: textblock
22426 #: ../fish/guestfish-actions.pod:492
22427 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22428 msgstr ""
22429
22430 #. type: =head2
22431 #: ../fish/guestfish-actions.pod:497
22432 msgid "blockdev-getsz"
22433 msgstr ""
22434
22435 #. type: verbatim
22436 #: ../fish/guestfish-actions.pod:499
22437 #, no-wrap
22438 msgid ""
22439 " blockdev-getsz device\n"
22440 "\n"
22441 msgstr ""
22442
22443 #. type: textblock
22444 #: ../fish/guestfish-actions.pod:504
22445 msgid ""
22446 "See also L</blockdev-getss> for the real sector size of the device, and "
22447 "L</blockdev-getsize64> for the more useful I<size in bytes>."
22448 msgstr ""
22449
22450 #. type: =head2
22451 #: ../fish/guestfish-actions.pod:510
22452 msgid "blockdev-rereadpt"
22453 msgstr ""
22454
22455 #. type: verbatim
22456 #: ../fish/guestfish-actions.pod:512
22457 #, no-wrap
22458 msgid ""
22459 " blockdev-rereadpt device\n"
22460 "\n"
22461 msgstr ""
22462
22463 #. type: =head2
22464 #: ../fish/guestfish-actions.pod:518
22465 msgid "blockdev-setbsz"
22466 msgstr ""
22467
22468 #. type: verbatim
22469 #: ../fish/guestfish-actions.pod:520
22470 #, no-wrap
22471 msgid ""
22472 " blockdev-setbsz device blocksize\n"
22473 "\n"
22474 msgstr ""
22475
22476 #. type: =head2
22477 #: ../fish/guestfish-actions.pod:529
22478 msgid "blockdev-setro"
22479 msgstr ""
22480
22481 #. type: verbatim
22482 #: ../fish/guestfish-actions.pod:531
22483 #, no-wrap
22484 msgid ""
22485 " blockdev-setro device\n"
22486 "\n"
22487 msgstr ""
22488
22489 #. type: =head2
22490 #: ../fish/guestfish-actions.pod:537
22491 msgid "blockdev-setrw"
22492 msgstr ""
22493
22494 #. type: verbatim
22495 #: ../fish/guestfish-actions.pod:539
22496 #, no-wrap
22497 msgid ""
22498 " blockdev-setrw device\n"
22499 "\n"
22500 msgstr ""
22501
22502 #. type: =head2
22503 #: ../fish/guestfish-actions.pod:545
22504 msgid "case-sensitive-path"
22505 msgstr ""
22506
22507 #. type: verbatim
22508 #: ../fish/guestfish-actions.pod:547
22509 #, no-wrap
22510 msgid ""
22511 " case-sensitive-path path\n"
22512 "\n"
22513 msgstr ""
22514
22515 #. type: textblock
22516 #: ../fish/guestfish-actions.pod:571
22517 msgid ""
22518 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
22519 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
22520 "how the directories were originally created under Windows)."
22521 msgstr ""
22522
22523 #. type: textblock
22524 #: ../fish/guestfish-actions.pod:579
22525 msgid "See also L</realpath>."
22526 msgstr ""
22527
22528 #. type: =head2
22529 #: ../fish/guestfish-actions.pod:581
22530 msgid "cat"
22531 msgstr ""
22532
22533 #. type: verbatim
22534 #: ../fish/guestfish-actions.pod:583
22535 #, no-wrap
22536 msgid ""
22537 " cat path\n"
22538 "\n"
22539 msgstr ""
22540
22541 #. type: textblock
22542 #: ../fish/guestfish-actions.pod:587
22543 msgid ""
22544 "Note that this function cannot correctly handle binary files (specifically, "
22545 "files containing C<\\0> character which is treated as end of string).  For "
22546 "those you need to use the L</read-file> or L</download> functions which have "
22547 "a more complex interface."
22548 msgstr ""
22549
22550 #. type: =head2
22551 #: ../fish/guestfish-actions.pod:595
22552 msgid "checksum"
22553 msgstr ""
22554
22555 #. type: verbatim
22556 #: ../fish/guestfish-actions.pod:597
22557 #, no-wrap
22558 msgid ""
22559 " checksum csumtype path\n"
22560 "\n"
22561 msgstr ""
22562
22563 #. type: textblock
22564 #: ../fish/guestfish-actions.pod:640
22565 msgid "To get the checksum for a device, use L</checksum-device>."
22566 msgstr ""
22567
22568 #. type: textblock
22569 #: ../fish/guestfish-actions.pod:642
22570 msgid "To get the checksums for many files, use L</checksums-out>."
22571 msgstr ""
22572
22573 #. type: =head2
22574 #: ../fish/guestfish-actions.pod:644
22575 msgid "checksum-device"
22576 msgstr ""
22577
22578 #. type: verbatim
22579 #: ../fish/guestfish-actions.pod:646
22580 #, no-wrap
22581 msgid ""
22582 " checksum-device csumtype device\n"
22583 "\n"
22584 msgstr ""
22585
22586 #. type: textblock
22587 #: ../fish/guestfish-actions.pod:648
22588 msgid ""
22589 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22590 "device named C<device>.  For the types of checksums supported see the "
22591 "L</checksum> command."
22592 msgstr ""
22593
22594 #. type: =head2
22595 #: ../fish/guestfish-actions.pod:652
22596 msgid "checksums-out"
22597 msgstr ""
22598
22599 #. type: verbatim
22600 #: ../fish/guestfish-actions.pod:654
22601 #, no-wrap
22602 msgid ""
22603 " checksums-out csumtype directory (sumsfile|-)\n"
22604 "\n"
22605 msgstr ""
22606
22607 #. type: =head2
22608 #: ../fish/guestfish-actions.pod:670
22609 msgid "chmod"
22610 msgstr ""
22611
22612 #. type: verbatim
22613 #: ../fish/guestfish-actions.pod:672
22614 #, no-wrap
22615 msgid ""
22616 " chmod mode path\n"
22617 "\n"
22618 msgstr ""
22619
22620 #. type: =head2
22621 #: ../fish/guestfish-actions.pod:683
22622 msgid "chown"
22623 msgstr ""
22624
22625 #. type: verbatim
22626 #: ../fish/guestfish-actions.pod:685
22627 #, no-wrap
22628 msgid ""
22629 " chown owner group path\n"
22630 "\n"
22631 msgstr ""
22632
22633 #. type: =head2
22634 #: ../fish/guestfish-actions.pod:693
22635 msgid "command"
22636 msgstr ""
22637
22638 #. type: verbatim
22639 #: ../fish/guestfish-actions.pod:695
22640 #, no-wrap
22641 msgid ""
22642 " command 'arguments ...'\n"
22643 "\n"
22644 msgstr ""
22645
22646 #. type: textblock
22647 #: ../fish/guestfish-actions.pod:702
22648 msgid ""
22649 "The single parameter is an argv-style list of arguments.  The first element "
22650 "is the name of the program to run.  Subsequent elements are parameters.  The "
22651 "list must be non-empty (ie. must contain a program name).  Note that the "
22652 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22653 msgstr ""
22654
22655 #. type: =head2
22656 #: ../fish/guestfish-actions.pod:730
22657 msgid "command-lines"
22658 msgstr ""
22659
22660 #. type: verbatim
22661 #: ../fish/guestfish-actions.pod:732
22662 #, no-wrap
22663 msgid ""
22664 " command-lines 'arguments ...'\n"
22665 "\n"
22666 msgstr ""
22667
22668 #. type: textblock
22669 #: ../fish/guestfish-actions.pod:734
22670 msgid "This is the same as L</command>, but splits the result into a list of lines."
22671 msgstr ""
22672
22673 #. type: textblock
22674 #: ../fish/guestfish-actions.pod:737
22675 msgid "See also: L</sh-lines>"
22676 msgstr ""
22677
22678 #. type: =head2
22679 #: ../fish/guestfish-actions.pod:742
22680 msgid "config"
22681 msgstr ""
22682
22683 #. type: verbatim
22684 #: ../fish/guestfish-actions.pod:744
22685 #, no-wrap
22686 msgid ""
22687 " config qemuparam qemuvalue\n"
22688 "\n"
22689 msgstr ""
22690
22691 #. type: =head2
22692 #: ../fish/guestfish-actions.pod:755
22693 msgid "copy-size"
22694 msgstr ""
22695
22696 #. type: verbatim
22697 #: ../fish/guestfish-actions.pod:757
22698 #, no-wrap
22699 msgid ""
22700 " copy-size src dest size\n"
22701 "\n"
22702 msgstr ""
22703
22704 #. type: =head2
22705 #: ../fish/guestfish-actions.pod:765
22706 msgid "cp"
22707 msgstr ""
22708
22709 #. type: verbatim
22710 #: ../fish/guestfish-actions.pod:767
22711 #, no-wrap
22712 msgid ""
22713 " cp src dest\n"
22714 "\n"
22715 msgstr ""
22716
22717 #. type: =head2
22718 #: ../fish/guestfish-actions.pod:772
22719 msgid "cp-a"
22720 msgstr ""
22721
22722 #. type: verbatim
22723 #: ../fish/guestfish-actions.pod:774
22724 #, no-wrap
22725 msgid ""
22726 " cp-a src dest\n"
22727 "\n"
22728 msgstr ""
22729
22730 #. type: =head2
22731 #: ../fish/guestfish-actions.pod:779
22732 msgid "dd"
22733 msgstr ""
22734
22735 #. type: verbatim
22736 #: ../fish/guestfish-actions.pod:781
22737 #, no-wrap
22738 msgid ""
22739 " dd src dest\n"
22740 "\n"
22741 msgstr ""
22742
22743 #. type: textblock
22744 #: ../fish/guestfish-actions.pod:788
22745 msgid ""
22746 "If the destination is a device, it must be as large or larger than the "
22747 "source file or device, otherwise the copy will fail.  This command cannot do "
22748 "partial copies (see L</copy-size>)."
22749 msgstr ""
22750
22751 #. type: =head2
22752 #: ../fish/guestfish-actions.pod:792
22753 msgid "df"
22754 msgstr ""
22755
22756 #. type: verbatim
22757 #: ../fish/guestfish-actions.pod:794
22758 #, no-wrap
22759 msgid ""
22760 " df\n"
22761 "\n"
22762 msgstr ""
22763
22764 #. type: textblock
22765 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
22766 msgid ""
22767 "This command is mostly useful for interactive sessions.  It is I<not> "
22768 "intended that you try to parse the output string.  Use L</statvfs> from "
22769 "programs."
22770 msgstr ""
22771
22772 #. type: =head2
22773 #: ../fish/guestfish-actions.pod:802
22774 msgid "df-h"
22775 msgstr ""
22776
22777 #. type: verbatim
22778 #: ../fish/guestfish-actions.pod:804
22779 #, no-wrap
22780 msgid ""
22781 " df-h\n"
22782 "\n"
22783 msgstr ""
22784
22785 #. type: =head2
22786 #: ../fish/guestfish-actions.pod:813
22787 msgid "dmesg"
22788 msgstr ""
22789
22790 #. type: verbatim
22791 #: ../fish/guestfish-actions.pod:815
22792 #, no-wrap
22793 msgid ""
22794 " dmesg\n"
22795 "\n"
22796 msgstr ""
22797
22798 #. type: textblock
22799 #: ../fish/guestfish-actions.pod:821
22800 msgid ""
22801 "Another way to get the same information is to enable verbose messages with "
22802 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22803 "before running the program."
22804 msgstr ""
22805
22806 #. type: =head2
22807 #: ../fish/guestfish-actions.pod:826
22808 msgid "download"
22809 msgstr ""
22810
22811 #. type: verbatim
22812 #: ../fish/guestfish-actions.pod:828
22813 #, no-wrap
22814 msgid ""
22815 " download remotefilename (filename|-)\n"
22816 "\n"
22817 msgstr ""
22818
22819 #. type: textblock
22820 #: ../fish/guestfish-actions.pod:835
22821 msgid "See also L</upload>, L</cat>."
22822 msgstr ""
22823
22824 #. type: =head2
22825 #: ../fish/guestfish-actions.pod:839
22826 msgid "download-offset"
22827 msgstr ""
22828
22829 #. type: verbatim
22830 #: ../fish/guestfish-actions.pod:841
22831 #, no-wrap
22832 msgid ""
22833 " download-offset remotefilename (filename|-) offset size\n"
22834 "\n"
22835 msgstr ""
22836
22837 #. type: textblock
22838 #: ../fish/guestfish-actions.pod:849
22839 msgid ""
22840 "Note that there is no limit on the amount of data that can be downloaded "
22841 "with this call, unlike with L</pread>, and this call always reads the full "
22842 "amount unless an error occurs."
22843 msgstr ""
22844
22845 #. type: textblock
22846 #: ../fish/guestfish-actions.pod:854
22847 msgid "See also L</download>, L</pread>."
22848 msgstr ""
22849
22850 #. type: =head2
22851 #: ../fish/guestfish-actions.pod:858
22852 msgid "drop-caches"
22853 msgstr ""
22854
22855 #. type: verbatim
22856 #: ../fish/guestfish-actions.pod:860
22857 #, no-wrap
22858 msgid ""
22859 " drop-caches whattodrop\n"
22860 "\n"
22861 msgstr ""
22862
22863 #. type: =head2
22864 #: ../fish/guestfish-actions.pod:872
22865 msgid "du"
22866 msgstr ""
22867
22868 #. type: verbatim
22869 #: ../fish/guestfish-actions.pod:874
22870 #, no-wrap
22871 msgid ""
22872 " du path\n"
22873 "\n"
22874 msgstr ""
22875
22876 #. type: =head2
22877 #: ../fish/guestfish-actions.pod:886
22878 msgid "e2fsck-f"
22879 msgstr ""
22880
22881 #. type: verbatim
22882 #: ../fish/guestfish-actions.pod:888
22883 #, no-wrap
22884 msgid ""
22885 " e2fsck-f device\n"
22886 "\n"
22887 msgstr ""
22888
22889 #. type: textblock
22890 #: ../fish/guestfish-actions.pod:894
22891 msgid ""
22892 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22893 "should use L</fsck>."
22894 msgstr ""
22895
22896 #. type: =head2
22897 #: ../fish/guestfish-actions.pod:897
22898 msgid "echo-daemon"
22899 msgstr ""
22900
22901 #. type: verbatim
22902 #: ../fish/guestfish-actions.pod:899
22903 #, no-wrap
22904 msgid ""
22905 " echo-daemon 'words ...'\n"
22906 "\n"
22907 msgstr ""
22908
22909 #. type: textblock
22910 #: ../fish/guestfish-actions.pod:906
22911 msgid "See also L</ping-daemon>."
22912 msgstr ""
22913
22914 #. type: =head2
22915 #: ../fish/guestfish-actions.pod:908
22916 msgid "egrep"
22917 msgstr ""
22918
22919 #. type: verbatim
22920 #: ../fish/guestfish-actions.pod:910
22921 #, no-wrap
22922 msgid ""
22923 " egrep regex path\n"
22924 "\n"
22925 msgstr ""
22926
22927 #. type: =head2
22928 #: ../fish/guestfish-actions.pod:918
22929 msgid "egrepi"
22930 msgstr ""
22931
22932 #. type: verbatim
22933 #: ../fish/guestfish-actions.pod:920
22934 #, no-wrap
22935 msgid ""
22936 " egrepi regex path\n"
22937 "\n"
22938 msgstr ""
22939
22940 #. type: =head2
22941 #: ../fish/guestfish-actions.pod:928
22942 msgid "equal"
22943 msgstr ""
22944
22945 #. type: verbatim
22946 #: ../fish/guestfish-actions.pod:930
22947 #, no-wrap
22948 msgid ""
22949 " equal file1 file2\n"
22950 "\n"
22951 msgstr ""
22952
22953 #. type: =head2
22954 #: ../fish/guestfish-actions.pod:937
22955 msgid "exists"
22956 msgstr ""
22957
22958 #. type: verbatim
22959 #: ../fish/guestfish-actions.pod:939
22960 #, no-wrap
22961 msgid ""
22962 " exists path\n"
22963 "\n"
22964 msgstr ""
22965
22966 #. type: textblock
22967 #: ../fish/guestfish-actions.pod:944
22968 msgid "See also L</is-file>, L</is-dir>, L</stat>."
22969 msgstr ""
22970
22971 #. type: =head2
22972 #: ../fish/guestfish-actions.pod:946
22973 msgid "fallocate"
22974 msgstr ""
22975
22976 #. type: verbatim
22977 #: ../fish/guestfish-actions.pod:948
22978 #, no-wrap
22979 msgid ""
22980 " fallocate path len\n"
22981 "\n"
22982 msgstr ""
22983
22984 #. type: =head2
22985 #: ../fish/guestfish-actions.pod:965
22986 msgid "fallocate64"
22987 msgstr ""
22988
22989 #. type: verbatim
22990 #: ../fish/guestfish-actions.pod:967
22991 #, no-wrap
22992 msgid ""
22993 " fallocate64 path len\n"
22994 "\n"
22995 msgstr ""
22996
22997 #. type: textblock
22998 #: ../fish/guestfish-actions.pod:973
22999 msgid ""
23000 "Note that this call allocates disk blocks for the file.  To create a sparse "
23001 "file use L</truncate-size> instead."
23002 msgstr ""
23003
23004 #. type: textblock
23005 #: ../fish/guestfish-actions.pod:976
23006 msgid ""
23007 "The deprecated call L</fallocate> does the same, but owing to an oversight "
23008 "it only allowed 30 bit lengths to be specified, effectively limiting the "
23009 "maximum size of files created through that call to 1GB."
23010 msgstr ""
23011
23012 #. type: =head2
23013 #: ../fish/guestfish-actions.pod:985
23014 msgid "fgrep"
23015 msgstr ""
23016
23017 #. type: verbatim
23018 #: ../fish/guestfish-actions.pod:987
23019 #, no-wrap
23020 msgid ""
23021 " fgrep pattern path\n"
23022 "\n"
23023 msgstr ""
23024
23025 #. type: =head2
23026 #: ../fish/guestfish-actions.pod:995
23027 msgid "fgrepi"
23028 msgstr ""
23029
23030 #. type: verbatim
23031 #: ../fish/guestfish-actions.pod:997
23032 #, no-wrap
23033 msgid ""
23034 " fgrepi pattern path\n"
23035 "\n"
23036 msgstr ""
23037
23038 #. type: =head2
23039 #: ../fish/guestfish-actions.pod:1005
23040 msgid "file"
23041 msgstr ""
23042
23043 #. type: verbatim
23044 #: ../fish/guestfish-actions.pod:1007
23045 #, no-wrap
23046 msgid ""
23047 " file path\n"
23048 "\n"
23049 msgstr ""
23050
23051 #. type: textblock
23052 #: ../fish/guestfish-actions.pod:1023
23053 msgid ""
23054 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
23055 "(etc), L</is-zero>."
23056 msgstr ""
23057
23058 #. type: =head2
23059 #: ../fish/guestfish-actions.pod:1026
23060 msgid "file-architecture"
23061 msgstr ""
23062
23063 #. type: verbatim
23064 #: ../fish/guestfish-actions.pod:1028
23065 #, no-wrap
23066 msgid ""
23067 " file-architecture filename\n"
23068 "\n"
23069 msgstr ""
23070
23071 #. type: =head2
23072 #: ../fish/guestfish-actions.pod:1131
23073 msgid "filesize"
23074 msgstr ""
23075
23076 #. type: verbatim
23077 #: ../fish/guestfish-actions.pod:1133
23078 #, no-wrap
23079 msgid ""
23080 " filesize file\n"
23081 "\n"
23082 msgstr ""
23083
23084 #. type: textblock
23085 #: ../fish/guestfish-actions.pod:1137
23086 msgid ""
23087 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
23088 "L</is-file> etc.  To get the size of block devices, use "
23089 "L</blockdev-getsize64>."
23090 msgstr ""
23091
23092 #. type: =head2
23093 #: ../fish/guestfish-actions.pod:1141
23094 msgid "fill"
23095 msgstr ""
23096
23097 #. type: verbatim
23098 #: ../fish/guestfish-actions.pod:1143
23099 #, no-wrap
23100 msgid ""
23101 " fill c len path\n"
23102 "\n"
23103 msgstr ""
23104
23105 #. type: textblock
23106 #: ../fish/guestfish-actions.pod:1149
23107 msgid ""
23108 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
23109 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
23110 "L</fill-pattern>."
23111 msgstr ""
23112
23113 #. type: =head2
23114 #: ../fish/guestfish-actions.pod:1154
23115 msgid "fill-pattern"
23116 msgstr ""
23117
23118 #. type: verbatim
23119 #: ../fish/guestfish-actions.pod:1156
23120 #, no-wrap
23121 msgid ""
23122 " fill-pattern pattern len path\n"
23123 "\n"
23124 msgstr ""
23125
23126 #. type: textblock
23127 #: ../fish/guestfish-actions.pod:1158
23128 msgid ""
23129 "This function is like L</fill> except that it creates a new file of length "
23130 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
23131 "is truncated if necessary to ensure the length of the file is exactly C<len> "
23132 "bytes."
23133 msgstr ""
23134
23135 #. type: =head2
23136 #: ../fish/guestfish-actions.pod:1163
23137 msgid "find"
23138 msgstr ""
23139
23140 #. type: verbatim
23141 #: ../fish/guestfish-actions.pod:1165
23142 #, no-wrap
23143 msgid ""
23144 " find directory\n"
23145 "\n"
23146 msgstr ""
23147
23148 #. type: textblock
23149 #: ../fish/guestfish-actions.pod:1179
23150 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
23151 msgstr ""
23152
23153 #. type: textblock
23154 #: ../fish/guestfish-actions.pod:1192
23155 msgid "See also L</find0>."
23156 msgstr ""
23157
23158 #. type: =head2
23159 #: ../fish/guestfish-actions.pod:1197
23160 msgid "find0"
23161 msgstr ""
23162
23163 #. type: verbatim
23164 #: ../fish/guestfish-actions.pod:1199
23165 #, no-wrap
23166 msgid ""
23167 " find0 directory (files|-)\n"
23168 "\n"
23169 msgstr ""
23170
23171 #. type: textblock
23172 #: ../fish/guestfish-actions.pod:1205
23173 msgid "This command works the same way as L</find> with the following exceptions:"
23174 msgstr ""
23175
23176 #. type: =head2
23177 #: ../fish/guestfish-actions.pod:1232
23178 msgid "findfs-label"
23179 msgstr ""
23180
23181 #. type: verbatim
23182 #: ../fish/guestfish-actions.pod:1234
23183 #, no-wrap
23184 msgid ""
23185 " findfs-label label\n"
23186 "\n"
23187 msgstr ""
23188
23189 #. type: textblock
23190 #: ../fish/guestfish-actions.pod:1240
23191 msgid "To find the label of a filesystem, use L</vfs-label>."
23192 msgstr ""
23193
23194 #. type: =head2
23195 #: ../fish/guestfish-actions.pod:1242
23196 msgid "findfs-uuid"
23197 msgstr ""
23198
23199 #. type: verbatim
23200 #: ../fish/guestfish-actions.pod:1244
23201 #, no-wrap
23202 msgid ""
23203 " findfs-uuid uuid\n"
23204 "\n"
23205 msgstr ""
23206
23207 #. type: textblock
23208 #: ../fish/guestfish-actions.pod:1250
23209 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23210 msgstr ""
23211
23212 #. type: =head2
23213 #: ../fish/guestfish-actions.pod:1252
23214 msgid "fsck"
23215 msgstr ""
23216
23217 #. type: verbatim
23218 #: ../fish/guestfish-actions.pod:1254
23219 #, no-wrap
23220 msgid ""
23221 " fsck fstype device\n"
23222 "\n"
23223 msgstr ""
23224
23225 #. type: =head2
23226 #: ../fish/guestfish-actions.pod:1284
23227 msgid "get-append"
23228 msgstr ""
23229
23230 #. type: verbatim
23231 #: ../fish/guestfish-actions.pod:1286
23232 #, no-wrap
23233 msgid ""
23234 " get-append\n"
23235 "\n"
23236 msgstr ""
23237
23238 #. type: =head2
23239 #: ../fish/guestfish-actions.pod:1293
23240 msgid "get-attach-method"
23241 msgstr ""
23242
23243 #. type: verbatim
23244 #: ../fish/guestfish-actions.pod:1295
23245 #, no-wrap
23246 msgid ""
23247 " get-attach-method\n"
23248 "\n"
23249 msgstr ""
23250
23251 #. type: textblock
23252 #: ../fish/guestfish-actions.pod:1297
23253 msgid "Return the current attach method.  See L</set-attach-method>."
23254 msgstr ""
23255
23256 #. type: =head2
23257 #: ../fish/guestfish-actions.pod:1299
23258 msgid "get-autosync"
23259 msgstr ""
23260
23261 #. type: verbatim
23262 #: ../fish/guestfish-actions.pod:1301
23263 #, no-wrap
23264 msgid ""
23265 " get-autosync\n"
23266 "\n"
23267 msgstr ""
23268
23269 #. type: =head2
23270 #: ../fish/guestfish-actions.pod:1305
23271 msgid "get-direct"
23272 msgstr ""
23273
23274 #. type: verbatim
23275 #: ../fish/guestfish-actions.pod:1307
23276 #, no-wrap
23277 msgid ""
23278 " get-direct\n"
23279 "\n"
23280 msgstr ""
23281
23282 #. type: =head2
23283 #: ../fish/guestfish-actions.pod:1311
23284 msgid "get-e2label"
23285 msgstr ""
23286
23287 #. type: verbatim
23288 #: ../fish/guestfish-actions.pod:1313
23289 #, no-wrap
23290 msgid ""
23291 " get-e2label device\n"
23292 "\n"
23293 msgstr ""
23294
23295 #. type: =head2
23296 #: ../fish/guestfish-actions.pod:1325
23297 msgid "get-e2uuid"
23298 msgstr ""
23299
23300 #. type: verbatim
23301 #: ../fish/guestfish-actions.pod:1327
23302 #, no-wrap
23303 msgid ""
23304 " get-e2uuid device\n"
23305 "\n"
23306 msgstr ""
23307
23308 #. type: =head2
23309 #: ../fish/guestfish-actions.pod:1339
23310 msgid "get-memsize"
23311 msgstr ""
23312
23313 #. type: verbatim
23314 #: ../fish/guestfish-actions.pod:1341
23315 #, no-wrap
23316 msgid ""
23317 " get-memsize\n"
23318 "\n"
23319 msgstr ""
23320
23321 #. type: textblock
23322 #: ../fish/guestfish-actions.pod:1346
23323 msgid ""
23324 "If L</set-memsize> was not called on this handle, and if "
23325 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23326 "value for memsize."
23327 msgstr ""
23328
23329 #. type: =head2
23330 #: ../fish/guestfish-actions.pod:1353
23331 msgid "get-network"
23332 msgstr ""
23333
23334 #. type: verbatim
23335 #: ../fish/guestfish-actions.pod:1355
23336 #, no-wrap
23337 msgid ""
23338 " get-network\n"
23339 "\n"
23340 msgstr ""
23341
23342 #. type: =head2
23343 #: ../fish/guestfish-actions.pod:1359
23344 msgid "get-path"
23345 msgstr ""
23346
23347 #. type: verbatim
23348 #: ../fish/guestfish-actions.pod:1361
23349 #, no-wrap
23350 msgid ""
23351 " get-path\n"
23352 "\n"
23353 msgstr ""
23354
23355 #. type: =head2
23356 #: ../fish/guestfish-actions.pod:1368
23357 msgid "get-pid"
23358 msgstr ""
23359
23360 #. type: =head2
23361 #: ../fish/guestfish-actions.pod:1370
23362 msgid "pid"
23363 msgstr ""
23364
23365 #. type: verbatim
23366 #: ../fish/guestfish-actions.pod:1372
23367 #, no-wrap
23368 msgid ""
23369 " get-pid\n"
23370 "\n"
23371 msgstr ""
23372
23373 #. type: =head2
23374 #: ../fish/guestfish-actions.pod:1379
23375 msgid "get-qemu"
23376 msgstr ""
23377
23378 #. type: verbatim
23379 #: ../fish/guestfish-actions.pod:1381
23380 #, no-wrap
23381 msgid ""
23382 " get-qemu\n"
23383 "\n"
23384 msgstr ""
23385
23386 #. type: =head2
23387 #: ../fish/guestfish-actions.pod:1388
23388 msgid "get-recovery-proc"
23389 msgstr ""
23390
23391 #. type: verbatim
23392 #: ../fish/guestfish-actions.pod:1390
23393 #, no-wrap
23394 msgid ""
23395 " get-recovery-proc\n"
23396 "\n"
23397 msgstr ""
23398
23399 #. type: =head2
23400 #: ../fish/guestfish-actions.pod:1394
23401 msgid "get-selinux"
23402 msgstr ""
23403
23404 #. type: verbatim
23405 #: ../fish/guestfish-actions.pod:1396
23406 #, no-wrap
23407 msgid ""
23408 " get-selinux\n"
23409 "\n"
23410 msgstr ""
23411
23412 #. type: textblock
23413 #: ../fish/guestfish-actions.pod:1398
23414 msgid ""
23415 "This returns the current setting of the selinux flag which is passed to the "
23416 "appliance at boot time.  See L</set-selinux>."
23417 msgstr ""
23418
23419 #. type: =head2
23420 #: ../fish/guestfish-actions.pod:1404
23421 msgid "get-state"
23422 msgstr ""
23423
23424 #. type: verbatim
23425 #: ../fish/guestfish-actions.pod:1406
23426 #, no-wrap
23427 msgid ""
23428 " get-state\n"
23429 "\n"
23430 msgstr ""
23431
23432 #. type: =head2
23433 #: ../fish/guestfish-actions.pod:1413
23434 msgid "get-trace"
23435 msgstr ""
23436
23437 #. type: verbatim
23438 #: ../fish/guestfish-actions.pod:1415
23439 #, no-wrap
23440 msgid ""
23441 " get-trace\n"
23442 "\n"
23443 msgstr ""
23444
23445 #. type: =head2
23446 #: ../fish/guestfish-actions.pod:1419
23447 msgid "get-umask"
23448 msgstr ""
23449
23450 #. type: verbatim
23451 #: ../fish/guestfish-actions.pod:1421
23452 #, no-wrap
23453 msgid ""
23454 " get-umask\n"
23455 "\n"
23456 msgstr ""
23457
23458 #. type: textblock
23459 #: ../fish/guestfish-actions.pod:1423
23460 msgid ""
23461 "Return the current umask.  By default the umask is C<022> unless it has been "
23462 "set by calling L</umask>."
23463 msgstr ""
23464
23465 #. type: =head2
23466 #: ../fish/guestfish-actions.pod:1426
23467 msgid "get-verbose"
23468 msgstr ""
23469
23470 #. type: verbatim
23471 #: ../fish/guestfish-actions.pod:1428
23472 #, no-wrap
23473 msgid ""
23474 " get-verbose\n"
23475 "\n"
23476 msgstr ""
23477
23478 #. type: =head2
23479 #: ../fish/guestfish-actions.pod:1432
23480 msgid "getcon"
23481 msgstr ""
23482
23483 #. type: verbatim
23484 #: ../fish/guestfish-actions.pod:1434
23485 #, no-wrap
23486 msgid ""
23487 " getcon\n"
23488 "\n"
23489 msgstr ""
23490
23491 #. type: textblock
23492 #: ../fish/guestfish-actions.pod:1438
23493 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23494 msgstr ""
23495
23496 #. type: =head2
23497 #: ../fish/guestfish-actions.pod:1441
23498 msgid "getxattr"
23499 msgstr ""
23500
23501 #. type: verbatim
23502 #: ../fish/guestfish-actions.pod:1443
23503 #, no-wrap
23504 msgid ""
23505 " getxattr path name\n"
23506 "\n"
23507 msgstr ""
23508
23509 #. type: textblock
23510 #: ../fish/guestfish-actions.pod:1445
23511 msgid ""
23512 "Get a single extended attribute from file C<path> named C<name>.  This call "
23513 "follows symlinks.  If you want to lookup an extended attribute for the "
23514 "symlink itself, use L</lgetxattr>."
23515 msgstr ""
23516
23517 #. type: textblock
23518 #: ../fish/guestfish-actions.pod:1449 ../fish/guestfish-actions.pod:2476
23519 msgid ""
23520 "Normally it is better to get all extended attributes from a file in one go "
23521 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23522 "buggy and do not provide a way to list out attributes.  For these "
23523 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23524 "attributes you want in advance and call this function."
23525 msgstr ""
23526
23527 #. type: textblock
23528 #: ../fish/guestfish-actions.pod:1459
23529 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23530 msgstr ""
23531
23532 #. type: =head2
23533 #: ../fish/guestfish-actions.pod:1461
23534 msgid "getxattrs"
23535 msgstr ""
23536
23537 #. type: verbatim
23538 #: ../fish/guestfish-actions.pod:1463
23539 #, no-wrap
23540 msgid ""
23541 " getxattrs path\n"
23542 "\n"
23543 msgstr ""
23544
23545 #. type: textblock
23546 #: ../fish/guestfish-actions.pod:1471
23547 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23548 msgstr ""
23549
23550 #. type: =head2
23551 #: ../fish/guestfish-actions.pod:1473
23552 msgid "glob-expand"
23553 msgstr ""
23554
23555 #. type: verbatim
23556 #: ../fish/guestfish-actions.pod:1475
23557 #, no-wrap
23558 msgid ""
23559 " glob-expand pattern\n"
23560 "\n"
23561 msgstr ""
23562
23563 #. type: =head2
23564 #: ../fish/guestfish-actions.pod:1488
23565 msgid "grep"
23566 msgstr ""
23567
23568 #. type: verbatim
23569 #: ../fish/guestfish-actions.pod:1490
23570 #, no-wrap
23571 msgid ""
23572 " grep regex path\n"
23573 "\n"
23574 msgstr ""
23575
23576 #. type: =head2
23577 #: ../fish/guestfish-actions.pod:1498
23578 msgid "grepi"
23579 msgstr ""
23580
23581 #. type: verbatim
23582 #: ../fish/guestfish-actions.pod:1500
23583 #, no-wrap
23584 msgid ""
23585 " grepi regex path\n"
23586 "\n"
23587 msgstr ""
23588
23589 #. type: =head2
23590 #: ../fish/guestfish-actions.pod:1508
23591 msgid "grub-install"
23592 msgstr ""
23593
23594 #. type: verbatim
23595 #: ../fish/guestfish-actions.pod:1510
23596 #, no-wrap
23597 msgid ""
23598 " grub-install root device\n"
23599 "\n"
23600 msgstr ""
23601
23602 #. type: =head2
23603 #: ../fish/guestfish-actions.pod:1526
23604 msgid "head"
23605 msgstr ""
23606
23607 #. type: verbatim
23608 #: ../fish/guestfish-actions.pod:1528
23609 #, no-wrap
23610 msgid ""
23611 " head path\n"
23612 "\n"
23613 msgstr ""
23614
23615 #. type: =head2
23616 #: ../fish/guestfish-actions.pod:1536
23617 msgid "head-n"
23618 msgstr ""
23619
23620 #. type: verbatim
23621 #: ../fish/guestfish-actions.pod:1538
23622 #, no-wrap
23623 msgid ""
23624 " head-n nrlines path\n"
23625 "\n"
23626 msgstr ""
23627
23628 #. type: =head2
23629 #: ../fish/guestfish-actions.pod:1551
23630 msgid "hexdump"
23631 msgstr ""
23632
23633 #. type: verbatim
23634 #: ../fish/guestfish-actions.pod:1553
23635 #, no-wrap
23636 msgid ""
23637 " hexdump path\n"
23638 "\n"
23639 msgstr ""
23640
23641 #. type: =head2
23642 #: ../fish/guestfish-actions.pod:1561
23643 msgid "initrd-cat"
23644 msgstr ""
23645
23646 #. type: verbatim
23647 #: ../fish/guestfish-actions.pod:1563
23648 #, no-wrap
23649 msgid ""
23650 " initrd-cat initrdpath filename\n"
23651 "\n"
23652 msgstr ""
23653
23654 #. type: textblock
23655 #: ../fish/guestfish-actions.pod:1575
23656 msgid "See also L</initrd-list>."
23657 msgstr ""
23658
23659 #. type: =head2
23660 #: ../fish/guestfish-actions.pod:1580
23661 msgid "initrd-list"
23662 msgstr ""
23663
23664 #. type: verbatim
23665 #: ../fish/guestfish-actions.pod:1582
23666 #, no-wrap
23667 msgid ""
23668 " initrd-list path\n"
23669 "\n"
23670 msgstr ""
23671
23672 #. type: =head2
23673 #: ../fish/guestfish-actions.pod:1594
23674 msgid "inotify-add-watch"
23675 msgstr ""
23676
23677 #. type: verbatim
23678 #: ../fish/guestfish-actions.pod:1596
23679 #, no-wrap
23680 msgid ""
23681 " inotify-add-watch path mask\n"
23682 "\n"
23683 msgstr ""
23684
23685 #. type: =head2
23686 #: ../fish/guestfish-actions.pod:1608
23687 msgid "inotify-close"
23688 msgstr ""
23689
23690 #. type: verbatim
23691 #: ../fish/guestfish-actions.pod:1610
23692 #, no-wrap
23693 msgid ""
23694 " inotify-close\n"
23695 "\n"
23696 msgstr ""
23697
23698 #. type: =head2
23699 #: ../fish/guestfish-actions.pod:1616
23700 msgid "inotify-files"
23701 msgstr ""
23702
23703 #. type: verbatim
23704 #: ../fish/guestfish-actions.pod:1618
23705 #, no-wrap
23706 msgid ""
23707 " inotify-files\n"
23708 "\n"
23709 msgstr ""
23710
23711 #. type: textblock
23712 #: ../fish/guestfish-actions.pod:1620
23713 msgid ""
23714 "This function is a helpful wrapper around L</inotify-read> which just "
23715 "returns a list of pathnames of objects that were touched.  The returned "
23716 "pathnames are sorted and deduplicated."
23717 msgstr ""
23718
23719 #. type: =head2
23720 #: ../fish/guestfish-actions.pod:1624
23721 msgid "inotify-init"
23722 msgstr ""
23723
23724 #. type: verbatim
23725 #: ../fish/guestfish-actions.pod:1626
23726 #, no-wrap
23727 msgid ""
23728 " inotify-init maxevents\n"
23729 "\n"
23730 msgstr ""
23731
23732 #. type: textblock
23733 #: ../fish/guestfish-actions.pod:1632
23734 msgid ""
23735 "C<maxevents> is the maximum number of events which will be queued up between "
23736 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23737 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23738 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23739 "but records the fact that it threw them away by setting a flag "
23740 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23741 msgstr ""
23742
23743 #. type: textblock
23744 #: ../fish/guestfish-actions.pod:1642
23745 msgid ""
23746 "Before any events are generated, you have to add some watches to the "
23747 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23748 "L</inotify-watch-all>."
23749 msgstr ""
23750
23751 #. type: textblock
23752 #: ../fish/guestfish-actions.pod:1648
23753 msgid ""
23754 "Queued up events should be read periodically by calling L</inotify-read> (or "
23755 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23756 "If you don't read the events out often enough then you risk the internal "
23757 "queue overflowing."
23758 msgstr ""
23759
23760 #. type: textblock
23761 #: ../fish/guestfish-actions.pod:1655
23762 msgid ""
23763 "The handle should be closed after use by calling L</inotify-close>.  This "
23764 "also removes any watches automatically."
23765 msgstr ""
23766
23767 #. type: =head2
23768 #: ../fish/guestfish-actions.pod:1664
23769 msgid "inotify-read"
23770 msgstr ""
23771
23772 #. type: verbatim
23773 #: ../fish/guestfish-actions.pod:1666
23774 #, no-wrap
23775 msgid ""
23776 " inotify-read\n"
23777 "\n"
23778 msgstr ""
23779
23780 #. type: =head2
23781 #: ../fish/guestfish-actions.pod:1679
23782 msgid "inotify-rm-watch"
23783 msgstr ""
23784
23785 #. type: verbatim
23786 #: ../fish/guestfish-actions.pod:1681
23787 #, no-wrap
23788 msgid ""
23789 " inotify-rm-watch wd\n"
23790 "\n"
23791 msgstr ""
23792
23793 #. type: textblock
23794 #: ../fish/guestfish-actions.pod:1683
23795 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23796 msgstr ""
23797
23798 #. type: =head2
23799 #: ../fish/guestfish-actions.pod:1686
23800 msgid "inspect-get-arch"
23801 msgstr ""
23802
23803 #. type: verbatim
23804 #: ../fish/guestfish-actions.pod:1688
23805 #, no-wrap
23806 msgid ""
23807 " inspect-get-arch root\n"
23808 "\n"
23809 msgstr ""
23810
23811 #. type: textblock
23812 #: ../fish/guestfish-actions.pod:1690
23813 msgid ""
23814 "This returns the architecture of the inspected operating system.  The "
23815 "possible return values are listed under L</file-architecture>."
23816 msgstr ""
23817
23818 #. type: =head2
23819 #: ../fish/guestfish-actions.pod:1699
23820 msgid "inspect-get-distro"
23821 msgstr ""
23822
23823 #. type: verbatim
23824 #: ../fish/guestfish-actions.pod:1701
23825 #, no-wrap
23826 msgid ""
23827 " inspect-get-distro root\n"
23828 "\n"
23829 msgstr ""
23830
23831 #. type: =head2
23832 #: ../fish/guestfish-actions.pod:1782
23833 msgid "inspect-get-drive-mappings"
23834 msgstr ""
23835
23836 #. type: verbatim
23837 #: ../fish/guestfish-actions.pod:1784
23838 #, no-wrap
23839 msgid ""
23840 " inspect-get-drive-mappings root\n"
23841 "\n"
23842 msgstr ""
23843
23844 #. type: textblock
23845 #: ../fish/guestfish-actions.pod:1811
23846 msgid ""
23847 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23848 "L</inspect-get-mountpoints>, L</inspect-get-filesystems>."
23849 msgstr ""
23850
23851 #. type: =head2
23852 #: ../fish/guestfish-actions.pod:1815
23853 msgid "inspect-get-filesystems"
23854 msgstr ""
23855
23856 #. type: verbatim
23857 #: ../fish/guestfish-actions.pod:1817
23858 #, no-wrap
23859 msgid ""
23860 " inspect-get-filesystems root\n"
23861 "\n"
23862 msgstr ""
23863
23864 #. type: textblock
23865 #: ../fish/guestfish-actions.pod:1827
23866 msgid ""
23867 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23868 "L</inspect-get-mountpoints>."
23869 msgstr ""
23870
23871 #. type: =head2
23872 #: ../fish/guestfish-actions.pod:1830
23873 msgid "inspect-get-format"
23874 msgstr ""
23875
23876 #. type: verbatim
23877 #: ../fish/guestfish-actions.pod:1832
23878 #, no-wrap
23879 msgid ""
23880 " inspect-get-format root\n"
23881 "\n"
23882 msgstr ""
23883
23884 #. type: =head2
23885 #: ../fish/guestfish-actions.pod:1861
23886 msgid "inspect-get-hostname"
23887 msgstr ""
23888
23889 #. type: verbatim
23890 #: ../fish/guestfish-actions.pod:1863
23891 #, no-wrap
23892 msgid ""
23893 " inspect-get-hostname root\n"
23894 "\n"
23895 msgstr ""
23896
23897 #. type: =head2
23898 #: ../fish/guestfish-actions.pod:1873
23899 msgid "inspect-get-icon"
23900 msgstr ""
23901
23902 #. type: verbatim
23903 #: ../fish/guestfish-actions.pod:1875
23904 #, no-wrap
23905 msgid ""
23906 " inspect-get-icon root [favicon:..] [highquality:..]\n"
23907 "\n"
23908 msgstr ""
23909
23910 #. type: =head2
23911 #: ../fish/guestfish-actions.pod:1939
23912 msgid "inspect-get-major-version"
23913 msgstr ""
23914
23915 #. type: verbatim
23916 #: ../fish/guestfish-actions.pod:1941
23917 #, no-wrap
23918 msgid ""
23919 " inspect-get-major-version root\n"
23920 "\n"
23921 msgstr ""
23922
23923 #. type: =head2
23924 #: ../fish/guestfish-actions.pod:1957
23925 msgid "inspect-get-minor-version"
23926 msgstr ""
23927
23928 #. type: verbatim
23929 #: ../fish/guestfish-actions.pod:1959
23930 #, no-wrap
23931 msgid ""
23932 " inspect-get-minor-version root\n"
23933 "\n"
23934 msgstr ""
23935
23936 #. type: textblock
23937 #: ../fish/guestfish-actions.pod:1966
23938 msgid ""
23939 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23940 "L</inspect-get-major-version>."
23941 msgstr ""
23942
23943 #. type: =head2
23944 #: ../fish/guestfish-actions.pod:1969
23945 msgid "inspect-get-mountpoints"
23946 msgstr ""
23947
23948 #. type: verbatim
23949 #: ../fish/guestfish-actions.pod:1971
23950 #, no-wrap
23951 msgid ""
23952 " inspect-get-mountpoints root\n"
23953 "\n"
23954 msgstr ""
23955
23956 #. type: textblock
23957 #: ../fish/guestfish-actions.pod:1990
23958 msgid ""
23959 "For operating systems like Windows which still use drive letters, this call "
23960 "will only return an entry for the first drive \"mounted on\" C</>.  For "
23961 "information about the mapping of drive letters to partitions, see "
23962 "L</inspect-get-drive-mappings>."
23963 msgstr ""
23964
23965 #. type: textblock
23966 #: ../fish/guestfish-actions.pod:1996
23967 msgid ""
23968 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23969 "L</inspect-get-filesystems>."
23970 msgstr ""
23971
23972 #. type: =head2
23973 #: ../fish/guestfish-actions.pod:1999
23974 msgid "inspect-get-package-format"
23975 msgstr ""
23976
23977 #. type: verbatim
23978 #: ../fish/guestfish-actions.pod:2001
23979 #, no-wrap
23980 msgid ""
23981 " inspect-get-package-format root\n"
23982 "\n"
23983 msgstr ""
23984
23985 #. type: textblock
23986 #: ../fish/guestfish-actions.pod:2003
23987 msgid ""
23988 "This function and L</inspect-get-package-management> return the package "
23989 "format and package management tool used by the inspected operating system.  "
23990 "For example for Fedora these functions would return C<rpm> (package format) "
23991 "and C<yum> (package management)."
23992 msgstr ""
23993
23994 #. type: =head2
23995 #: ../fish/guestfish-actions.pod:2018
23996 msgid "inspect-get-package-management"
23997 msgstr ""
23998
23999 #. type: verbatim
24000 #: ../fish/guestfish-actions.pod:2020
24001 #, no-wrap
24002 msgid ""
24003 " inspect-get-package-management root\n"
24004 "\n"
24005 msgstr ""
24006
24007 #. type: textblock
24008 #: ../fish/guestfish-actions.pod:2022
24009 msgid ""
24010 "L</inspect-get-package-format> and this function return the package format "
24011 "and package management tool used by the inspected operating system.  For "
24012 "example for Fedora these functions would return C<rpm> (package format) and "
24013 "C<yum> (package management)."
24014 msgstr ""
24015
24016 #. type: =head2
24017 #: ../fish/guestfish-actions.pod:2039
24018 msgid "inspect-get-product-name"
24019 msgstr ""
24020
24021 #. type: verbatim
24022 #: ../fish/guestfish-actions.pod:2041
24023 #, no-wrap
24024 msgid ""
24025 " inspect-get-product-name root\n"
24026 "\n"
24027 msgstr ""
24028
24029 #. type: =head2
24030 #: ../fish/guestfish-actions.pod:2053
24031 msgid "inspect-get-product-variant"
24032 msgstr ""
24033
24034 #. type: verbatim
24035 #: ../fish/guestfish-actions.pod:2055
24036 #, no-wrap
24037 msgid ""
24038 " inspect-get-product-variant root\n"
24039 "\n"
24040 msgstr ""
24041
24042 #. type: textblock
24043 #: ../fish/guestfish-actions.pod:2076
24044 msgid ""
24045 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
24046 "L</inspect-get-product-name>, L</inspect-get-major-version>."
24047 msgstr ""
24048
24049 #. type: =head2
24050 #: ../fish/guestfish-actions.pod:2080
24051 msgid "inspect-get-roots"
24052 msgstr ""
24053
24054 #. type: verbatim
24055 #: ../fish/guestfish-actions.pod:2082
24056 #, no-wrap
24057 msgid ""
24058 " inspect-get-roots\n"
24059 "\n"
24060 msgstr ""
24061
24062 #. type: textblock
24063 #: ../fish/guestfish-actions.pod:2084
24064 msgid ""
24065 "This function is a convenient way to get the list of root devices, as "
24066 "returned from a previous call to L</inspect-os>, but without redoing the "
24067 "whole inspection process."
24068 msgstr ""
24069
24070 #. type: textblock
24071 #: ../fish/guestfish-actions.pod:2088
24072 msgid ""
24073 "This returns an empty list if either no root devices were found or the "
24074 "caller has not called L</inspect-os>."
24075 msgstr ""
24076
24077 #. type: =head2
24078 #: ../fish/guestfish-actions.pod:2093
24079 msgid "inspect-get-type"
24080 msgstr ""
24081
24082 #. type: verbatim
24083 #: ../fish/guestfish-actions.pod:2095
24084 #, no-wrap
24085 msgid ""
24086 " inspect-get-type root\n"
24087 "\n"
24088 msgstr ""
24089
24090 #. type: =head2
24091 #: ../fish/guestfish-actions.pod:2125
24092 msgid "inspect-get-windows-current-control-set"
24093 msgstr ""
24094
24095 #. type: verbatim
24096 #: ../fish/guestfish-actions.pod:2127
24097 #, no-wrap
24098 msgid ""
24099 " inspect-get-windows-current-control-set root\n"
24100 "\n"
24101 msgstr ""
24102
24103 #. type: =head2
24104 #: ../fish/guestfish-actions.pod:2138
24105 msgid "inspect-get-windows-systemroot"
24106 msgstr ""
24107
24108 #. type: verbatim
24109 #: ../fish/guestfish-actions.pod:2140
24110 #, no-wrap
24111 msgid ""
24112 " inspect-get-windows-systemroot root\n"
24113 "\n"
24114 msgstr ""
24115
24116 #. type: =head2
24117 #: ../fish/guestfish-actions.pod:2151
24118 msgid "inspect-is-live"
24119 msgstr ""
24120
24121 #. type: verbatim
24122 #: ../fish/guestfish-actions.pod:2153
24123 #, no-wrap
24124 msgid ""
24125 " inspect-is-live root\n"
24126 "\n"
24127 msgstr ""
24128
24129 #. type: textblock
24130 #: ../fish/guestfish-actions.pod:2155
24131 msgid ""
24132 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24133 "then this returns true if a live image was detected on the disk."
24134 msgstr ""
24135
24136 #. type: =head2
24137 #: ../fish/guestfish-actions.pod:2161
24138 msgid "inspect-is-multipart"
24139 msgstr ""
24140
24141 #. type: verbatim
24142 #: ../fish/guestfish-actions.pod:2163
24143 #, no-wrap
24144 msgid ""
24145 " inspect-is-multipart root\n"
24146 "\n"
24147 msgstr ""
24148
24149 #. type: textblock
24150 #: ../fish/guestfish-actions.pod:2165
24151 msgid ""
24152 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24153 "then this returns true if the disk is part of a set."
24154 msgstr ""
24155
24156 #. type: =head2
24157 #: ../fish/guestfish-actions.pod:2171
24158 msgid "inspect-is-netinst"
24159 msgstr ""
24160
24161 #. type: verbatim
24162 #: ../fish/guestfish-actions.pod:2173
24163 #, no-wrap
24164 msgid ""
24165 " inspect-is-netinst root\n"
24166 "\n"
24167 msgstr ""
24168
24169 #. type: textblock
24170 #: ../fish/guestfish-actions.pod:2175
24171 msgid ""
24172 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24173 "then this returns true if the disk is a network installer, ie. not a "
24174 "self-contained install CD but one which is likely to require network access "
24175 "to complete the install."
24176 msgstr ""
24177
24178 #. type: =head2
24179 #: ../fish/guestfish-actions.pod:2183
24180 msgid "inspect-list-applications"
24181 msgstr ""
24182
24183 #. type: verbatim
24184 #: ../fish/guestfish-actions.pod:2185
24185 #, no-wrap
24186 msgid ""
24187 " inspect-list-applications root\n"
24188 "\n"
24189 msgstr ""
24190
24191 #. type: textblock
24192 #: ../fish/guestfish-actions.pod:2189
24193 msgid ""
24194 "I<Note:> This call works differently from other parts of the inspection "
24195 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24196 "then mount up the disks, before calling this.  Listing applications is a "
24197 "significantly more difficult operation which requires access to the full "
24198 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24199 "are just returning data cached in the libguestfs handle, this call actually "
24200 "reads parts of the mounted filesystems during the call."
24201 msgstr ""
24202
24203 #. type: =head2
24204 #: ../fish/guestfish-actions.pod:2279
24205 msgid "inspect-os"
24206 msgstr ""
24207
24208 #. type: verbatim
24209 #: ../fish/guestfish-actions.pod:2281
24210 #, no-wrap
24211 msgid ""
24212 " inspect-os\n"
24213 "\n"
24214 msgstr ""
24215
24216 #. type: textblock
24217 #: ../fish/guestfish-actions.pod:2296
24218 msgid ""
24219 "You can pass the root string(s) returned to other L</inspect-get-*> "
24220 "functions in order to query further information about each operating system, "
24221 "such as the name and version."
24222 msgstr ""
24223
24224 #. type: textblock
24225 #: ../fish/guestfish-actions.pod:2301
24226 msgid ""
24227 "This function uses other libguestfs features such as L</mount-ro> and "
24228 "L</umount-all> in order to mount and unmount filesystems and look at the "
24229 "contents.  This should be called with no disks currently mounted.  The "
24230 "function may also use Augeas, so any existing Augeas handle will be closed."
24231 msgstr ""
24232
24233 #. type: textblock
24234 #: ../fish/guestfish-actions.pod:2313 ../fish/guestfish-actions.pod:2511 ../fish/guestfish-actions.pod:2570
24235 msgid "See also L</list-filesystems>."
24236 msgstr ""
24237
24238 #. type: =head2
24239 #: ../fish/guestfish-actions.pod:2315
24240 msgid "is-blockdev"
24241 msgstr ""
24242
24243 #. type: verbatim
24244 #: ../fish/guestfish-actions.pod:2317
24245 #, no-wrap
24246 msgid ""
24247 " is-blockdev path\n"
24248 "\n"
24249 msgstr ""
24250
24251 #. type: textblock
24252 #: ../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
24253 msgid "See also L</stat>."
24254 msgstr ""
24255
24256 #. type: =head2
24257 #: ../fish/guestfish-actions.pod:2324
24258 msgid "is-busy"
24259 msgstr ""
24260
24261 #. type: verbatim
24262 #: ../fish/guestfish-actions.pod:2326
24263 #, no-wrap
24264 msgid ""
24265 " is-busy\n"
24266 "\n"
24267 msgstr ""
24268
24269 #. type: =head2
24270 #: ../fish/guestfish-actions.pod:2333
24271 msgid "is-chardev"
24272 msgstr ""
24273
24274 #. type: verbatim
24275 #: ../fish/guestfish-actions.pod:2335
24276 #, no-wrap
24277 msgid ""
24278 " is-chardev path\n"
24279 "\n"
24280 msgstr ""
24281
24282 #. type: =head2
24283 #: ../fish/guestfish-actions.pod:2342
24284 msgid "is-config"
24285 msgstr ""
24286
24287 #. type: verbatim
24288 #: ../fish/guestfish-actions.pod:2344
24289 #, no-wrap
24290 msgid ""
24291 " is-config\n"
24292 "\n"
24293 msgstr ""
24294
24295 #. type: =head2
24296 #: ../fish/guestfish-actions.pod:2351
24297 msgid "is-dir"
24298 msgstr ""
24299
24300 #. type: verbatim
24301 #: ../fish/guestfish-actions.pod:2353
24302 #, no-wrap
24303 msgid ""
24304 " is-dir path\n"
24305 "\n"
24306 msgstr ""
24307
24308 #. type: =head2
24309 #: ../fish/guestfish-actions.pod:2361
24310 msgid "is-fifo"
24311 msgstr ""
24312
24313 #. type: verbatim
24314 #: ../fish/guestfish-actions.pod:2363
24315 #, no-wrap
24316 msgid ""
24317 " is-fifo path\n"
24318 "\n"
24319 msgstr ""
24320
24321 #. type: =head2
24322 #: ../fish/guestfish-actions.pod:2370
24323 msgid "is-file"
24324 msgstr ""
24325
24326 #. type: verbatim
24327 #: ../fish/guestfish-actions.pod:2372
24328 #, no-wrap
24329 msgid ""
24330 " is-file path\n"
24331 "\n"
24332 msgstr ""
24333
24334 #. type: =head2
24335 #: ../fish/guestfish-actions.pod:2380
24336 msgid "is-launching"
24337 msgstr ""
24338
24339 #. type: verbatim
24340 #: ../fish/guestfish-actions.pod:2382
24341 #, no-wrap
24342 msgid ""
24343 " is-launching\n"
24344 "\n"
24345 msgstr ""
24346
24347 #. type: =head2
24348 #: ../fish/guestfish-actions.pod:2389
24349 msgid "is-lv"
24350 msgstr ""
24351
24352 #. type: verbatim
24353 #: ../fish/guestfish-actions.pod:2391
24354 #, no-wrap
24355 msgid ""
24356 " is-lv device\n"
24357 "\n"
24358 msgstr ""
24359
24360 #. type: =head2
24361 #: ../fish/guestfish-actions.pod:2396
24362 msgid "is-ready"
24363 msgstr ""
24364
24365 #. type: verbatim
24366 #: ../fish/guestfish-actions.pod:2398
24367 #, no-wrap
24368 msgid ""
24369 " is-ready\n"
24370 "\n"
24371 msgstr ""
24372
24373 #. type: =head2
24374 #: ../fish/guestfish-actions.pod:2405
24375 msgid "is-socket"
24376 msgstr ""
24377
24378 #. type: verbatim
24379 #: ../fish/guestfish-actions.pod:2407
24380 #, no-wrap
24381 msgid ""
24382 " is-socket path\n"
24383 "\n"
24384 msgstr ""
24385
24386 #. type: =head2
24387 #: ../fish/guestfish-actions.pod:2414
24388 msgid "is-symlink"
24389 msgstr ""
24390
24391 #. type: verbatim
24392 #: ../fish/guestfish-actions.pod:2416
24393 #, no-wrap
24394 msgid ""
24395 " is-symlink path\n"
24396 "\n"
24397 msgstr ""
24398
24399 #. type: =head2
24400 #: ../fish/guestfish-actions.pod:2423
24401 msgid "is-zero"
24402 msgstr ""
24403
24404 #. type: verbatim
24405 #: ../fish/guestfish-actions.pod:2425
24406 #, no-wrap
24407 msgid ""
24408 " is-zero path\n"
24409 "\n"
24410 msgstr ""
24411
24412 #. type: =head2
24413 #: ../fish/guestfish-actions.pod:2430
24414 msgid "is-zero-device"
24415 msgstr ""
24416
24417 #. type: verbatim
24418 #: ../fish/guestfish-actions.pod:2432
24419 #, no-wrap
24420 msgid ""
24421 " is-zero-device device\n"
24422 "\n"
24423 msgstr ""
24424
24425 #. type: =head2
24426 #: ../fish/guestfish-actions.pod:2438
24427 msgid "kill-subprocess"
24428 msgstr ""
24429
24430 #. type: verbatim
24431 #: ../fish/guestfish-actions.pod:2440
24432 #, no-wrap
24433 msgid ""
24434 " kill-subprocess\n"
24435 "\n"
24436 msgstr ""
24437
24438 #. type: =head2
24439 #: ../fish/guestfish-actions.pod:2444
24440 msgid "launch"
24441 msgstr ""
24442
24443 #. type: =head2
24444 #: ../fish/guestfish-actions.pod:2446
24445 msgid "run"
24446 msgstr ""
24447
24448 #. type: verbatim
24449 #: ../fish/guestfish-actions.pod:2448
24450 #, no-wrap
24451 msgid ""
24452 " launch\n"
24453 "\n"
24454 msgstr ""
24455
24456 #. type: =head2
24457 #: ../fish/guestfish-actions.pod:2456
24458 msgid "lchown"
24459 msgstr ""
24460
24461 #. type: verbatim
24462 #: ../fish/guestfish-actions.pod:2458
24463 #, no-wrap
24464 msgid ""
24465 " lchown owner group path\n"
24466 "\n"
24467 msgstr ""
24468
24469 #. type: textblock
24470 #: ../fish/guestfish-actions.pod:2460
24471 msgid ""
24472 "Change the file owner to C<owner> and group to C<group>.  This is like "
24473 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
24474 "the target."
24475 msgstr ""
24476
24477 #. type: =head2
24478 #: ../fish/guestfish-actions.pod:2468
24479 msgid "lgetxattr"
24480 msgstr ""
24481
24482 #. type: verbatim
24483 #: ../fish/guestfish-actions.pod:2470
24484 #, no-wrap
24485 msgid ""
24486 " lgetxattr path name\n"
24487 "\n"
24488 msgstr ""
24489
24490 #. type: textblock
24491 #: ../fish/guestfish-actions.pod:2486
24492 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24493 msgstr ""
24494
24495 #. type: =head2
24496 #: ../fish/guestfish-actions.pod:2488
24497 msgid "lgetxattrs"
24498 msgstr ""
24499
24500 #. type: verbatim
24501 #: ../fish/guestfish-actions.pod:2490
24502 #, no-wrap
24503 msgid ""
24504 " lgetxattrs path\n"
24505 "\n"
24506 msgstr ""
24507
24508 #. type: textblock
24509 #: ../fish/guestfish-actions.pod:2492
24510 msgid ""
24511 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24512 "it returns the extended attributes of the link itself."
24513 msgstr ""
24514
24515 #. type: =head2
24516 #: ../fish/guestfish-actions.pod:2496
24517 msgid "list-9p"
24518 msgstr ""
24519
24520 #. type: verbatim
24521 #: ../fish/guestfish-actions.pod:2498
24522 #, no-wrap
24523 msgid ""
24524 " list-9p\n"
24525 "\n"
24526 msgstr ""
24527
24528 #. type: =head2
24529 #: ../fish/guestfish-actions.pod:2503
24530 msgid "list-devices"
24531 msgstr ""
24532
24533 #. type: verbatim
24534 #: ../fish/guestfish-actions.pod:2505
24535 #, no-wrap
24536 msgid ""
24537 " list-devices\n"
24538 "\n"
24539 msgstr ""
24540
24541 #. type: =head2
24542 #: ../fish/guestfish-actions.pod:2513
24543 msgid "list-dm-devices"
24544 msgstr ""
24545
24546 #. type: verbatim
24547 #: ../fish/guestfish-actions.pod:2515
24548 #, no-wrap
24549 msgid ""
24550 " list-dm-devices\n"
24551 "\n"
24552 msgstr ""
24553
24554 #. type: textblock
24555 #: ../fish/guestfish-actions.pod:2519
24556 msgid ""
24557 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
24558 "previous call to L</luks-open>."
24559 msgstr ""
24560
24561 #. type: textblock
24562 #: ../fish/guestfish-actions.pod:2522
24563 msgid ""
24564 "Device mapper devices which correspond to logical volumes are I<not> "
24565 "returned in this list.  Call L</lvs> if you want to list logical volumes."
24566 msgstr ""
24567
24568 #. type: =head2
24569 #: ../fish/guestfish-actions.pod:2526
24570 msgid "list-filesystems"
24571 msgstr ""
24572
24573 #. type: verbatim
24574 #: ../fish/guestfish-actions.pod:2528
24575 #, no-wrap
24576 msgid ""
24577 " list-filesystems\n"
24578 "\n"
24579 msgstr ""
24580
24581 #. type: textblock
24582 #: ../fish/guestfish-actions.pod:2547
24583 msgid ""
24584 "This command runs other libguestfs commands, which might include L</mount> "
24585 "and L</umount>, and therefore you should use this soon after launch and only "
24586 "when nothing is mounted."
24587 msgstr ""
24588
24589 #. type: textblock
24590 #: ../fish/guestfish-actions.pod:2551
24591 msgid ""
24592 "Not all of the filesystems returned will be mountable.  In particular, swap "
24593 "partitions are returned in the list.  Also this command does not check that "
24594 "each filesystem found is valid and mountable, and some filesystems might be "
24595 "mountable but require special options.  Filesystems may not all belong to a "
24596 "single logical operating system (use L</inspect-os> to look for OSes)."
24597 msgstr ""
24598
24599 #. type: =head2
24600 #: ../fish/guestfish-actions.pod:2559
24601 msgid "list-partitions"
24602 msgstr ""
24603
24604 #. type: verbatim
24605 #: ../fish/guestfish-actions.pod:2561
24606 #, no-wrap
24607 msgid ""
24608 " list-partitions\n"
24609 "\n"
24610 msgstr ""
24611
24612 #. type: textblock
24613 #: ../fish/guestfish-actions.pod:2567
24614 msgid ""
24615 "This does not return logical volumes.  For that you will need to call "
24616 "L</lvs>."
24617 msgstr ""
24618
24619 #. type: =head2
24620 #: ../fish/guestfish-actions.pod:2572
24621 msgid "ll"
24622 msgstr ""
24623
24624 #. type: verbatim
24625 #: ../fish/guestfish-actions.pod:2574
24626 #, no-wrap
24627 msgid ""
24628 " ll directory\n"
24629 "\n"
24630 msgstr ""
24631
24632 #. type: =head2
24633 #: ../fish/guestfish-actions.pod:2582
24634 msgid "ln"
24635 msgstr ""
24636
24637 #. type: verbatim
24638 #: ../fish/guestfish-actions.pod:2584
24639 #, no-wrap
24640 msgid ""
24641 " ln target linkname\n"
24642 "\n"
24643 msgstr ""
24644
24645 #. type: =head2
24646 #: ../fish/guestfish-actions.pod:2588
24647 msgid "ln-f"
24648 msgstr ""
24649
24650 #. type: verbatim
24651 #: ../fish/guestfish-actions.pod:2590
24652 #, no-wrap
24653 msgid ""
24654 " ln-f target linkname\n"
24655 "\n"
24656 msgstr ""
24657
24658 #. type: =head2
24659 #: ../fish/guestfish-actions.pod:2595
24660 msgid "ln-s"
24661 msgstr ""
24662
24663 #. type: verbatim
24664 #: ../fish/guestfish-actions.pod:2597
24665 #, no-wrap
24666 msgid ""
24667 " ln-s target linkname\n"
24668 "\n"
24669 msgstr ""
24670
24671 #. type: =head2
24672 #: ../fish/guestfish-actions.pod:2601
24673 msgid "ln-sf"
24674 msgstr ""
24675
24676 #. type: verbatim
24677 #: ../fish/guestfish-actions.pod:2603
24678 #, no-wrap
24679 msgid ""
24680 " ln-sf target linkname\n"
24681 "\n"
24682 msgstr ""
24683
24684 #. type: =head2
24685 #: ../fish/guestfish-actions.pod:2608
24686 msgid "lremovexattr"
24687 msgstr ""
24688
24689 #. type: verbatim
24690 #: ../fish/guestfish-actions.pod:2610
24691 #, no-wrap
24692 msgid ""
24693 " lremovexattr xattr path\n"
24694 "\n"
24695 msgstr ""
24696
24697 #. type: textblock
24698 #: ../fish/guestfish-actions.pod:2612
24699 msgid ""
24700 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24701 "it removes an extended attribute of the link itself."
24702 msgstr ""
24703
24704 #. type: =head2
24705 #: ../fish/guestfish-actions.pod:2616
24706 msgid "ls"
24707 msgstr ""
24708
24709 #. type: verbatim
24710 #: ../fish/guestfish-actions.pod:2618
24711 #, no-wrap
24712 msgid ""
24713 " ls directory\n"
24714 "\n"
24715 msgstr ""
24716
24717 #. type: textblock
24718 #: ../fish/guestfish-actions.pod:2624
24719 msgid ""
24720 "This command is mostly useful for interactive sessions.  Programs should "
24721 "probably use L</readdir> instead."
24722 msgstr ""
24723
24724 #. type: =head2
24725 #: ../fish/guestfish-actions.pod:2627
24726 msgid "lsetxattr"
24727 msgstr ""
24728
24729 #. type: verbatim
24730 #: ../fish/guestfish-actions.pod:2629
24731 #, no-wrap
24732 msgid ""
24733 " lsetxattr xattr val vallen path\n"
24734 "\n"
24735 msgstr ""
24736
24737 #. type: textblock
24738 #: ../fish/guestfish-actions.pod:2631
24739 msgid ""
24740 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24741 "sets an extended attribute of the link itself."
24742 msgstr ""
24743
24744 #. type: =head2
24745 #: ../fish/guestfish-actions.pod:2635
24746 msgid "lstat"
24747 msgstr ""
24748
24749 #. type: verbatim
24750 #: ../fish/guestfish-actions.pod:2637
24751 #, no-wrap
24752 msgid ""
24753 " lstat path\n"
24754 "\n"
24755 msgstr ""
24756
24757 #. type: textblock
24758 #: ../fish/guestfish-actions.pod:2641
24759 msgid ""
24760 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24761 "the link is stat-ed, not the file it refers to."
24762 msgstr ""
24763
24764 #. type: =head2
24765 #: ../fish/guestfish-actions.pod:2647
24766 msgid "lstatlist"
24767 msgstr ""
24768
24769 #. type: verbatim
24770 #: ../fish/guestfish-actions.pod:2649
24771 #, no-wrap
24772 msgid ""
24773 " lstatlist path 'names ...'\n"
24774 "\n"
24775 msgstr ""
24776
24777 #. type: textblock
24778 #: ../fish/guestfish-actions.pod:2651
24779 msgid ""
24780 "This call allows you to perform the L</lstat> operation on multiple files, "
24781 "where all files are in the directory C<path>.  C<names> is the list of files "
24782 "from this directory."
24783 msgstr ""
24784
24785 #. type: textblock
24786 #: ../fish/guestfish-actions.pod:2660
24787 msgid ""
24788 "This call is intended for programs that want to efficiently list a directory "
24789 "contents without making many round-trips.  See also L</lxattrlist> for a "
24790 "similarly efficient call for getting extended attributes.  Very long "
24791 "directory listings might cause the protocol message size to be exceeded, "
24792 "causing this call to fail.  The caller must split up such requests into "
24793 "smaller groups of names."
24794 msgstr ""
24795
24796 #. type: =head2
24797 #: ../fish/guestfish-actions.pod:2668
24798 msgid "luks-add-key"
24799 msgstr ""
24800
24801 #. type: verbatim
24802 #: ../fish/guestfish-actions.pod:2670
24803 #, no-wrap
24804 msgid ""
24805 " luks-add-key device keyslot\n"
24806 "\n"
24807 msgstr ""
24808
24809 #. type: textblock
24810 #: ../fish/guestfish-actions.pod:2677
24811 msgid ""
24812 "Note that if C<keyslot> already contains a key, then this command will "
24813 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24814 msgstr ""
24815
24816 #. type: textblock
24817 #: ../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
24818 msgid ""
24819 "This command has one or more key or passphrase parameters.  Guestfish will "
24820 "prompt for these separately."
24821 msgstr ""
24822
24823 #. type: =head2
24824 #: ../fish/guestfish-actions.pod:2684
24825 msgid "luks-close"
24826 msgstr ""
24827
24828 #. type: verbatim
24829 #: ../fish/guestfish-actions.pod:2686
24830 #, no-wrap
24831 msgid ""
24832 " luks-close device\n"
24833 "\n"
24834 msgstr ""
24835
24836 #. type: textblock
24837 #: ../fish/guestfish-actions.pod:2688
24838 msgid ""
24839 "This closes a LUKS device that was created earlier by L</luks-open> or "
24840 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
24841 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
24842 "underlying block device."
24843 msgstr ""
24844
24845 #. type: =head2
24846 #: ../fish/guestfish-actions.pod:2694
24847 msgid "luks-format"
24848 msgstr ""
24849
24850 #. type: verbatim
24851 #: ../fish/guestfish-actions.pod:2696
24852 #, no-wrap
24853 msgid ""
24854 " luks-format device keyslot\n"
24855 "\n"
24856 msgstr ""
24857
24858 #. type: =head2
24859 #: ../fish/guestfish-actions.pod:2709
24860 msgid "luks-format-cipher"
24861 msgstr ""
24862
24863 #. type: verbatim
24864 #: ../fish/guestfish-actions.pod:2711
24865 #, no-wrap
24866 msgid ""
24867 " luks-format-cipher device keyslot cipher\n"
24868 "\n"
24869 msgstr ""
24870
24871 #. type: textblock
24872 #: ../fish/guestfish-actions.pod:2713
24873 msgid ""
24874 "This command is the same as L</luks-format> but it also allows you to set "
24875 "the C<cipher> used."
24876 msgstr ""
24877
24878 #. type: =head2
24879 #: ../fish/guestfish-actions.pod:2722
24880 msgid "luks-kill-slot"
24881 msgstr ""
24882
24883 #. type: verbatim
24884 #: ../fish/guestfish-actions.pod:2724
24885 #, no-wrap
24886 msgid ""
24887 " luks-kill-slot device keyslot\n"
24888 "\n"
24889 msgstr ""
24890
24891 #. type: =head2
24892 #: ../fish/guestfish-actions.pod:2733
24893 msgid "luks-open"
24894 msgstr ""
24895
24896 #. type: verbatim
24897 #: ../fish/guestfish-actions.pod:2735
24898 #, no-wrap
24899 msgid ""
24900 " luks-open device mapname\n"
24901 "\n"
24902 msgstr ""
24903
24904 #. type: textblock
24905 #: ../fish/guestfish-actions.pod:2749
24906 msgid ""
24907 "If this block device contains LVM volume groups, then calling L</vgscan> "
24908 "followed by L</vg-activate-all> will make them visible."
24909 msgstr ""
24910
24911 #. type: textblock
24912 #: ../fish/guestfish-actions.pod:2753
24913 msgid "Use L</list-dm-devices> to list all device mapper devices."
24914 msgstr ""
24915
24916 #. type: =head2
24917 #: ../fish/guestfish-actions.pod:2759
24918 msgid "luks-open-ro"
24919 msgstr ""
24920
24921 #. type: verbatim
24922 #: ../fish/guestfish-actions.pod:2761
24923 #, no-wrap
24924 msgid ""
24925 " luks-open-ro device mapname\n"
24926 "\n"
24927 msgstr ""
24928
24929 #. type: textblock
24930 #: ../fish/guestfish-actions.pod:2763
24931 msgid ""
24932 "This is the same as L</luks-open> except that a read-only mapping is "
24933 "created."
24934 msgstr ""
24935
24936 #. type: =head2
24937 #: ../fish/guestfish-actions.pod:2769
24938 msgid "lvcreate"
24939 msgstr ""
24940
24941 #. type: verbatim
24942 #: ../fish/guestfish-actions.pod:2771
24943 #, no-wrap
24944 msgid ""
24945 " lvcreate logvol volgroup mbytes\n"
24946 "\n"
24947 msgstr ""
24948
24949 #. type: =head2
24950 #: ../fish/guestfish-actions.pod:2776
24951 msgid "lvm-canonical-lv-name"
24952 msgstr ""
24953
24954 #. type: verbatim
24955 #: ../fish/guestfish-actions.pod:2778
24956 #, no-wrap
24957 msgid ""
24958 " lvm-canonical-lv-name lvname\n"
24959 "\n"
24960 msgstr ""
24961
24962 #. type: textblock
24963 #: ../fish/guestfish-actions.pod:2787
24964 msgid "See also L</is-lv>."
24965 msgstr ""
24966
24967 #. type: =head2
24968 #: ../fish/guestfish-actions.pod:2789
24969 msgid "lvm-clear-filter"
24970 msgstr ""
24971
24972 #. type: verbatim
24973 #: ../fish/guestfish-actions.pod:2791
24974 #, no-wrap
24975 msgid ""
24976 " lvm-clear-filter\n"
24977 "\n"
24978 msgstr ""
24979
24980 #. type: textblock
24981 #: ../fish/guestfish-actions.pod:2793
24982 msgid ""
24983 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24984 "block device."
24985 msgstr ""
24986
24987 #. type: =head2
24988 #: ../fish/guestfish-actions.pod:2799
24989 msgid "lvm-remove-all"
24990 msgstr ""
24991
24992 #. type: verbatim
24993 #: ../fish/guestfish-actions.pod:2801
24994 #, no-wrap
24995 msgid ""
24996 " lvm-remove-all\n"
24997 "\n"
24998 msgstr ""
24999
25000 #. type: =head2
25001 #: ../fish/guestfish-actions.pod:2809
25002 msgid "lvm-set-filter"
25003 msgstr ""
25004
25005 #. type: verbatim
25006 #: ../fish/guestfish-actions.pod:2811
25007 #, no-wrap
25008 msgid ""
25009 " lvm-set-filter 'devices ...'\n"
25010 "\n"
25011 msgstr ""
25012
25013 #. type: =head2
25014 #: ../fish/guestfish-actions.pod:2836
25015 msgid "lvremove"
25016 msgstr ""
25017
25018 #. type: verbatim
25019 #: ../fish/guestfish-actions.pod:2838
25020 #, no-wrap
25021 msgid ""
25022 " lvremove device\n"
25023 "\n"
25024 msgstr ""
25025
25026 #. type: =head2
25027 #: ../fish/guestfish-actions.pod:2846
25028 msgid "lvrename"
25029 msgstr ""
25030
25031 #. type: verbatim
25032 #: ../fish/guestfish-actions.pod:2848
25033 #, no-wrap
25034 msgid ""
25035 " lvrename logvol newlogvol\n"
25036 "\n"
25037 msgstr ""
25038
25039 #. type: =head2
25040 #: ../fish/guestfish-actions.pod:2852
25041 msgid "lvresize"
25042 msgstr ""
25043
25044 #. type: verbatim
25045 #: ../fish/guestfish-actions.pod:2854
25046 #, no-wrap
25047 msgid ""
25048 " lvresize device mbytes\n"
25049 "\n"
25050 msgstr ""
25051
25052 #. type: =head2
25053 #: ../fish/guestfish-actions.pod:2860
25054 msgid "lvresize-free"
25055 msgstr ""
25056
25057 #. type: verbatim
25058 #: ../fish/guestfish-actions.pod:2862
25059 #, no-wrap
25060 msgid ""
25061 " lvresize-free lv percent\n"
25062 "\n"
25063 msgstr ""
25064
25065 #. type: =head2
25066 #: ../fish/guestfish-actions.pod:2870
25067 msgid "lvs"
25068 msgstr ""
25069
25070 #. type: verbatim
25071 #: ../fish/guestfish-actions.pod:2872
25072 #, no-wrap
25073 msgid ""
25074 " lvs\n"
25075 "\n"
25076 msgstr ""
25077
25078 #. type: textblock
25079 #: ../fish/guestfish-actions.pod:2880
25080 msgid "See also L</lvs-full>, L</list-filesystems>."
25081 msgstr ""
25082
25083 #. type: =head2
25084 #: ../fish/guestfish-actions.pod:2882
25085 msgid "lvs-full"
25086 msgstr ""
25087
25088 #. type: verbatim
25089 #: ../fish/guestfish-actions.pod:2884
25090 #, no-wrap
25091 msgid ""
25092 " lvs-full\n"
25093 "\n"
25094 msgstr ""
25095
25096 #. type: =head2
25097 #: ../fish/guestfish-actions.pod:2889
25098 msgid "lvuuid"
25099 msgstr ""
25100
25101 #. type: verbatim
25102 #: ../fish/guestfish-actions.pod:2891
25103 #, no-wrap
25104 msgid ""
25105 " lvuuid device\n"
25106 "\n"
25107 msgstr ""
25108
25109 #. type: =head2
25110 #: ../fish/guestfish-actions.pod:2895
25111 msgid "lxattrlist"
25112 msgstr ""
25113
25114 #. type: verbatim
25115 #: ../fish/guestfish-actions.pod:2897
25116 #, no-wrap
25117 msgid ""
25118 " lxattrlist path 'names ...'\n"
25119 "\n"
25120 msgstr ""
25121
25122 #. type: textblock
25123 #: ../fish/guestfish-actions.pod:2913
25124 msgid ""
25125 "This call is intended for programs that want to efficiently list a directory "
25126 "contents without making many round-trips.  See also L</lstatlist> for a "
25127 "similarly efficient call for getting standard stats.  Very long directory "
25128 "listings might cause the protocol message size to be exceeded, causing this "
25129 "call to fail.  The caller must split up such requests into smaller groups of "
25130 "names."
25131 msgstr ""
25132
25133 #. type: =head2
25134 #: ../fish/guestfish-actions.pod:2921
25135 msgid "mkdir"
25136 msgstr ""
25137
25138 #. type: verbatim
25139 #: ../fish/guestfish-actions.pod:2923
25140 #, no-wrap
25141 msgid ""
25142 " mkdir path\n"
25143 "\n"
25144 msgstr ""
25145
25146 #. type: =head2
25147 #: ../fish/guestfish-actions.pod:2927
25148 msgid "mkdir-mode"
25149 msgstr ""
25150
25151 #. type: verbatim
25152 #: ../fish/guestfish-actions.pod:2929
25153 #, no-wrap
25154 msgid ""
25155 " mkdir-mode path mode\n"
25156 "\n"
25157 msgstr ""
25158
25159 #. type: textblock
25160 #: ../fish/guestfish-actions.pod:2938
25161 msgid "See also L</mkdir>, L</umask>"
25162 msgstr ""
25163
25164 #. type: =head2
25165 #: ../fish/guestfish-actions.pod:2940
25166 msgid "mkdir-p"
25167 msgstr ""
25168
25169 #. type: verbatim
25170 #: ../fish/guestfish-actions.pod:2942
25171 #, no-wrap
25172 msgid ""
25173 " mkdir-p path\n"
25174 "\n"
25175 msgstr ""
25176
25177 #. type: =head2
25178 #: ../fish/guestfish-actions.pod:2947
25179 msgid "mkdtemp"
25180 msgstr ""
25181
25182 #. type: verbatim
25183 #: ../fish/guestfish-actions.pod:2949
25184 #, no-wrap
25185 msgid ""
25186 " mkdtemp template\n"
25187 "\n"
25188 msgstr ""
25189
25190 #. type: =head2
25191 #: ../fish/guestfish-actions.pod:2970
25192 msgid "mke2fs-J"
25193 msgstr ""
25194
25195 #. type: verbatim
25196 #: ../fish/guestfish-actions.pod:2972
25197 #, no-wrap
25198 msgid ""
25199 " mke2fs-J fstype blocksize device journal\n"
25200 "\n"
25201 msgstr ""
25202
25203 #. type: textblock
25204 #: ../fish/guestfish-actions.pod:2980
25205 msgid "See also L</mke2journal>."
25206 msgstr ""
25207
25208 #. type: =head2
25209 #: ../fish/guestfish-actions.pod:2982
25210 msgid "mke2fs-JL"
25211 msgstr ""
25212
25213 #. type: verbatim
25214 #: ../fish/guestfish-actions.pod:2984
25215 #, no-wrap
25216 msgid ""
25217 " mke2fs-JL fstype blocksize device label\n"
25218 "\n"
25219 msgstr ""
25220
25221 #. type: textblock
25222 #: ../fish/guestfish-actions.pod:2989
25223 msgid "See also L</mke2journal-L>."
25224 msgstr ""
25225
25226 #. type: =head2
25227 #: ../fish/guestfish-actions.pod:2991
25228 msgid "mke2fs-JU"
25229 msgstr ""
25230
25231 #. type: verbatim
25232 #: ../fish/guestfish-actions.pod:2993
25233 #, no-wrap
25234 msgid ""
25235 " mke2fs-JU fstype blocksize device uuid\n"
25236 "\n"
25237 msgstr ""
25238
25239 #. type: textblock
25240 #: ../fish/guestfish-actions.pod:2998
25241 msgid "See also L</mke2journal-U>."
25242 msgstr ""
25243
25244 #. type: =head2
25245 #: ../fish/guestfish-actions.pod:3000
25246 msgid "mke2journal"
25247 msgstr ""
25248
25249 #. type: verbatim
25250 #: ../fish/guestfish-actions.pod:3002
25251 #, no-wrap
25252 msgid ""
25253 " mke2journal blocksize device\n"
25254 "\n"
25255 msgstr ""
25256
25257 #. type: =head2
25258 #: ../fish/guestfish-actions.pod:3009
25259 msgid "mke2journal-L"
25260 msgstr ""
25261
25262 #. type: verbatim
25263 #: ../fish/guestfish-actions.pod:3011
25264 #, no-wrap
25265 msgid ""
25266 " mke2journal-L blocksize label device\n"
25267 "\n"
25268 msgstr ""
25269
25270 #. type: =head2
25271 #: ../fish/guestfish-actions.pod:3015
25272 msgid "mke2journal-U"
25273 msgstr ""
25274
25275 #. type: verbatim
25276 #: ../fish/guestfish-actions.pod:3017
25277 #, no-wrap
25278 msgid ""
25279 " mke2journal-U blocksize uuid device\n"
25280 "\n"
25281 msgstr ""
25282
25283 #. type: =head2
25284 #: ../fish/guestfish-actions.pod:3021
25285 msgid "mkfifo"
25286 msgstr ""
25287
25288 #. type: verbatim
25289 #: ../fish/guestfish-actions.pod:3023
25290 #, no-wrap
25291 msgid ""
25292 " mkfifo mode path\n"
25293 "\n"
25294 msgstr ""
25295
25296 #. type: textblock
25297 #: ../fish/guestfish-actions.pod:3025
25298 msgid ""
25299 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25300 "is just a convenient wrapper around L</mknod>."
25301 msgstr ""
25302
25303 #. type: =head2
25304 #: ../fish/guestfish-actions.pod:3031
25305 msgid "mkfs"
25306 msgstr ""
25307
25308 #. type: verbatim
25309 #: ../fish/guestfish-actions.pod:3033
25310 #, no-wrap
25311 msgid ""
25312 " mkfs fstype device\n"
25313 "\n"
25314 msgstr ""
25315
25316 #. type: =head2
25317 #: ../fish/guestfish-actions.pod:3039
25318 msgid "mkfs-b"
25319 msgstr ""
25320
25321 #. type: verbatim
25322 #: ../fish/guestfish-actions.pod:3041
25323 #, no-wrap
25324 msgid ""
25325 " mkfs-b fstype blocksize device\n"
25326 "\n"
25327 msgstr ""
25328
25329 #. type: textblock
25330 #: ../fish/guestfish-actions.pod:3043
25331 msgid ""
25332 "This call is similar to L</mkfs>, but it allows you to control the block "
25333 "size of the resulting filesystem.  Supported block sizes depend on the "
25334 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25335 msgstr ""
25336
25337 #. type: =head2
25338 #: ../fish/guestfish-actions.pod:3058
25339 msgid "mkfs-opts"
25340 msgstr ""
25341
25342 #. type: verbatim
25343 #: ../fish/guestfish-actions.pod:3060
25344 #, no-wrap
25345 msgid ""
25346 " mkfs-opts fstype device [blocksize:..] [features:..] [inode:..] "
25347 "[sectorsize:..]\n"
25348 "\n"
25349 msgstr ""
25350
25351 #. type: =head2
25352 #: ../fish/guestfish-actions.pod:3105
25353 msgid "mkmountpoint"
25354 msgstr ""
25355
25356 #. type: verbatim
25357 #: ../fish/guestfish-actions.pod:3107
25358 #, no-wrap
25359 msgid ""
25360 " mkmountpoint exemptpath\n"
25361 "\n"
25362 msgstr ""
25363
25364 #. type: textblock
25365 #: ../fish/guestfish-actions.pod:3109
25366 msgid ""
25367 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25368 "to create extra mountpoints before mounting the first filesystem."
25369 msgstr ""
25370
25371 #. type: textblock
25372 #: ../fish/guestfish-actions.pod:3133
25373 msgid ""
25374 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25375 "unexpected errors if you try to mix these calls.  It is safest to manually "
25376 "unmount filesystems and remove mountpoints after use."
25377 msgstr ""
25378
25379 #. type: textblock
25380 #: ../fish/guestfish-actions.pod:3137
25381 msgid ""
25382 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25383 "for this to work for manual mountpoints, you must ensure that the innermost "
25384 "mountpoints have the longest pathnames, as in the example code above."
25385 msgstr ""
25386
25387 #. type: textblock
25388 #: ../fish/guestfish-actions.pod:3144
25389 msgid ""
25390 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25391 "L</umount-all> to be called when the handle is closed which can also trigger "
25392 "these issues."
25393 msgstr ""
25394
25395 #. type: =head2
25396 #: ../fish/guestfish-actions.pod:3148
25397 msgid "mknod"
25398 msgstr ""
25399
25400 #. type: verbatim
25401 #: ../fish/guestfish-actions.pod:3150
25402 #, no-wrap
25403 msgid ""
25404 " mknod mode devmajor devminor path\n"
25405 "\n"
25406 msgstr ""
25407
25408 #. type: textblock
25409 #: ../fish/guestfish-actions.pod:3160
25410 msgid ""
25411 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25412 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25413 "regular file).  These constants are available in the standard Linux header "
25414 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25415 "wrappers around this command which bitwise OR in the appropriate constant "
25416 "for you."
25417 msgstr ""
25418
25419 #. type: =head2
25420 #: ../fish/guestfish-actions.pod:3170
25421 msgid "mknod-b"
25422 msgstr ""
25423
25424 #. type: verbatim
25425 #: ../fish/guestfish-actions.pod:3172
25426 #, no-wrap
25427 msgid ""
25428 " mknod-b mode devmajor devminor path\n"
25429 "\n"
25430 msgstr ""
25431
25432 #. type: textblock
25433 #: ../fish/guestfish-actions.pod:3174
25434 msgid ""
25435 "This call creates a block device node called C<path> with mode C<mode> and "
25436 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25437 "wrapper around L</mknod>."
25438 msgstr ""
25439
25440 #. type: =head2
25441 #: ../fish/guestfish-actions.pod:3180
25442 msgid "mknod-c"
25443 msgstr ""
25444
25445 #. type: verbatim
25446 #: ../fish/guestfish-actions.pod:3182
25447 #, no-wrap
25448 msgid ""
25449 " mknod-c mode devmajor devminor path\n"
25450 "\n"
25451 msgstr ""
25452
25453 #. type: textblock
25454 #: ../fish/guestfish-actions.pod:3184
25455 msgid ""
25456 "This call creates a char device node called C<path> with mode C<mode> and "
25457 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25458 "wrapper around L</mknod>."
25459 msgstr ""
25460
25461 #. type: =head2
25462 #: ../fish/guestfish-actions.pod:3190
25463 msgid "mkswap"
25464 msgstr ""
25465
25466 #. type: verbatim
25467 #: ../fish/guestfish-actions.pod:3192
25468 #, no-wrap
25469 msgid ""
25470 " mkswap device\n"
25471 "\n"
25472 msgstr ""
25473
25474 #. type: =head2
25475 #: ../fish/guestfish-actions.pod:3196
25476 msgid "mkswap-L"
25477 msgstr ""
25478
25479 #. type: verbatim
25480 #: ../fish/guestfish-actions.pod:3198
25481 #, no-wrap
25482 msgid ""
25483 " mkswap-L label device\n"
25484 "\n"
25485 msgstr ""
25486
25487 #. type: =head2
25488 #: ../fish/guestfish-actions.pod:3206
25489 msgid "mkswap-U"
25490 msgstr ""
25491
25492 #. type: verbatim
25493 #: ../fish/guestfish-actions.pod:3208
25494 #, no-wrap
25495 msgid ""
25496 " mkswap-U uuid device\n"
25497 "\n"
25498 msgstr ""
25499
25500 #. type: =head2
25501 #: ../fish/guestfish-actions.pod:3212
25502 msgid "mkswap-file"
25503 msgstr ""
25504
25505 #. type: verbatim
25506 #: ../fish/guestfish-actions.pod:3214
25507 #, no-wrap
25508 msgid ""
25509 " mkswap-file path\n"
25510 "\n"
25511 msgstr ""
25512
25513 #. type: textblock
25514 #: ../fish/guestfish-actions.pod:3218
25515 msgid ""
25516 "This command just writes a swap file signature to an existing file.  To "
25517 "create the file itself, use something like L</fallocate>."
25518 msgstr ""
25519
25520 #. type: =head2
25521 #: ../fish/guestfish-actions.pod:3221
25522 msgid "modprobe"
25523 msgstr ""
25524
25525 #. type: verbatim
25526 #: ../fish/guestfish-actions.pod:3223
25527 #, no-wrap
25528 msgid ""
25529 " modprobe modulename\n"
25530 "\n"
25531 msgstr ""
25532
25533 #. type: =head2
25534 #: ../fish/guestfish-actions.pod:3230
25535 msgid "mount"
25536 msgstr ""
25537
25538 #. type: verbatim
25539 #: ../fish/guestfish-actions.pod:3232
25540 #, no-wrap
25541 msgid ""
25542 " mount device mountpoint\n"
25543 "\n"
25544 msgstr ""
25545
25546 #. type: textblock
25547 #: ../fish/guestfish-actions.pod:3248
25548 msgid ""
25549 "B<Important note:> When you use this call, the filesystem options C<sync> "
25550 "and C<noatime> are set implicitly.  This was originally done because we "
25551 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25552 "very large negative performance impact and negligible effect on "
25553 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25554 "code that needs performance, and instead use L</mount-options> (use an empty "
25555 "string for the first parameter if you don't want any options)."
25556 msgstr ""
25557
25558 #. type: =head2
25559 #: ../fish/guestfish-actions.pod:3265
25560 msgid "mount-9p"
25561 msgstr ""
25562
25563 #. type: verbatim
25564 #: ../fish/guestfish-actions.pod:3267
25565 #, no-wrap
25566 msgid ""
25567 " mount-9p mounttag mountpoint [options:..]\n"
25568 "\n"
25569 msgstr ""
25570
25571 #. type: =head2
25572 #: ../fish/guestfish-actions.pod:3278
25573 msgid "mount-loop"
25574 msgstr ""
25575
25576 #. type: verbatim
25577 #: ../fish/guestfish-actions.pod:3280
25578 #, no-wrap
25579 msgid ""
25580 " mount-loop file mountpoint\n"
25581 "\n"
25582 msgstr ""
25583
25584 #. type: =head2
25585 #: ../fish/guestfish-actions.pod:3286
25586 msgid "mount-options"
25587 msgstr ""
25588
25589 #. type: verbatim
25590 #: ../fish/guestfish-actions.pod:3288
25591 #, no-wrap
25592 msgid ""
25593 " mount-options options device mountpoint\n"
25594 "\n"
25595 msgstr ""
25596
25597 #. type: textblock
25598 #: ../fish/guestfish-actions.pod:3290
25599 msgid ""
25600 "This is the same as the L</mount> command, but it allows you to set the "
25601 "mount options as for the L<mount(8)> I<-o> flag."
25602 msgstr ""
25603
25604 #. type: =head2
25605 #: ../fish/guestfish-actions.pod:3298
25606 msgid "mount-ro"
25607 msgstr ""
25608
25609 #. type: verbatim
25610 #: ../fish/guestfish-actions.pod:3300
25611 #, no-wrap
25612 msgid ""
25613 " mount-ro device mountpoint\n"
25614 "\n"
25615 msgstr ""
25616
25617 #. type: textblock
25618 #: ../fish/guestfish-actions.pod:3302
25619 msgid ""
25620 "This is the same as the L</mount> command, but it mounts the filesystem with "
25621 "the read-only (I<-o ro>) flag."
25622 msgstr ""
25623
25624 #. type: =head2
25625 #: ../fish/guestfish-actions.pod:3305
25626 msgid "mount-vfs"
25627 msgstr ""
25628
25629 #. type: verbatim
25630 #: ../fish/guestfish-actions.pod:3307
25631 #, no-wrap
25632 msgid ""
25633 " mount-vfs options vfstype device mountpoint\n"
25634 "\n"
25635 msgstr ""
25636
25637 #. type: textblock
25638 #: ../fish/guestfish-actions.pod:3309
25639 msgid ""
25640 "This is the same as the L</mount> command, but it allows you to set both the "
25641 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25642 msgstr ""
25643
25644 #. type: =head2
25645 #: ../fish/guestfish-actions.pod:3313
25646 msgid "mountpoints"
25647 msgstr ""
25648
25649 #. type: verbatim
25650 #: ../fish/guestfish-actions.pod:3315
25651 #, no-wrap
25652 msgid ""
25653 " mountpoints\n"
25654 "\n"
25655 msgstr ""
25656
25657 #. type: textblock
25658 #: ../fish/guestfish-actions.pod:3317
25659 msgid ""
25660 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25661 "This one returns a hash table (map) of device name to directory where the "
25662 "device is mounted."
25663 msgstr ""
25664
25665 #. type: =head2
25666 #: ../fish/guestfish-actions.pod:3321
25667 msgid "mounts"
25668 msgstr ""
25669
25670 #. type: verbatim
25671 #: ../fish/guestfish-actions.pod:3323
25672 #, no-wrap
25673 msgid ""
25674 " mounts\n"
25675 "\n"
25676 msgstr ""
25677
25678 #. type: textblock
25679 #: ../fish/guestfish-actions.pod:3330
25680 msgid "See also: L</mountpoints>"
25681 msgstr ""
25682
25683 #. type: =head2
25684 #: ../fish/guestfish-actions.pod:3332
25685 msgid "mv"
25686 msgstr ""
25687
25688 #. type: verbatim
25689 #: ../fish/guestfish-actions.pod:3334
25690 #, no-wrap
25691 msgid ""
25692 " mv src dest\n"
25693 "\n"
25694 msgstr ""
25695
25696 #. type: =head2
25697 #: ../fish/guestfish-actions.pod:3339
25698 msgid "ntfs-3g-probe"
25699 msgstr ""
25700
25701 #. type: verbatim
25702 #: ../fish/guestfish-actions.pod:3341
25703 #, no-wrap
25704 msgid ""
25705 " ntfs-3g-probe true|false device\n"
25706 "\n"
25707 msgstr ""
25708
25709 #. type: =head2
25710 #: ../fish/guestfish-actions.pod:3355
25711 msgid "ntfsresize"
25712 msgstr ""
25713
25714 #. type: verbatim
25715 #: ../fish/guestfish-actions.pod:3357
25716 #, no-wrap
25717 msgid ""
25718 " ntfsresize device\n"
25719 "\n"
25720 msgstr ""
25721
25722 #. type: =head2
25723 #: ../fish/guestfish-actions.pod:3379
25724 msgid "ntfsresize-opts"
25725 msgstr ""
25726
25727 #. type: verbatim
25728 #: ../fish/guestfish-actions.pod:3381
25729 #, no-wrap
25730 msgid ""
25731 " ntfsresize-opts device [size:..] [force:..]\n"
25732 "\n"
25733 msgstr ""
25734
25735 #. type: textblock
25736 #: ../fish/guestfish-actions.pod:3400
25737 msgid ""
25738 "After the resize operation, the filesystem is always marked as requiring a "
25739 "consistency check (for safety).  You have to boot into Windows to perform "
25740 "this check and clear this condition.  If you I<don't> set the C<force> "
25741 "option then it is not possible to call L</ntfsresize-opts> multiple times on "
25742 "a single filesystem without booting into Windows between each resize."
25743 msgstr ""
25744
25745 #. type: =head2
25746 #: ../fish/guestfish-actions.pod:3413
25747 msgid "ntfsresize-size"
25748 msgstr ""
25749
25750 #. type: verbatim
25751 #: ../fish/guestfish-actions.pod:3415
25752 #, no-wrap
25753 msgid ""
25754 " ntfsresize-size device size\n"
25755 "\n"
25756 msgstr ""
25757
25758 #. type: textblock
25759 #: ../fish/guestfish-actions.pod:3417
25760 msgid ""
25761 "This command is the same as L</ntfsresize> except that it allows you to "
25762 "specify the new size (in bytes) explicitly."
25763 msgstr ""
25764
25765 #. type: =head2
25766 #: ../fish/guestfish-actions.pod:3427
25767 msgid "part-add"
25768 msgstr ""
25769
25770 #. type: verbatim
25771 #: ../fish/guestfish-actions.pod:3429
25772 #, no-wrap
25773 msgid ""
25774 " part-add device prlogex startsect endsect\n"
25775 "\n"
25776 msgstr ""
25777
25778 #. type: textblock
25779 #: ../fish/guestfish-actions.pod:3431
25780 msgid ""
25781 "This command adds a partition to C<device>.  If there is no partition table "
25782 "on the device, call L</part-init> first."
25783 msgstr ""
25784
25785 #. type: textblock
25786 #: ../fish/guestfish-actions.pod:3443
25787 msgid ""
25788 "Creating a partition which covers the whole disk is not so easy.  Use "
25789 "L</part-disk> to do that."
25790 msgstr ""
25791
25792 #. type: =head2
25793 #: ../fish/guestfish-actions.pod:3446
25794 msgid "part-del"
25795 msgstr ""
25796
25797 #. type: verbatim
25798 #: ../fish/guestfish-actions.pod:3448
25799 #, no-wrap
25800 msgid ""
25801 " part-del device partnum\n"
25802 "\n"
25803 msgstr ""
25804
25805 #. type: =head2
25806 #: ../fish/guestfish-actions.pod:3456
25807 msgid "part-disk"
25808 msgstr ""
25809
25810 #. type: verbatim
25811 #: ../fish/guestfish-actions.pod:3458
25812 #, no-wrap
25813 msgid ""
25814 " part-disk device parttype\n"
25815 "\n"
25816 msgstr ""
25817
25818 #. type: textblock
25819 #: ../fish/guestfish-actions.pod:3460
25820 msgid ""
25821 "This command is simply a combination of L</part-init> followed by "
25822 "L</part-add> to create a single primary partition covering the whole disk."
25823 msgstr ""
25824
25825 #. type: textblock
25826 #: ../fish/guestfish-actions.pod:3464
25827 msgid ""
25828 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25829 "possible values are described in L</part-init>."
25830 msgstr ""
25831
25832 #. type: =head2
25833 #: ../fish/guestfish-actions.pod:3470
25834 msgid "part-get-bootable"
25835 msgstr ""
25836
25837 #. type: verbatim
25838 #: ../fish/guestfish-actions.pod:3472
25839 #, no-wrap
25840 msgid ""
25841 " part-get-bootable device partnum\n"
25842 "\n"
25843 msgstr ""
25844
25845 #. type: textblock
25846 #: ../fish/guestfish-actions.pod:3477
25847 msgid "See also L</part-set-bootable>."
25848 msgstr ""
25849
25850 #. type: =head2
25851 #: ../fish/guestfish-actions.pod:3479
25852 msgid "part-get-mbr-id"
25853 msgstr ""
25854
25855 #. type: verbatim
25856 #: ../fish/guestfish-actions.pod:3481
25857 #, no-wrap
25858 msgid ""
25859 " part-get-mbr-id device partnum\n"
25860 "\n"
25861 msgstr ""
25862
25863 #. type: textblock
25864 #: ../fish/guestfish-actions.pod:3486 ../fish/guestfish-actions.pod:3624
25865 msgid ""
25866 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25867 "undefined results for other partition table types (see "
25868 "L</part-get-parttype>)."
25869 msgstr ""
25870
25871 #. type: =head2
25872 #: ../fish/guestfish-actions.pod:3490
25873 msgid "part-get-parttype"
25874 msgstr ""
25875
25876 #. type: verbatim
25877 #: ../fish/guestfish-actions.pod:3492
25878 #, no-wrap
25879 msgid ""
25880 " part-get-parttype device\n"
25881 "\n"
25882 msgstr ""
25883
25884 #. type: textblock
25885 #: ../fish/guestfish-actions.pod:3497
25886 msgid ""
25887 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25888 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25889 "possible, although unusual.  See L</part-init> for a full list."
25890 msgstr ""
25891
25892 #. type: =head2
25893 #: ../fish/guestfish-actions.pod:3502
25894 msgid "part-init"
25895 msgstr ""
25896
25897 #. type: verbatim
25898 #: ../fish/guestfish-actions.pod:3504
25899 #, no-wrap
25900 msgid ""
25901 " part-init device parttype\n"
25902 "\n"
25903 msgstr ""
25904
25905 #. type: textblock
25906 #: ../fish/guestfish-actions.pod:3510
25907 msgid ""
25908 "Initially there are no partitions.  Following this, you should call "
25909 "L</part-add> for each partition required."
25910 msgstr ""
25911
25912 #. type: =head2
25913 #: ../fish/guestfish-actions.pod:3573
25914 msgid "part-list"
25915 msgstr ""
25916
25917 #. type: verbatim
25918 #: ../fish/guestfish-actions.pod:3575
25919 #, no-wrap
25920 msgid ""
25921 " part-list device\n"
25922 "\n"
25923 msgstr ""
25924
25925 #. type: textblock
25926 #: ../fish/guestfish-actions.pod:3590
25927 msgid ""
25928 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25929 "the device's sector size, see L</blockdev-getss>."
25930 msgstr ""
25931
25932 #. type: =head2
25933 #: ../fish/guestfish-actions.pod:3603
25934 msgid "part-set-bootable"
25935 msgstr ""
25936
25937 #. type: verbatim
25938 #: ../fish/guestfish-actions.pod:3605
25939 #, no-wrap
25940 msgid ""
25941 " part-set-bootable device partnum true|false\n"
25942 "\n"
25943 msgstr ""
25944
25945 #. type: =head2
25946 #: ../fish/guestfish-actions.pod:3614
25947 msgid "part-set-mbr-id"
25948 msgstr ""
25949
25950 #. type: verbatim
25951 #: ../fish/guestfish-actions.pod:3616
25952 #, no-wrap
25953 msgid ""
25954 " part-set-mbr-id device partnum idbyte\n"
25955 "\n"
25956 msgstr ""
25957
25958 #. type: =head2
25959 #: ../fish/guestfish-actions.pod:3628
25960 msgid "part-set-name"
25961 msgstr ""
25962
25963 #. type: verbatim
25964 #: ../fish/guestfish-actions.pod:3630
25965 #, no-wrap
25966 msgid ""
25967 " part-set-name device partnum name\n"
25968 "\n"
25969 msgstr ""
25970
25971 #. type: =head2
25972 #: ../fish/guestfish-actions.pod:3638
25973 msgid "part-to-dev"
25974 msgstr ""
25975
25976 #. type: verbatim
25977 #: ../fish/guestfish-actions.pod:3640
25978 #, no-wrap
25979 msgid ""
25980 " part-to-dev partition\n"
25981 "\n"
25982 msgstr ""
25983
25984 #. type: textblock
25985 #: ../fish/guestfish-actions.pod:3646
25986 msgid ""
25987 "The named partition must exist, for example as a string returned from "
25988 "L</list-partitions>."
25989 msgstr ""
25990
25991 #. type: =head2
25992 #: ../fish/guestfish-actions.pod:3649
25993 msgid "ping-daemon"
25994 msgstr ""
25995
25996 #. type: verbatim
25997 #: ../fish/guestfish-actions.pod:3651
25998 #, no-wrap
25999 msgid ""
26000 " ping-daemon\n"
26001 "\n"
26002 msgstr ""
26003
26004 #. type: =head2
26005 #: ../fish/guestfish-actions.pod:3658
26006 msgid "pread"
26007 msgstr ""
26008
26009 #. type: verbatim
26010 #: ../fish/guestfish-actions.pod:3660
26011 #, no-wrap
26012 msgid ""
26013 " pread path count offset\n"
26014 "\n"
26015 msgstr ""
26016
26017 #. type: textblock
26018 #: ../fish/guestfish-actions.pod:3668
26019 msgid "See also L</pwrite>, L</pread-device>."
26020 msgstr ""
26021
26022 #. type: =head2
26023 #: ../fish/guestfish-actions.pod:3673
26024 msgid "pread-device"
26025 msgstr ""
26026
26027 #. type: verbatim
26028 #: ../fish/guestfish-actions.pod:3675
26029 #, no-wrap
26030 msgid ""
26031 " pread-device device count offset\n"
26032 "\n"
26033 msgstr ""
26034
26035 #. type: textblock
26036 #: ../fish/guestfish-actions.pod:3683
26037 msgid "See also L</pread>."
26038 msgstr ""
26039
26040 #. type: =head2
26041 #: ../fish/guestfish-actions.pod:3688
26042 msgid "pvcreate"
26043 msgstr ""
26044
26045 #. type: verbatim
26046 #: ../fish/guestfish-actions.pod:3690
26047 #, no-wrap
26048 msgid ""
26049 " pvcreate device\n"
26050 "\n"
26051 msgstr ""
26052
26053 #. type: =head2
26054 #: ../fish/guestfish-actions.pod:3696
26055 msgid "pvremove"
26056 msgstr ""
26057
26058 #. type: verbatim
26059 #: ../fish/guestfish-actions.pod:3698
26060 #, no-wrap
26061 msgid ""
26062 " pvremove device\n"
26063 "\n"
26064 msgstr ""
26065
26066 #. type: =head2
26067 #: ../fish/guestfish-actions.pod:3707
26068 msgid "pvresize"
26069 msgstr ""
26070
26071 #. type: verbatim
26072 #: ../fish/guestfish-actions.pod:3709
26073 #, no-wrap
26074 msgid ""
26075 " pvresize device\n"
26076 "\n"
26077 msgstr ""
26078
26079 #. type: =head2
26080 #: ../fish/guestfish-actions.pod:3714
26081 msgid "pvresize-size"
26082 msgstr ""
26083
26084 #. type: verbatim
26085 #: ../fish/guestfish-actions.pod:3716
26086 #, no-wrap
26087 msgid ""
26088 " pvresize-size device size\n"
26089 "\n"
26090 msgstr ""
26091
26092 #. type: textblock
26093 #: ../fish/guestfish-actions.pod:3718
26094 msgid ""
26095 "This command is the same as L</pvresize> except that it allows you to "
26096 "specify the new size (in bytes) explicitly."
26097 msgstr ""
26098
26099 #. type: =head2
26100 #: ../fish/guestfish-actions.pod:3721
26101 msgid "pvs"
26102 msgstr ""
26103
26104 #. type: verbatim
26105 #: ../fish/guestfish-actions.pod:3723
26106 #, no-wrap
26107 msgid ""
26108 " pvs\n"
26109 "\n"
26110 msgstr ""
26111
26112 #. type: textblock
26113 #: ../fish/guestfish-actions.pod:3731
26114 msgid "See also L</pvs-full>."
26115 msgstr ""
26116
26117 #. type: =head2
26118 #: ../fish/guestfish-actions.pod:3733
26119 msgid "pvs-full"
26120 msgstr ""
26121
26122 #. type: verbatim
26123 #: ../fish/guestfish-actions.pod:3735
26124 #, no-wrap
26125 msgid ""
26126 " pvs-full\n"
26127 "\n"
26128 msgstr ""
26129
26130 #. type: =head2
26131 #: ../fish/guestfish-actions.pod:3740
26132 msgid "pvuuid"
26133 msgstr ""
26134
26135 #. type: verbatim
26136 #: ../fish/guestfish-actions.pod:3742
26137 #, no-wrap
26138 msgid ""
26139 " pvuuid device\n"
26140 "\n"
26141 msgstr ""
26142
26143 #. type: =head2
26144 #: ../fish/guestfish-actions.pod:3746
26145 msgid "pwrite"
26146 msgstr ""
26147
26148 #. type: verbatim
26149 #: ../fish/guestfish-actions.pod:3748
26150 #, no-wrap
26151 msgid ""
26152 " pwrite path content offset\n"
26153 "\n"
26154 msgstr ""
26155
26156 #. type: textblock
26157 #: ../fish/guestfish-actions.pod:3759
26158 msgid "See also L</pread>, L</pwrite-device>."
26159 msgstr ""
26160
26161 #. type: =head2
26162 #: ../fish/guestfish-actions.pod:3764
26163 msgid "pwrite-device"
26164 msgstr ""
26165
26166 #. type: verbatim
26167 #: ../fish/guestfish-actions.pod:3766
26168 #, no-wrap
26169 msgid ""
26170 " pwrite-device device content offset\n"
26171 "\n"
26172 msgstr ""
26173
26174 #. type: textblock
26175 #: ../fish/guestfish-actions.pod:3776
26176 msgid "See also L</pwrite>."
26177 msgstr ""
26178
26179 #. type: =head2
26180 #: ../fish/guestfish-actions.pod:3781
26181 msgid "read-file"
26182 msgstr ""
26183
26184 #. type: verbatim
26185 #: ../fish/guestfish-actions.pod:3783
26186 #, no-wrap
26187 msgid ""
26188 " read-file path\n"
26189 "\n"
26190 msgstr ""
26191
26192 #. type: textblock
26193 #: ../fish/guestfish-actions.pod:3788
26194 msgid ""
26195 "Unlike L</cat>, this function can correctly handle files that contain "
26196 "embedded ASCII NUL characters.  However unlike L</download>, this function "
26197 "is limited in the total size of file that can be handled."
26198 msgstr ""
26199
26200 #. type: =head2
26201 #: ../fish/guestfish-actions.pod:3796
26202 msgid "read-lines"
26203 msgstr ""
26204
26205 #. type: verbatim
26206 #: ../fish/guestfish-actions.pod:3798
26207 #, no-wrap
26208 msgid ""
26209 " read-lines path\n"
26210 "\n"
26211 msgstr ""
26212
26213 #. type: textblock
26214 #: ../fish/guestfish-actions.pod:3805
26215 msgid ""
26216 "Note that this function cannot correctly handle binary files (specifically, "
26217 "files containing C<\\0> character which is treated as end of line).  For "
26218 "those you need to use the L</read-file> function which has a more complex "
26219 "interface."
26220 msgstr ""
26221
26222 #. type: =head2
26223 #: ../fish/guestfish-actions.pod:3810
26224 msgid "readdir"
26225 msgstr ""
26226
26227 #. type: verbatim
26228 #: ../fish/guestfish-actions.pod:3812
26229 #, no-wrap
26230 msgid ""
26231 " readdir dir\n"
26232 "\n"
26233 msgstr ""
26234
26235 #. type: textblock
26236 #: ../fish/guestfish-actions.pod:3864
26237 msgid ""
26238 "This function is primarily intended for use by programs.  To get a simple "
26239 "list of names, use L</ls>.  To get a printable directory for human "
26240 "consumption, use L</ll>."
26241 msgstr ""
26242
26243 #. type: =head2
26244 #: ../fish/guestfish-actions.pod:3868
26245 msgid "readlink"
26246 msgstr ""
26247
26248 #. type: verbatim
26249 #: ../fish/guestfish-actions.pod:3870
26250 #, no-wrap
26251 msgid ""
26252 " readlink path\n"
26253 "\n"
26254 msgstr ""
26255
26256 #. type: =head2
26257 #: ../fish/guestfish-actions.pod:3874
26258 msgid "readlinklist"
26259 msgstr ""
26260
26261 #. type: verbatim
26262 #: ../fish/guestfish-actions.pod:3876
26263 #, no-wrap
26264 msgid ""
26265 " readlinklist path 'names ...'\n"
26266 "\n"
26267 msgstr ""
26268
26269 #. type: =head2
26270 #: ../fish/guestfish-actions.pod:3900
26271 msgid "realpath"
26272 msgstr ""
26273
26274 #. type: verbatim
26275 #: ../fish/guestfish-actions.pod:3902
26276 #, no-wrap
26277 msgid ""
26278 " realpath path\n"
26279 "\n"
26280 msgstr ""
26281
26282 #. type: =head2
26283 #: ../fish/guestfish-actions.pod:3907
26284 msgid "removexattr"
26285 msgstr ""
26286
26287 #. type: verbatim
26288 #: ../fish/guestfish-actions.pod:3909
26289 #, no-wrap
26290 msgid ""
26291 " removexattr xattr path\n"
26292 "\n"
26293 msgstr ""
26294
26295 #. type: textblock
26296 #: ../fish/guestfish-actions.pod:3914
26297 msgid "See also: L</lremovexattr>, L<attr(5)>."
26298 msgstr ""
26299
26300 #. type: =head2
26301 #: ../fish/guestfish-actions.pod:3916
26302 msgid "resize2fs"
26303 msgstr ""
26304
26305 #. type: verbatim
26306 #: ../fish/guestfish-actions.pod:3918
26307 #, no-wrap
26308 msgid ""
26309 " resize2fs device\n"
26310 "\n"
26311 msgstr ""
26312
26313 #. type: textblock
26314 #: ../fish/guestfish-actions.pod:3923
26315 msgid ""
26316 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26317 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26318 "gives an error about this and sometimes not.  In any case, it is always safe "
26319 "to call L</e2fsck-f> before calling this function."
26320 msgstr ""
26321
26322 #. type: =head2
26323 #: ../fish/guestfish-actions.pod:3929
26324 msgid "resize2fs-M"
26325 msgstr ""
26326
26327 #. type: verbatim
26328 #: ../fish/guestfish-actions.pod:3931
26329 #, no-wrap
26330 msgid ""
26331 " resize2fs-M device\n"
26332 "\n"
26333 msgstr ""
26334
26335 #. type: textblock
26336 #: ../fish/guestfish-actions.pod:3933
26337 msgid ""
26338 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26339 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26340 "command."
26341 msgstr ""
26342
26343 #. type: textblock
26344 #: ../fish/guestfish-actions.pod:3937
26345 msgid ""
26346 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26347 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26348 "multiplied together, give the resulting size of the minimal filesystem in "
26349 "bytes."
26350 msgstr ""
26351
26352 #. type: =head2
26353 #: ../fish/guestfish-actions.pod:3942
26354 msgid "resize2fs-size"
26355 msgstr ""
26356
26357 #. type: verbatim
26358 #: ../fish/guestfish-actions.pod:3944
26359 #, no-wrap
26360 msgid ""
26361 " resize2fs-size device size\n"
26362 "\n"
26363 msgstr ""
26364
26365 #. type: textblock
26366 #: ../fish/guestfish-actions.pod:3946
26367 msgid ""
26368 "This command is the same as L</resize2fs> except that it allows you to "
26369 "specify the new size (in bytes) explicitly."
26370 msgstr ""
26371
26372 #. type: =head2
26373 #: ../fish/guestfish-actions.pod:3949
26374 msgid "rm"
26375 msgstr ""
26376
26377 #. type: verbatim
26378 #: ../fish/guestfish-actions.pod:3951
26379 #, no-wrap
26380 msgid ""
26381 " rm path\n"
26382 "\n"
26383 msgstr ""
26384
26385 #. type: =head2
26386 #: ../fish/guestfish-actions.pod:3955
26387 msgid "rm-rf"
26388 msgstr ""
26389
26390 #. type: verbatim
26391 #: ../fish/guestfish-actions.pod:3957
26392 #, no-wrap
26393 msgid ""
26394 " rm-rf path\n"
26395 "\n"
26396 msgstr ""
26397
26398 #. type: =head2
26399 #: ../fish/guestfish-actions.pod:3963
26400 msgid "rmdir"
26401 msgstr ""
26402
26403 #. type: verbatim
26404 #: ../fish/guestfish-actions.pod:3965
26405 #, no-wrap
26406 msgid ""
26407 " rmdir path\n"
26408 "\n"
26409 msgstr ""
26410
26411 #. type: =head2
26412 #: ../fish/guestfish-actions.pod:3969
26413 msgid "rmmountpoint"
26414 msgstr ""
26415
26416 #. type: verbatim
26417 #: ../fish/guestfish-actions.pod:3971
26418 #, no-wrap
26419 msgid ""
26420 " rmmountpoint exemptpath\n"
26421 "\n"
26422 msgstr ""
26423
26424 #. type: textblock
26425 #: ../fish/guestfish-actions.pod:3973
26426 msgid ""
26427 "This calls removes a mountpoint that was previously created with "
26428 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
26429 msgstr ""
26430
26431 #. type: =head2
26432 #: ../fish/guestfish-actions.pod:3977
26433 msgid "scrub-device"
26434 msgstr ""
26435
26436 #. type: verbatim
26437 #: ../fish/guestfish-actions.pod:3979
26438 #, no-wrap
26439 msgid ""
26440 " scrub-device device\n"
26441 "\n"
26442 msgstr ""
26443
26444 #. type: =head2
26445 #: ../fish/guestfish-actions.pod:3990
26446 msgid "scrub-file"
26447 msgstr ""
26448
26449 #. type: verbatim
26450 #: ../fish/guestfish-actions.pod:3992
26451 #, no-wrap
26452 msgid ""
26453 " scrub-file file\n"
26454 "\n"
26455 msgstr ""
26456
26457 #. type: =head2
26458 #: ../fish/guestfish-actions.pod:4002
26459 msgid "scrub-freespace"
26460 msgstr ""
26461
26462 #. type: verbatim
26463 #: ../fish/guestfish-actions.pod:4004
26464 #, no-wrap
26465 msgid ""
26466 " scrub-freespace dir\n"
26467 "\n"
26468 msgstr ""
26469
26470 #. type: textblock
26471 #: ../fish/guestfish-actions.pod:4006
26472 msgid ""
26473 "This command creates the directory C<dir> and then fills it with files until "
26474 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26475 "deletes them.  The intention is to scrub any free space on the partition "
26476 "containing C<dir>."
26477 msgstr ""
26478
26479 #. type: =head2
26480 #: ../fish/guestfish-actions.pod:4015
26481 msgid "set-append"
26482 msgstr ""
26483
26484 #. type: =head2
26485 #: ../fish/guestfish-actions.pod:4017
26486 msgid "append"
26487 msgstr ""
26488
26489 #. type: verbatim
26490 #: ../fish/guestfish-actions.pod:4019
26491 #, no-wrap
26492 msgid ""
26493 " set-append append\n"
26494 "\n"
26495 msgstr ""
26496
26497 #. type: =head2
26498 #: ../fish/guestfish-actions.pod:4030
26499 msgid "set-attach-method"
26500 msgstr ""
26501
26502 #. type: =head2
26503 #: ../fish/guestfish-actions.pod:4032
26504 msgid "attach-method"
26505 msgstr ""
26506
26507 #. type: verbatim
26508 #: ../fish/guestfish-actions.pod:4034
26509 #, no-wrap
26510 msgid ""
26511 " set-attach-method attachmethod\n"
26512 "\n"
26513 msgstr ""
26514
26515 #. type: =head2
26516 #: ../fish/guestfish-actions.pod:4056
26517 msgid "set-autosync"
26518 msgstr ""
26519
26520 #. type: =head2
26521 #: ../fish/guestfish-actions.pod:4058
26522 msgid "autosync"
26523 msgstr ""
26524
26525 #. type: verbatim
26526 #: ../fish/guestfish-actions.pod:4060
26527 #, no-wrap
26528 msgid ""
26529 " set-autosync true|false\n"
26530 "\n"
26531 msgstr ""
26532
26533 #. type: =head2
26534 #: ../fish/guestfish-actions.pod:4070
26535 msgid "set-direct"
26536 msgstr ""
26537
26538 #. type: =head2
26539 #: ../fish/guestfish-actions.pod:4072
26540 msgid "direct"
26541 msgstr ""
26542
26543 #. type: verbatim
26544 #: ../fish/guestfish-actions.pod:4074
26545 #, no-wrap
26546 msgid ""
26547 " set-direct true|false\n"
26548 "\n"
26549 msgstr ""
26550
26551 #. type: textblock
26552 #: ../fish/guestfish-actions.pod:4080
26553 msgid ""
26554 "One consequence of this is that log messages aren't caught by the library "
26555 "and handled by L</set-log-message-callback>, but go straight to stdout."
26556 msgstr ""
26557
26558 #. type: =head2
26559 #: ../fish/guestfish-actions.pod:4089
26560 msgid "set-e2label"
26561 msgstr ""
26562
26563 #. type: verbatim
26564 #: ../fish/guestfish-actions.pod:4091
26565 #, no-wrap
26566 msgid ""
26567 " set-e2label device label\n"
26568 "\n"
26569 msgstr ""
26570
26571 #. type: textblock
26572 #: ../fish/guestfish-actions.pod:4097
26573 msgid ""
26574 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26575 "label on a filesystem."
26576 msgstr ""
26577
26578 #. type: =head2
26579 #: ../fish/guestfish-actions.pod:4100
26580 msgid "set-e2uuid"
26581 msgstr ""
26582
26583 #. type: verbatim
26584 #: ../fish/guestfish-actions.pod:4102
26585 #, no-wrap
26586 msgid ""
26587 " set-e2uuid device uuid\n"
26588 "\n"
26589 msgstr ""
26590
26591 #. type: textblock
26592 #: ../fish/guestfish-actions.pod:4109
26593 msgid ""
26594 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26595 "UUID of a filesystem."
26596 msgstr ""
26597
26598 #. type: =head2
26599 #: ../fish/guestfish-actions.pod:4112
26600 msgid "set-memsize"
26601 msgstr ""
26602
26603 #. type: =head2
26604 #: ../fish/guestfish-actions.pod:4114
26605 msgid "memsize"
26606 msgstr ""
26607
26608 #. type: verbatim
26609 #: ../fish/guestfish-actions.pod:4116
26610 #, no-wrap
26611 msgid ""
26612 " set-memsize memsize\n"
26613 "\n"
26614 msgstr ""
26615
26616 #. type: textblock
26617 #: ../fish/guestfish-actions.pod:4118
26618 msgid ""
26619 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26620 "This only has any effect if called before L</launch>."
26621 msgstr ""
26622
26623 #. type: =head2
26624 #: ../fish/guestfish-actions.pod:4129
26625 msgid "set-network"
26626 msgstr ""
26627
26628 #. type: =head2
26629 #: ../fish/guestfish-actions.pod:4131
26630 msgid "network"
26631 msgstr ""
26632
26633 #. type: verbatim
26634 #: ../fish/guestfish-actions.pod:4133
26635 #, no-wrap
26636 msgid ""
26637 " set-network true|false\n"
26638 "\n"
26639 msgstr ""
26640
26641 #. type: textblock
26642 #: ../fish/guestfish-actions.pod:4141
26643 msgid "You must call this before calling L</launch>, otherwise it has no effect."
26644 msgstr ""
26645
26646 #. type: =head2
26647 #: ../fish/guestfish-actions.pod:4144
26648 msgid "set-path"
26649 msgstr ""
26650
26651 #. type: =head2
26652 #: ../fish/guestfish-actions.pod:4146
26653 msgid "path"
26654 msgstr ""
26655
26656 #. type: verbatim
26657 #: ../fish/guestfish-actions.pod:4148
26658 #, no-wrap
26659 msgid ""
26660 " set-path searchpath\n"
26661 "\n"
26662 msgstr ""
26663
26664 #. type: =head2
26665 #: ../fish/guestfish-actions.pod:4157
26666 msgid "set-qemu"
26667 msgstr ""
26668
26669 #. type: =head2
26670 #: ../fish/guestfish-actions.pod:4159
26671 msgid "qemu"
26672 msgstr ""
26673
26674 #. type: verbatim
26675 #: ../fish/guestfish-actions.pod:4161
26676 #, no-wrap
26677 msgid ""
26678 " set-qemu qemu\n"
26679 "\n"
26680 msgstr ""
26681
26682 #. type: =head2
26683 #: ../fish/guestfish-actions.pod:4181
26684 msgid "set-recovery-proc"
26685 msgstr ""
26686
26687 #. type: =head2
26688 #: ../fish/guestfish-actions.pod:4183
26689 msgid "recovery-proc"
26690 msgstr ""
26691
26692 #. type: verbatim
26693 #: ../fish/guestfish-actions.pod:4185
26694 #, no-wrap
26695 msgid ""
26696 " set-recovery-proc true|false\n"
26697 "\n"
26698 msgstr ""
26699
26700 #. type: textblock
26701 #: ../fish/guestfish-actions.pod:4187
26702 msgid ""
26703 "If this is called with the parameter C<false> then L</launch> does not "
26704 "create a recovery process.  The purpose of the recovery process is to stop "
26705 "runaway qemu processes in the case where the main program aborts abruptly."
26706 msgstr ""
26707
26708 #. type: textblock
26709 #: ../fish/guestfish-actions.pod:4192
26710 msgid ""
26711 "This only has any effect if called before L</launch>, and the default is "
26712 "true."
26713 msgstr ""
26714
26715 #. type: =head2
26716 #: ../fish/guestfish-actions.pod:4201
26717 msgid "set-selinux"
26718 msgstr ""
26719
26720 #. type: =head2
26721 #: ../fish/guestfish-actions.pod:4203
26722 msgid "selinux"
26723 msgstr ""
26724
26725 #. type: verbatim
26726 #: ../fish/guestfish-actions.pod:4205
26727 #, no-wrap
26728 msgid ""
26729 " set-selinux true|false\n"
26730 "\n"
26731 msgstr ""
26732
26733 #. type: =head2
26734 #: ../fish/guestfish-actions.pod:4216
26735 msgid "set-trace"
26736 msgstr ""
26737
26738 #. type: =head2
26739 #: ../fish/guestfish-actions.pod:4218
26740 msgid "trace"
26741 msgstr ""
26742
26743 #. type: verbatim
26744 #: ../fish/guestfish-actions.pod:4220
26745 #, no-wrap
26746 msgid ""
26747 " set-trace true|false\n"
26748 "\n"
26749 msgstr ""
26750
26751 #. type: textblock
26752 #: ../fish/guestfish-actions.pod:4232
26753 msgid ""
26754 "Trace messages are normally sent to C<stderr>, unless you register a "
26755 "callback to send them somewhere else (see L</set-event-callback>)."
26756 msgstr ""
26757
26758 #. type: =head2
26759 #: ../fish/guestfish-actions.pod:4236
26760 msgid "set-verbose"
26761 msgstr ""
26762
26763 #. type: =head2
26764 #: ../fish/guestfish-actions.pod:4238
26765 msgid "verbose"
26766 msgstr ""
26767
26768 #. type: verbatim
26769 #: ../fish/guestfish-actions.pod:4240
26770 #, no-wrap
26771 msgid ""
26772 " set-verbose true|false\n"
26773 "\n"
26774 msgstr ""
26775
26776 #. type: textblock
26777 #: ../fish/guestfish-actions.pod:4247
26778 msgid ""
26779 "Verbose messages are normally sent to C<stderr>, unless you register a "
26780 "callback to send them somewhere else (see L</set-event-callback>)."
26781 msgstr ""
26782
26783 #. type: =head2
26784 #: ../fish/guestfish-actions.pod:4251
26785 msgid "setcon"
26786 msgstr ""
26787
26788 #. type: verbatim
26789 #: ../fish/guestfish-actions.pod:4253
26790 #, no-wrap
26791 msgid ""
26792 " setcon context\n"
26793 "\n"
26794 msgstr ""
26795
26796 #. type: =head2
26797 #: ../fish/guestfish-actions.pod:4260
26798 msgid "setxattr"
26799 msgstr ""
26800
26801 #. type: verbatim
26802 #: ../fish/guestfish-actions.pod:4262
26803 #, no-wrap
26804 msgid ""
26805 " setxattr xattr val vallen path\n"
26806 "\n"
26807 msgstr ""
26808
26809 #. type: textblock
26810 #: ../fish/guestfish-actions.pod:4268
26811 msgid "See also: L</lsetxattr>, L<attr(5)>."
26812 msgstr ""
26813
26814 #. type: =head2
26815 #: ../fish/guestfish-actions.pod:4270
26816 msgid "sfdisk"
26817 msgstr ""
26818
26819 #. type: verbatim
26820 #: ../fish/guestfish-actions.pod:4272
26821 #, no-wrap
26822 msgid ""
26823 " sfdisk device cyls heads sectors 'lines ...'\n"
26824 "\n"
26825 msgstr ""
26826
26827 #. type: textblock
26828 #: ../fish/guestfish-actions.pod:4294
26829 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26830 msgstr ""
26831
26832 #. type: =head2
26833 #: ../fish/guestfish-actions.pod:4307
26834 msgid "sfdiskM"
26835 msgstr ""
26836
26837 #. type: verbatim
26838 #: ../fish/guestfish-actions.pod:4309
26839 #, no-wrap
26840 msgid ""
26841 " sfdiskM device 'lines ...'\n"
26842 "\n"
26843 msgstr ""
26844
26845 #. type: textblock
26846 #: ../fish/guestfish-actions.pod:4311
26847 msgid ""
26848 "This is a simplified interface to the L</sfdisk> command, where partition "
26849 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26850 "you don't need to specify the cyls, heads and sectors parameters which were "
26851 "rarely if ever used anyway."
26852 msgstr ""
26853
26854 #. type: textblock
26855 #: ../fish/guestfish-actions.pod:4317
26856 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26857 msgstr ""
26858
26859 #. type: =head2
26860 #: ../fish/guestfish-actions.pod:4330
26861 msgid "sfdisk-N"
26862 msgstr ""
26863
26864 #. type: verbatim
26865 #: ../fish/guestfish-actions.pod:4332
26866 #, no-wrap
26867 msgid ""
26868 " sfdisk-N device partnum cyls heads sectors line\n"
26869 "\n"
26870 msgstr ""
26871
26872 #. type: textblock
26873 #: ../fish/guestfish-actions.pod:4337
26874 msgid ""
26875 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26876 "cyls/heads/sectors parameters."
26877 msgstr ""
26878
26879 #. type: textblock
26880 #: ../fish/guestfish-actions.pod:4340
26881 msgid "See also: L</part-add>"
26882 msgstr ""
26883
26884 #. type: =head2
26885 #: ../fish/guestfish-actions.pod:4352
26886 msgid "sfdisk-disk-geometry"
26887 msgstr ""
26888
26889 #. type: verbatim
26890 #: ../fish/guestfish-actions.pod:4354
26891 #, no-wrap
26892 msgid ""
26893 " sfdisk-disk-geometry device\n"
26894 "\n"
26895 msgstr ""
26896
26897 #. type: textblock
26898 #: ../fish/guestfish-actions.pod:4356
26899 msgid ""
26900 "This displays the disk geometry of C<device> read from the partition table.  "
26901 "Especially in the case where the underlying block device has been resized, "
26902 "this can be different from the kernel's idea of the geometry (see "
26903 "L</sfdisk-kernel-geometry>)."
26904 msgstr ""
26905
26906 #. type: =head2
26907 #: ../fish/guestfish-actions.pod:4364
26908 msgid "sfdisk-kernel-geometry"
26909 msgstr ""
26910
26911 #. type: verbatim
26912 #: ../fish/guestfish-actions.pod:4366
26913 #, no-wrap
26914 msgid ""
26915 " sfdisk-kernel-geometry device\n"
26916 "\n"
26917 msgstr ""
26918
26919 #. type: =head2
26920 #: ../fish/guestfish-actions.pod:4373
26921 msgid "sfdisk-l"
26922 msgstr ""
26923
26924 #. type: verbatim
26925 #: ../fish/guestfish-actions.pod:4375
26926 #, no-wrap
26927 msgid ""
26928 " sfdisk-l device\n"
26929 "\n"
26930 msgstr ""
26931
26932 #. type: textblock
26933 #: ../fish/guestfish-actions.pod:4381
26934 msgid "See also: L</part-list>"
26935 msgstr ""
26936
26937 #. type: =head2
26938 #: ../fish/guestfish-actions.pod:4390
26939 msgid "sh"
26940 msgstr ""
26941
26942 #. type: verbatim
26943 #: ../fish/guestfish-actions.pod:4392
26944 #, no-wrap
26945 msgid ""
26946 " sh command\n"
26947 "\n"
26948 msgstr ""
26949
26950 #. type: textblock
26951 #: ../fish/guestfish-actions.pod:4397
26952 msgid "This is like L</command>, but passes the command to:"
26953 msgstr ""
26954
26955 #. type: textblock
26956 #: ../fish/guestfish-actions.pod:4405
26957 msgid "All the provisos about L</command> apply to this call."
26958 msgstr ""
26959
26960 #. type: =head2
26961 #: ../fish/guestfish-actions.pod:4407
26962 msgid "sh-lines"
26963 msgstr ""
26964
26965 #. type: verbatim
26966 #: ../fish/guestfish-actions.pod:4409
26967 #, no-wrap
26968 msgid ""
26969 " sh-lines command\n"
26970 "\n"
26971 msgstr ""
26972
26973 #. type: textblock
26974 #: ../fish/guestfish-actions.pod:4411
26975 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26976 msgstr ""
26977
26978 #. type: textblock
26979 #: ../fish/guestfish-actions.pod:4414
26980 msgid "See also: L</command-lines>"
26981 msgstr ""
26982
26983 #. type: =head2
26984 #: ../fish/guestfish-actions.pod:4416
26985 msgid "sleep"
26986 msgstr ""
26987
26988 #. type: verbatim
26989 #: ../fish/guestfish-actions.pod:4418
26990 #, no-wrap
26991 msgid ""
26992 " sleep secs\n"
26993 "\n"
26994 msgstr ""
26995
26996 #. type: =head2
26997 #: ../fish/guestfish-actions.pod:4422
26998 msgid "stat"
26999 msgstr ""
27000
27001 #. type: verbatim
27002 #: ../fish/guestfish-actions.pod:4424
27003 #, no-wrap
27004 msgid ""
27005 " stat path\n"
27006 "\n"
27007 msgstr ""
27008
27009 #. type: =head2
27010 #: ../fish/guestfish-actions.pod:4430
27011 msgid "statvfs"
27012 msgstr ""
27013
27014 #. type: verbatim
27015 #: ../fish/guestfish-actions.pod:4432
27016 #, no-wrap
27017 msgid ""
27018 " statvfs path\n"
27019 "\n"
27020 msgstr ""
27021
27022 #. type: =head2
27023 #: ../fish/guestfish-actions.pod:4440
27024 msgid "strings"
27025 msgstr ""
27026
27027 #. type: verbatim
27028 #: ../fish/guestfish-actions.pod:4442
27029 #, no-wrap
27030 msgid ""
27031 " strings path\n"
27032 "\n"
27033 msgstr ""
27034
27035 #. type: =head2
27036 #: ../fish/guestfish-actions.pod:4450
27037 msgid "strings-e"
27038 msgstr ""
27039
27040 #. type: verbatim
27041 #: ../fish/guestfish-actions.pod:4452
27042 #, no-wrap
27043 msgid ""
27044 " strings-e encoding path\n"
27045 "\n"
27046 msgstr ""
27047
27048 #. type: textblock
27049 #: ../fish/guestfish-actions.pod:4454
27050 msgid ""
27051 "This is like the L</strings> command, but allows you to specify the encoding "
27052 "of strings that are looked for in the source file C<path>."
27053 msgstr ""
27054
27055 #. type: textblock
27056 #: ../fish/guestfish-actions.pod:4464
27057 msgid ""
27058 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
27059 "ISO-8859-X (this is what L</strings> uses)."
27060 msgstr ""
27061
27062 #. type: =head2
27063 #: ../fish/guestfish-actions.pod:4496
27064 msgid "swapoff-device"
27065 msgstr ""
27066
27067 #. type: verbatim
27068 #: ../fish/guestfish-actions.pod:4498
27069 #, no-wrap
27070 msgid ""
27071 " swapoff-device device\n"
27072 "\n"
27073 msgstr ""
27074
27075 #. type: textblock
27076 #: ../fish/guestfish-actions.pod:4500
27077 msgid ""
27078 "This command disables the libguestfs appliance swap device or partition "
27079 "named C<device>.  See L</swapon-device>."
27080 msgstr ""
27081
27082 #. type: =head2
27083 #: ../fish/guestfish-actions.pod:4504
27084 msgid "swapoff-file"
27085 msgstr ""
27086
27087 #. type: verbatim
27088 #: ../fish/guestfish-actions.pod:4506
27089 #, no-wrap
27090 msgid ""
27091 " swapoff-file file\n"
27092 "\n"
27093 msgstr ""
27094
27095 #. type: =head2
27096 #: ../fish/guestfish-actions.pod:4510
27097 msgid "swapoff-label"
27098 msgstr ""
27099
27100 #. type: verbatim
27101 #: ../fish/guestfish-actions.pod:4512
27102 #, no-wrap
27103 msgid ""
27104 " swapoff-label label\n"
27105 "\n"
27106 msgstr ""
27107
27108 #. type: =head2
27109 #: ../fish/guestfish-actions.pod:4517
27110 msgid "swapoff-uuid"
27111 msgstr ""
27112
27113 #. type: verbatim
27114 #: ../fish/guestfish-actions.pod:4519
27115 #, no-wrap
27116 msgid ""
27117 " swapoff-uuid uuid\n"
27118 "\n"
27119 msgstr ""
27120
27121 #. type: =head2
27122 #: ../fish/guestfish-actions.pod:4524
27123 msgid "swapon-device"
27124 msgstr ""
27125
27126 #. type: verbatim
27127 #: ../fish/guestfish-actions.pod:4526
27128 #, no-wrap
27129 msgid ""
27130 " swapon-device device\n"
27131 "\n"
27132 msgstr ""
27133
27134 #. type: textblock
27135 #: ../fish/guestfish-actions.pod:4528
27136 msgid ""
27137 "This command enables the libguestfs appliance to use the swap device or "
27138 "partition named C<device>.  The increased memory is made available for all "
27139 "commands, for example those run using L</command> or L</sh>."
27140 msgstr ""
27141
27142 #. type: =head2
27143 #: ../fish/guestfish-actions.pod:4540
27144 msgid "swapon-file"
27145 msgstr ""
27146
27147 #. type: verbatim
27148 #: ../fish/guestfish-actions.pod:4542
27149 #, no-wrap
27150 msgid ""
27151 " swapon-file file\n"
27152 "\n"
27153 msgstr ""
27154
27155 #. type: textblock
27156 #: ../fish/guestfish-actions.pod:4544
27157 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
27158 msgstr ""
27159
27160 #. type: =head2
27161 #: ../fish/guestfish-actions.pod:4547
27162 msgid "swapon-label"
27163 msgstr ""
27164
27165 #. type: verbatim
27166 #: ../fish/guestfish-actions.pod:4549
27167 #, no-wrap
27168 msgid ""
27169 " swapon-label label\n"
27170 "\n"
27171 msgstr ""
27172
27173 #. type: textblock
27174 #: ../fish/guestfish-actions.pod:4551
27175 msgid ""
27176 "This command enables swap to a labeled swap partition.  See "
27177 "L</swapon-device> for other notes."
27178 msgstr ""
27179
27180 #. type: =head2
27181 #: ../fish/guestfish-actions.pod:4554
27182 msgid "swapon-uuid"
27183 msgstr ""
27184
27185 #. type: verbatim
27186 #: ../fish/guestfish-actions.pod:4556
27187 #, no-wrap
27188 msgid ""
27189 " swapon-uuid uuid\n"
27190 "\n"
27191 msgstr ""
27192
27193 #. type: textblock
27194 #: ../fish/guestfish-actions.pod:4558
27195 msgid ""
27196 "This command enables swap to a swap partition with the given UUID.  See "
27197 "L</swapon-device> for other notes."
27198 msgstr ""
27199
27200 #. type: =head2
27201 #: ../fish/guestfish-actions.pod:4561
27202 msgid "sync"
27203 msgstr ""
27204
27205 #. type: verbatim
27206 #: ../fish/guestfish-actions.pod:4563
27207 #, no-wrap
27208 msgid ""
27209 " sync\n"
27210 "\n"
27211 msgstr ""
27212
27213 #. type: =head2
27214 #: ../fish/guestfish-actions.pod:4571
27215 msgid "tail"
27216 msgstr ""
27217
27218 #. type: verbatim
27219 #: ../fish/guestfish-actions.pod:4573
27220 #, no-wrap
27221 msgid ""
27222 " tail path\n"
27223 "\n"
27224 msgstr ""
27225
27226 #. type: =head2
27227 #: ../fish/guestfish-actions.pod:4581
27228 msgid "tail-n"
27229 msgstr ""
27230
27231 #. type: verbatim
27232 #: ../fish/guestfish-actions.pod:4583
27233 #, no-wrap
27234 msgid ""
27235 " tail-n nrlines path\n"
27236 "\n"
27237 msgstr ""
27238
27239 #. type: =head2
27240 #: ../fish/guestfish-actions.pod:4596
27241 msgid "tar-in"
27242 msgstr ""
27243
27244 #. type: verbatim
27245 #: ../fish/guestfish-actions.pod:4598
27246 #, no-wrap
27247 msgid ""
27248 " tar-in (tarfile|-) directory\n"
27249 "\n"
27250 msgstr ""
27251
27252 #. type: textblock
27253 #: ../fish/guestfish-actions.pod:4603
27254 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27255 msgstr ""
27256
27257 #. type: =head2
27258 #: ../fish/guestfish-actions.pod:4608
27259 msgid "tar-out"
27260 msgstr ""
27261
27262 #. type: verbatim
27263 #: ../fish/guestfish-actions.pod:4610
27264 #, no-wrap
27265 msgid ""
27266 " tar-out directory (tarfile|-)\n"
27267 "\n"
27268 msgstr ""
27269
27270 #. type: textblock
27271 #: ../fish/guestfish-actions.pod:4615
27272 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27273 msgstr ""
27274
27275 #. type: =head2
27276 #: ../fish/guestfish-actions.pod:4620
27277 msgid "tgz-in"
27278 msgstr ""
27279
27280 #. type: verbatim
27281 #: ../fish/guestfish-actions.pod:4622
27282 #, no-wrap
27283 msgid ""
27284 " tgz-in (tarball|-) directory\n"
27285 "\n"
27286 msgstr ""
27287
27288 #. type: textblock
27289 #: ../fish/guestfish-actions.pod:4627
27290 msgid "To upload an uncompressed tarball, use L</tar-in>."
27291 msgstr ""
27292
27293 #. type: =head2
27294 #: ../fish/guestfish-actions.pod:4631
27295 msgid "tgz-out"
27296 msgstr ""
27297
27298 #. type: verbatim
27299 #: ../fish/guestfish-actions.pod:4633
27300 #, no-wrap
27301 msgid ""
27302 " tgz-out directory (tarball|-)\n"
27303 "\n"
27304 msgstr ""
27305
27306 #. type: textblock
27307 #: ../fish/guestfish-actions.pod:4638
27308 msgid "To download an uncompressed tarball, use L</tar-out>."
27309 msgstr ""
27310
27311 #. type: =head2
27312 #: ../fish/guestfish-actions.pod:4642
27313 msgid "touch"
27314 msgstr ""
27315
27316 #. type: verbatim
27317 #: ../fish/guestfish-actions.pod:4644
27318 #, no-wrap
27319 msgid ""
27320 " touch path\n"
27321 "\n"
27322 msgstr ""
27323
27324 #. type: =head2
27325 #: ../fish/guestfish-actions.pod:4653
27326 msgid "truncate"
27327 msgstr ""
27328
27329 #. type: verbatim
27330 #: ../fish/guestfish-actions.pod:4655
27331 #, no-wrap
27332 msgid ""
27333 " truncate path\n"
27334 "\n"
27335 msgstr ""
27336
27337 #. type: =head2
27338 #: ../fish/guestfish-actions.pod:4660
27339 msgid "truncate-size"
27340 msgstr ""
27341
27342 #. type: verbatim
27343 #: ../fish/guestfish-actions.pod:4662
27344 #, no-wrap
27345 msgid ""
27346 " truncate-size path size\n"
27347 "\n"
27348 msgstr ""
27349
27350 #. type: textblock
27351 #: ../fish/guestfish-actions.pod:4667
27352 msgid ""
27353 "If the current file size is less than C<size> then the file is extended to "
27354 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27355 "blocks are not allocated for the file until you write to it).  To create a "
27356 "non-sparse file of zeroes, use L</fallocate64> instead."
27357 msgstr ""
27358
27359 #. type: =head2
27360 #: ../fish/guestfish-actions.pod:4673
27361 msgid "tune2fs-l"
27362 msgstr ""
27363
27364 #. type: verbatim
27365 #: ../fish/guestfish-actions.pod:4675
27366 #, no-wrap
27367 msgid ""
27368 " tune2fs-l device\n"
27369 "\n"
27370 msgstr ""
27371
27372 #. type: =head2
27373 #: ../fish/guestfish-actions.pod:4685
27374 msgid "txz-in"
27375 msgstr ""
27376
27377 #. type: verbatim
27378 #: ../fish/guestfish-actions.pod:4687
27379 #, no-wrap
27380 msgid ""
27381 " txz-in (tarball|-) directory\n"
27382 "\n"
27383 msgstr ""
27384
27385 #. type: =head2
27386 #: ../fish/guestfish-actions.pod:4694
27387 msgid "txz-out"
27388 msgstr ""
27389
27390 #. type: verbatim
27391 #: ../fish/guestfish-actions.pod:4696
27392 #, no-wrap
27393 msgid ""
27394 " txz-out directory (tarball|-)\n"
27395 "\n"
27396 msgstr ""
27397
27398 #. type: =head2
27399 #: ../fish/guestfish-actions.pod:4703
27400 msgid "umask"
27401 msgstr ""
27402
27403 #. type: verbatim
27404 #: ../fish/guestfish-actions.pod:4705
27405 #, no-wrap
27406 msgid ""
27407 " umask mask\n"
27408 "\n"
27409 msgstr ""
27410
27411 #. type: textblock
27412 #: ../fish/guestfish-actions.pod:4719
27413 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27414 msgstr ""
27415
27416 #. type: =head2
27417 #: ../fish/guestfish-actions.pod:4724
27418 msgid "umount"
27419 msgstr ""
27420
27421 #. type: =head2
27422 #: ../fish/guestfish-actions.pod:4726
27423 msgid "unmount"
27424 msgstr ""
27425
27426 #. type: verbatim
27427 #: ../fish/guestfish-actions.pod:4728
27428 #, no-wrap
27429 msgid ""
27430 " umount pathordevice\n"
27431 "\n"
27432 msgstr ""
27433
27434 #. type: =head2
27435 #: ../fish/guestfish-actions.pod:4734
27436 msgid "umount-all"
27437 msgstr ""
27438
27439 #. type: =head2
27440 #: ../fish/guestfish-actions.pod:4736
27441 msgid "unmount-all"
27442 msgstr ""
27443
27444 #. type: verbatim
27445 #: ../fish/guestfish-actions.pod:4738
27446 #, no-wrap
27447 msgid ""
27448 " umount-all\n"
27449 "\n"
27450 msgstr ""
27451
27452 #. type: =head2
27453 #: ../fish/guestfish-actions.pod:4744
27454 msgid "upload"
27455 msgstr ""
27456
27457 #. type: verbatim
27458 #: ../fish/guestfish-actions.pod:4746
27459 #, no-wrap
27460 msgid ""
27461 " upload (filename|-) remotefilename\n"
27462 "\n"
27463 msgstr ""
27464
27465 #. type: textblock
27466 #: ../fish/guestfish-actions.pod:4753
27467 msgid "See also L</download>."
27468 msgstr ""
27469
27470 #. type: =head2
27471 #: ../fish/guestfish-actions.pod:4757
27472 msgid "upload-offset"
27473 msgstr ""
27474
27475 #. type: verbatim
27476 #: ../fish/guestfish-actions.pod:4759
27477 #, no-wrap
27478 msgid ""
27479 " upload-offset (filename|-) remotefilename offset\n"
27480 "\n"
27481 msgstr ""
27482
27483 #. type: textblock
27484 #: ../fish/guestfish-actions.pod:4771
27485 msgid ""
27486 "Note that there is no limit on the amount of data that can be uploaded with "
27487 "this call, unlike with L</pwrite>, and this call always writes the full "
27488 "amount unless an error occurs."
27489 msgstr ""
27490
27491 #. type: textblock
27492 #: ../fish/guestfish-actions.pod:4776
27493 msgid "See also L</upload>, L</pwrite>."
27494 msgstr ""
27495
27496 #. type: =head2
27497 #: ../fish/guestfish-actions.pod:4780
27498 msgid "utimens"
27499 msgstr ""
27500
27501 #. type: verbatim
27502 #: ../fish/guestfish-actions.pod:4782
27503 #, no-wrap
27504 msgid ""
27505 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27506 "\n"
27507 msgstr ""
27508
27509 #. type: =head2
27510 #: ../fish/guestfish-actions.pod:4801
27511 msgid "version"
27512 msgstr ""
27513
27514 #. type: verbatim
27515 #: ../fish/guestfish-actions.pod:4803
27516 #, no-wrap
27517 msgid ""
27518 " version\n"
27519 "\n"
27520 msgstr ""
27521
27522 #. type: textblock
27523 #: ../fish/guestfish-actions.pod:4830
27524 msgid ""
27525 "I<Note:> Don't use this call to test for availability of features.  In "
27526 "enterprise distributions we backport features from later versions into "
27527 "earlier versions, making this an unreliable way to test for features.  Use "
27528 "L</available> instead."
27529 msgstr ""
27530
27531 #. type: =head2
27532 #: ../fish/guestfish-actions.pod:4836
27533 msgid "vfs-label"
27534 msgstr ""
27535
27536 #. type: verbatim
27537 #: ../fish/guestfish-actions.pod:4838
27538 #, no-wrap
27539 msgid ""
27540 " vfs-label device\n"
27541 "\n"
27542 msgstr ""
27543
27544 #. type: textblock
27545 #: ../fish/guestfish-actions.pod:4845
27546 msgid "To find a filesystem from the label, use L</findfs-label>."
27547 msgstr ""
27548
27549 #. type: =head2
27550 #: ../fish/guestfish-actions.pod:4847
27551 msgid "vfs-type"
27552 msgstr ""
27553
27554 #. type: verbatim
27555 #: ../fish/guestfish-actions.pod:4849
27556 #, no-wrap
27557 msgid ""
27558 " vfs-type device\n"
27559 "\n"
27560 msgstr ""
27561
27562 #. type: =head2
27563 #: ../fish/guestfish-actions.pod:4859
27564 msgid "vfs-uuid"
27565 msgstr ""
27566
27567 #. type: verbatim
27568 #: ../fish/guestfish-actions.pod:4861
27569 #, no-wrap
27570 msgid ""
27571 " vfs-uuid device\n"
27572 "\n"
27573 msgstr ""
27574
27575 #. type: textblock
27576 #: ../fish/guestfish-actions.pod:4868
27577 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27578 msgstr ""
27579
27580 #. type: =head2
27581 #: ../fish/guestfish-actions.pod:4870
27582 msgid "vg-activate"
27583 msgstr ""
27584
27585 #. type: verbatim
27586 #: ../fish/guestfish-actions.pod:4872
27587 #, no-wrap
27588 msgid ""
27589 " vg-activate true|false 'volgroups ...'\n"
27590 "\n"
27591 msgstr ""
27592
27593 #. type: =head2
27594 #: ../fish/guestfish-actions.pod:4882
27595 msgid "vg-activate-all"
27596 msgstr ""
27597
27598 #. type: verbatim
27599 #: ../fish/guestfish-actions.pod:4884
27600 #, no-wrap
27601 msgid ""
27602 " vg-activate-all true|false\n"
27603 "\n"
27604 msgstr ""
27605
27606 #. type: =head2
27607 #: ../fish/guestfish-actions.pod:4891
27608 msgid "vgcreate"
27609 msgstr ""
27610
27611 #. type: verbatim
27612 #: ../fish/guestfish-actions.pod:4893
27613 #, no-wrap
27614 msgid ""
27615 " vgcreate volgroup 'physvols ...'\n"
27616 "\n"
27617 msgstr ""
27618
27619 #. type: =head2
27620 #: ../fish/guestfish-actions.pod:4898
27621 msgid "vglvuuids"
27622 msgstr ""
27623
27624 #. type: verbatim
27625 #: ../fish/guestfish-actions.pod:4900
27626 #, no-wrap
27627 msgid ""
27628 " vglvuuids vgname\n"
27629 "\n"
27630 msgstr ""
27631
27632 #. type: textblock
27633 #: ../fish/guestfish-actions.pod:4905
27634 msgid ""
27635 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27636 "logical volumes and volume groups."
27637 msgstr ""
27638
27639 #. type: textblock
27640 #: ../fish/guestfish-actions.pod:4908
27641 msgid "See also L</vgpvuuids>."
27642 msgstr ""
27643
27644 #. type: =head2
27645 #: ../fish/guestfish-actions.pod:4910
27646 msgid "vgpvuuids"
27647 msgstr ""
27648
27649 #. type: verbatim
27650 #: ../fish/guestfish-actions.pod:4912
27651 #, no-wrap
27652 msgid ""
27653 " vgpvuuids vgname\n"
27654 "\n"
27655 msgstr ""
27656
27657 #. type: textblock
27658 #: ../fish/guestfish-actions.pod:4917
27659 msgid ""
27660 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27661 "physical volumes and volume groups."
27662 msgstr ""
27663
27664 #. type: textblock
27665 #: ../fish/guestfish-actions.pod:4920
27666 msgid "See also L</vglvuuids>."
27667 msgstr ""
27668
27669 #. type: =head2
27670 #: ../fish/guestfish-actions.pod:4922
27671 msgid "vgremove"
27672 msgstr ""
27673
27674 #. type: verbatim
27675 #: ../fish/guestfish-actions.pod:4924
27676 #, no-wrap
27677 msgid ""
27678 " vgremove vgname\n"
27679 "\n"
27680 msgstr ""
27681
27682 #. type: =head2
27683 #: ../fish/guestfish-actions.pod:4931
27684 msgid "vgrename"
27685 msgstr ""
27686
27687 #. type: verbatim
27688 #: ../fish/guestfish-actions.pod:4933
27689 #, no-wrap
27690 msgid ""
27691 " vgrename volgroup newvolgroup\n"
27692 "\n"
27693 msgstr ""
27694
27695 #. type: =head2
27696 #: ../fish/guestfish-actions.pod:4937
27697 msgid "vgs"
27698 msgstr ""
27699
27700 #. type: verbatim
27701 #: ../fish/guestfish-actions.pod:4939
27702 #, no-wrap
27703 msgid ""
27704 " vgs\n"
27705 "\n"
27706 msgstr ""
27707
27708 #. type: textblock
27709 #: ../fish/guestfish-actions.pod:4947
27710 msgid "See also L</vgs-full>."
27711 msgstr ""
27712
27713 #. type: =head2
27714 #: ../fish/guestfish-actions.pod:4949
27715 msgid "vgs-full"
27716 msgstr ""
27717
27718 #. type: verbatim
27719 #: ../fish/guestfish-actions.pod:4951
27720 #, no-wrap
27721 msgid ""
27722 " vgs-full\n"
27723 "\n"
27724 msgstr ""
27725
27726 #. type: =head2
27727 #: ../fish/guestfish-actions.pod:4956
27728 msgid "vgscan"
27729 msgstr ""
27730
27731 #. type: verbatim
27732 #: ../fish/guestfish-actions.pod:4958
27733 #, no-wrap
27734 msgid ""
27735 " vgscan\n"
27736 "\n"
27737 msgstr ""
27738
27739 #. type: =head2
27740 #: ../fish/guestfish-actions.pod:4963
27741 msgid "vguuid"
27742 msgstr ""
27743
27744 #. type: verbatim
27745 #: ../fish/guestfish-actions.pod:4965
27746 #, no-wrap
27747 msgid ""
27748 " vguuid vgname\n"
27749 "\n"
27750 msgstr ""
27751
27752 #. type: =head2
27753 #: ../fish/guestfish-actions.pod:4969
27754 msgid "wc-c"
27755 msgstr ""
27756
27757 #. type: verbatim
27758 #: ../fish/guestfish-actions.pod:4971
27759 #, no-wrap
27760 msgid ""
27761 " wc-c path\n"
27762 "\n"
27763 msgstr ""
27764
27765 #. type: =head2
27766 #: ../fish/guestfish-actions.pod:4976
27767 msgid "wc-l"
27768 msgstr ""
27769
27770 #. type: verbatim
27771 #: ../fish/guestfish-actions.pod:4978
27772 #, no-wrap
27773 msgid ""
27774 " wc-l path\n"
27775 "\n"
27776 msgstr ""
27777
27778 #. type: =head2
27779 #: ../fish/guestfish-actions.pod:4983
27780 msgid "wc-w"
27781 msgstr ""
27782
27783 #. type: verbatim
27784 #: ../fish/guestfish-actions.pod:4985
27785 #, no-wrap
27786 msgid ""
27787 " wc-w path\n"
27788 "\n"
27789 msgstr ""
27790
27791 #. type: =head2
27792 #: ../fish/guestfish-actions.pod:4990
27793 msgid "write"
27794 msgstr ""
27795
27796 #. type: verbatim
27797 #: ../fish/guestfish-actions.pod:4992
27798 #, no-wrap
27799 msgid ""
27800 " write path content\n"
27801 "\n"
27802 msgstr ""
27803
27804 #. type: =head2
27805 #: ../fish/guestfish-actions.pod:5000
27806 msgid "write-file"
27807 msgstr ""
27808
27809 #. type: verbatim
27810 #: ../fish/guestfish-actions.pod:5002
27811 #, no-wrap
27812 msgid ""
27813 " write-file path content size\n"
27814 "\n"
27815 msgstr ""
27816
27817 #. type: =head2
27818 #: ../fish/guestfish-actions.pod:5025
27819 msgid "zegrep"
27820 msgstr ""
27821
27822 #. type: verbatim
27823 #: ../fish/guestfish-actions.pod:5027
27824 #, no-wrap
27825 msgid ""
27826 " zegrep regex path\n"
27827 "\n"
27828 msgstr ""
27829
27830 #. type: =head2
27831 #: ../fish/guestfish-actions.pod:5035
27832 msgid "zegrepi"
27833 msgstr ""
27834
27835 #. type: verbatim
27836 #: ../fish/guestfish-actions.pod:5037
27837 #, no-wrap
27838 msgid ""
27839 " zegrepi regex path\n"
27840 "\n"
27841 msgstr ""
27842
27843 #. type: =head2
27844 #: ../fish/guestfish-actions.pod:5045
27845 msgid "zero"
27846 msgstr ""
27847
27848 #. type: verbatim
27849 #: ../fish/guestfish-actions.pod:5047
27850 #, no-wrap
27851 msgid ""
27852 " zero device\n"
27853 "\n"
27854 msgstr ""
27855
27856 #. type: textblock
27857 #: ../fish/guestfish-actions.pod:5055
27858 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
27859 msgstr ""
27860
27861 #. type: =head2
27862 #: ../fish/guestfish-actions.pod:5058
27863 msgid "zero-device"
27864 msgstr ""
27865
27866 #. type: verbatim
27867 #: ../fish/guestfish-actions.pod:5060
27868 #, no-wrap
27869 msgid ""
27870 " zero-device device\n"
27871 "\n"
27872 msgstr ""
27873
27874 #. type: textblock
27875 #: ../fish/guestfish-actions.pod:5062
27876 msgid ""
27877 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27878 "which just zeroes the first few blocks of a device."
27879 msgstr ""
27880
27881 #. type: =head2
27882 #: ../fish/guestfish-actions.pod:5069
27883 msgid "zerofree"
27884 msgstr ""
27885
27886 #. type: verbatim
27887 #: ../fish/guestfish-actions.pod:5071
27888 #, no-wrap
27889 msgid ""
27890 " zerofree device\n"
27891 "\n"
27892 msgstr ""
27893
27894 #. type: =head2
27895 #: ../fish/guestfish-actions.pod:5084
27896 msgid "zfgrep"
27897 msgstr ""
27898
27899 #. type: verbatim
27900 #: ../fish/guestfish-actions.pod:5086
27901 #, no-wrap
27902 msgid ""
27903 " zfgrep pattern path\n"
27904 "\n"
27905 msgstr ""
27906
27907 #. type: =head2
27908 #: ../fish/guestfish-actions.pod:5094
27909 msgid "zfgrepi"
27910 msgstr ""
27911
27912 #. type: verbatim
27913 #: ../fish/guestfish-actions.pod:5096
27914 #, no-wrap
27915 msgid ""
27916 " zfgrepi pattern path\n"
27917 "\n"
27918 msgstr ""
27919
27920 #. type: =head2
27921 #: ../fish/guestfish-actions.pod:5104
27922 msgid "zfile"
27923 msgstr ""
27924
27925 #. type: verbatim
27926 #: ../fish/guestfish-actions.pod:5106
27927 #, no-wrap
27928 msgid ""
27929 " zfile meth path\n"
27930 "\n"
27931 msgstr ""
27932
27933 #. type: textblock
27934 #: ../fish/guestfish-actions.pod:5113
27935 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
27936 msgstr ""
27937
27938 #. type: =head2
27939 #: ../fish/guestfish-actions.pod:5123
27940 msgid "zgrep"
27941 msgstr ""
27942
27943 #. type: verbatim
27944 #: ../fish/guestfish-actions.pod:5125
27945 #, no-wrap
27946 msgid ""
27947 " zgrep regex path\n"
27948 "\n"
27949 msgstr ""
27950
27951 #. type: =head2
27952 #: ../fish/guestfish-actions.pod:5133
27953 msgid "zgrepi"
27954 msgstr ""
27955
27956 #. type: verbatim
27957 #: ../fish/guestfish-actions.pod:5135
27958 #, no-wrap
27959 msgid ""
27960 " zgrepi regex path\n"
27961 "\n"
27962 msgstr ""
27963
27964 #. type: =head2
27965 #: ../fish/guestfish-commands.pod:1
27966 msgid "alloc"
27967 msgstr ""
27968
27969 #. type: =head2
27970 #: ../fish/guestfish-commands.pod:3
27971 msgid "allocate"
27972 msgstr ""
27973
27974 #. type: verbatim
27975 #: ../fish/guestfish-commands.pod:5
27976 #, no-wrap
27977 msgid ""
27978 " alloc filename size\n"
27979 "\n"
27980 msgstr ""
27981
27982 #. type: textblock
27983 #: ../fish/guestfish-commands.pod:7
27984 msgid ""
27985 "This creates an empty (zeroed) file of the given size, and then adds so it "
27986 "can be further examined."
27987 msgstr ""
27988
27989 #. type: textblock
27990 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
27991 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27992 msgstr ""
27993
27994 #. type: textblock
27995 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
27996 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27997 msgstr ""
27998
27999 #. type: textblock
28000 #: ../fish/guestfish-commands.pod:14
28001 msgid ""
28002 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
28003 "image, see L</PREPARED DISK IMAGES>."
28004 msgstr ""
28005
28006 #. type: =head2
28007 #: ../fish/guestfish-commands.pod:17
28008 msgid "copy-in"
28009 msgstr ""
28010
28011 #. type: verbatim
28012 #: ../fish/guestfish-commands.pod:19
28013 #, no-wrap
28014 msgid ""
28015 " copy-in local [local ...] /remotedir\n"
28016 "\n"
28017 msgstr ""
28018
28019 #. type: textblock
28020 #: ../fish/guestfish-commands.pod:21
28021 msgid ""
28022 "C<copy-in> copies local files or directories recursively into the disk "
28023 "image, placing them in the directory called C</remotedir> (which must "
28024 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
28025 "other commands as necessary."
28026 msgstr ""
28027
28028 #. type: textblock
28029 #: ../fish/guestfish-commands.pod:26
28030 msgid ""
28031 "Multiple local files and directories can be specified, but the last "
28032 "parameter must always be a remote directory.  Wildcards cannot be used."
28033 msgstr ""
28034
28035 #. type: =head2
28036 #: ../fish/guestfish-commands.pod:30
28037 msgid "copy-out"
28038 msgstr ""
28039
28040 #. type: verbatim
28041 #: ../fish/guestfish-commands.pod:32
28042 #, no-wrap
28043 msgid ""
28044 " copy-out remote [remote ...] localdir\n"
28045 "\n"
28046 msgstr ""
28047
28048 #. type: textblock
28049 #: ../fish/guestfish-commands.pod:34
28050 msgid ""
28051 "C<copy-out> copies remote files or directories recursively out of the disk "
28052 "image, placing them on the host disk in a local directory called C<localdir> "
28053 "(which must exist).  This guestfish meta-command turns into a sequence of "
28054 "L</download>, L</tar-out> and other commands as necessary."
28055 msgstr ""
28056
28057 #. type: textblock
28058 #: ../fish/guestfish-commands.pod:40
28059 msgid ""
28060 "Multiple remote files and directories can be specified, but the last "
28061 "parameter must always be a local directory.  To download to the current "
28062 "directory, use C<.> as in:"
28063 msgstr ""
28064
28065 #. type: verbatim
28066 #: ../fish/guestfish-commands.pod:44
28067 #, no-wrap
28068 msgid ""
28069 " copy-out /home .\n"
28070 "\n"
28071 msgstr ""
28072
28073 #. type: textblock
28074 #: ../fish/guestfish-commands.pod:46
28075 msgid ""
28076 "Wildcards cannot be used in the ordinary command, but you can use them with "
28077 "the help of L</glob> like this:"
28078 msgstr ""
28079
28080 #. type: verbatim
28081 #: ../fish/guestfish-commands.pod:49
28082 #, no-wrap
28083 msgid ""
28084 " glob copy-out /home/* .\n"
28085 "\n"
28086 msgstr ""
28087
28088 #. type: =head2
28089 #: ../fish/guestfish-commands.pod:51
28090 msgid "display"
28091 msgstr ""
28092
28093 #. type: verbatim
28094 #: ../fish/guestfish-commands.pod:53
28095 #, no-wrap
28096 msgid ""
28097 " display filename\n"
28098 "\n"
28099 msgstr ""
28100
28101 #. type: textblock
28102 #: ../fish/guestfish-commands.pod:55
28103 msgid ""
28104 "Use C<display> (a graphical display program) to display an image file.  It "
28105 "downloads the file, and runs C<display> on it."
28106 msgstr ""
28107
28108 #. type: textblock
28109 #: ../fish/guestfish-commands.pod:58
28110 msgid ""
28111 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
28112 "environment variable.  For example to use the GNOME display program:"
28113 msgstr ""
28114
28115 #. type: verbatim
28116 #: ../fish/guestfish-commands.pod:61
28117 #, no-wrap
28118 msgid ""
28119 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
28120 "\n"
28121 msgstr ""
28122
28123 #. type: textblock
28124 #: ../fish/guestfish-commands.pod:63
28125 msgid "See also L<display(1)>."
28126 msgstr ""
28127
28128 #. type: =head2
28129 #: ../fish/guestfish-commands.pod:65
28130 msgid "echo"
28131 msgstr ""
28132
28133 #. type: verbatim
28134 #: ../fish/guestfish-commands.pod:67
28135 #, no-wrap
28136 msgid ""
28137 " echo [params ...]\n"
28138 "\n"
28139 msgstr ""
28140
28141 #. type: textblock
28142 #: ../fish/guestfish-commands.pod:69
28143 msgid "This echos the parameters to the terminal."
28144 msgstr ""
28145
28146 #. type: =head2
28147 #: ../fish/guestfish-commands.pod:71
28148 msgid "edit"
28149 msgstr ""
28150
28151 #. type: =head2
28152 #: ../fish/guestfish-commands.pod:73
28153 msgid "vi"
28154 msgstr ""
28155
28156 #. type: =head2
28157 #: ../fish/guestfish-commands.pod:75
28158 msgid "emacs"
28159 msgstr ""
28160
28161 #. type: verbatim
28162 #: ../fish/guestfish-commands.pod:77
28163 #, no-wrap
28164 msgid ""
28165 " edit filename\n"
28166 "\n"
28167 msgstr ""
28168
28169 #. type: textblock
28170 #: ../fish/guestfish-commands.pod:79
28171 msgid ""
28172 "This is used to edit a file.  It downloads the file, edits it locally using "
28173 "your editor, then uploads the result."
28174 msgstr ""
28175
28176 #. type: textblock
28177 #: ../fish/guestfish-commands.pod:82
28178 msgid ""
28179 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
28180 "or C<emacs> you will get those corresponding editors."
28181 msgstr ""
28182
28183 #. type: =head2
28184 #: ../fish/guestfish-commands.pod:86
28185 msgid "glob"
28186 msgstr ""
28187
28188 #. type: verbatim
28189 #: ../fish/guestfish-commands.pod:88
28190 #, no-wrap
28191 msgid ""
28192 " glob command args...\n"
28193 "\n"
28194 msgstr ""
28195
28196 #. type: textblock
28197 #: ../fish/guestfish-commands.pod:90
28198 msgid ""
28199 "Expand wildcards in any paths in the args list, and run C<command> "
28200 "repeatedly on each matching path."
28201 msgstr ""
28202
28203 #. type: textblock
28204 #: ../fish/guestfish-commands.pod:93
28205 msgid "See L</WILDCARDS AND GLOBBING>."
28206 msgstr ""
28207
28208 #. type: =head2
28209 #: ../fish/guestfish-commands.pod:95
28210 msgid "hexedit"
28211 msgstr ""
28212
28213 #. type: verbatim
28214 #: ../fish/guestfish-commands.pod:97
28215 #, no-wrap
28216 msgid ""
28217 " hexedit <filename|device>\n"
28218 " hexedit <filename|device> <max>\n"
28219 " hexedit <filename|device> <start> <max>\n"
28220 "\n"
28221 msgstr ""
28222
28223 #. type: textblock
28224 #: ../fish/guestfish-commands.pod:101
28225 msgid ""
28226 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28227 "device."
28228 msgstr ""
28229
28230 #. type: textblock
28231 #: ../fish/guestfish-commands.pod:104
28232 msgid ""
28233 "This command works by downloading potentially the whole file or device, "
28234 "editing it locally, then uploading it.  If the file or device is large, you "
28235 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28236 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28237 "usual modifiers allowed such as C<1M> (1 megabyte)."
28238 msgstr ""
28239
28240 #. type: textblock
28241 #: ../fish/guestfish-commands.pod:111
28242 msgid "For example to edit the first few sectors of a disk you might do:"
28243 msgstr ""
28244
28245 #. type: verbatim
28246 #: ../fish/guestfish-commands.pod:114
28247 #, no-wrap
28248 msgid ""
28249 " hexedit /dev/sda 1M\n"
28250 "\n"
28251 msgstr ""
28252
28253 #. type: textblock
28254 #: ../fish/guestfish-commands.pod:116
28255 msgid ""
28256 "which would allow you to edit anywhere within the first megabyte of the "
28257 "disk."
28258 msgstr ""
28259
28260 #. type: textblock
28261 #: ../fish/guestfish-commands.pod:119
28262 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28263 msgstr ""
28264
28265 #. type: verbatim
28266 #: ../fish/guestfish-commands.pod:121
28267 #, no-wrap
28268 msgid ""
28269 " hexedit /dev/sda1 0x400 0x400\n"
28270 "\n"
28271 msgstr ""
28272
28273 #. type: textblock
28274 #: ../fish/guestfish-commands.pod:123
28275 msgid "(assuming the superblock is in the standard location)."
28276 msgstr ""
28277
28278 #. type: textblock
28279 #: ../fish/guestfish-commands.pod:125
28280 msgid ""
28281 "This command requires the external L<hexedit(1)> program.  You can specify "
28282 "another program to use by setting the C<HEXEDITOR> environment variable."
28283 msgstr ""
28284
28285 #. type: textblock
28286 #: ../fish/guestfish-commands.pod:129
28287 msgid "See also L</hexdump>."
28288 msgstr ""
28289
28290 #. type: =head2
28291 #: ../fish/guestfish-commands.pod:131
28292 msgid "lcd"
28293 msgstr ""
28294
28295 #. type: verbatim
28296 #: ../fish/guestfish-commands.pod:133
28297 #, no-wrap
28298 msgid ""
28299 " lcd directory\n"
28300 "\n"
28301 msgstr ""
28302
28303 #. type: textblock
28304 #: ../fish/guestfish-commands.pod:135
28305 msgid "Change the local directory, ie. the current directory of guestfish itself."
28306 msgstr ""
28307
28308 #. type: textblock
28309 #: ../fish/guestfish-commands.pod:138
28310 msgid "Note that C<!cd> won't do what you might expect."
28311 msgstr ""
28312
28313 #. type: =head2
28314 #: ../fish/guestfish-commands.pod:140
28315 msgid "man"
28316 msgstr ""
28317
28318 #. type: =head2
28319 #: ../fish/guestfish-commands.pod:142
28320 msgid "manual"
28321 msgstr ""
28322
28323 #. type: verbatim
28324 #: ../fish/guestfish-commands.pod:144
28325 #, no-wrap
28326 msgid ""
28327 "  man\n"
28328 "\n"
28329 msgstr ""
28330
28331 #. type: textblock
28332 #: ../fish/guestfish-commands.pod:146
28333 msgid "Opens the manual page for guestfish."
28334 msgstr ""
28335
28336 #. type: =head2
28337 #: ../fish/guestfish-commands.pod:148
28338 msgid "more"
28339 msgstr ""
28340
28341 #. type: =head2
28342 #: ../fish/guestfish-commands.pod:150
28343 msgid "less"
28344 msgstr ""
28345
28346 #. type: verbatim
28347 #: ../fish/guestfish-commands.pod:152
28348 #, no-wrap
28349 msgid ""
28350 " more filename\n"
28351 "\n"
28352 msgstr ""
28353
28354 #. type: verbatim
28355 #: ../fish/guestfish-commands.pod:154
28356 #, no-wrap
28357 msgid ""
28358 " less filename\n"
28359 "\n"
28360 msgstr ""
28361
28362 #. type: textblock
28363 #: ../fish/guestfish-commands.pod:156
28364 msgid "This is used to view a file."
28365 msgstr ""
28366
28367 #. type: textblock
28368 #: ../fish/guestfish-commands.pod:158
28369 msgid ""
28370 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28371 "C<less> you will get the C<less> command specifically."
28372 msgstr ""
28373
28374 #. type: =head2
28375 #: ../fish/guestfish-commands.pod:161
28376 msgid "reopen"
28377 msgstr ""
28378
28379 #. type: verbatim
28380 #: ../fish/guestfish-commands.pod:163
28381 #, no-wrap
28382 msgid ""
28383 "  reopen\n"
28384 "\n"
28385 msgstr ""
28386
28387 #. type: textblock
28388 #: ../fish/guestfish-commands.pod:165
28389 msgid ""
28390 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28391 "normally, because the handle is closed properly when guestfish exits.  "
28392 "However this is occasionally useful for testing."
28393 msgstr ""
28394
28395 #. type: =head2
28396 #: ../fish/guestfish-commands.pod:169
28397 msgid "sparse"
28398 msgstr ""
28399
28400 #. type: verbatim
28401 #: ../fish/guestfish-commands.pod:171
28402 #, no-wrap
28403 msgid ""
28404 " sparse filename size\n"
28405 "\n"
28406 msgstr ""
28407
28408 #. type: textblock
28409 #: ../fish/guestfish-commands.pod:173
28410 msgid ""
28411 "This creates an empty sparse file of the given size, and then adds so it can "
28412 "be further examined."
28413 msgstr ""
28414
28415 #. type: textblock
28416 #: ../fish/guestfish-commands.pod:176
28417 msgid ""
28418 "In all respects it works the same as the L</alloc> command, except that the "
28419 "image file is allocated sparsely, which means that disk blocks are not "
28420 "assigned to the file until they are needed.  Sparse disk files only use "
28421 "space when written to, but they are slower and there is a danger you could "
28422 "run out of real disk space during a write operation."
28423 msgstr ""
28424
28425 #. type: =head2
28426 #: ../fish/guestfish-commands.pod:186
28427 msgid "supported"
28428 msgstr ""
28429
28430 #. type: verbatim
28431 #: ../fish/guestfish-commands.pod:188
28432 #, no-wrap
28433 msgid ""
28434 " supported\n"
28435 "\n"
28436 msgstr ""
28437
28438 #. type: textblock
28439 #: ../fish/guestfish-commands.pod:190
28440 msgid ""
28441 "This command returns a list of the optional groups known to the daemon, and "
28442 "indicates which ones are supported by this build of the libguestfs "
28443 "appliance."
28444 msgstr ""
28445
28446 #. type: textblock
28447 #: ../fish/guestfish-commands.pod:194
28448 msgid "See also L<guestfs(3)/AVAILABILITY>."
28449 msgstr ""
28450
28451 #. type: =head2
28452 #: ../fish/guestfish-commands.pod:196
28453 msgid "time"
28454 msgstr ""
28455
28456 #. type: verbatim
28457 #: ../fish/guestfish-commands.pod:198
28458 #, no-wrap
28459 msgid ""
28460 " time command args...\n"
28461 "\n"
28462 msgstr ""
28463
28464 #. type: textblock
28465 #: ../fish/guestfish-commands.pod:200
28466 msgid ""
28467 "Run the command as usual, but print the elapsed time afterwards.  This can "
28468 "be useful for benchmarking operations."
28469 msgstr ""
28470
28471 #. type: textblock
28472 #: ../test-tool/libguestfs-test-tool.pod:5
28473 msgid "libguestfs-test-tool - End user tests for libguestfs"
28474 msgstr ""
28475
28476 #. type: verbatim
28477 #: ../test-tool/libguestfs-test-tool.pod:9
28478 #, no-wrap
28479 msgid ""
28480 " libguestfs-test-tool [--options]\n"
28481 "\n"
28482 msgstr ""
28483
28484 #. type: textblock
28485 #: ../test-tool/libguestfs-test-tool.pod:13
28486 msgid ""
28487 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28488 "and developers, to allow them to check basic libguestfs functionality is "
28489 "working.  This is needed because libguestfs occasionally breaks for reasons "
28490 "beyond our control: usually because of changes in the underlying qemu or "
28491 "kernel packages, or the host environment."
28492 msgstr ""
28493
28494 #. type: textblock
28495 #: ../test-tool/libguestfs-test-tool.pod:20
28496 msgid "If you suspect a problem in libguestfs, then just run:"
28497 msgstr ""
28498
28499 #. type: verbatim
28500 #: ../test-tool/libguestfs-test-tool.pod:22
28501 #, no-wrap
28502 msgid ""
28503 " libguestfs-test-tool\n"
28504 "\n"
28505 msgstr ""
28506
28507 #. type: textblock
28508 #: ../test-tool/libguestfs-test-tool.pod:24
28509 msgid "It will print lots of diagnostic messages."
28510 msgstr ""
28511
28512 #. type: textblock
28513 #: ../test-tool/libguestfs-test-tool.pod:26
28514 msgid "If it runs to completion successfully, you will see this near the end:"
28515 msgstr ""
28516
28517 #. type: verbatim
28518 #: ../test-tool/libguestfs-test-tool.pod:28
28519 #, no-wrap
28520 msgid ""
28521 " ===== TEST FINISHED OK =====\n"
28522 "\n"
28523 msgstr ""
28524
28525 #. type: textblock
28526 #: ../test-tool/libguestfs-test-tool.pod:30
28527 msgid "and the test tool will exit with code 0."
28528 msgstr ""
28529
28530 #. type: textblock
28531 #: ../test-tool/libguestfs-test-tool.pod:32
28532 msgid ""
28533 "If it fails (and/or exits with non-zero error code), please paste the "
28534 "B<complete, unedited> output of the test tool into a bug report.  More "
28535 "information about reporting bugs can be found on the "
28536 "L<http://libguestfs.org/> website."
28537 msgstr ""
28538
28539 #. type: =item
28540 #: ../test-tool/libguestfs-test-tool.pod:41
28541 msgid "I<--help>"
28542 msgstr ""
28543
28544 #. type: textblock
28545 #: ../test-tool/libguestfs-test-tool.pod:43
28546 msgid "Display short usage information and exit."
28547 msgstr ""
28548
28549 #. type: =item
28550 #: ../test-tool/libguestfs-test-tool.pod:45
28551 msgid "I<--qemu qemu_binary>"
28552 msgstr ""
28553
28554 #. type: textblock
28555 #: ../test-tool/libguestfs-test-tool.pod:47
28556 msgid ""
28557 "If you have downloaded another qemu binary, point this option at the full "
28558 "path of the binary to try it."
28559 msgstr ""
28560
28561 #. type: =item
28562 #: ../test-tool/libguestfs-test-tool.pod:50
28563 msgid "I<--qemudir qemu_source_dir>"
28564 msgstr ""
28565
28566 #. type: textblock
28567 #: ../test-tool/libguestfs-test-tool.pod:52
28568 msgid ""
28569 "If you have compiled qemu from source, point this option at the source "
28570 "directory to try it."
28571 msgstr ""
28572
28573 #. type: =item
28574 #: ../test-tool/libguestfs-test-tool.pod:55
28575 msgid "I<--timeout N>"
28576 msgstr ""
28577
28578 #. type: textblock
28579 #: ../test-tool/libguestfs-test-tool.pod:57
28580 msgid ""
28581 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28582 "does not usually need to be adjusted unless your machine is very slow."
28583 msgstr ""
28584
28585 #. type: =head1
28586 #: ../test-tool/libguestfs-test-tool.pod:63
28587 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28588 msgstr ""
28589
28590 #. type: textblock
28591 #: ../test-tool/libguestfs-test-tool.pod:65
28592 msgid ""
28593 "If you have compiled another version of qemu from source and would like to "
28594 "try that, then you can use the I<--qemudir> option to point to the qemu "
28595 "source directory."
28596 msgstr ""
28597
28598 #. type: textblock
28599 #: ../test-tool/libguestfs-test-tool.pod:69
28600 msgid ""
28601 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28602 "option to point to the binary."
28603 msgstr ""
28604
28605 #. type: textblock
28606 #: ../test-tool/libguestfs-test-tool.pod:72
28607 msgid ""
28608 "When using an alternate qemu with libguestfs, usually you would need to "
28609 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
28610 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
28611 "when you use either of the I<--qemudir> or I<--qemu> options."
28612 msgstr ""
28613
28614 #. type: textblock
28615 #: ../test-tool/libguestfs-test-tool.pod:79
28616 msgid ""
28617 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28618 "I<1> if there was an error."
28619 msgstr ""
28620
28621 #. type: textblock
28622 #: ../test-tool/libguestfs-test-tool.pod:84
28623 msgid ""
28624 "For the full list of environment variables which may affect libguestfs, "
28625 "please see the L<guestfs(3)> manual page."
28626 msgstr ""
28627
28628 #. type: textblock
28629 #: ../test-tool/libguestfs-test-tool.pod:89
28630 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28631 msgstr ""
28632
28633 #. type: textblock
28634 #: ../fuse/guestmount.pod:5
28635 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28636 msgstr ""
28637
28638 #. type: verbatim
28639 #: ../fuse/guestmount.pod:9
28640 #, no-wrap
28641 msgid ""
28642 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28643 "\n"
28644 msgstr ""
28645
28646 #. type: verbatim
28647 #: ../fuse/guestmount.pod:11
28648 #, no-wrap
28649 msgid ""
28650 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28651 "\n"
28652 msgstr ""
28653
28654 #. type: verbatim
28655 #: ../fuse/guestmount.pod:13
28656 #, no-wrap
28657 msgid ""
28658 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28659 "\n"
28660 msgstr ""
28661
28662 #. type: textblock
28663 #: ../fuse/guestmount.pod:17
28664 msgid ""
28665 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28666 "machines.  If you do this, you risk disk corruption in the VM."
28667 msgstr ""
28668
28669 #. type: textblock
28670 #: ../fuse/guestmount.pod:22
28671 msgid ""
28672 "The guestmount program can be used to mount virtual machine filesystems and "
28673 "other disk images on the host.  It uses libguestfs for access to the guest "
28674 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28675 "a mountable device."
28676 msgstr ""
28677
28678 #. type: textblock
28679 #: ../fuse/guestmount.pod:27
28680 msgid ""
28681 "Along with other options, you have to give at least one device (I<-a> "
28682 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28683 "option) or use the I<-i> inspection option.  How this works is better "
28684 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28685 "below."
28686 msgstr ""
28687
28688 #. type: textblock
28689 #: ../fuse/guestmount.pod:33
28690 msgid ""
28691 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28692 "by you, and the filesystem will not be visible to any other users unless you "
28693 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28694 "the filesystem, use the C<fusermount -u> command."
28695 msgstr ""
28696
28697 #. type: textblock
28698 #: ../fuse/guestmount.pod:41
28699 msgid ""
28700 "For a typical Windows guest which has its main filesystem on the first "
28701 "partition:"
28702 msgstr ""
28703
28704 #. type: verbatim
28705 #: ../fuse/guestmount.pod:44
28706 #, no-wrap
28707 msgid ""
28708 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28709 "\n"
28710 msgstr ""
28711
28712 #. type: textblock
28713 #: ../fuse/guestmount.pod:46
28714 msgid ""
28715 "For a typical Linux guest which has a /boot filesystem on the first "
28716 "partition, and the root filesystem on a logical volume:"
28717 msgstr ""
28718
28719 #. type: verbatim
28720 #: ../fuse/guestmount.pod:49
28721 #, no-wrap
28722 msgid ""
28723 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28724 "\n"
28725 msgstr ""
28726
28727 #. type: textblock
28728 #: ../fuse/guestmount.pod:51
28729 msgid "To get libguestfs to detect guest mountpoints for you:"
28730 msgstr ""
28731
28732 #. type: verbatim
28733 #: ../fuse/guestmount.pod:53
28734 #, no-wrap
28735 msgid ""
28736 " guestmount -a guest.img -i --ro /mnt\n"
28737 "\n"
28738 msgstr ""
28739
28740 #. type: textblock
28741 #: ../fuse/guestmount.pod:55
28742 msgid "For a libvirt guest called \"Guest\" you could do:"
28743 msgstr ""
28744
28745 #. type: verbatim
28746 #: ../fuse/guestmount.pod:57
28747 #, no-wrap
28748 msgid ""
28749 " guestmount -d Guest -i --ro /mnt\n"
28750 "\n"
28751 msgstr ""
28752
28753 #. type: textblock
28754 #: ../fuse/guestmount.pod:59
28755 msgid ""
28756 "If you don't know what filesystems are contained in a guest or disk image, "
28757 "use L<virt-filesystems(1)> first:"
28758 msgstr ""
28759
28760 #. type: verbatim
28761 #: ../fuse/guestmount.pod:62
28762 #, no-wrap
28763 msgid ""
28764 " virt-filesystems MyGuest\n"
28765 "\n"
28766 msgstr ""
28767
28768 #. type: textblock
28769 #: ../fuse/guestmount.pod:64
28770 msgid ""
28771 "If you want to trace the libguestfs calls but without excessive debugging "
28772 "information, we recommend:"
28773 msgstr ""
28774
28775 #. type: verbatim
28776 #: ../fuse/guestmount.pod:67
28777 #, no-wrap
28778 msgid ""
28779 " guestmount [...] --trace /mnt\n"
28780 "\n"
28781 msgstr ""
28782
28783 #. type: textblock
28784 #: ../fuse/guestmount.pod:69
28785 msgid "If you want to debug the program, we recommend:"
28786 msgstr ""
28787
28788 #. type: verbatim
28789 #: ../fuse/guestmount.pod:71
28790 #, no-wrap
28791 msgid ""
28792 " guestmount [...] --trace --verbose /mnt\n"
28793 "\n"
28794 msgstr ""
28795
28796 #. type: =head1
28797 #: ../fuse/guestmount.pod:73
28798 msgid "NOTES"
28799 msgstr ""
28800
28801 #. type: =head2
28802 #: ../fuse/guestmount.pod:75
28803 msgid "Other users cannot see the filesystem by default"
28804 msgstr ""
28805
28806 #. type: textblock
28807 #: ../fuse/guestmount.pod:77
28808 msgid ""
28809 "If you mount a filesystem as one user (eg. root), then other users will not "
28810 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
28811 "option when mounting:"
28812 msgstr ""
28813
28814 #. type: verbatim
28815 #: ../fuse/guestmount.pod:81
28816 #, no-wrap
28817 msgid ""
28818 " sudo guestmount [...] -o allow_other /mnt\n"
28819 "\n"
28820 msgstr ""
28821
28822 #. type: =item
28823 #: ../fuse/guestmount.pod:87
28824 msgid "B<-a image> | B<--add image>"
28825 msgstr ""
28826
28827 #. type: textblock
28828 #: ../fuse/guestmount.pod:89
28829 msgid "Add a block device or virtual machine image."
28830 msgstr ""
28831
28832 #. type: =item
28833 #: ../fuse/guestmount.pod:94
28834 msgid "B<-c URI> | B<--connect URI>"
28835 msgstr ""
28836
28837 #. type: =item
28838 #: ../fuse/guestmount.pod:100
28839 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28840 msgstr ""
28841
28842 #. type: =item
28843 #: ../fuse/guestmount.pod:108
28844 msgid "B<--dir-cache-timeout N>"
28845 msgstr ""
28846
28847 #. type: textblock
28848 #: ../fuse/guestmount.pod:110
28849 msgid ""
28850 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28851 "seconds.  The readdir cache [actually, there are several semi-independent "
28852 "caches] is populated after a readdir(2) call with the stat and extended "
28853 "attributes of the files in the directory, in anticipation that they will be "
28854 "requested soon after."
28855 msgstr ""
28856
28857 #. type: textblock
28858 #: ../fuse/guestmount.pod:116
28859 msgid ""
28860 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28861 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28862 "requests, only cache existing ones."
28863 msgstr ""
28864
28865 #. type: =item
28866 #: ../fuse/guestmount.pod:127
28867 msgid "B<--format=raw|qcow2|..> | B<--format>"
28868 msgstr ""
28869
28870 #. type: textblock
28871 #: ../fuse/guestmount.pod:134
28872 msgid ""
28873 "If you have untrusted raw-format guest disk images, you should use this "
28874 "option to specify the disk format.  This avoids a possible security problem "
28875 "with malicious guests (CVE-2010-3851).  See also "
28876 "L<guestfs(3)/guestfs_add_drive_opts>."
28877 msgstr ""
28878
28879 #. type: =item
28880 #: ../fuse/guestmount.pod:139
28881 msgid "B<--fuse-help>"
28882 msgstr ""
28883
28884 #. type: textblock
28885 #: ../fuse/guestmount.pod:141
28886 msgid "Display help on special FUSE options (see I<-o> below)."
28887 msgstr ""
28888
28889 #. type: textblock
28890 #: ../fuse/guestmount.pod:145
28891 msgid "Display brief help and exit."
28892 msgstr ""
28893
28894 #. type: =item
28895 #: ../fuse/guestmount.pod:147
28896 msgid "B<-i> | B<--inspector>"
28897 msgstr ""
28898
28899 #. type: textblock
28900 #: ../fuse/guestmount.pod:167
28901 msgid ""
28902 "Mount the named partition or logical volume on the given mountpoint B<in the "
28903 "guest> (this has nothing to do with mountpoints in the host)."
28904 msgstr ""
28905
28906 #. type: textblock
28907 #: ../fuse/guestmount.pod:170
28908 msgid ""
28909 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28910 "something on C</>."
28911 msgstr ""
28912
28913 #. type: =item
28914 #: ../fuse/guestmount.pod:183
28915 msgid "B<-n> | B<--no-sync>"
28916 msgstr ""
28917
28918 #. type: textblock
28919 #: ../fuse/guestmount.pod:185
28920 msgid ""
28921 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28922 "unmounted.  If you specify this option, then we don't attempt to sync the "
28923 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28924 msgstr ""
28925
28926 #. type: =item
28927 #: ../fuse/guestmount.pod:190
28928 msgid "B<-o option> | B<--option option>"
28929 msgstr ""
28930
28931 #. type: textblock
28932 #: ../fuse/guestmount.pod:192
28933 msgid "Pass extra options to FUSE."
28934 msgstr ""
28935
28936 #. type: textblock
28937 #: ../fuse/guestmount.pod:194
28938 msgid ""
28939 "To get a list of all the extra options supported by FUSE, use the command "
28940 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28941 "of them are a good idea."
28942 msgstr ""
28943
28944 #. type: verbatim
28945 #: ../fuse/guestmount.pod:198
28946 #, no-wrap
28947 msgid ""
28948 " guestmount --fuse-help\n"
28949 "\n"
28950 msgstr ""
28951
28952 #. type: textblock
28953 #: ../fuse/guestmount.pod:200
28954 msgid "Some potentially useful FUSE options:"
28955 msgstr ""
28956
28957 #. type: =item
28958 #: ../fuse/guestmount.pod:204
28959 msgid "B<-o allow_other>"
28960 msgstr ""
28961
28962 #. type: textblock
28963 #: ../fuse/guestmount.pod:206
28964 msgid "Allow other users to see the filesystem."
28965 msgstr ""
28966
28967 #. type: =item
28968 #: ../fuse/guestmount.pod:208
28969 msgid "B<-o attr_timeout=N>"
28970 msgstr ""
28971
28972 #. type: textblock
28973 #: ../fuse/guestmount.pod:210
28974 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28975 msgstr ""
28976
28977 #. type: =item
28978 #: ../fuse/guestmount.pod:212
28979 msgid "B<-o kernel_cache>"
28980 msgstr ""
28981
28982 #. type: textblock
28983 #: ../fuse/guestmount.pod:214
28984 msgid ""
28985 "Allow the kernel to cache files (reduces the number of reads that have to go "
28986 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28987 "afford the extra memory usage."
28988 msgstr ""
28989
28990 #. type: =item
28991 #: ../fuse/guestmount.pod:218
28992 msgid "B<-o uid=N> B<-o gid=N>"
28993 msgstr ""
28994
28995 #. type: textblock
28996 #: ../fuse/guestmount.pod:220
28997 msgid ""
28998 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28999 "the chosen values."
29000 msgstr ""
29001
29002 #. type: =item
29003 #: ../fuse/guestmount.pod:225
29004 msgid "B<-r> | B<--ro>"
29005 msgstr ""
29006
29007 #. type: textblock
29008 #: ../fuse/guestmount.pod:227
29009 msgid ""
29010 "Add devices and mount everything read-only.  Also disallow writes and make "
29011 "the disk appear read-only to FUSE."
29012 msgstr ""
29013
29014 #. type: textblock
29015 #: ../fuse/guestmount.pod:230
29016 msgid ""
29017 "This is highly recommended if you are not going to edit the guest disk.  If "
29018 "the guest is running and this option is I<not> supplied, then there is a "
29019 "strong risk of disk corruption in the guest.  We try to prevent this from "
29020 "happening, but it is not always possible."
29021 msgstr ""
29022
29023 #. type: textblock
29024 #: ../fuse/guestmount.pod:235
29025 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29026 msgstr ""
29027
29028 #. type: textblock
29029 #: ../fuse/guestmount.pod:239
29030 msgid "Enable SELinux support for the guest."
29031 msgstr ""
29032
29033 #. type: =item
29034 #: ../fuse/guestmount.pod:241
29035 msgid "B<-v> | B<--verbose>"
29036 msgstr ""
29037
29038 #. type: textblock
29039 #: ../fuse/guestmount.pod:243
29040 msgid "Enable verbose messages from underlying libguestfs."
29041 msgstr ""
29042
29043 #. type: =item
29044 #: ../fuse/guestmount.pod:245
29045 msgid "B<-V> | B<--version>"
29046 msgstr ""
29047
29048 #. type: textblock
29049 #: ../fuse/guestmount.pod:247
29050 msgid "Display the program version and exit."
29051 msgstr ""
29052
29053 #. type: =item
29054 #: ../fuse/guestmount.pod:249
29055 msgid "B<-w> | B<--rw>"
29056 msgstr ""
29057
29058 #. type: textblock
29059 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
29060 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29061 msgstr ""
29062
29063 #. type: =item
29064 #: ../fuse/guestmount.pod:256
29065 msgid "B<-x> | B<--trace>"
29066 msgstr ""
29067
29068 #. type: textblock
29069 #: ../fuse/guestmount.pod:258
29070 msgid "Trace libguestfs calls and entry into each FUSE function."
29071 msgstr ""
29072
29073 #. type: textblock
29074 #: ../fuse/guestmount.pod:260
29075 msgid "This also stops the daemon from forking into the background."
29076 msgstr ""
29077
29078 #. type: textblock
29079 #: ../fuse/guestmount.pod:281
29080 msgid ""
29081 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29082 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
29083 "L<http://fuse.sf.net/>."
29084 msgstr ""
29085
29086 #. type: textblock
29087 #: ../fuse/guestmount.pod:296
29088 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
29089 msgstr ""
29090
29091 #. type: textblock
29092 #: ../tools/virt-win-reg.pl:37
29093 msgid ""
29094 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
29095 "guest"
29096 msgstr ""
29097
29098 #. type: verbatim
29099 #: ../tools/virt-win-reg.pl:41
29100 #, no-wrap
29101 msgid ""
29102 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29103 "\n"
29104 msgstr ""
29105
29106 #. type: verbatim
29107 #: ../tools/virt-win-reg.pl:43
29108 #, no-wrap
29109 msgid ""
29110 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29111 "\n"
29112 msgstr ""
29113
29114 #. type: verbatim
29115 #: ../tools/virt-win-reg.pl:45
29116 #, no-wrap
29117 msgid ""
29118 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29119 "\n"
29120 msgstr ""
29121
29122 #. type: verbatim
29123 #: ../tools/virt-win-reg.pl:47
29124 #, no-wrap
29125 msgid ""
29126 " virt-win-reg --merge domname [input.reg ...]\n"
29127 "\n"
29128 msgstr ""
29129
29130 #. type: verbatim
29131 #: ../tools/virt-win-reg.pl:49
29132 #, no-wrap
29133 msgid ""
29134 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29135 "\n"
29136 msgstr ""
29137
29138 #. type: textblock
29139 #: ../tools/virt-win-reg.pl:53
29140 msgid ""
29141 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
29142 "virtual machines.  If you do this, you I<will> get irreversible disk "
29143 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29144 "but doesn't catch all cases."
29145 msgstr ""
29146
29147 #. type: textblock
29148 #: ../tools/virt-win-reg.pl:58
29149 msgid ""
29150 "Modifying the Windows Registry is an inherently risky operation.  The format "
29151 "is deliberately obscure and undocumented, and Registry changes can leave the "
29152 "system unbootable.  Therefore when using the I<--merge> option, make sure "
29153 "you have a reliable backup first."
29154 msgstr ""
29155
29156 #. type: textblock
29157 #: ../tools/virt-win-reg.pl:65
29158 msgid ""
29159 "This program can export and merge Windows Registry entries from a Windows "
29160 "guest."
29161 msgstr ""
29162
29163 #. type: textblock
29164 #: ../tools/virt-win-reg.pl:68
29165 msgid ""
29166 "The first parameter is the libvirt guest name or the raw disk image of a "
29167 "Windows guest."
29168 msgstr ""
29169
29170 #. type: textblock
29171 #: ../tools/virt-win-reg.pl:71
29172 msgid ""
29173 "If I<--merge> is I<not> specified, then the chosen registry key is "
29174 "displayed/exported (recursively).  For example:"
29175 msgstr ""
29176
29177 #. type: verbatim
29178 #: ../tools/virt-win-reg.pl:74
29179 #, no-wrap
29180 msgid ""
29181 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29182 "\n"
29183 msgstr ""
29184
29185 #. type: textblock
29186 #: ../tools/virt-win-reg.pl:76
29187 msgid "You can also display single values from within registry keys, for example:"
29188 msgstr ""
29189
29190 #. type: verbatim
29191 #: ../tools/virt-win-reg.pl:79
29192 #, no-wrap
29193 msgid ""
29194 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29195 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29196 " Windows 7 Enterprise\n"
29197 "\n"
29198 msgstr ""
29199
29200 #. type: textblock
29201 #: ../tools/virt-win-reg.pl:83
29202 msgid ""
29203 "With I<--merge>, you can merge a textual regedit file into the Windows "
29204 "Registry:"
29205 msgstr ""
29206
29207 #. type: verbatim
29208 #: ../tools/virt-win-reg.pl:86
29209 #, no-wrap
29210 msgid ""
29211 " $ virt-win-reg --merge Windows7 changes.reg\n"
29212 "\n"
29213 msgstr ""
29214
29215 #. type: =head1
29216 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29217 msgid "NOTE"
29218 msgstr ""
29219
29220 #. type: textblock
29221 #: ../tools/virt-win-reg.pl:90
29222 msgid ""
29223 "This program is only meant for simple access to the registry.  If you want "
29224 "to do complicated things with the registry, we suggest you download the "
29225 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29226 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29227 "L<hivexregedit(1)>."
29228 msgstr ""
29229
29230 #. type: textblock
29231 #: ../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
29232 msgid "Display brief help."
29233 msgstr ""
29234
29235 #. type: textblock
29236 #: ../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
29237 msgid "Display version number and exit."
29238 msgstr ""
29239
29240 #. type: =item
29241 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29242 msgid "B<--debug>"
29243 msgstr ""
29244
29245 #. type: textblock
29246 #: ../tools/virt-win-reg.pl:122
29247 msgid "Enable debugging messages."
29248 msgstr ""
29249
29250 #. type: =item
29251 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
29252 msgid "B<--connect URI> | B<-c URI>"
29253 msgstr ""
29254
29255 #. type: textblock
29256 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
29257 msgid ""
29258 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29259 "to the default libvirt hypervisor."
29260 msgstr ""
29261
29262 #. type: textblock
29263 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
29264 msgid ""
29265 "If you specify guest block devices directly, then libvirt is not used at "
29266 "all."
29267 msgstr ""
29268
29269 #. type: =item
29270 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
29271 msgid "B<--format> raw"
29272 msgstr ""
29273
29274 #. type: textblock
29275 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
29276 msgid ""
29277 "Specify the format of disk images given on the command line.  If this is "
29278 "omitted then the format is autodetected from the content of the disk image."
29279 msgstr ""
29280
29281 #. type: textblock
29282 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
29283 msgid ""
29284 "If disk images are requested from libvirt, then this program asks libvirt "
29285 "for this information.  In this case, the value of the format parameter is "
29286 "ignored."
29287 msgstr ""
29288
29289 #. type: textblock
29290 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
29291 msgid ""
29292 "If working with untrusted raw-format guest disk images, you should ensure "
29293 "the format is always specified."
29294 msgstr ""
29295
29296 #. type: =item
29297 #: ../tools/virt-win-reg.pl:157
29298 msgid "B<--merge>"
29299 msgstr ""
29300
29301 #. type: textblock
29302 #: ../tools/virt-win-reg.pl:159
29303 msgid ""
29304 "In merge mode, this merges a textual regedit file into the Windows Registry "
29305 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29306 "displays or exports Registry entries instead."
29307 msgstr ""
29308
29309 #. type: textblock
29310 #: ../tools/virt-win-reg.pl:163
29311 msgid ""
29312 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29313 "result in disk corruption.  However exporting (without this flag)  is always "
29314 "safe."
29315 msgstr ""
29316
29317 #. type: =item
29318 #: ../tools/virt-win-reg.pl:171
29319 msgid "B<--encoding> UTF-16LE|ASCII"
29320 msgstr ""
29321
29322 #. type: textblock
29323 #: ../tools/virt-win-reg.pl:173
29324 msgid ""
29325 "When merging (only), you may need to specify the encoding for strings to be "
29326 "used in the hive file.  This is explained in detail in "
29327 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
29328 msgstr ""
29329
29330 #. type: textblock
29331 #: ../tools/virt-win-reg.pl:177
29332 msgid ""
29333 "The default is to use UTF-16LE, which should work with recent versions of "
29334 "Windows."
29335 msgstr ""
29336
29337 #. type: =item
29338 #: ../tools/virt-win-reg.pl:184
29339 msgid "B<--unsafe-printable-strings>"
29340 msgstr ""
29341
29342 #. type: textblock
29343 #: ../tools/virt-win-reg.pl:186
29344 msgid ""
29345 "When exporting (only), assume strings are UTF-16LE and print them as strings "
29346 "instead of hex sequences.  Remove the final zero codepoint from strings if "
29347 "present."
29348 msgstr ""
29349
29350 #. type: textblock
29351 #: ../tools/virt-win-reg.pl:190
29352 msgid ""
29353 "This is unsafe and does not preserve the fidelity of strings in the original "
29354 "Registry for various reasons:"
29355 msgstr ""
29356
29357 #. type: textblock
29358 #: ../tools/virt-win-reg.pl:197
29359 msgid ""
29360 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
29361 "other encodings will be corrupted by this transformation."
29362 msgstr ""
29363
29364 #. type: textblock
29365 #: ../tools/virt-win-reg.pl:202
29366 msgid ""
29367 "Assumes that everything which has type 1 or 2 is really a string and that "
29368 "everything else is not a string, but the type field in real Registries is "
29369 "not reliable."
29370 msgstr ""
29371
29372 #. type: textblock
29373 #: ../tools/virt-win-reg.pl:208
29374 msgid ""
29375 "Loses information about whether a zero codepoint followed the string in the "
29376 "Registry or not."
29377 msgstr ""
29378
29379 #. type: textblock
29380 #: ../tools/virt-win-reg.pl:213
29381 msgid ""
29382 "This all happens because the Registry itself contains no information about "
29383 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
29384 msgstr ""
29385
29386 #. type: textblock
29387 #: ../tools/virt-win-reg.pl:217
29388 msgid ""
29389 "You should only use this option for quick hacking and debugging of the "
29390 "Registry contents, and I<never> use it if the output is going to be passed "
29391 "into another program or stored in another Registry."
29392 msgstr ""
29393
29394 #. type: =head1
29395 #: ../tools/virt-win-reg.pl:554
29396 msgid "SUPPORTED SYSTEMS"
29397 msgstr ""
29398
29399 #. type: textblock
29400 #: ../tools/virt-win-reg.pl:556
29401 msgid ""
29402 "The program currently supports Windows NT-derived guests starting with "
29403 "Windows XP through to at least Windows 7."
29404 msgstr ""
29405
29406 #. type: textblock
29407 #: ../tools/virt-win-reg.pl:559
29408 msgid "The following Registry keys are supported:"
29409 msgstr ""
29410
29411 #. type: =item
29412 #: ../tools/virt-win-reg.pl:563
29413 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
29414 msgstr ""
29415
29416 #. type: =item
29417 #: ../tools/virt-win-reg.pl:565
29418 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
29419 msgstr ""
29420
29421 #. type: =item
29422 #: ../tools/virt-win-reg.pl:567
29423 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
29424 msgstr ""
29425
29426 #. type: =item
29427 #: ../tools/virt-win-reg.pl:569
29428 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
29429 msgstr ""
29430
29431 #. type: =item
29432 #: ../tools/virt-win-reg.pl:571
29433 msgid "C<HKEY_USERS\\.DEFAULT>"
29434 msgstr ""
29435
29436 #. type: =item
29437 #: ../tools/virt-win-reg.pl:573
29438 msgid "C<HKEY_USERS\\I<SID>>"
29439 msgstr ""
29440
29441 #. type: textblock
29442 #: ../tools/virt-win-reg.pl:575
29443 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
29444 msgstr ""
29445
29446 #. type: =item
29447 #: ../tools/virt-win-reg.pl:577
29448 msgid "C<HKEY_USERS\\I<username>>"
29449 msgstr ""
29450
29451 #. type: textblock
29452 #: ../tools/virt-win-reg.pl:579
29453 msgid "where I<username> is a local user name (this is a libguestfs extension)."
29454 msgstr ""
29455
29456 #. type: textblock
29457 #: ../tools/virt-win-reg.pl:583
29458 msgid ""
29459 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29460 "C<HKEY_USERS>."
29461 msgstr ""
29462
29463 #. type: textblock
29464 #: ../tools/virt-win-reg.pl:586
29465 msgid ""
29466 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
29467 "supported (there is no \"current user\")."
29468 msgstr ""
29469
29470 #. type: =head1
29471 #: ../tools/virt-win-reg.pl:589
29472 msgid "ENCODING"
29473 msgstr ""
29474
29475 #. type: textblock
29476 #: ../tools/virt-win-reg.pl:591
29477 msgid ""
29478 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29479 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
29480 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
29481 "with Windows-style line endings, you may need to reencode the whole file "
29482 "before or after processing."
29483 msgstr ""
29484
29485 #. type: textblock
29486 #: ../tools/virt-win-reg.pl:597
29487 msgid ""
29488 "To reencode a file from Windows format to Linux (before processing it with "
29489 "the I<--merge> option), you would do something like this:"
29490 msgstr ""
29491
29492 #. type: verbatim
29493 #: ../tools/virt-win-reg.pl:600
29494 #, no-wrap
29495 msgid ""
29496 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29497 "\n"
29498 msgstr ""
29499
29500 #. type: textblock
29501 #: ../tools/virt-win-reg.pl:602
29502 msgid ""
29503 "To go in the opposite direction, after exporting and before sending the file "
29504 "to a Windows user, do something like this:"
29505 msgstr ""
29506
29507 #. type: verbatim
29508 #: ../tools/virt-win-reg.pl:605
29509 #, no-wrap
29510 msgid ""
29511 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29512 "\n"
29513 msgstr ""
29514
29515 #. type: textblock
29516 #: ../tools/virt-win-reg.pl:607
29517 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29518 msgstr ""
29519
29520 #. type: textblock
29521 #: ../tools/virt-win-reg.pl:609
29522 msgid ""
29523 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29524 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
29525 "Windows-style (CRLF) line endings, like this:"
29526 msgstr ""
29527
29528 #. type: verbatim
29529 #: ../tools/virt-win-reg.pl:613
29530 #, no-wrap
29531 msgid ""
29532 " $ file software.reg\n"
29533 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29534 " with CRLF line terminators\n"
29535 "\n"
29536 msgstr ""
29537
29538 #. type: textblock
29539 #: ../tools/virt-win-reg.pl:617
29540 msgid "This file would need conversion before you could I<--merge> it."
29541 msgstr ""
29542
29543 #. type: =head1
29544 #: ../tools/virt-win-reg.pl:619
29545 msgid "CurrentControlSet etc."
29546 msgstr ""
29547
29548 #. type: textblock
29549 #: ../tools/virt-win-reg.pl:621
29550 msgid ""
29551 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29552 "Registry at the level of the hive file, and therefore you cannot modify "
29553 "these."
29554 msgstr ""
29555
29556 #. type: textblock
29557 #: ../tools/virt-win-reg.pl:625
29558 msgid ""
29559 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29560 "circumstances it might refer to another control set.  The way to find out is "
29561 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29562 msgstr ""
29563
29564 #. type: verbatim
29565 #: ../tools/virt-win-reg.pl:629
29566 #, no-wrap
29567 msgid ""
29568 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29569 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29570 " \"Current\"=dword:00000001\n"
29571 " \"Default\"=dword:00000001\n"
29572 " \"Failed\"=dword:00000000\n"
29573 " \"LastKnownGood\"=dword:00000002\n"
29574 "\n"
29575 msgstr ""
29576
29577 #. type: textblock
29578 #: ../tools/virt-win-reg.pl:636
29579 msgid "\"Current\" is the one which Windows will choose when it boots."
29580 msgstr ""
29581
29582 #. type: textblock
29583 #: ../tools/virt-win-reg.pl:638
29584 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
29585 msgstr ""
29586
29587 #. type: =head1
29588 #: ../tools/virt-win-reg.pl:641
29589 msgid "WINDOWS TIPS"
29590 msgstr ""
29591
29592 #. type: textblock
29593 #: ../tools/virt-win-reg.pl:643
29594 msgid ""
29595 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29596 "be shut off, else you will get disk corruption."
29597 msgstr ""
29598
29599 #. type: =head2
29600 #: ../tools/virt-win-reg.pl:646
29601 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29602 msgstr ""
29603
29604 #. type: textblock
29605 #: ../tools/virt-win-reg.pl:648
29606 msgid ""
29607 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29608 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29609 "is uploaded into C<C:\\>:"
29610 msgstr ""
29611
29612 #. type: verbatim
29613 #: ../tools/virt-win-reg.pl:652
29614 #, no-wrap
29615 msgid ""
29616 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29617 "\n"
29618 msgstr ""
29619
29620 #. type: textblock
29621 #: ../tools/virt-win-reg.pl:654
29622 msgid "Prepare a regedit file containing the registry change:"
29623 msgstr ""
29624
29625 #. type: verbatim
29626 #: ../tools/virt-win-reg.pl:656
29627 #, no-wrap
29628 msgid ""
29629 " cat > test.reg <<'EOF'\n"
29630 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29631 " \"Test\"=\"c:\\\\test.bat\"\n"
29632 " EOF\n"
29633 "\n"
29634 msgstr ""
29635
29636 #. type: textblock
29637 #: ../tools/virt-win-reg.pl:661
29638 msgid ""
29639 "In this example we use the key C<RunOnce> which means that the script will "
29640 "run precisely once when the first user logs in.  If you want it to run every "
29641 "time a user logs in, replace C<RunOnce> with C<Run>."
29642 msgstr ""
29643
29644 #. type: textblock
29645 #: ../tools/virt-win-reg.pl:665
29646 msgid "Now update the registry:"
29647 msgstr ""
29648
29649 #. type: verbatim
29650 #: ../tools/virt-win-reg.pl:667
29651 #, no-wrap
29652 msgid ""
29653 " virt-win-reg --merge WindowsGuest test.reg\n"
29654 "\n"
29655 msgstr ""
29656
29657 #. type: =head2
29658 #: ../tools/virt-win-reg.pl:669
29659 msgid "INSTALLING A SERVICE"
29660 msgstr ""
29661
29662 #. type: textblock
29663 #: ../tools/virt-win-reg.pl:671
29664 msgid ""
29665 "This section assumes you are familiar with Windows services, and you either "
29666 "have a program which handles the Windows Service Control Protocol directly "
29667 "or you want to run any program using a service wrapper like SrvAny or the "
29668 "free RHSrvAny."
29669 msgstr ""
29670
29671 #. type: textblock
29672 #: ../tools/virt-win-reg.pl:676
29673 msgid ""
29674 "First upload the program and optionally the service wrapper.  In this case "
29675 "the test program is called C<test.exe> and we are using the RHSrvAny "
29676 "wrapper:"
29677 msgstr ""
29678
29679 #. type: verbatim
29680 #: ../tools/virt-win-reg.pl:680
29681 #, no-wrap
29682 msgid ""
29683 " guestfish -i -d WindowsGuest <<EOF\n"
29684 "   upload rhsrvany.exe /rhsrvany.exe\n"
29685 "   upload test.exe /test.exe\n"
29686 " EOF\n"
29687 "\n"
29688 msgstr ""
29689
29690 #. type: textblock
29691 #: ../tools/virt-win-reg.pl:685
29692 msgid ""
29693 "Prepare a regedit file containing the registry changes.  In this example, "
29694 "the first registry change is needed for the service itself or the service "
29695 "wrapper (if used).  The second registry change is only needed because I am "
29696 "using the RHSrvAny service wrapper."
29697 msgstr ""
29698
29699 #. type: verbatim
29700 #: ../tools/virt-win-reg.pl:690
29701 #, no-wrap
29702 msgid ""
29703 " cat > service.reg <<'EOF'\n"
29704 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
29705 " \"Type\"=dword:00000010\n"
29706 " \"Start\"=dword:00000002\n"
29707 " \"ErrorControl\"=dword:00000001\n"
29708 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
29709 " \"DisplayName\"=\"RHSrvAny\"\n"
29710 " \"ObjectName\"=\"NetworkService\"\n"
29711 " \n"
29712 msgstr ""
29713
29714 #. type: verbatim
29715 #: ../tools/virt-win-reg.pl:699
29716 #, no-wrap
29717 msgid ""
29718 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
29719 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
29720 " \"PWD\"=\"c:\\\\Temp\"\n"
29721 " EOF\n"
29722 "\n"
29723 msgstr ""
29724
29725 #. type: textblock
29726 #: ../tools/virt-win-reg.pl:710
29727 msgid ""
29728 "For use of C<ControlSet001> see the section above in this manual page.  You "
29729 "may need to adjust this according to the control set that is in use by the "
29730 "guest."
29731 msgstr ""
29732
29733 #. type: textblock
29734 #: ../tools/virt-win-reg.pl:716
29735 msgid ""
29736 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
29737 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
29738 "privileged account."
29739 msgstr ""
29740
29741 #. type: textblock
29742 #: ../tools/virt-win-reg.pl:722
29743 msgid ""
29744 "For the meaning of the magic numbers, see this Microsoft KB article: "
29745 "L<http://support.microsoft.com/kb/103000>."
29746 msgstr ""
29747
29748 #. type: textblock
29749 #: ../tools/virt-win-reg.pl:727
29750 msgid "Update the registry:"
29751 msgstr ""
29752
29753 #. type: verbatim
29754 #: ../tools/virt-win-reg.pl:729
29755 #, no-wrap
29756 msgid ""
29757 " virt-win-reg --merge WindowsGuest service.reg\n"
29758 "\n"
29759 msgstr ""
29760
29761 #. type: =head1
29762 #: ../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
29763 msgid "SHELL QUOTING"
29764 msgstr ""
29765
29766 #. type: textblock
29767 #: ../tools/virt-win-reg.pl:733
29768 msgid ""
29769 "Be careful when passing parameters containing C<\\> (backslash) in the "
29770 "shell.  Usually you will have to use 'single quotes' or double backslashes "
29771 "(but not both) to protect them from the shell."
29772 msgstr ""
29773
29774 #. type: textblock
29775 #: ../tools/virt-win-reg.pl:737
29776 msgid "Paths and value names are case-insensitive."
29777 msgstr ""
29778
29779 #. type: textblock
29780 #: ../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
29781 msgid ""
29782 "Libvirt guest names can contain arbitrary characters, some of which have "
29783 "meaning to the shell such as C<#> and space.  You may need to quote or "
29784 "escape these characters on the command line.  See the shell manual page "
29785 "L<sh(1)> for details."
29786 msgstr ""
29787
29788 #. type: textblock
29789 #: ../tools/virt-win-reg.pl:746
29790 msgid ""
29791 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
29792 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
29793 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
29794 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29795 msgstr ""
29796
29797 #. type: textblock
29798 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
29799 msgid ""
29800 "When reporting bugs, please enable debugging and capture the I<complete> "
29801 "output:"
29802 msgstr ""
29803
29804 #. type: verbatim
29805 #: ../tools/virt-win-reg.pl:764
29806 #, no-wrap
29807 msgid ""
29808 " export LIBGUESTFS_DEBUG=1\n"
29809 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
29810 "\n"
29811 msgstr ""
29812
29813 #. type: textblock
29814 #: ../tools/virt-win-reg.pl:767
29815 msgid ""
29816 "Attach /tmp/virt-win-reg.log to a new bug report at "
29817 "L<https://bugzilla.redhat.com/>"
29818 msgstr ""
29819
29820 #. type: =head1
29821 #: ../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
29822 msgid "AUTHOR"
29823 msgstr ""
29824
29825 #. type: textblock
29826 #: ../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
29827 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29828 msgstr ""
29829
29830 #. type: textblock
29831 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
29832 msgid "Copyright (C) 2010 Red Hat Inc."
29833 msgstr ""
29834
29835 #. type: textblock
29836 #: ../tools/virt-list-filesystems.pl:32
29837 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
29838 msgstr ""
29839
29840 #. type: verbatim
29841 #: ../tools/virt-list-filesystems.pl:36
29842 #, no-wrap
29843 msgid ""
29844 " virt-list-filesystems [--options] domname\n"
29845 "\n"
29846 msgstr ""
29847
29848 #. type: verbatim
29849 #: ../tools/virt-list-filesystems.pl:38
29850 #, no-wrap
29851 msgid ""
29852 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29853 "\n"
29854 msgstr ""
29855
29856 #. type: textblock
29857 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29858 msgid ""
29859 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29860 "replacement."
29861 msgstr ""
29862
29863 #. type: textblock
29864 #: ../tools/virt-list-filesystems.pl:45
29865 msgid ""
29866 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29867 "are contained in a virtual machine or disk image."
29868 msgstr ""
29869
29870 #. type: textblock
29871 #: ../tools/virt-list-filesystems.pl:49
29872 msgid ""
29873 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29874 "functionality.  For more complex cases you should look at the "
29875 "L<guestfish(1)> tool."
29876 msgstr ""
29877
29878 #. type: =item
29879 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
29880 msgid "B<-l> | B<--long>"
29881 msgstr ""
29882
29883 #. type: textblock
29884 #: ../tools/virt-list-filesystems.pl:108
29885 msgid ""
29886 "With this option, C<virt-list-filesystems> displays the type of each "
29887 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
29888 msgstr ""
29889
29890 #. type: =item
29891 #: ../tools/virt-list-filesystems.pl:115
29892 msgid "B<-a> | B<--all>"
29893 msgstr ""
29894
29895 #. type: textblock
29896 #: ../tools/virt-list-filesystems.pl:117
29897 msgid ""
29898 "Normally we only show mountable filesystems.  If this option is given then "
29899 "swap devices are shown too."
29900 msgstr ""
29901
29902 #. type: textblock
29903 #: ../tools/virt-list-filesystems.pl:191
29904 msgid ""
29905 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
29906 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
29907 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29908 msgstr ""
29909
29910 #. type: textblock
29911 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
29912 msgid "Copyright (C) 2009 Red Hat Inc."
29913 msgstr ""
29914
29915 #. type: textblock
29916 #: ../tools/virt-tar.pl:33
29917 msgid "virt-tar - Extract or upload files to a virtual machine"
29918 msgstr ""
29919
29920 #. type: verbatim
29921 #: ../tools/virt-tar.pl:37
29922 #, no-wrap
29923 msgid ""
29924 " virt-tar [--options] -x domname directory tarball\n"
29925 "\n"
29926 msgstr ""
29927
29928 #. type: verbatim
29929 #: ../tools/virt-tar.pl:39
29930 #, no-wrap
29931 msgid ""
29932 " virt-tar [--options] -u domname tarball directory\n"
29933 "\n"
29934 msgstr ""
29935
29936 #. type: verbatim
29937 #: ../tools/virt-tar.pl:41
29938 #, no-wrap
29939 msgid ""
29940 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
29941 "\n"
29942 msgstr ""
29943
29944 #. type: verbatim
29945 #: ../tools/virt-tar.pl:43
29946 #, no-wrap
29947 msgid ""
29948 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
29949 "\n"
29950 msgstr ""
29951
29952 #. type: textblock
29953 #: ../tools/virt-tar.pl:47
29954 msgid ""
29955 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, "
29956 "L<virt-tar-in(1)>, L<virt-tar-out(1)> as replacements."
29957 msgstr ""
29958
29959 #. type: textblock
29960 #: ../tools/virt-tar.pl:52
29961 msgid "Download C</home> from the VM into a local tarball:"
29962 msgstr ""
29963
29964 #. type: verbatim
29965 #: ../tools/virt-tar.pl:54
29966 #, no-wrap
29967 msgid ""
29968 " virt-tar -x domname /home home.tar\n"
29969 "\n"
29970 msgstr ""
29971
29972 #. type: verbatim
29973 #: ../tools/virt-tar.pl:56
29974 #, no-wrap
29975 msgid ""
29976 " virt-tar -zx domname /home home.tar.gz\n"
29977 "\n"
29978 msgstr ""
29979
29980 #. type: textblock
29981 #: ../tools/virt-tar.pl:58
29982 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29983 msgstr ""
29984
29985 #. type: verbatim
29986 #: ../tools/virt-tar.pl:60
29987 #, no-wrap
29988 msgid ""
29989 " virt-tar -u domname uploadstuff.tar /tmp\n"
29990 "\n"
29991 msgstr ""
29992
29993 #. type: verbatim
29994 #: ../tools/virt-tar.pl:62
29995 #, no-wrap
29996 msgid ""
29997 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
29998 "\n"
29999 msgstr ""
30000
30001 #. type: textblock
30002 #: ../tools/virt-tar.pl:66
30003 msgid ""
30004 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
30005 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30006 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30007 msgstr ""
30008
30009 #. type: textblock
30010 #: ../tools/virt-tar.pl:71
30011 msgid ""
30012 "You can use I<-x> (extract) on live virtual machines, but you might get "
30013 "inconsistent results or errors if there is filesystem activity inside the "
30014 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30015 "work, but the only way to guarantee consistent results is if the virtual "
30016 "machine is shut down."
30017 msgstr ""
30018
30019 #. type: textblock
30020 #: ../tools/virt-tar.pl:79
30021 msgid ""
30022 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30023 "parts of a guest filesystem.  There are many possibilities: making backups, "
30024 "uploading data files, snooping on guest activity, fixing or customizing "
30025 "guests, etc."
30026 msgstr ""
30027
30028 #. type: textblock
30029 #: ../tools/virt-tar.pl:84
30030 msgid ""
30031 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30032 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30033 "should look at the L<guestfish(1)> tool."
30034 msgstr ""
30035
30036 #. type: textblock
30037 #: ../tools/virt-tar.pl:88
30038 msgid ""
30039 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
30040 "its contents (recursively) from the virtual machine into a local tarball.  "
30041 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
30042 "virtual machine.  You cannot use these two options together."
30043 msgstr ""
30044
30045 #. type: textblock
30046 #: ../tools/virt-tar.pl:94
30047 msgid ""
30048 "In addition, you may need to use the I<-z> (gZip) option to enable "
30049 "compression.  When uploading, you have to specify I<-z> if the upload file "
30050 "is compressed because virt-tar won't detect this on its own."
30051 msgstr ""
30052
30053 #. type: textblock
30054 #: ../tools/virt-tar.pl:98
30055 msgid ""
30056 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30057 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30058 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30059 "the L<libguestfs(3)> API)."
30060 msgstr ""
30061
30062 #. type: =item
30063 #: ../tools/virt-tar.pl:156
30064 msgid "B<-x> | B<--extract> | B<--download>"
30065 msgstr ""
30066
30067 #. type: =item
30068 #: ../tools/virt-tar.pl:158
30069 msgid "B<-u> | B<--upload>"
30070 msgstr ""
30071
30072 #. type: textblock
30073 #: ../tools/virt-tar.pl:160
30074 msgid ""
30075 "Use I<-x> to extract (download) a directory from a virtual machine to a "
30076 "local tarball."
30077 msgstr ""
30078
30079 #. type: textblock
30080 #: ../tools/virt-tar.pl:163
30081 msgid ""
30082 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
30083 "Please read the L</WARNING> section above before using this option."
30084 msgstr ""
30085
30086 #. type: textblock
30087 #: ../tools/virt-tar.pl:167
30088 msgid "You must specify exactly one of these options."
30089 msgstr ""
30090
30091 #. type: =item
30092 #: ../tools/virt-tar.pl:173
30093 msgid "B<-z> | B<--gzip>"
30094 msgstr ""
30095
30096 #. type: textblock
30097 #: ../tools/virt-tar.pl:175
30098 msgid "Specify that the input or output tarball is gzip-compressed."
30099 msgstr ""
30100
30101 #. type: textblock
30102 #: ../tools/virt-tar.pl:288
30103 msgid ""
30104 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
30105 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
30106 "L<virt-tar-out(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, "
30107 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30108 msgstr ""
30109
30110 #. type: textblock
30111 #: ../tools/virt-make-fs.pl:37
30112 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30113 msgstr ""
30114
30115 #. type: verbatim
30116 #: ../tools/virt-make-fs.pl:41
30117 #, no-wrap
30118 msgid ""
30119 " virt-make-fs [--options] input.tar output.img\n"
30120 "\n"
30121 msgstr ""
30122
30123 #. type: verbatim
30124 #: ../tools/virt-make-fs.pl:43
30125 #, no-wrap
30126 msgid ""
30127 " virt-make-fs [--options] input.tar.gz output.img\n"
30128 "\n"
30129 msgstr ""
30130
30131 #. type: verbatim
30132 #: ../tools/virt-make-fs.pl:45
30133 #, no-wrap
30134 msgid ""
30135 " virt-make-fs [--options] directory output.img\n"
30136 "\n"
30137 msgstr ""
30138
30139 #. type: textblock
30140 #: ../tools/virt-make-fs.pl:49
30141 msgid ""
30142 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30143 "archive or some files in a directory.  It is similar to tools like "
30144 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
30145 "it can create common filesystem types like ext2/3 or NTFS, which can be "
30146 "useful if you want to attach these filesystems to existing virtual machines "
30147 "(eg. to import large amounts of read-only data to a VM)."
30148 msgstr ""
30149
30150 #. type: textblock
30151 #: ../tools/virt-make-fs.pl:57
30152 msgid "Basic usage is:"
30153 msgstr ""
30154
30155 #. type: verbatim
30156 #: ../tools/virt-make-fs.pl:59
30157 #, no-wrap
30158 msgid ""
30159 " virt-make-fs input output\n"
30160 "\n"
30161 msgstr ""
30162
30163 #. type: textblock
30164 #: ../tools/virt-make-fs.pl:61
30165 msgid ""
30166 "where C<input> is either a directory containing files that you want to add, "
30167 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30168 "C<output> is a disk image.  The input type is detected automatically.  The "
30169 "output disk image defaults to a raw ext2 image unless you specify extra "
30170 "flags (see L</OPTIONS> below)."
30171 msgstr ""
30172
30173 #. type: =head2
30174 #: ../tools/virt-make-fs.pl:67
30175 msgid "EXTRA SPACE"
30176 msgstr ""
30177
30178 #. type: textblock
30179 #: ../tools/virt-make-fs.pl:69
30180 msgid ""
30181 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30182 "the files that it contains, but might have extra space.  Depending on how "
30183 "you are going to use the output, you might think this extra space is wasted "
30184 "and want to minimize it, or you might want to leave space so that more files "
30185 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30186 "but you can use the I<--size> flag to leave space in the filesystem if you "
30187 "want it."
30188 msgstr ""
30189
30190 #. type: textblock
30191 #: ../tools/virt-make-fs.pl:77
30192 msgid ""
30193 "An alternative way to leave extra space but not make the output image any "
30194 "bigger is to use an alternative disk image format (instead of the default "
30195 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
30196 "image format (check your hypervisor supports this before using it).  This "
30197 "allows you to choose a large I<--size> but the extra space won't actually be "
30198 "allocated in the image until you try to store something in it."
30199 msgstr ""
30200
30201 #. type: textblock
30202 #: ../tools/virt-make-fs.pl:85
30203 msgid ""
30204 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30205 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30206 "to build another image from scratch."
30207 msgstr ""
30208
30209 #. type: =head3
30210 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
30211 msgid "EXAMPLE"
30212 msgstr ""
30213
30214 #. type: verbatim
30215 #: ../tools/virt-make-fs.pl:91
30216 #, no-wrap
30217 msgid ""
30218 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30219 "\n"
30220 msgstr ""
30221
30222 #. type: =head2
30223 #: ../tools/virt-make-fs.pl:93
30224 msgid "FILESYSTEM TYPE"
30225 msgstr ""
30226
30227 #. type: textblock
30228 #: ../tools/virt-make-fs.pl:95
30229 msgid ""
30230 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30231 "libguestfs supports can be used (but I<not> read-only formats like "
30232 "ISO9660).  Here are some of the more common choices:"
30233 msgstr ""
30234
30235 #. type: =item
30236 #: ../tools/virt-make-fs.pl:101
30237 msgid "I<ext3>"
30238 msgstr ""
30239
30240 #. type: textblock
30241 #: ../tools/virt-make-fs.pl:103
30242 msgid ""
30243 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30244 "you are not going to use the filesystem in a way that requires the journal, "
30245 "then this is just wasted overhead."
30246 msgstr ""
30247
30248 #. type: =item
30249 #: ../tools/virt-make-fs.pl:107
30250 msgid "I<ntfs> or I<vfat>"
30251 msgstr ""
30252
30253 #. type: textblock
30254 #: ../tools/virt-make-fs.pl:109
30255 msgid "Useful if exporting data to a Windows guest."
30256 msgstr ""
30257
30258 #. type: textblock
30259 #: ../tools/virt-make-fs.pl:111
30260 msgid ""
30261 "I<Note for vfat>: The tar archive or local directory must only contain files "
30262 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30263 "program running within libguestfs is unable to change the ownership of "
30264 "non-root files, since vfat itself does not support this."
30265 msgstr ""
30266
30267 #. type: =item
30268 #: ../tools/virt-make-fs.pl:116
30269 msgid "I<minix>"
30270 msgstr ""
30271
30272 #. type: textblock
30273 #: ../tools/virt-make-fs.pl:118
30274 msgid ""
30275 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30276 "total filesystem size."
30277 msgstr ""
30278
30279 #. type: verbatim
30280 #: ../tools/virt-make-fs.pl:125
30281 #, no-wrap
30282 msgid ""
30283 " virt-make-fs --type=minix input minixfs.img\n"
30284 "\n"
30285 msgstr ""
30286
30287 #. type: =head2
30288 #: ../tools/virt-make-fs.pl:127
30289 msgid "TO PARTITION OR NOT TO PARTITION"
30290 msgstr ""
30291
30292 #. type: textblock
30293 #: ../tools/virt-make-fs.pl:129
30294 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30295 msgstr ""
30296
30297 #. type: textblock
30298 #: ../tools/virt-make-fs.pl:131
30299 msgid ""
30300 "Adding a partition can make the disk image more compatible with certain "
30301 "virtualized operating systems which don't expect to see a filesystem "
30302 "directly located on a block device (Linux doesn't care and will happily "
30303 "handle both types)."
30304 msgstr ""
30305
30306 #. type: textblock
30307 #: ../tools/virt-make-fs.pl:136
30308 msgid ""
30309 "On the other hand, if you have a partition table then the output image is no "
30310 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30311 "directly on a partitioned disk image.  (However libguestfs tools such as "
30312 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30313 msgstr ""
30314
30315 #. type: textblock
30316 #: ../tools/virt-make-fs.pl:144
30317 msgid "Add an MBR partition:"
30318 msgstr ""
30319
30320 #. type: verbatim
30321 #: ../tools/virt-make-fs.pl:146
30322 #, no-wrap
30323 msgid ""
30324 " virt-make-fs --partition -- input disk.img\n"
30325 "\n"
30326 msgstr ""
30327
30328 #. type: textblock
30329 #: ../tools/virt-make-fs.pl:148
30330 msgid ""
30331 "If the output disk image could be terabyte-sized or larger, it's better to "
30332 "use an EFI/GPT-compatible partition table:"
30333 msgstr ""
30334
30335 #. type: verbatim
30336 #: ../tools/virt-make-fs.pl:151
30337 #, no-wrap
30338 msgid ""
30339 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30340 "\n"
30341 msgstr ""
30342
30343 #. type: textblock
30344 #: ../tools/virt-make-fs.pl:179
30345 msgid "Enable debugging information."
30346 msgstr ""
30347
30348 #. type: =item
30349 #: ../tools/virt-make-fs.pl:185
30350 msgid "B<--size=E<lt>NE<gt>>"
30351 msgstr ""
30352
30353 #. type: =item
30354 #: ../tools/virt-make-fs.pl:187
30355 msgid "B<--size=+E<lt>NE<gt>>"
30356 msgstr ""
30357
30358 #. type: =item
30359 #: ../tools/virt-make-fs.pl:189
30360 msgid "B<-s E<lt>NE<gt>>"
30361 msgstr ""
30362
30363 #. type: =item
30364 #: ../tools/virt-make-fs.pl:191
30365 msgid "B<-s +E<lt>NE<gt>>"
30366 msgstr ""
30367
30368 #. type: textblock
30369 #: ../tools/virt-make-fs.pl:193
30370 msgid "Use the I<--size> (or I<-s>) option to choose the size of the output image."
30371 msgstr ""
30372
30373 #. type: textblock
30374 #: ../tools/virt-make-fs.pl:196
30375 msgid ""
30376 "If this option is I<not> given, then the output image will be just large "
30377 "enough to contain all the files, with not much wasted space."
30378 msgstr ""
30379
30380 #. type: textblock
30381 #: ../tools/virt-make-fs.pl:199
30382 msgid ""
30383 "To choose a fixed size output disk, specify an absolute number followed by "
30384 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30385 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30386 "files, else you will get an error."
30387 msgstr ""
30388
30389 #. type: textblock
30390 #: ../tools/virt-make-fs.pl:204
30391 msgid ""
30392 "To leave extra space, specify C<+> (plus sign) and a number followed by "
30393 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30394 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
30395 "the input files, and (approximately) an extra 200 MB free space."
30396 msgstr ""
30397
30398 #. type: textblock
30399 #: ../tools/virt-make-fs.pl:210
30400 msgid ""
30401 "Note that virt-make-fs estimates free space, and therefore will not produce "
30402 "filesystems containing precisely the free space requested.  (It is much more "
30403 "expensive and time-consuming to produce a filesystem which has precisely the "
30404 "desired free space)."
30405 msgstr ""
30406
30407 #. type: =item
30408 #: ../tools/virt-make-fs.pl:219
30409 msgid "B<--format=E<lt>fmtE<gt>>"
30410 msgstr ""
30411
30412 #. type: =item
30413 #: ../tools/virt-make-fs.pl:221
30414 msgid "B<-F E<lt>fmtE<gt>>"
30415 msgstr ""
30416
30417 #. type: textblock
30418 #: ../tools/virt-make-fs.pl:223
30419 msgid "Choose the output disk image format."
30420 msgstr ""
30421
30422 #. type: textblock
30423 #: ../tools/virt-make-fs.pl:225
30424 msgid "The default is C<raw> (raw disk image)."
30425 msgstr ""
30426
30427 #. type: textblock
30428 #: ../tools/virt-make-fs.pl:227
30429 msgid ""
30430 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30431 "that would really make sense here is C<qcow2>."
30432 msgstr ""
30433
30434 #. type: =item
30435 #: ../tools/virt-make-fs.pl:234
30436 msgid "B<--type=E<lt>fsE<gt>>"
30437 msgstr ""
30438
30439 #. type: =item
30440 #: ../tools/virt-make-fs.pl:236
30441 msgid "B<-t E<lt>fsE<gt>>"
30442 msgstr ""
30443
30444 #. type: textblock
30445 #: ../tools/virt-make-fs.pl:238
30446 msgid "Choose the output filesystem type."
30447 msgstr ""
30448
30449 #. type: textblock
30450 #: ../tools/virt-make-fs.pl:240
30451 msgid "The default is C<ext2>."
30452 msgstr ""
30453
30454 #. type: textblock
30455 #: ../tools/virt-make-fs.pl:242
30456 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
30457 msgstr ""
30458
30459 #. type: =item
30460 #: ../tools/virt-make-fs.pl:249
30461 msgid "B<--partition>"
30462 msgstr ""
30463
30464 #. type: =item
30465 #: ../tools/virt-make-fs.pl:251
30466 msgid "B<--partition=E<lt>parttypeE<gt>>"
30467 msgstr ""
30468
30469 #. type: textblock
30470 #: ../tools/virt-make-fs.pl:253
30471 msgid ""
30472 "If specified, this flag adds an MBR partition table to the output disk "
30473 "image."
30474 msgstr ""
30475
30476 #. type: textblock
30477 #: ../tools/virt-make-fs.pl:256
30478 msgid ""
30479 "You can change the partition table type, eg. I<--partition=gpt> for large "
30480 "disks."
30481 msgstr ""
30482
30483 #. type: textblock
30484 #: ../tools/virt-make-fs.pl:259
30485 msgid ""
30486 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
30487 "might consider the next parameter to be the partition type.  For example:"
30488 msgstr ""
30489
30490 #. type: verbatim
30491 #: ../tools/virt-make-fs.pl:263
30492 #, no-wrap
30493 msgid ""
30494 " virt-make-fs --partition input.tar ...\n"
30495 "\n"
30496 msgstr ""
30497
30498 #. type: textblock
30499 #: ../tools/virt-make-fs.pl:265
30500 msgid ""
30501 "would cause virt-make-fs to think you wanted to use a partition type of "
30502 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
30503 "dash) between options and the input file argument:"
30504 msgstr ""
30505
30506 #. type: verbatim
30507 #: ../tools/virt-make-fs.pl:269
30508 #, no-wrap
30509 msgid ""
30510 " virt-make-fs --partition -- input.tar ...\n"
30511 "\n"
30512 msgstr ""
30513
30514 #. type: textblock
30515 #: ../tools/virt-make-fs.pl:541
30516 msgid ""
30517 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30518 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
30519 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30520 msgstr ""
30521
30522 #. type: verbatim
30523 #: ../tools/virt-make-fs.pl:558
30524 #, no-wrap
30525 msgid ""
30526 " export LIBGUESTFS_DEBUG=1\n"
30527 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30528 "\n"
30529 msgstr ""
30530
30531 #. type: textblock
30532 #: ../tools/virt-make-fs.pl:561
30533 msgid ""
30534 "Attach /tmp/virt-make-fs.log to a new bug report at "
30535 "L<https://bugzilla.redhat.com/>"
30536 msgstr ""
30537
30538 #. type: textblock
30539 #: ../tools/virt-list-partitions.pl:32
30540 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
30541 msgstr ""
30542
30543 #. type: verbatim
30544 #: ../tools/virt-list-partitions.pl:36
30545 #, no-wrap
30546 msgid ""
30547 " virt-list-partitions [--options] domname\n"
30548 "\n"
30549 msgstr ""
30550
30551 #. type: verbatim
30552 #: ../tools/virt-list-partitions.pl:38
30553 #, no-wrap
30554 msgid ""
30555 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30556 "\n"
30557 msgstr ""
30558
30559 #. type: textblock
30560 #: ../tools/virt-list-partitions.pl:45
30561 msgid ""
30562 "C<virt-list-partitions> is a command line tool to list the partitions that "
30563 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30564 "first step to using L<virt-resize(1)>."
30565 msgstr ""
30566
30567 #. type: textblock
30568 #: ../tools/virt-list-partitions.pl:50
30569 msgid ""
30570 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30571 "functionality.  For more complex cases you should look at the "
30572 "L<guestfish(1)> tool."
30573 msgstr ""
30574
30575 #. type: =item
30576 #: ../tools/virt-list-partitions.pl:107
30577 msgid "B<-h> | B<--human-readable>"
30578 msgstr ""
30579
30580 #. type: textblock
30581 #: ../tools/virt-list-partitions.pl:109
30582 msgid "Show sizes in human-readable form (eg. \"1G\")."
30583 msgstr ""
30584
30585 #. type: textblock
30586 #: ../tools/virt-list-partitions.pl:117
30587 msgid ""
30588 "With this option, C<virt-list-partitions> displays the type and size of each "
30589 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30590 msgstr ""
30591
30592 #. type: =item
30593 #: ../tools/virt-list-partitions.pl:124
30594 msgid "B<-t> | B<--total>"
30595 msgstr ""
30596
30597 #. type: textblock
30598 #: ../tools/virt-list-partitions.pl:126
30599 msgid "Display the total size of each block device (as a separate row or rows)."
30600 msgstr ""
30601
30602 #. type: textblock
30603 #: ../tools/virt-list-partitions.pl:259
30604 msgid ""
30605 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
30606 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
30607 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30608 msgstr ""
30609
30610 #. type: textblock
30611 #: ../tools/virt-list-partitions.pl:275
30612 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30613 msgstr ""