Version 1.11.17.
[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.17\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-07-14 14:07+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:1660 ../src/guestfs-actions.pod:1664 ../src/guestfs-actions.pod:1668 ../src/guestfs-actions.pod:1672 ../src/guestfs-actions.pod:1680 ../src/guestfs-actions.pod:1684 ../src/guestfs-actions.pod:1688 ../src/guestfs-actions.pod:1698 ../src/guestfs-actions.pod:1702 ../src/guestfs-actions.pod:1706 ../src/guestfs-actions.pod:1844 ../src/guestfs-actions.pod:1848 ../src/guestfs-actions.pod:1853 ../src/guestfs-actions.pod:1858 ../src/guestfs-actions.pod:1919 ../src/guestfs-actions.pod:1923 ../src/guestfs-actions.pod:1928 ../src/guestfs-actions.pod:2846 ../src/guestfs-actions.pod:2852 ../src/guestfs-actions.pod:2860 ../src/guestfs-actions.pod:2867 ../src/guestfs-actions.pod:2874 ../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:1099 ../fish/guestfish-actions.pod:1103 ../fish/guestfish-actions.pod:1107 ../fish/guestfish-actions.pod:1111 ../fish/guestfish-actions.pod:1119 ../fish/guestfish-actions.pod:1123 ../fish/guestfish-actions.pod:1127 ../fish/guestfish-actions.pod:1137 ../fish/guestfish-actions.pod:1141 ../fish/guestfish-actions.pod:1145 ../fish/guestfish-actions.pod:1235 ../fish/guestfish-actions.pod:1239 ../fish/guestfish-actions.pod:1244 ../fish/guestfish-actions.pod:1249 ../fish/guestfish-actions.pod:1291 ../fish/guestfish-actions.pod:1295 ../fish/guestfish-actions.pod:1300 ../fish/guestfish-actions.pod:1927 ../fish/guestfish-actions.pod:1933 ../fish/guestfish-actions.pod:1941 ../fish/guestfish-actions.pod:1948 ../fish/guestfish-actions.pod:1955 ../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:1915 ../src/guestfs-actions.pod:2842 ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1287 ../fish/guestfish-actions.pod:1923 ../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:6163 ../fish/guestfish-actions.pod:4066
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:858 ../src/guestfs-actions.pod:1039 ../src/guestfs-actions.pod:1059 ../src/guestfs-actions.pod:1077 ../src/guestfs-actions.pod:1161 ../src/guestfs-actions.pod:1179 ../src/guestfs-actions.pod:1198 ../src/guestfs-actions.pod:1212 ../src/guestfs-actions.pod:1232 ../src/guestfs-actions.pod:1302 ../src/guestfs-actions.pod:1333 ../src/guestfs-actions.pod:1358 ../src/guestfs-actions.pod:1400 ../src/guestfs-actions.pod:1506 ../src/guestfs-actions.pod:1540 ../src/guestfs-actions.pod:1755 ../src/guestfs-actions.pod:1777 ../src/guestfs-actions.pod:1864 ../src/guestfs-actions.pod:2328 ../src/guestfs-actions.pod:2472 ../src/guestfs-actions.pod:2533 ../src/guestfs-actions.pod:2568 ../src/guestfs-actions.pod:3608 ../src/guestfs-actions.pod:3623 ../src/guestfs-actions.pod:3648 ../src/guestfs-actions.pod:3837 ../src/guestfs-actions.pod:3851 ../src/guestfs-actions.pod:3864 ../src/guestfs-actions.pod:3878 ../src/guestfs-actions.pod:3893 ../src/guestfs-actions.pod:3929 ../src/guestfs-actions.pod:4001 ../src/guestfs-actions.pod:4021 ../src/guestfs-actions.pod:4038 ../src/guestfs-actions.pod:4061 ../src/guestfs-actions.pod:4084 ../src/guestfs-actions.pod:4119 ../src/guestfs-actions.pod:4138 ../src/guestfs-actions.pod:4157 ../src/guestfs-actions.pod:4192 ../src/guestfs-actions.pod:4204 ../src/guestfs-actions.pod:4240 ../src/guestfs-actions.pod:4256 ../src/guestfs-actions.pod:4269 ../src/guestfs-actions.pod:4284 ../src/guestfs-actions.pod:4301 ../src/guestfs-actions.pod:4394 ../src/guestfs-actions.pod:4414 ../src/guestfs-actions.pod:4427 ../src/guestfs-actions.pod:4478 ../src/guestfs-actions.pod:4496 ../src/guestfs-actions.pod:4514 ../src/guestfs-actions.pod:4530 ../src/guestfs-actions.pod:4544 ../src/guestfs-actions.pod:4558 ../src/guestfs-actions.pod:4575 ../src/guestfs-actions.pod:4590 ../src/guestfs-actions.pod:4610 ../src/guestfs-actions.pod:4680 ../src/guestfs-actions.pod:4753 ../src/guestfs-actions.pod:4784 ../src/guestfs-actions.pod:4803 ../src/guestfs-actions.pod:4822 ../src/guestfs-actions.pod:4834 ../src/guestfs-actions.pod:4851 ../src/guestfs-actions.pod:4864 ../src/guestfs-actions.pod:4879 ../src/guestfs-actions.pod:4894 ../src/guestfs-actions.pod:4929 ../src/guestfs-actions.pod:4962 ../src/guestfs-actions.pod:5001 ../src/guestfs-actions.pod:5021 ../src/guestfs-actions.pod:5035 ../src/guestfs-actions.pod:5052 ../src/guestfs-actions.pod:5101 ../src/guestfs-actions.pod:5147 ../src/guestfs-actions.pod:5201 ../src/guestfs-actions.pod:5237 ../src/guestfs-actions.pod:5272 ../src/guestfs-actions.pod:5289 ../src/guestfs-actions.pod:5307 ../src/guestfs-actions.pod:5441 ../src/guestfs-actions.pod:5498 ../src/guestfs-actions.pod:5520 ../src/guestfs-actions.pod:5538 ../src/guestfs-actions.pod:5570 ../src/guestfs-actions.pod:5636 ../src/guestfs-actions.pod:5653 ../src/guestfs-actions.pod:5666 ../src/guestfs-actions.pod:5680 ../src/guestfs-actions.pod:5969 ../src/guestfs-actions.pod:5988 ../src/guestfs-actions.pod:6007 ../src/guestfs-actions.pod:6021 ../src/guestfs-actions.pod:6033 ../src/guestfs-actions.pod:6047 ../src/guestfs-actions.pod:6059 ../src/guestfs-actions.pod:6073 ../src/guestfs-actions.pod:6089 ../src/guestfs-actions.pod:6110 ../src/guestfs-actions.pod:6129 ../src/guestfs-actions.pod:6148 ../src/guestfs-actions.pod:6178 ../src/guestfs-actions.pod:6196 ../src/guestfs-actions.pod:6219 ../src/guestfs-actions.pod:6237 ../src/guestfs-actions.pod:6256 ../src/guestfs-actions.pod:6277 ../src/guestfs-actions.pod:6296 ../src/guestfs-actions.pod:6313 ../src/guestfs-actions.pod:6341 ../src/guestfs-actions.pod:6365 ../src/guestfs-actions.pod:6384 ../src/guestfs-actions.pod:6408 ../src/guestfs-actions.pod:6427 ../src/guestfs-actions.pod:6442 ../src/guestfs-actions.pod:6461 ../src/guestfs-actions.pod:6498 ../src/guestfs-actions.pod:6528 ../src/guestfs-actions.pod:6561 ../src/guestfs-actions.pod:6683 ../src/guestfs-actions.pod:6804 ../src/guestfs-actions.pod:6816 ../src/guestfs-actions.pod:6829 ../src/guestfs-actions.pod:6842 ../src/guestfs-actions.pod:6864 ../src/guestfs-actions.pod:6877 ../src/guestfs-actions.pod:6890 ../src/guestfs-actions.pod:6903 ../src/guestfs-actions.pod:6918 ../src/guestfs-actions.pod:6977 ../src/guestfs-actions.pod:6994 ../src/guestfs-actions.pod:7010 ../src/guestfs-actions.pod:7026 ../src/guestfs-actions.pod:7043 ../src/guestfs-actions.pod:7056 ../src/guestfs-actions.pod:7076 ../src/guestfs-actions.pod:7112 ../src/guestfs-actions.pod:7126 ../src/guestfs-actions.pod:7167 ../src/guestfs-actions.pod:7180 ../src/guestfs-actions.pod:7198 ../src/guestfs-actions.pod:7232 ../src/guestfs-actions.pod:7268 ../src/guestfs-actions.pod:7384 ../src/guestfs-actions.pod:7399 ../src/guestfs-actions.pod:7413 ../src/guestfs-actions.pod:7468 ../src/guestfs-actions.pod:7481 ../src/guestfs-actions.pod:7526 ../src/guestfs-actions.pod:7559 ../src/guestfs-actions.pod:7620 ../src/guestfs-actions.pod:7646 ../src/guestfs-actions.pod:7713 ../src/guestfs-actions.pod:7732 ../src/guestfs-actions.pod:7761
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:1511 ../src/guestfs-actions.pod:2006 ../src/guestfs-actions.pod:2027 ../src/guestfs-actions.pod:4615 ../src/guestfs-actions.pod:4934 ../src/guestfs-actions.pod:5152 ../src/guestfs-actions.pod:5242 ../src/guestfs-actions.pod:6506 ../src/guestfs-actions.pod:6536 ../src/guestfs-actions.pod:6569 ../src/guestfs-actions.pod:6628 ../src/guestfs-actions.pod:7564 ../src/guestfs-actions.pod:7654 ../src/guestfs-actions.pod:7824 ../fish/guestfish-actions.pod:31 ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180 ../fish/guestfish-actions.pod:986 ../fish/guestfish-actions.pod:1346 ../fish/guestfish-actions.pod:1360 ../fish/guestfish-actions.pod:3079 ../fish/guestfish-actions.pod:3286 ../fish/guestfish-actions.pod:3400 ../fish/guestfish-actions.pod:3448 ../fish/guestfish-actions.pod:4328 ../fish/guestfish-actions.pod:4351 ../fish/guestfish-actions.pod:4373 ../fish/guestfish-actions.pod:4411 ../fish/guestfish-actions.pod:5046 ../fish/guestfish-actions.pod:5144
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:1163 ../src/guestfs-actions.pod:1978 ../src/guestfs-actions.pod:2076 ../src/guestfs-actions.pod:2179 ../src/guestfs-actions.pod:3610 ../src/guestfs-actions.pod:3630 ../src/guestfs-actions.pod:4938 ../src/guestfs-actions.pod:6198 ../src/guestfs-actions.pod:6315 ../src/guestfs-actions.pod:6429 ../src/guestfs-actions.pod:6920 ../src/guestfs-actions.pod:7045 ../src/guestfs-actions.pod:7568
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:832 ../src/guestfs-actions.pod:2813 ../src/guestfs-actions.pod:4629 ../src/guestfs-actions.pod:4948 ../src/guestfs-actions.pod:5165
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:1378 ../src/guestfs-actions.pod:1734 ../src/guestfs-actions.pod:1937 ../src/guestfs-actions.pod:2048 ../src/guestfs-actions.pod:2088 ../src/guestfs-actions.pod:2143 ../src/guestfs-actions.pod:2166 ../src/guestfs-actions.pod:2459 ../src/guestfs-actions.pod:2931 ../src/guestfs-actions.pod:2949 ../src/guestfs-actions.pod:5124 ../src/guestfs-actions.pod:5344 ../src/guestfs-actions.pod:5750 ../src/guestfs-actions.pod:5776 ../src/guestfs-actions.pod:7153 ../src/guestfs-actions.pod:7579 ../src/guestfs-actions.pod:7592 ../src/guestfs-actions.pod:7605
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:869 ../src/guestfs-actions.pod:880 ../src/guestfs-actions.pod:2897 ../src/guestfs-actions.pod:2909 ../src/guestfs-actions.pod:4694 ../src/guestfs-actions.pod:4706 ../src/guestfs-actions.pod:4976 ../src/guestfs-actions.pod:4988 ../src/guestfs-actions.pod:5214 ../src/guestfs-actions.pod:5225
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:4642 ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3090
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:2418
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:2168
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:5827
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:920 ../src/guestfs-actions.pod:938 ../src/guestfs-actions.pod:998 ../src/guestfs-actions.pod:1014 ../src/guestfs-actions.pod:1117 ../src/guestfs-actions.pod:1247 ../src/guestfs-actions.pod:1264 ../src/guestfs-actions.pod:1283 ../src/guestfs-actions.pod:1417 ../src/guestfs-actions.pod:1605 ../src/guestfs-actions.pod:1717 ../src/guestfs-actions.pod:1880 ../src/guestfs-actions.pod:1897 ../src/guestfs-actions.pod:1964 ../src/guestfs-actions.pod:2000 ../src/guestfs-actions.pod:2021 ../src/guestfs-actions.pod:2191 ../src/guestfs-actions.pod:2383 ../src/guestfs-actions.pod:2587 ../src/guestfs-actions.pod:2677 ../src/guestfs-actions.pod:2781 ../src/guestfs-actions.pod:2800 ../src/guestfs-actions.pod:3014 ../src/guestfs-actions.pod:3042 ../src/guestfs-actions.pod:3063 ../src/guestfs-actions.pod:3097 ../src/guestfs-actions.pod:3156 ../src/guestfs-actions.pod:3176 ../src/guestfs-actions.pod:3196 ../src/guestfs-actions.pod:3823 ../src/guestfs-actions.pod:4176 ../src/guestfs-actions.pod:4346 ../src/guestfs-actions.pod:4456 ../src/guestfs-actions.pod:5362 ../src/guestfs-actions.pod:5555 ../src/guestfs-actions.pod:5725 ../src/guestfs-actions.pod:5903 ../src/guestfs-actions.pod:5952 ../src/guestfs-actions.pod:6589 ../src/guestfs-actions.pod:6605 ../src/guestfs-actions.pod:6622 ../src/guestfs-actions.pod:6653 ../src/guestfs-actions.pod:7327 ../src/guestfs-actions.pod:7346 ../src/guestfs-actions.pod:7364 ../src/guestfs-actions.pod:7538 ../src/guestfs-actions.pod:7818
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:1136 ../src/guestfs-actions.pod:1432 ../src/guestfs-actions.pod:1451 ../src/guestfs-actions.pod:1554 ../src/guestfs-actions.pod:1573 ../src/guestfs-actions.pod:1819 ../src/guestfs-actions.pod:2263 ../src/guestfs-actions.pod:2279 ../src/guestfs-actions.pod:2298 ../src/guestfs-actions.pod:2341 ../src/guestfs-actions.pod:2365 ../src/guestfs-actions.pod:2436 ../src/guestfs-actions.pod:2485 ../src/guestfs-actions.pod:2742 ../src/guestfs-actions.pod:3116 ../src/guestfs-actions.pod:3392 ../src/guestfs-actions.pod:3706 ../src/guestfs-actions.pod:3723 ../src/guestfs-actions.pod:3743 ../src/guestfs-actions.pod:3805 ../src/guestfs-actions.pod:3910 ../src/guestfs-actions.pod:4318 ../src/guestfs-actions.pod:5085 ../src/guestfs-actions.pod:5697 ../src/guestfs-actions.pod:5823 ../src/guestfs-actions.pod:5937 ../src/guestfs-actions.pod:6669 ../src/guestfs-actions.pod:6730 ../src/guestfs-actions.pod:6785 ../src/guestfs-actions.pod:6931 ../src/guestfs-actions.pod:6955 ../src/guestfs-actions.pod:7431 ../src/guestfs-actions.pod:7451 ../src/guestfs-actions.pod:7498 ../src/guestfs-actions.pod:7670 ../src/guestfs-actions.pod:7689 ../src/guestfs-actions.pod:7775 ../src/guestfs-actions.pod:7794 ../src/guestfs-actions.pod:7840 ../src/guestfs-actions.pod:7859
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:1061 ../src/guestfs-actions.pod:1079 ../src/guestfs-actions.pod:1489 ../src/guestfs-actions.pod:3470 ../src/guestfs-actions.pod:3501 ../src/guestfs-actions.pod:4159 ../src/guestfs-actions.pod:4209 ../src/guestfs-actions.pod:4396 ../src/guestfs-actions.pod:4429 ../src/guestfs-actions.pod:4592 ../src/guestfs-actions.pod:5089 ../src/guestfs-actions.pod:5638 ../src/guestfs-actions.pod:6035 ../src/guestfs-actions.pod:6049 ../src/guestfs-actions.pod:6061 ../src/guestfs-actions.pod:6510 ../src/guestfs-actions.pod:7169 ../src/guestfs-actions.pod:7182 ../src/guestfs-actions.pod:7415 ../src/guestfs-actions.pod:7658
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:1234
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:1472 ../src/guestfs-actions.pod:1487 ../src/guestfs-actions.pod:1976 ../src/guestfs-actions.pod:1987 ../src/guestfs-actions.pod:2059 ../src/guestfs-actions.pod:2114 ../src/guestfs-actions.pod:2129 ../src/guestfs-actions.pod:2154 ../src/guestfs-actions.pod:2177 ../src/guestfs-actions.pod:3213 ../src/guestfs-actions.pod:3229 ../src/guestfs-actions.pod:3247 ../src/guestfs-actions.pod:3409 ../src/guestfs-actions.pod:3423 ../src/guestfs-actions.pod:3438 ../src/guestfs-actions.pod:3452 ../src/guestfs-actions.pod:3468 ../src/guestfs-actions.pod:3483 ../src/guestfs-actions.pod:3499 ../src/guestfs-actions.pod:3513 ../src/guestfs-actions.pod:3526 ../src/guestfs-actions.pod:3540 ../src/guestfs-actions.pod:3555 ../src/guestfs-actions.pod:3570 ../src/guestfs-actions.pod:3583 ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:5326
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_btrfs_filesystem_resize"
7170 msgstr ""
7171
7172 #. type: verbatim
7173 #: ../src/guestfs-actions.pod:827
7174 #, no-wrap
7175 msgid ""
7176 " int\n"
7177 " guestfs_btrfs_filesystem_resize (guestfs_h *g,\n"
7178 "                                  const char *mountpoint,\n"
7179 "                                  ...);\n"
7180 "\n"
7181 msgstr ""
7182
7183 #. type: verbatim
7184 #: ../src/guestfs-actions.pod:837
7185 #, no-wrap
7186 msgid ""
7187 " GUESTFS_BTRFS_FILESYSTEM_RESIZE_SIZE, int64_t size,\n"
7188 "\n"
7189 msgstr ""
7190
7191 #. type: textblock
7192 #: ../src/guestfs-actions.pod:839 ../fish/guestfish-actions.pod:549
7193 msgid "This command resizes a btrfs filesystem."
7194 msgstr ""
7195
7196 #. type: textblock
7197 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:551
7198 msgid ""
7199 "Note that unlike other resize calls, the filesystem has to be mounted and "
7200 "the parameter is the mountpoint not the device (this is a requirement of "
7201 "btrfs itself)."
7202 msgstr ""
7203
7204 #. type: textblock
7205 #: ../src/guestfs-actions.pod:845 ../src/guestfs-actions.pod:5176 ../fish/guestfish-actions.pod:555 ../fish/guestfish-actions.pod:3411
7206 msgid "The optional parameters are:"
7207 msgstr ""
7208
7209 #. type: =item
7210 #: ../src/guestfs-actions.pod:849 ../src/guestfs-actions.pod:5180 ../fish/guestfish-actions.pod:559 ../fish/guestfish-actions.pod:3415
7211 msgid "C<size>"
7212 msgstr ""
7213
7214 #. type: textblock
7215 #: ../src/guestfs-actions.pod:851 ../fish/guestfish-actions.pod:561
7216 msgid ""
7217 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
7218 "resized to the maximum size."
7219 msgstr ""
7220
7221 #. type: textblock
7222 #: ../src/guestfs-actions.pod:856 ../fish/guestfish-actions.pod:566
7223 msgid "See also L<btrfs(8)>."
7224 msgstr ""
7225
7226 #. type: =head2
7227 #: ../src/guestfs-actions.pod:860
7228 msgid "guestfs_btrfs_filesystem_resize_va"
7229 msgstr ""
7230
7231 #. type: verbatim
7232 #: ../src/guestfs-actions.pod:862
7233 #, no-wrap
7234 msgid ""
7235 " int\n"
7236 " guestfs_btrfs_filesystem_resize_va (guestfs_h *g,\n"
7237 "                                     const char *mountpoint,\n"
7238 "                                     va_list args);\n"
7239 "\n"
7240 msgstr ""
7241
7242 #. type: textblock
7243 #: ../src/guestfs-actions.pod:867
7244 msgid "This is the \"va_list variant\" of L</guestfs_btrfs_filesystem_resize>."
7245 msgstr ""
7246
7247 #. type: =head2
7248 #: ../src/guestfs-actions.pod:871
7249 msgid "guestfs_btrfs_filesystem_resize_argv"
7250 msgstr ""
7251
7252 #. type: verbatim
7253 #: ../src/guestfs-actions.pod:873
7254 #, no-wrap
7255 msgid ""
7256 " int\n"
7257 " guestfs_btrfs_filesystem_resize_argv (guestfs_h *g,\n"
7258 "                                       const char *mountpoint,\n"
7259 "                                       const struct "
7260 "guestfs_btrfs_filesystem_resize_argv *optargs);\n"
7261 "\n"
7262 msgstr ""
7263
7264 #. type: textblock
7265 #: ../src/guestfs-actions.pod:878
7266 msgid "This is the \"argv variant\" of L</guestfs_btrfs_filesystem_resize>."
7267 msgstr ""
7268
7269 #. type: =head2
7270 #: ../src/guestfs-actions.pod:882
7271 msgid "guestfs_case_sensitive_path"
7272 msgstr ""
7273
7274 #. type: verbatim
7275 #: ../src/guestfs-actions.pod:884
7276 #, no-wrap
7277 msgid ""
7278 " char *\n"
7279 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7280 "                              const char *path);\n"
7281 "\n"
7282 msgstr ""
7283
7284 #. type: textblock
7285 #: ../src/guestfs-actions.pod:888 ../fish/guestfish-actions.pod:574
7286 msgid ""
7287 "This can be used to resolve case insensitive paths on a filesystem which is "
7288 "case sensitive.  The use case is to resolve paths which you have read from "
7289 "Windows configuration files or the Windows Registry, to the true path."
7290 msgstr ""
7291
7292 #. type: textblock
7293 #: ../src/guestfs-actions.pod:893 ../fish/guestfish-actions.pod:579
7294 msgid ""
7295 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7296 "(and probably others), which is that although the underlying filesystem is "
7297 "case-insensitive, the driver exports the filesystem to Linux as "
7298 "case-sensitive."
7299 msgstr ""
7300
7301 #. type: textblock
7302 #: ../src/guestfs-actions.pod:898 ../fish/guestfish-actions.pod:584
7303 msgid ""
7304 "One consequence of this is that special directories such as C<c:\\windows> "
7305 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7306 "precise details of how they were created.  In Windows itself this would not "
7307 "be a problem."
7308 msgstr ""
7309
7310 #. type: textblock
7311 #: ../src/guestfs-actions.pod:904 ../fish/guestfish-actions.pod:590
7312 msgid ""
7313 "Bug or feature? You decide: "
7314 "L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>"
7315 msgstr ""
7316
7317 #. type: textblock
7318 #: ../src/guestfs-actions.pod:907 ../fish/guestfish-actions.pod:593
7319 msgid ""
7320 "This function resolves the true case of each element in the path and returns "
7321 "the case-sensitive path."
7322 msgstr ""
7323
7324 #. type: textblock
7325 #: ../src/guestfs-actions.pod:910
7326 msgid ""
7327 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return "
7328 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7329 "how the directories were originally created under Windows)."
7330 msgstr ""
7331
7332 #. type: textblock
7333 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:601
7334 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7335 msgstr ""
7336
7337 #. type: textblock
7338 #: ../src/guestfs-actions.pod:918
7339 msgid "See also C<guestfs_realpath>."
7340 msgstr ""
7341
7342 #. type: textblock
7343 #: ../src/guestfs-actions.pod:923 ../src/guestfs-actions.pod:7349
7344 msgid "(Added in 1.0.75)"
7345 msgstr ""
7346
7347 #. type: =head2
7348 #: ../src/guestfs-actions.pod:925
7349 msgid "guestfs_cat"
7350 msgstr ""
7351
7352 #. type: verbatim
7353 #: ../src/guestfs-actions.pod:927
7354 #, no-wrap
7355 msgid ""
7356 " char *\n"
7357 " guestfs_cat (guestfs_h *g,\n"
7358 "              const char *path);\n"
7359 "\n"
7360 msgstr ""
7361
7362 #. type: textblock
7363 #: ../src/guestfs-actions.pod:931 ../src/guestfs-actions.pod:5813 ../fish/guestfish-actions.pod:610 ../fish/guestfish-actions.pod:3825
7364 msgid "Return the contents of the file named C<path>."
7365 msgstr ""
7366
7367 #. type: textblock
7368 #: ../src/guestfs-actions.pod:933
7369 msgid ""
7370 "Note that this function cannot correctly handle binary files (specifically, "
7371 "files containing C<\\0> character which is treated as end of string).  For "
7372 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7373 "functions which have a more complex interface."
7374 msgstr ""
7375
7376 #. type: textblock
7377 #: ../src/guestfs-actions.pod:941 ../src/guestfs-actions.pod:1120 ../src/guestfs-actions.pod:1140 ../src/guestfs-actions.pod:1436 ../src/guestfs-actions.pod:1455 ../src/guestfs-actions.pod:1558 ../src/guestfs-actions.pod:1577 ../src/guestfs-actions.pod:1823 ../src/guestfs-actions.pod:2283 ../src/guestfs-actions.pod:2302 ../src/guestfs-actions.pod:2345 ../src/guestfs-actions.pod:2369 ../src/guestfs-actions.pod:2386 ../src/guestfs-actions.pod:2415 ../src/guestfs-actions.pod:5595 ../src/guestfs-actions.pod:5621 ../src/guestfs-actions.pod:5752 ../src/guestfs-actions.pod:5778 ../src/guestfs-actions.pod:5802 ../src/guestfs-actions.pod:6734 ../src/guestfs-actions.pod:6789 ../src/guestfs-actions.pod:6935 ../src/guestfs-actions.pod:6959 ../src/guestfs-actions.pod:7622 ../src/guestfs-actions.pod:7648 ../src/guestfs-actions.pod:7674 ../src/guestfs-actions.pod:7693 ../src/guestfs-actions.pod:7779 ../src/guestfs-actions.pod:7798 ../src/guestfs-actions.pod:7844 ../src/guestfs-actions.pod:7863 ../fish/guestfish-actions.pod:617 ../fish/guestfish-actions.pod:752 ../fish/guestfish-actions.pod:764 ../fish/guestfish-actions.pod:940 ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:1017 ../fish/guestfish-actions.pod:1027 ../fish/guestfish-actions.pod:1219 ../fish/guestfish-actions.pod:1520 ../fish/guestfish-actions.pod:1530 ../fish/guestfish-actions.pod:1558 ../fish/guestfish-actions.pod:1573 ../fish/guestfish-actions.pod:1583 ../fish/guestfish-actions.pod:1602 ../fish/guestfish-actions.pod:3695 ../fish/guestfish-actions.pod:3710 ../fish/guestfish-actions.pod:3786 ../fish/guestfish-actions.pod:3803 ../fish/guestfish-actions.pod:3818 ../fish/guestfish-actions.pod:4472 ../fish/guestfish-actions.pod:4518 ../fish/guestfish-actions.pod:4603 ../fish/guestfish-actions.pod:4618 ../fish/guestfish-actions.pod:5022 ../fish/guestfish-actions.pod:5040 ../fish/guestfish-actions.pod:5057 ../fish/guestfish-actions.pod:5067 ../fish/guestfish-actions.pod:5116 ../fish/guestfish-actions.pod:5126 ../fish/guestfish-actions.pod:5155 ../fish/guestfish-actions.pod:5165
7378 msgid ""
7379 "Because of the message protocol, there is a transfer limit of somewhere "
7380 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7381 msgstr ""
7382
7383 #. type: textblock
7384 #: ../src/guestfs-actions.pod:944 ../src/guestfs-actions.pod:3727 ../src/guestfs-actions.pod:3809 ../src/guestfs-actions.pod:3826 ../src/guestfs-actions.pod:3914 ../src/guestfs-actions.pod:4322 ../src/guestfs-actions.pod:4336 ../src/guestfs-actions.pod:5701 ../src/guestfs-actions.pod:5715 ../src/guestfs-actions.pod:7502 ../src/guestfs-actions.pod:7516
7385 msgid "(Added in 0.4)"
7386 msgstr ""
7387
7388 #. type: =head2
7389 #: ../src/guestfs-actions.pod:946
7390 msgid "guestfs_checksum"
7391 msgstr ""
7392
7393 #. type: verbatim
7394 #: ../src/guestfs-actions.pod:948
7395 #, no-wrap
7396 msgid ""
7397 " char *\n"
7398 " guestfs_checksum (guestfs_h *g,\n"
7399 "                   const char *csumtype,\n"
7400 "                   const char *path);\n"
7401 "\n"
7402 msgstr ""
7403
7404 #. type: textblock
7405 #: ../src/guestfs-actions.pod:953 ../fish/guestfish-actions.pod:624
7406 msgid "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7407 msgstr ""
7408
7409 #. type: textblock
7410 #: ../src/guestfs-actions.pod:956 ../fish/guestfish-actions.pod:627
7411 msgid ""
7412 "The type of checksum to compute is given by the C<csumtype> parameter which "
7413 "must have one of the following values:"
7414 msgstr ""
7415
7416 #. type: =item
7417 #: ../src/guestfs-actions.pod:961 ../fish/guestfish-actions.pod:632
7418 msgid "C<crc>"
7419 msgstr ""
7420
7421 #. type: textblock
7422 #: ../src/guestfs-actions.pod:963 ../fish/guestfish-actions.pod:634
7423 msgid ""
7424 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7425 "C<cksum> command."
7426 msgstr ""
7427
7428 #. type: =item
7429 #: ../src/guestfs-actions.pod:966 ../fish/guestfish-actions.pod:637
7430 msgid "C<md5>"
7431 msgstr ""
7432
7433 #. type: textblock
7434 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:639
7435 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7436 msgstr ""
7437
7438 #. type: =item
7439 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:641
7440 msgid "C<sha1>"
7441 msgstr ""
7442
7443 #. type: textblock
7444 #: ../src/guestfs-actions.pod:972 ../fish/guestfish-actions.pod:643
7445 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7446 msgstr ""
7447
7448 #. type: =item
7449 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:645
7450 msgid "C<sha224>"
7451 msgstr ""
7452
7453 #. type: textblock
7454 #: ../src/guestfs-actions.pod:976 ../fish/guestfish-actions.pod:647
7455 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7456 msgstr ""
7457
7458 #. type: =item
7459 #: ../src/guestfs-actions.pod:978 ../fish/guestfish-actions.pod:649
7460 msgid "C<sha256>"
7461 msgstr ""
7462
7463 #. type: textblock
7464 #: ../src/guestfs-actions.pod:980 ../fish/guestfish-actions.pod:651
7465 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7466 msgstr ""
7467
7468 #. type: =item
7469 #: ../src/guestfs-actions.pod:982 ../fish/guestfish-actions.pod:653
7470 msgid "C<sha384>"
7471 msgstr ""
7472
7473 #. type: textblock
7474 #: ../src/guestfs-actions.pod:984 ../fish/guestfish-actions.pod:655
7475 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7476 msgstr ""
7477
7478 #. type: =item
7479 #: ../src/guestfs-actions.pod:986 ../fish/guestfish-actions.pod:657
7480 msgid "C<sha512>"
7481 msgstr ""
7482
7483 #. type: textblock
7484 #: ../src/guestfs-actions.pod:988 ../fish/guestfish-actions.pod:659
7485 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7486 msgstr ""
7487
7488 #. type: textblock
7489 #: ../src/guestfs-actions.pod:992 ../fish/guestfish-actions.pod:663
7490 msgid "The checksum is returned as a printable string."
7491 msgstr ""
7492
7493 #. type: textblock
7494 #: ../src/guestfs-actions.pod:994
7495 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7496 msgstr ""
7497
7498 #. type: textblock
7499 #: ../src/guestfs-actions.pod:996
7500 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7501 msgstr ""
7502
7503 #. type: textblock
7504 #: ../src/guestfs-actions.pod:1001 ../src/guestfs-actions.pod:1309 ../src/guestfs-actions.pod:2145 ../src/guestfs-actions.pod:3425 ../src/guestfs-actions.pod:3454 ../src/guestfs-actions.pod:3515 ../src/guestfs-actions.pod:3542 ../src/guestfs-actions.pod:7205
7505 msgid "(Added in 1.0.2)"
7506 msgstr ""
7507
7508 #. type: =head2
7509 #: ../src/guestfs-actions.pod:1003
7510 msgid "guestfs_checksum_device"
7511 msgstr ""
7512
7513 #. type: verbatim
7514 #: ../src/guestfs-actions.pod:1005
7515 #, no-wrap
7516 msgid ""
7517 " char *\n"
7518 " guestfs_checksum_device (guestfs_h *g,\n"
7519 "                          const char *csumtype,\n"
7520 "                          const char *device);\n"
7521 "\n"
7522 msgstr ""
7523
7524 #. type: textblock
7525 #: ../src/guestfs-actions.pod:1010
7526 msgid ""
7527 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7528 "device named C<device>.  For the types of checksums supported see the "
7529 "C<guestfs_checksum> command."
7530 msgstr ""
7531
7532 #. type: textblock
7533 #: ../src/guestfs-actions.pod:1017 ../src/guestfs-actions.pod:5156 ../src/guestfs-actions.pod:5291 ../src/guestfs-actions.pod:5328 ../src/guestfs-actions.pod:5346 ../src/guestfs-actions.pod:5522 ../src/guestfs-actions.pod:7114 ../src/guestfs-actions.pod:7128 ../src/guestfs-actions.pod:7528
7534 msgid "(Added in 1.3.2)"
7535 msgstr ""
7536
7537 #. type: =head2
7538 #: ../src/guestfs-actions.pod:1019
7539 msgid "guestfs_checksums_out"
7540 msgstr ""
7541
7542 #. type: verbatim
7543 #: ../src/guestfs-actions.pod:1021
7544 #, no-wrap
7545 msgid ""
7546 " int\n"
7547 " guestfs_checksums_out (guestfs_h *g,\n"
7548 "                        const char *csumtype,\n"
7549 "                        const char *directory,\n"
7550 "                        const char *sumsfile);\n"
7551 "\n"
7552 msgstr ""
7553
7554 #. type: textblock
7555 #: ../src/guestfs-actions.pod:1027 ../fish/guestfish-actions.pod:681
7556 msgid ""
7557 "This command computes the checksums of all regular files in C<directory> and "
7558 "then emits a list of those checksums to the local output file C<sumsfile>."
7559 msgstr ""
7560
7561 #. type: textblock
7562 #: ../src/guestfs-actions.pod:1031 ../fish/guestfish-actions.pod:685
7563 msgid ""
7564 "This can be used for verifying the integrity of a virtual machine.  However "
7565 "to be properly secure you should pay attention to the output of the checksum "
7566 "command (it uses the ones from GNU coreutils).  In particular when the "
7567 "filename is not printable, coreutils uses a special backslash syntax.  For "
7568 "more information, see the GNU coreutils info file."
7569 msgstr ""
7570
7571 #. type: textblock
7572 #: ../src/guestfs-actions.pod:1041
7573 msgid "(Added in 1.3.7)"
7574 msgstr ""
7575
7576 #. type: =head2
7577 #: ../src/guestfs-actions.pod:1043
7578 msgid "guestfs_chmod"
7579 msgstr ""
7580
7581 #. type: verbatim
7582 #: ../src/guestfs-actions.pod:1045
7583 #, no-wrap
7584 msgid ""
7585 " int\n"
7586 " guestfs_chmod (guestfs_h *g,\n"
7587 "                int mode,\n"
7588 "                const char *path);\n"
7589 "\n"
7590 msgstr ""
7591
7592 #. type: textblock
7593 #: ../src/guestfs-actions.pod:1050 ../fish/guestfish-actions.pod:699
7594 msgid ""
7595 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7596 "supported."
7597 msgstr ""
7598
7599 #. type: textblock
7600 #: ../src/guestfs-actions.pod:1053 ../fish/guestfish-actions.pod:702
7601 msgid ""
7602 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7603 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7604 "C<700>."
7605 msgstr ""
7606
7607 #. type: textblock
7608 #: ../src/guestfs-actions.pod:1057 ../src/guestfs-actions.pod:4573 ../src/guestfs-actions.pod:4782 ../src/guestfs-actions.pod:4801 ../src/guestfs-actions.pod:4820 ../fish/guestfish-actions.pod:706 ../fish/guestfish-actions.pod:3054 ../fish/guestfish-actions.pod:3193 ../fish/guestfish-actions.pod:3203 ../fish/guestfish-actions.pod:3213
7609 msgid "The mode actually set is affected by the umask."
7610 msgstr ""
7611
7612 #. type: =head2
7613 #: ../src/guestfs-actions.pod:1063
7614 msgid "guestfs_chown"
7615 msgstr ""
7616
7617 #. type: verbatim
7618 #: ../src/guestfs-actions.pod:1065
7619 #, no-wrap
7620 msgid ""
7621 " int\n"
7622 " guestfs_chown (guestfs_h *g,\n"
7623 "                int owner,\n"
7624 "                int group,\n"
7625 "                const char *path);\n"
7626 "\n"
7627 msgstr ""
7628
7629 #. type: textblock
7630 #: ../src/guestfs-actions.pod:1071 ../fish/guestfish-actions.pod:712
7631 msgid "Change the file owner to C<owner> and group to C<group>."
7632 msgstr ""
7633
7634 #. type: textblock
7635 #: ../src/guestfs-actions.pod:1073 ../src/guestfs-actions.pod:3644 ../fish/guestfish-actions.pod:714 ../fish/guestfish-actions.pod:2489
7636 msgid ""
7637 "Only numeric uid and gid are supported.  If you want to use names, you will "
7638 "need to locate and parse the password file yourself (Augeas support makes "
7639 "this relatively easy)."
7640 msgstr ""
7641
7642 #. type: =head2
7643 #: ../src/guestfs-actions.pod:1081
7644 msgid "guestfs_command"
7645 msgstr ""
7646
7647 #. type: verbatim
7648 #: ../src/guestfs-actions.pod:1083
7649 #, no-wrap
7650 msgid ""
7651 " char *\n"
7652 " guestfs_command (guestfs_h *g,\n"
7653 "                  char *const *arguments);\n"
7654 "\n"
7655 msgstr ""
7656
7657 #. type: textblock
7658 #: ../src/guestfs-actions.pod:1087 ../fish/guestfish-actions.pod:722
7659 msgid ""
7660 "This call runs a command from the guest filesystem.  The filesystem must be "
7661 "mounted, and must contain a compatible operating system (ie. something "
7662 "Linux, with the same or compatible processor architecture)."
7663 msgstr ""
7664
7665 #. type: textblock
7666 #: ../src/guestfs-actions.pod:1092
7667 msgid ""
7668 "The single parameter is an argv-style list of arguments.  The first element "
7669 "is the name of the program to run.  Subsequent elements are parameters.  The "
7670 "list must be non-empty (ie. must contain a program name).  Note that the "
7671 "command runs directly, and is I<not> invoked via the shell (see "
7672 "C<guestfs_sh>)."
7673 msgstr ""
7674
7675 #. type: textblock
7676 #: ../src/guestfs-actions.pod:1099 ../fish/guestfish-actions.pod:734
7677 msgid "The return value is anything printed to I<stdout> by the command."
7678 msgstr ""
7679
7680 #. type: textblock
7681 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:737
7682 msgid ""
7683 "If the command returns a non-zero exit status, then this function returns an "
7684 "error message.  The error message string is the content of I<stderr> from "
7685 "the command."
7686 msgstr ""
7687
7688 #. type: textblock
7689 #: ../src/guestfs-actions.pod:1106 ../fish/guestfish-actions.pod:741
7690 msgid ""
7691 "The C<$PATH> environment variable will contain at least C</usr/bin> and "
7692 "C</bin>.  If you require a program from another location, you should provide "
7693 "the full path in the first parameter."
7694 msgstr ""
7695
7696 #. type: textblock
7697 #: ../src/guestfs-actions.pod:1111 ../fish/guestfish-actions.pod:746
7698 msgid ""
7699 "Shared libraries and data files required by the program must be available on "
7700 "filesystems which are mounted in the correct places.  It is the caller's "
7701 "responsibility to ensure all filesystems that are needed are mounted at the "
7702 "right locations."
7703 msgstr ""
7704
7705 #. type: textblock
7706 #: ../src/guestfs-actions.pod:1123 ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1608
7707 msgid "(Added in 0.9.1)"
7708 msgstr ""
7709
7710 #. type: =head2
7711 #: ../src/guestfs-actions.pod:1125
7712 msgid "guestfs_command_lines"
7713 msgstr ""
7714
7715 #. type: verbatim
7716 #: ../src/guestfs-actions.pod:1127
7717 #, no-wrap
7718 msgid ""
7719 " char **\n"
7720 " guestfs_command_lines (guestfs_h *g,\n"
7721 "                        char *const *arguments);\n"
7722 "\n"
7723 msgstr ""
7724
7725 #. type: textblock
7726 #: ../src/guestfs-actions.pod:1131
7727 msgid ""
7728 "This is the same as C<guestfs_command>, but splits the result into a list of "
7729 "lines."
7730 msgstr ""
7731
7732 #. type: textblock
7733 #: ../src/guestfs-actions.pod:1134
7734 msgid "See also: C<guestfs_sh_lines>"
7735 msgstr ""
7736
7737 #. type: =head2
7738 #: ../src/guestfs-actions.pod:1145
7739 msgid "guestfs_config"
7740 msgstr ""
7741
7742 #. type: verbatim
7743 #: ../src/guestfs-actions.pod:1147
7744 #, no-wrap
7745 msgid ""
7746 " int\n"
7747 " guestfs_config (guestfs_h *g,\n"
7748 "                 const char *qemuparam,\n"
7749 "                 const char *qemuvalue);\n"
7750 "\n"
7751 msgstr ""
7752
7753 #. type: textblock
7754 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:771
7755 msgid ""
7756 "This can be used to add arbitrary qemu command line parameters of the form "
7757 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
7758 "setting some parameters which would interfere with parameters that we use."
7759 msgstr ""
7760
7761 #. type: textblock
7762 #: ../src/guestfs-actions.pod:1157 ../fish/guestfish-actions.pod:776
7763 msgid "The first character of C<param> string must be a C<-> (dash)."
7764 msgstr ""
7765
7766 #. type: textblock
7767 #: ../src/guestfs-actions.pod:1159 ../fish/guestfish-actions.pod:778
7768 msgid "C<value> can be NULL."
7769 msgstr ""
7770
7771 #. type: =head2
7772 #: ../src/guestfs-actions.pod:1165
7773 msgid "guestfs_copy_size"
7774 msgstr ""
7775
7776 #. type: verbatim
7777 #: ../src/guestfs-actions.pod:1167
7778 #, no-wrap
7779 msgid ""
7780 " int\n"
7781 " guestfs_copy_size (guestfs_h *g,\n"
7782 "                    const char *src,\n"
7783 "                    const char *dest,\n"
7784 "                    int64_t size);\n"
7785 "\n"
7786 msgstr ""
7787
7788 #. type: textblock
7789 #: ../src/guestfs-actions.pod:1173 ../fish/guestfish-actions.pod:784
7790 msgid ""
7791 "This command copies exactly C<size> bytes from one source device or file "
7792 "C<src> to another destination device or file C<dest>."
7793 msgstr ""
7794
7795 #. type: textblock
7796 #: ../src/guestfs-actions.pod:1176 ../fish/guestfish-actions.pod:787
7797 msgid ""
7798 "Note this will fail if the source is too short or if the destination is not "
7799 "large enough."
7800 msgstr ""
7801
7802 #. type: textblock
7803 #: ../src/guestfs-actions.pod:1181 ../src/guestfs-actions.pod:1304 ../src/guestfs-actions.pod:1335 ../src/guestfs-actions.pod:1380 ../src/guestfs-actions.pod:1757 ../src/guestfs-actions.pod:1779 ../src/guestfs-actions.pod:3625 ../src/guestfs-actions.pod:7200 ../src/guestfs-actions.pod:7234 ../src/guestfs-actions.pod:7715 ../src/guestfs-actions.pod:7734
7804 msgid ""
7805 "This long-running command can generate progress notification messages so "
7806 "that the caller can display a progress bar or indicator.  To receive these "
7807 "messages, the caller must register a progress event callback.  See "
7808 "L<guestfs(3)/GUESTFS_EVENT_PROGRESS>."
7809 msgstr ""
7810
7811 #. type: textblock
7812 #: ../src/guestfs-actions.pod:1186 ../src/guestfs-actions.pod:4349 ../src/guestfs-actions.pod:5728 ../src/guestfs-actions.pod:7435 ../src/guestfs-actions.pod:7455 ../src/guestfs-actions.pod:7541
7813 msgid "(Added in 1.0.87)"
7814 msgstr ""
7815
7816 #. type: =head2
7817 #: ../src/guestfs-actions.pod:1188
7818 msgid "guestfs_cp"
7819 msgstr ""
7820
7821 #. type: verbatim
7822 #: ../src/guestfs-actions.pod:1190
7823 #, no-wrap
7824 msgid ""
7825 " int\n"
7826 " guestfs_cp (guestfs_h *g,\n"
7827 "             const char *src,\n"
7828 "             const char *dest);\n"
7829 "\n"
7830 msgstr ""
7831
7832 #. type: textblock
7833 #: ../src/guestfs-actions.pod:1195 ../fish/guestfish-actions.pod:794
7834 msgid ""
7835 "This copies a file from C<src> to C<dest> where C<dest> is either a "
7836 "destination filename or destination directory."
7837 msgstr ""
7838
7839 #. type: textblock
7840 #: ../src/guestfs-actions.pod:1200 ../src/guestfs-actions.pod:1214 ../src/guestfs-actions.pod:1286 ../src/guestfs-actions.pod:1360 ../src/guestfs-actions.pod:1474 ../src/guestfs-actions.pod:5103 ../src/guestfs-actions.pod:5572
7841 msgid "(Added in 1.0.18)"
7842 msgstr ""
7843
7844 #. type: =head2
7845 #: ../src/guestfs-actions.pod:1202
7846 msgid "guestfs_cp_a"
7847 msgstr ""
7848
7849 #. type: verbatim
7850 #: ../src/guestfs-actions.pod:1204
7851 #, no-wrap
7852 msgid ""
7853 " int\n"
7854 " guestfs_cp_a (guestfs_h *g,\n"
7855 "               const char *src,\n"
7856 "               const char *dest);\n"
7857 "\n"
7858 msgstr ""
7859
7860 #. type: textblock
7861 #: ../src/guestfs-actions.pod:1209 ../fish/guestfish-actions.pod:801
7862 msgid ""
7863 "This copies a file or directory from C<src> to C<dest> recursively using the "
7864 "C<cp -a> command."
7865 msgstr ""
7866
7867 #. type: =head2
7868 #: ../src/guestfs-actions.pod:1216
7869 msgid "guestfs_dd"
7870 msgstr ""
7871
7872 #. type: verbatim
7873 #: ../src/guestfs-actions.pod:1218
7874 #, no-wrap
7875 msgid ""
7876 " int\n"
7877 " guestfs_dd (guestfs_h *g,\n"
7878 "             const char *src,\n"
7879 "             const char *dest);\n"
7880 "\n"
7881 msgstr ""
7882
7883 #. type: textblock
7884 #: ../src/guestfs-actions.pod:1223 ../fish/guestfish-actions.pod:808
7885 msgid ""
7886 "This command copies from one source device or file C<src> to another "
7887 "destination device or file C<dest>.  Normally you would use this to copy to "
7888 "or from a device or partition, for example to duplicate a filesystem."
7889 msgstr ""
7890
7891 #. type: textblock
7892 #: ../src/guestfs-actions.pod:1228
7893 msgid ""
7894 "If the destination is a device, it must be as large or larger than the "
7895 "source file or device, otherwise the copy will fail.  This command cannot do "
7896 "partial copies (see C<guestfs_copy_size>)."
7897 msgstr ""
7898
7899 #. type: =head2
7900 #: ../src/guestfs-actions.pod:1236
7901 msgid "guestfs_df"
7902 msgstr ""
7903
7904 #. type: verbatim
7905 #: ../src/guestfs-actions.pod:1238
7906 #, no-wrap
7907 msgid ""
7908 " char *\n"
7909 " guestfs_df (guestfs_h *g);\n"
7910 "\n"
7911 msgstr ""
7912
7913 #. type: textblock
7914 #: ../src/guestfs-actions.pod:1241 ../fish/guestfish-actions.pod:821
7915 msgid "This command runs the C<df> command to report disk space used."
7916 msgstr ""
7917
7918 #. type: textblock
7919 #: ../src/guestfs-actions.pod:1243 ../src/guestfs-actions.pod:1260
7920 msgid ""
7921 "This command is mostly useful for interactive sessions.  It is I<not> "
7922 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
7923 "from programs."
7924 msgstr ""
7925
7926 #. type: textblock
7927 #: ../src/guestfs-actions.pod:1250 ../src/guestfs-actions.pod:1267 ../src/guestfs-actions.pod:1385 ../src/guestfs-actions.pod:2348 ../src/guestfs-actions.pod:2372 ../src/guestfs-actions.pod:2440 ../src/guestfs-actions.pod:4459 ../src/guestfs-actions.pod:5003 ../src/guestfs-actions.pod:6938 ../src/guestfs-actions.pod:6962 ../src/guestfs-actions.pod:7581 ../src/guestfs-actions.pod:7594 ../src/guestfs-actions.pod:7607
7928 msgid "(Added in 1.0.54)"
7929 msgstr ""
7930
7931 #. type: =head2
7932 #: ../src/guestfs-actions.pod:1252
7933 msgid "guestfs_df_h"
7934 msgstr ""
7935
7936 #. type: verbatim
7937 #: ../src/guestfs-actions.pod:1254
7938 #, no-wrap
7939 msgid ""
7940 " char *\n"
7941 " guestfs_df_h (guestfs_h *g);\n"
7942 "\n"
7943 msgstr ""
7944
7945 #. type: textblock
7946 #: ../src/guestfs-actions.pod:1257 ../fish/guestfish-actions.pod:831
7947 msgid ""
7948 "This command runs the C<df -h> command to report disk space used in "
7949 "human-readable format."
7950 msgstr ""
7951
7952 #. type: =head2
7953 #: ../src/guestfs-actions.pod:1269
7954 msgid "guestfs_dmesg"
7955 msgstr ""
7956
7957 #. type: verbatim
7958 #: ../src/guestfs-actions.pod:1271
7959 #, no-wrap
7960 msgid ""
7961 " char *\n"
7962 " guestfs_dmesg (guestfs_h *g);\n"
7963 "\n"
7964 msgstr ""
7965
7966 #. type: textblock
7967 #: ../src/guestfs-actions.pod:1274 ../fish/guestfish-actions.pod:842
7968 msgid ""
7969 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
7970 "This is sometimes useful for extended debugging of problems."
7971 msgstr ""
7972
7973 #. type: textblock
7974 #: ../src/guestfs-actions.pod:1278
7975 msgid ""
7976 "Another way to get the same information is to enable verbose messages with "
7977 "C<guestfs_set_verbose> or by setting the environment variable "
7978 "C<LIBGUESTFS_DEBUG=1> before running the program."
7979 msgstr ""
7980
7981 #. type: =head2
7982 #: ../src/guestfs-actions.pod:1288
7983 msgid "guestfs_download"
7984 msgstr ""
7985
7986 #. type: verbatim
7987 #: ../src/guestfs-actions.pod:1290
7988 #, no-wrap
7989 msgid ""
7990 " int\n"
7991 " guestfs_download (guestfs_h *g,\n"
7992 "                   const char *remotefilename,\n"
7993 "                   const char *filename);\n"
7994 "\n"
7995 msgstr ""
7996
7997 #. type: textblock
7998 #: ../src/guestfs-actions.pod:1295 ../src/guestfs-actions.pod:1320 ../fish/guestfish-actions.pod:855 ../fish/guestfish-actions.pod:868
7999 msgid ""
8000 "Download file C<remotefilename> and save it as C<filename> on the local "
8001 "machine."
8002 msgstr ""
8003
8004 #. type: textblock
8005 #: ../src/guestfs-actions.pod:1298 ../src/guestfs-actions.pod:7194 ../fish/guestfish-actions.pod:858 ../fish/guestfish-actions.pod:4776
8006 msgid "C<filename> can also be a named pipe."
8007 msgstr ""
8008
8009 #. type: textblock
8010 #: ../src/guestfs-actions.pod:1300
8011 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8012 msgstr ""
8013
8014 #. type: =head2
8015 #: ../src/guestfs-actions.pod:1311
8016 msgid "guestfs_download_offset"
8017 msgstr ""
8018
8019 #. type: verbatim
8020 #: ../src/guestfs-actions.pod:1313
8021 #, no-wrap
8022 msgid ""
8023 " int\n"
8024 " guestfs_download_offset (guestfs_h *g,\n"
8025 "                          const char *remotefilename,\n"
8026 "                          const char *filename,\n"
8027 "                          int64_t offset,\n"
8028 "                          int64_t size);\n"
8029 "\n"
8030 msgstr ""
8031
8032 #. type: textblock
8033 #: ../src/guestfs-actions.pod:1323 ../fish/guestfish-actions.pod:871
8034 msgid ""
8035 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8036 "region must be within the file or device)."
8037 msgstr ""
8038
8039 #. type: textblock
8040 #: ../src/guestfs-actions.pod:1326
8041 msgid ""
8042 "Note that there is no limit on the amount of data that can be downloaded "
8043 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
8044 "full amount unless an error occurs."
8045 msgstr ""
8046
8047 #. type: textblock
8048 #: ../src/guestfs-actions.pod:1331
8049 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8050 msgstr ""
8051
8052 #. type: textblock
8053 #: ../src/guestfs-actions.pod:1340 ../src/guestfs-actions.pod:7239
8054 msgid "(Added in 1.5.17)"
8055 msgstr ""
8056
8057 #. type: =head2
8058 #: ../src/guestfs-actions.pod:1342
8059 msgid "guestfs_drop_caches"
8060 msgstr ""
8061
8062 #. type: verbatim
8063 #: ../src/guestfs-actions.pod:1344
8064 #, no-wrap
8065 msgid ""
8066 " int\n"
8067 " guestfs_drop_caches (guestfs_h *g,\n"
8068 "                      int whattodrop);\n"
8069 "\n"
8070 msgstr ""
8071
8072 #. type: textblock
8073 #: ../src/guestfs-actions.pod:1348 ../fish/guestfish-actions.pod:887
8074 msgid ""
8075 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8076 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8077 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8078 msgstr ""
8079
8080 #. type: textblock
8081 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:892
8082 msgid "Setting C<whattodrop> to 3 should drop everything."
8083 msgstr ""
8084
8085 #. type: textblock
8086 #: ../src/guestfs-actions.pod:1355 ../fish/guestfish-actions.pod:894
8087 msgid ""
8088 "This automatically calls L<sync(2)> before the operation, so that the "
8089 "maximum guest memory is freed."
8090 msgstr ""
8091
8092 #. type: =head2
8093 #: ../src/guestfs-actions.pod:1362
8094 msgid "guestfs_du"
8095 msgstr ""
8096
8097 #. type: verbatim
8098 #: ../src/guestfs-actions.pod:1364
8099 #, no-wrap
8100 msgid ""
8101 " int64_t\n"
8102 " guestfs_du (guestfs_h *g,\n"
8103 "             const char *path);\n"
8104 "\n"
8105 msgstr ""
8106
8107 #. type: textblock
8108 #: ../src/guestfs-actions.pod:1368 ../fish/guestfish-actions.pod:901
8109 msgid ""
8110 "This command runs the C<du -s> command to estimate file space usage for "
8111 "C<path>."
8112 msgstr ""
8113
8114 #. type: textblock
8115 #: ../src/guestfs-actions.pod:1371 ../fish/guestfish-actions.pod:904
8116 msgid ""
8117 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8118 "estimate includes the contents of the directory and all subdirectories "
8119 "(recursively)."
8120 msgstr ""
8121
8122 #. type: textblock
8123 #: ../src/guestfs-actions.pod:1375 ../fish/guestfish-actions.pod:908
8124 msgid "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8125 msgstr ""
8126
8127 #. type: =head2
8128 #: ../src/guestfs-actions.pod:1387
8129 msgid "guestfs_e2fsck_f"
8130 msgstr ""
8131
8132 #. type: verbatim
8133 #: ../src/guestfs-actions.pod:1389
8134 #, no-wrap
8135 msgid ""
8136 " int\n"
8137 " guestfs_e2fsck_f (guestfs_h *g,\n"
8138 "                   const char *device);\n"
8139 "\n"
8140 msgstr ""
8141
8142 #. type: textblock
8143 #: ../src/guestfs-actions.pod:1393 ../fish/guestfish-actions.pod:915
8144 msgid ""
8145 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8146 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8147 "clean (I<-f>)."
8148 msgstr ""
8149
8150 #. type: textblock
8151 #: ../src/guestfs-actions.pod:1397
8152 msgid ""
8153 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8154 "Normally you should use C<guestfs_fsck>."
8155 msgstr ""
8156
8157 #. type: textblock
8158 #: ../src/guestfs-actions.pod:1402
8159 msgid "(Added in 1.0.29)"
8160 msgstr ""
8161
8162 #. type: =head2
8163 #: ../src/guestfs-actions.pod:1404
8164 msgid "guestfs_echo_daemon"
8165 msgstr ""
8166
8167 #. type: verbatim
8168 #: ../src/guestfs-actions.pod:1406
8169 #, no-wrap
8170 msgid ""
8171 " char *\n"
8172 " guestfs_echo_daemon (guestfs_h *g,\n"
8173 "                      char *const *words);\n"
8174 "\n"
8175 msgstr ""
8176
8177 #. type: textblock
8178 #: ../src/guestfs-actions.pod:1410 ../fish/guestfish-actions.pod:926
8179 msgid ""
8180 "This command concatenates the list of C<words> passed with single spaces "
8181 "between them and returns the resulting string."
8182 msgstr ""
8183
8184 #. type: textblock
8185 #: ../src/guestfs-actions.pod:1413 ../fish/guestfish-actions.pod:929
8186 msgid "You can use this command to test the connection through to the daemon."
8187 msgstr ""
8188
8189 #. type: textblock
8190 #: ../src/guestfs-actions.pod:1415
8191 msgid "See also C<guestfs_ping_daemon>."
8192 msgstr ""
8193
8194 #. type: textblock
8195 #: ../src/guestfs-actions.pod:1420 ../src/guestfs-actions.pod:2156 ../src/guestfs-actions.pod:6410
8196 msgid "(Added in 1.0.69)"
8197 msgstr ""
8198
8199 #. type: =head2
8200 #: ../src/guestfs-actions.pod:1422
8201 msgid "guestfs_egrep"
8202 msgstr ""
8203
8204 #. type: verbatim
8205 #: ../src/guestfs-actions.pod:1424
8206 #, no-wrap
8207 msgid ""
8208 " char **\n"
8209 " guestfs_egrep (guestfs_h *g,\n"
8210 "                const char *regex,\n"
8211 "                const char *path);\n"
8212 "\n"
8213 msgstr ""
8214
8215 #. type: textblock
8216 #: ../src/guestfs-actions.pod:1429 ../fish/guestfish-actions.pod:937
8217 msgid "This calls the external C<egrep> program and returns the matching lines."
8218 msgstr ""
8219
8220 #. type: textblock
8221 #: ../src/guestfs-actions.pod:1439 ../src/guestfs-actions.pod:1458 ../src/guestfs-actions.pod:1515 ../src/guestfs-actions.pod:1561 ../src/guestfs-actions.pod:1580 ../src/guestfs-actions.pod:2286 ../src/guestfs-actions.pod:2305 ../src/guestfs-actions.pod:2461 ../src/guestfs-actions.pod:2474 ../src/guestfs-actions.pod:2489 ../src/guestfs-actions.pod:2535 ../src/guestfs-actions.pod:2557 ../src/guestfs-actions.pod:2570 ../src/guestfs-actions.pod:3839 ../src/guestfs-actions.pod:3853 ../src/guestfs-actions.pod:3866 ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:4881 ../src/guestfs-actions.pod:5906 ../src/guestfs-actions.pod:5955 ../src/guestfs-actions.pod:6806 ../src/guestfs-actions.pod:6818 ../src/guestfs-actions.pod:6831 ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:6866 ../src/guestfs-actions.pod:6879 ../src/guestfs-actions.pod:6892 ../src/guestfs-actions.pod:6905 ../src/guestfs-actions.pod:7677 ../src/guestfs-actions.pod:7696 ../src/guestfs-actions.pod:7782 ../src/guestfs-actions.pod:7801 ../src/guestfs-actions.pod:7847 ../src/guestfs-actions.pod:7866
8222 msgid "(Added in 1.0.66)"
8223 msgstr ""
8224
8225 #. type: =head2
8226 #: ../src/guestfs-actions.pod:1441
8227 msgid "guestfs_egrepi"
8228 msgstr ""
8229
8230 #. type: verbatim
8231 #: ../src/guestfs-actions.pod:1443
8232 #, no-wrap
8233 msgid ""
8234 " char **\n"
8235 " guestfs_egrepi (guestfs_h *g,\n"
8236 "                 const char *regex,\n"
8237 "                 const char *path);\n"
8238 "\n"
8239 msgstr ""
8240
8241 #. type: textblock
8242 #: ../src/guestfs-actions.pod:1448 ../fish/guestfish-actions.pod:947
8243 msgid "This calls the external C<egrep -i> program and returns the matching lines."
8244 msgstr ""
8245
8246 #. type: =head2
8247 #: ../src/guestfs-actions.pod:1460
8248 msgid "guestfs_equal"
8249 msgstr ""
8250
8251 #. type: verbatim
8252 #: ../src/guestfs-actions.pod:1462
8253 #, no-wrap
8254 msgid ""
8255 " int\n"
8256 " guestfs_equal (guestfs_h *g,\n"
8257 "                const char *file1,\n"
8258 "                const char *file2);\n"
8259 "\n"
8260 msgstr ""
8261
8262 #. type: textblock
8263 #: ../src/guestfs-actions.pod:1467 ../fish/guestfish-actions.pod:957
8264 msgid ""
8265 "This compares the two files C<file1> and C<file2> and returns true if their "
8266 "content is exactly equal, or false otherwise."
8267 msgstr ""
8268
8269 #. type: textblock
8270 #: ../src/guestfs-actions.pod:1470 ../fish/guestfish-actions.pod:960
8271 msgid "The external L<cmp(1)> program is used for the comparison."
8272 msgstr ""
8273
8274 #. type: =head2
8275 #: ../src/guestfs-actions.pod:1476
8276 msgid "guestfs_exists"
8277 msgstr ""
8278
8279 #. type: verbatim
8280 #: ../src/guestfs-actions.pod:1478
8281 #, no-wrap
8282 msgid ""
8283 " int\n"
8284 " guestfs_exists (guestfs_h *g,\n"
8285 "                 const char *path);\n"
8286 "\n"
8287 msgstr ""
8288
8289 #. type: textblock
8290 #: ../src/guestfs-actions.pod:1482 ../fish/guestfish-actions.pod:966
8291 msgid ""
8292 "This returns C<true> if and only if there is a file, directory (or anything) "
8293 "with the given C<path> name."
8294 msgstr ""
8295
8296 #. type: textblock
8297 #: ../src/guestfs-actions.pod:1485
8298 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8299 msgstr ""
8300
8301 #. type: =head2
8302 #: ../src/guestfs-actions.pod:1491
8303 msgid "guestfs_fallocate"
8304 msgstr ""
8305
8306 #. type: verbatim
8307 #: ../src/guestfs-actions.pod:1493
8308 #, no-wrap
8309 msgid ""
8310 " int\n"
8311 " guestfs_fallocate (guestfs_h *g,\n"
8312 "                    const char *path,\n"
8313 "                    int len);\n"
8314 "\n"
8315 msgstr ""
8316
8317 #. type: textblock
8318 #: ../src/guestfs-actions.pod:1498 ../src/guestfs-actions.pod:1524 ../fish/guestfish-actions.pod:975 ../fish/guestfish-actions.pod:994
8319 msgid ""
8320 "This command preallocates a file (containing zero bytes) named C<path> of "
8321 "size C<len> bytes.  If the file exists already, it is overwritten."
8322 msgstr ""
8323
8324 #. type: textblock
8325 #: ../src/guestfs-actions.pod:1502 ../fish/guestfish-actions.pod:979
8326 msgid ""
8327 "Do not confuse this with the guestfish-specific C<alloc> command which "
8328 "allocates a file in the host and attaches it as a device."
8329 msgstr ""
8330
8331 #. type: textblock
8332 #: ../src/guestfs-actions.pod:1508 ../fish/guestfish-actions.pod:983
8333 msgid ""
8334 "This function is deprecated.  In new code, use the C<fallocate64> call "
8335 "instead."
8336 msgstr ""
8337
8338 #. type: =head2
8339 #: ../src/guestfs-actions.pod:1517
8340 msgid "guestfs_fallocate64"
8341 msgstr ""
8342
8343 #. type: verbatim
8344 #: ../src/guestfs-actions.pod:1519
8345 #, no-wrap
8346 msgid ""
8347 " int\n"
8348 " guestfs_fallocate64 (guestfs_h *g,\n"
8349 "                      const char *path,\n"
8350 "                      int64_t len);\n"
8351 "\n"
8352 msgstr ""
8353
8354 #. type: textblock
8355 #: ../src/guestfs-actions.pod:1528
8356 msgid ""
8357 "Note that this call allocates disk blocks for the file.  To create a sparse "
8358 "file use C<guestfs_truncate_size> instead."
8359 msgstr ""
8360
8361 #. type: textblock
8362 #: ../src/guestfs-actions.pod:1531
8363 msgid ""
8364 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8365 "oversight it only allowed 30 bit lengths to be specified, effectively "
8366 "limiting the maximum size of files created through that call to 1GB."
8367 msgstr ""
8368
8369 #. type: textblock
8370 #: ../src/guestfs-actions.pod:1536 ../fish/guestfish-actions.pod:1006
8371 msgid ""
8372 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8373 "commands which create a file in the host and attach it as a device."
8374 msgstr ""
8375
8376 #. type: textblock
8377 #: ../src/guestfs-actions.pod:1542
8378 msgid "(Added in 1.3.17)"
8379 msgstr ""
8380
8381 #. type: =head2
8382 #: ../src/guestfs-actions.pod:1544
8383 msgid "guestfs_fgrep"
8384 msgstr ""
8385
8386 #. type: verbatim
8387 #: ../src/guestfs-actions.pod:1546
8388 #, no-wrap
8389 msgid ""
8390 " char **\n"
8391 " guestfs_fgrep (guestfs_h *g,\n"
8392 "                const char *pattern,\n"
8393 "                const char *path);\n"
8394 "\n"
8395 msgstr ""
8396
8397 #. type: textblock
8398 #: ../src/guestfs-actions.pod:1551 ../fish/guestfish-actions.pod:1014
8399 msgid "This calls the external C<fgrep> program and returns the matching lines."
8400 msgstr ""
8401
8402 #. type: =head2
8403 #: ../src/guestfs-actions.pod:1563
8404 msgid "guestfs_fgrepi"
8405 msgstr ""
8406
8407 #. type: verbatim
8408 #: ../src/guestfs-actions.pod:1565
8409 #, no-wrap
8410 msgid ""
8411 " char **\n"
8412 " guestfs_fgrepi (guestfs_h *g,\n"
8413 "                 const char *pattern,\n"
8414 "                 const char *path);\n"
8415 "\n"
8416 msgstr ""
8417
8418 #. type: textblock
8419 #: ../src/guestfs-actions.pod:1570 ../fish/guestfish-actions.pod:1024
8420 msgid "This calls the external C<fgrep -i> program and returns the matching lines."
8421 msgstr ""
8422
8423 #. type: =head2
8424 #: ../src/guestfs-actions.pod:1582
8425 msgid "guestfs_file"
8426 msgstr ""
8427
8428 #. type: verbatim
8429 #: ../src/guestfs-actions.pod:1584
8430 #, no-wrap
8431 msgid ""
8432 " char *\n"
8433 " guestfs_file (guestfs_h *g,\n"
8434 "               const char *path);\n"
8435 "\n"
8436 msgstr ""
8437
8438 #. type: textblock
8439 #: ../src/guestfs-actions.pod:1588 ../fish/guestfish-actions.pod:1034
8440 msgid ""
8441 "This call uses the standard L<file(1)> command to determine the type or "
8442 "contents of the file."
8443 msgstr ""
8444
8445 #. type: textblock
8446 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1037
8447 msgid ""
8448 "This call will also transparently look inside various types of compressed "
8449 "file."
8450 msgstr ""
8451
8452 #. type: textblock
8453 #: ../src/guestfs-actions.pod:1594 ../fish/guestfish-actions.pod:1040
8454 msgid ""
8455 "The exact command which runs is C<file -zb path>.  Note in particular that "
8456 "the filename is not prepended to the output (the I<-b> option)."
8457 msgstr ""
8458
8459 #. type: textblock
8460 #: ../src/guestfs-actions.pod:1598 ../fish/guestfish-actions.pod:1044
8461 msgid ""
8462 "The output depends on the output of the underlying L<file(1)> command and it "
8463 "can change in future in ways beyond our control.  In other words, the output "
8464 "is not guaranteed by the ABI."
8465 msgstr ""
8466
8467 #. type: textblock
8468 #: ../src/guestfs-actions.pod:1602
8469 msgid ""
8470 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8471 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc), C<guestfs_is_zero>."
8472 msgstr ""
8473
8474 #. type: =head2
8475 #: ../src/guestfs-actions.pod:1610
8476 msgid "guestfs_file_architecture"
8477 msgstr ""
8478
8479 #. type: verbatim
8480 #: ../src/guestfs-actions.pod:1612
8481 #, no-wrap
8482 msgid ""
8483 " char *\n"
8484 " guestfs_file_architecture (guestfs_h *g,\n"
8485 "                            const char *filename);\n"
8486 "\n"
8487 msgstr ""
8488
8489 #. type: textblock
8490 #: ../src/guestfs-actions.pod:1616 ../fish/guestfish-actions.pod:1055
8491 msgid ""
8492 "This detects the architecture of the binary C<filename>, and returns it if "
8493 "known."
8494 msgstr ""
8495
8496 #. type: textblock
8497 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1058
8498 msgid "Currently defined architectures are:"
8499 msgstr ""
8500
8501 #. type: =item
8502 #: ../src/guestfs-actions.pod:1623 ../fish/guestfish-actions.pod:1062
8503 msgid "\"i386\""
8504 msgstr ""
8505
8506 #. type: textblock
8507 #: ../src/guestfs-actions.pod:1625 ../fish/guestfish-actions.pod:1064
8508 msgid ""
8509 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8510 "irrespective of the precise processor requirements of the binary."
8511 msgstr ""
8512
8513 #. type: =item
8514 #: ../src/guestfs-actions.pod:1628 ../fish/guestfish-actions.pod:1067
8515 msgid "\"x86_64\""
8516 msgstr ""
8517
8518 #. type: textblock
8519 #: ../src/guestfs-actions.pod:1630 ../fish/guestfish-actions.pod:1069
8520 msgid "64 bit x86-64."
8521 msgstr ""
8522
8523 #. type: =item
8524 #: ../src/guestfs-actions.pod:1632 ../fish/guestfish-actions.pod:1071
8525 msgid "\"sparc\""
8526 msgstr ""
8527
8528 #. type: textblock
8529 #: ../src/guestfs-actions.pod:1634 ../fish/guestfish-actions.pod:1073
8530 msgid "32 bit SPARC."
8531 msgstr ""
8532
8533 #. type: =item
8534 #: ../src/guestfs-actions.pod:1636 ../fish/guestfish-actions.pod:1075
8535 msgid "\"sparc64\""
8536 msgstr ""
8537
8538 #. type: textblock
8539 #: ../src/guestfs-actions.pod:1638 ../fish/guestfish-actions.pod:1077
8540 msgid "64 bit SPARC V9 and above."
8541 msgstr ""
8542
8543 #. type: =item
8544 #: ../src/guestfs-actions.pod:1640 ../fish/guestfish-actions.pod:1079
8545 msgid "\"ia64\""
8546 msgstr ""
8547
8548 #. type: textblock
8549 #: ../src/guestfs-actions.pod:1642 ../fish/guestfish-actions.pod:1081
8550 msgid "Intel Itanium."
8551 msgstr ""
8552
8553 #. type: =item
8554 #: ../src/guestfs-actions.pod:1644 ../fish/guestfish-actions.pod:1083
8555 msgid "\"ppc\""
8556 msgstr ""
8557
8558 #. type: textblock
8559 #: ../src/guestfs-actions.pod:1646 ../fish/guestfish-actions.pod:1085
8560 msgid "32 bit Power PC."
8561 msgstr ""
8562
8563 #. type: =item
8564 #: ../src/guestfs-actions.pod:1648 ../fish/guestfish-actions.pod:1087
8565 msgid "\"ppc64\""
8566 msgstr ""
8567
8568 #. type: textblock
8569 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1089
8570 msgid "64 bit Power PC."
8571 msgstr ""
8572
8573 #. type: textblock
8574 #: ../src/guestfs-actions.pod:1654 ../fish/guestfish-actions.pod:1093
8575 msgid "Libguestfs may return other architecture strings in future."
8576 msgstr ""
8577
8578 #. type: textblock
8579 #: ../src/guestfs-actions.pod:1656 ../fish/guestfish-actions.pod:1095
8580 msgid "The function works on at least the following types of files:"
8581 msgstr ""
8582
8583 #. type: textblock
8584 #: ../src/guestfs-actions.pod:1662 ../fish/guestfish-actions.pod:1101
8585 msgid "many types of Un*x and Linux binary"
8586 msgstr ""
8587
8588 #. type: textblock
8589 #: ../src/guestfs-actions.pod:1666 ../fish/guestfish-actions.pod:1105
8590 msgid "many types of Un*x and Linux shared library"
8591 msgstr ""
8592
8593 #. type: textblock
8594 #: ../src/guestfs-actions.pod:1670 ../fish/guestfish-actions.pod:1109
8595 msgid "Windows Win32 and Win64 binaries"
8596 msgstr ""
8597
8598 #. type: textblock
8599 #: ../src/guestfs-actions.pod:1674 ../fish/guestfish-actions.pod:1113
8600 msgid "Windows Win32 and Win64 DLLs"
8601 msgstr ""
8602
8603 #. type: textblock
8604 #: ../src/guestfs-actions.pod:1676 ../fish/guestfish-actions.pod:1115
8605 msgid "Win32 binaries and DLLs return C<i386>."
8606 msgstr ""
8607
8608 #. type: textblock
8609 #: ../src/guestfs-actions.pod:1678 ../fish/guestfish-actions.pod:1117
8610 msgid "Win64 binaries and DLLs return C<x86_64>."
8611 msgstr ""
8612
8613 #. type: textblock
8614 #: ../src/guestfs-actions.pod:1682 ../fish/guestfish-actions.pod:1121
8615 msgid "Linux kernel modules"
8616 msgstr ""
8617
8618 #. type: textblock
8619 #: ../src/guestfs-actions.pod:1686 ../fish/guestfish-actions.pod:1125
8620 msgid "Linux new-style initrd images"
8621 msgstr ""
8622
8623 #. type: textblock
8624 #: ../src/guestfs-actions.pod:1690 ../fish/guestfish-actions.pod:1129
8625 msgid "some non-x86 Linux vmlinuz kernels"
8626 msgstr ""
8627
8628 #. type: textblock
8629 #: ../src/guestfs-actions.pod:1694 ../fish/guestfish-actions.pod:1133
8630 msgid "What it can't do currently:"
8631 msgstr ""
8632
8633 #. type: textblock
8634 #: ../src/guestfs-actions.pod:1700 ../fish/guestfish-actions.pod:1139
8635 msgid "static libraries (libfoo.a)"
8636 msgstr ""
8637
8638 #. type: textblock
8639 #: ../src/guestfs-actions.pod:1704 ../fish/guestfish-actions.pod:1143
8640 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8641 msgstr ""
8642
8643 #. type: textblock
8644 #: ../src/guestfs-actions.pod:1708 ../fish/guestfish-actions.pod:1147
8645 msgid "x86 Linux vmlinuz kernels"
8646 msgstr ""
8647
8648 #. type: textblock
8649 #: ../src/guestfs-actions.pod:1710 ../fish/guestfish-actions.pod:1149
8650 msgid ""
8651 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8652 "compressed code, and are horribly hard to unpack.  If you want to find the "
8653 "architecture of a kernel, use the architecture of the associated initrd or "
8654 "kernel module(s) instead."
8655 msgstr ""
8656
8657 #. type: textblock
8658 #: ../src/guestfs-actions.pod:1720 ../src/guestfs-actions.pod:1883 ../src/guestfs-actions.pod:1900 ../src/guestfs-actions.pod:2590 ../src/guestfs-actions.pod:2680 ../src/guestfs-actions.pod:2746 ../src/guestfs-actions.pod:2933 ../src/guestfs-actions.pod:2951 ../src/guestfs-actions.pod:2991 ../src/guestfs-actions.pod:3066 ../src/guestfs-actions.pod:3159 ../src/guestfs-actions.pod:3396 ../src/guestfs-actions.pod:3528
8659 msgid "(Added in 1.5.3)"
8660 msgstr ""
8661
8662 #. type: =head2
8663 #: ../src/guestfs-actions.pod:1722
8664 msgid "guestfs_filesize"
8665 msgstr ""
8666
8667 #. type: verbatim
8668 #: ../src/guestfs-actions.pod:1724
8669 #, no-wrap
8670 msgid ""
8671 " int64_t\n"
8672 " guestfs_filesize (guestfs_h *g,\n"
8673 "                   const char *file);\n"
8674 "\n"
8675 msgstr ""
8676
8677 #. type: textblock
8678 #: ../src/guestfs-actions.pod:1728 ../fish/guestfish-actions.pod:1160
8679 msgid "This command returns the size of C<file> in bytes."
8680 msgstr ""
8681
8682 #. type: textblock
8683 #: ../src/guestfs-actions.pod:1730
8684 msgid ""
8685 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
8686 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
8687 "devices, use C<guestfs_blockdev_getsize64>."
8688 msgstr ""
8689
8690 #. type: textblock
8691 #: ../src/guestfs-actions.pod:1736
8692 msgid "(Added in 1.0.82)"
8693 msgstr ""
8694
8695 #. type: =head2
8696 #: ../src/guestfs-actions.pod:1738
8697 msgid "guestfs_fill"
8698 msgstr ""
8699
8700 #. type: verbatim
8701 #: ../src/guestfs-actions.pod:1740
8702 #, no-wrap
8703 msgid ""
8704 " int\n"
8705 " guestfs_fill (guestfs_h *g,\n"
8706 "               int c,\n"
8707 "               int len,\n"
8708 "               const char *path);\n"
8709 "\n"
8710 msgstr ""
8711
8712 #. type: textblock
8713 #: ../src/guestfs-actions.pod:1746 ../fish/guestfish-actions.pod:1170
8714 msgid ""
8715 "This command creates a new file called C<path>.  The initial content of the "
8716 "file is C<len> octets of C<c>, where C<c> must be a number in the range "
8717 "C<[0..255]>."
8718 msgstr ""
8719
8720 #. type: textblock
8721 #: ../src/guestfs-actions.pod:1750
8722 msgid ""
8723 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
8724 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
8725 "bytes use C<guestfs_fill_pattern>."
8726 msgstr ""
8727
8728 #. type: textblock
8729 #: ../src/guestfs-actions.pod:1762
8730 msgid "(Added in 1.0.79)"
8731 msgstr ""
8732
8733 #. type: =head2
8734 #: ../src/guestfs-actions.pod:1764
8735 msgid "guestfs_fill_pattern"
8736 msgstr ""
8737
8738 #. type: verbatim
8739 #: ../src/guestfs-actions.pod:1766
8740 #, no-wrap
8741 msgid ""
8742 " int\n"
8743 " guestfs_fill_pattern (guestfs_h *g,\n"
8744 "                       const char *pattern,\n"
8745 "                       int len,\n"
8746 "                       const char *path);\n"
8747 "\n"
8748 msgstr ""
8749
8750 #. type: textblock
8751 #: ../src/guestfs-actions.pod:1772
8752 msgid ""
8753 "This function is like C<guestfs_fill> except that it creates a new file of "
8754 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
8755 "pattern is truncated if necessary to ensure the length of the file is "
8756 "exactly C<len> bytes."
8757 msgstr ""
8758
8759 #. type: textblock
8760 #: ../src/guestfs-actions.pod:1784
8761 msgid "(Added in 1.3.12)"
8762 msgstr ""
8763
8764 #. type: =head2
8765 #: ../src/guestfs-actions.pod:1786
8766 msgid "guestfs_find"
8767 msgstr ""
8768
8769 #. type: verbatim
8770 #: ../src/guestfs-actions.pod:1788
8771 #, no-wrap
8772 msgid ""
8773 " char **\n"
8774 " guestfs_find (guestfs_h *g,\n"
8775 "               const char *directory);\n"
8776 "\n"
8777 msgstr ""
8778
8779 #. type: textblock
8780 #: ../src/guestfs-actions.pod:1792 ../fish/guestfish-actions.pod:1192
8781 msgid ""
8782 "This command lists out all files and directories, recursively, starting at "
8783 "C<directory>.  It is essentially equivalent to running the shell command "
8784 "C<find directory -print> but some post-processing happens on the output, "
8785 "described below."
8786 msgstr ""
8787
8788 #. type: textblock
8789 #: ../src/guestfs-actions.pod:1797 ../fish/guestfish-actions.pod:1197
8790 msgid ""
8791 "This returns a list of strings I<without any prefix>.  Thus if the directory "
8792 "structure was:"
8793 msgstr ""
8794
8795 #. type: verbatim
8796 #: ../src/guestfs-actions.pod:1800 ../fish/guestfish-actions.pod:1200
8797 #, no-wrap
8798 msgid ""
8799 " /tmp/a\n"
8800 " /tmp/b\n"
8801 " /tmp/c/d\n"
8802 "\n"
8803 msgstr ""
8804
8805 #. type: textblock
8806 #: ../src/guestfs-actions.pod:1804
8807 msgid "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
8808 msgstr ""
8809
8810 #. type: verbatim
8811 #: ../src/guestfs-actions.pod:1807 ../fish/guestfish-actions.pod:1207
8812 #, no-wrap
8813 msgid ""
8814 " a\n"
8815 " b\n"
8816 " c\n"
8817 " c/d\n"
8818 "\n"
8819 msgstr ""
8820
8821 #. type: textblock
8822 #: ../src/guestfs-actions.pod:1812 ../fish/guestfish-actions.pod:1212
8823 msgid "If C<directory> is not a directory, then this command returns an error."
8824 msgstr ""
8825
8826 #. type: textblock
8827 #: ../src/guestfs-actions.pod:1815 ../fish/guestfish-actions.pod:1215
8828 msgid "The returned list is sorted."
8829 msgstr ""
8830
8831 #. type: textblock
8832 #: ../src/guestfs-actions.pod:1817
8833 msgid "See also C<guestfs_find0>."
8834 msgstr ""
8835
8836 #. type: textblock
8837 #: ../src/guestfs-actions.pod:1826 ../src/guestfs-actions.pod:4286 ../src/guestfs-actions.pod:5990
8838 msgid "(Added in 1.0.27)"
8839 msgstr ""
8840
8841 #. type: =head2
8842 #: ../src/guestfs-actions.pod:1828
8843 msgid "guestfs_find0"
8844 msgstr ""
8845
8846 #. type: verbatim
8847 #: ../src/guestfs-actions.pod:1830
8848 #, no-wrap
8849 msgid ""
8850 " int\n"
8851 " guestfs_find0 (guestfs_h *g,\n"
8852 "                const char *directory,\n"
8853 "                const char *files);\n"
8854 "\n"
8855 msgstr ""
8856
8857 #. type: textblock
8858 #: ../src/guestfs-actions.pod:1835 ../fish/guestfish-actions.pod:1226
8859 msgid ""
8860 "This command lists out all files and directories, recursively, starting at "
8861 "C<directory>, placing the resulting list in the external file called "
8862 "C<files>."
8863 msgstr ""
8864
8865 #. type: textblock
8866 #: ../src/guestfs-actions.pod:1839
8867 msgid ""
8868 "This command works the same way as C<guestfs_find> with the following "
8869 "exceptions:"
8870 msgstr ""
8871
8872 #. type: textblock
8873 #: ../src/guestfs-actions.pod:1846 ../fish/guestfish-actions.pod:1237
8874 msgid "The resulting list is written to an external file."
8875 msgstr ""
8876
8877 #. type: textblock
8878 #: ../src/guestfs-actions.pod:1850 ../fish/guestfish-actions.pod:1241
8879 msgid ""
8880 "Items (filenames) in the result are separated by C<\\0> characters.  See "
8881 "L<find(1)> option I<-print0>."
8882 msgstr ""
8883
8884 #. type: textblock
8885 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:1246
8886 msgid "This command is not limited in the number of names that it can return."
8887 msgstr ""
8888
8889 #. type: textblock
8890 #: ../src/guestfs-actions.pod:1860 ../fish/guestfish-actions.pod:1251
8891 msgid "The result list is not sorted."
8892 msgstr ""
8893
8894 #. type: textblock
8895 #: ../src/guestfs-actions.pod:1866
8896 msgid "(Added in 1.0.74)"
8897 msgstr ""
8898
8899 #. type: =head2
8900 #: ../src/guestfs-actions.pod:1868
8901 msgid "guestfs_findfs_label"
8902 msgstr ""
8903
8904 #. type: verbatim
8905 #: ../src/guestfs-actions.pod:1870
8906 #, no-wrap
8907 msgid ""
8908 " char *\n"
8909 " guestfs_findfs_label (guestfs_h *g,\n"
8910 "                       const char *label);\n"
8911 "\n"
8912 msgstr ""
8913
8914 #. type: textblock
8915 #: ../src/guestfs-actions.pod:1874 ../fish/guestfish-actions.pod:1261
8916 msgid ""
8917 "This command searches the filesystems and returns the one which has the "
8918 "given label.  An error is returned if no such filesystem can be found."
8919 msgstr ""
8920
8921 #. type: textblock
8922 #: ../src/guestfs-actions.pod:1878
8923 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
8924 msgstr ""
8925
8926 #. type: =head2
8927 #: ../src/guestfs-actions.pod:1885
8928 msgid "guestfs_findfs_uuid"
8929 msgstr ""
8930
8931 #. type: verbatim
8932 #: ../src/guestfs-actions.pod:1887
8933 #, no-wrap
8934 msgid ""
8935 " char *\n"
8936 " guestfs_findfs_uuid (guestfs_h *g,\n"
8937 "                      const char *uuid);\n"
8938 "\n"
8939 msgstr ""
8940
8941 #. type: textblock
8942 #: ../src/guestfs-actions.pod:1891 ../fish/guestfish-actions.pod:1271
8943 msgid ""
8944 "This command searches the filesystems and returns the one which has the "
8945 "given UUID.  An error is returned if no such filesystem can be found."
8946 msgstr ""
8947
8948 #. type: textblock
8949 #: ../src/guestfs-actions.pod:1895
8950 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
8951 msgstr ""
8952
8953 #. type: =head2
8954 #: ../src/guestfs-actions.pod:1902
8955 msgid "guestfs_fsck"
8956 msgstr ""
8957
8958 #. type: verbatim
8959 #: ../src/guestfs-actions.pod:1904
8960 #, no-wrap
8961 msgid ""
8962 " int\n"
8963 " guestfs_fsck (guestfs_h *g,\n"
8964 "               const char *fstype,\n"
8965 "               const char *device);\n"
8966 "\n"
8967 msgstr ""
8968
8969 #. type: textblock
8970 #: ../src/guestfs-actions.pod:1909 ../fish/guestfish-actions.pod:1281
8971 msgid ""
8972 "This runs the filesystem checker (fsck) on C<device> which should have "
8973 "filesystem type C<fstype>."
8974 msgstr ""
8975
8976 #. type: textblock
8977 #: ../src/guestfs-actions.pod:1912 ../fish/guestfish-actions.pod:1284
8978 msgid ""
8979 "The returned integer is the status.  See L<fsck(8)> for the list of status "
8980 "codes from C<fsck>."
8981 msgstr ""
8982
8983 #. type: textblock
8984 #: ../src/guestfs-actions.pod:1921 ../fish/guestfish-actions.pod:1293
8985 msgid "Multiple status codes can be summed together."
8986 msgstr ""
8987
8988 #. type: textblock
8989 #: ../src/guestfs-actions.pod:1925 ../fish/guestfish-actions.pod:1297
8990 msgid ""
8991 "A non-zero return code can mean \"success\", for example if errors have been "
8992 "corrected on the filesystem."
8993 msgstr ""
8994
8995 #. type: textblock
8996 #: ../src/guestfs-actions.pod:1930 ../fish/guestfish-actions.pod:1302
8997 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
8998 msgstr ""
8999
9000 #. type: textblock
9001 #: ../src/guestfs-actions.pod:1935 ../fish/guestfish-actions.pod:1307
9002 msgid "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9003 msgstr ""
9004
9005 #. type: textblock
9006 #: ../src/guestfs-actions.pod:1939 ../src/guestfs-actions.pod:7720
9007 msgid "(Added in 1.0.16)"
9008 msgstr ""
9009
9010 #. type: =head2
9011 #: ../src/guestfs-actions.pod:1941
9012 msgid "guestfs_get_append"
9013 msgstr ""
9014
9015 #. type: verbatim
9016 #: ../src/guestfs-actions.pod:1943
9017 #, no-wrap
9018 msgid ""
9019 " const char *\n"
9020 " guestfs_get_append (guestfs_h *g);\n"
9021 "\n"
9022 msgstr ""
9023
9024 #. type: textblock
9025 #: ../src/guestfs-actions.pod:1946 ../fish/guestfish-actions.pod:1313
9026 msgid ""
9027 "Return the additional kernel options which are added to the guest kernel "
9028 "command line."
9029 msgstr ""
9030
9031 #. type: textblock
9032 #: ../src/guestfs-actions.pod:1949 ../fish/guestfish-actions.pod:1316
9033 msgid "If C<NULL> then no options are added."
9034 msgstr ""
9035
9036 #. type: textblock
9037 #: ../src/guestfs-actions.pod:1951
9038 msgid ""
9039 "This function returns a string which may be NULL.  There is no way to return "
9040 "an error from this function.  The string is owned by the guest handle and "
9041 "must I<not> be freed."
9042 msgstr ""
9043
9044 #. type: textblock
9045 #: ../src/guestfs-actions.pod:1955 ../src/guestfs-actions.pod:5668 ../src/guestfs-actions.pod:6150 ../src/guestfs-actions.pod:6573 ../src/guestfs-actions.pod:6592 ../src/guestfs-actions.pod:6608 ../src/guestfs-actions.pod:6632 ../src/guestfs-actions.pod:7386 ../src/guestfs-actions.pod:7401 ../src/guestfs-actions.pod:7763
9046 msgid "(Added in 1.0.26)"
9047 msgstr ""
9048
9049 #. type: =head2
9050 #: ../src/guestfs-actions.pod:1957
9051 msgid "guestfs_get_attach_method"
9052 msgstr ""
9053
9054 #. type: verbatim
9055 #: ../src/guestfs-actions.pod:1959
9056 #, no-wrap
9057 msgid ""
9058 " char *\n"
9059 " guestfs_get_attach_method (guestfs_h *g);\n"
9060 "\n"
9061 msgstr ""
9062
9063 #. type: textblock
9064 #: ../src/guestfs-actions.pod:1962
9065 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9066 msgstr ""
9067
9068 #. type: textblock
9069 #: ../src/guestfs-actions.pod:1967 ../src/guestfs-actions.pod:6180
9070 msgid "(Added in 1.9.8)"
9071 msgstr ""
9072
9073 #. type: =head2
9074 #: ../src/guestfs-actions.pod:1969
9075 msgid "guestfs_get_autosync"
9076 msgstr ""
9077
9078 #. type: verbatim
9079 #: ../src/guestfs-actions.pod:1971
9080 #, no-wrap
9081 msgid ""
9082 " int\n"
9083 " guestfs_get_autosync (guestfs_h *g);\n"
9084 "\n"
9085 msgstr ""
9086
9087 #. type: textblock
9088 #: ../src/guestfs-actions.pod:1974 ../fish/guestfish-actions.pod:1328
9089 msgid "Get the autosync flag."
9090 msgstr ""
9091
9092 #. type: =head2
9093 #: ../src/guestfs-actions.pod:1980
9094 msgid "guestfs_get_direct"
9095 msgstr ""
9096
9097 #. type: verbatim
9098 #: ../src/guestfs-actions.pod:1982
9099 #, no-wrap
9100 msgid ""
9101 " int\n"
9102 " guestfs_get_direct (guestfs_h *g);\n"
9103 "\n"
9104 msgstr ""
9105
9106 #. type: textblock
9107 #: ../src/guestfs-actions.pod:1985 ../fish/guestfish-actions.pod:1334
9108 msgid "Return the direct appliance mode flag."
9109 msgstr ""
9110
9111 #. type: textblock
9112 #: ../src/guestfs-actions.pod:1989 ../src/guestfs-actions.pod:6221
9113 msgid "(Added in 1.0.72)"
9114 msgstr ""
9115
9116 #. type: =head2
9117 #: ../src/guestfs-actions.pod:1991
9118 msgid "guestfs_get_e2label"
9119 msgstr ""
9120
9121 #. type: verbatim
9122 #: ../src/guestfs-actions.pod:1993
9123 #, no-wrap
9124 msgid ""
9125 " char *\n"
9126 " guestfs_get_e2label (guestfs_h *g,\n"
9127 "                      const char *device);\n"
9128 "\n"
9129 msgstr ""
9130
9131 #. type: textblock
9132 #: ../src/guestfs-actions.pod:1997 ../fish/guestfish-actions.pod:1340
9133 msgid "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9134 msgstr ""
9135
9136 #. type: textblock
9137 #: ../src/guestfs-actions.pod:2003 ../fish/guestfish-actions.pod:1343
9138 msgid ""
9139 "This function is deprecated.  In new code, use the C<vfs_label> call "
9140 "instead."
9141 msgstr ""
9142
9143 #. type: textblock
9144 #: ../src/guestfs-actions.pod:2010 ../src/guestfs-actions.pod:2031 ../src/guestfs-actions.pod:6239 ../src/guestfs-actions.pod:6258
9145 msgid "(Added in 1.0.15)"
9146 msgstr ""
9147
9148 #. type: =head2
9149 #: ../src/guestfs-actions.pod:2012
9150 msgid "guestfs_get_e2uuid"
9151 msgstr ""
9152
9153 #. type: verbatim
9154 #: ../src/guestfs-actions.pod:2014
9155 #, no-wrap
9156 msgid ""
9157 " char *\n"
9158 " guestfs_get_e2uuid (guestfs_h *g,\n"
9159 "                     const char *device);\n"
9160 "\n"
9161 msgstr ""
9162
9163 #. type: textblock
9164 #: ../src/guestfs-actions.pod:2018 ../fish/guestfish-actions.pod:1354
9165 msgid "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9166 msgstr ""
9167
9168 #. type: textblock
9169 #: ../src/guestfs-actions.pod:2024 ../fish/guestfish-actions.pod:1357
9170 msgid "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9171 msgstr ""
9172
9173 #. type: =head2
9174 #: ../src/guestfs-actions.pod:2033
9175 msgid "guestfs_get_memsize"
9176 msgstr ""
9177
9178 #. type: verbatim
9179 #: ../src/guestfs-actions.pod:2035
9180 #, no-wrap
9181 msgid ""
9182 " int\n"
9183 " guestfs_get_memsize (guestfs_h *g);\n"
9184 "\n"
9185 msgstr ""
9186
9187 #. type: textblock
9188 #: ../src/guestfs-actions.pod:2038 ../fish/guestfish-actions.pod:1368
9189 msgid "This gets the memory size in megabytes allocated to the qemu subprocess."
9190 msgstr ""
9191
9192 #. type: textblock
9193 #: ../src/guestfs-actions.pod:2041
9194 msgid ""
9195 "If C<guestfs_set_memsize> was not called on this handle, and if "
9196 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9197 "value for memsize."
9198 msgstr ""
9199
9200 #. type: textblock
9201 #: ../src/guestfs-actions.pod:2045 ../src/guestfs-actions.pod:2126 ../src/guestfs-actions.pod:6274 ../src/guestfs-actions.pod:6381 ../fish/guestfish-actions.pod:1375 ../fish/guestfish-actions.pod:1426 ../fish/guestfish-actions.pod:4151 ../fish/guestfish-actions.pod:4238
9202 msgid "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9203 msgstr ""
9204
9205 #. type: textblock
9206 #: ../src/guestfs-actions.pod:2050 ../src/guestfs-actions.pod:4577 ../src/guestfs-actions.pod:4786 ../src/guestfs-actions.pod:4805 ../src/guestfs-actions.pod:4824 ../src/guestfs-actions.pod:4836 ../src/guestfs-actions.pod:4853 ../src/guestfs-actions.pod:4866 ../src/guestfs-actions.pod:5893 ../src/guestfs-actions.pod:6279 ../src/guestfs-actions.pod:6540 ../src/guestfs-actions.pod:7155
9207 msgid "(Added in 1.0.55)"
9208 msgstr ""
9209
9210 #. type: =head2
9211 #: ../src/guestfs-actions.pod:2052
9212 msgid "guestfs_get_network"
9213 msgstr ""
9214
9215 #. type: verbatim
9216 #: ../src/guestfs-actions.pod:2054
9217 #, no-wrap
9218 msgid ""
9219 " int\n"
9220 " guestfs_get_network (guestfs_h *g);\n"
9221 "\n"
9222 msgstr ""
9223
9224 #. type: textblock
9225 #: ../src/guestfs-actions.pod:2057 ../fish/guestfish-actions.pod:1382
9226 msgid "This returns the enable network flag."
9227 msgstr ""
9228
9229 #. type: textblock
9230 #: ../src/guestfs-actions.pod:2061 ../src/guestfs-actions.pod:6298
9231 msgid "(Added in 1.5.4)"
9232 msgstr ""
9233
9234 #. type: =head2
9235 #: ../src/guestfs-actions.pod:2063
9236 msgid "guestfs_get_path"
9237 msgstr ""
9238
9239 #. type: verbatim
9240 #: ../src/guestfs-actions.pod:2065
9241 #, no-wrap
9242 msgid ""
9243 " const char *\n"
9244 " guestfs_get_path (guestfs_h *g);\n"
9245 "\n"
9246 msgstr ""
9247
9248 #. type: textblock
9249 #: ../src/guestfs-actions.pod:2068 ../fish/guestfish-actions.pod:1388
9250 msgid "Return the current search path."
9251 msgstr ""
9252
9253 #. type: textblock
9254 #: ../src/guestfs-actions.pod:2070 ../fish/guestfish-actions.pod:1390
9255 msgid ""
9256 "This is always non-NULL.  If it wasn't set already, then this will return "
9257 "the default path."
9258 msgstr ""
9259
9260 #. type: textblock
9261 #: ../src/guestfs-actions.pod:2073 ../src/guestfs-actions.pod:2102
9262 msgid ""
9263 "This function returns a string, or NULL on error.  The string is owned by "
9264 "the guest handle and must I<not> be freed."
9265 msgstr ""
9266
9267 #. type: =head2
9268 #: ../src/guestfs-actions.pod:2078
9269 msgid "guestfs_get_pid"
9270 msgstr ""
9271
9272 #. type: verbatim
9273 #: ../src/guestfs-actions.pod:2080
9274 #, no-wrap
9275 msgid ""
9276 " int\n"
9277 " guestfs_get_pid (guestfs_h *g);\n"
9278 "\n"
9279 msgstr ""
9280
9281 #. type: textblock
9282 #: ../src/guestfs-actions.pod:2083 ../fish/guestfish-actions.pod:1399
9283 msgid ""
9284 "Return the process ID of the qemu subprocess.  If there is no qemu "
9285 "subprocess, then this will return an error."
9286 msgstr ""
9287
9288 #. type: textblock
9289 #: ../src/guestfs-actions.pod:2086 ../fish/guestfish-actions.pod:1402
9290 msgid "This is an internal call used for debugging and testing."
9291 msgstr ""
9292
9293 #. type: textblock
9294 #: ../src/guestfs-actions.pod:2090
9295 msgid "(Added in 1.0.56)"
9296 msgstr ""
9297
9298 #. type: =head2
9299 #: ../src/guestfs-actions.pod:2092
9300 msgid "guestfs_get_qemu"
9301 msgstr ""
9302
9303 #. type: verbatim
9304 #: ../src/guestfs-actions.pod:2094
9305 #, no-wrap
9306 msgid ""
9307 " const char *\n"
9308 " guestfs_get_qemu (guestfs_h *g);\n"
9309 "\n"
9310 msgstr ""
9311
9312 #. type: textblock
9313 #: ../src/guestfs-actions.pod:2097 ../fish/guestfish-actions.pod:1408
9314 msgid "Return the current qemu binary."
9315 msgstr ""
9316
9317 #. type: textblock
9318 #: ../src/guestfs-actions.pod:2099 ../fish/guestfish-actions.pod:1410
9319 msgid ""
9320 "This is always non-NULL.  If it wasn't set already, then this will return "
9321 "the default qemu binary name."
9322 msgstr ""
9323
9324 #. type: textblock
9325 #: ../src/guestfs-actions.pod:2105 ../src/guestfs-actions.pod:6343
9326 msgid "(Added in 1.0.6)"
9327 msgstr ""
9328
9329 #. type: =head2
9330 #: ../src/guestfs-actions.pod:2107
9331 msgid "guestfs_get_recovery_proc"
9332 msgstr ""
9333
9334 #. type: verbatim
9335 #: ../src/guestfs-actions.pod:2109
9336 #, no-wrap
9337 msgid ""
9338 " int\n"
9339 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9340 "\n"
9341 msgstr ""
9342
9343 #. type: textblock
9344 #: ../src/guestfs-actions.pod:2112 ../fish/guestfish-actions.pod:1417
9345 msgid "Return the recovery process enabled flag."
9346 msgstr ""
9347
9348 #. type: textblock
9349 #: ../src/guestfs-actions.pod:2116 ../src/guestfs-actions.pod:3650 ../src/guestfs-actions.pod:3981 ../src/guestfs-actions.pod:4384 ../src/guestfs-actions.pod:4416 ../src/guestfs-actions.pod:5598 ../src/guestfs-actions.pod:5941 ../src/guestfs-actions.pod:6367 ../src/guestfs-actions.pod:7058 ../src/guestfs-actions.pod:7078 ../src/guestfs-actions.pod:7270
9350 msgid "(Added in 1.0.77)"
9351 msgstr ""
9352
9353 #. type: =head2
9354 #: ../src/guestfs-actions.pod:2118
9355 msgid "guestfs_get_selinux"
9356 msgstr ""
9357
9358 #. type: verbatim
9359 #: ../src/guestfs-actions.pod:2120
9360 #, no-wrap
9361 msgid ""
9362 " int\n"
9363 " guestfs_get_selinux (guestfs_h *g);\n"
9364 "\n"
9365 msgstr ""
9366
9367 #. type: textblock
9368 #: ../src/guestfs-actions.pod:2123
9369 msgid ""
9370 "This returns the current setting of the selinux flag which is passed to the "
9371 "appliance at boot time.  See C<guestfs_set_selinux>."
9372 msgstr ""
9373
9374 #. type: textblock
9375 #: ../src/guestfs-actions.pod:2131 ../src/guestfs-actions.pod:2194 ../src/guestfs-actions.pod:6386 ../src/guestfs-actions.pod:6444
9376 msgid "(Added in 1.0.67)"
9377 msgstr ""
9378
9379 #. type: =head2
9380 #: ../src/guestfs-actions.pod:2133
9381 msgid "guestfs_get_state"
9382 msgstr ""
9383
9384 #. type: verbatim
9385 #: ../src/guestfs-actions.pod:2135
9386 #, no-wrap
9387 msgid ""
9388 " int\n"
9389 " guestfs_get_state (guestfs_h *g);\n"
9390 "\n"
9391 msgstr ""
9392
9393 #. type: textblock
9394 #: ../src/guestfs-actions.pod:2138 ../fish/guestfish-actions.pod:1433
9395 msgid ""
9396 "This returns the current state as an opaque integer.  This is only useful "
9397 "for printing debug and internal error messages."
9398 msgstr ""
9399
9400 #. type: textblock
9401 #: ../src/guestfs-actions.pod:2141 ../src/guestfs-actions.pod:3421 ../src/guestfs-actions.pod:3450 ../src/guestfs-actions.pod:3511 ../src/guestfs-actions.pod:3538 ../fish/guestfish-actions.pod:1436 ../fish/guestfish-actions.pod:2356 ../fish/guestfish-actions.pod:2374 ../fish/guestfish-actions.pod:2412 ../fish/guestfish-actions.pod:2428
9402 msgid "For more information on states, see L<guestfs(3)>."
9403 msgstr ""
9404
9405 #. type: =head2
9406 #: ../src/guestfs-actions.pod:2147
9407 msgid "guestfs_get_trace"
9408 msgstr ""
9409
9410 #. type: verbatim
9411 #: ../src/guestfs-actions.pod:2149
9412 #, no-wrap
9413 msgid ""
9414 " int\n"
9415 " guestfs_get_trace (guestfs_h *g);\n"
9416 "\n"
9417 msgstr ""
9418
9419 #. type: textblock
9420 #: ../src/guestfs-actions.pod:2152 ../fish/guestfish-actions.pod:1442
9421 msgid "Return the command trace flag."
9422 msgstr ""
9423
9424 #. type: =head2
9425 #: ../src/guestfs-actions.pod:2158
9426 msgid "guestfs_get_umask"
9427 msgstr ""
9428
9429 #. type: verbatim
9430 #: ../src/guestfs-actions.pod:2160
9431 #, no-wrap
9432 msgid ""
9433 " int\n"
9434 " guestfs_get_umask (guestfs_h *g);\n"
9435 "\n"
9436 msgstr ""
9437
9438 #. type: textblock
9439 #: ../src/guestfs-actions.pod:2163
9440 msgid ""
9441 "Return the current umask.  By default the umask is C<022> unless it has been "
9442 "set by calling C<guestfs_umask>."
9443 msgstr ""
9444
9445 #. type: =head2
9446 #: ../src/guestfs-actions.pod:2170
9447 msgid "guestfs_get_verbose"
9448 msgstr ""
9449
9450 #. type: verbatim
9451 #: ../src/guestfs-actions.pod:2172
9452 #, no-wrap
9453 msgid ""
9454 " int\n"
9455 " guestfs_get_verbose (guestfs_h *g);\n"
9456 "\n"
9457 msgstr ""
9458
9459 #. type: textblock
9460 #: ../src/guestfs-actions.pod:2175 ../fish/guestfish-actions.pod:1455
9461 msgid "This returns the verbose messages flag."
9462 msgstr ""
9463
9464 #. type: =head2
9465 #: ../src/guestfs-actions.pod:2181
9466 msgid "guestfs_getcon"
9467 msgstr ""
9468
9469 #. type: verbatim
9470 #: ../src/guestfs-actions.pod:2183
9471 #, no-wrap
9472 msgid ""
9473 " char *\n"
9474 " guestfs_getcon (guestfs_h *g);\n"
9475 "\n"
9476 msgstr ""
9477
9478 #. type: textblock
9479 #: ../src/guestfs-actions.pod:2186 ../fish/guestfish-actions.pod:1461
9480 msgid "This gets the SELinux security context of the daemon."
9481 msgstr ""
9482
9483 #. type: textblock
9484 #: ../src/guestfs-actions.pod:2188
9485 msgid "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9486 msgstr ""
9487
9488 #. type: =head2
9489 #: ../src/guestfs-actions.pod:2196
9490 msgid "guestfs_getxattr"
9491 msgstr ""
9492
9493 #. type: verbatim
9494 #: ../src/guestfs-actions.pod:2198
9495 #, no-wrap
9496 msgid ""
9497 " char *\n"
9498 " guestfs_getxattr (guestfs_h *g,\n"
9499 "                   const char *path,\n"
9500 "                   const char *name,\n"
9501 "                   size_t *size_r);\n"
9502 "\n"
9503 msgstr ""
9504
9505 #. type: textblock
9506 #: ../src/guestfs-actions.pod:2204
9507 msgid ""
9508 "Get a single extended attribute from file C<path> named C<name>.  This call "
9509 "follows symlinks.  If you want to lookup an extended attribute for the "
9510 "symlink itself, use C<guestfs_lgetxattr>."
9511 msgstr ""
9512
9513 #. type: textblock
9514 #: ../src/guestfs-actions.pod:2208 ../src/guestfs-actions.pod:3664
9515 msgid ""
9516 "Normally it is better to get all extended attributes from a file in one go "
9517 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9518 "implementations are buggy and do not provide a way to list out attributes.  "
9519 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9520 "extended attributes you want in advance and call this function."
9521 msgstr ""
9522
9523 #. type: textblock
9524 #: ../src/guestfs-actions.pod:2215 ../src/guestfs-actions.pod:3671 ../fish/guestfish-actions.pod:1481 ../fish/guestfish-actions.pod:2508
9525 msgid ""
9526 "Extended attribute values are blobs of binary data.  If there is no extended "
9527 "attribute named C<name>, this returns an error."
9528 msgstr ""
9529
9530 #. type: textblock
9531 #: ../src/guestfs-actions.pod:2218
9532 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9533 msgstr ""
9534
9535 #. type: textblock
9536 #: ../src/guestfs-actions.pod:2220 ../src/guestfs-actions.pod:2411 ../src/guestfs-actions.pod:2881 ../src/guestfs-actions.pod:3676 ../src/guestfs-actions.pod:5591 ../src/guestfs-actions.pod:5617 ../src/guestfs-actions.pod:5798
9537 msgid ""
9538 "This function returns a buffer, or NULL on error.  The size of the returned "
9539 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9540 "after use>."
9541 msgstr ""
9542
9543 #. type: textblock
9544 #: ../src/guestfs-actions.pod:2224 ../src/guestfs-actions.pod:3680
9545 msgid "(Added in 1.7.24)"
9546 msgstr ""
9547
9548 #. type: =head2
9549 #: ../src/guestfs-actions.pod:2226
9550 msgid "guestfs_getxattrs"
9551 msgstr ""
9552
9553 #. type: verbatim
9554 #: ../src/guestfs-actions.pod:2228
9555 #, no-wrap
9556 msgid ""
9557 " struct guestfs_xattr_list *\n"
9558 " guestfs_getxattrs (guestfs_h *g,\n"
9559 "                    const char *path);\n"
9560 "\n"
9561 msgstr ""
9562
9563 #. type: textblock
9564 #: ../src/guestfs-actions.pod:2232 ../fish/guestfish-actions.pod:1490
9565 msgid "This call lists the extended attributes of the file or directory C<path>."
9566 msgstr ""
9567
9568 #. type: textblock
9569 #: ../src/guestfs-actions.pod:2235 ../fish/guestfish-actions.pod:1493
9570 msgid ""
9571 "At the system call level, this is a combination of the L<listxattr(2)> and "
9572 "L<getxattr(2)> calls."
9573 msgstr ""
9574
9575 #. type: textblock
9576 #: ../src/guestfs-actions.pod:2238
9577 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9578 msgstr ""
9579
9580 #. type: textblock
9581 #: ../src/guestfs-actions.pod:2240 ../src/guestfs-actions.pod:3692 ../src/guestfs-actions.pod:4380
9582 msgid ""
9583 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9584 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9585 msgstr ""
9586
9587 #. type: textblock
9588 #: ../src/guestfs-actions.pod:2244 ../src/guestfs-actions.pod:3696 ../src/guestfs-actions.pod:3895 ../src/guestfs-actions.pod:3931 ../src/guestfs-actions.pod:5971 ../src/guestfs-actions.pod:6463 ../src/guestfs-actions.pod:7828
9589 msgid "(Added in 1.0.59)"
9590 msgstr ""
9591
9592 #. type: =head2
9593 #: ../src/guestfs-actions.pod:2246
9594 msgid "guestfs_glob_expand"
9595 msgstr ""
9596
9597 #. type: verbatim
9598 #: ../src/guestfs-actions.pod:2248
9599 #, no-wrap
9600 msgid ""
9601 " char **\n"
9602 " guestfs_glob_expand (guestfs_h *g,\n"
9603 "                      const char *pattern);\n"
9604 "\n"
9605 msgstr ""
9606
9607 #. type: textblock
9608 #: ../src/guestfs-actions.pod:2252 ../fish/guestfish-actions.pod:1502
9609 msgid ""
9610 "This command searches for all the pathnames matching C<pattern> according to "
9611 "the wildcard expansion rules used by the shell."
9612 msgstr ""
9613
9614 #. type: textblock
9615 #: ../src/guestfs-actions.pod:2256 ../fish/guestfish-actions.pod:1506
9616 msgid "If no paths match, then this returns an empty list (note: not an error)."
9617 msgstr ""
9618
9619 #. type: textblock
9620 #: ../src/guestfs-actions.pod:2259 ../fish/guestfish-actions.pod:1509
9621 msgid ""
9622 "It is just a wrapper around the C L<glob(3)> function with flags "
9623 "C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
9624 msgstr ""
9625
9626 #. type: textblock
9627 #: ../src/guestfs-actions.pod:2267 ../src/guestfs-actions.pod:6656 ../src/guestfs-actions.pod:6673
9628 msgid "(Added in 1.0.50)"
9629 msgstr ""
9630
9631 #. type: =head2
9632 #: ../src/guestfs-actions.pod:2269
9633 msgid "guestfs_grep"
9634 msgstr ""
9635
9636 #. type: verbatim
9637 #: ../src/guestfs-actions.pod:2271
9638 #, no-wrap
9639 msgid ""
9640 " char **\n"
9641 " guestfs_grep (guestfs_h *g,\n"
9642 "               const char *regex,\n"
9643 "               const char *path);\n"
9644 "\n"
9645 msgstr ""
9646
9647 #. type: textblock
9648 #: ../src/guestfs-actions.pod:2276 ../fish/guestfish-actions.pod:1517
9649 msgid "This calls the external C<grep> program and returns the matching lines."
9650 msgstr ""
9651
9652 #. type: =head2
9653 #: ../src/guestfs-actions.pod:2288
9654 msgid "guestfs_grepi"
9655 msgstr ""
9656
9657 #. type: verbatim
9658 #: ../src/guestfs-actions.pod:2290
9659 #, no-wrap
9660 msgid ""
9661 " char **\n"
9662 " guestfs_grepi (guestfs_h *g,\n"
9663 "                const char *regex,\n"
9664 "                const char *path);\n"
9665 "\n"
9666 msgstr ""
9667
9668 #. type: textblock
9669 #: ../src/guestfs-actions.pod:2295 ../fish/guestfish-actions.pod:1527
9670 msgid "This calls the external C<grep -i> program and returns the matching lines."
9671 msgstr ""
9672
9673 #. type: =head2
9674 #: ../src/guestfs-actions.pod:2307
9675 msgid "guestfs_grub_install"
9676 msgstr ""
9677
9678 #. type: verbatim
9679 #: ../src/guestfs-actions.pod:2309
9680 #, no-wrap
9681 msgid ""
9682 " int\n"
9683 " guestfs_grub_install (guestfs_h *g,\n"
9684 "                       const char *root,\n"
9685 "                       const char *device);\n"
9686 "\n"
9687 msgstr ""
9688
9689 #. type: textblock
9690 #: ../src/guestfs-actions.pod:2314 ../fish/guestfish-actions.pod:1537
9691 msgid ""
9692 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
9693 "the root directory being C<root>."
9694 msgstr ""
9695
9696 #. type: textblock
9697 #: ../src/guestfs-actions.pod:2317 ../fish/guestfish-actions.pod:1540
9698 msgid ""
9699 "Note: If grub-install reports the error \"No suitable drive was found in the "
9700 "generated device map.\" it may be that you need to create a "
9701 "C</boot/grub/device.map> file first that contains the mapping between grub "
9702 "device names and Linux device names.  It is usually sufficient to create a "
9703 "file containing:"
9704 msgstr ""
9705
9706 #. type: verbatim
9707 #: ../src/guestfs-actions.pod:2324 ../fish/guestfish-actions.pod:1547
9708 #, no-wrap
9709 msgid ""
9710 " (hd0) /dev/vda\n"
9711 "\n"
9712 msgstr ""
9713
9714 #. type: textblock
9715 #: ../src/guestfs-actions.pod:2326 ../fish/guestfish-actions.pod:1549
9716 msgid "replacing C</dev/vda> with the name of the installation device."
9717 msgstr ""
9718
9719 #. type: textblock
9720 #: ../src/guestfs-actions.pod:2330
9721 msgid "(Added in 1.0.17)"
9722 msgstr ""
9723
9724 #. type: =head2
9725 #: ../src/guestfs-actions.pod:2332
9726 msgid "guestfs_head"
9727 msgstr ""
9728
9729 #. type: verbatim
9730 #: ../src/guestfs-actions.pod:2334
9731 #, no-wrap
9732 msgid ""
9733 " char **\n"
9734 " guestfs_head (guestfs_h *g,\n"
9735 "               const char *path);\n"
9736 "\n"
9737 msgstr ""
9738
9739 #. type: textblock
9740 #: ../src/guestfs-actions.pod:2338 ../fish/guestfish-actions.pod:1555
9741 msgid ""
9742 "This command returns up to the first 10 lines of a file as a list of "
9743 "strings."
9744 msgstr ""
9745
9746 #. type: =head2
9747 #: ../src/guestfs-actions.pod:2350
9748 msgid "guestfs_head_n"
9749 msgstr ""
9750
9751 #. type: verbatim
9752 #: ../src/guestfs-actions.pod:2352
9753 #, no-wrap
9754 msgid ""
9755 " char **\n"
9756 " guestfs_head_n (guestfs_h *g,\n"
9757 "                 int nrlines,\n"
9758 "                 const char *path);\n"
9759 "\n"
9760 msgstr ""
9761
9762 #. type: textblock
9763 #: ../src/guestfs-actions.pod:2357 ../fish/guestfish-actions.pod:1565
9764 msgid ""
9765 "If the parameter C<nrlines> is a positive number, this returns the first "
9766 "C<nrlines> lines of the file C<path>."
9767 msgstr ""
9768
9769 #. type: textblock
9770 #: ../src/guestfs-actions.pod:2360 ../fish/guestfish-actions.pod:1568
9771 msgid ""
9772 "If the parameter C<nrlines> is a negative number, this returns lines from "
9773 "the file C<path>, excluding the last C<nrlines> lines."
9774 msgstr ""
9775
9776 #. type: textblock
9777 #: ../src/guestfs-actions.pod:2363 ../src/guestfs-actions.pod:6953 ../fish/guestfish-actions.pod:1571 ../fish/guestfish-actions.pod:4616
9778 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
9779 msgstr ""
9780
9781 #. type: =head2
9782 #: ../src/guestfs-actions.pod:2374
9783 msgid "guestfs_hexdump"
9784 msgstr ""
9785
9786 #. type: verbatim
9787 #: ../src/guestfs-actions.pod:2376
9788 #, no-wrap
9789 msgid ""
9790 " char *\n"
9791 " guestfs_hexdump (guestfs_h *g,\n"
9792 "                  const char *path);\n"
9793 "\n"
9794 msgstr ""
9795
9796 #. type: textblock
9797 #: ../src/guestfs-actions.pod:2380 ../fish/guestfish-actions.pod:1580
9798 msgid ""
9799 "This runs C<hexdump -C> on the given C<path>.  The result is the "
9800 "human-readable, canonical hex dump of the file."
9801 msgstr ""
9802
9803 #. type: textblock
9804 #: ../src/guestfs-actions.pod:2389 ../src/guestfs-actions.pod:6737 ../src/guestfs-actions.pod:6792
9805 msgid "(Added in 1.0.22)"
9806 msgstr ""
9807
9808 #. type: =head2
9809 #: ../src/guestfs-actions.pod:2391
9810 msgid "guestfs_initrd_cat"
9811 msgstr ""
9812
9813 #. type: verbatim
9814 #: ../src/guestfs-actions.pod:2393
9815 #, no-wrap
9816 msgid ""
9817 " char *\n"
9818 " guestfs_initrd_cat (guestfs_h *g,\n"
9819 "                     const char *initrdpath,\n"
9820 "                     const char *filename,\n"
9821 "                     size_t *size_r);\n"
9822 "\n"
9823 msgstr ""
9824
9825 #. type: textblock
9826 #: ../src/guestfs-actions.pod:2399 ../fish/guestfish-actions.pod:1590
9827 msgid ""
9828 "This command unpacks the file C<filename> from the initrd file called "
9829 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
9830 "character."
9831 msgstr ""
9832
9833 #. type: textblock
9834 #: ../src/guestfs-actions.pod:2403 ../fish/guestfish-actions.pod:1594
9835 msgid ""
9836 "For example, in guestfish you could use the following command to examine the "
9837 "boot script (usually called C</init>)  contained in a Linux initrd or "
9838 "initramfs image:"
9839 msgstr ""
9840
9841 #. type: verbatim
9842 #: ../src/guestfs-actions.pod:2407 ../fish/guestfish-actions.pod:1598
9843 #, no-wrap
9844 msgid ""
9845 " initrd-cat /boot/initrd-<version>.img init\n"
9846 "\n"
9847 msgstr ""
9848
9849 #. type: textblock
9850 #: ../src/guestfs-actions.pod:2409
9851 msgid "See also C<guestfs_initrd_list>."
9852 msgstr ""
9853
9854 #. type: =head2
9855 #: ../src/guestfs-actions.pod:2420
9856 msgid "guestfs_initrd_list"
9857 msgstr ""
9858
9859 #. type: verbatim
9860 #: ../src/guestfs-actions.pod:2422
9861 #, no-wrap
9862 msgid ""
9863 " char **\n"
9864 " guestfs_initrd_list (guestfs_h *g,\n"
9865 "                      const char *path);\n"
9866 "\n"
9867 msgstr ""
9868
9869 #. type: textblock
9870 #: ../src/guestfs-actions.pod:2426 ../fish/guestfish-actions.pod:1609
9871 msgid "This command lists out files contained in an initrd."
9872 msgstr ""
9873
9874 #. type: textblock
9875 #: ../src/guestfs-actions.pod:2428 ../fish/guestfish-actions.pod:1611
9876 msgid ""
9877 "The files are listed without any initial C</> character.  The files are "
9878 "listed in the order they appear (not necessarily alphabetical).  Directory "
9879 "names are listed as separate items."
9880 msgstr ""
9881
9882 #. type: textblock
9883 #: ../src/guestfs-actions.pod:2432 ../fish/guestfish-actions.pod:1615
9884 msgid ""
9885 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
9886 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
9887 "files)."
9888 msgstr ""
9889
9890 #. type: =head2
9891 #: ../src/guestfs-actions.pod:2442
9892 msgid "guestfs_inotify_add_watch"
9893 msgstr ""
9894
9895 #. type: verbatim
9896 #: ../src/guestfs-actions.pod:2444
9897 #, no-wrap
9898 msgid ""
9899 " int64_t\n"
9900 " guestfs_inotify_add_watch (guestfs_h *g,\n"
9901 "                            const char *path,\n"
9902 "                            int mask);\n"
9903 "\n"
9904 msgstr ""
9905
9906 #. type: textblock
9907 #: ../src/guestfs-actions.pod:2449 ../fish/guestfish-actions.pod:1623
9908 msgid "Watch C<path> for the events listed in C<mask>."
9909 msgstr ""
9910
9911 #. type: textblock
9912 #: ../src/guestfs-actions.pod:2451 ../fish/guestfish-actions.pod:1625
9913 msgid ""
9914 "Note that if C<path> is a directory then events within that directory are "
9915 "watched, but this does I<not> happen recursively (in subdirectories)."
9916 msgstr ""
9917
9918 #. type: textblock
9919 #: ../src/guestfs-actions.pod:2455 ../fish/guestfish-actions.pod:1629
9920 msgid ""
9921 "Note for non-C or non-Linux callers: the inotify events are defined by the "
9922 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
9923 msgstr ""
9924
9925 #. type: =head2
9926 #: ../src/guestfs-actions.pod:2463
9927 msgid "guestfs_inotify_close"
9928 msgstr ""
9929
9930 #. type: verbatim
9931 #: ../src/guestfs-actions.pod:2465
9932 #, no-wrap
9933 msgid ""
9934 " int\n"
9935 " guestfs_inotify_close (guestfs_h *g);\n"
9936 "\n"
9937 msgstr ""
9938
9939 #. type: textblock
9940 #: ../src/guestfs-actions.pod:2468 ../fish/guestfish-actions.pod:1637
9941 msgid ""
9942 "This closes the inotify handle which was previously opened by inotify_init.  "
9943 "It removes all watches, throws away any pending events, and deallocates all "
9944 "resources."
9945 msgstr ""
9946
9947 #. type: =head2
9948 #: ../src/guestfs-actions.pod:2476
9949 msgid "guestfs_inotify_files"
9950 msgstr ""
9951
9952 #. type: verbatim
9953 #: ../src/guestfs-actions.pod:2478
9954 #, no-wrap
9955 msgid ""
9956 " char **\n"
9957 " guestfs_inotify_files (guestfs_h *g);\n"
9958 "\n"
9959 msgstr ""
9960
9961 #. type: textblock
9962 #: ../src/guestfs-actions.pod:2481
9963 msgid ""
9964 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
9965 "returns a list of pathnames of objects that were touched.  The returned "
9966 "pathnames are sorted and deduplicated."
9967 msgstr ""
9968
9969 #. type: =head2
9970 #: ../src/guestfs-actions.pod:2491
9971 msgid "guestfs_inotify_init"
9972 msgstr ""
9973
9974 #. type: verbatim
9975 #: ../src/guestfs-actions.pod:2493
9976 #, no-wrap
9977 msgid ""
9978 " int\n"
9979 " guestfs_inotify_init (guestfs_h *g,\n"
9980 "                       int maxevents);\n"
9981 "\n"
9982 msgstr ""
9983
9984 #. type: textblock
9985 #: ../src/guestfs-actions.pod:2497 ../fish/guestfish-actions.pod:1653
9986 msgid ""
9987 "This command creates a new inotify handle.  The inotify subsystem can be "
9988 "used to notify events which happen to objects in the guest filesystem."
9989 msgstr ""
9990
9991 #. type: textblock
9992 #: ../src/guestfs-actions.pod:2501
9993 msgid ""
9994 "C<maxevents> is the maximum number of events which will be queued up between "
9995 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
9996 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
9997 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
9998 "throws away events, but records the fact that it threw them away by setting "
9999 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10000 "C<guestfs_inotify_read>)."
10001 msgstr ""
10002
10003 #. type: textblock
10004 #: ../src/guestfs-actions.pod:2511
10005 msgid ""
10006 "Before any events are generated, you have to add some watches to the "
10007 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10008 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10009 msgstr ""
10010
10011 #. type: textblock
10012 #: ../src/guestfs-actions.pod:2517
10013 msgid ""
10014 "Queued up events should be read periodically by calling "
10015 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
10016 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10017 "often enough then you risk the internal queue overflowing."
10018 msgstr ""
10019
10020 #. type: textblock
10021 #: ../src/guestfs-actions.pod:2524
10022 msgid ""
10023 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10024 "This also removes any watches automatically."
10025 msgstr ""
10026
10027 #. type: textblock
10028 #: ../src/guestfs-actions.pod:2528 ../fish/guestfish-actions.pod:1684
10029 msgid ""
10030 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10031 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10032 "that there is one global inotify handle per libguestfs instance."
10033 msgstr ""
10034
10035 #. type: =head2
10036 #: ../src/guestfs-actions.pod:2537
10037 msgid "guestfs_inotify_read"
10038 msgstr ""
10039
10040 #. type: verbatim
10041 #: ../src/guestfs-actions.pod:2539
10042 #, no-wrap
10043 msgid ""
10044 " struct guestfs_inotify_event_list *\n"
10045 " guestfs_inotify_read (guestfs_h *g);\n"
10046 "\n"
10047 msgstr ""
10048
10049 #. type: textblock
10050 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1693
10051 msgid ""
10052 "Return the complete queue of events that have happened since the previous "
10053 "read call."
10054 msgstr ""
10055
10056 #. type: textblock
10057 #: ../src/guestfs-actions.pod:2545 ../fish/guestfish-actions.pod:1696
10058 msgid "If no events have happened, this returns an empty list."
10059 msgstr ""
10060
10061 #. type: textblock
10062 #: ../src/guestfs-actions.pod:2547 ../fish/guestfish-actions.pod:1698
10063 msgid ""
10064 "I<Note>: In order to make sure that all events have been read, you must call "
10065 "this function repeatedly until it returns an empty list.  The reason is that "
10066 "the call will read events up to the maximum appliance-to-host message size "
10067 "and leave remaining events in the queue."
10068 msgstr ""
10069
10070 #. type: textblock
10071 #: ../src/guestfs-actions.pod:2553
10072 msgid ""
10073 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10074 "there was an error.  I<The caller must call "
10075 "C<guestfs_free_inotify_event_list> after use>."
10076 msgstr ""
10077
10078 #. type: =head2
10079 #: ../src/guestfs-actions.pod:2559
10080 msgid "guestfs_inotify_rm_watch"
10081 msgstr ""
10082
10083 #. type: verbatim
10084 #: ../src/guestfs-actions.pod:2561
10085 #, no-wrap
10086 msgid ""
10087 " int\n"
10088 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10089 "                           int wd);\n"
10090 "\n"
10091 msgstr ""
10092
10093 #. type: textblock
10094 #: ../src/guestfs-actions.pod:2565
10095 msgid ""
10096 "Remove a previously defined inotify watch.  See "
10097 "C<guestfs_inotify_add_watch>."
10098 msgstr ""
10099
10100 #. type: =head2
10101 #: ../src/guestfs-actions.pod:2572
10102 msgid "guestfs_inspect_get_arch"
10103 msgstr ""
10104
10105 #. type: verbatim
10106 #: ../src/guestfs-actions.pod:2574
10107 #, no-wrap
10108 msgid ""
10109 " char *\n"
10110 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10111 "                           const char *root);\n"
10112 "\n"
10113 msgstr ""
10114
10115 #. type: textblock
10116 #: ../src/guestfs-actions.pod:2578
10117 msgid ""
10118 "This returns the architecture of the inspected operating system.  The "
10119 "possible return values are listed under C<guestfs_file_architecture>."
10120 msgstr ""
10121
10122 #. type: textblock
10123 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1719
10124 msgid ""
10125 "If the architecture could not be determined, then the string C<unknown> is "
10126 "returned."
10127 msgstr ""
10128
10129 #. type: textblock
10130 #: ../src/guestfs-actions.pod:2585 ../src/guestfs-actions.pod:2675 ../src/guestfs-actions.pod:2779 ../src/guestfs-actions.pod:2798 ../src/guestfs-actions.pod:2929 ../src/guestfs-actions.pod:3012 ../src/guestfs-actions.pod:3040 ../src/guestfs-actions.pod:3061 ../src/guestfs-actions.pod:3114 ../src/guestfs-actions.pod:3154 ../src/guestfs-actions.pod:3174 ../src/guestfs-actions.pod:3194 ../src/guestfs-actions.pod:3211 ../src/guestfs-actions.pod:3227 ../src/guestfs-actions.pod:3245 ../src/guestfs-actions.pod:3347 ../src/guestfs-actions.pod:3388 ../fish/guestfish-actions.pod:1722 ../fish/guestfish-actions.pod:1805 ../fish/guestfish-actions.pod:1884 ../fish/guestfish-actions.pod:1896 ../fish/guestfish-actions.pod:1980 ../fish/guestfish-actions.pod:2041 ../fish/guestfish-actions.pod:2062 ../fish/guestfish-actions.pod:2076 ../fish/guestfish-actions.pod:2116 ../fish/guestfish-actions.pod:2148 ../fish/guestfish-actions.pod:2161 ../fish/guestfish-actions.pod:2174 ../fish/guestfish-actions.pod:2184 ../fish/guestfish-actions.pod:2194 ../fish/guestfish-actions.pod:2206 ../fish/guestfish-actions.pod:2302 ../fish/guestfish-actions.pod:2336
10131 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10132 msgstr ""
10133
10134 #. type: =head2
10135 #: ../src/guestfs-actions.pod:2592
10136 msgid "guestfs_inspect_get_distro"
10137 msgstr ""
10138
10139 #. type: verbatim
10140 #: ../src/guestfs-actions.pod:2594
10141 #, no-wrap
10142 msgid ""
10143 " char *\n"
10144 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10145 "                             const char *root);\n"
10146 "\n"
10147 msgstr ""
10148
10149 #. type: textblock
10150 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1728
10151 msgid "This returns the distro (distribution) of the inspected operating system."
10152 msgstr ""
10153
10154 #. type: textblock
10155 #: ../src/guestfs-actions.pod:2601 ../fish/guestfish-actions.pod:1731
10156 msgid "Currently defined distros are:"
10157 msgstr ""
10158
10159 #. type: =item
10160 #: ../src/guestfs-actions.pod:2605 ../fish/guestfish-actions.pod:1735
10161 msgid "\"archlinux\""
10162 msgstr ""
10163
10164 #. type: textblock
10165 #: ../src/guestfs-actions.pod:2607 ../fish/guestfish-actions.pod:1737
10166 msgid "Arch Linux."
10167 msgstr ""
10168
10169 #. type: =item
10170 #: ../src/guestfs-actions.pod:2609 ../fish/guestfish-actions.pod:1739
10171 msgid "\"centos\""
10172 msgstr ""
10173
10174 #. type: textblock
10175 #: ../src/guestfs-actions.pod:2611 ../fish/guestfish-actions.pod:1741
10176 msgid "CentOS."
10177 msgstr ""
10178
10179 #. type: =item
10180 #: ../src/guestfs-actions.pod:2613 ../fish/guestfish-actions.pod:1743
10181 msgid "\"debian\""
10182 msgstr ""
10183
10184 #. type: textblock
10185 #: ../src/guestfs-actions.pod:2615 ../fish/guestfish-actions.pod:1745
10186 msgid "Debian."
10187 msgstr ""
10188
10189 #. type: =item
10190 #: ../src/guestfs-actions.pod:2617 ../fish/guestfish-actions.pod:1747
10191 msgid "\"fedora\""
10192 msgstr ""
10193
10194 #. type: textblock
10195 #: ../src/guestfs-actions.pod:2619 ../fish/guestfish-actions.pod:1749
10196 msgid "Fedora."
10197 msgstr ""
10198
10199 #. type: =item
10200 #: ../src/guestfs-actions.pod:2621 ../fish/guestfish-actions.pod:1751
10201 msgid "\"gentoo\""
10202 msgstr ""
10203
10204 #. type: textblock
10205 #: ../src/guestfs-actions.pod:2623 ../fish/guestfish-actions.pod:1753
10206 msgid "Gentoo."
10207 msgstr ""
10208
10209 #. type: =item
10210 #: ../src/guestfs-actions.pod:2625 ../fish/guestfish-actions.pod:1755
10211 msgid "\"linuxmint\""
10212 msgstr ""
10213
10214 #. type: textblock
10215 #: ../src/guestfs-actions.pod:2627 ../fish/guestfish-actions.pod:1757
10216 msgid "Linux Mint."
10217 msgstr ""
10218
10219 #. type: =item
10220 #: ../src/guestfs-actions.pod:2629 ../fish/guestfish-actions.pod:1759
10221 msgid "\"mandriva\""
10222 msgstr ""
10223
10224 #. type: textblock
10225 #: ../src/guestfs-actions.pod:2631 ../fish/guestfish-actions.pod:1761
10226 msgid "Mandriva."
10227 msgstr ""
10228
10229 #. type: =item
10230 #: ../src/guestfs-actions.pod:2633 ../fish/guestfish-actions.pod:1763
10231 msgid "\"meego\""
10232 msgstr ""
10233
10234 #. type: textblock
10235 #: ../src/guestfs-actions.pod:2635 ../fish/guestfish-actions.pod:1765
10236 msgid "MeeGo."
10237 msgstr ""
10238
10239 #. type: =item
10240 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1767
10241 msgid "\"pardus\""
10242 msgstr ""
10243
10244 #. type: textblock
10245 #: ../src/guestfs-actions.pod:2639 ../fish/guestfish-actions.pod:1769
10246 msgid "Pardus."
10247 msgstr ""
10248
10249 #. type: =item
10250 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1771
10251 msgid "\"redhat-based\""
10252 msgstr ""
10253
10254 #. type: textblock
10255 #: ../src/guestfs-actions.pod:2643 ../fish/guestfish-actions.pod:1773
10256 msgid "Some Red Hat-derived distro."
10257 msgstr ""
10258
10259 #. type: =item
10260 #: ../src/guestfs-actions.pod:2645 ../fish/guestfish-actions.pod:1775
10261 msgid "\"rhel\""
10262 msgstr ""
10263
10264 #. type: textblock
10265 #: ../src/guestfs-actions.pod:2647 ../fish/guestfish-actions.pod:1777
10266 msgid "Red Hat Enterprise Linux."
10267 msgstr ""
10268
10269 #. type: =item
10270 #: ../src/guestfs-actions.pod:2649 ../fish/guestfish-actions.pod:1779
10271 msgid "\"scientificlinux\""
10272 msgstr ""
10273
10274 #. type: textblock
10275 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1781
10276 msgid "Scientific Linux."
10277 msgstr ""
10278
10279 #. type: =item
10280 #: ../src/guestfs-actions.pod:2653 ../fish/guestfish-actions.pod:1783
10281 msgid "\"slackware\""
10282 msgstr ""
10283
10284 #. type: textblock
10285 #: ../src/guestfs-actions.pod:2655 ../fish/guestfish-actions.pod:1785
10286 msgid "Slackware."
10287 msgstr ""
10288
10289 #. type: =item
10290 #: ../src/guestfs-actions.pod:2657 ../fish/guestfish-actions.pod:1787
10291 msgid "\"ubuntu\""
10292 msgstr ""
10293
10294 #. type: textblock
10295 #: ../src/guestfs-actions.pod:2659 ../fish/guestfish-actions.pod:1789
10296 msgid "Ubuntu."
10297 msgstr ""
10298
10299 #. type: =item
10300 #: ../src/guestfs-actions.pod:2661 ../src/guestfs-actions.pod:2770 ../src/guestfs-actions.pod:3145 ../fish/guestfish-actions.pod:1791 ../fish/guestfish-actions.pod:1875 ../fish/guestfish-actions.pod:2139
10301 msgid "\"unknown\""
10302 msgstr ""
10303
10304 #. type: textblock
10305 #: ../src/guestfs-actions.pod:2663 ../fish/guestfish-actions.pod:1793
10306 msgid "The distro could not be determined."
10307 msgstr ""
10308
10309 #. type: =item
10310 #: ../src/guestfs-actions.pod:2665 ../src/guestfs-actions.pod:3137 ../fish/guestfish-actions.pod:1795 ../fish/guestfish-actions.pod:2131
10311 msgid "\"windows\""
10312 msgstr ""
10313
10314 #. type: textblock
10315 #: ../src/guestfs-actions.pod:2667 ../fish/guestfish-actions.pod:1797
10316 msgid ""
10317 "Windows does not have distributions.  This string is returned if the OS type "
10318 "is Windows."
10319 msgstr ""
10320
10321 #. type: textblock
10322 #: ../src/guestfs-actions.pod:2672 ../src/guestfs-actions.pod:2776 ../src/guestfs-actions.pod:3151 ../fish/guestfish-actions.pod:1802 ../fish/guestfish-actions.pod:1881 ../fish/guestfish-actions.pod:2145
10323 msgid ""
10324 "Future versions of libguestfs may return other strings here.  The caller "
10325 "should be prepared to handle any string."
10326 msgstr ""
10327
10328 #. type: =head2
10329 #: ../src/guestfs-actions.pod:2682
10330 msgid "guestfs_inspect_get_drive_mappings"
10331 msgstr ""
10332
10333 #. type: verbatim
10334 #: ../src/guestfs-actions.pod:2684
10335 #, no-wrap
10336 msgid ""
10337 " char **\n"
10338 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10339 "                                     const char *root);\n"
10340 "\n"
10341 msgstr ""
10342
10343 #. type: textblock
10344 #: ../src/guestfs-actions.pod:2688 ../fish/guestfish-actions.pod:1811
10345 msgid ""
10346 "This call is useful for Windows which uses a primitive system of assigning "
10347 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10348 "Windows Registry to find out how disks/partitions are mapped to drive "
10349 "letters, and returns a hash table as in the example below:"
10350 msgstr ""
10351
10352 #. type: verbatim
10353 #: ../src/guestfs-actions.pod:2694 ../fish/guestfish-actions.pod:1817
10354 #, no-wrap
10355 msgid ""
10356 " C      =>     /dev/vda2\n"
10357 " E      =>     /dev/vdb1\n"
10358 " F      =>     /dev/vdc1\n"
10359 "\n"
10360 msgstr ""
10361
10362 #. type: textblock
10363 #: ../src/guestfs-actions.pod:2698 ../fish/guestfish-actions.pod:1821
10364 msgid ""
10365 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10366 "and just contains the drive letter, without the customary colon separator "
10367 "character."
10368 msgstr ""
10369
10370 #. type: textblock
10371 #: ../src/guestfs-actions.pod:2702 ../fish/guestfish-actions.pod:1825
10372 msgid ""
10373 "In future we may support other operating systems that also used drive "
10374 "letters, but the keys for those might not be case insensitive and might be "
10375 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10376 "C<h1> etc."
10377 msgstr ""
10378
10379 #. type: textblock
10380 #: ../src/guestfs-actions.pod:2707 ../fish/guestfish-actions.pod:1830
10381 msgid ""
10382 "For Windows guests, currently only hard drive mappings are returned.  "
10383 "Removable disks (eg. DVD-ROMs) are ignored."
10384 msgstr ""
10385
10386 #. type: textblock
10387 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1833
10388 msgid ""
10389 "For guests that do not use drive mappings, or if the drive mappings could "
10390 "not be determined, this returns an empty hash table."
10391 msgstr ""
10392
10393 #. type: textblock
10394 #: ../src/guestfs-actions.pod:2713
10395 msgid ""
10396 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10397 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10398 msgstr ""
10399
10400 #. type: textblock
10401 #: ../src/guestfs-actions.pod:2717 ../src/guestfs-actions.pod:2985 ../src/guestfs-actions.pod:3783 ../src/guestfs-actions.pod:5065 ../src/guestfs-actions.pod:7094
10402 msgid ""
10403 "This function returns a NULL-terminated array of strings, or NULL if there "
10404 "was an error.  The array of strings will always have length C<2n+1>, where "
10405 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10406 "caller must free the strings and the array after use>."
10407 msgstr ""
10408
10409 #. type: textblock
10410 #: ../src/guestfs-actions.pod:2723 ../src/guestfs-actions.pod:3179
10411 msgid "(Added in 1.9.17)"
10412 msgstr ""
10413
10414 #. type: =head2
10415 #: ../src/guestfs-actions.pod:2725
10416 msgid "guestfs_inspect_get_filesystems"
10417 msgstr ""
10418
10419 #. type: verbatim
10420 #: ../src/guestfs-actions.pod:2727
10421 #, no-wrap
10422 msgid ""
10423 " char **\n"
10424 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10425 "                                  const char *root);\n"
10426 "\n"
10427 msgstr ""
10428
10429 #. type: textblock
10430 #: ../src/guestfs-actions.pod:2731 ../fish/guestfish-actions.pod:1844
10431 msgid ""
10432 "This returns a list of all the filesystems that we think are associated with "
10433 "this operating system.  This includes the root filesystem, other ordinary "
10434 "filesystems, and non-mounted devices like swap partitions."
10435 msgstr ""
10436
10437 #. type: textblock
10438 #: ../src/guestfs-actions.pod:2736 ../fish/guestfish-actions.pod:1849
10439 msgid ""
10440 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10441 "to be shared between operating systems."
10442 msgstr ""
10443
10444 #. type: textblock
10445 #: ../src/guestfs-actions.pod:2739
10446 msgid ""
10447 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10448 "C<guestfs_inspect_get_mountpoints>."
10449 msgstr ""
10450
10451 #. type: =head2
10452 #: ../src/guestfs-actions.pod:2748
10453 msgid "guestfs_inspect_get_format"
10454 msgstr ""
10455
10456 #. type: verbatim
10457 #: ../src/guestfs-actions.pod:2750
10458 #, no-wrap
10459 msgid ""
10460 " char *\n"
10461 " guestfs_inspect_get_format (guestfs_h *g,\n"
10462 "                             const char *root);\n"
10463 "\n"
10464 msgstr ""
10465
10466 #. type: textblock
10467 #: ../src/guestfs-actions.pod:2754 ../fish/guestfish-actions.pod:1859
10468 msgid ""
10469 "This returns the format of the inspected operating system.  You can use it "
10470 "to detect install images, live CDs and similar."
10471 msgstr ""
10472
10473 #. type: textblock
10474 #: ../src/guestfs-actions.pod:2757 ../fish/guestfish-actions.pod:1862
10475 msgid "Currently defined formats are:"
10476 msgstr ""
10477
10478 #. type: =item
10479 #: ../src/guestfs-actions.pod:2761 ../fish/guestfish-actions.pod:1866
10480 msgid "\"installed\""
10481 msgstr ""
10482
10483 #. type: textblock
10484 #: ../src/guestfs-actions.pod:2763 ../fish/guestfish-actions.pod:1868
10485 msgid "This is an installed operating system."
10486 msgstr ""
10487
10488 #. type: =item
10489 #: ../src/guestfs-actions.pod:2765 ../fish/guestfish-actions.pod:1870
10490 msgid "\"installer\""
10491 msgstr ""
10492
10493 #. type: textblock
10494 #: ../src/guestfs-actions.pod:2767 ../fish/guestfish-actions.pod:1872
10495 msgid ""
10496 "The disk image being inspected is not an installed operating system, but a "
10497 "I<bootable> install disk, live CD, or similar."
10498 msgstr ""
10499
10500 #. type: textblock
10501 #: ../src/guestfs-actions.pod:2772 ../fish/guestfish-actions.pod:1877
10502 msgid "The format of this disk image is not known."
10503 msgstr ""
10504
10505 #. type: textblock
10506 #: ../src/guestfs-actions.pod:2784 ../src/guestfs-actions.pod:3215 ../src/guestfs-actions.pod:3231 ../src/guestfs-actions.pod:3249 ../src/guestfs-actions.pod:6009
10507 msgid "(Added in 1.9.4)"
10508 msgstr ""
10509
10510 #. type: =head2
10511 #: ../src/guestfs-actions.pod:2786
10512 msgid "guestfs_inspect_get_hostname"
10513 msgstr ""
10514
10515 #. type: verbatim
10516 #: ../src/guestfs-actions.pod:2788
10517 #, no-wrap
10518 msgid ""
10519 " char *\n"
10520 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10521 "                               const char *root);\n"
10522 "\n"
10523 msgstr ""
10524
10525 #. type: textblock
10526 #: ../src/guestfs-actions.pod:2792 ../fish/guestfish-actions.pod:1890
10527 msgid ""
10528 "This function returns the hostname of the operating system as found by "
10529 "inspection of the guest's configuration files."
10530 msgstr ""
10531
10532 #. type: textblock
10533 #: ../src/guestfs-actions.pod:2795 ../fish/guestfish-actions.pod:1893
10534 msgid ""
10535 "If the hostname could not be determined, then the string C<unknown> is "
10536 "returned."
10537 msgstr ""
10538
10539 #. type: textblock
10540 #: ../src/guestfs-actions.pod:2803
10541 msgid "(Added in 1.7.9)"
10542 msgstr ""
10543
10544 #. type: =head2
10545 #: ../src/guestfs-actions.pod:2805
10546 msgid "guestfs_inspect_get_icon"
10547 msgstr ""
10548
10549 #. type: verbatim
10550 #: ../src/guestfs-actions.pod:2807
10551 #, no-wrap
10552 msgid ""
10553 " char *\n"
10554 " guestfs_inspect_get_icon (guestfs_h *g,\n"
10555 "                           const char *root,\n"
10556 "                           size_t *size_r,\n"
10557 "                           ...);\n"
10558 "\n"
10559 msgstr ""
10560
10561 #. type: verbatim
10562 #: ../src/guestfs-actions.pod:2818
10563 #, no-wrap
10564 msgid ""
10565 " GUESTFS_INSPECT_GET_ICON_FAVICON, int favicon,\n"
10566 " GUESTFS_INSPECT_GET_ICON_HIGHQUALITY, int highquality,\n"
10567 "\n"
10568 msgstr ""
10569
10570 #. type: textblock
10571 #: ../src/guestfs-actions.pod:2821 ../fish/guestfish-actions.pod:1902
10572 msgid ""
10573 "This function returns an icon corresponding to the inspected operating "
10574 "system.  The icon is returned as a buffer containing a PNG image (re-encoded "
10575 "to PNG if necessary)."
10576 msgstr ""
10577
10578 #. type: textblock
10579 #: ../src/guestfs-actions.pod:2825 ../fish/guestfish-actions.pod:1906
10580 msgid ""
10581 "If it was not possible to get an icon this function returns a zero-length "
10582 "(non-NULL) buffer.  I<Callers must check for this case>."
10583 msgstr ""
10584
10585 #. type: textblock
10586 #: ../src/guestfs-actions.pod:2828 ../fish/guestfish-actions.pod:1909
10587 msgid ""
10588 "Libguestfs will start by looking for a file called C</etc/favicon.png> or "
10589 "C<C:\\etc\\favicon.png> and if it has the correct format, the contents of "
10590 "this file will be returned.  You can disable favicons by passing the "
10591 "optional C<favicon> boolean as false (default is true)."
10592 msgstr ""
10593
10594 #. type: textblock
10595 #: ../src/guestfs-actions.pod:2834 ../fish/guestfish-actions.pod:1915
10596 msgid ""
10597 "If finding the favicon fails, then we look in other places in the guest for "
10598 "a suitable icon."
10599 msgstr ""
10600
10601 #. type: textblock
10602 #: ../src/guestfs-actions.pod:2837 ../fish/guestfish-actions.pod:1918
10603 msgid ""
10604 "If the optional C<highquality> boolean is true then only high quality icons "
10605 "are returned, which means only icons of high resolution with an alpha "
10606 "channel.  The default (false) is to return any icon we can, even if it is of "
10607 "substandard quality."
10608 msgstr ""
10609
10610 #. type: textblock
10611 #: ../src/guestfs-actions.pod:2848 ../fish/guestfish-actions.pod:1929
10612 msgid ""
10613 "Unlike most other inspection API calls, the guest's disks must be mounted up "
10614 "before you call this, since it needs to read information from the guest "
10615 "filesystem during the call."
10616 msgstr ""
10617
10618 #. type: textblock
10619 #: ../src/guestfs-actions.pod:2854 ../fish/guestfish-actions.pod:1935
10620 msgid ""
10621 "B<Security:> The icon data comes from the untrusted guest, and should be "
10622 "treated with caution.  PNG files have been known to contain exploits.  "
10623 "Ensure that libpng (or other relevant libraries) are fully up to date before "
10624 "trying to process or display the icon."
10625 msgstr ""
10626
10627 #. type: textblock
10628 #: ../src/guestfs-actions.pod:2862 ../fish/guestfish-actions.pod:1943
10629 msgid ""
10630 "The PNG image returned can be any size.  It might not be square.  Libguestfs "
10631 "tries to return the largest, highest quality icon available.  The "
10632 "application must scale the icon to the required size."
10633 msgstr ""
10634
10635 #. type: textblock
10636 #: ../src/guestfs-actions.pod:2869 ../fish/guestfish-actions.pod:1950
10637 msgid ""
10638 "Extracting icons from Windows guests requires the external C<wrestool> "
10639 "program from the C<icoutils> package, and several programs (C<bmptopnm>, "
10640 "C<pnmtopng>, C<pamcut>)  from the C<netpbm> package.  These must be "
10641 "installed separately."
10642 msgstr ""
10643
10644 #. type: textblock
10645 #: ../src/guestfs-actions.pod:2876 ../fish/guestfish-actions.pod:1957
10646 msgid ""
10647 "Operating system icons are usually trademarks.  Seek legal advice before "
10648 "using trademarks in applications."
10649 msgstr ""
10650
10651 #. type: textblock
10652 #: ../src/guestfs-actions.pod:2885 ../src/guestfs-actions.pod:3710 ../src/guestfs-actions.pod:4964
10653 msgid "(Added in 1.11.12)"
10654 msgstr ""
10655
10656 #. type: =head2
10657 #: ../src/guestfs-actions.pod:2887
10658 msgid "guestfs_inspect_get_icon_va"
10659 msgstr ""
10660
10661 #. type: verbatim
10662 #: ../src/guestfs-actions.pod:2889
10663 #, no-wrap
10664 msgid ""
10665 " char *\n"
10666 " guestfs_inspect_get_icon_va (guestfs_h *g,\n"
10667 "                              const char *root,\n"
10668 "                              size_t *size_r,\n"
10669 "                              va_list args);\n"
10670 "\n"
10671 msgstr ""
10672
10673 #. type: textblock
10674 #: ../src/guestfs-actions.pod:2895
10675 msgid "This is the \"va_list variant\" of L</guestfs_inspect_get_icon>."
10676 msgstr ""
10677
10678 #. type: =head2
10679 #: ../src/guestfs-actions.pod:2899
10680 msgid "guestfs_inspect_get_icon_argv"
10681 msgstr ""
10682
10683 #. type: verbatim
10684 #: ../src/guestfs-actions.pod:2901
10685 #, no-wrap
10686 msgid ""
10687 " char *\n"
10688 " guestfs_inspect_get_icon_argv (guestfs_h *g,\n"
10689 "                                const char *root,\n"
10690 "                                size_t *size_r,\n"
10691 "                                const struct guestfs_inspect_get_icon_argv "
10692 "*optargs);\n"
10693 "\n"
10694 msgstr ""
10695
10696 #. type: textblock
10697 #: ../src/guestfs-actions.pod:2907
10698 msgid "This is the \"argv variant\" of L</guestfs_inspect_get_icon>."
10699 msgstr ""
10700
10701 #. type: =head2
10702 #: ../src/guestfs-actions.pod:2911
10703 msgid "guestfs_inspect_get_major_version"
10704 msgstr ""
10705
10706 #. type: verbatim
10707 #: ../src/guestfs-actions.pod:2913
10708 #, no-wrap
10709 msgid ""
10710 " int\n"
10711 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10712 "                                    const char *root);\n"
10713 "\n"
10714 msgstr ""
10715
10716 #. type: textblock
10717 #: ../src/guestfs-actions.pod:2917 ../fish/guestfish-actions.pod:1968
10718 msgid "This returns the major version number of the inspected operating system."
10719 msgstr ""
10720
10721 #. type: textblock
10722 #: ../src/guestfs-actions.pod:2920 ../fish/guestfish-actions.pod:1971
10723 msgid ""
10724 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10725 "popular public names used by the operating system.  Notably the operating "
10726 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10727 "1).  You can find out the real versions corresponding to releases of Windows "
10728 "by consulting Wikipedia or MSDN."
10729 msgstr ""
10730
10731 #. type: textblock
10732 #: ../src/guestfs-actions.pod:2927 ../src/guestfs-actions.pod:2944 ../fish/guestfish-actions.pod:1978 ../fish/guestfish-actions.pod:1989
10733 msgid "If the version could not be determined, then C<0> is returned."
10734 msgstr ""
10735
10736 #. type: =head2
10737 #: ../src/guestfs-actions.pod:2935
10738 msgid "guestfs_inspect_get_minor_version"
10739 msgstr ""
10740
10741 #. type: verbatim
10742 #: ../src/guestfs-actions.pod:2937
10743 #, no-wrap
10744 msgid ""
10745 " int\n"
10746 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
10747 "                                    const char *root);\n"
10748 "\n"
10749 msgstr ""
10750
10751 #. type: textblock
10752 #: ../src/guestfs-actions.pod:2941 ../fish/guestfish-actions.pod:1986
10753 msgid "This returns the minor version number of the inspected operating system."
10754 msgstr ""
10755
10756 #. type: textblock
10757 #: ../src/guestfs-actions.pod:2946
10758 msgid ""
10759 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10760 "C<guestfs_inspect_get_major_version>."
10761 msgstr ""
10762
10763 #. type: =head2
10764 #: ../src/guestfs-actions.pod:2953
10765 msgid "guestfs_inspect_get_mountpoints"
10766 msgstr ""
10767
10768 #. type: verbatim
10769 #: ../src/guestfs-actions.pod:2955
10770 #, no-wrap
10771 msgid ""
10772 " char **\n"
10773 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
10774 "                                  const char *root);\n"
10775 "\n"
10776 msgstr ""
10777
10778 #. type: textblock
10779 #: ../src/guestfs-actions.pod:2959 ../fish/guestfish-actions.pod:1998
10780 msgid ""
10781 "This returns a hash of where we think the filesystems associated with this "
10782 "operating system should be mounted.  Callers should note that this is at "
10783 "best an educated guess made by reading configuration files such as "
10784 "C</etc/fstab>.  I<In particular note> that this may return filesystems which "
10785 "are non-existent or not mountable and callers should be prepared to handle "
10786 "or ignore failures if they try to mount them."
10787 msgstr ""
10788
10789 #. type: textblock
10790 #: ../src/guestfs-actions.pod:2968 ../fish/guestfish-actions.pod:2007
10791 msgid ""
10792 "Each element in the returned hashtable has a key which is the path of the "
10793 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
10794 "mounted there (eg. C</dev/sda1>)."
10795 msgstr ""
10796
10797 #. type: textblock
10798 #: ../src/guestfs-actions.pod:2973 ../fish/guestfish-actions.pod:2012
10799 msgid "Non-mounted devices such as swap devices are I<not> returned in this list."
10800 msgstr ""
10801
10802 #. type: textblock
10803 #: ../src/guestfs-actions.pod:2976
10804 msgid ""
10805 "For operating systems like Windows which still use drive letters, this call "
10806 "will only return an entry for the first drive \"mounted on\" C</>.  For "
10807 "information about the mapping of drive letters to partitions, see "
10808 "C<guestfs_inspect_get_drive_mappings>."
10809 msgstr ""
10810
10811 #. type: textblock
10812 #: ../src/guestfs-actions.pod:2982
10813 msgid ""
10814 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10815 "C<guestfs_inspect_get_filesystems>."
10816 msgstr ""
10817
10818 #. type: =head2
10819 #: ../src/guestfs-actions.pod:2993
10820 msgid "guestfs_inspect_get_package_format"
10821 msgstr ""
10822
10823 #. type: verbatim
10824 #: ../src/guestfs-actions.pod:2995
10825 #, no-wrap
10826 msgid ""
10827 " char *\n"
10828 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
10829 "                                     const char *root);\n"
10830 "\n"
10831 msgstr ""
10832
10833 #. type: textblock
10834 #: ../src/guestfs-actions.pod:2999
10835 msgid ""
10836 "This function and C<guestfs_inspect_get_package_management> return the "
10837 "package format and package management tool used by the inspected operating "
10838 "system.  For example for Fedora these functions would return C<rpm> (package "
10839 "format) and C<yum> (package management)."
10840 msgstr ""
10841
10842 #. type: textblock
10843 #: ../src/guestfs-actions.pod:3005 ../fish/guestfish-actions.pod:2034
10844 msgid ""
10845 "This returns the string C<unknown> if we could not determine the package "
10846 "format I<or> if the operating system does not have a real packaging system "
10847 "(eg. Windows)."
10848 msgstr ""
10849
10850 #. type: textblock
10851 #: ../src/guestfs-actions.pod:3009 ../fish/guestfish-actions.pod:2038
10852 msgid ""
10853 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
10854 "Future versions of libguestfs may return other strings."
10855 msgstr ""
10856
10857 #. type: textblock
10858 #: ../src/guestfs-actions.pod:3017 ../src/guestfs-actions.pod:3045
10859 msgid "(Added in 1.7.5)"
10860 msgstr ""
10861
10862 #. type: =head2
10863 #: ../src/guestfs-actions.pod:3019
10864 msgid "guestfs_inspect_get_package_management"
10865 msgstr ""
10866
10867 #. type: verbatim
10868 #: ../src/guestfs-actions.pod:3021
10869 #, no-wrap
10870 msgid ""
10871 " char *\n"
10872 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
10873 "                                         const char *root);\n"
10874 "\n"
10875 msgstr ""
10876
10877 #. type: textblock
10878 #: ../src/guestfs-actions.pod:3025
10879 msgid ""
10880 "C<guestfs_inspect_get_package_format> and this function return the package "
10881 "format and package management tool used by the inspected operating system.  "
10882 "For example for Fedora these functions would return C<rpm> (package format) "
10883 "and C<yum> (package management)."
10884 msgstr ""
10885
10886 #. type: textblock
10887 #: ../src/guestfs-actions.pod:3031 ../fish/guestfish-actions.pod:2053
10888 msgid ""
10889 "This returns the string C<unknown> if we could not determine the package "
10890 "management tool I<or> if the operating system does not have a real packaging "
10891 "system (eg. Windows)."
10892 msgstr ""
10893
10894 #. type: textblock
10895 #: ../src/guestfs-actions.pod:3035 ../fish/guestfish-actions.pod:2057
10896 msgid ""
10897 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
10898 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
10899 "libguestfs may return other strings."
10900 msgstr ""
10901
10902 #. type: =head2
10903 #: ../src/guestfs-actions.pod:3047
10904 msgid "guestfs_inspect_get_product_name"
10905 msgstr ""
10906
10907 #. type: verbatim
10908 #: ../src/guestfs-actions.pod:3049
10909 #, no-wrap
10910 msgid ""
10911 " char *\n"
10912 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
10913 "                                   const char *root);\n"
10914 "\n"
10915 msgstr ""
10916
10917 #. type: textblock
10918 #: ../src/guestfs-actions.pod:3053 ../fish/guestfish-actions.pod:2068
10919 msgid ""
10920 "This returns the product name of the inspected operating system.  The "
10921 "product name is generally some freeform string which can be displayed to the "
10922 "user, but should not be parsed by programs."
10923 msgstr ""
10924
10925 #. type: textblock
10926 #: ../src/guestfs-actions.pod:3058 ../fish/guestfish-actions.pod:2073
10927 msgid ""
10928 "If the product name could not be determined, then the string C<unknown> is "
10929 "returned."
10930 msgstr ""
10931
10932 #. type: =head2
10933 #: ../src/guestfs-actions.pod:3068
10934 msgid "guestfs_inspect_get_product_variant"
10935 msgstr ""
10936
10937 #. type: verbatim
10938 #: ../src/guestfs-actions.pod:3070
10939 #, no-wrap
10940 msgid ""
10941 " char *\n"
10942 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
10943 "                                      const char *root);\n"
10944 "\n"
10945 msgstr ""
10946
10947 #. type: textblock
10948 #: ../src/guestfs-actions.pod:3074 ../fish/guestfish-actions.pod:2082
10949 msgid "This returns the product variant of the inspected operating system."
10950 msgstr ""
10951
10952 #. type: textblock
10953 #: ../src/guestfs-actions.pod:3077 ../fish/guestfish-actions.pod:2085
10954 msgid ""
10955 "For Windows guests, this returns the contents of the Registry key "
10956 "C<HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> "
10957 "which is usually a string such as C<Client> or C<Server> (other values are "
10958 "possible).  This can be used to distinguish consumer and enterprise versions "
10959 "of Windows that have the same version number (for example, Windows 7 and "
10960 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
10961 "the latter is C<Server>)."
10962 msgstr ""
10963
10964 #. type: textblock
10965 #: ../src/guestfs-actions.pod:3086 ../fish/guestfish-actions.pod:2094
10966 msgid ""
10967 "For enterprise Linux guests, in future we intend this to return the product "
10968 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
10969 "implemented at present."
10970 msgstr ""
10971
10972 #. type: textblock
10973 #: ../src/guestfs-actions.pod:3090 ../fish/guestfish-actions.pod:2098
10974 msgid ""
10975 "If the product variant could not be determined, then the string C<unknown> "
10976 "is returned."
10977 msgstr ""
10978
10979 #. type: textblock
10980 #: ../src/guestfs-actions.pod:3093
10981 msgid ""
10982 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10983 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
10984 msgstr ""
10985
10986 #. type: textblock
10987 #: ../src/guestfs-actions.pod:3100
10988 msgid "(Added in 1.9.13)"
10989 msgstr ""
10990
10991 #. type: =head2
10992 #: ../src/guestfs-actions.pod:3102
10993 msgid "guestfs_inspect_get_roots"
10994 msgstr ""
10995
10996 #. type: verbatim
10997 #: ../src/guestfs-actions.pod:3104
10998 #, no-wrap
10999 msgid ""
11000 " char **\n"
11001 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11002 "\n"
11003 msgstr ""
11004
11005 #. type: textblock
11006 #: ../src/guestfs-actions.pod:3107
11007 msgid ""
11008 "This function is a convenient way to get the list of root devices, as "
11009 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11010 "the whole inspection process."
11011 msgstr ""
11012
11013 #. type: textblock
11014 #: ../src/guestfs-actions.pod:3111
11015 msgid ""
11016 "This returns an empty list if either no root devices were found or the "
11017 "caller has not called C<guestfs_inspect_os>."
11018 msgstr ""
11019
11020 #. type: textblock
11021 #: ../src/guestfs-actions.pod:3120
11022 msgid "(Added in 1.7.3)"
11023 msgstr ""
11024
11025 #. type: =head2
11026 #: ../src/guestfs-actions.pod:3122
11027 msgid "guestfs_inspect_get_type"
11028 msgstr ""
11029
11030 #. type: verbatim
11031 #: ../src/guestfs-actions.pod:3124
11032 #, no-wrap
11033 msgid ""
11034 " char *\n"
11035 " guestfs_inspect_get_type (guestfs_h *g,\n"
11036 "                           const char *root);\n"
11037 "\n"
11038 msgstr ""
11039
11040 #. type: textblock
11041 #: ../src/guestfs-actions.pod:3128 ../fish/guestfish-actions.pod:2122
11042 msgid ""
11043 "This returns the type of the inspected operating system.  Currently defined "
11044 "types are:"
11045 msgstr ""
11046
11047 #. type: =item
11048 #: ../src/guestfs-actions.pod:3133 ../fish/guestfish-actions.pod:2127
11049 msgid "\"linux\""
11050 msgstr ""
11051
11052 #. type: textblock
11053 #: ../src/guestfs-actions.pod:3135 ../fish/guestfish-actions.pod:2129
11054 msgid "Any Linux-based operating system."
11055 msgstr ""
11056
11057 #. type: textblock
11058 #: ../src/guestfs-actions.pod:3139 ../fish/guestfish-actions.pod:2133
11059 msgid "Any Microsoft Windows operating system."
11060 msgstr ""
11061
11062 #. type: =item
11063 #: ../src/guestfs-actions.pod:3141 ../fish/guestfish-actions.pod:2135
11064 msgid "\"freebsd\""
11065 msgstr ""
11066
11067 #. type: textblock
11068 #: ../src/guestfs-actions.pod:3143 ../fish/guestfish-actions.pod:2137
11069 msgid "FreeBSD."
11070 msgstr ""
11071
11072 #. type: textblock
11073 #: ../src/guestfs-actions.pod:3147 ../fish/guestfish-actions.pod:2141
11074 msgid "The operating system type could not be determined."
11075 msgstr ""
11076
11077 #. type: =head2
11078 #: ../src/guestfs-actions.pod:3161
11079 msgid "guestfs_inspect_get_windows_current_control_set"
11080 msgstr ""
11081
11082 #. type: verbatim
11083 #: ../src/guestfs-actions.pod:3163
11084 #, no-wrap
11085 msgid ""
11086 " char *\n"
11087 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11088 "                                                  const char *root);\n"
11089 "\n"
11090 msgstr ""
11091
11092 #. type: textblock
11093 #: ../src/guestfs-actions.pod:3167 ../fish/guestfish-actions.pod:2154
11094 msgid ""
11095 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11096 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11097 msgstr ""
11098
11099 #. type: textblock
11100 #: ../src/guestfs-actions.pod:3170 ../fish/guestfish-actions.pod:2157
11101 msgid ""
11102 "This call assumes that the guest is Windows and that the Registry could be "
11103 "examined by inspection.  If this is not the case then an error is returned."
11104 msgstr ""
11105
11106 #. type: =head2
11107 #: ../src/guestfs-actions.pod:3181
11108 msgid "guestfs_inspect_get_windows_systemroot"
11109 msgstr ""
11110
11111 #. type: verbatim
11112 #: ../src/guestfs-actions.pod:3183
11113 #, no-wrap
11114 msgid ""
11115 " char *\n"
11116 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11117 "                                         const char *root);\n"
11118 "\n"
11119 msgstr ""
11120
11121 #. type: textblock
11122 #: ../src/guestfs-actions.pod:3187 ../fish/guestfish-actions.pod:2167
11123 msgid ""
11124 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11125 "is a directory path such as C</WINDOWS>."
11126 msgstr ""
11127
11128 #. type: textblock
11129 #: ../src/guestfs-actions.pod:3190 ../fish/guestfish-actions.pod:2170
11130 msgid ""
11131 "This call assumes that the guest is Windows and that the systemroot could be "
11132 "determined by inspection.  If this is not the case then an error is "
11133 "returned."
11134 msgstr ""
11135
11136 #. type: textblock
11137 #: ../src/guestfs-actions.pod:3199
11138 msgid "(Added in 1.5.25)"
11139 msgstr ""
11140
11141 #. type: =head2
11142 #: ../src/guestfs-actions.pod:3201
11143 msgid "guestfs_inspect_is_live"
11144 msgstr ""
11145
11146 #. type: verbatim
11147 #: ../src/guestfs-actions.pod:3203
11148 #, no-wrap
11149 msgid ""
11150 " int\n"
11151 " guestfs_inspect_is_live (guestfs_h *g,\n"
11152 "                          const char *root);\n"
11153 "\n"
11154 msgstr ""
11155
11156 #. type: textblock
11157 #: ../src/guestfs-actions.pod:3207
11158 msgid ""
11159 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11160 "disk), then this returns true if a live image was detected on the disk."
11161 msgstr ""
11162
11163 #. type: =head2
11164 #: ../src/guestfs-actions.pod:3217
11165 msgid "guestfs_inspect_is_multipart"
11166 msgstr ""
11167
11168 #. type: verbatim
11169 #: ../src/guestfs-actions.pod:3219
11170 #, no-wrap
11171 msgid ""
11172 " int\n"
11173 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11174 "                               const char *root);\n"
11175 "\n"
11176 msgstr ""
11177
11178 #. type: textblock
11179 #: ../src/guestfs-actions.pod:3223
11180 msgid ""
11181 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11182 "disk), then this returns true if the disk is part of a set."
11183 msgstr ""
11184
11185 #. type: =head2
11186 #: ../src/guestfs-actions.pod:3233
11187 msgid "guestfs_inspect_is_netinst"
11188 msgstr ""
11189
11190 #. type: verbatim
11191 #: ../src/guestfs-actions.pod:3235
11192 #, no-wrap
11193 msgid ""
11194 " int\n"
11195 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11196 "                             const char *root);\n"
11197 "\n"
11198 msgstr ""
11199
11200 #. type: textblock
11201 #: ../src/guestfs-actions.pod:3239
11202 msgid ""
11203 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11204 "disk), then this returns true if the disk is a network installer, ie. not a "
11205 "self-contained install CD but one which is likely to require network access "
11206 "to complete the install."
11207 msgstr ""
11208
11209 #. type: =head2
11210 #: ../src/guestfs-actions.pod:3251
11211 msgid "guestfs_inspect_list_applications"
11212 msgstr ""
11213
11214 #. type: verbatim
11215 #: ../src/guestfs-actions.pod:3253
11216 #, no-wrap
11217 msgid ""
11218 " struct guestfs_application_list *\n"
11219 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11220 "                                    const char *root);\n"
11221 "\n"
11222 msgstr ""
11223
11224 #. type: textblock
11225 #: ../src/guestfs-actions.pod:3257 ../fish/guestfish-actions.pod:2212
11226 msgid "Return the list of applications installed in the operating system."
11227 msgstr ""
11228
11229 #. type: textblock
11230 #: ../src/guestfs-actions.pod:3259
11231 msgid ""
11232 "I<Note:> This call works differently from other parts of the inspection "
11233 "API.  You have to call C<guestfs_inspect_os>, then "
11234 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11235 "this.  Listing applications is a significantly more difficult operation "
11236 "which requires access to the full filesystem.  Also note that unlike the "
11237 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11238 "the libguestfs handle, this call actually reads parts of the mounted "
11239 "filesystems during the call."
11240 msgstr ""
11241
11242 #. type: textblock
11243 #: ../src/guestfs-actions.pod:3269 ../fish/guestfish-actions.pod:2224
11244 msgid ""
11245 "This returns an empty list if the inspection code was not able to determine "
11246 "the list of applications."
11247 msgstr ""
11248
11249 #. type: textblock
11250 #: ../src/guestfs-actions.pod:3272 ../fish/guestfish-actions.pod:2227
11251 msgid "The application structure contains the following fields:"
11252 msgstr ""
11253
11254 #. type: =item
11255 #: ../src/guestfs-actions.pod:3276 ../fish/guestfish-actions.pod:2231
11256 msgid "C<app_name>"
11257 msgstr ""
11258
11259 #. type: textblock
11260 #: ../src/guestfs-actions.pod:3278 ../fish/guestfish-actions.pod:2233
11261 msgid ""
11262 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11263 "guests, this is the package name."
11264 msgstr ""
11265
11266 #. type: =item
11267 #: ../src/guestfs-actions.pod:3281 ../fish/guestfish-actions.pod:2236
11268 msgid "C<app_display_name>"
11269 msgstr ""
11270
11271 #. type: textblock
11272 #: ../src/guestfs-actions.pod:3283 ../fish/guestfish-actions.pod:2238
11273 msgid ""
11274 "The display name of the application, sometimes localized to the install "
11275 "language of the guest operating system."
11276 msgstr ""
11277
11278 #. type: textblock
11279 #: ../src/guestfs-actions.pod:3286 ../fish/guestfish-actions.pod:2241
11280 msgid ""
11281 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11282 "to display something can use C<app_name> instead."
11283 msgstr ""
11284
11285 #. type: =item
11286 #: ../src/guestfs-actions.pod:3289 ../fish/guestfish-actions.pod:2244
11287 msgid "C<app_epoch>"
11288 msgstr ""
11289
11290 #. type: textblock
11291 #: ../src/guestfs-actions.pod:3291 ../fish/guestfish-actions.pod:2246
11292 msgid ""
11293 "For package managers which use epochs, this contains the epoch of the "
11294 "package (an integer).  If unavailable, this is returned as C<0>."
11295 msgstr ""
11296
11297 #. type: =item
11298 #: ../src/guestfs-actions.pod:3294 ../fish/guestfish-actions.pod:2249
11299 msgid "C<app_version>"
11300 msgstr ""
11301
11302 #. type: textblock
11303 #: ../src/guestfs-actions.pod:3296 ../fish/guestfish-actions.pod:2251
11304 msgid ""
11305 "The version string of the application or package.  If unavailable this is "
11306 "returned as an empty string C<\"\">."
11307 msgstr ""
11308
11309 #. type: =item
11310 #: ../src/guestfs-actions.pod:3299 ../fish/guestfish-actions.pod:2254
11311 msgid "C<app_release>"
11312 msgstr ""
11313
11314 #. type: textblock
11315 #: ../src/guestfs-actions.pod:3301 ../fish/guestfish-actions.pod:2256
11316 msgid ""
11317 "The release string of the application or package, for package managers that "
11318 "use this.  If unavailable this is returned as an empty string C<\"\">."
11319 msgstr ""
11320
11321 #. type: =item
11322 #: ../src/guestfs-actions.pod:3305 ../fish/guestfish-actions.pod:2260
11323 msgid "C<app_install_path>"
11324 msgstr ""
11325
11326 #. type: textblock
11327 #: ../src/guestfs-actions.pod:3307 ../fish/guestfish-actions.pod:2262
11328 msgid ""
11329 "The installation path of the application (on operating systems such as "
11330 "Windows which use installation paths).  This path is in the format used by "
11331 "the guest operating system, it is not a libguestfs path."
11332 msgstr ""
11333
11334 #. type: textblock
11335 #: ../src/guestfs-actions.pod:3312 ../fish/guestfish-actions.pod:2267
11336 msgid "If unavailable this is returned as an empty string C<\"\">."
11337 msgstr ""
11338
11339 #. type: =item
11340 #: ../src/guestfs-actions.pod:3314 ../fish/guestfish-actions.pod:2269
11341 msgid "C<app_trans_path>"
11342 msgstr ""
11343
11344 #. type: textblock
11345 #: ../src/guestfs-actions.pod:3316 ../fish/guestfish-actions.pod:2271
11346 msgid ""
11347 "The install path translated into a libguestfs path.  If unavailable this is "
11348 "returned as an empty string C<\"\">."
11349 msgstr ""
11350
11351 #. type: =item
11352 #: ../src/guestfs-actions.pod:3319 ../fish/guestfish-actions.pod:2274
11353 msgid "C<app_publisher>"
11354 msgstr ""
11355
11356 #. type: textblock
11357 #: ../src/guestfs-actions.pod:3321 ../fish/guestfish-actions.pod:2276
11358 msgid ""
11359 "The name of the publisher of the application, for package managers that use "
11360 "this.  If unavailable this is returned as an empty string C<\"\">."
11361 msgstr ""
11362
11363 #. type: =item
11364 #: ../src/guestfs-actions.pod:3325 ../fish/guestfish-actions.pod:2280
11365 msgid "C<app_url>"
11366 msgstr ""
11367
11368 #. type: textblock
11369 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2282
11370 msgid ""
11371 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11372 "returned as an empty string C<\"\">."
11373 msgstr ""
11374
11375 #. type: =item
11376 #: ../src/guestfs-actions.pod:3330 ../fish/guestfish-actions.pod:2285
11377 msgid "C<app_source_package>"
11378 msgstr ""
11379
11380 #. type: textblock
11381 #: ../src/guestfs-actions.pod:3332 ../fish/guestfish-actions.pod:2287
11382 msgid ""
11383 "For packaging systems which support this, the name of the source package.  "
11384 "If unavailable this is returned as an empty string C<\"\">."
11385 msgstr ""
11386
11387 #. type: =item
11388 #: ../src/guestfs-actions.pod:3335 ../fish/guestfish-actions.pod:2290
11389 msgid "C<app_summary>"
11390 msgstr ""
11391
11392 #. type: textblock
11393 #: ../src/guestfs-actions.pod:3337 ../fish/guestfish-actions.pod:2292
11394 msgid ""
11395 "A short (usually one line) description of the application or package.  If "
11396 "unavailable this is returned as an empty string C<\"\">."
11397 msgstr ""
11398
11399 #. type: =item
11400 #: ../src/guestfs-actions.pod:3340 ../fish/guestfish-actions.pod:2295
11401 msgid "C<app_description>"
11402 msgstr ""
11403
11404 #. type: textblock
11405 #: ../src/guestfs-actions.pod:3342 ../fish/guestfish-actions.pod:2297
11406 msgid ""
11407 "A longer description of the application or package.  If unavailable this is "
11408 "returned as an empty string C<\"\">."
11409 msgstr ""
11410
11411 #. type: textblock
11412 #: ../src/guestfs-actions.pod:3349
11413 msgid ""
11414 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11415 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11416 "after use>."
11417 msgstr ""
11418
11419 #. type: textblock
11420 #: ../src/guestfs-actions.pod:3353
11421 msgid "(Added in 1.7.8)"
11422 msgstr ""
11423
11424 #. type: =head2
11425 #: ../src/guestfs-actions.pod:3355
11426 msgid "guestfs_inspect_os"
11427 msgstr ""
11428
11429 #. type: verbatim
11430 #: ../src/guestfs-actions.pod:3357
11431 #, no-wrap
11432 msgid ""
11433 " char **\n"
11434 " guestfs_inspect_os (guestfs_h *g);\n"
11435 "\n"
11436 msgstr ""
11437
11438 #. type: textblock
11439 #: ../src/guestfs-actions.pod:3360 ../fish/guestfish-actions.pod:2308
11440 msgid ""
11441 "This function uses other libguestfs functions and certain heuristics to "
11442 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11443 "for operating systems."
11444 msgstr ""
11445
11446 #. type: textblock
11447 #: ../src/guestfs-actions.pod:3364 ../fish/guestfish-actions.pod:2312
11448 msgid "The list returned is empty if no operating systems were found."
11449 msgstr ""
11450
11451 #. type: textblock
11452 #: ../src/guestfs-actions.pod:3366 ../fish/guestfish-actions.pod:2314
11453 msgid ""
11454 "If one operating system was found, then this returns a list with a single "
11455 "element, which is the name of the root filesystem of this operating system.  "
11456 "It is also possible for this function to return a list containing more than "
11457 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11458 "element being the root filesystem of one of the operating systems."
11459 msgstr ""
11460
11461 #. type: textblock
11462 #: ../src/guestfs-actions.pod:3373
11463 msgid ""
11464 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11465 "functions in order to query further information about each operating system, "
11466 "such as the name and version."
11467 msgstr ""
11468
11469 #. type: textblock
11470 #: ../src/guestfs-actions.pod:3378
11471 msgid ""
11472 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11473 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11474 "the contents.  This should be called with no disks currently mounted.  The "
11475 "function may also use Augeas, so any existing Augeas handle will be closed."
11476 msgstr ""
11477
11478 #. type: textblock
11479 #: ../src/guestfs-actions.pod:3384 ../fish/guestfish-actions.pod:2332
11480 msgid ""
11481 "This function cannot decrypt encrypted disks.  The caller must do that first "
11482 "(supplying the necessary keys) if the disk is encrypted."
11483 msgstr ""
11484
11485 #. type: textblock
11486 #: ../src/guestfs-actions.pod:3390 ../src/guestfs-actions.pod:3721 ../src/guestfs-actions.pod:3803
11487 msgid "See also C<guestfs_list_filesystems>."
11488 msgstr ""
11489
11490 #. type: =head2
11491 #: ../src/guestfs-actions.pod:3398
11492 msgid "guestfs_is_blockdev"
11493 msgstr ""
11494
11495 #. type: verbatim
11496 #: ../src/guestfs-actions.pod:3400
11497 #, no-wrap
11498 msgid ""
11499 " int\n"
11500 " guestfs_is_blockdev (guestfs_h *g,\n"
11501 "                      const char *path);\n"
11502 "\n"
11503 msgstr ""
11504
11505 #. type: textblock
11506 #: ../src/guestfs-actions.pod:3404 ../fish/guestfish-actions.pod:2344
11507 msgid ""
11508 "This returns C<true> if and only if there is a block device with the given "
11509 "C<path> name."
11510 msgstr ""
11511
11512 #. type: textblock
11513 #: ../src/guestfs-actions.pod:3407 ../src/guestfs-actions.pod:3436 ../src/guestfs-actions.pod:3466 ../src/guestfs-actions.pod:3481 ../src/guestfs-actions.pod:3497 ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:3568
11514 msgid "See also C<guestfs_stat>."
11515 msgstr ""
11516
11517 #. type: textblock
11518 #: ../src/guestfs-actions.pod:3411 ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:3485 ../src/guestfs-actions.pod:3557 ../src/guestfs-actions.pod:3572
11519 msgid "(Added in 1.5.10)"
11520 msgstr ""
11521
11522 #. type: =head2
11523 #: ../src/guestfs-actions.pod:3413
11524 msgid "guestfs_is_busy"
11525 msgstr ""
11526
11527 #. type: verbatim
11528 #: ../src/guestfs-actions.pod:3415
11529 #, no-wrap
11530 msgid ""
11531 " int\n"
11532 " guestfs_is_busy (guestfs_h *g);\n"
11533 "\n"
11534 msgstr ""
11535
11536 #. type: textblock
11537 #: ../src/guestfs-actions.pod:3418 ../fish/guestfish-actions.pod:2353
11538 msgid ""
11539 "This returns true iff this handle is busy processing a command (in the "
11540 "C<BUSY> state)."
11541 msgstr ""
11542
11543 #. type: =head2
11544 #: ../src/guestfs-actions.pod:3427
11545 msgid "guestfs_is_chardev"
11546 msgstr ""
11547
11548 #. type: verbatim
11549 #: ../src/guestfs-actions.pod:3429
11550 #, no-wrap
11551 msgid ""
11552 " int\n"
11553 " guestfs_is_chardev (guestfs_h *g,\n"
11554 "                     const char *path);\n"
11555 "\n"
11556 msgstr ""
11557
11558 #. type: textblock
11559 #: ../src/guestfs-actions.pod:3433 ../fish/guestfish-actions.pod:2362
11560 msgid ""
11561 "This returns C<true> if and only if there is a character device with the "
11562 "given C<path> name."
11563 msgstr ""
11564
11565 #. type: =head2
11566 #: ../src/guestfs-actions.pod:3442
11567 msgid "guestfs_is_config"
11568 msgstr ""
11569
11570 #. type: verbatim
11571 #: ../src/guestfs-actions.pod:3444
11572 #, no-wrap
11573 msgid ""
11574 " int\n"
11575 " guestfs_is_config (guestfs_h *g);\n"
11576 "\n"
11577 msgstr ""
11578
11579 #. type: textblock
11580 #: ../src/guestfs-actions.pod:3447 ../fish/guestfish-actions.pod:2371
11581 msgid ""
11582 "This returns true iff this handle is being configured (in the C<CONFIG> "
11583 "state)."
11584 msgstr ""
11585
11586 #. type: =head2
11587 #: ../src/guestfs-actions.pod:3456
11588 msgid "guestfs_is_dir"
11589 msgstr ""
11590
11591 #. type: verbatim
11592 #: ../src/guestfs-actions.pod:3458
11593 #, no-wrap
11594 msgid ""
11595 " int\n"
11596 " guestfs_is_dir (guestfs_h *g,\n"
11597 "                 const char *path);\n"
11598 "\n"
11599 msgstr ""
11600
11601 #. type: textblock
11602 #: ../src/guestfs-actions.pod:3462 ../fish/guestfish-actions.pod:2380
11603 msgid ""
11604 "This returns C<true> if and only if there is a directory with the given "
11605 "C<path> name.  Note that it returns false for other objects like files."
11606 msgstr ""
11607
11608 #. type: =head2
11609 #: ../src/guestfs-actions.pod:3472
11610 msgid "guestfs_is_fifo"
11611 msgstr ""
11612
11613 #. type: verbatim
11614 #: ../src/guestfs-actions.pod:3474
11615 #, no-wrap
11616 msgid ""
11617 " int\n"
11618 " guestfs_is_fifo (guestfs_h *g,\n"
11619 "                  const char *path);\n"
11620 "\n"
11621 msgstr ""
11622
11623 #. type: textblock
11624 #: ../src/guestfs-actions.pod:3478 ../fish/guestfish-actions.pod:2390
11625 msgid ""
11626 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11627 "given C<path> name."
11628 msgstr ""
11629
11630 #. type: =head2
11631 #: ../src/guestfs-actions.pod:3487
11632 msgid "guestfs_is_file"
11633 msgstr ""
11634
11635 #. type: verbatim
11636 #: ../src/guestfs-actions.pod:3489
11637 #, no-wrap
11638 msgid ""
11639 " int\n"
11640 " guestfs_is_file (guestfs_h *g,\n"
11641 "                  const char *path);\n"
11642 "\n"
11643 msgstr ""
11644
11645 #. type: textblock
11646 #: ../src/guestfs-actions.pod:3493 ../fish/guestfish-actions.pod:2399
11647 msgid ""
11648 "This returns C<true> if and only if there is a regular file with the given "
11649 "C<path> name.  Note that it returns false for other objects like "
11650 "directories."
11651 msgstr ""
11652
11653 #. type: =head2
11654 #: ../src/guestfs-actions.pod:3503
11655 msgid "guestfs_is_launching"
11656 msgstr ""
11657
11658 #. type: verbatim
11659 #: ../src/guestfs-actions.pod:3505
11660 #, no-wrap
11661 msgid ""
11662 " int\n"
11663 " guestfs_is_launching (guestfs_h *g);\n"
11664 "\n"
11665 msgstr ""
11666
11667 #. type: textblock
11668 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2409
11669 msgid ""
11670 "This returns true iff this handle is launching the subprocess (in the "
11671 "C<LAUNCHING> state)."
11672 msgstr ""
11673
11674 #. type: =head2
11675 #: ../src/guestfs-actions.pod:3517
11676 msgid "guestfs_is_lv"
11677 msgstr ""
11678
11679 #. type: verbatim
11680 #: ../src/guestfs-actions.pod:3519
11681 #, no-wrap
11682 msgid ""
11683 " int\n"
11684 " guestfs_is_lv (guestfs_h *g,\n"
11685 "                const char *device);\n"
11686 "\n"
11687 msgstr ""
11688
11689 #. type: textblock
11690 #: ../src/guestfs-actions.pod:3523 ../fish/guestfish-actions.pod:2418
11691 msgid ""
11692 "This command tests whether C<device> is a logical volume, and returns true "
11693 "iff this is the case."
11694 msgstr ""
11695
11696 #. type: =head2
11697 #: ../src/guestfs-actions.pod:3530
11698 msgid "guestfs_is_ready"
11699 msgstr ""
11700
11701 #. type: verbatim
11702 #: ../src/guestfs-actions.pod:3532
11703 #, no-wrap
11704 msgid ""
11705 " int\n"
11706 " guestfs_is_ready (guestfs_h *g);\n"
11707 "\n"
11708 msgstr ""
11709
11710 #. type: textblock
11711 #: ../src/guestfs-actions.pod:3535 ../fish/guestfish-actions.pod:2425
11712 msgid ""
11713 "This returns true iff this handle is ready to accept commands (in the "
11714 "C<READY> state)."
11715 msgstr ""
11716
11717 #. type: =head2
11718 #: ../src/guestfs-actions.pod:3544
11719 msgid "guestfs_is_socket"
11720 msgstr ""
11721
11722 #. type: verbatim
11723 #: ../src/guestfs-actions.pod:3546
11724 #, no-wrap
11725 msgid ""
11726 " int\n"
11727 " guestfs_is_socket (guestfs_h *g,\n"
11728 "                    const char *path);\n"
11729 "\n"
11730 msgstr ""
11731
11732 #. type: textblock
11733 #: ../src/guestfs-actions.pod:3550 ../fish/guestfish-actions.pod:2434
11734 msgid ""
11735 "This returns C<true> if and only if there is a Unix domain socket with the "
11736 "given C<path> name."
11737 msgstr ""
11738
11739 #. type: =head2
11740 #: ../src/guestfs-actions.pod:3559
11741 msgid "guestfs_is_symlink"
11742 msgstr ""
11743
11744 #. type: verbatim
11745 #: ../src/guestfs-actions.pod:3561
11746 #, no-wrap
11747 msgid ""
11748 " int\n"
11749 " guestfs_is_symlink (guestfs_h *g,\n"
11750 "                     const char *path);\n"
11751 "\n"
11752 msgstr ""
11753
11754 #. type: textblock
11755 #: ../src/guestfs-actions.pod:3565 ../fish/guestfish-actions.pod:2443
11756 msgid ""
11757 "This returns C<true> if and only if there is a symbolic link with the given "
11758 "C<path> name."
11759 msgstr ""
11760
11761 #. type: =head2
11762 #: ../src/guestfs-actions.pod:3574
11763 msgid "guestfs_is_zero"
11764 msgstr ""
11765
11766 #. type: verbatim
11767 #: ../src/guestfs-actions.pod:3576
11768 #, no-wrap
11769 msgid ""
11770 " int\n"
11771 " guestfs_is_zero (guestfs_h *g,\n"
11772 "                  const char *path);\n"
11773 "\n"
11774 msgstr ""
11775
11776 #. type: textblock
11777 #: ../src/guestfs-actions.pod:3580 ../fish/guestfish-actions.pod:2452
11778 msgid ""
11779 "This returns true iff the file exists and the file is empty or it contains "
11780 "all zero bytes."
11781 msgstr ""
11782
11783 #. type: textblock
11784 #: ../src/guestfs-actions.pod:3585 ../src/guestfs-actions.pod:3599
11785 msgid "(Added in 1.11.8)"
11786 msgstr ""
11787
11788 #. type: =head2
11789 #: ../src/guestfs-actions.pod:3587
11790 msgid "guestfs_is_zero_device"
11791 msgstr ""
11792
11793 #. type: verbatim
11794 #: ../src/guestfs-actions.pod:3589
11795 #, no-wrap
11796 msgid ""
11797 " int\n"
11798 " guestfs_is_zero_device (guestfs_h *g,\n"
11799 "                         const char *device);\n"
11800 "\n"
11801 msgstr ""
11802
11803 #. type: textblock
11804 #: ../src/guestfs-actions.pod:3593 ../fish/guestfish-actions.pod:2459
11805 msgid "This returns true iff the device exists and contains all zero bytes."
11806 msgstr ""
11807
11808 #. type: textblock
11809 #: ../src/guestfs-actions.pod:3595 ../fish/guestfish-actions.pod:2461
11810 msgid "Note that for large devices this can take a long time to run."
11811 msgstr ""
11812
11813 #. type: =head2
11814 #: ../src/guestfs-actions.pod:3601
11815 msgid "guestfs_kill_subprocess"
11816 msgstr ""
11817
11818 #. type: verbatim
11819 #: ../src/guestfs-actions.pod:3603
11820 #, no-wrap
11821 msgid ""
11822 " int\n"
11823 " guestfs_kill_subprocess (guestfs_h *g);\n"
11824 "\n"
11825 msgstr ""
11826
11827 #. type: textblock
11828 #: ../src/guestfs-actions.pod:3606 ../fish/guestfish-actions.pod:2467
11829 msgid "This kills the qemu subprocess.  You should never need to call this."
11830 msgstr ""
11831
11832 #. type: =head2
11833 #: ../src/guestfs-actions.pod:3612
11834 msgid "guestfs_launch"
11835 msgstr ""
11836
11837 #. type: verbatim
11838 #: ../src/guestfs-actions.pod:3614
11839 #, no-wrap
11840 msgid ""
11841 " int\n"
11842 " guestfs_launch (guestfs_h *g);\n"
11843 "\n"
11844 msgstr ""
11845
11846 #. type: textblock
11847 #: ../src/guestfs-actions.pod:3617 ../fish/guestfish-actions.pod:2475
11848 msgid ""
11849 "Internally libguestfs is implemented by running a virtual machine using "
11850 "L<qemu(1)>."
11851 msgstr ""
11852
11853 #. type: textblock
11854 #: ../src/guestfs-actions.pod:3620 ../fish/guestfish-actions.pod:2478
11855 msgid ""
11856 "You should call this after configuring the handle (eg. adding drives) but "
11857 "before performing any actions."
11858 msgstr ""
11859
11860 #. type: =head2
11861 #: ../src/guestfs-actions.pod:3632
11862 msgid "guestfs_lchown"
11863 msgstr ""
11864
11865 #. type: verbatim
11866 #: ../src/guestfs-actions.pod:3634
11867 #, no-wrap
11868 msgid ""
11869 " int\n"
11870 " guestfs_lchown (guestfs_h *g,\n"
11871 "                 int owner,\n"
11872 "                 int group,\n"
11873 "                 const char *path);\n"
11874 "\n"
11875 msgstr ""
11876
11877 #. type: textblock
11878 #: ../src/guestfs-actions.pod:3640
11879 msgid ""
11880 "Change the file owner to C<owner> and group to C<group>.  This is like "
11881 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
11882 "changed, not the target."
11883 msgstr ""
11884
11885 #. type: =head2
11886 #: ../src/guestfs-actions.pod:3652
11887 msgid "guestfs_lgetxattr"
11888 msgstr ""
11889
11890 #. type: verbatim
11891 #: ../src/guestfs-actions.pod:3654
11892 #, no-wrap
11893 msgid ""
11894 " char *\n"
11895 " guestfs_lgetxattr (guestfs_h *g,\n"
11896 "                    const char *path,\n"
11897 "                    const char *name,\n"
11898 "                    size_t *size_r);\n"
11899 "\n"
11900 msgstr ""
11901
11902 #. type: textblock
11903 #: ../src/guestfs-actions.pod:3660 ../fish/guestfish-actions.pod:2497
11904 msgid ""
11905 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
11906 "is a symlink, then this call returns an extended attribute from the symlink."
11907 msgstr ""
11908
11909 #. type: textblock
11910 #: ../src/guestfs-actions.pod:3674
11911 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
11912 msgstr ""
11913
11914 #. type: =head2
11915 #: ../src/guestfs-actions.pod:3682
11916 msgid "guestfs_lgetxattrs"
11917 msgstr ""
11918
11919 #. type: verbatim
11920 #: ../src/guestfs-actions.pod:3684
11921 #, no-wrap
11922 msgid ""
11923 " struct guestfs_xattr_list *\n"
11924 " guestfs_lgetxattrs (guestfs_h *g,\n"
11925 "                     const char *path);\n"
11926 "\n"
11927 msgstr ""
11928
11929 #. type: textblock
11930 #: ../src/guestfs-actions.pod:3688
11931 msgid ""
11932 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
11933 "then it returns the extended attributes of the link itself."
11934 msgstr ""
11935
11936 #. type: =head2
11937 #: ../src/guestfs-actions.pod:3698
11938 msgid "guestfs_list_9p"
11939 msgstr ""
11940
11941 #. type: verbatim
11942 #: ../src/guestfs-actions.pod:3700
11943 #, no-wrap
11944 msgid ""
11945 " char **\n"
11946 " guestfs_list_9p (guestfs_h *g);\n"
11947 "\n"
11948 msgstr ""
11949
11950 #. type: textblock
11951 #: ../src/guestfs-actions.pod:3703 ../fish/guestfish-actions.pod:2525
11952 msgid ""
11953 "List all 9p filesystems attached to the guest.  A list of mount tags is "
11954 "returned."
11955 msgstr ""
11956
11957 #. type: =head2
11958 #: ../src/guestfs-actions.pod:3712
11959 msgid "guestfs_list_devices"
11960 msgstr ""
11961
11962 #. type: verbatim
11963 #: ../src/guestfs-actions.pod:3714
11964 #, no-wrap
11965 msgid ""
11966 " char **\n"
11967 " guestfs_list_devices (guestfs_h *g);\n"
11968 "\n"
11969 msgstr ""
11970
11971 #. type: textblock
11972 #: ../src/guestfs-actions.pod:3717 ../fish/guestfish-actions.pod:2532
11973 msgid "List all the block devices."
11974 msgstr ""
11975
11976 #. type: textblock
11977 #: ../src/guestfs-actions.pod:3719 ../fish/guestfish-actions.pod:2534
11978 msgid "The full block device names are returned, eg. C</dev/sda>."
11979 msgstr ""
11980
11981 #. type: =head2
11982 #: ../src/guestfs-actions.pod:3729
11983 msgid "guestfs_list_dm_devices"
11984 msgstr ""
11985
11986 #. type: verbatim
11987 #: ../src/guestfs-actions.pod:3731
11988 #, no-wrap
11989 msgid ""
11990 " char **\n"
11991 " guestfs_list_dm_devices (guestfs_h *g);\n"
11992 "\n"
11993 msgstr ""
11994
11995 #. type: textblock
11996 #: ../src/guestfs-actions.pod:3734 ../fish/guestfish-actions.pod:2542
11997 msgid "List all device mapper devices."
11998 msgstr ""
11999
12000 #. type: textblock
12001 #: ../src/guestfs-actions.pod:3736
12002 msgid ""
12003 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
12004 "previous call to C<guestfs_luks_open>."
12005 msgstr ""
12006
12007 #. type: textblock
12008 #: ../src/guestfs-actions.pod:3739
12009 msgid ""
12010 "Device mapper devices which correspond to logical volumes are I<not> "
12011 "returned in this list.  Call C<guestfs_lvs> if you want to list logical "
12012 "volumes."
12013 msgstr ""
12014
12015 #. type: textblock
12016 #: ../src/guestfs-actions.pod:3747 ../src/guestfs-actions.pod:5203
12017 msgid "(Added in 1.11.15)"
12018 msgstr ""
12019
12020 #. type: =head2
12021 #: ../src/guestfs-actions.pod:3749
12022 msgid "guestfs_list_filesystems"
12023 msgstr ""
12024
12025 #. type: verbatim
12026 #: ../src/guestfs-actions.pod:3751
12027 #, no-wrap
12028 msgid ""
12029 " char **\n"
12030 " guestfs_list_filesystems (guestfs_h *g);\n"
12031 "\n"
12032 msgstr ""
12033
12034 #. type: textblock
12035 #: ../src/guestfs-actions.pod:3754 ../fish/guestfish-actions.pod:2555
12036 msgid ""
12037 "This inspection command looks for filesystems on partitions, block devices "
12038 "and logical volumes, returning a list of devices containing filesystems and "
12039 "their type."
12040 msgstr ""
12041
12042 #. type: textblock
12043 #: ../src/guestfs-actions.pod:3758 ../fish/guestfish-actions.pod:2559
12044 msgid ""
12045 "The return value is a hash, where the keys are the devices containing "
12046 "filesystems, and the values are the filesystem types.  For example:"
12047 msgstr ""
12048
12049 #. type: verbatim
12050 #: ../src/guestfs-actions.pod:3762 ../fish/guestfish-actions.pod:2563
12051 #, no-wrap
12052 msgid ""
12053 " \"/dev/sda1\" => \"ntfs\"\n"
12054 " \"/dev/sda2\" => \"ext2\"\n"
12055 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12056 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12057 "\n"
12058 msgstr ""
12059
12060 #. type: textblock
12061 #: ../src/guestfs-actions.pod:3767 ../fish/guestfish-actions.pod:2568
12062 msgid ""
12063 "The value can have the special value \"unknown\", meaning the content of the "
12064 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
12065 msgstr ""
12066
12067 #. type: textblock
12068 #: ../src/guestfs-actions.pod:3771
12069 msgid ""
12070 "This command runs other libguestfs commands, which might include "
12071 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12072 "soon after launch and only when nothing is mounted."
12073 msgstr ""
12074
12075 #. type: textblock
12076 #: ../src/guestfs-actions.pod:3775
12077 msgid ""
12078 "Not all of the filesystems returned will be mountable.  In particular, swap "
12079 "partitions are returned in the list.  Also this command does not check that "
12080 "each filesystem found is valid and mountable, and some filesystems might be "
12081 "mountable but require special options.  Filesystems may not all belong to a "
12082 "single logical operating system (use C<guestfs_inspect_os> to look for "
12083 "OSes)."
12084 msgstr ""
12085
12086 #. type: textblock
12087 #: ../src/guestfs-actions.pod:3789 ../src/guestfs-actions.pod:5558
12088 msgid "(Added in 1.5.15)"
12089 msgstr ""
12090
12091 #. type: =head2
12092 #: ../src/guestfs-actions.pod:3791
12093 msgid "guestfs_list_partitions"
12094 msgstr ""
12095
12096 #. type: verbatim
12097 #: ../src/guestfs-actions.pod:3793
12098 #, no-wrap
12099 msgid ""
12100 " char **\n"
12101 " guestfs_list_partitions (guestfs_h *g);\n"
12102 "\n"
12103 msgstr ""
12104
12105 #. type: textblock
12106 #: ../src/guestfs-actions.pod:3796 ../fish/guestfish-actions.pod:2588
12107 msgid "List all the partitions detected on all block devices."
12108 msgstr ""
12109
12110 #. type: textblock
12111 #: ../src/guestfs-actions.pod:3798 ../fish/guestfish-actions.pod:2590
12112 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12113 msgstr ""
12114
12115 #. type: textblock
12116 #: ../src/guestfs-actions.pod:3800
12117 msgid ""
12118 "This does not return logical volumes.  For that you will need to call "
12119 "C<guestfs_lvs>."
12120 msgstr ""
12121
12122 #. type: =head2
12123 #: ../src/guestfs-actions.pod:3811
12124 msgid "guestfs_ll"
12125 msgstr ""
12126
12127 #. type: verbatim
12128 #: ../src/guestfs-actions.pod:3813
12129 #, no-wrap
12130 msgid ""
12131 " char *\n"
12132 " guestfs_ll (guestfs_h *g,\n"
12133 "             const char *directory);\n"
12134 "\n"
12135 msgstr ""
12136
12137 #. type: textblock
12138 #: ../src/guestfs-actions.pod:3817 ../fish/guestfish-actions.pod:2601
12139 msgid ""
12140 "List the files in C<directory> (relative to the root directory, there is no "
12141 "cwd) in the format of 'ls -la'."
12142 msgstr ""
12143
12144 #. type: textblock
12145 #: ../src/guestfs-actions.pod:3820 ../fish/guestfish-actions.pod:2604
12146 msgid ""
12147 "This command is mostly useful for interactive sessions.  It is I<not> "
12148 "intended that you try to parse the output string."
12149 msgstr ""
12150
12151 #. type: =head2
12152 #: ../src/guestfs-actions.pod:3828
12153 msgid "guestfs_ln"
12154 msgstr ""
12155
12156 #. type: verbatim
12157 #: ../src/guestfs-actions.pod:3830
12158 #, no-wrap
12159 msgid ""
12160 " int\n"
12161 " guestfs_ln (guestfs_h *g,\n"
12162 "             const char *target,\n"
12163 "             const char *linkname);\n"
12164 "\n"
12165 msgstr ""
12166
12167 #. type: textblock
12168 #: ../src/guestfs-actions.pod:3835 ../fish/guestfish-actions.pod:2611
12169 msgid "This command creates a hard link using the C<ln> command."
12170 msgstr ""
12171
12172 #. type: =head2
12173 #: ../src/guestfs-actions.pod:3841
12174 msgid "guestfs_ln_f"
12175 msgstr ""
12176
12177 #. type: verbatim
12178 #: ../src/guestfs-actions.pod:3843
12179 #, no-wrap
12180 msgid ""
12181 " int\n"
12182 " guestfs_ln_f (guestfs_h *g,\n"
12183 "               const char *target,\n"
12184 "               const char *linkname);\n"
12185 "\n"
12186 msgstr ""
12187
12188 #. type: textblock
12189 #: ../src/guestfs-actions.pod:3848 ../fish/guestfish-actions.pod:2617
12190 msgid ""
12191 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12192 "option removes the link (C<linkname>) if it exists already."
12193 msgstr ""
12194
12195 #. type: =head2
12196 #: ../src/guestfs-actions.pod:3855
12197 msgid "guestfs_ln_s"
12198 msgstr ""
12199
12200 #. type: verbatim
12201 #: ../src/guestfs-actions.pod:3857
12202 #, no-wrap
12203 msgid ""
12204 " int\n"
12205 " guestfs_ln_s (guestfs_h *g,\n"
12206 "               const char *target,\n"
12207 "               const char *linkname);\n"
12208 "\n"
12209 msgstr ""
12210
12211 #. type: textblock
12212 #: ../src/guestfs-actions.pod:3862 ../fish/guestfish-actions.pod:2624
12213 msgid "This command creates a symbolic link using the C<ln -s> command."
12214 msgstr ""
12215
12216 #. type: =head2
12217 #: ../src/guestfs-actions.pod:3868
12218 msgid "guestfs_ln_sf"
12219 msgstr ""
12220
12221 #. type: verbatim
12222 #: ../src/guestfs-actions.pod:3870
12223 #, no-wrap
12224 msgid ""
12225 " int\n"
12226 " guestfs_ln_sf (guestfs_h *g,\n"
12227 "                const char *target,\n"
12228 "                const char *linkname);\n"
12229 "\n"
12230 msgstr ""
12231
12232 #. type: textblock
12233 #: ../src/guestfs-actions.pod:3875 ../fish/guestfish-actions.pod:2630
12234 msgid ""
12235 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12236 "option removes the link (C<linkname>) if it exists already."
12237 msgstr ""
12238
12239 #. type: =head2
12240 #: ../src/guestfs-actions.pod:3882
12241 msgid "guestfs_lremovexattr"
12242 msgstr ""
12243
12244 #. type: verbatim
12245 #: ../src/guestfs-actions.pod:3884
12246 #, no-wrap
12247 msgid ""
12248 " int\n"
12249 " guestfs_lremovexattr (guestfs_h *g,\n"
12250 "                       const char *xattr,\n"
12251 "                       const char *path);\n"
12252 "\n"
12253 msgstr ""
12254
12255 #. type: textblock
12256 #: ../src/guestfs-actions.pod:3889
12257 msgid ""
12258 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12259 "link, then it removes an extended attribute of the link itself."
12260 msgstr ""
12261
12262 #. type: =head2
12263 #: ../src/guestfs-actions.pod:3897
12264 msgid "guestfs_ls"
12265 msgstr ""
12266
12267 #. type: verbatim
12268 #: ../src/guestfs-actions.pod:3899
12269 #, no-wrap
12270 msgid ""
12271 " char **\n"
12272 " guestfs_ls (guestfs_h *g,\n"
12273 "             const char *directory);\n"
12274 "\n"
12275 msgstr ""
12276
12277 #. type: textblock
12278 #: ../src/guestfs-actions.pod:3903 ../fish/guestfish-actions.pod:2645
12279 msgid ""
12280 "List the files in C<directory> (relative to the root directory, there is no "
12281 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
12282 "shown."
12283 msgstr ""
12284
12285 #. type: textblock
12286 #: ../src/guestfs-actions.pod:3907
12287 msgid ""
12288 "This command is mostly useful for interactive sessions.  Programs should "
12289 "probably use C<guestfs_readdir> instead."
12290 msgstr ""
12291
12292 #. type: =head2
12293 #: ../src/guestfs-actions.pod:3916
12294 msgid "guestfs_lsetxattr"
12295 msgstr ""
12296
12297 #. type: verbatim
12298 #: ../src/guestfs-actions.pod:3918
12299 #, no-wrap
12300 msgid ""
12301 " int\n"
12302 " guestfs_lsetxattr (guestfs_h *g,\n"
12303 "                    const char *xattr,\n"
12304 "                    const char *val,\n"
12305 "                    int vallen,\n"
12306 "                    const char *path);\n"
12307 "\n"
12308 msgstr ""
12309
12310 #. type: textblock
12311 #: ../src/guestfs-actions.pod:3925
12312 msgid ""
12313 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12314 "then it sets an extended attribute of the link itself."
12315 msgstr ""
12316
12317 #. type: =head2
12318 #: ../src/guestfs-actions.pod:3933
12319 msgid "guestfs_lstat"
12320 msgstr ""
12321
12322 #. type: verbatim
12323 #: ../src/guestfs-actions.pod:3935
12324 #, no-wrap
12325 msgid ""
12326 " struct guestfs_stat *\n"
12327 " guestfs_lstat (guestfs_h *g,\n"
12328 "                const char *path);\n"
12329 "\n"
12330 msgstr ""
12331
12332 #. type: textblock
12333 #: ../src/guestfs-actions.pod:3939 ../src/guestfs-actions.pod:6693 ../fish/guestfish-actions.pod:2664 ../fish/guestfish-actions.pod:4451
12334 msgid "Returns file information for the given C<path>."
12335 msgstr ""
12336
12337 #. type: textblock
12338 #: ../src/guestfs-actions.pod:3941
12339 msgid ""
12340 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12341 "link, then the link is stat-ed, not the file it refers to."
12342 msgstr ""
12343
12344 #. type: textblock
12345 #: ../src/guestfs-actions.pod:3945 ../fish/guestfish-actions.pod:2670
12346 msgid "This is the same as the C<lstat(2)> system call."
12347 msgstr ""
12348
12349 #. type: textblock
12350 #: ../src/guestfs-actions.pod:3947 ../src/guestfs-actions.pod:6697
12351 msgid ""
12352 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12353 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12354 msgstr ""
12355
12356 #. type: textblock
12357 #: ../src/guestfs-actions.pod:3951 ../src/guestfs-actions.pod:6701 ../src/guestfs-actions.pod:6719 ../src/guestfs-actions.pod:7100
12358 msgid "(Added in 0.9.2)"
12359 msgstr ""
12360
12361 #. type: =head2
12362 #: ../src/guestfs-actions.pod:3953
12363 msgid "guestfs_lstatlist"
12364 msgstr ""
12365
12366 #. type: verbatim
12367 #: ../src/guestfs-actions.pod:3955
12368 #, no-wrap
12369 msgid ""
12370 " struct guestfs_stat_list *\n"
12371 " guestfs_lstatlist (guestfs_h *g,\n"
12372 "                    const char *path,\n"
12373 "                    char *const *names);\n"
12374 "\n"
12375 msgstr ""
12376
12377 #. type: textblock
12378 #: ../src/guestfs-actions.pod:3960
12379 msgid ""
12380 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12381 "files, where all files are in the directory C<path>.  C<names> is the list "
12382 "of files from this directory."
12383 msgstr ""
12384
12385 #. type: textblock
12386 #: ../src/guestfs-actions.pod:3964 ../fish/guestfish-actions.pod:2680
12387 msgid ""
12388 "On return you get a list of stat structs, with a one-to-one correspondence "
12389 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12390 "then the C<ino> field of that structure is set to C<-1>."
12391 msgstr ""
12392
12393 #. type: textblock
12394 #: ../src/guestfs-actions.pod:3969
12395 msgid ""
12396 "This call is intended for programs that want to efficiently list a directory "
12397 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12398 "for a similarly efficient call for getting extended attributes.  Very long "
12399 "directory listings might cause the protocol message size to be exceeded, "
12400 "causing this call to fail.  The caller must split up such requests into "
12401 "smaller groups of names."
12402 msgstr ""
12403
12404 #. type: textblock
12405 #: ../src/guestfs-actions.pod:3977
12406 msgid ""
12407 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12408 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12409 msgstr ""
12410
12411 #. type: =head2
12412 #: ../src/guestfs-actions.pod:3983
12413 msgid "guestfs_luks_add_key"
12414 msgstr ""
12415
12416 #. type: verbatim
12417 #: ../src/guestfs-actions.pod:3985
12418 #, no-wrap
12419 msgid ""
12420 " int\n"
12421 " guestfs_luks_add_key (guestfs_h *g,\n"
12422 "                       const char *device,\n"
12423 "                       const char *key,\n"
12424 "                       const char *newkey,\n"
12425 "                       int keyslot);\n"
12426 "\n"
12427 msgstr ""
12428
12429 #. type: textblock
12430 #: ../src/guestfs-actions.pod:3992 ../fish/guestfish-actions.pod:2697
12431 msgid ""
12432 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12433 "existing key, and is used to access the device.  C<newkey> is the new key to "
12434 "add.  C<keyslot> is the key slot that will be replaced."
12435 msgstr ""
12436
12437 #. type: textblock
12438 #: ../src/guestfs-actions.pod:3997
12439 msgid ""
12440 "Note that if C<keyslot> already contains a key, then this command will "
12441 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12442 msgstr ""
12443
12444 #. type: textblock
12445 #: ../src/guestfs-actions.pod:4003 ../src/guestfs-actions.pod:4043 ../src/guestfs-actions.pod:4066 ../src/guestfs-actions.pod:4086 ../src/guestfs-actions.pod:4121 ../src/guestfs-actions.pod:4140
12446 msgid ""
12447 "This function takes a key or passphrase parameter which could contain "
12448 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12449 "information."
12450 msgstr ""
12451
12452 #. type: textblock
12453 #: ../src/guestfs-actions.pod:4007 ../src/guestfs-actions.pod:4047 ../src/guestfs-actions.pod:4070 ../src/guestfs-actions.pod:4090
12454 msgid "(Added in 1.5.2)"
12455 msgstr ""
12456
12457 #. type: =head2
12458 #: ../src/guestfs-actions.pod:4009
12459 msgid "guestfs_luks_close"
12460 msgstr ""
12461
12462 #. type: verbatim
12463 #: ../src/guestfs-actions.pod:4011
12464 #, no-wrap
12465 msgid ""
12466 " int\n"
12467 " guestfs_luks_close (guestfs_h *g,\n"
12468 "                     const char *device);\n"
12469 "\n"
12470 msgstr ""
12471
12472 #. type: textblock
12473 #: ../src/guestfs-actions.pod:4015
12474 msgid ""
12475 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12476 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12477 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12478 "underlying block device."
12479 msgstr ""
12480
12481 #. type: textblock
12482 #: ../src/guestfs-actions.pod:4023 ../src/guestfs-actions.pod:4125 ../src/guestfs-actions.pod:4144 ../src/guestfs-actions.pod:4194 ../src/guestfs-actions.pod:4242
12483 msgid "(Added in 1.5.1)"
12484 msgstr ""
12485
12486 #. type: =head2
12487 #: ../src/guestfs-actions.pod:4025
12488 msgid "guestfs_luks_format"
12489 msgstr ""
12490
12491 #. type: verbatim
12492 #: ../src/guestfs-actions.pod:4027
12493 #, no-wrap
12494 msgid ""
12495 " int\n"
12496 " guestfs_luks_format (guestfs_h *g,\n"
12497 "                      const char *device,\n"
12498 "                      const char *key,\n"
12499 "                      int keyslot);\n"
12500 "\n"
12501 msgstr ""
12502
12503 #. type: textblock
12504 #: ../src/guestfs-actions.pod:4033 ../fish/guestfish-actions.pod:2723
12505 msgid ""
12506 "This command erases existing data on C<device> and formats the device as a "
12507 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12508 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12509 msgstr ""
12510
12511 #. type: textblock
12512 #: ../src/guestfs-actions.pod:4040 ../src/guestfs-actions.pod:4063 ../src/guestfs-actions.pod:4206 ../src/guestfs-actions.pod:5309 ../src/guestfs-actions.pod:6091 ../src/guestfs-actions.pod:6500 ../src/guestfs-actions.pod:6530 ../src/guestfs-actions.pod:6563 ../src/guestfs-actions.pod:7739 ../fish/guestfish-actions.pod:2731 ../fish/guestfish-actions.pod:2744 ../fish/guestfish-actions.pod:2831 ../fish/guestfish-actions.pod:3492 ../fish/guestfish-actions.pod:4012 ../fish/guestfish-actions.pod:4322 ../fish/guestfish-actions.pod:4345 ../fish/guestfish-actions.pod:4367 ../fish/guestfish-actions.pod:5091
12513 msgid ""
12514 "B<This command is dangerous.  Without careful use you can easily destroy all "
12515 "your data>."
12516 msgstr ""
12517
12518 #. type: =head2
12519 #: ../src/guestfs-actions.pod:4049
12520 msgid "guestfs_luks_format_cipher"
12521 msgstr ""
12522
12523 #. type: verbatim
12524 #: ../src/guestfs-actions.pod:4051
12525 #, no-wrap
12526 msgid ""
12527 " int\n"
12528 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12529 "                             const char *device,\n"
12530 "                             const char *key,\n"
12531 "                             int keyslot,\n"
12532 "                             const char *cipher);\n"
12533 "\n"
12534 msgstr ""
12535
12536 #. type: textblock
12537 #: ../src/guestfs-actions.pod:4058
12538 msgid ""
12539 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12540 "set the C<cipher> used."
12541 msgstr ""
12542
12543 #. type: =head2
12544 #: ../src/guestfs-actions.pod:4072
12545 msgid "guestfs_luks_kill_slot"
12546 msgstr ""
12547
12548 #. type: verbatim
12549 #: ../src/guestfs-actions.pod:4074
12550 #, no-wrap
12551 msgid ""
12552 " int\n"
12553 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12554 "                         const char *device,\n"
12555 "                         const char *key,\n"
12556 "                         int keyslot);\n"
12557 "\n"
12558 msgstr ""
12559
12560 #. type: textblock
12561 #: ../src/guestfs-actions.pod:4080 ../fish/guestfish-actions.pod:2751
12562 msgid ""
12563 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12564 "device C<device>.  C<key> must be one of the I<other> keys."
12565 msgstr ""
12566
12567 #. type: =head2
12568 #: ../src/guestfs-actions.pod:4092
12569 msgid "guestfs_luks_open"
12570 msgstr ""
12571
12572 #. type: verbatim
12573 #: ../src/guestfs-actions.pod:4094
12574 #, no-wrap
12575 msgid ""
12576 " int\n"
12577 " guestfs_luks_open (guestfs_h *g,\n"
12578 "                    const char *device,\n"
12579 "                    const char *key,\n"
12580 "                    const char *mapname);\n"
12581 "\n"
12582 msgstr ""
12583
12584 #. type: textblock
12585 #: ../src/guestfs-actions.pod:4100 ../fish/guestfish-actions.pod:2762
12586 msgid ""
12587 "This command opens a block device which has been encrypted according to the "
12588 "Linux Unified Key Setup (LUKS) standard."
12589 msgstr ""
12590
12591 #. type: textblock
12592 #: ../src/guestfs-actions.pod:4103 ../fish/guestfish-actions.pod:2765
12593 msgid "C<device> is the encrypted block device or partition."
12594 msgstr ""
12595
12596 #. type: textblock
12597 #: ../src/guestfs-actions.pod:4105 ../fish/guestfish-actions.pod:2767
12598 msgid ""
12599 "The caller must supply one of the keys associated with the LUKS block "
12600 "device, in the C<key> parameter."
12601 msgstr ""
12602
12603 #. type: textblock
12604 #: ../src/guestfs-actions.pod:4108 ../fish/guestfish-actions.pod:2770
12605 msgid ""
12606 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12607 "writes to this block device are decrypted from and encrypted to the "
12608 "underlying C<device> respectively."
12609 msgstr ""
12610
12611 #. type: textblock
12612 #: ../src/guestfs-actions.pod:4112
12613 msgid ""
12614 "If this block device contains LVM volume groups, then calling "
12615 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12616 "visible."
12617 msgstr ""
12618
12619 #. type: textblock
12620 #: ../src/guestfs-actions.pod:4116
12621 msgid "Use C<guestfs_list_dm_devices> to list all device mapper devices."
12622 msgstr ""
12623
12624 #. type: =head2
12625 #: ../src/guestfs-actions.pod:4127
12626 msgid "guestfs_luks_open_ro"
12627 msgstr ""
12628
12629 #. type: verbatim
12630 #: ../src/guestfs-actions.pod:4129
12631 #, no-wrap
12632 msgid ""
12633 " int\n"
12634 " guestfs_luks_open_ro (guestfs_h *g,\n"
12635 "                       const char *device,\n"
12636 "                       const char *key,\n"
12637 "                       const char *mapname);\n"
12638 "\n"
12639 msgstr ""
12640
12641 #. type: textblock
12642 #: ../src/guestfs-actions.pod:4135
12643 msgid ""
12644 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12645 "created."
12646 msgstr ""
12647
12648 #. type: =head2
12649 #: ../src/guestfs-actions.pod:4146
12650 msgid "guestfs_lvcreate"
12651 msgstr ""
12652
12653 #. type: verbatim
12654 #: ../src/guestfs-actions.pod:4148
12655 #, no-wrap
12656 msgid ""
12657 " int\n"
12658 " guestfs_lvcreate (guestfs_h *g,\n"
12659 "                   const char *logvol,\n"
12660 "                   const char *volgroup,\n"
12661 "                   int mbytes);\n"
12662 "\n"
12663 msgstr ""
12664
12665 #. type: textblock
12666 #: ../src/guestfs-actions.pod:4154 ../fish/guestfish-actions.pod:2798
12667 msgid ""
12668 "This creates an LVM logical volume called C<logvol> on the volume group "
12669 "C<volgroup>, with C<size> megabytes."
12670 msgstr ""
12671
12672 #. type: =head2
12673 #: ../src/guestfs-actions.pod:4161
12674 msgid "guestfs_lvm_canonical_lv_name"
12675 msgstr ""
12676
12677 #. type: verbatim
12678 #: ../src/guestfs-actions.pod:4163
12679 #, no-wrap
12680 msgid ""
12681 " char *\n"
12682 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12683 "                                const char *lvname);\n"
12684 "\n"
12685 msgstr ""
12686
12687 #. type: textblock
12688 #: ../src/guestfs-actions.pod:4167 ../fish/guestfish-actions.pod:2805
12689 msgid ""
12690 "This converts alternative naming schemes for LVs that you might find to the "
12691 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
12692 "C</dev/VG/LV>."
12693 msgstr ""
12694
12695 #. type: textblock
12696 #: ../src/guestfs-actions.pod:4171 ../fish/guestfish-actions.pod:2809
12697 msgid ""
12698 "This command returns an error if the C<lvname> parameter does not refer to a "
12699 "logical volume."
12700 msgstr ""
12701
12702 #. type: textblock
12703 #: ../src/guestfs-actions.pod:4174
12704 msgid "See also C<guestfs_is_lv>."
12705 msgstr ""
12706
12707 #. type: textblock
12708 #: ../src/guestfs-actions.pod:4179
12709 msgid "(Added in 1.5.24)"
12710 msgstr ""
12711
12712 #. type: =head2
12713 #: ../src/guestfs-actions.pod:4181
12714 msgid "guestfs_lvm_clear_filter"
12715 msgstr ""
12716
12717 #. type: verbatim
12718 #: ../src/guestfs-actions.pod:4183
12719 #, no-wrap
12720 msgid ""
12721 " int\n"
12722 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12723 "\n"
12724 msgstr ""
12725
12726 #. type: textblock
12727 #: ../src/guestfs-actions.pod:4186
12728 msgid ""
12729 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12730 "see every block device."
12731 msgstr ""
12732
12733 #. type: textblock
12734 #: ../src/guestfs-actions.pod:4189 ../src/guestfs-actions.pod:4231 ../fish/guestfish-actions.pod:2821 ../fish/guestfish-actions.pod:2852
12735 msgid "This command also clears the LVM cache and performs a volume group scan."
12736 msgstr ""
12737
12738 #. type: =head2
12739 #: ../src/guestfs-actions.pod:4196
12740 msgid "guestfs_lvm_remove_all"
12741 msgstr ""
12742
12743 #. type: verbatim
12744 #: ../src/guestfs-actions.pod:4198
12745 #, no-wrap
12746 msgid ""
12747 " int\n"
12748 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12749 "\n"
12750 msgstr ""
12751
12752 #. type: textblock
12753 #: ../src/guestfs-actions.pod:4201 ../fish/guestfish-actions.pod:2828
12754 msgid ""
12755 "This command removes all LVM logical volumes, volume groups and physical "
12756 "volumes."
12757 msgstr ""
12758
12759 #. type: =head2
12760 #: ../src/guestfs-actions.pod:4211
12761 msgid "guestfs_lvm_set_filter"
12762 msgstr ""
12763
12764 #. type: verbatim
12765 #: ../src/guestfs-actions.pod:4213
12766 #, no-wrap
12767 msgid ""
12768 " int\n"
12769 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12770 "                         char *const *devices);\n"
12771 "\n"
12772 msgstr ""
12773
12774 #. type: textblock
12775 #: ../src/guestfs-actions.pod:4217 ../fish/guestfish-actions.pod:2838
12776 msgid ""
12777 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12778 "block devices in the list C<devices>, and will ignore all other attached "
12779 "block devices."
12780 msgstr ""
12781
12782 #. type: textblock
12783 #: ../src/guestfs-actions.pod:4221 ../fish/guestfish-actions.pod:2842
12784 msgid ""
12785 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12786 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12787 "there are two types of duplication possible: either cloned PVs/VGs which "
12788 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12789 "same name.  In normal operation you cannot create this situation, but you "
12790 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12791 "inside the LVM metadata."
12792 msgstr ""
12793
12794 #. type: textblock
12795 #: ../src/guestfs-actions.pod:4234 ../fish/guestfish-actions.pod:2855
12796 msgid "You can filter whole block devices or individual partitions."
12797 msgstr ""
12798
12799 #. type: textblock
12800 #: ../src/guestfs-actions.pod:4236 ../fish/guestfish-actions.pod:2857
12801 msgid ""
12802 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12803 "filesystem), even if you are not filtering out that VG."
12804 msgstr ""
12805
12806 #. type: =head2
12807 #: ../src/guestfs-actions.pod:4244
12808 msgid "guestfs_lvremove"
12809 msgstr ""
12810
12811 #. type: verbatim
12812 #: ../src/guestfs-actions.pod:4246
12813 #, no-wrap
12814 msgid ""
12815 " int\n"
12816 " guestfs_lvremove (guestfs_h *g,\n"
12817 "                   const char *device);\n"
12818 "\n"
12819 msgstr ""
12820
12821 #. type: textblock
12822 #: ../src/guestfs-actions.pod:4250 ../fish/guestfish-actions.pod:2865
12823 msgid ""
12824 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12825 "LV, such as C</dev/VG/LV>."
12826 msgstr ""
12827
12828 #. type: textblock
12829 #: ../src/guestfs-actions.pod:4253 ../fish/guestfish-actions.pod:2868
12830 msgid ""
12831 "You can also remove all LVs in a volume group by specifying the VG name, "
12832 "C</dev/VG>."
12833 msgstr ""
12834
12835 #. type: textblock
12836 #: ../src/guestfs-actions.pod:4258 ../src/guestfs-actions.pod:5655 ../src/guestfs-actions.pod:7470
12837 msgid "(Added in 1.0.13)"
12838 msgstr ""
12839
12840 #. type: =head2
12841 #: ../src/guestfs-actions.pod:4260
12842 msgid "guestfs_lvrename"
12843 msgstr ""
12844
12845 #. type: verbatim
12846 #: ../src/guestfs-actions.pod:4262
12847 #, no-wrap
12848 msgid ""
12849 " int\n"
12850 " guestfs_lvrename (guestfs_h *g,\n"
12851 "                   const char *logvol,\n"
12852 "                   const char *newlogvol);\n"
12853 "\n"
12854 msgstr ""
12855
12856 #. type: textblock
12857 #: ../src/guestfs-actions.pod:4267 ../fish/guestfish-actions.pod:2875
12858 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12859 msgstr ""
12860
12861 #. type: textblock
12862 #: ../src/guestfs-actions.pod:4271 ../src/guestfs-actions.pod:7483
12863 msgid "(Added in 1.0.83)"
12864 msgstr ""
12865
12866 #. type: =head2
12867 #: ../src/guestfs-actions.pod:4273
12868 msgid "guestfs_lvresize"
12869 msgstr ""
12870
12871 #. type: verbatim
12872 #: ../src/guestfs-actions.pod:4275
12873 #, no-wrap
12874 msgid ""
12875 " int\n"
12876 " guestfs_lvresize (guestfs_h *g,\n"
12877 "                   const char *device,\n"
12878 "                   int mbytes);\n"
12879 "\n"
12880 msgstr ""
12881
12882 #. type: textblock
12883 #: ../src/guestfs-actions.pod:4280 ../fish/guestfish-actions.pod:2881
12884 msgid ""
12885 "This resizes (expands or shrinks) an existing LVM logical volume to "
12886 "C<mbytes>.  When reducing, data in the reduced part is lost."
12887 msgstr ""
12888
12889 #. type: =head2
12890 #: ../src/guestfs-actions.pod:4288
12891 msgid "guestfs_lvresize_free"
12892 msgstr ""
12893
12894 #. type: verbatim
12895 #: ../src/guestfs-actions.pod:4290
12896 #, no-wrap
12897 msgid ""
12898 " int\n"
12899 " guestfs_lvresize_free (guestfs_h *g,\n"
12900 "                        const char *lv,\n"
12901 "                        int percent);\n"
12902 "\n"
12903 msgstr ""
12904
12905 #. type: textblock
12906 #: ../src/guestfs-actions.pod:4295 ../fish/guestfish-actions.pod:2889
12907 msgid ""
12908 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
12909 "remaining free space in the volume group.  Commonly you would call this with "
12910 "pc = 100 which expands the logical volume as much as possible, using all "
12911 "remaining free space in the volume group."
12912 msgstr ""
12913
12914 #. type: textblock
12915 #: ../src/guestfs-actions.pod:4303
12916 msgid "(Added in 1.3.3)"
12917 msgstr ""
12918
12919 #. type: =head2
12920 #: ../src/guestfs-actions.pod:4305
12921 msgid "guestfs_lvs"
12922 msgstr ""
12923
12924 #. type: verbatim
12925 #: ../src/guestfs-actions.pod:4307
12926 #, no-wrap
12927 msgid ""
12928 " char **\n"
12929 " guestfs_lvs (guestfs_h *g);\n"
12930 "\n"
12931 msgstr ""
12932
12933 #. type: textblock
12934 #: ../src/guestfs-actions.pod:4310 ../fish/guestfish-actions.pod:2899
12935 msgid ""
12936 "List all the logical volumes detected.  This is the equivalent of the "
12937 "L<lvs(8)> command."
12938 msgstr ""
12939
12940 #. type: textblock
12941 #: ../src/guestfs-actions.pod:4313 ../fish/guestfish-actions.pod:2902
12942 msgid ""
12943 "This returns a list of the logical volume device names "
12944 "(eg. C</dev/VolGroup00/LogVol00>)."
12945 msgstr ""
12946
12947 #. type: textblock
12948 #: ../src/guestfs-actions.pod:4316
12949 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
12950 msgstr ""
12951
12952 #. type: =head2
12953 #: ../src/guestfs-actions.pod:4324
12954 msgid "guestfs_lvs_full"
12955 msgstr ""
12956
12957 #. type: verbatim
12958 #: ../src/guestfs-actions.pod:4326
12959 #, no-wrap
12960 msgid ""
12961 " struct guestfs_lvm_lv_list *\n"
12962 " guestfs_lvs_full (guestfs_h *g);\n"
12963 "\n"
12964 msgstr ""
12965
12966 #. type: textblock
12967 #: ../src/guestfs-actions.pod:4329 ../fish/guestfish-actions.pod:2911
12968 msgid ""
12969 "List all the logical volumes detected.  This is the equivalent of the "
12970 "L<lvs(8)> command.  The \"full\" version includes all fields."
12971 msgstr ""
12972
12973 #. type: textblock
12974 #: ../src/guestfs-actions.pod:4332
12975 msgid ""
12976 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
12977 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
12978 "use>."
12979 msgstr ""
12980
12981 #. type: =head2
12982 #: ../src/guestfs-actions.pod:4338
12983 msgid "guestfs_lvuuid"
12984 msgstr ""
12985
12986 #. type: verbatim
12987 #: ../src/guestfs-actions.pod:4340
12988 #, no-wrap
12989 msgid ""
12990 " char *\n"
12991 " guestfs_lvuuid (guestfs_h *g,\n"
12992 "                 const char *device);\n"
12993 "\n"
12994 msgstr ""
12995
12996 #. type: textblock
12997 #: ../src/guestfs-actions.pod:4344 ../fish/guestfish-actions.pod:2918
12998 msgid "This command returns the UUID of the LVM LV C<device>."
12999 msgstr ""
13000
13001 #. type: =head2
13002 #: ../src/guestfs-actions.pod:4351
13003 msgid "guestfs_lxattrlist"
13004 msgstr ""
13005
13006 #. type: verbatim
13007 #: ../src/guestfs-actions.pod:4353
13008 #, no-wrap
13009 msgid ""
13010 " struct guestfs_xattr_list *\n"
13011 " guestfs_lxattrlist (guestfs_h *g,\n"
13012 "                     const char *path,\n"
13013 "                     char *const *names);\n"
13014 "\n"
13015 msgstr ""
13016
13017 #. type: textblock
13018 #: ../src/guestfs-actions.pod:4358 ../fish/guestfish-actions.pod:2924
13019 msgid ""
13020 "This call allows you to get the extended attributes of multiple files, where "
13021 "all files are in the directory C<path>.  C<names> is the list of files from "
13022 "this directory."
13023 msgstr ""
13024
13025 #. type: textblock
13026 #: ../src/guestfs-actions.pod:4362 ../fish/guestfish-actions.pod:2928
13027 msgid ""
13028 "On return you get a flat list of xattr structs which must be interpreted "
13029 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
13030 "C<attrval> in this struct is zero-length to indicate there was an error "
13031 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13032 "number (the number of following attributes for this file, which could be "
13033 "C<\"0\">).  Then after the first xattr struct are the zero or more "
13034 "attributes for the first named file.  This repeats for the second and "
13035 "subsequent files."
13036 msgstr ""
13037
13038 #. type: textblock
13039 #: ../src/guestfs-actions.pod:4372
13040 msgid ""
13041 "This call is intended for programs that want to efficiently list a directory "
13042 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
13043 "a similarly efficient call for getting standard stats.  Very long directory "
13044 "listings might cause the protocol message size to be exceeded, causing this "
13045 "call to fail.  The caller must split up such requests into smaller groups of "
13046 "names."
13047 msgstr ""
13048
13049 #. type: =head2
13050 #: ../src/guestfs-actions.pod:4386
13051 msgid "guestfs_mkdir"
13052 msgstr ""
13053
13054 #. type: verbatim
13055 #: ../src/guestfs-actions.pod:4388
13056 #, no-wrap
13057 msgid ""
13058 " int\n"
13059 " guestfs_mkdir (guestfs_h *g,\n"
13060 "                const char *path);\n"
13061 "\n"
13062 msgstr ""
13063
13064 #. type: textblock
13065 #: ../src/guestfs-actions.pod:4392 ../fish/guestfish-actions.pod:2950
13066 msgid "Create a directory named C<path>."
13067 msgstr ""
13068
13069 #. type: =head2
13070 #: ../src/guestfs-actions.pod:4398
13071 msgid "guestfs_mkdir_mode"
13072 msgstr ""
13073
13074 #. type: verbatim
13075 #: ../src/guestfs-actions.pod:4400
13076 #, no-wrap
13077 msgid ""
13078 " int\n"
13079 " guestfs_mkdir_mode (guestfs_h *g,\n"
13080 "                     const char *path,\n"
13081 "                     int mode);\n"
13082 "\n"
13083 msgstr ""
13084
13085 #. type: textblock
13086 #: ../src/guestfs-actions.pod:4405 ../fish/guestfish-actions.pod:2956
13087 msgid ""
13088 "This command creates a directory, setting the initial permissions of the "
13089 "directory to C<mode>."
13090 msgstr ""
13091
13092 #. type: textblock
13093 #: ../src/guestfs-actions.pod:4408 ../fish/guestfish-actions.pod:2959
13094 msgid ""
13095 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13096 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13097 "other ways."
13098 msgstr ""
13099
13100 #. type: textblock
13101 #: ../src/guestfs-actions.pod:4412
13102 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13103 msgstr ""
13104
13105 #. type: =head2
13106 #: ../src/guestfs-actions.pod:4418
13107 msgid "guestfs_mkdir_p"
13108 msgstr ""
13109
13110 #. type: verbatim
13111 #: ../src/guestfs-actions.pod:4420
13112 #, no-wrap
13113 msgid ""
13114 " int\n"
13115 " guestfs_mkdir_p (guestfs_h *g,\n"
13116 "                  const char *path);\n"
13117 "\n"
13118 msgstr ""
13119
13120 #. type: textblock
13121 #: ../src/guestfs-actions.pod:4424 ../fish/guestfish-actions.pod:2969
13122 msgid ""
13123 "Create a directory named C<path>, creating any parent directories as "
13124 "necessary.  This is like the C<mkdir -p> shell command."
13125 msgstr ""
13126
13127 #. type: =head2
13128 #: ../src/guestfs-actions.pod:4431
13129 msgid "guestfs_mkdtemp"
13130 msgstr ""
13131
13132 #. type: verbatim
13133 #: ../src/guestfs-actions.pod:4433
13134 #, no-wrap
13135 msgid ""
13136 " char *\n"
13137 " guestfs_mkdtemp (guestfs_h *g,\n"
13138 "                  const char *template);\n"
13139 "\n"
13140 msgstr ""
13141
13142 #. type: textblock
13143 #: ../src/guestfs-actions.pod:4437 ../fish/guestfish-actions.pod:2976
13144 msgid ""
13145 "This command creates a temporary directory.  The C<template> parameter "
13146 "should be a full pathname for the temporary directory name with the final "
13147 "six characters being \"XXXXXX\"."
13148 msgstr ""
13149
13150 #. type: textblock
13151 #: ../src/guestfs-actions.pod:4442 ../fish/guestfish-actions.pod:2981
13152 msgid ""
13153 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13154 "being suitable for Windows filesystems."
13155 msgstr ""
13156
13157 #. type: textblock
13158 #: ../src/guestfs-actions.pod:4445 ../fish/guestfish-actions.pod:2984
13159 msgid "The name of the temporary directory that was created is returned."
13160 msgstr ""
13161
13162 #. type: textblock
13163 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:2987
13164 msgid "The temporary directory is created with mode 0700 and is owned by root."
13165 msgstr ""
13166
13167 #. type: textblock
13168 #: ../src/guestfs-actions.pod:4451 ../fish/guestfish-actions.pod:2990
13169 msgid ""
13170 "The caller is responsible for deleting the temporary directory and its "
13171 "contents after use."
13172 msgstr ""
13173
13174 #. type: textblock
13175 #: ../src/guestfs-actions.pod:4454 ../fish/guestfish-actions.pod:2993
13176 msgid "See also: L<mkdtemp(3)>"
13177 msgstr ""
13178
13179 #. type: =head2
13180 #: ../src/guestfs-actions.pod:4461
13181 msgid "guestfs_mke2fs_J"
13182 msgstr ""
13183
13184 #. type: verbatim
13185 #: ../src/guestfs-actions.pod:4463
13186 #, no-wrap
13187 msgid ""
13188 " int\n"
13189 " guestfs_mke2fs_J (guestfs_h *g,\n"
13190 "                   const char *fstype,\n"
13191 "                   int blocksize,\n"
13192 "                   const char *device,\n"
13193 "                   const char *journal);\n"
13194 "\n"
13195 msgstr ""
13196
13197 #. type: textblock
13198 #: ../src/guestfs-actions.pod:4470 ../fish/guestfish-actions.pod:2999
13199 msgid ""
13200 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13201 "C<journal>.  It is equivalent to the command:"
13202 msgstr ""
13203
13204 #. type: verbatim
13205 #: ../src/guestfs-actions.pod:4474 ../fish/guestfish-actions.pod:3003
13206 #, no-wrap
13207 msgid ""
13208 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13209 "\n"
13210 msgstr ""
13211
13212 #. type: textblock
13213 #: ../src/guestfs-actions.pod:4476
13214 msgid "See also C<guestfs_mke2journal>."
13215 msgstr ""
13216
13217 #. type: textblock
13218 #: ../src/guestfs-actions.pod:4480 ../src/guestfs-actions.pod:4498 ../src/guestfs-actions.pod:4516 ../src/guestfs-actions.pod:4532 ../src/guestfs-actions.pod:4546 ../src/guestfs-actions.pod:4560 ../src/guestfs-actions.pod:4619 ../src/guestfs-actions.pod:4896
13219 msgid "(Added in 1.0.68)"
13220 msgstr ""
13221
13222 #. type: =head2
13223 #: ../src/guestfs-actions.pod:4482
13224 msgid "guestfs_mke2fs_JL"
13225 msgstr ""
13226
13227 #. type: verbatim
13228 #: ../src/guestfs-actions.pod:4484
13229 #, no-wrap
13230 msgid ""
13231 " int\n"
13232 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13233 "                    const char *fstype,\n"
13234 "                    int blocksize,\n"
13235 "                    const char *device,\n"
13236 "                    const char *label);\n"
13237 "\n"
13238 msgstr ""
13239
13240 #. type: textblock
13241 #: ../src/guestfs-actions.pod:4491 ../fish/guestfish-actions.pod:3011
13242 msgid ""
13243 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13244 "the journal labeled C<label>."
13245 msgstr ""
13246
13247 #. type: textblock
13248 #: ../src/guestfs-actions.pod:4494
13249 msgid "See also C<guestfs_mke2journal_L>."
13250 msgstr ""
13251
13252 #. type: =head2
13253 #: ../src/guestfs-actions.pod:4500
13254 msgid "guestfs_mke2fs_JU"
13255 msgstr ""
13256
13257 #. type: verbatim
13258 #: ../src/guestfs-actions.pod:4502
13259 #, no-wrap
13260 msgid ""
13261 " int\n"
13262 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13263 "                    const char *fstype,\n"
13264 "                    int blocksize,\n"
13265 "                    const char *device,\n"
13266 "                    const char *uuid);\n"
13267 "\n"
13268 msgstr ""
13269
13270 #. type: textblock
13271 #: ../src/guestfs-actions.pod:4509 ../fish/guestfish-actions.pod:3020
13272 msgid ""
13273 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13274 "the journal with UUID C<uuid>."
13275 msgstr ""
13276
13277 #. type: textblock
13278 #: ../src/guestfs-actions.pod:4512
13279 msgid "See also C<guestfs_mke2journal_U>."
13280 msgstr ""
13281
13282 #. type: =head2
13283 #: ../src/guestfs-actions.pod:4518
13284 msgid "guestfs_mke2journal"
13285 msgstr ""
13286
13287 #. type: verbatim
13288 #: ../src/guestfs-actions.pod:4520
13289 #, no-wrap
13290 msgid ""
13291 " int\n"
13292 " guestfs_mke2journal (guestfs_h *g,\n"
13293 "                      int blocksize,\n"
13294 "                      const char *device);\n"
13295 "\n"
13296 msgstr ""
13297
13298 #. type: textblock
13299 #: ../src/guestfs-actions.pod:4525 ../fish/guestfish-actions.pod:3029
13300 msgid ""
13301 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13302 "command:"
13303 msgstr ""
13304
13305 #. type: verbatim
13306 #: ../src/guestfs-actions.pod:4528 ../fish/guestfish-actions.pod:3032
13307 #, no-wrap
13308 msgid ""
13309 " mke2fs -O journal_dev -b blocksize device\n"
13310 "\n"
13311 msgstr ""
13312
13313 #. type: =head2
13314 #: ../src/guestfs-actions.pod:4534
13315 msgid "guestfs_mke2journal_L"
13316 msgstr ""
13317
13318 #. type: verbatim
13319 #: ../src/guestfs-actions.pod:4536
13320 #, no-wrap
13321 msgid ""
13322 " int\n"
13323 " guestfs_mke2journal_L (guestfs_h *g,\n"
13324 "                        int blocksize,\n"
13325 "                        const char *label,\n"
13326 "                        const char *device);\n"
13327 "\n"
13328 msgstr ""
13329
13330 #. type: textblock
13331 #: ../src/guestfs-actions.pod:4542 ../fish/guestfish-actions.pod:3038
13332 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13333 msgstr ""
13334
13335 #. type: =head2
13336 #: ../src/guestfs-actions.pod:4548
13337 msgid "guestfs_mke2journal_U"
13338 msgstr ""
13339
13340 #. type: verbatim
13341 #: ../src/guestfs-actions.pod:4550
13342 #, no-wrap
13343 msgid ""
13344 " int\n"
13345 " guestfs_mke2journal_U (guestfs_h *g,\n"
13346 "                        int blocksize,\n"
13347 "                        const char *uuid,\n"
13348 "                        const char *device);\n"
13349 "\n"
13350 msgstr ""
13351
13352 #. type: textblock
13353 #: ../src/guestfs-actions.pod:4556 ../fish/guestfish-actions.pod:3044
13354 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13355 msgstr ""
13356
13357 #. type: =head2
13358 #: ../src/guestfs-actions.pod:4562
13359 msgid "guestfs_mkfifo"
13360 msgstr ""
13361
13362 #. type: verbatim
13363 #: ../src/guestfs-actions.pod:4564
13364 #, no-wrap
13365 msgid ""
13366 " int\n"
13367 " guestfs_mkfifo (guestfs_h *g,\n"
13368 "                 int mode,\n"
13369 "                 const char *path);\n"
13370 "\n"
13371 msgstr ""
13372
13373 #. type: textblock
13374 #: ../src/guestfs-actions.pod:4569
13375 msgid ""
13376 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13377 "is just a convenient wrapper around C<guestfs_mknod>."
13378 msgstr ""
13379
13380 #. type: =head2
13381 #: ../src/guestfs-actions.pod:4579
13382 msgid "guestfs_mkfs"
13383 msgstr ""
13384
13385 #. type: verbatim
13386 #: ../src/guestfs-actions.pod:4581
13387 #, no-wrap
13388 msgid ""
13389 " int\n"
13390 " guestfs_mkfs (guestfs_h *g,\n"
13391 "               const char *fstype,\n"
13392 "               const char *device);\n"
13393 "\n"
13394 msgstr ""
13395
13396 #. type: textblock
13397 #: ../src/guestfs-actions.pod:4586 ../fish/guestfish-actions.pod:3060
13398 msgid ""
13399 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13400 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13401 msgstr ""
13402
13403 #. type: =head2
13404 #: ../src/guestfs-actions.pod:4594
13405 msgid "guestfs_mkfs_b"
13406 msgstr ""
13407
13408 #. type: verbatim
13409 #: ../src/guestfs-actions.pod:4596
13410 #, no-wrap
13411 msgid ""
13412 " int\n"
13413 " guestfs_mkfs_b (guestfs_h *g,\n"
13414 "                 const char *fstype,\n"
13415 "                 int blocksize,\n"
13416 "                 const char *device);\n"
13417 "\n"
13418 msgstr ""
13419
13420 #. type: textblock
13421 #: ../src/guestfs-actions.pod:4602
13422 msgid ""
13423 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13424 "block size of the resulting filesystem.  Supported block sizes depend on the "
13425 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13426 msgstr ""
13427
13428 #. type: textblock
13429 #: ../src/guestfs-actions.pod:4607 ../src/guestfs-actions.pod:4652 ../fish/guestfish-actions.pod:3073 ../fish/guestfish-actions.pod:3100
13430 msgid ""
13431 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13432 "cluster size."
13433 msgstr ""
13434
13435 #. type: textblock
13436 #: ../src/guestfs-actions.pod:4612 ../fish/guestfish-actions.pod:3076
13437 msgid ""
13438 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
13439 "instead."
13440 msgstr ""
13441
13442 #. type: =head2
13443 #: ../src/guestfs-actions.pod:4621
13444 msgid "guestfs_mkfs_opts"
13445 msgstr ""
13446
13447 #. type: verbatim
13448 #: ../src/guestfs-actions.pod:4623
13449 #, no-wrap
13450 msgid ""
13451 " int\n"
13452 " guestfs_mkfs_opts (guestfs_h *g,\n"
13453 "                    const char *fstype,\n"
13454 "                    const char *device,\n"
13455 "                    ...);\n"
13456 "\n"
13457 msgstr ""
13458
13459 #. type: verbatim
13460 #: ../src/guestfs-actions.pod:4634
13461 #, no-wrap
13462 msgid ""
13463 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13464 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13465 " GUESTFS_MKFS_OPTS_INODE, int inode,\n"
13466 " GUESTFS_MKFS_OPTS_SECTORSIZE, int sectorsize,\n"
13467 "\n"
13468 msgstr ""
13469
13470 #. type: textblock
13471 #: ../src/guestfs-actions.pod:4639 ../fish/guestfish-actions.pod:3087
13472 msgid ""
13473 "This function creates a filesystem on C<device>.  The filesystem type is "
13474 "C<fstype>, for example C<ext3>."
13475 msgstr ""
13476
13477 #. type: =item
13478 #: ../src/guestfs-actions.pod:4646 ../fish/guestfish-actions.pod:3094
13479 msgid "C<blocksize>"
13480 msgstr ""
13481
13482 #. type: textblock
13483 #: ../src/guestfs-actions.pod:4648 ../fish/guestfish-actions.pod:3096
13484 msgid ""
13485 "The filesystem block size.  Supported block sizes depend on the filesystem "
13486 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13487 "filesystems."
13488 msgstr ""
13489
13490 #. type: textblock
13491 #: ../src/guestfs-actions.pod:4655 ../fish/guestfish-actions.pod:3103
13492 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13493 msgstr ""
13494
13495 #. type: =item
13496 #: ../src/guestfs-actions.pod:4657 ../fish/guestfish-actions.pod:3105
13497 msgid "C<features>"
13498 msgstr ""
13499
13500 #. type: textblock
13501 #: ../src/guestfs-actions.pod:4659 ../fish/guestfish-actions.pod:3107
13502 msgid "This passes the I<-O> parameter to the external mkfs program."
13503 msgstr ""
13504
13505 #. type: textblock
13506 #: ../src/guestfs-actions.pod:4661 ../fish/guestfish-actions.pod:3109
13507 msgid ""
13508 "For certain filesystem types, this allows extra filesystem features to be "
13509 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13510 msgstr ""
13511
13512 #. type: textblock
13513 #: ../src/guestfs-actions.pod:4665 ../fish/guestfish-actions.pod:3113
13514 msgid ""
13515 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13516 "type."
13517 msgstr ""
13518
13519 #. type: =item
13520 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3116
13521 msgid "C<inode>"
13522 msgstr ""
13523
13524 #. type: textblock
13525 #: ../src/guestfs-actions.pod:4670 ../fish/guestfish-actions.pod:3118
13526 msgid ""
13527 "This passes the I<-I> parameter to the external L<mke2fs(8)> program which "
13528 "sets the inode size (only for ext2/3/4 filesystems at present)."
13529 msgstr ""
13530
13531 #. type: =item
13532 #: ../src/guestfs-actions.pod:4673 ../fish/guestfish-actions.pod:3121
13533 msgid "C<sectorsize>"
13534 msgstr ""
13535
13536 #. type: textblock
13537 #: ../src/guestfs-actions.pod:4675 ../fish/guestfish-actions.pod:3123
13538 msgid ""
13539 "This passes the I<-S> parameter to external L<mkfs.ufs(8)> program, which "
13540 "sets sector size for ufs filesystem."
13541 msgstr ""
13542
13543 #. type: textblock
13544 #: ../src/guestfs-actions.pod:4682
13545 msgid "(Added in 1.7.19)"
13546 msgstr ""
13547
13548 #. type: =head2
13549 #: ../src/guestfs-actions.pod:4684
13550 msgid "guestfs_mkfs_opts_va"
13551 msgstr ""
13552
13553 #. type: verbatim
13554 #: ../src/guestfs-actions.pod:4686
13555 #, no-wrap
13556 msgid ""
13557 " int\n"
13558 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13559 "                       const char *fstype,\n"
13560 "                       const char *device,\n"
13561 "                       va_list args);\n"
13562 "\n"
13563 msgstr ""
13564
13565 #. type: textblock
13566 #: ../src/guestfs-actions.pod:4692
13567 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13568 msgstr ""
13569
13570 #. type: =head2
13571 #: ../src/guestfs-actions.pod:4696
13572 msgid "guestfs_mkfs_opts_argv"
13573 msgstr ""
13574
13575 #. type: verbatim
13576 #: ../src/guestfs-actions.pod:4698
13577 #, no-wrap
13578 msgid ""
13579 " int\n"
13580 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13581 "                         const char *fstype,\n"
13582 "                         const char *device,\n"
13583 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13584 "\n"
13585 msgstr ""
13586
13587 #. type: textblock
13588 #: ../src/guestfs-actions.pod:4704
13589 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13590 msgstr ""
13591
13592 #. type: =head2
13593 #: ../src/guestfs-actions.pod:4708
13594 msgid "guestfs_mkmountpoint"
13595 msgstr ""
13596
13597 #. type: verbatim
13598 #: ../src/guestfs-actions.pod:4710
13599 #, no-wrap
13600 msgid ""
13601 " int\n"
13602 " guestfs_mkmountpoint (guestfs_h *g,\n"
13603 "                       const char *exemptpath);\n"
13604 "\n"
13605 msgstr ""
13606
13607 #. type: textblock
13608 #: ../src/guestfs-actions.pod:4714
13609 msgid ""
13610 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13611 "that can be used to create extra mountpoints before mounting the first "
13612 "filesystem."
13613 msgstr ""
13614
13615 #. type: textblock
13616 #: ../src/guestfs-actions.pod:4718 ../fish/guestfish-actions.pod:3138
13617 msgid ""
13618 "These calls are I<only> necessary in some very limited circumstances, mainly "
13619 "the case where you want to mount a mix of unrelated and/or read-only "
13620 "filesystems together."
13621 msgstr ""
13622
13623 #. type: textblock
13624 #: ../src/guestfs-actions.pod:4722 ../fish/guestfish-actions.pod:3142
13625 msgid ""
13626 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13627 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13628 "inside that.  You can unpack this as follows in guestfish:"
13629 msgstr ""
13630
13631 #. type: verbatim
13632 #: ../src/guestfs-actions.pod:4727 ../fish/guestfish-actions.pod:3147
13633 #, no-wrap
13634 msgid ""
13635 " add-ro Fedora-11-i686-Live.iso\n"
13636 " run\n"
13637 " mkmountpoint /cd\n"
13638 " mkmountpoint /sqsh\n"
13639 " mkmountpoint /ext3fs\n"
13640 " mount /dev/sda /cd\n"
13641 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13642 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13643 "\n"
13644 msgstr ""
13645
13646 #. type: textblock
13647 #: ../src/guestfs-actions.pod:4736 ../fish/guestfish-actions.pod:3156
13648 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13649 msgstr ""
13650
13651 #. type: textblock
13652 #: ../src/guestfs-actions.pod:4738
13653 msgid ""
13654 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13655 "may get unexpected errors if you try to mix these calls.  It is safest to "
13656 "manually unmount filesystems and remove mountpoints after use."
13657 msgstr ""
13658
13659 #. type: textblock
13660 #: ../src/guestfs-actions.pod:4742
13661 msgid ""
13662 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13663 "first, so for this to work for manual mountpoints, you must ensure that the "
13664 "innermost mountpoints have the longest pathnames, as in the example code "
13665 "above."
13666 msgstr ""
13667
13668 #. type: textblock
13669 #: ../src/guestfs-actions.pod:4747 ../fish/guestfish-actions.pod:3167
13670 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13671 msgstr ""
13672
13673 #. type: textblock
13674 #: ../src/guestfs-actions.pod:4749
13675 msgid ""
13676 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13677 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13678 "can also trigger these issues."
13679 msgstr ""
13680
13681 #. type: textblock
13682 #: ../src/guestfs-actions.pod:4755 ../src/guestfs-actions.pod:5071 ../src/guestfs-actions.pod:6075
13683 msgid "(Added in 1.0.62)"
13684 msgstr ""
13685
13686 #. type: =head2
13687 #: ../src/guestfs-actions.pod:4757
13688 msgid "guestfs_mknod"
13689 msgstr ""
13690
13691 #. type: verbatim
13692 #: ../src/guestfs-actions.pod:4759
13693 #, no-wrap
13694 msgid ""
13695 " int\n"
13696 " guestfs_mknod (guestfs_h *g,\n"
13697 "                int mode,\n"
13698 "                int devmajor,\n"
13699 "                int devminor,\n"
13700 "                const char *path);\n"
13701 "\n"
13702 msgstr ""
13703
13704 #. type: textblock
13705 #: ../src/guestfs-actions.pod:4766 ../fish/guestfish-actions.pod:3177
13706 msgid ""
13707 "This call creates block or character special devices, or named pipes "
13708 "(FIFOs)."
13709 msgstr ""
13710
13711 #. type: textblock
13712 #: ../src/guestfs-actions.pod:4769 ../fish/guestfish-actions.pod:3180
13713 msgid ""
13714 "The C<mode> parameter should be the mode, using the standard constants.  "
13715 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13716 "used when creating block and character special devices."
13717 msgstr ""
13718
13719 #. type: textblock
13720 #: ../src/guestfs-actions.pod:4774
13721 msgid ""
13722 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13723 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13724 "regular file).  These constants are available in the standard Linux header "
13725 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13726 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13727 "the appropriate constant for you."
13728 msgstr ""
13729
13730 #. type: =head2
13731 #: ../src/guestfs-actions.pod:4788
13732 msgid "guestfs_mknod_b"
13733 msgstr ""
13734
13735 #. type: verbatim
13736 #: ../src/guestfs-actions.pod:4790
13737 #, no-wrap
13738 msgid ""
13739 " int\n"
13740 " guestfs_mknod_b (guestfs_h *g,\n"
13741 "                  int mode,\n"
13742 "                  int devmajor,\n"
13743 "                  int devminor,\n"
13744 "                  const char *path);\n"
13745 "\n"
13746 msgstr ""
13747
13748 #. type: textblock
13749 #: ../src/guestfs-actions.pod:4797
13750 msgid ""
13751 "This call creates a block device node called C<path> with mode C<mode> and "
13752 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13753 "wrapper around C<guestfs_mknod>."
13754 msgstr ""
13755
13756 #. type: =head2
13757 #: ../src/guestfs-actions.pod:4807
13758 msgid "guestfs_mknod_c"
13759 msgstr ""
13760
13761 #. type: verbatim
13762 #: ../src/guestfs-actions.pod:4809
13763 #, no-wrap
13764 msgid ""
13765 " int\n"
13766 " guestfs_mknod_c (guestfs_h *g,\n"
13767 "                  int mode,\n"
13768 "                  int devmajor,\n"
13769 "                  int devminor,\n"
13770 "                  const char *path);\n"
13771 "\n"
13772 msgstr ""
13773
13774 #. type: textblock
13775 #: ../src/guestfs-actions.pod:4816
13776 msgid ""
13777 "This call creates a char device node called C<path> with mode C<mode> and "
13778 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13779 "wrapper around C<guestfs_mknod>."
13780 msgstr ""
13781
13782 #. type: =head2
13783 #: ../src/guestfs-actions.pod:4826
13784 msgid "guestfs_mkswap"
13785 msgstr ""
13786
13787 #. type: verbatim
13788 #: ../src/guestfs-actions.pod:4828
13789 #, no-wrap
13790 msgid ""
13791 " int\n"
13792 " guestfs_mkswap (guestfs_h *g,\n"
13793 "                 const char *device);\n"
13794 "\n"
13795 msgstr ""
13796
13797 #. type: textblock
13798 #: ../src/guestfs-actions.pod:4832 ../fish/guestfish-actions.pod:3219
13799 msgid "Create a swap partition on C<device>."
13800 msgstr ""
13801
13802 #. type: =head2
13803 #: ../src/guestfs-actions.pod:4838
13804 msgid "guestfs_mkswap_L"
13805 msgstr ""
13806
13807 #. type: verbatim
13808 #: ../src/guestfs-actions.pod:4840
13809 #, no-wrap
13810 msgid ""
13811 " int\n"
13812 " guestfs_mkswap_L (guestfs_h *g,\n"
13813 "                   const char *label,\n"
13814 "                   const char *device);\n"
13815 "\n"
13816 msgstr ""
13817
13818 #. type: textblock
13819 #: ../src/guestfs-actions.pod:4845 ../fish/guestfish-actions.pod:3225
13820 msgid "Create a swap partition on C<device> with label C<label>."
13821 msgstr ""
13822
13823 #. type: textblock
13824 #: ../src/guestfs-actions.pod:4847 ../fish/guestfish-actions.pod:3227
13825 msgid ""
13826 "Note that you cannot attach a swap label to a block device "
13827 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
13828 "the kernel or swap tools."
13829 msgstr ""
13830
13831 #. type: =head2
13832 #: ../src/guestfs-actions.pod:4855
13833 msgid "guestfs_mkswap_U"
13834 msgstr ""
13835
13836 #. type: verbatim
13837 #: ../src/guestfs-actions.pod:4857
13838 #, no-wrap
13839 msgid ""
13840 " int\n"
13841 " guestfs_mkswap_U (guestfs_h *g,\n"
13842 "                   const char *uuid,\n"
13843 "                   const char *device);\n"
13844 "\n"
13845 msgstr ""
13846
13847 #. type: textblock
13848 #: ../src/guestfs-actions.pod:4862 ../fish/guestfish-actions.pod:3235
13849 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13850 msgstr ""
13851
13852 #. type: =head2
13853 #: ../src/guestfs-actions.pod:4868
13854 msgid "guestfs_mkswap_file"
13855 msgstr ""
13856
13857 #. type: verbatim
13858 #: ../src/guestfs-actions.pod:4870
13859 #, no-wrap
13860 msgid ""
13861 " int\n"
13862 " guestfs_mkswap_file (guestfs_h *g,\n"
13863 "                      const char *path);\n"
13864 "\n"
13865 msgstr ""
13866
13867 #. type: textblock
13868 #: ../src/guestfs-actions.pod:4874 ../fish/guestfish-actions.pod:3241
13869 msgid "Create a swap file."
13870 msgstr ""
13871
13872 #. type: textblock
13873 #: ../src/guestfs-actions.pod:4876
13874 msgid ""
13875 "This command just writes a swap file signature to an existing file.  To "
13876 "create the file itself, use something like C<guestfs_fallocate>."
13877 msgstr ""
13878
13879 #. type: =head2
13880 #: ../src/guestfs-actions.pod:4883
13881 msgid "guestfs_modprobe"
13882 msgstr ""
13883
13884 #. type: verbatim
13885 #: ../src/guestfs-actions.pod:4885
13886 #, no-wrap
13887 msgid ""
13888 " int\n"
13889 " guestfs_modprobe (guestfs_h *g,\n"
13890 "                   const char *modulename);\n"
13891 "\n"
13892 msgstr ""
13893
13894 #. type: textblock
13895 #: ../src/guestfs-actions.pod:4889 ../fish/guestfish-actions.pod:3250
13896 msgid "This loads a kernel module in the appliance."
13897 msgstr ""
13898
13899 #. type: textblock
13900 #: ../src/guestfs-actions.pod:4891 ../fish/guestfish-actions.pod:3252
13901 msgid ""
13902 "The kernel module must have been whitelisted when libguestfs was built (see "
13903 "C<appliance/kmod.whitelist.in> in the source)."
13904 msgstr ""
13905
13906 #. type: =head2
13907 #: ../src/guestfs-actions.pod:4898
13908 msgid "guestfs_mount"
13909 msgstr ""
13910
13911 #. type: verbatim
13912 #: ../src/guestfs-actions.pod:4900
13913 #, no-wrap
13914 msgid ""
13915 " int\n"
13916 " guestfs_mount (guestfs_h *g,\n"
13917 "                const char *device,\n"
13918 "                const char *mountpoint);\n"
13919 "\n"
13920 msgstr ""
13921
13922 #. type: textblock
13923 #: ../src/guestfs-actions.pod:4905 ../fish/guestfish-actions.pod:3259
13924 msgid ""
13925 "Mount a guest disk at a position in the filesystem.  Block devices are named "
13926 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
13927 "those block devices contain partitions, they will have the usual names "
13928 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
13929 msgstr ""
13930
13931 #. type: textblock
13932 #: ../src/guestfs-actions.pod:4911 ../fish/guestfish-actions.pod:3265
13933 msgid ""
13934 "The rules are the same as for L<mount(2)>: A filesystem must first be "
13935 "mounted on C</> before others can be mounted.  Other filesystems can only be "
13936 "mounted on directories which already exist."
13937 msgstr ""
13938
13939 #. type: textblock
13940 #: ../src/guestfs-actions.pod:4916 ../fish/guestfish-actions.pod:3270
13941 msgid ""
13942 "The mounted filesystem is writable, if we have sufficient permissions on the "
13943 "underlying device."
13944 msgstr ""
13945
13946 #. type: textblock
13947 #: ../src/guestfs-actions.pod:4919
13948 msgid ""
13949 "B<Important note:> When you use this call, the filesystem options C<sync> "
13950 "and C<noatime> are set implicitly.  This was originally done because we "
13951 "thought it would improve reliability, but it turns out that I<-o sync> has a "
13952 "very large negative performance impact and negligible effect on "
13953 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
13954 "in any code that needs performance, and instead use C<guestfs_mount_options> "
13955 "(use an empty string for the first parameter if you don't want any options)."
13956 msgstr ""
13957
13958 #. type: textblock
13959 #: ../src/guestfs-actions.pod:4931 ../fish/guestfish-actions.pod:3283
13960 msgid ""
13961 "This function is deprecated.  In new code, use the C<mount_options> call "
13962 "instead."
13963 msgstr ""
13964
13965 #. type: =head2
13966 #: ../src/guestfs-actions.pod:4940
13967 msgid "guestfs_mount_9p"
13968 msgstr ""
13969
13970 #. type: verbatim
13971 #: ../src/guestfs-actions.pod:4942
13972 #, no-wrap
13973 msgid ""
13974 " int\n"
13975 " guestfs_mount_9p (guestfs_h *g,\n"
13976 "                   const char *mounttag,\n"
13977 "                   const char *mountpoint,\n"
13978 "                   ...);\n"
13979 "\n"
13980 msgstr ""
13981
13982 #. type: verbatim
13983 #: ../src/guestfs-actions.pod:4953
13984 #, no-wrap
13985 msgid ""
13986 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
13987 "\n"
13988 msgstr ""
13989
13990 #. type: textblock
13991 #: ../src/guestfs-actions.pod:4955 ../fish/guestfish-actions.pod:3294
13992 msgid ""
13993 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
13994 "C<mountpoint>."
13995 msgstr ""
13996
13997 #. type: textblock
13998 #: ../src/guestfs-actions.pod:4958 ../fish/guestfish-actions.pod:3297
13999 msgid ""
14000 "If required, C<trans=virtio> will be automatically added to the options.  "
14001 "Any other options required can be passed in the optional C<options> "
14002 "parameter."
14003 msgstr ""
14004
14005 #. type: =head2
14006 #: ../src/guestfs-actions.pod:4966
14007 msgid "guestfs_mount_9p_va"
14008 msgstr ""
14009
14010 #. type: verbatim
14011 #: ../src/guestfs-actions.pod:4968
14012 #, no-wrap
14013 msgid ""
14014 " int\n"
14015 " guestfs_mount_9p_va (guestfs_h *g,\n"
14016 "                      const char *mounttag,\n"
14017 "                      const char *mountpoint,\n"
14018 "                      va_list args);\n"
14019 "\n"
14020 msgstr ""
14021
14022 #. type: textblock
14023 #: ../src/guestfs-actions.pod:4974
14024 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
14025 msgstr ""
14026
14027 #. type: =head2
14028 #: ../src/guestfs-actions.pod:4978
14029 msgid "guestfs_mount_9p_argv"
14030 msgstr ""
14031
14032 #. type: verbatim
14033 #: ../src/guestfs-actions.pod:4980
14034 #, no-wrap
14035 msgid ""
14036 " int\n"
14037 " guestfs_mount_9p_argv (guestfs_h *g,\n"
14038 "                        const char *mounttag,\n"
14039 "                        const char *mountpoint,\n"
14040 "                        const struct guestfs_mount_9p_argv *optargs);\n"
14041 "\n"
14042 msgstr ""
14043
14044 #. type: textblock
14045 #: ../src/guestfs-actions.pod:4986
14046 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
14047 msgstr ""
14048
14049 #. type: =head2
14050 #: ../src/guestfs-actions.pod:4990
14051 msgid "guestfs_mount_loop"
14052 msgstr ""
14053
14054 #. type: verbatim
14055 #: ../src/guestfs-actions.pod:4992
14056 #, no-wrap
14057 msgid ""
14058 " int\n"
14059 " guestfs_mount_loop (guestfs_h *g,\n"
14060 "                     const char *file,\n"
14061 "                     const char *mountpoint);\n"
14062 "\n"
14063 msgstr ""
14064
14065 #. type: textblock
14066 #: ../src/guestfs-actions.pod:4997 ../fish/guestfish-actions.pod:3307
14067 msgid ""
14068 "This command lets you mount C<file> (a filesystem image in a file) on a "
14069 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14070 "mountpoint>."
14071 msgstr ""
14072
14073 #. type: =head2
14074 #: ../src/guestfs-actions.pod:5005
14075 msgid "guestfs_mount_options"
14076 msgstr ""
14077
14078 #. type: verbatim
14079 #: ../src/guestfs-actions.pod:5007
14080 #, no-wrap
14081 msgid ""
14082 " int\n"
14083 " guestfs_mount_options (guestfs_h *g,\n"
14084 "                        const char *options,\n"
14085 "                        const char *device,\n"
14086 "                        const char *mountpoint);\n"
14087 "\n"
14088 msgstr ""
14089
14090 #. type: textblock
14091 #: ../src/guestfs-actions.pod:5013
14092 msgid ""
14093 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14094 "the mount options as for the L<mount(8)> I<-o> flag."
14095 msgstr ""
14096
14097 #. type: textblock
14098 #: ../src/guestfs-actions.pod:5017 ../fish/guestfish-actions.pod:3319
14099 msgid ""
14100 "If the C<options> parameter is an empty string, then no options are passed "
14101 "(all options default to whatever the filesystem uses)."
14102 msgstr ""
14103
14104 #. type: textblock
14105 #: ../src/guestfs-actions.pod:5023 ../src/guestfs-actions.pod:5037 ../src/guestfs-actions.pod:5054
14106 msgid "(Added in 1.0.10)"
14107 msgstr ""
14108
14109 #. type: =head2
14110 #: ../src/guestfs-actions.pod:5025
14111 msgid "guestfs_mount_ro"
14112 msgstr ""
14113
14114 #. type: verbatim
14115 #: ../src/guestfs-actions.pod:5027
14116 #, no-wrap
14117 msgid ""
14118 " int\n"
14119 " guestfs_mount_ro (guestfs_h *g,\n"
14120 "                   const char *device,\n"
14121 "                   const char *mountpoint);\n"
14122 "\n"
14123 msgstr ""
14124
14125 #. type: textblock
14126 #: ../src/guestfs-actions.pod:5032
14127 msgid ""
14128 "This is the same as the C<guestfs_mount> command, but it mounts the "
14129 "filesystem with the read-only (I<-o ro>) flag."
14130 msgstr ""
14131
14132 #. type: =head2
14133 #: ../src/guestfs-actions.pod:5039
14134 msgid "guestfs_mount_vfs"
14135 msgstr ""
14136
14137 #. type: verbatim
14138 #: ../src/guestfs-actions.pod:5041
14139 #, no-wrap
14140 msgid ""
14141 " int\n"
14142 " guestfs_mount_vfs (guestfs_h *g,\n"
14143 "                    const char *options,\n"
14144 "                    const char *vfstype,\n"
14145 "                    const char *device,\n"
14146 "                    const char *mountpoint);\n"
14147 "\n"
14148 msgstr ""
14149
14150 #. type: textblock
14151 #: ../src/guestfs-actions.pod:5048
14152 msgid ""
14153 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14154 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
14155 "I<-t> flags."
14156 msgstr ""
14157
14158 #. type: =head2
14159 #: ../src/guestfs-actions.pod:5056
14160 msgid "guestfs_mountpoints"
14161 msgstr ""
14162
14163 #. type: verbatim
14164 #: ../src/guestfs-actions.pod:5058
14165 #, no-wrap
14166 msgid ""
14167 " char **\n"
14168 " guestfs_mountpoints (guestfs_h *g);\n"
14169 "\n"
14170 msgstr ""
14171
14172 #. type: textblock
14173 #: ../src/guestfs-actions.pod:5061
14174 msgid ""
14175 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14176 "devices.  This one returns a hash table (map) of device name to directory "
14177 "where the device is mounted."
14178 msgstr ""
14179
14180 #. type: =head2
14181 #: ../src/guestfs-actions.pod:5073
14182 msgid "guestfs_mounts"
14183 msgstr ""
14184
14185 #. type: verbatim
14186 #: ../src/guestfs-actions.pod:5075
14187 #, no-wrap
14188 msgid ""
14189 " char **\n"
14190 " guestfs_mounts (guestfs_h *g);\n"
14191 "\n"
14192 msgstr ""
14193
14194 #. type: textblock
14195 #: ../src/guestfs-actions.pod:5078 ../fish/guestfish-actions.pod:3350
14196 msgid ""
14197 "This returns the list of currently mounted filesystems.  It returns the list "
14198 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14199 msgstr ""
14200
14201 #. type: textblock
14202 #: ../src/guestfs-actions.pod:5081 ../fish/guestfish-actions.pod:3353
14203 msgid "Some internal mounts are not shown."
14204 msgstr ""
14205
14206 #. type: textblock
14207 #: ../src/guestfs-actions.pod:5083
14208 msgid "See also: C<guestfs_mountpoints>"
14209 msgstr ""
14210
14211 #. type: =head2
14212 #: ../src/guestfs-actions.pod:5091
14213 msgid "guestfs_mv"
14214 msgstr ""
14215
14216 #. type: verbatim
14217 #: ../src/guestfs-actions.pod:5093
14218 #, no-wrap
14219 msgid ""
14220 " int\n"
14221 " guestfs_mv (guestfs_h *g,\n"
14222 "             const char *src,\n"
14223 "             const char *dest);\n"
14224 "\n"
14225 msgstr ""
14226
14227 #. type: textblock
14228 #: ../src/guestfs-actions.pod:5098 ../fish/guestfish-actions.pod:3361
14229 msgid ""
14230 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14231 "destination filename or destination directory."
14232 msgstr ""
14233
14234 #. type: =head2
14235 #: ../src/guestfs-actions.pod:5105
14236 msgid "guestfs_ntfs_3g_probe"
14237 msgstr ""
14238
14239 #. type: verbatim
14240 #: ../src/guestfs-actions.pod:5107
14241 #, no-wrap
14242 msgid ""
14243 " int\n"
14244 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14245 "                        int rw,\n"
14246 "                        const char *device);\n"
14247 "\n"
14248 msgstr ""
14249
14250 #. type: textblock
14251 #: ../src/guestfs-actions.pod:5112 ../fish/guestfish-actions.pod:3368
14252 msgid ""
14253 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14254 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
14255 "read-write, and some cannot be mounted at all)."
14256 msgstr ""
14257
14258 #. type: textblock
14259 #: ../src/guestfs-actions.pod:5116 ../fish/guestfish-actions.pod:3372
14260 msgid ""
14261 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14262 "can be mounted read-write.  Set it to false if you want to test if the "
14263 "volume can be mounted read-only."
14264 msgstr ""
14265
14266 #. type: textblock
14267 #: ../src/guestfs-actions.pod:5120 ../fish/guestfish-actions.pod:3376
14268 msgid ""
14269 "The return value is an integer which C<0> if the operation would succeed, or "
14270 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14271 msgstr ""
14272
14273 #. type: textblock
14274 #: ../src/guestfs-actions.pod:5126
14275 msgid "(Added in 1.0.43)"
14276 msgstr ""
14277
14278 #. type: =head2
14279 #: ../src/guestfs-actions.pod:5128
14280 msgid "guestfs_ntfsresize"
14281 msgstr ""
14282
14283 #. type: verbatim
14284 #: ../src/guestfs-actions.pod:5130
14285 #, no-wrap
14286 msgid ""
14287 " int\n"
14288 " guestfs_ntfsresize (guestfs_h *g,\n"
14289 "                     const char *device);\n"
14290 "\n"
14291 msgstr ""
14292
14293 #. type: textblock
14294 #: ../src/guestfs-actions.pod:5134 ../src/guestfs-actions.pod:5173 ../fish/guestfish-actions.pod:3384 ../fish/guestfish-actions.pod:3408
14295 msgid ""
14296 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14297 "size of the underlying device."
14298 msgstr ""
14299
14300 #. type: textblock
14301 #: ../src/guestfs-actions.pod:5137 ../fish/guestfish-actions.pod:3387
14302 msgid ""
14303 "I<Note:> After the resize operation, the filesystem is marked as requiring a "
14304 "consistency check (for safety).  You have to boot into Windows to perform "
14305 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14306 "resize filesystems which have been marked in this way.  So in effect it is "
14307 "not possible to call ntfsresize multiple times on a single filesystem "
14308 "without booting into Windows between each resize."
14309 msgstr ""
14310
14311 #. type: textblock
14312 #: ../src/guestfs-actions.pod:5145 ../src/guestfs-actions.pod:5199 ../fish/guestfish-actions.pod:3395 ../fish/guestfish-actions.pod:3434
14313 msgid "See also L<ntfsresize(8)>."
14314 msgstr ""
14315
14316 #. type: textblock
14317 #: ../src/guestfs-actions.pod:5149 ../src/guestfs-actions.pod:5239 ../fish/guestfish-actions.pod:3397 ../fish/guestfish-actions.pod:3445
14318 msgid ""
14319 "This function is deprecated.  In new code, use the C<ntfsresize_opts> call "
14320 "instead."
14321 msgstr ""
14322
14323 #. type: =head2
14324 #: ../src/guestfs-actions.pod:5158
14325 msgid "guestfs_ntfsresize_opts"
14326 msgstr ""
14327
14328 #. type: verbatim
14329 #: ../src/guestfs-actions.pod:5160
14330 #, no-wrap
14331 msgid ""
14332 " int\n"
14333 " guestfs_ntfsresize_opts (guestfs_h *g,\n"
14334 "                          const char *device,\n"
14335 "                          ...);\n"
14336 "\n"
14337 msgstr ""
14338
14339 #. type: verbatim
14340 #: ../src/guestfs-actions.pod:5170
14341 #, no-wrap
14342 msgid ""
14343 " GUESTFS_NTFSRESIZE_OPTS_SIZE, int64_t size,\n"
14344 " GUESTFS_NTFSRESIZE_OPTS_FORCE, int force,\n"
14345 "\n"
14346 msgstr ""
14347
14348 #. type: textblock
14349 #: ../src/guestfs-actions.pod:5182 ../fish/guestfish-actions.pod:3417
14350 msgid ""
14351 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
14352 "resized to fit the container (eg. partition)."
14353 msgstr ""
14354
14355 #. type: =item
14356 #: ../src/guestfs-actions.pod:5185 ../fish/guestfish-actions.pod:3420
14357 msgid "C<force>"
14358 msgstr ""
14359
14360 #. type: textblock
14361 #: ../src/guestfs-actions.pod:5187 ../fish/guestfish-actions.pod:3422
14362 msgid ""
14363 "If this option is true, then force the resize of the filesystem even if the "
14364 "filesystem is marked as requiring a consistency check."
14365 msgstr ""
14366
14367 #. type: textblock
14368 #: ../src/guestfs-actions.pod:5190
14369 msgid ""
14370 "After the resize operation, the filesystem is always marked as requiring a "
14371 "consistency check (for safety).  You have to boot into Windows to perform "
14372 "this check and clear this condition.  If you I<don't> set the C<force> "
14373 "option then it is not possible to call C<guestfs_ntfsresize_opts> multiple "
14374 "times on a single filesystem without booting into Windows between each "
14375 "resize."
14376 msgstr ""
14377
14378 #. type: =head2
14379 #: ../src/guestfs-actions.pod:5205
14380 msgid "guestfs_ntfsresize_opts_va"
14381 msgstr ""
14382
14383 #. type: verbatim
14384 #: ../src/guestfs-actions.pod:5207
14385 #, no-wrap
14386 msgid ""
14387 " int\n"
14388 " guestfs_ntfsresize_opts_va (guestfs_h *g,\n"
14389 "                             const char *device,\n"
14390 "                             va_list args);\n"
14391 "\n"
14392 msgstr ""
14393
14394 #. type: textblock
14395 #: ../src/guestfs-actions.pod:5212
14396 msgid "This is the \"va_list variant\" of L</guestfs_ntfsresize_opts>."
14397 msgstr ""
14398
14399 #. type: =head2
14400 #: ../src/guestfs-actions.pod:5216
14401 msgid "guestfs_ntfsresize_opts_argv"
14402 msgstr ""
14403
14404 #. type: verbatim
14405 #: ../src/guestfs-actions.pod:5218
14406 #, no-wrap
14407 msgid ""
14408 " int\n"
14409 " guestfs_ntfsresize_opts_argv (guestfs_h *g,\n"
14410 "                               const char *device,\n"
14411 "                               const struct guestfs_ntfsresize_opts_argv "
14412 "*optargs);\n"
14413 "\n"
14414 msgstr ""
14415
14416 #. type: textblock
14417 #: ../src/guestfs-actions.pod:5223
14418 msgid "This is the \"argv variant\" of L</guestfs_ntfsresize_opts>."
14419 msgstr ""
14420
14421 #. type: =head2
14422 #: ../src/guestfs-actions.pod:5227
14423 msgid "guestfs_ntfsresize_size"
14424 msgstr ""
14425
14426 #. type: verbatim
14427 #: ../src/guestfs-actions.pod:5229
14428 #, no-wrap
14429 msgid ""
14430 " int\n"
14431 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14432 "                          const char *device,\n"
14433 "                          int64_t size);\n"
14434 "\n"
14435 msgstr ""
14436
14437 #. type: textblock
14438 #: ../src/guestfs-actions.pod:5234
14439 msgid ""
14440 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14441 "to specify the new size (in bytes) explicitly."
14442 msgstr ""
14443
14444 #. type: textblock
14445 #: ../src/guestfs-actions.pod:5246 ../src/guestfs-actions.pod:5682 ../src/guestfs-actions.pod:5755 ../src/guestfs-actions.pod:6023 ../src/guestfs-actions.pod:7625
14446 msgid "(Added in 1.3.14)"
14447 msgstr ""
14448
14449 #. type: =head2
14450 #: ../src/guestfs-actions.pod:5248
14451 msgid "guestfs_part_add"
14452 msgstr ""
14453
14454 #. type: verbatim
14455 #: ../src/guestfs-actions.pod:5250
14456 #, no-wrap
14457 msgid ""
14458 " int\n"
14459 " guestfs_part_add (guestfs_h *g,\n"
14460 "                   const char *device,\n"
14461 "                   const char *prlogex,\n"
14462 "                   int64_t startsect,\n"
14463 "                   int64_t endsect);\n"
14464 "\n"
14465 msgstr ""
14466
14467 #. type: textblock
14468 #: ../src/guestfs-actions.pod:5257
14469 msgid ""
14470 "This command adds a partition to C<device>.  If there is no partition table "
14471 "on the device, call C<guestfs_part_init> first."
14472 msgstr ""
14473
14474 #. type: textblock
14475 #: ../src/guestfs-actions.pod:5260 ../fish/guestfish-actions.pod:3459
14476 msgid ""
14477 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14478 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14479 "C<logical>) and C<e> (or C<extended>) partition types."
14480 msgstr ""
14481
14482 #. type: textblock
14483 #: ../src/guestfs-actions.pod:5265 ../fish/guestfish-actions.pod:3464
14484 msgid ""
14485 "C<startsect> and C<endsect> are the start and end of the partition in "
14486 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14487 "from the end of the disk (C<-1> is the last sector)."
14488 msgstr ""
14489
14490 #. type: textblock
14491 #: ../src/guestfs-actions.pod:5269
14492 msgid ""
14493 "Creating a partition which covers the whole disk is not so easy.  Use "
14494 "C<guestfs_part_disk> to do that."
14495 msgstr ""
14496
14497 #. type: textblock
14498 #: ../src/guestfs-actions.pod:5274 ../src/guestfs-actions.pod:5312 ../src/guestfs-actions.pod:5365 ../src/guestfs-actions.pod:5443 ../src/guestfs-actions.pod:5481 ../src/guestfs-actions.pod:5500 ../src/guestfs-actions.pod:5540
14499 msgid "(Added in 1.0.78)"
14500 msgstr ""
14501
14502 #. type: =head2
14503 #: ../src/guestfs-actions.pod:5276
14504 msgid "guestfs_part_del"
14505 msgstr ""
14506
14507 #. type: verbatim
14508 #: ../src/guestfs-actions.pod:5278
14509 #, no-wrap
14510 msgid ""
14511 " int\n"
14512 " guestfs_part_del (guestfs_h *g,\n"
14513 "                   const char *device,\n"
14514 "                   int partnum);\n"
14515 "\n"
14516 msgstr ""
14517
14518 #. type: textblock
14519 #: ../src/guestfs-actions.pod:5283 ../fish/guestfish-actions.pod:3475
14520 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14521 msgstr ""
14522
14523 #. type: textblock
14524 #: ../src/guestfs-actions.pod:5285 ../fish/guestfish-actions.pod:3477
14525 msgid ""
14526 "Note that in the case of MBR partitioning, deleting an extended partition "
14527 "also deletes any logical partitions it contains."
14528 msgstr ""
14529
14530 #. type: =head2
14531 #: ../src/guestfs-actions.pod:5293
14532 msgid "guestfs_part_disk"
14533 msgstr ""
14534
14535 #. type: verbatim
14536 #: ../src/guestfs-actions.pod:5295
14537 #, no-wrap
14538 msgid ""
14539 " int\n"
14540 " guestfs_part_disk (guestfs_h *g,\n"
14541 "                    const char *device,\n"
14542 "                    const char *parttype);\n"
14543 "\n"
14544 msgstr ""
14545
14546 #. type: textblock
14547 #: ../src/guestfs-actions.pod:5300
14548 msgid ""
14549 "This command is simply a combination of C<guestfs_part_init> followed by "
14550 "C<guestfs_part_add> to create a single primary partition covering the whole "
14551 "disk."
14552 msgstr ""
14553
14554 #. type: textblock
14555 #: ../src/guestfs-actions.pod:5304
14556 msgid ""
14557 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14558 "possible values are described in C<guestfs_part_init>."
14559 msgstr ""
14560
14561 #. type: =head2
14562 #: ../src/guestfs-actions.pod:5314
14563 msgid "guestfs_part_get_bootable"
14564 msgstr ""
14565
14566 #. type: verbatim
14567 #: ../src/guestfs-actions.pod:5316
14568 #, no-wrap
14569 msgid ""
14570 " int\n"
14571 " guestfs_part_get_bootable (guestfs_h *g,\n"
14572 "                            const char *device,\n"
14573 "                            int partnum);\n"
14574 "\n"
14575 msgstr ""
14576
14577 #. type: textblock
14578 #: ../src/guestfs-actions.pod:5321 ../fish/guestfish-actions.pod:3499
14579 msgid ""
14580 "This command returns true if the partition C<partnum> on C<device> has the "
14581 "bootable flag set."
14582 msgstr ""
14583
14584 #. type: textblock
14585 #: ../src/guestfs-actions.pod:5324
14586 msgid "See also C<guestfs_part_set_bootable>."
14587 msgstr ""
14588
14589 #. type: =head2
14590 #: ../src/guestfs-actions.pod:5330
14591 msgid "guestfs_part_get_mbr_id"
14592 msgstr ""
14593
14594 #. type: verbatim
14595 #: ../src/guestfs-actions.pod:5332
14596 #, no-wrap
14597 msgid ""
14598 " int\n"
14599 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14600 "                          const char *device,\n"
14601 "                          int partnum);\n"
14602 "\n"
14603 msgstr ""
14604
14605 #. type: textblock
14606 #: ../src/guestfs-actions.pod:5337 ../fish/guestfish-actions.pod:3508
14607 msgid ""
14608 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14609 "partition C<partnum>."
14610 msgstr ""
14611
14612 #. type: textblock
14613 #: ../src/guestfs-actions.pod:5340 ../src/guestfs-actions.pod:5516
14614 msgid ""
14615 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14616 "undefined results for other partition table types (see "
14617 "C<guestfs_part_get_parttype>)."
14618 msgstr ""
14619
14620 #. type: =head2
14621 #: ../src/guestfs-actions.pod:5348
14622 msgid "guestfs_part_get_parttype"
14623 msgstr ""
14624
14625 #. type: verbatim
14626 #: ../src/guestfs-actions.pod:5350
14627 #, no-wrap
14628 msgid ""
14629 " char *\n"
14630 " guestfs_part_get_parttype (guestfs_h *g,\n"
14631 "                            const char *device);\n"
14632 "\n"
14633 msgstr ""
14634
14635 #. type: textblock
14636 #: ../src/guestfs-actions.pod:5354 ../fish/guestfish-actions.pod:3519
14637 msgid ""
14638 "This command examines the partition table on C<device> and returns the "
14639 "partition table type (format) being used."
14640 msgstr ""
14641
14642 #. type: textblock
14643 #: ../src/guestfs-actions.pod:5357
14644 msgid ""
14645 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14646 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14647 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14648 msgstr ""
14649
14650 #. type: =head2
14651 #: ../src/guestfs-actions.pod:5367
14652 msgid "guestfs_part_init"
14653 msgstr ""
14654
14655 #. type: verbatim
14656 #: ../src/guestfs-actions.pod:5369
14657 #, no-wrap
14658 msgid ""
14659 " int\n"
14660 " guestfs_part_init (guestfs_h *g,\n"
14661 "                    const char *device,\n"
14662 "                    const char *parttype);\n"
14663 "\n"
14664 msgstr ""
14665
14666 #. type: textblock
14667 #: ../src/guestfs-actions.pod:5374 ../fish/guestfish-actions.pod:3531
14668 msgid ""
14669 "This creates an empty partition table on C<device> of one of the partition "
14670 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14671 "(for large disks)."
14672 msgstr ""
14673
14674 #. type: textblock
14675 #: ../src/guestfs-actions.pod:5378
14676 msgid ""
14677 "Initially there are no partitions.  Following this, you should call "
14678 "C<guestfs_part_add> for each partition required."
14679 msgstr ""
14680
14681 #. type: textblock
14682 #: ../src/guestfs-actions.pod:5381 ../fish/guestfish-actions.pod:3538
14683 msgid "Possible values for C<parttype> are:"
14684 msgstr ""
14685
14686 #. type: =item
14687 #: ../src/guestfs-actions.pod:5385 ../fish/guestfish-actions.pod:3542
14688 msgid "B<efi> | B<gpt>"
14689 msgstr ""
14690
14691 #. type: textblock
14692 #: ../src/guestfs-actions.pod:5387 ../fish/guestfish-actions.pod:3544
14693 msgid "Intel EFI / GPT partition table."
14694 msgstr ""
14695
14696 #. type: textblock
14697 #: ../src/guestfs-actions.pod:5389 ../fish/guestfish-actions.pod:3546
14698 msgid ""
14699 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14700 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14701 "the C<mbr> format."
14702 msgstr ""
14703
14704 #. type: =item
14705 #: ../src/guestfs-actions.pod:5393 ../fish/guestfish-actions.pod:3550
14706 msgid "B<mbr> | B<msdos>"
14707 msgstr ""
14708
14709 #. type: textblock
14710 #: ../src/guestfs-actions.pod:5395 ../fish/guestfish-actions.pod:3552
14711 msgid ""
14712 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14713 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14714 "TB.  For large disks we recommend using C<gpt>."
14715 msgstr ""
14716
14717 #. type: textblock
14718 #: ../src/guestfs-actions.pod:5402 ../fish/guestfish-actions.pod:3559
14719 msgid "Other partition table types that may work but are not supported include:"
14720 msgstr ""
14721
14722 #. type: =item
14723 #: ../src/guestfs-actions.pod:5407 ../fish/guestfish-actions.pod:3564
14724 msgid "B<aix>"
14725 msgstr ""
14726
14727 #. type: textblock
14728 #: ../src/guestfs-actions.pod:5409 ../fish/guestfish-actions.pod:3566
14729 msgid "AIX disk labels."
14730 msgstr ""
14731
14732 #. type: =item
14733 #: ../src/guestfs-actions.pod:5411 ../fish/guestfish-actions.pod:3568
14734 msgid "B<amiga> | B<rdb>"
14735 msgstr ""
14736
14737 #. type: textblock
14738 #: ../src/guestfs-actions.pod:5413 ../fish/guestfish-actions.pod:3570
14739 msgid "Amiga \"Rigid Disk Block\" format."
14740 msgstr ""
14741
14742 #. type: =item
14743 #: ../src/guestfs-actions.pod:5415 ../fish/guestfish-actions.pod:3572
14744 msgid "B<bsd>"
14745 msgstr ""
14746
14747 #. type: textblock
14748 #: ../src/guestfs-actions.pod:5417 ../fish/guestfish-actions.pod:3574
14749 msgid "BSD disk labels."
14750 msgstr ""
14751
14752 #. type: =item
14753 #: ../src/guestfs-actions.pod:5419 ../fish/guestfish-actions.pod:3576
14754 msgid "B<dasd>"
14755 msgstr ""
14756
14757 #. type: textblock
14758 #: ../src/guestfs-actions.pod:5421 ../fish/guestfish-actions.pod:3578
14759 msgid "DASD, used on IBM mainframes."
14760 msgstr ""
14761
14762 #. type: =item
14763 #: ../src/guestfs-actions.pod:5423 ../fish/guestfish-actions.pod:3580
14764 msgid "B<dvh>"
14765 msgstr ""
14766
14767 #. type: textblock
14768 #: ../src/guestfs-actions.pod:5425 ../fish/guestfish-actions.pod:3582
14769 msgid "MIPS/SGI volumes."
14770 msgstr ""
14771
14772 #. type: =item
14773 #: ../src/guestfs-actions.pod:5427 ../fish/guestfish-actions.pod:3584
14774 msgid "B<mac>"
14775 msgstr ""
14776
14777 #. type: textblock
14778 #: ../src/guestfs-actions.pod:5429 ../fish/guestfish-actions.pod:3586
14779 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14780 msgstr ""
14781
14782 #. type: =item
14783 #: ../src/guestfs-actions.pod:5431 ../fish/guestfish-actions.pod:3588
14784 msgid "B<pc98>"
14785 msgstr ""
14786
14787 #. type: textblock
14788 #: ../src/guestfs-actions.pod:5433 ../fish/guestfish-actions.pod:3590
14789 msgid "NEC PC-98 format, common in Japan apparently."
14790 msgstr ""
14791
14792 #. type: =item
14793 #: ../src/guestfs-actions.pod:5435 ../fish/guestfish-actions.pod:3592
14794 msgid "B<sun>"
14795 msgstr ""
14796
14797 #. type: textblock
14798 #: ../src/guestfs-actions.pod:5437 ../fish/guestfish-actions.pod:3594
14799 msgid "Sun disk labels."
14800 msgstr ""
14801
14802 #. type: =head2
14803 #: ../src/guestfs-actions.pod:5445
14804 msgid "guestfs_part_list"
14805 msgstr ""
14806
14807 #. type: verbatim
14808 #: ../src/guestfs-actions.pod:5447
14809 #, no-wrap
14810 msgid ""
14811 " struct guestfs_partition_list *\n"
14812 " guestfs_part_list (guestfs_h *g,\n"
14813 "                    const char *device);\n"
14814 "\n"
14815 msgstr ""
14816
14817 #. type: textblock
14818 #: ../src/guestfs-actions.pod:5451 ../fish/guestfish-actions.pod:3602
14819 msgid ""
14820 "This command parses the partition table on C<device> and returns the list of "
14821 "partitions found."
14822 msgstr ""
14823
14824 #. type: textblock
14825 #: ../src/guestfs-actions.pod:5454 ../fish/guestfish-actions.pod:3605
14826 msgid "The fields in the returned structure are:"
14827 msgstr ""
14828
14829 #. type: =item
14830 #: ../src/guestfs-actions.pod:5458 ../fish/guestfish-actions.pod:3609
14831 msgid "B<part_num>"
14832 msgstr ""
14833
14834 #. type: textblock
14835 #: ../src/guestfs-actions.pod:5460 ../fish/guestfish-actions.pod:3611
14836 msgid "Partition number, counting from 1."
14837 msgstr ""
14838
14839 #. type: =item
14840 #: ../src/guestfs-actions.pod:5462 ../fish/guestfish-actions.pod:3613
14841 msgid "B<part_start>"
14842 msgstr ""
14843
14844 #. type: textblock
14845 #: ../src/guestfs-actions.pod:5464
14846 msgid ""
14847 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14848 "the device's sector size, see C<guestfs_blockdev_getss>."
14849 msgstr ""
14850
14851 #. type: =item
14852 #: ../src/guestfs-actions.pod:5467 ../fish/guestfish-actions.pod:3618
14853 msgid "B<part_end>"
14854 msgstr ""
14855
14856 #. type: textblock
14857 #: ../src/guestfs-actions.pod:5469 ../fish/guestfish-actions.pod:3620
14858 msgid "End of the partition in bytes."
14859 msgstr ""
14860
14861 #. type: =item
14862 #: ../src/guestfs-actions.pod:5471 ../fish/guestfish-actions.pod:3622
14863 msgid "B<part_size>"
14864 msgstr ""
14865
14866 #. type: textblock
14867 #: ../src/guestfs-actions.pod:5473 ../fish/guestfish-actions.pod:3624
14868 msgid "Size of the partition in bytes."
14869 msgstr ""
14870
14871 #. type: textblock
14872 #: ../src/guestfs-actions.pod:5477
14873 msgid ""
14874 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14875 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14876 "use>."
14877 msgstr ""
14878
14879 #. type: =head2
14880 #: ../src/guestfs-actions.pod:5483
14881 msgid "guestfs_part_set_bootable"
14882 msgstr ""
14883
14884 #. type: verbatim
14885 #: ../src/guestfs-actions.pod:5485
14886 #, no-wrap
14887 msgid ""
14888 " int\n"
14889 " guestfs_part_set_bootable (guestfs_h *g,\n"
14890 "                            const char *device,\n"
14891 "                            int partnum,\n"
14892 "                            int bootable);\n"
14893 "\n"
14894 msgstr ""
14895
14896 #. type: textblock
14897 #: ../src/guestfs-actions.pod:5491 ../fish/guestfish-actions.pod:3632
14898 msgid ""
14899 "This sets the bootable flag on partition numbered C<partnum> on device "
14900 "C<device>.  Note that partitions are numbered from 1."
14901 msgstr ""
14902
14903 #. type: textblock
14904 #: ../src/guestfs-actions.pod:5494 ../fish/guestfish-actions.pod:3635
14905 msgid ""
14906 "The bootable flag is used by some operating systems (notably Windows) to "
14907 "determine which partition to boot from.  It is by no means universally "
14908 "recognized."
14909 msgstr ""
14910
14911 #. type: =head2
14912 #: ../src/guestfs-actions.pod:5502
14913 msgid "guestfs_part_set_mbr_id"
14914 msgstr ""
14915
14916 #. type: verbatim
14917 #: ../src/guestfs-actions.pod:5504
14918 #, no-wrap
14919 msgid ""
14920 " int\n"
14921 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14922 "                          const char *device,\n"
14923 "                          int partnum,\n"
14924 "                          int idbyte);\n"
14925 "\n"
14926 msgstr ""
14927
14928 #. type: textblock
14929 #: ../src/guestfs-actions.pod:5510 ../fish/guestfish-actions.pod:3643
14930 msgid ""
14931 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14932 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14933 "documentation are in fact hexadecimal numbers, but usually documented "
14934 "without any leading \"0x\" which might be confusing."
14935 msgstr ""
14936
14937 #. type: =head2
14938 #: ../src/guestfs-actions.pod:5524
14939 msgid "guestfs_part_set_name"
14940 msgstr ""
14941
14942 #. type: verbatim
14943 #: ../src/guestfs-actions.pod:5526
14944 #, no-wrap
14945 msgid ""
14946 " int\n"
14947 " guestfs_part_set_name (guestfs_h *g,\n"
14948 "                        const char *device,\n"
14949 "                        int partnum,\n"
14950 "                        const char *name);\n"
14951 "\n"
14952 msgstr ""
14953
14954 #. type: textblock
14955 #: ../src/guestfs-actions.pod:5532 ../fish/guestfish-actions.pod:3657
14956 msgid ""
14957 "This sets the partition name on partition numbered C<partnum> on device "
14958 "C<device>.  Note that partitions are numbered from 1."
14959 msgstr ""
14960
14961 #. type: textblock
14962 #: ../src/guestfs-actions.pod:5535 ../fish/guestfish-actions.pod:3660
14963 msgid ""
14964 "The partition name can only be set on certain types of partition table.  "
14965 "This works on C<gpt> but not on C<mbr> partitions."
14966 msgstr ""
14967
14968 #. type: =head2
14969 #: ../src/guestfs-actions.pod:5542
14970 msgid "guestfs_part_to_dev"
14971 msgstr ""
14972
14973 #. type: verbatim
14974 #: ../src/guestfs-actions.pod:5544
14975 #, no-wrap
14976 msgid ""
14977 " char *\n"
14978 " guestfs_part_to_dev (guestfs_h *g,\n"
14979 "                      const char *partition);\n"
14980 "\n"
14981 msgstr ""
14982
14983 #. type: textblock
14984 #: ../src/guestfs-actions.pod:5548 ../fish/guestfish-actions.pod:3667
14985 msgid ""
14986 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14987 "partition number, returning the device name (eg. \"/dev/sdb\")."
14988 msgstr ""
14989
14990 #. type: textblock
14991 #: ../src/guestfs-actions.pod:5552
14992 msgid ""
14993 "The named partition must exist, for example as a string returned from "
14994 "C<guestfs_list_partitions>."
14995 msgstr ""
14996
14997 #. type: =head2
14998 #: ../src/guestfs-actions.pod:5560
14999 msgid "guestfs_ping_daemon"
15000 msgstr ""
15001
15002 #. type: verbatim
15003 #: ../src/guestfs-actions.pod:5562
15004 #, no-wrap
15005 msgid ""
15006 " int\n"
15007 " guestfs_ping_daemon (guestfs_h *g);\n"
15008 "\n"
15009 msgstr ""
15010
15011 #. type: textblock
15012 #: ../src/guestfs-actions.pod:5565 ../fish/guestfish-actions.pod:3678
15013 msgid ""
15014 "This is a test probe into the guestfs daemon running inside the qemu "
15015 "subprocess.  Calling this function checks that the daemon responds to the "
15016 "ping message, without affecting the daemon or attached block device(s) in "
15017 "any other way."
15018 msgstr ""
15019
15020 #. type: =head2
15021 #: ../src/guestfs-actions.pod:5574
15022 msgid "guestfs_pread"
15023 msgstr ""
15024
15025 #. type: verbatim
15026 #: ../src/guestfs-actions.pod:5576
15027 #, no-wrap
15028 msgid ""
15029 " char *\n"
15030 " guestfs_pread (guestfs_h *g,\n"
15031 "                const char *path,\n"
15032 "                int count,\n"
15033 "                int64_t offset,\n"
15034 "                size_t *size_r);\n"
15035 "\n"
15036 msgstr ""
15037
15038 #. type: textblock
15039 #: ../src/guestfs-actions.pod:5583 ../fish/guestfish-actions.pod:3687
15040 msgid ""
15041 "This command lets you read part of a file.  It reads C<count> bytes of the "
15042 "file, starting at C<offset>, from file C<path>."
15043 msgstr ""
15044
15045 #. type: textblock
15046 #: ../src/guestfs-actions.pod:5586 ../src/guestfs-actions.pod:5612 ../fish/guestfish-actions.pod:3690 ../fish/guestfish-actions.pod:3705
15047 msgid ""
15048 "This may read fewer bytes than requested.  For further details see the "
15049 "L<pread(2)> system call."
15050 msgstr ""
15051
15052 #. type: textblock
15053 #: ../src/guestfs-actions.pod:5589
15054 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
15055 msgstr ""
15056
15057 #. type: =head2
15058 #: ../src/guestfs-actions.pod:5600
15059 msgid "guestfs_pread_device"
15060 msgstr ""
15061
15062 #. type: verbatim
15063 #: ../src/guestfs-actions.pod:5602
15064 #, no-wrap
15065 msgid ""
15066 " char *\n"
15067 " guestfs_pread_device (guestfs_h *g,\n"
15068 "                       const char *device,\n"
15069 "                       int count,\n"
15070 "                       int64_t offset,\n"
15071 "                       size_t *size_r);\n"
15072 "\n"
15073 msgstr ""
15074
15075 #. type: textblock
15076 #: ../src/guestfs-actions.pod:5609 ../fish/guestfish-actions.pod:3702
15077 msgid ""
15078 "This command lets you read part of a file.  It reads C<count> bytes of "
15079 "C<device>, starting at C<offset>."
15080 msgstr ""
15081
15082 #. type: textblock
15083 #: ../src/guestfs-actions.pod:5615
15084 msgid "See also C<guestfs_pread>."
15085 msgstr ""
15086
15087 #. type: textblock
15088 #: ../src/guestfs-actions.pod:5624
15089 msgid "(Added in 1.5.21)"
15090 msgstr ""
15091
15092 #. type: =head2
15093 #: ../src/guestfs-actions.pod:5626
15094 msgid "guestfs_pvcreate"
15095 msgstr ""
15096
15097 #. type: verbatim
15098 #: ../src/guestfs-actions.pod:5628
15099 #, no-wrap
15100 msgid ""
15101 " int\n"
15102 " guestfs_pvcreate (guestfs_h *g,\n"
15103 "                   const char *device);\n"
15104 "\n"
15105 msgstr ""
15106
15107 #. type: textblock
15108 #: ../src/guestfs-actions.pod:5632 ../fish/guestfish-actions.pod:3717
15109 msgid ""
15110 "This creates an LVM physical volume on the named C<device>, where C<device> "
15111 "should usually be a partition name such as C</dev/sda1>."
15112 msgstr ""
15113
15114 #. type: =head2
15115 #: ../src/guestfs-actions.pod:5640
15116 msgid "guestfs_pvremove"
15117 msgstr ""
15118
15119 #. type: verbatim
15120 #: ../src/guestfs-actions.pod:5642
15121 #, no-wrap
15122 msgid ""
15123 " int\n"
15124 " guestfs_pvremove (guestfs_h *g,\n"
15125 "                   const char *device);\n"
15126 "\n"
15127 msgstr ""
15128
15129 #. type: textblock
15130 #: ../src/guestfs-actions.pod:5646 ../fish/guestfish-actions.pod:3725
15131 msgid ""
15132 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15133 "it."
15134 msgstr ""
15135
15136 #. type: textblock
15137 #: ../src/guestfs-actions.pod:5649 ../fish/guestfish-actions.pod:3728
15138 msgid ""
15139 "The implementation uses the C<pvremove> command which refuses to wipe "
15140 "physical volumes that contain any volume groups, so you have to remove those "
15141 "first."
15142 msgstr ""
15143
15144 #. type: =head2
15145 #: ../src/guestfs-actions.pod:5657
15146 msgid "guestfs_pvresize"
15147 msgstr ""
15148
15149 #. type: verbatim
15150 #: ../src/guestfs-actions.pod:5659
15151 #, no-wrap
15152 msgid ""
15153 " int\n"
15154 " guestfs_pvresize (guestfs_h *g,\n"
15155 "                   const char *device);\n"
15156 "\n"
15157 msgstr ""
15158
15159 #. type: textblock
15160 #: ../src/guestfs-actions.pod:5663 ../fish/guestfish-actions.pod:3736
15161 msgid ""
15162 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15163 "the new size of the underlying device."
15164 msgstr ""
15165
15166 #. type: =head2
15167 #: ../src/guestfs-actions.pod:5670
15168 msgid "guestfs_pvresize_size"
15169 msgstr ""
15170
15171 #. type: verbatim
15172 #: ../src/guestfs-actions.pod:5672
15173 #, no-wrap
15174 msgid ""
15175 " int\n"
15176 " guestfs_pvresize_size (guestfs_h *g,\n"
15177 "                        const char *device,\n"
15178 "                        int64_t size);\n"
15179 "\n"
15180 msgstr ""
15181
15182 #. type: textblock
15183 #: ../src/guestfs-actions.pod:5677
15184 msgid ""
15185 "This command is the same as C<guestfs_pvresize> except that it allows you to "
15186 "specify the new size (in bytes) explicitly."
15187 msgstr ""
15188
15189 #. type: =head2
15190 #: ../src/guestfs-actions.pod:5684
15191 msgid "guestfs_pvs"
15192 msgstr ""
15193
15194 #. type: verbatim
15195 #: ../src/guestfs-actions.pod:5686
15196 #, no-wrap
15197 msgid ""
15198 " char **\n"
15199 " guestfs_pvs (guestfs_h *g);\n"
15200 "\n"
15201 msgstr ""
15202
15203 #. type: textblock
15204 #: ../src/guestfs-actions.pod:5689 ../fish/guestfish-actions.pod:3750
15205 msgid ""
15206 "List all the physical volumes detected.  This is the equivalent of the "
15207 "L<pvs(8)> command."
15208 msgstr ""
15209
15210 #. type: textblock
15211 #: ../src/guestfs-actions.pod:5692 ../fish/guestfish-actions.pod:3753
15212 msgid ""
15213 "This returns a list of just the device names that contain PVs "
15214 "(eg. C</dev/sda2>)."
15215 msgstr ""
15216
15217 #. type: textblock
15218 #: ../src/guestfs-actions.pod:5695
15219 msgid "See also C<guestfs_pvs_full>."
15220 msgstr ""
15221
15222 #. type: =head2
15223 #: ../src/guestfs-actions.pod:5703
15224 msgid "guestfs_pvs_full"
15225 msgstr ""
15226
15227 #. type: verbatim
15228 #: ../src/guestfs-actions.pod:5705
15229 #, no-wrap
15230 msgid ""
15231 " struct guestfs_lvm_pv_list *\n"
15232 " guestfs_pvs_full (guestfs_h *g);\n"
15233 "\n"
15234 msgstr ""
15235
15236 #. type: textblock
15237 #: ../src/guestfs-actions.pod:5708 ../fish/guestfish-actions.pod:3762
15238 msgid ""
15239 "List all the physical volumes detected.  This is the equivalent of the "
15240 "L<pvs(8)> command.  The \"full\" version includes all fields."
15241 msgstr ""
15242
15243 #. type: textblock
15244 #: ../src/guestfs-actions.pod:5711
15245 msgid ""
15246 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15247 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
15248 "use>."
15249 msgstr ""
15250
15251 #. type: =head2
15252 #: ../src/guestfs-actions.pod:5717
15253 msgid "guestfs_pvuuid"
15254 msgstr ""
15255
15256 #. type: verbatim
15257 #: ../src/guestfs-actions.pod:5719
15258 #, no-wrap
15259 msgid ""
15260 " char *\n"
15261 " guestfs_pvuuid (guestfs_h *g,\n"
15262 "                 const char *device);\n"
15263 "\n"
15264 msgstr ""
15265
15266 #. type: textblock
15267 #: ../src/guestfs-actions.pod:5723 ../fish/guestfish-actions.pod:3769
15268 msgid "This command returns the UUID of the LVM PV C<device>."
15269 msgstr ""
15270
15271 #. type: =head2
15272 #: ../src/guestfs-actions.pod:5730
15273 msgid "guestfs_pwrite"
15274 msgstr ""
15275
15276 #. type: verbatim
15277 #: ../src/guestfs-actions.pod:5732
15278 #, no-wrap
15279 msgid ""
15280 " int\n"
15281 " guestfs_pwrite (guestfs_h *g,\n"
15282 "                 const char *path,\n"
15283 "                 const char *content,\n"
15284 "                 size_t content_size,\n"
15285 "                 int64_t offset);\n"
15286 "\n"
15287 msgstr ""
15288
15289 #. type: textblock
15290 #: ../src/guestfs-actions.pod:5739 ../fish/guestfish-actions.pod:3775
15291 msgid ""
15292 "This command writes to part of a file.  It writes the data buffer C<content> "
15293 "to the file C<path> starting at offset C<offset>."
15294 msgstr ""
15295
15296 #. type: textblock
15297 #: ../src/guestfs-actions.pod:5742 ../fish/guestfish-actions.pod:3778
15298 msgid ""
15299 "This command implements the L<pwrite(2)> system call, and like that system "
15300 "call it may not write the full data requested.  The return value is the "
15301 "number of bytes that were actually written to the file.  This could even be "
15302 "0, although short writes are unlikely for regular files in ordinary "
15303 "circumstances."
15304 msgstr ""
15305
15306 #. type: textblock
15307 #: ../src/guestfs-actions.pod:5748
15308 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15309 msgstr ""
15310
15311 #. type: =head2
15312 #: ../src/guestfs-actions.pod:5757
15313 msgid "guestfs_pwrite_device"
15314 msgstr ""
15315
15316 #. type: verbatim
15317 #: ../src/guestfs-actions.pod:5759
15318 #, no-wrap
15319 msgid ""
15320 " int\n"
15321 " guestfs_pwrite_device (guestfs_h *g,\n"
15322 "                        const char *device,\n"
15323 "                        const char *content,\n"
15324 "                        size_t content_size,\n"
15325 "                        int64_t offset);\n"
15326 "\n"
15327 msgstr ""
15328
15329 #. type: textblock
15330 #: ../src/guestfs-actions.pod:5766 ../fish/guestfish-actions.pod:3793
15331 msgid ""
15332 "This command writes to part of a device.  It writes the data buffer "
15333 "C<content> to C<device> starting at offset C<offset>."
15334 msgstr ""
15335
15336 #. type: textblock
15337 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3796
15338 msgid ""
15339 "This command implements the L<pwrite(2)> system call, and like that system "
15340 "call it may not write the full data requested (although short writes to disk "
15341 "devices and partitions are probably impossible with standard Linux kernels)."
15342 msgstr ""
15343
15344 #. type: textblock
15345 #: ../src/guestfs-actions.pod:5774
15346 msgid "See also C<guestfs_pwrite>."
15347 msgstr ""
15348
15349 #. type: textblock
15350 #: ../src/guestfs-actions.pod:5781
15351 msgid "(Added in 1.5.20)"
15352 msgstr ""
15353
15354 #. type: =head2
15355 #: ../src/guestfs-actions.pod:5783
15356 msgid "guestfs_read_file"
15357 msgstr ""
15358
15359 #. type: verbatim
15360 #: ../src/guestfs-actions.pod:5785
15361 #, no-wrap
15362 msgid ""
15363 " char *\n"
15364 " guestfs_read_file (guestfs_h *g,\n"
15365 "                    const char *path,\n"
15366 "                    size_t *size_r);\n"
15367 "\n"
15368 msgstr ""
15369
15370 #. type: textblock
15371 #: ../src/guestfs-actions.pod:5790 ../fish/guestfish-actions.pod:3810
15372 msgid "This calls returns the contents of the file C<path> as a buffer."
15373 msgstr ""
15374
15375 #. type: textblock
15376 #: ../src/guestfs-actions.pod:5793
15377 msgid ""
15378 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15379 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15380 "function is limited in the total size of file that can be handled."
15381 msgstr ""
15382
15383 #. type: textblock
15384 #: ../src/guestfs-actions.pod:5805
15385 msgid "(Added in 1.0.63)"
15386 msgstr ""
15387
15388 #. type: =head2
15389 #: ../src/guestfs-actions.pod:5807
15390 msgid "guestfs_read_lines"
15391 msgstr ""
15392
15393 #. type: verbatim
15394 #: ../src/guestfs-actions.pod:5809
15395 #, no-wrap
15396 msgid ""
15397 " char **\n"
15398 " guestfs_read_lines (guestfs_h *g,\n"
15399 "                     const char *path);\n"
15400 "\n"
15401 msgstr ""
15402
15403 #. type: textblock
15404 #: ../src/guestfs-actions.pod:5815 ../fish/guestfish-actions.pod:3827
15405 msgid ""
15406 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15407 "C<CRLF> character sequences are I<not> returned."
15408 msgstr ""
15409
15410 #. type: textblock
15411 #: ../src/guestfs-actions.pod:5818
15412 msgid ""
15413 "Note that this function cannot correctly handle binary files (specifically, "
15414 "files containing C<\\0> character which is treated as end of line).  For "
15415 "those you need to use the C<guestfs_read_file> function which has a more "
15416 "complex interface."
15417 msgstr ""
15418
15419 #. type: =head2
15420 #: ../src/guestfs-actions.pod:5829
15421 msgid "guestfs_readdir"
15422 msgstr ""
15423
15424 #. type: verbatim
15425 #: ../src/guestfs-actions.pod:5831
15426 #, no-wrap
15427 msgid ""
15428 " struct guestfs_dirent_list *\n"
15429 " guestfs_readdir (guestfs_h *g,\n"
15430 "                  const char *dir);\n"
15431 "\n"
15432 msgstr ""
15433
15434 #. type: textblock
15435 #: ../src/guestfs-actions.pod:5835 ../fish/guestfish-actions.pod:3839
15436 msgid "This returns the list of directory entries in directory C<dir>."
15437 msgstr ""
15438
15439 #. type: textblock
15440 #: ../src/guestfs-actions.pod:5837 ../fish/guestfish-actions.pod:3841
15441 msgid ""
15442 "All entries in the directory are returned, including C<.> and C<..>.  The "
15443 "entries are I<not> sorted, but returned in the same order as the underlying "
15444 "filesystem."
15445 msgstr ""
15446
15447 #. type: textblock
15448 #: ../src/guestfs-actions.pod:5841 ../fish/guestfish-actions.pod:3845
15449 msgid ""
15450 "Also this call returns basic file type information about each file.  The "
15451 "C<ftyp> field will contain one of the following characters:"
15452 msgstr ""
15453
15454 #. type: =item
15455 #: ../src/guestfs-actions.pod:5846 ../fish/guestfish-actions.pod:3850
15456 msgid "'b'"
15457 msgstr ""
15458
15459 #. type: textblock
15460 #: ../src/guestfs-actions.pod:5848 ../fish/guestfish-actions.pod:3852
15461 msgid "Block special"
15462 msgstr ""
15463
15464 #. type: =item
15465 #: ../src/guestfs-actions.pod:5850 ../fish/guestfish-actions.pod:3854
15466 msgid "'c'"
15467 msgstr ""
15468
15469 #. type: textblock
15470 #: ../src/guestfs-actions.pod:5852 ../fish/guestfish-actions.pod:3856
15471 msgid "Char special"
15472 msgstr ""
15473
15474 #. type: =item
15475 #: ../src/guestfs-actions.pod:5854 ../fish/guestfish-actions.pod:3858
15476 msgid "'d'"
15477 msgstr ""
15478
15479 #. type: textblock
15480 #: ../src/guestfs-actions.pod:5856 ../fish/guestfish-actions.pod:3860
15481 msgid "Directory"
15482 msgstr ""
15483
15484 #. type: =item
15485 #: ../src/guestfs-actions.pod:5858 ../fish/guestfish-actions.pod:3862
15486 msgid "'f'"
15487 msgstr ""
15488
15489 #. type: textblock
15490 #: ../src/guestfs-actions.pod:5860 ../fish/guestfish-actions.pod:3864
15491 msgid "FIFO (named pipe)"
15492 msgstr ""
15493
15494 #. type: =item
15495 #: ../src/guestfs-actions.pod:5862 ../fish/guestfish-actions.pod:3866
15496 msgid "'l'"
15497 msgstr ""
15498
15499 #. type: textblock
15500 #: ../src/guestfs-actions.pod:5864 ../fish/guestfish-actions.pod:3868
15501 msgid "Symbolic link"
15502 msgstr ""
15503
15504 #. type: =item
15505 #: ../src/guestfs-actions.pod:5866 ../fish/guestfish-actions.pod:3870
15506 msgid "'r'"
15507 msgstr ""
15508
15509 #. type: textblock
15510 #: ../src/guestfs-actions.pod:5868 ../fish/guestfish-actions.pod:3872
15511 msgid "Regular file"
15512 msgstr ""
15513
15514 #. type: =item
15515 #: ../src/guestfs-actions.pod:5870 ../fish/guestfish-actions.pod:3874
15516 msgid "'s'"
15517 msgstr ""
15518
15519 #. type: textblock
15520 #: ../src/guestfs-actions.pod:5872 ../fish/guestfish-actions.pod:3876
15521 msgid "Socket"
15522 msgstr ""
15523
15524 #. type: =item
15525 #: ../src/guestfs-actions.pod:5874 ../fish/guestfish-actions.pod:3878
15526 msgid "'u'"
15527 msgstr ""
15528
15529 #. type: textblock
15530 #: ../src/guestfs-actions.pod:5876 ../fish/guestfish-actions.pod:3880
15531 msgid "Unknown file type"
15532 msgstr ""
15533
15534 #. type: =item
15535 #: ../src/guestfs-actions.pod:5878 ../fish/guestfish-actions.pod:3882
15536 msgid "'?'"
15537 msgstr ""
15538
15539 #. type: textblock
15540 #: ../src/guestfs-actions.pod:5880 ../fish/guestfish-actions.pod:3884
15541 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15542 msgstr ""
15543
15544 #. type: textblock
15545 #: ../src/guestfs-actions.pod:5885
15546 msgid ""
15547 "This function is primarily intended for use by programs.  To get a simple "
15548 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15549 "consumption, use C<guestfs_ll>."
15550 msgstr ""
15551
15552 #. type: textblock
15553 #: ../src/guestfs-actions.pod:5889
15554 msgid ""
15555 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15556 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
15557 "use>."
15558 msgstr ""
15559
15560 #. type: =head2
15561 #: ../src/guestfs-actions.pod:5895
15562 msgid "guestfs_readlink"
15563 msgstr ""
15564
15565 #. type: verbatim
15566 #: ../src/guestfs-actions.pod:5897
15567 #, no-wrap
15568 msgid ""
15569 " char *\n"
15570 " guestfs_readlink (guestfs_h *g,\n"
15571 "                   const char *path);\n"
15572 "\n"
15573 msgstr ""
15574
15575 #. type: textblock
15576 #: ../src/guestfs-actions.pod:5901 ../fish/guestfish-actions.pod:3897
15577 msgid "This command reads the target of a symbolic link."
15578 msgstr ""
15579
15580 #. type: =head2
15581 #: ../src/guestfs-actions.pod:5908
15582 msgid "guestfs_readlinklist"
15583 msgstr ""
15584
15585 #. type: verbatim
15586 #: ../src/guestfs-actions.pod:5910
15587 #, no-wrap
15588 msgid ""
15589 " char **\n"
15590 " guestfs_readlinklist (guestfs_h *g,\n"
15591 "                       const char *path,\n"
15592 "                       char *const *names);\n"
15593 "\n"
15594 msgstr ""
15595
15596 #. type: textblock
15597 #: ../src/guestfs-actions.pod:5915 ../fish/guestfish-actions.pod:3903
15598 msgid ""
15599 "This call allows you to do a C<readlink> operation on multiple files, where "
15600 "all files are in the directory C<path>.  C<names> is the list of files from "
15601 "this directory."
15602 msgstr ""
15603
15604 #. type: textblock
15605 #: ../src/guestfs-actions.pod:5919 ../fish/guestfish-actions.pod:3907
15606 msgid ""
15607 "On return you get a list of strings, with a one-to-one correspondence to the "
15608 "C<names> list.  Each string is the value of the symbolic link."
15609 msgstr ""
15610
15611 #. type: textblock
15612 #: ../src/guestfs-actions.pod:5923 ../fish/guestfish-actions.pod:3911
15613 msgid ""
15614 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15615 "result string is the empty string C<\"\">.  However the whole operation is "
15616 "completed even if there were C<readlink(2)> errors, and so you can call this "
15617 "function with names where you don't know if they are symbolic links already "
15618 "(albeit slightly less efficient)."
15619 msgstr ""
15620
15621 #. type: textblock
15622 #: ../src/guestfs-actions.pod:5930 ../fish/guestfish-actions.pod:3918
15623 msgid ""
15624 "This call is intended for programs that want to efficiently list a directory "
15625 "contents without making many round-trips.  Very long directory listings "
15626 "might cause the protocol message size to be exceeded, causing this call to "
15627 "fail.  The caller must split up such requests into smaller groups of names."
15628 msgstr ""
15629
15630 #. type: =head2
15631 #: ../src/guestfs-actions.pod:5943
15632 msgid "guestfs_realpath"
15633 msgstr ""
15634
15635 #. type: verbatim
15636 #: ../src/guestfs-actions.pod:5945
15637 #, no-wrap
15638 msgid ""
15639 " char *\n"
15640 " guestfs_realpath (guestfs_h *g,\n"
15641 "                   const char *path);\n"
15642 "\n"
15643 msgstr ""
15644
15645 #. type: textblock
15646 #: ../src/guestfs-actions.pod:5949 ../fish/guestfish-actions.pod:3929
15647 msgid ""
15648 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15649 "has no C<.>, C<..> or symbolic link path elements."
15650 msgstr ""
15651
15652 #. type: =head2
15653 #: ../src/guestfs-actions.pod:5957
15654 msgid "guestfs_removexattr"
15655 msgstr ""
15656
15657 #. type: verbatim
15658 #: ../src/guestfs-actions.pod:5959
15659 #, no-wrap
15660 msgid ""
15661 " int\n"
15662 " guestfs_removexattr (guestfs_h *g,\n"
15663 "                      const char *xattr,\n"
15664 "                      const char *path);\n"
15665 "\n"
15666 msgstr ""
15667
15668 #. type: textblock
15669 #: ../src/guestfs-actions.pod:5964 ../fish/guestfish-actions.pod:3936
15670 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
15671 msgstr ""
15672
15673 #. type: textblock
15674 #: ../src/guestfs-actions.pod:5967
15675 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15676 msgstr ""
15677
15678 #. type: =head2
15679 #: ../src/guestfs-actions.pod:5973
15680 msgid "guestfs_resize2fs"
15681 msgstr ""
15682
15683 #. type: verbatim
15684 #: ../src/guestfs-actions.pod:5975
15685 #, no-wrap
15686 msgid ""
15687 " int\n"
15688 " guestfs_resize2fs (guestfs_h *g,\n"
15689 "                    const char *device);\n"
15690 "\n"
15691 msgstr ""
15692
15693 #. type: textblock
15694 #: ../src/guestfs-actions.pod:5979 ../fish/guestfish-actions.pod:3945
15695 msgid ""
15696 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15697 "underlying device."
15698 msgstr ""
15699
15700 #. type: textblock
15701 #: ../src/guestfs-actions.pod:5982
15702 msgid ""
15703 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15704 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15705 "sometimes gives an error about this and sometimes not.  In any case, it is "
15706 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15707 msgstr ""
15708
15709 #. type: =head2
15710 #: ../src/guestfs-actions.pod:5992
15711 msgid "guestfs_resize2fs_M"
15712 msgstr ""
15713
15714 #. type: verbatim
15715 #: ../src/guestfs-actions.pod:5994
15716 #, no-wrap
15717 msgid ""
15718 " int\n"
15719 " guestfs_resize2fs_M (guestfs_h *g,\n"
15720 "                      const char *device);\n"
15721 "\n"
15722 msgstr ""
15723
15724 #. type: textblock
15725 #: ../src/guestfs-actions.pod:5998
15726 msgid ""
15727 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15728 "resized to its minimum size.  This works like the I<-M> option to the "
15729 "C<resize2fs> command."
15730 msgstr ""
15731
15732 #. type: textblock
15733 #: ../src/guestfs-actions.pod:6002
15734 msgid ""
15735 "To get the resulting size of the filesystem you should call "
15736 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15737 "These two numbers, multiplied together, give the resulting size of the "
15738 "minimal filesystem in bytes."
15739 msgstr ""
15740
15741 #. type: =head2
15742 #: ../src/guestfs-actions.pod:6011
15743 msgid "guestfs_resize2fs_size"
15744 msgstr ""
15745
15746 #. type: verbatim
15747 #: ../src/guestfs-actions.pod:6013
15748 #, no-wrap
15749 msgid ""
15750 " int\n"
15751 " guestfs_resize2fs_size (guestfs_h *g,\n"
15752 "                         const char *device,\n"
15753 "                         int64_t size);\n"
15754 "\n"
15755 msgstr ""
15756
15757 #. type: textblock
15758 #: ../src/guestfs-actions.pod:6018
15759 msgid ""
15760 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15761 "to specify the new size (in bytes) explicitly."
15762 msgstr ""
15763
15764 #. type: =head2
15765 #: ../src/guestfs-actions.pod:6025
15766 msgid "guestfs_rm"
15767 msgstr ""
15768
15769 #. type: verbatim
15770 #: ../src/guestfs-actions.pod:6027
15771 #, no-wrap
15772 msgid ""
15773 " int\n"
15774 " guestfs_rm (guestfs_h *g,\n"
15775 "             const char *path);\n"
15776 "\n"
15777 msgstr ""
15778
15779 #. type: textblock
15780 #: ../src/guestfs-actions.pod:6031 ../fish/guestfish-actions.pod:3978
15781 msgid "Remove the single file C<path>."
15782 msgstr ""
15783
15784 #. type: =head2
15785 #: ../src/guestfs-actions.pod:6037
15786 msgid "guestfs_rm_rf"
15787 msgstr ""
15788
15789 #. type: verbatim
15790 #: ../src/guestfs-actions.pod:6039
15791 #, no-wrap
15792 msgid ""
15793 " int\n"
15794 " guestfs_rm_rf (guestfs_h *g,\n"
15795 "                const char *path);\n"
15796 "\n"
15797 msgstr ""
15798
15799 #. type: textblock
15800 #: ../src/guestfs-actions.pod:6043 ../fish/guestfish-actions.pod:3984
15801 msgid ""
15802 "Remove the file or directory C<path>, recursively removing the contents if "
15803 "its a directory.  This is like the C<rm -rf> shell command."
15804 msgstr ""
15805
15806 #. type: =head2
15807 #: ../src/guestfs-actions.pod:6051
15808 msgid "guestfs_rmdir"
15809 msgstr ""
15810
15811 #. type: verbatim
15812 #: ../src/guestfs-actions.pod:6053
15813 #, no-wrap
15814 msgid ""
15815 " int\n"
15816 " guestfs_rmdir (guestfs_h *g,\n"
15817 "                const char *path);\n"
15818 "\n"
15819 msgstr ""
15820
15821 #. type: textblock
15822 #: ../src/guestfs-actions.pod:6057 ../fish/guestfish-actions.pod:3992
15823 msgid "Remove the single directory C<path>."
15824 msgstr ""
15825
15826 #. type: =head2
15827 #: ../src/guestfs-actions.pod:6063
15828 msgid "guestfs_rmmountpoint"
15829 msgstr ""
15830
15831 #. type: verbatim
15832 #: ../src/guestfs-actions.pod:6065
15833 #, no-wrap
15834 msgid ""
15835 " int\n"
15836 " guestfs_rmmountpoint (guestfs_h *g,\n"
15837 "                       const char *exemptpath);\n"
15838 "\n"
15839 msgstr ""
15840
15841 #. type: textblock
15842 #: ../src/guestfs-actions.pod:6069
15843 msgid ""
15844 "This calls removes a mountpoint that was previously created with "
15845 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15846 msgstr ""
15847
15848 #. type: =head2
15849 #: ../src/guestfs-actions.pod:6077
15850 msgid "guestfs_scrub_device"
15851 msgstr ""
15852
15853 #. type: verbatim
15854 #: ../src/guestfs-actions.pod:6079
15855 #, no-wrap
15856 msgid ""
15857 " int\n"
15858 " guestfs_scrub_device (guestfs_h *g,\n"
15859 "                       const char *device);\n"
15860 "\n"
15861 msgstr ""
15862
15863 #. type: textblock
15864 #: ../src/guestfs-actions.pod:6083 ../fish/guestfish-actions.pod:4006
15865 msgid ""
15866 "This command writes patterns over C<device> to make data retrieval more "
15867 "difficult."
15868 msgstr ""
15869
15870 #. type: textblock
15871 #: ../src/guestfs-actions.pod:6086 ../src/guestfs-actions.pod:6107 ../src/guestfs-actions.pod:6126 ../fish/guestfish-actions.pod:4009 ../fish/guestfish-actions.pod:4024 ../fish/guestfish-actions.pod:4037
15872 msgid ""
15873 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15874 "more details."
15875 msgstr ""
15876
15877 #. type: textblock
15878 #: ../src/guestfs-actions.pod:6094 ../src/guestfs-actions.pod:6112 ../src/guestfs-actions.pod:6131
15879 msgid "(Added in 1.0.52)"
15880 msgstr ""
15881
15882 #. type: =head2
15883 #: ../src/guestfs-actions.pod:6096
15884 msgid "guestfs_scrub_file"
15885 msgstr ""
15886
15887 #. type: verbatim
15888 #: ../src/guestfs-actions.pod:6098
15889 #, no-wrap
15890 msgid ""
15891 " int\n"
15892 " guestfs_scrub_file (guestfs_h *g,\n"
15893 "                     const char *file);\n"
15894 "\n"
15895 msgstr ""
15896
15897 #. type: textblock
15898 #: ../src/guestfs-actions.pod:6102 ../fish/guestfish-actions.pod:4019
15899 msgid ""
15900 "This command writes patterns over a file to make data retrieval more "
15901 "difficult."
15902 msgstr ""
15903
15904 #. type: textblock
15905 #: ../src/guestfs-actions.pod:6105 ../fish/guestfish-actions.pod:4022
15906 msgid "The file is I<removed> after scrubbing."
15907 msgstr ""
15908
15909 #. type: =head2
15910 #: ../src/guestfs-actions.pod:6114
15911 msgid "guestfs_scrub_freespace"
15912 msgstr ""
15913
15914 #. type: verbatim
15915 #: ../src/guestfs-actions.pod:6116
15916 #, no-wrap
15917 msgid ""
15918 " int\n"
15919 " guestfs_scrub_freespace (guestfs_h *g,\n"
15920 "                          const char *dir);\n"
15921 "\n"
15922 msgstr ""
15923
15924 #. type: textblock
15925 #: ../src/guestfs-actions.pod:6120
15926 msgid ""
15927 "This command creates the directory C<dir> and then fills it with files until "
15928 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15929 "and deletes them.  The intention is to scrub any free space on the partition "
15930 "containing C<dir>."
15931 msgstr ""
15932
15933 #. type: =head2
15934 #: ../src/guestfs-actions.pod:6133
15935 msgid "guestfs_set_append"
15936 msgstr ""
15937
15938 #. type: verbatim
15939 #: ../src/guestfs-actions.pod:6135
15940 #, no-wrap
15941 msgid ""
15942 " int\n"
15943 " guestfs_set_append (guestfs_h *g,\n"
15944 "                     const char *append);\n"
15945 "\n"
15946 msgstr ""
15947
15948 #. type: textblock
15949 #: ../src/guestfs-actions.pod:6139 ../fish/guestfish-actions.pod:4046
15950 msgid ""
15951 "This function is used to add additional options to the guest kernel command "
15952 "line."
15953 msgstr ""
15954
15955 #. type: textblock
15956 #: ../src/guestfs-actions.pod:6142 ../fish/guestfish-actions.pod:4049
15957 msgid ""
15958 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15959 "environment variable."
15960 msgstr ""
15961
15962 #. type: textblock
15963 #: ../src/guestfs-actions.pod:6145 ../fish/guestfish-actions.pod:4052
15964 msgid ""
15965 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15966 "(libguestfs always adds a few of its own)."
15967 msgstr ""
15968
15969 #. type: =head2
15970 #: ../src/guestfs-actions.pod:6152
15971 msgid "guestfs_set_attach_method"
15972 msgstr ""
15973
15974 #. type: verbatim
15975 #: ../src/guestfs-actions.pod:6154
15976 #, no-wrap
15977 msgid ""
15978 " int\n"
15979 " guestfs_set_attach_method (guestfs_h *g,\n"
15980 "                            const char *attachmethod);\n"
15981 "\n"
15982 msgstr ""
15983
15984 #. type: textblock
15985 #: ../src/guestfs-actions.pod:6158 ../fish/guestfish-actions.pod:4061
15986 msgid ""
15987 "Set the method that libguestfs uses to connect to the back end guestfsd "
15988 "daemon.  Possible methods are:"
15989 msgstr ""
15990
15991 #. type: textblock
15992 #: ../src/guestfs-actions.pod:6165 ../fish/guestfish-actions.pod:4068
15993 msgid ""
15994 "Launch an appliance and connect to it.  This is the ordinary method and the "
15995 "default."
15996 msgstr ""
15997
15998 #. type: =item
15999 #: ../src/guestfs-actions.pod:6168 ../fish/guestfish-actions.pod:4071
16000 msgid "C<unix:I<path>>"
16001 msgstr ""
16002
16003 #. type: textblock
16004 #: ../src/guestfs-actions.pod:6170 ../fish/guestfish-actions.pod:4073
16005 msgid "Connect to the Unix domain socket I<path>."
16006 msgstr ""
16007
16008 #. type: textblock
16009 #: ../src/guestfs-actions.pod:6172 ../fish/guestfish-actions.pod:4075
16010 msgid ""
16011 "This method lets you connect to an existing daemon or (using virtio-serial) "
16012 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
16013 "RUNNING DAEMONS>."
16014 msgstr ""
16015
16016 #. type: =head2
16017 #: ../src/guestfs-actions.pod:6182
16018 msgid "guestfs_set_autosync"
16019 msgstr ""
16020
16021 #. type: verbatim
16022 #: ../src/guestfs-actions.pod:6184
16023 #, no-wrap
16024 msgid ""
16025 " int\n"
16026 " guestfs_set_autosync (guestfs_h *g,\n"
16027 "                       int autosync);\n"
16028 "\n"
16029 msgstr ""
16030
16031 #. type: textblock
16032 #: ../src/guestfs-actions.pod:6188 ../fish/guestfish-actions.pod:4087
16033 msgid ""
16034 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
16035 "effort attempt to make filesystems consistent and synchronized when the "
16036 "handle is closed (also if the program exits without closing handles)."
16037 msgstr ""
16038
16039 #. type: textblock
16040 #: ../src/guestfs-actions.pod:6193 ../fish/guestfish-actions.pod:4092
16041 msgid ""
16042 "This is enabled by default (since libguestfs 1.5.24, previously it was "
16043 "disabled by default)."
16044 msgstr ""
16045
16046 #. type: =head2
16047 #: ../src/guestfs-actions.pod:6200
16048 msgid "guestfs_set_direct"
16049 msgstr ""
16050
16051 #. type: verbatim
16052 #: ../src/guestfs-actions.pod:6202
16053 #, no-wrap
16054 msgid ""
16055 " int\n"
16056 " guestfs_set_direct (guestfs_h *g,\n"
16057 "                     int direct);\n"
16058 "\n"
16059 msgstr ""
16060
16061 #. type: textblock
16062 #: ../src/guestfs-actions.pod:6206 ../fish/guestfish-actions.pod:4101
16063 msgid ""
16064 "If the direct appliance mode flag is enabled, then stdin and stdout are "
16065 "passed directly through to the appliance once it is launched."
16066 msgstr ""
16067
16068 #. type: textblock
16069 #: ../src/guestfs-actions.pod:6210
16070 msgid ""
16071 "One consequence of this is that log messages aren't caught by the library "
16072 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
16073 "stdout."
16074 msgstr ""
16075
16076 #. type: textblock
16077 #: ../src/guestfs-actions.pod:6214 ../fish/guestfish-actions.pod:4109
16078 msgid "You probably don't want to use this unless you know what you are doing."
16079 msgstr ""
16080
16081 #. type: textblock
16082 #: ../src/guestfs-actions.pod:6217 ../fish/guestfish-actions.pod:4112
16083 msgid "The default is disabled."
16084 msgstr ""
16085
16086 #. type: =head2
16087 #: ../src/guestfs-actions.pod:6223
16088 msgid "guestfs_set_e2label"
16089 msgstr ""
16090
16091 #. type: verbatim
16092 #: ../src/guestfs-actions.pod:6225
16093 #, no-wrap
16094 msgid ""
16095 " int\n"
16096 " guestfs_set_e2label (guestfs_h *g,\n"
16097 "                      const char *device,\n"
16098 "                      const char *label);\n"
16099 "\n"
16100 msgstr ""
16101
16102 #. type: textblock
16103 #: ../src/guestfs-actions.pod:6230 ../fish/guestfish-actions.pod:4118
16104 msgid ""
16105 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16106 "C<label>.  Filesystem labels are limited to 16 characters."
16107 msgstr ""
16108
16109 #. type: textblock
16110 #: ../src/guestfs-actions.pod:6234
16111 msgid ""
16112 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16113 "the existing label on a filesystem."
16114 msgstr ""
16115
16116 #. type: =head2
16117 #: ../src/guestfs-actions.pod:6241
16118 msgid "guestfs_set_e2uuid"
16119 msgstr ""
16120
16121 #. type: verbatim
16122 #: ../src/guestfs-actions.pod:6243
16123 #, no-wrap
16124 msgid ""
16125 " int\n"
16126 " guestfs_set_e2uuid (guestfs_h *g,\n"
16127 "                     const char *device,\n"
16128 "                     const char *uuid);\n"
16129 "\n"
16130 msgstr ""
16131
16132 #. type: textblock
16133 #: ../src/guestfs-actions.pod:6248 ../fish/guestfish-actions.pod:4129
16134 msgid ""
16135 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16136 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16137 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16138 msgstr ""
16139
16140 #. type: textblock
16141 #: ../src/guestfs-actions.pod:6253
16142 msgid ""
16143 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16144 "the existing UUID of a filesystem."
16145 msgstr ""
16146
16147 #. type: =head2
16148 #: ../src/guestfs-actions.pod:6260
16149 msgid "guestfs_set_memsize"
16150 msgstr ""
16151
16152 #. type: verbatim
16153 #: ../src/guestfs-actions.pod:6262
16154 #, no-wrap
16155 msgid ""
16156 " int\n"
16157 " guestfs_set_memsize (guestfs_h *g,\n"
16158 "                      int memsize);\n"
16159 "\n"
16160 msgstr ""
16161
16162 #. type: textblock
16163 #: ../src/guestfs-actions.pod:6266
16164 msgid ""
16165 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16166 "This only has any effect if called before C<guestfs_launch>."
16167 msgstr ""
16168
16169 #. type: textblock
16170 #: ../src/guestfs-actions.pod:6270 ../fish/guestfish-actions.pod:4147
16171 msgid ""
16172 "You can also change this by setting the environment variable "
16173 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16174 msgstr ""
16175
16176 #. type: =head2
16177 #: ../src/guestfs-actions.pod:6281
16178 msgid "guestfs_set_network"
16179 msgstr ""
16180
16181 #. type: verbatim
16182 #: ../src/guestfs-actions.pod:6283
16183 #, no-wrap
16184 msgid ""
16185 " int\n"
16186 " guestfs_set_network (guestfs_h *g,\n"
16187 "                      int network);\n"
16188 "\n"
16189 msgstr ""
16190
16191 #. type: textblock
16192 #: ../src/guestfs-actions.pod:6287 ../fish/guestfish-actions.pod:4160
16193 msgid ""
16194 "If C<network> is true, then the network is enabled in the libguestfs "
16195 "appliance.  The default is false."
16196 msgstr ""
16197
16198 #. type: textblock
16199 #: ../src/guestfs-actions.pod:6290 ../fish/guestfish-actions.pod:4163
16200 msgid ""
16201 "This affects whether commands are able to access the network (see "
16202 "L<guestfs(3)/RUNNING COMMANDS>)."
16203 msgstr ""
16204
16205 #. type: textblock
16206 #: ../src/guestfs-actions.pod:6293
16207 msgid ""
16208 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16209 "effect."
16210 msgstr ""
16211
16212 #. type: =head2
16213 #: ../src/guestfs-actions.pod:6300
16214 msgid "guestfs_set_path"
16215 msgstr ""
16216
16217 #. type: verbatim
16218 #: ../src/guestfs-actions.pod:6302
16219 #, no-wrap
16220 msgid ""
16221 " int\n"
16222 " guestfs_set_path (guestfs_h *g,\n"
16223 "                   const char *searchpath);\n"
16224 "\n"
16225 msgstr ""
16226
16227 #. type: textblock
16228 #: ../src/guestfs-actions.pod:6306 ../fish/guestfish-actions.pod:4175
16229 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16230 msgstr ""
16231
16232 #. type: textblock
16233 #: ../src/guestfs-actions.pod:6308 ../fish/guestfish-actions.pod:4177
16234 msgid ""
16235 "The default is C<$libdir/guestfs> unless overridden by setting "
16236 "C<LIBGUESTFS_PATH> environment variable."
16237 msgstr ""
16238
16239 #. type: textblock
16240 #: ../src/guestfs-actions.pod:6311 ../fish/guestfish-actions.pod:4180
16241 msgid "Setting C<path> to C<NULL> restores the default path."
16242 msgstr ""
16243
16244 #. type: =head2
16245 #: ../src/guestfs-actions.pod:6317
16246 msgid "guestfs_set_qemu"
16247 msgstr ""
16248
16249 #. type: verbatim
16250 #: ../src/guestfs-actions.pod:6319
16251 #, no-wrap
16252 msgid ""
16253 " int\n"
16254 " guestfs_set_qemu (guestfs_h *g,\n"
16255 "                   const char *qemu);\n"
16256 "\n"
16257 msgstr ""
16258
16259 #. type: textblock
16260 #: ../src/guestfs-actions.pod:6323 ../fish/guestfish-actions.pod:4188
16261 msgid "Set the qemu binary that we will use."
16262 msgstr ""
16263
16264 #. type: textblock
16265 #: ../src/guestfs-actions.pod:6325 ../fish/guestfish-actions.pod:4190
16266 msgid "The default is chosen when the library was compiled by the configure script."
16267 msgstr ""
16268
16269 #. type: textblock
16270 #: ../src/guestfs-actions.pod:6328 ../fish/guestfish-actions.pod:4193
16271 msgid ""
16272 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16273 "variable."
16274 msgstr ""
16275
16276 #. type: textblock
16277 #: ../src/guestfs-actions.pod:6331 ../fish/guestfish-actions.pod:4196
16278 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16279 msgstr ""
16280
16281 #. type: textblock
16282 #: ../src/guestfs-actions.pod:6333 ../fish/guestfish-actions.pod:4198
16283 msgid ""
16284 "Note that you should call this function as early as possible after creating "
16285 "the handle.  This is because some pre-launch operations depend on testing "
16286 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16287 "don't retest features, and so you might see inconsistent results.  Using the "
16288 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16289 "the qemu binary at the same time as the handle is created."
16290 msgstr ""
16291
16292 #. type: =head2
16293 #: ../src/guestfs-actions.pod:6345
16294 msgid "guestfs_set_recovery_proc"
16295 msgstr ""
16296
16297 #. type: verbatim
16298 #: ../src/guestfs-actions.pod:6347
16299 #, no-wrap
16300 msgid ""
16301 " int\n"
16302 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16303 "                            int recoveryproc);\n"
16304 "\n"
16305 msgstr ""
16306
16307 #. type: textblock
16308 #: ../src/guestfs-actions.pod:6351
16309 msgid ""
16310 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16311 "not create a recovery process.  The purpose of the recovery process is to "
16312 "stop runaway qemu processes in the case where the main program aborts "
16313 "abruptly."
16314 msgstr ""
16315
16316 #. type: textblock
16317 #: ../src/guestfs-actions.pod:6356
16318 msgid ""
16319 "This only has any effect if called before C<guestfs_launch>, and the default "
16320 "is true."
16321 msgstr ""
16322
16323 #. type: textblock
16324 #: ../src/guestfs-actions.pod:6359 ../fish/guestfish-actions.pod:4220
16325 msgid ""
16326 "About the only time when you would want to disable this is if the main "
16327 "process will fork itself into the background (\"daemonize\" itself).  In "
16328 "this case the recovery process thinks that the main program has disappeared "
16329 "and so kills qemu, which is not very helpful."
16330 msgstr ""
16331
16332 #. type: =head2
16333 #: ../src/guestfs-actions.pod:6369
16334 msgid "guestfs_set_selinux"
16335 msgstr ""
16336
16337 #. type: verbatim
16338 #: ../src/guestfs-actions.pod:6371
16339 #, no-wrap
16340 msgid ""
16341 " int\n"
16342 " guestfs_set_selinux (guestfs_h *g,\n"
16343 "                      int selinux);\n"
16344 "\n"
16345 msgstr ""
16346
16347 #. type: textblock
16348 #: ../src/guestfs-actions.pod:6375 ../fish/guestfish-actions.pod:4232
16349 msgid ""
16350 "This sets the selinux flag that is passed to the appliance at boot time.  "
16351 "The default is C<selinux=0> (disabled)."
16352 msgstr ""
16353
16354 #. type: textblock
16355 #: ../src/guestfs-actions.pod:6378 ../fish/guestfish-actions.pod:4235
16356 msgid ""
16357 "Note that if SELinux is enabled, it is always in Permissive mode "
16358 "(C<enforcing=0>)."
16359 msgstr ""
16360
16361 #. type: =head2
16362 #: ../src/guestfs-actions.pod:6388
16363 msgid "guestfs_set_trace"
16364 msgstr ""
16365
16366 #. type: verbatim
16367 #: ../src/guestfs-actions.pod:6390
16368 #, no-wrap
16369 msgid ""
16370 " int\n"
16371 " guestfs_set_trace (guestfs_h *g,\n"
16372 "                    int trace);\n"
16373 "\n"
16374 msgstr ""
16375
16376 #. type: textblock
16377 #: ../src/guestfs-actions.pod:6394 ../fish/guestfish-actions.pod:4247
16378 msgid ""
16379 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16380 "return values are traced."
16381 msgstr ""
16382
16383 #. type: textblock
16384 #: ../src/guestfs-actions.pod:6397 ../fish/guestfish-actions.pod:4250
16385 msgid ""
16386 "If you want to trace C API calls into libguestfs (and other libraries) then "
16387 "possibly a better way is to use the external ltrace(1) command."
16388 msgstr ""
16389
16390 #. type: textblock
16391 #: ../src/guestfs-actions.pod:6401 ../fish/guestfish-actions.pod:4254
16392 msgid ""
16393 "Command traces are disabled unless the environment variable "
16394 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16395 msgstr ""
16396
16397 #. type: textblock
16398 #: ../src/guestfs-actions.pod:6404
16399 msgid ""
16400 "Trace messages are normally sent to C<stderr>, unless you register a "
16401 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16402 msgstr ""
16403
16404 #. type: =head2
16405 #: ../src/guestfs-actions.pod:6412
16406 msgid "guestfs_set_verbose"
16407 msgstr ""
16408
16409 #. type: verbatim
16410 #: ../src/guestfs-actions.pod:6414
16411 #, no-wrap
16412 msgid ""
16413 " int\n"
16414 " guestfs_set_verbose (guestfs_h *g,\n"
16415 "                      int verbose);\n"
16416 "\n"
16417 msgstr ""
16418
16419 #. type: textblock
16420 #: ../src/guestfs-actions.pod:6418 ../fish/guestfish-actions.pod:4267
16421 msgid "If C<verbose> is true, this turns on verbose messages."
16422 msgstr ""
16423
16424 #. type: textblock
16425 #: ../src/guestfs-actions.pod:6420 ../fish/guestfish-actions.pod:4269
16426 msgid ""
16427 "Verbose messages are disabled unless the environment variable "
16428 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16429 msgstr ""
16430
16431 #. type: textblock
16432 #: ../src/guestfs-actions.pod:6423
16433 msgid ""
16434 "Verbose messages are normally sent to C<stderr>, unless you register a "
16435 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16436 msgstr ""
16437
16438 #. type: =head2
16439 #: ../src/guestfs-actions.pod:6431
16440 msgid "guestfs_setcon"
16441 msgstr ""
16442
16443 #. type: verbatim
16444 #: ../src/guestfs-actions.pod:6433
16445 #, no-wrap
16446 msgid ""
16447 " int\n"
16448 " guestfs_setcon (guestfs_h *g,\n"
16449 "                 const char *context);\n"
16450 "\n"
16451 msgstr ""
16452
16453 #. type: textblock
16454 #: ../src/guestfs-actions.pod:6437 ../fish/guestfish-actions.pod:4280
16455 msgid ""
16456 "This sets the SELinux security context of the daemon to the string "
16457 "C<context>."
16458 msgstr ""
16459
16460 #. type: textblock
16461 #: ../src/guestfs-actions.pod:6440 ../fish/guestfish-actions.pod:4283
16462 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16463 msgstr ""
16464
16465 #. type: =head2
16466 #: ../src/guestfs-actions.pod:6446
16467 msgid "guestfs_setxattr"
16468 msgstr ""
16469
16470 #. type: verbatim
16471 #: ../src/guestfs-actions.pod:6448
16472 #, no-wrap
16473 msgid ""
16474 " int\n"
16475 " guestfs_setxattr (guestfs_h *g,\n"
16476 "                   const char *xattr,\n"
16477 "                   const char *val,\n"
16478 "                   int vallen,\n"
16479 "                   const char *path);\n"
16480 "\n"
16481 msgstr ""
16482
16483 #. type: textblock
16484 #: ../src/guestfs-actions.pod:6455 ../fish/guestfish-actions.pod:4289
16485 msgid ""
16486 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16487 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16488 msgstr ""
16489
16490 #. type: textblock
16491 #: ../src/guestfs-actions.pod:6459
16492 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16493 msgstr ""
16494
16495 #. type: =head2
16496 #: ../src/guestfs-actions.pod:6465
16497 msgid "guestfs_sfdisk"
16498 msgstr ""
16499
16500 #. type: verbatim
16501 #: ../src/guestfs-actions.pod:6467
16502 #, no-wrap
16503 msgid ""
16504 " int\n"
16505 " guestfs_sfdisk (guestfs_h *g,\n"
16506 "                 const char *device,\n"
16507 "                 int cyls,\n"
16508 "                 int heads,\n"
16509 "                 int sectors,\n"
16510 "                 char *const *lines);\n"
16511 "\n"
16512 msgstr ""
16513
16514 #. type: textblock
16515 #: ../src/guestfs-actions.pod:6475 ../fish/guestfish-actions.pod:4299
16516 msgid ""
16517 "This is a direct interface to the L<sfdisk(8)> program for creating "
16518 "partitions on block devices."
16519 msgstr ""
16520
16521 #. type: textblock
16522 #: ../src/guestfs-actions.pod:6478 ../fish/guestfish-actions.pod:4302
16523 msgid "C<device> should be a block device, for example C</dev/sda>."
16524 msgstr ""
16525
16526 #. type: textblock
16527 #: ../src/guestfs-actions.pod:6480 ../fish/guestfish-actions.pod:4304
16528 msgid ""
16529 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16530 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
16531 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16532 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16533 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16534 "the kernel) cannot work out the right geometry and you will need to tell it."
16535 msgstr ""
16536
16537 #. type: textblock
16538 #: ../src/guestfs-actions.pod:6488 ../fish/guestfish-actions.pod:4312
16539 msgid ""
16540 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16541 "refer to the L<sfdisk(8)> manpage."
16542 msgstr ""
16543
16544 #. type: textblock
16545 #: ../src/guestfs-actions.pod:6491 ../fish/guestfish-actions.pod:4315
16546 msgid ""
16547 "To create a single partition occupying the whole disk, you would pass "
16548 "C<lines> as a single element list, when the single element being the string "
16549 "C<,> (comma)."
16550 msgstr ""
16551
16552 #. type: textblock
16553 #: ../src/guestfs-actions.pod:6495
16554 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16555 msgstr ""
16556
16557 #. type: textblock
16558 #: ../src/guestfs-actions.pod:6503 ../src/guestfs-actions.pod:6533 ../src/guestfs-actions.pod:6566 ../fish/guestfish-actions.pod:4325 ../fish/guestfish-actions.pod:4348 ../fish/guestfish-actions.pod:4370
16559 msgid "This function is deprecated.  In new code, use the C<part_add> call instead."
16560 msgstr ""
16561
16562 #. type: =head2
16563 #: ../src/guestfs-actions.pod:6512
16564 msgid "guestfs_sfdiskM"
16565 msgstr ""
16566
16567 #. type: verbatim
16568 #: ../src/guestfs-actions.pod:6514
16569 #, no-wrap
16570 msgid ""
16571 " int\n"
16572 " guestfs_sfdiskM (guestfs_h *g,\n"
16573 "                  const char *device,\n"
16574 "                  char *const *lines);\n"
16575 "\n"
16576 msgstr ""
16577
16578 #. type: textblock
16579 #: ../src/guestfs-actions.pod:6519
16580 msgid ""
16581 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16582 "partition sizes are specified in megabytes only (rounded to the nearest "
16583 "cylinder) and you don't need to specify the cyls, heads and sectors "
16584 "parameters which were rarely if ever used anyway."
16585 msgstr ""
16586
16587 #. type: textblock
16588 #: ../src/guestfs-actions.pod:6525
16589 msgid ""
16590 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16591 "C<guestfs_part_disk>"
16592 msgstr ""
16593
16594 #. type: =head2
16595 #: ../src/guestfs-actions.pod:6542
16596 msgid "guestfs_sfdisk_N"
16597 msgstr ""
16598
16599 #. type: verbatim
16600 #: ../src/guestfs-actions.pod:6544
16601 #, no-wrap
16602 msgid ""
16603 " int\n"
16604 " guestfs_sfdisk_N (guestfs_h *g,\n"
16605 "                   const char *device,\n"
16606 "                   int partnum,\n"
16607 "                   int cyls,\n"
16608 "                   int heads,\n"
16609 "                   int sectors,\n"
16610 "                   const char *line);\n"
16611 "\n"
16612 msgstr ""
16613
16614 #. type: textblock
16615 #: ../src/guestfs-actions.pod:6553 ../fish/guestfish-actions.pod:4359
16616 msgid ""
16617 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16618 "(note: C<n> counts from 1)."
16619 msgstr ""
16620
16621 #. type: textblock
16622 #: ../src/guestfs-actions.pod:6556
16623 msgid ""
16624 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16625 "for the cyls/heads/sectors parameters."
16626 msgstr ""
16627
16628 #. type: textblock
16629 #: ../src/guestfs-actions.pod:6559
16630 msgid "See also: C<guestfs_part_add>"
16631 msgstr ""
16632
16633 #. type: =head2
16634 #: ../src/guestfs-actions.pod:6575
16635 msgid "guestfs_sfdisk_disk_geometry"
16636 msgstr ""
16637
16638 #. type: verbatim
16639 #: ../src/guestfs-actions.pod:6577
16640 #, no-wrap
16641 msgid ""
16642 " char *\n"
16643 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16644 "                               const char *device);\n"
16645 "\n"
16646 msgstr ""
16647
16648 #. type: textblock
16649 #: ../src/guestfs-actions.pod:6581
16650 msgid ""
16651 "This displays the disk geometry of C<device> read from the partition table.  "
16652 "Especially in the case where the underlying block device has been resized, "
16653 "this can be different from the kernel's idea of the geometry (see "
16654 "C<guestfs_sfdisk_kernel_geometry>)."
16655 msgstr ""
16656
16657 #. type: textblock
16658 #: ../src/guestfs-actions.pod:6586 ../src/guestfs-actions.pod:6602 ../fish/guestfish-actions.pod:4386 ../fish/guestfish-actions.pod:4395
16659 msgid "The result is in human-readable format, and not designed to be parsed."
16660 msgstr ""
16661
16662 #. type: =head2
16663 #: ../src/guestfs-actions.pod:6594
16664 msgid "guestfs_sfdisk_kernel_geometry"
16665 msgstr ""
16666
16667 #. type: verbatim
16668 #: ../src/guestfs-actions.pod:6596
16669 #, no-wrap
16670 msgid ""
16671 " char *\n"
16672 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16673 "                                 const char *device);\n"
16674 "\n"
16675 msgstr ""
16676
16677 #. type: textblock
16678 #: ../src/guestfs-actions.pod:6600 ../fish/guestfish-actions.pod:4393
16679 msgid "This displays the kernel's idea of the geometry of C<device>."
16680 msgstr ""
16681
16682 #. type: =head2
16683 #: ../src/guestfs-actions.pod:6610
16684 msgid "guestfs_sfdisk_l"
16685 msgstr ""
16686
16687 #. type: verbatim
16688 #: ../src/guestfs-actions.pod:6612
16689 #, no-wrap
16690 msgid ""
16691 " char *\n"
16692 " guestfs_sfdisk_l (guestfs_h *g,\n"
16693 "                   const char *device);\n"
16694 "\n"
16695 msgstr ""
16696
16697 #. type: textblock
16698 #: ../src/guestfs-actions.pod:6616 ../fish/guestfish-actions.pod:4402
16699 msgid ""
16700 "This displays the partition table on C<device>, in the human-readable output "
16701 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16702 msgstr ""
16703
16704 #. type: textblock
16705 #: ../src/guestfs-actions.pod:6620
16706 msgid "See also: C<guestfs_part_list>"
16707 msgstr ""
16708
16709 #. type: textblock
16710 #: ../src/guestfs-actions.pod:6625 ../fish/guestfish-actions.pod:4408
16711 msgid ""
16712 "This function is deprecated.  In new code, use the C<part_list> call "
16713 "instead."
16714 msgstr ""
16715
16716 #. type: =head2
16717 #: ../src/guestfs-actions.pod:6634
16718 msgid "guestfs_sh"
16719 msgstr ""
16720
16721 #. type: verbatim
16722 #: ../src/guestfs-actions.pod:6636
16723 #, no-wrap
16724 msgid ""
16725 " char *\n"
16726 " guestfs_sh (guestfs_h *g,\n"
16727 "             const char *command);\n"
16728 "\n"
16729 msgstr ""
16730
16731 #. type: textblock
16732 #: ../src/guestfs-actions.pod:6640 ../fish/guestfish-actions.pod:4419
16733 msgid ""
16734 "This call runs a command from the guest filesystem via the guest's "
16735 "C</bin/sh>."
16736 msgstr ""
16737
16738 #. type: textblock
16739 #: ../src/guestfs-actions.pod:6643
16740 msgid "This is like C<guestfs_command>, but passes the command to:"
16741 msgstr ""
16742
16743 #. type: verbatim
16744 #: ../src/guestfs-actions.pod:6645 ../fish/guestfish-actions.pod:4424
16745 #, no-wrap
16746 msgid ""
16747 " /bin/sh -c \"command\"\n"
16748 "\n"
16749 msgstr ""
16750
16751 #. type: textblock
16752 #: ../src/guestfs-actions.pod:6647 ../fish/guestfish-actions.pod:4426
16753 msgid ""
16754 "Depending on the guest's shell, this usually results in wildcards being "
16755 "expanded, shell expressions being interpolated and so on."
16756 msgstr ""
16757
16758 #. type: textblock
16759 #: ../src/guestfs-actions.pod:6651
16760 msgid "All the provisos about C<guestfs_command> apply to this call."
16761 msgstr ""
16762
16763 #. type: =head2
16764 #: ../src/guestfs-actions.pod:6658
16765 msgid "guestfs_sh_lines"
16766 msgstr ""
16767
16768 #. type: verbatim
16769 #: ../src/guestfs-actions.pod:6660
16770 #, no-wrap
16771 msgid ""
16772 " char **\n"
16773 " guestfs_sh_lines (guestfs_h *g,\n"
16774 "                   const char *command);\n"
16775 "\n"
16776 msgstr ""
16777
16778 #. type: textblock
16779 #: ../src/guestfs-actions.pod:6664
16780 msgid ""
16781 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16782 "lines."
16783 msgstr ""
16784
16785 #. type: textblock
16786 #: ../src/guestfs-actions.pod:6667
16787 msgid "See also: C<guestfs_command_lines>"
16788 msgstr ""
16789
16790 #. type: =head2
16791 #: ../src/guestfs-actions.pod:6675
16792 msgid "guestfs_sleep"
16793 msgstr ""
16794
16795 #. type: verbatim
16796 #: ../src/guestfs-actions.pod:6677
16797 #, no-wrap
16798 msgid ""
16799 " int\n"
16800 " guestfs_sleep (guestfs_h *g,\n"
16801 "                int secs);\n"
16802 "\n"
16803 msgstr ""
16804
16805 #. type: textblock
16806 #: ../src/guestfs-actions.pod:6681 ../fish/guestfish-actions.pod:4445
16807 msgid "Sleep for C<secs> seconds."
16808 msgstr ""
16809
16810 #. type: textblock
16811 #: ../src/guestfs-actions.pod:6685
16812 msgid "(Added in 1.0.41)"
16813 msgstr ""
16814
16815 #. type: =head2
16816 #: ../src/guestfs-actions.pod:6687 ../src/guestfs-structs.pod:109
16817 msgid "guestfs_stat"
16818 msgstr ""
16819
16820 #. type: verbatim
16821 #: ../src/guestfs-actions.pod:6689
16822 #, no-wrap
16823 msgid ""
16824 " struct guestfs_stat *\n"
16825 " guestfs_stat (guestfs_h *g,\n"
16826 "               const char *path);\n"
16827 "\n"
16828 msgstr ""
16829
16830 #. type: textblock
16831 #: ../src/guestfs-actions.pod:6695 ../fish/guestfish-actions.pod:4453
16832 msgid "This is the same as the C<stat(2)> system call."
16833 msgstr ""
16834
16835 #. type: =head2
16836 #: ../src/guestfs-actions.pod:6703 ../src/guestfs-structs.pod:135
16837 msgid "guestfs_statvfs"
16838 msgstr ""
16839
16840 #. type: verbatim
16841 #: ../src/guestfs-actions.pod:6705
16842 #, no-wrap
16843 msgid ""
16844 " struct guestfs_statvfs *\n"
16845 " guestfs_statvfs (guestfs_h *g,\n"
16846 "                  const char *path);\n"
16847 "\n"
16848 msgstr ""
16849
16850 #. type: textblock
16851 #: ../src/guestfs-actions.pod:6709 ../fish/guestfish-actions.pod:4459
16852 msgid ""
16853 "Returns file system statistics for any mounted file system.  C<path> should "
16854 "be a file or directory in the mounted file system (typically it is the mount "
16855 "point itself, but it doesn't need to be)."
16856 msgstr ""
16857
16858 #. type: textblock
16859 #: ../src/guestfs-actions.pod:6713 ../fish/guestfish-actions.pod:4463
16860 msgid "This is the same as the C<statvfs(2)> system call."
16861 msgstr ""
16862
16863 #. type: textblock
16864 #: ../src/guestfs-actions.pod:6715
16865 msgid ""
16866 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16867 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16868 msgstr ""
16869
16870 #. type: =head2
16871 #: ../src/guestfs-actions.pod:6721
16872 msgid "guestfs_strings"
16873 msgstr ""
16874
16875 #. type: verbatim
16876 #: ../src/guestfs-actions.pod:6723
16877 #, no-wrap
16878 msgid ""
16879 " char **\n"
16880 " guestfs_strings (guestfs_h *g,\n"
16881 "                  const char *path);\n"
16882 "\n"
16883 msgstr ""
16884
16885 #. type: textblock
16886 #: ../src/guestfs-actions.pod:6727 ../fish/guestfish-actions.pod:4469
16887 msgid ""
16888 "This runs the L<strings(1)> command on a file and returns the list of "
16889 "printable strings found."
16890 msgstr ""
16891
16892 #. type: =head2
16893 #: ../src/guestfs-actions.pod:6739
16894 msgid "guestfs_strings_e"
16895 msgstr ""
16896
16897 #. type: verbatim
16898 #: ../src/guestfs-actions.pod:6741
16899 #, no-wrap
16900 msgid ""
16901 " char **\n"
16902 " guestfs_strings_e (guestfs_h *g,\n"
16903 "                    const char *encoding,\n"
16904 "                    const char *path);\n"
16905 "\n"
16906 msgstr ""
16907
16908 #. type: textblock
16909 #: ../src/guestfs-actions.pod:6746
16910 msgid ""
16911 "This is like the C<guestfs_strings> command, but allows you to specify the "
16912 "encoding of strings that are looked for in the source file C<path>."
16913 msgstr ""
16914
16915 #. type: textblock
16916 #: ../src/guestfs-actions.pod:6750 ../fish/guestfish-actions.pod:4483
16917 msgid "Allowed encodings are:"
16918 msgstr ""
16919
16920 #. type: =item
16921 #: ../src/guestfs-actions.pod:6754 ../fish/guestfish-actions.pod:4487
16922 msgid "s"
16923 msgstr ""
16924
16925 #. type: textblock
16926 #: ../src/guestfs-actions.pod:6756
16927 msgid ""
16928 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16929 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16930 msgstr ""
16931
16932 #. type: =item
16933 #: ../src/guestfs-actions.pod:6759 ../fish/guestfish-actions.pod:4492
16934 msgid "S"
16935 msgstr ""
16936
16937 #. type: textblock
16938 #: ../src/guestfs-actions.pod:6761 ../fish/guestfish-actions.pod:4494
16939 msgid "Single 8-bit-byte characters."
16940 msgstr ""
16941
16942 #. type: =item
16943 #: ../src/guestfs-actions.pod:6763 ../fish/guestfish-actions.pod:4496
16944 msgid "b"
16945 msgstr ""
16946
16947 #. type: textblock
16948 #: ../src/guestfs-actions.pod:6765 ../fish/guestfish-actions.pod:4498
16949 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16950 msgstr ""
16951
16952 #. type: =item
16953 #: ../src/guestfs-actions.pod:6768 ../fish/guestfish-actions.pod:4501
16954 msgid "l (lower case letter L)"
16955 msgstr ""
16956
16957 #. type: textblock
16958 #: ../src/guestfs-actions.pod:6770 ../fish/guestfish-actions.pod:4503
16959 msgid ""
16960 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16961 "examining binaries in Windows guests."
16962 msgstr ""
16963
16964 #. type: =item
16965 #: ../src/guestfs-actions.pod:6773 ../fish/guestfish-actions.pod:4506
16966 msgid "B"
16967 msgstr ""
16968
16969 #. type: textblock
16970 #: ../src/guestfs-actions.pod:6775 ../fish/guestfish-actions.pod:4508
16971 msgid "32-bit big endian such as UCS-4BE."
16972 msgstr ""
16973
16974 #. type: =item
16975 #: ../src/guestfs-actions.pod:6777 ../fish/guestfish-actions.pod:4510
16976 msgid "L"
16977 msgstr ""
16978
16979 #. type: textblock
16980 #: ../src/guestfs-actions.pod:6779 ../fish/guestfish-actions.pod:4512
16981 msgid "32-bit little endian such as UCS-4LE."
16982 msgstr ""
16983
16984 #. type: textblock
16985 #: ../src/guestfs-actions.pod:6783 ../fish/guestfish-actions.pod:4516
16986 msgid "The returned strings are transcoded to UTF-8."
16987 msgstr ""
16988
16989 #. type: =head2
16990 #: ../src/guestfs-actions.pod:6794
16991 msgid "guestfs_swapoff_device"
16992 msgstr ""
16993
16994 #. type: verbatim
16995 #: ../src/guestfs-actions.pod:6796
16996 #, no-wrap
16997 msgid ""
16998 " int\n"
16999 " guestfs_swapoff_device (guestfs_h *g,\n"
17000 "                         const char *device);\n"
17001 "\n"
17002 msgstr ""
17003
17004 #. type: textblock
17005 #: ../src/guestfs-actions.pod:6800
17006 msgid ""
17007 "This command disables the libguestfs appliance swap device or partition "
17008 "named C<device>.  See C<guestfs_swapon_device>."
17009 msgstr ""
17010
17011 #. type: =head2
17012 #: ../src/guestfs-actions.pod:6808
17013 msgid "guestfs_swapoff_file"
17014 msgstr ""
17015
17016 #. type: verbatim
17017 #: ../src/guestfs-actions.pod:6810
17018 #, no-wrap
17019 msgid ""
17020 " int\n"
17021 " guestfs_swapoff_file (guestfs_h *g,\n"
17022 "                       const char *file);\n"
17023 "\n"
17024 msgstr ""
17025
17026 #. type: textblock
17027 #: ../src/guestfs-actions.pod:6814 ../fish/guestfish-actions.pod:4533
17028 msgid "This command disables the libguestfs appliance swap on file."
17029 msgstr ""
17030
17031 #. type: =head2
17032 #: ../src/guestfs-actions.pod:6820
17033 msgid "guestfs_swapoff_label"
17034 msgstr ""
17035
17036 #. type: verbatim
17037 #: ../src/guestfs-actions.pod:6822
17038 #, no-wrap
17039 msgid ""
17040 " int\n"
17041 " guestfs_swapoff_label (guestfs_h *g,\n"
17042 "                        const char *label);\n"
17043 "\n"
17044 msgstr ""
17045
17046 #. type: textblock
17047 #: ../src/guestfs-actions.pod:6826 ../fish/guestfish-actions.pod:4539
17048 msgid ""
17049 "This command disables the libguestfs appliance swap on labeled swap "
17050 "partition."
17051 msgstr ""
17052
17053 #. type: =head2
17054 #: ../src/guestfs-actions.pod:6833
17055 msgid "guestfs_swapoff_uuid"
17056 msgstr ""
17057
17058 #. type: verbatim
17059 #: ../src/guestfs-actions.pod:6835
17060 #, no-wrap
17061 msgid ""
17062 " int\n"
17063 " guestfs_swapoff_uuid (guestfs_h *g,\n"
17064 "                       const char *uuid);\n"
17065 "\n"
17066 msgstr ""
17067
17068 #. type: textblock
17069 #: ../src/guestfs-actions.pod:6839 ../fish/guestfish-actions.pod:4546
17070 msgid ""
17071 "This command disables the libguestfs appliance swap partition with the given "
17072 "UUID."
17073 msgstr ""
17074
17075 #. type: =head2
17076 #: ../src/guestfs-actions.pod:6846
17077 msgid "guestfs_swapon_device"
17078 msgstr ""
17079
17080 #. type: verbatim
17081 #: ../src/guestfs-actions.pod:6848
17082 #, no-wrap
17083 msgid ""
17084 " int\n"
17085 " guestfs_swapon_device (guestfs_h *g,\n"
17086 "                        const char *device);\n"
17087 "\n"
17088 msgstr ""
17089
17090 #. type: textblock
17091 #: ../src/guestfs-actions.pod:6852
17092 msgid ""
17093 "This command enables the libguestfs appliance to use the swap device or "
17094 "partition named C<device>.  The increased memory is made available for all "
17095 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17096 msgstr ""
17097
17098 #. type: textblock
17099 #: ../src/guestfs-actions.pod:6857 ../fish/guestfish-actions.pod:4558
17100 msgid ""
17101 "Note that you should not swap to existing guest swap partitions unless you "
17102 "know what you are doing.  They may contain hibernation information, or other "
17103 "information that the guest doesn't want you to trash.  You also risk leaking "
17104 "information about the host to the guest this way.  Instead, attach a new "
17105 "host device to the guest and swap on that."
17106 msgstr ""
17107
17108 #. type: =head2
17109 #: ../src/guestfs-actions.pod:6868
17110 msgid "guestfs_swapon_file"
17111 msgstr ""
17112
17113 #. type: verbatim
17114 #: ../src/guestfs-actions.pod:6870
17115 #, no-wrap
17116 msgid ""
17117 " int\n"
17118 " guestfs_swapon_file (guestfs_h *g,\n"
17119 "                      const char *file);\n"
17120 "\n"
17121 msgstr ""
17122
17123 #. type: textblock
17124 #: ../src/guestfs-actions.pod:6874
17125 msgid ""
17126 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
17127 "notes."
17128 msgstr ""
17129
17130 #. type: =head2
17131 #: ../src/guestfs-actions.pod:6881
17132 msgid "guestfs_swapon_label"
17133 msgstr ""
17134
17135 #. type: verbatim
17136 #: ../src/guestfs-actions.pod:6883
17137 #, no-wrap
17138 msgid ""
17139 " int\n"
17140 " guestfs_swapon_label (guestfs_h *g,\n"
17141 "                       const char *label);\n"
17142 "\n"
17143 msgstr ""
17144
17145 #. type: textblock
17146 #: ../src/guestfs-actions.pod:6887
17147 msgid ""
17148 "This command enables swap to a labeled swap partition.  See "
17149 "C<guestfs_swapon_device> for other notes."
17150 msgstr ""
17151
17152 #. type: =head2
17153 #: ../src/guestfs-actions.pod:6894
17154 msgid "guestfs_swapon_uuid"
17155 msgstr ""
17156
17157 #. type: verbatim
17158 #: ../src/guestfs-actions.pod:6896
17159 #, no-wrap
17160 msgid ""
17161 " int\n"
17162 " guestfs_swapon_uuid (guestfs_h *g,\n"
17163 "                      const char *uuid);\n"
17164 "\n"
17165 msgstr ""
17166
17167 #. type: textblock
17168 #: ../src/guestfs-actions.pod:6900
17169 msgid ""
17170 "This command enables swap to a swap partition with the given UUID.  See "
17171 "C<guestfs_swapon_device> for other notes."
17172 msgstr ""
17173
17174 #. type: =head2
17175 #: ../src/guestfs-actions.pod:6907
17176 msgid "guestfs_sync"
17177 msgstr ""
17178
17179 #. type: verbatim
17180 #: ../src/guestfs-actions.pod:6909
17181 #, no-wrap
17182 msgid ""
17183 " int\n"
17184 " guestfs_sync (guestfs_h *g);\n"
17185 "\n"
17186 msgstr ""
17187
17188 #. type: textblock
17189 #: ../src/guestfs-actions.pod:6912 ../fish/guestfish-actions.pod:4590
17190 msgid ""
17191 "This syncs the disk, so that any writes are flushed through to the "
17192 "underlying disk image."
17193 msgstr ""
17194
17195 #. type: textblock
17196 #: ../src/guestfs-actions.pod:6915 ../fish/guestfish-actions.pod:4593
17197 msgid ""
17198 "You should always call this if you have modified a disk image, before "
17199 "closing the handle."
17200 msgstr ""
17201
17202 #. type: =head2
17203 #: ../src/guestfs-actions.pod:6922
17204 msgid "guestfs_tail"
17205 msgstr ""
17206
17207 #. type: verbatim
17208 #: ../src/guestfs-actions.pod:6924
17209 #, no-wrap
17210 msgid ""
17211 " char **\n"
17212 " guestfs_tail (guestfs_h *g,\n"
17213 "               const char *path);\n"
17214 "\n"
17215 msgstr ""
17216
17217 #. type: textblock
17218 #: ../src/guestfs-actions.pod:6928 ../fish/guestfish-actions.pod:4600
17219 msgid "This command returns up to the last 10 lines of a file as a list of strings."
17220 msgstr ""
17221
17222 #. type: =head2
17223 #: ../src/guestfs-actions.pod:6940
17224 msgid "guestfs_tail_n"
17225 msgstr ""
17226
17227 #. type: verbatim
17228 #: ../src/guestfs-actions.pod:6942
17229 #, no-wrap
17230 msgid ""
17231 " char **\n"
17232 " guestfs_tail_n (guestfs_h *g,\n"
17233 "                 int nrlines,\n"
17234 "                 const char *path);\n"
17235 "\n"
17236 msgstr ""
17237
17238 #. type: textblock
17239 #: ../src/guestfs-actions.pod:6947 ../fish/guestfish-actions.pod:4610
17240 msgid ""
17241 "If the parameter C<nrlines> is a positive number, this returns the last "
17242 "C<nrlines> lines of the file C<path>."
17243 msgstr ""
17244
17245 #. type: textblock
17246 #: ../src/guestfs-actions.pod:6950 ../fish/guestfish-actions.pod:4613
17247 msgid ""
17248 "If the parameter C<nrlines> is a negative number, this returns lines from "
17249 "the file C<path>, starting with the C<-nrlines>th line."
17250 msgstr ""
17251
17252 #. type: =head2
17253 #: ../src/guestfs-actions.pod:6964
17254 msgid "guestfs_tar_in"
17255 msgstr ""
17256
17257 #. type: verbatim
17258 #: ../src/guestfs-actions.pod:6966
17259 #, no-wrap
17260 msgid ""
17261 " int\n"
17262 " guestfs_tar_in (guestfs_h *g,\n"
17263 "                 const char *tarfile,\n"
17264 "                 const char *directory);\n"
17265 "\n"
17266 msgstr ""
17267
17268 #. type: textblock
17269 #: ../src/guestfs-actions.pod:6971 ../fish/guestfish-actions.pod:4625
17270 msgid ""
17271 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17272 "tar file) into C<directory>."
17273 msgstr ""
17274
17275 #. type: textblock
17276 #: ../src/guestfs-actions.pod:6974
17277 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17278 msgstr ""
17279
17280 #. type: textblock
17281 #: ../src/guestfs-actions.pod:6979 ../src/guestfs-actions.pod:6996 ../src/guestfs-actions.pod:7012 ../src/guestfs-actions.pod:7028
17282 msgid "(Added in 1.0.3)"
17283 msgstr ""
17284
17285 #. type: =head2
17286 #: ../src/guestfs-actions.pod:6981
17287 msgid "guestfs_tar_out"
17288 msgstr ""
17289
17290 #. type: verbatim
17291 #: ../src/guestfs-actions.pod:6983
17292 #, no-wrap
17293 msgid ""
17294 " int\n"
17295 " guestfs_tar_out (guestfs_h *g,\n"
17296 "                  const char *directory,\n"
17297 "                  const char *tarfile);\n"
17298 "\n"
17299 msgstr ""
17300
17301 #. type: textblock
17302 #: ../src/guestfs-actions.pod:6988 ../fish/guestfish-actions.pod:4637
17303 msgid ""
17304 "This command packs the contents of C<directory> and downloads it to local "
17305 "file C<tarfile>."
17306 msgstr ""
17307
17308 #. type: textblock
17309 #: ../src/guestfs-actions.pod:6991
17310 msgid ""
17311 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17312 "C<guestfs_txz_out>."
17313 msgstr ""
17314
17315 #. type: =head2
17316 #: ../src/guestfs-actions.pod:6998
17317 msgid "guestfs_tgz_in"
17318 msgstr ""
17319
17320 #. type: verbatim
17321 #: ../src/guestfs-actions.pod:7000
17322 #, no-wrap
17323 msgid ""
17324 " int\n"
17325 " guestfs_tgz_in (guestfs_h *g,\n"
17326 "                 const char *tarball,\n"
17327 "                 const char *directory);\n"
17328 "\n"
17329 msgstr ""
17330
17331 #. type: textblock
17332 #: ../src/guestfs-actions.pod:7005 ../fish/guestfish-actions.pod:4649
17333 msgid ""
17334 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17335 "tar file) into C<directory>."
17336 msgstr ""
17337
17338 #. type: textblock
17339 #: ../src/guestfs-actions.pod:7008
17340 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17341 msgstr ""
17342
17343 #. type: =head2
17344 #: ../src/guestfs-actions.pod:7014
17345 msgid "guestfs_tgz_out"
17346 msgstr ""
17347
17348 #. type: verbatim
17349 #: ../src/guestfs-actions.pod:7016
17350 #, no-wrap
17351 msgid ""
17352 " int\n"
17353 " guestfs_tgz_out (guestfs_h *g,\n"
17354 "                  const char *directory,\n"
17355 "                  const char *tarball);\n"
17356 "\n"
17357 msgstr ""
17358
17359 #. type: textblock
17360 #: ../src/guestfs-actions.pod:7021 ../fish/guestfish-actions.pod:4660
17361 msgid ""
17362 "This command packs the contents of C<directory> and downloads it to local "
17363 "file C<tarball>."
17364 msgstr ""
17365
17366 #. type: textblock
17367 #: ../src/guestfs-actions.pod:7024
17368 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17369 msgstr ""
17370
17371 #. type: =head2
17372 #: ../src/guestfs-actions.pod:7030
17373 msgid "guestfs_touch"
17374 msgstr ""
17375
17376 #. type: verbatim
17377 #: ../src/guestfs-actions.pod:7032
17378 #, no-wrap
17379 msgid ""
17380 " int\n"
17381 " guestfs_touch (guestfs_h *g,\n"
17382 "                const char *path);\n"
17383 "\n"
17384 msgstr ""
17385
17386 #. type: textblock
17387 #: ../src/guestfs-actions.pod:7036 ../fish/guestfish-actions.pod:4671
17388 msgid ""
17389 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17390 "timestamps on a file, or, if the file does not exist, to create a new "
17391 "zero-length file."
17392 msgstr ""
17393
17394 #. type: textblock
17395 #: ../src/guestfs-actions.pod:7040 ../fish/guestfish-actions.pod:4675
17396 msgid ""
17397 "This command only works on regular files, and will fail on other file types "
17398 "such as directories, symbolic links, block special etc."
17399 msgstr ""
17400
17401 #. type: =head2
17402 #: ../src/guestfs-actions.pod:7047
17403 msgid "guestfs_truncate"
17404 msgstr ""
17405
17406 #. type: verbatim
17407 #: ../src/guestfs-actions.pod:7049
17408 #, no-wrap
17409 msgid ""
17410 " int\n"
17411 " guestfs_truncate (guestfs_h *g,\n"
17412 "                   const char *path);\n"
17413 "\n"
17414 msgstr ""
17415
17416 #. type: textblock
17417 #: ../src/guestfs-actions.pod:7053 ../fish/guestfish-actions.pod:4682
17418 msgid ""
17419 "This command truncates C<path> to a zero-length file.  The file must exist "
17420 "already."
17421 msgstr ""
17422
17423 #. type: =head2
17424 #: ../src/guestfs-actions.pod:7060
17425 msgid "guestfs_truncate_size"
17426 msgstr ""
17427
17428 #. type: verbatim
17429 #: ../src/guestfs-actions.pod:7062
17430 #, no-wrap
17431 msgid ""
17432 " int\n"
17433 " guestfs_truncate_size (guestfs_h *g,\n"
17434 "                        const char *path,\n"
17435 "                        int64_t size);\n"
17436 "\n"
17437 msgstr ""
17438
17439 #. type: textblock
17440 #: ../src/guestfs-actions.pod:7067 ../fish/guestfish-actions.pod:4689
17441 msgid ""
17442 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17443 "already."
17444 msgstr ""
17445
17446 #. type: textblock
17447 #: ../src/guestfs-actions.pod:7070
17448 msgid ""
17449 "If the current file size is less than C<size> then the file is extended to "
17450 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17451 "blocks are not allocated for the file until you write to it).  To create a "
17452 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17453 msgstr ""
17454
17455 #. type: =head2
17456 #: ../src/guestfs-actions.pod:7080
17457 msgid "guestfs_tune2fs_l"
17458 msgstr ""
17459
17460 #. type: verbatim
17461 #: ../src/guestfs-actions.pod:7082
17462 #, no-wrap
17463 msgid ""
17464 " char **\n"
17465 " guestfs_tune2fs_l (guestfs_h *g,\n"
17466 "                    const char *device);\n"
17467 "\n"
17468 msgstr ""
17469
17470 #. type: textblock
17471 #: ../src/guestfs-actions.pod:7086 ../fish/guestfish-actions.pod:4702
17472 msgid ""
17473 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17474 "C<device>."
17475 msgstr ""
17476
17477 #. type: textblock
17478 #: ../src/guestfs-actions.pod:7089 ../fish/guestfish-actions.pod:4705
17479 msgid ""
17480 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17481 "for more details.  The list of fields returned isn't clearly defined, and "
17482 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17483 "and the filesystem itself."
17484 msgstr ""
17485
17486 #. type: =head2
17487 #: ../src/guestfs-actions.pod:7102
17488 msgid "guestfs_txz_in"
17489 msgstr ""
17490
17491 #. type: verbatim
17492 #: ../src/guestfs-actions.pod:7104
17493 #, no-wrap
17494 msgid ""
17495 " int\n"
17496 " guestfs_txz_in (guestfs_h *g,\n"
17497 "                 const char *tarball,\n"
17498 "                 const char *directory);\n"
17499 "\n"
17500 msgstr ""
17501
17502 #. type: textblock
17503 #: ../src/guestfs-actions.pod:7109 ../fish/guestfish-actions.pod:4714
17504 msgid ""
17505 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17506 "tar file) into C<directory>."
17507 msgstr ""
17508
17509 #. type: =head2
17510 #: ../src/guestfs-actions.pod:7116
17511 msgid "guestfs_txz_out"
17512 msgstr ""
17513
17514 #. type: verbatim
17515 #: ../src/guestfs-actions.pod:7118
17516 #, no-wrap
17517 msgid ""
17518 " int\n"
17519 " guestfs_txz_out (guestfs_h *g,\n"
17520 "                  const char *directory,\n"
17521 "                  const char *tarball);\n"
17522 "\n"
17523 msgstr ""
17524
17525 #. type: textblock
17526 #: ../src/guestfs-actions.pod:7123 ../fish/guestfish-actions.pod:4723
17527 msgid ""
17528 "This command packs the contents of C<directory> and downloads it to local "
17529 "file C<tarball> (as an xz compressed tar archive)."
17530 msgstr ""
17531
17532 #. type: =head2
17533 #: ../src/guestfs-actions.pod:7130
17534 msgid "guestfs_umask"
17535 msgstr ""
17536
17537 #. type: verbatim
17538 #: ../src/guestfs-actions.pod:7132
17539 #, no-wrap
17540 msgid ""
17541 " int\n"
17542 " guestfs_umask (guestfs_h *g,\n"
17543 "                int mask);\n"
17544 "\n"
17545 msgstr ""
17546
17547 #. type: textblock
17548 #: ../src/guestfs-actions.pod:7136 ../fish/guestfish-actions.pod:4732
17549 msgid ""
17550 "This function sets the mask used for creating new files and device nodes to "
17551 "C<mask & 0777>."
17552 msgstr ""
17553
17554 #. type: textblock
17555 #: ../src/guestfs-actions.pod:7139 ../fish/guestfish-actions.pod:4735
17556 msgid ""
17557 "Typical umask values would be C<022> which creates new files with "
17558 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17559 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17560 msgstr ""
17561
17562 #. type: textblock
17563 #: ../src/guestfs-actions.pod:7144 ../fish/guestfish-actions.pod:4740
17564 msgid ""
17565 "The default umask is C<022>.  This is important because it means that "
17566 "directories and device nodes will be created with C<0644> or C<0755> mode "
17567 "even if you specify C<0777>."
17568 msgstr ""
17569
17570 #. type: textblock
17571 #: ../src/guestfs-actions.pod:7148
17572 msgid ""
17573 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17574 "C<guestfs_mkdir>."
17575 msgstr ""
17576
17577 #. type: textblock
17578 #: ../src/guestfs-actions.pod:7151 ../fish/guestfish-actions.pod:4747
17579 msgid "This call returns the previous umask."
17580 msgstr ""
17581
17582 #. type: =head2
17583 #: ../src/guestfs-actions.pod:7157
17584 msgid "guestfs_umount"
17585 msgstr ""
17586
17587 #. type: verbatim
17588 #: ../src/guestfs-actions.pod:7159
17589 #, no-wrap
17590 msgid ""
17591 " int\n"
17592 " guestfs_umount (guestfs_h *g,\n"
17593 "                 const char *pathordevice);\n"
17594 "\n"
17595 msgstr ""
17596
17597 #. type: textblock
17598 #: ../src/guestfs-actions.pod:7163 ../fish/guestfish-actions.pod:4755
17599 msgid ""
17600 "This unmounts the given filesystem.  The filesystem may be specified either "
17601 "by its mountpoint (path) or the device which contains the filesystem."
17602 msgstr ""
17603
17604 #. type: =head2
17605 #: ../src/guestfs-actions.pod:7171
17606 msgid "guestfs_umount_all"
17607 msgstr ""
17608
17609 #. type: verbatim
17610 #: ../src/guestfs-actions.pod:7173
17611 #, no-wrap
17612 msgid ""
17613 " int\n"
17614 " guestfs_umount_all (guestfs_h *g);\n"
17615 "\n"
17616 msgstr ""
17617
17618 #. type: textblock
17619 #: ../src/guestfs-actions.pod:7176 ../fish/guestfish-actions.pod:4765
17620 msgid "This unmounts all mounted filesystems."
17621 msgstr ""
17622
17623 #. type: textblock
17624 #: ../src/guestfs-actions.pod:7178 ../fish/guestfish-actions.pod:4767
17625 msgid "Some internal mounts are not unmounted by this call."
17626 msgstr ""
17627
17628 #. type: =head2
17629 #: ../src/guestfs-actions.pod:7184
17630 msgid "guestfs_upload"
17631 msgstr ""
17632
17633 #. type: verbatim
17634 #: ../src/guestfs-actions.pod:7186
17635 #, no-wrap
17636 msgid ""
17637 " int\n"
17638 " guestfs_upload (guestfs_h *g,\n"
17639 "                 const char *filename,\n"
17640 "                 const char *remotefilename);\n"
17641 "\n"
17642 msgstr ""
17643
17644 #. type: textblock
17645 #: ../src/guestfs-actions.pod:7191 ../src/guestfs-actions.pod:7215 ../fish/guestfish-actions.pod:4773 ../fish/guestfish-actions.pod:4786
17646 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17647 msgstr ""
17648
17649 #. type: textblock
17650 #: ../src/guestfs-actions.pod:7196
17651 msgid "See also C<guestfs_download>."
17652 msgstr ""
17653
17654 #. type: =head2
17655 #: ../src/guestfs-actions.pod:7207
17656 msgid "guestfs_upload_offset"
17657 msgstr ""
17658
17659 #. type: verbatim
17660 #: ../src/guestfs-actions.pod:7209
17661 #, no-wrap
17662 msgid ""
17663 " int\n"
17664 " guestfs_upload_offset (guestfs_h *g,\n"
17665 "                        const char *filename,\n"
17666 "                        const char *remotefilename,\n"
17667 "                        int64_t offset);\n"
17668 "\n"
17669 msgstr ""
17670
17671 #. type: textblock
17672 #: ../src/guestfs-actions.pod:7218 ../fish/guestfish-actions.pod:4789
17673 msgid ""
17674 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17675 "The intention is to overwrite parts of existing files or devices, although "
17676 "if a non-existant file is specified then it is created with a \"hole\" "
17677 "before C<offset>.  The size of the data written is implicit in the size of "
17678 "the source C<filename>."
17679 msgstr ""
17680
17681 #. type: textblock
17682 #: ../src/guestfs-actions.pod:7225
17683 msgid ""
17684 "Note that there is no limit on the amount of data that can be uploaded with "
17685 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17686 "full amount unless an error occurs."
17687 msgstr ""
17688
17689 #. type: textblock
17690 #: ../src/guestfs-actions.pod:7230
17691 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17692 msgstr ""
17693
17694 #. type: =head2
17695 #: ../src/guestfs-actions.pod:7241
17696 msgid "guestfs_utimens"
17697 msgstr ""
17698
17699 #. type: verbatim
17700 #: ../src/guestfs-actions.pod:7243
17701 #, no-wrap
17702 msgid ""
17703 " int\n"
17704 " guestfs_utimens (guestfs_h *g,\n"
17705 "                  const char *path,\n"
17706 "                  int64_t atsecs,\n"
17707 "                  int64_t atnsecs,\n"
17708 "                  int64_t mtsecs,\n"
17709 "                  int64_t mtnsecs);\n"
17710 "\n"
17711 msgstr ""
17712
17713 #. type: textblock
17714 #: ../src/guestfs-actions.pod:7251 ../fish/guestfish-actions.pod:4809
17715 msgid "This command sets the timestamps of a file with nanosecond precision."
17716 msgstr ""
17717
17718 #. type: textblock
17719 #: ../src/guestfs-actions.pod:7254 ../fish/guestfish-actions.pod:4812
17720 msgid ""
17721 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17722 "from the epoch."
17723 msgstr ""
17724
17725 #. type: textblock
17726 #: ../src/guestfs-actions.pod:7257 ../fish/guestfish-actions.pod:4815
17727 msgid ""
17728 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17729 "nanoseconds from the epoch."
17730 msgstr ""
17731
17732 #. type: textblock
17733 #: ../src/guestfs-actions.pod:7260 ../fish/guestfish-actions.pod:4818
17734 msgid ""
17735 "If the C<*nsecs> field contains the special value C<-1> then the "
17736 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17737 "ignored in this case)."
17738 msgstr ""
17739
17740 #. type: textblock
17741 #: ../src/guestfs-actions.pod:7264 ../fish/guestfish-actions.pod:4822
17742 msgid ""
17743 "If the C<*nsecs> field contains the special value C<-2> then the "
17744 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17745 "in this case)."
17746 msgstr ""
17747
17748 #. type: =head2
17749 #: ../src/guestfs-actions.pod:7272 ../src/guestfs-structs.pod:175
17750 msgid "guestfs_version"
17751 msgstr ""
17752
17753 #. type: verbatim
17754 #: ../src/guestfs-actions.pod:7274
17755 #, no-wrap
17756 msgid ""
17757 " struct guestfs_version *\n"
17758 " guestfs_version (guestfs_h *g);\n"
17759 "\n"
17760 msgstr ""
17761
17762 #. type: textblock
17763 #: ../src/guestfs-actions.pod:7277 ../fish/guestfish-actions.pod:4830
17764 msgid "Return the libguestfs version number that the program is linked against."
17765 msgstr ""
17766
17767 #. type: textblock
17768 #: ../src/guestfs-actions.pod:7280 ../fish/guestfish-actions.pod:4833
17769 msgid ""
17770 "Note that because of dynamic linking this is not necessarily the version of "
17771 "libguestfs that you compiled against.  You can compile the program, and then "
17772 "at runtime dynamically link against a completely different C<libguestfs.so> "
17773 "library."
17774 msgstr ""
17775
17776 #. type: textblock
17777 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4838
17778 msgid ""
17779 "This call was added in version C<1.0.58>.  In previous versions of "
17780 "libguestfs there was no way to get the version number.  From C code you can "
17781 "use dynamic linker functions to find out if this symbol exists (if it "
17782 "doesn't, then it's an earlier version)."
17783 msgstr ""
17784
17785 #. type: textblock
17786 #: ../src/guestfs-actions.pod:7291 ../fish/guestfish-actions.pod:4844
17787 msgid ""
17788 "The call returns a structure with four elements.  The first three (C<major>, "
17789 "C<minor> and C<release>) are numbers and correspond to the usual version "
17790 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17791 "but may be used for distro-specific information."
17792 msgstr ""
17793
17794 #. type: textblock
17795 #: ../src/guestfs-actions.pod:7297 ../fish/guestfish-actions.pod:4850
17796 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
17797 msgstr ""
17798
17799 #. type: textblock
17800 #: ../src/guestfs-actions.pod:7300 ../fish/guestfish-actions.pod:4853
17801 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17802 msgstr ""
17803
17804 #. type: textblock
17805 #: ../src/guestfs-actions.pod:7302
17806 msgid ""
17807 "I<Note:> Don't use this call to test for availability of features.  In "
17808 "enterprise distributions we backport features from later versions into "
17809 "earlier versions, making this an unreliable way to test for features.  Use "
17810 "C<guestfs_available> instead."
17811 msgstr ""
17812
17813 #. type: textblock
17814 #: ../src/guestfs-actions.pod:7308
17815 msgid ""
17816 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17817 "error.  I<The caller must call C<guestfs_free_version> after use>."
17818 msgstr ""
17819
17820 #. type: textblock
17821 #: ../src/guestfs-actions.pod:7312
17822 msgid "(Added in 1.0.58)"
17823 msgstr ""
17824
17825 #. type: =head2
17826 #: ../src/guestfs-actions.pod:7314
17827 msgid "guestfs_vfs_label"
17828 msgstr ""
17829
17830 #. type: verbatim
17831 #: ../src/guestfs-actions.pod:7316
17832 #, no-wrap
17833 msgid ""
17834 " char *\n"
17835 " guestfs_vfs_label (guestfs_h *g,\n"
17836 "                    const char *device);\n"
17837 "\n"
17838 msgstr ""
17839
17840 #. type: textblock
17841 #: ../src/guestfs-actions.pod:7320 ../fish/guestfish-actions.pod:4865
17842 msgid "This returns the filesystem label of the filesystem on C<device>."
17843 msgstr ""
17844
17845 #. type: textblock
17846 #: ../src/guestfs-actions.pod:7323 ../fish/guestfish-actions.pod:4868
17847 msgid "If the filesystem is unlabeled, this returns the empty string."
17848 msgstr ""
17849
17850 #. type: textblock
17851 #: ../src/guestfs-actions.pod:7325
17852 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17853 msgstr ""
17854
17855 #. type: textblock
17856 #: ../src/guestfs-actions.pod:7330 ../src/guestfs-actions.pod:7367
17857 msgid "(Added in 1.3.18)"
17858 msgstr ""
17859
17860 #. type: =head2
17861 #: ../src/guestfs-actions.pod:7332
17862 msgid "guestfs_vfs_type"
17863 msgstr ""
17864
17865 #. type: verbatim
17866 #: ../src/guestfs-actions.pod:7334
17867 #, no-wrap
17868 msgid ""
17869 " char *\n"
17870 " guestfs_vfs_type (guestfs_h *g,\n"
17871 "                   const char *device);\n"
17872 "\n"
17873 msgstr ""
17874
17875 #. type: textblock
17876 #: ../src/guestfs-actions.pod:7338 ../fish/guestfish-actions.pod:4876
17877 msgid ""
17878 "This command gets the filesystem type corresponding to the filesystem on "
17879 "C<device>."
17880 msgstr ""
17881
17882 #. type: textblock
17883 #: ../src/guestfs-actions.pod:7341 ../fish/guestfish-actions.pod:4879
17884 msgid ""
17885 "For most filesystems, the result is the name of the Linux VFS module which "
17886 "would be used to mount this filesystem if you mounted it without specifying "
17887 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17888 msgstr ""
17889
17890 #. type: =head2
17891 #: ../src/guestfs-actions.pod:7351
17892 msgid "guestfs_vfs_uuid"
17893 msgstr ""
17894
17895 #. type: verbatim
17896 #: ../src/guestfs-actions.pod:7353
17897 #, no-wrap
17898 msgid ""
17899 " char *\n"
17900 " guestfs_vfs_uuid (guestfs_h *g,\n"
17901 "                   const char *device);\n"
17902 "\n"
17903 msgstr ""
17904
17905 #. type: textblock
17906 #: ../src/guestfs-actions.pod:7357 ../fish/guestfish-actions.pod:4888
17907 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17908 msgstr ""
17909
17910 #. type: textblock
17911 #: ../src/guestfs-actions.pod:7360 ../fish/guestfish-actions.pod:4891
17912 msgid "If the filesystem does not have a UUID, this returns the empty string."
17913 msgstr ""
17914
17915 #. type: textblock
17916 #: ../src/guestfs-actions.pod:7362
17917 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17918 msgstr ""
17919
17920 #. type: =head2
17921 #: ../src/guestfs-actions.pod:7369
17922 msgid "guestfs_vg_activate"
17923 msgstr ""
17924
17925 #. type: verbatim
17926 #: ../src/guestfs-actions.pod:7371
17927 #, no-wrap
17928 msgid ""
17929 " int\n"
17930 " guestfs_vg_activate (guestfs_h *g,\n"
17931 "                      int activate,\n"
17932 "                      char *const *volgroups);\n"
17933 "\n"
17934 msgstr ""
17935
17936 #. type: textblock
17937 #: ../src/guestfs-actions.pod:7376 ../fish/guestfish-actions.pod:4899
17938 msgid ""
17939 "This command activates or (if C<activate> is false) deactivates all logical "
17940 "volumes in the listed volume groups C<volgroups>."
17941 msgstr ""
17942
17943 #. type: textblock
17944 #: ../src/guestfs-actions.pod:7379 ../fish/guestfish-actions.pod:4902
17945 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17946 msgstr ""
17947
17948 #. type: textblock
17949 #: ../src/guestfs-actions.pod:7381 ../fish/guestfish-actions.pod:4904
17950 msgid ""
17951 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17952 "activated or deactivated."
17953 msgstr ""
17954
17955 #. type: =head2
17956 #: ../src/guestfs-actions.pod:7388
17957 msgid "guestfs_vg_activate_all"
17958 msgstr ""
17959
17960 #. type: verbatim
17961 #: ../src/guestfs-actions.pod:7390
17962 #, no-wrap
17963 msgid ""
17964 " int\n"
17965 " guestfs_vg_activate_all (guestfs_h *g,\n"
17966 "                          int activate);\n"
17967 "\n"
17968 msgstr ""
17969
17970 #. type: textblock
17971 #: ../src/guestfs-actions.pod:7394 ../fish/guestfish-actions.pod:4911
17972 msgid ""
17973 "This command activates or (if C<activate> is false) deactivates all logical "
17974 "volumes in all volume groups."
17975 msgstr ""
17976
17977 #. type: textblock
17978 #: ../src/guestfs-actions.pod:7397 ../fish/guestfish-actions.pod:4914
17979 msgid "This command is the same as running C<vgchange -a y|n>"
17980 msgstr ""
17981
17982 #. type: =head2
17983 #: ../src/guestfs-actions.pod:7403
17984 msgid "guestfs_vgcreate"
17985 msgstr ""
17986
17987 #. type: verbatim
17988 #: ../src/guestfs-actions.pod:7405
17989 #, no-wrap
17990 msgid ""
17991 " int\n"
17992 " guestfs_vgcreate (guestfs_h *g,\n"
17993 "                   const char *volgroup,\n"
17994 "                   char *const *physvols);\n"
17995 "\n"
17996 msgstr ""
17997
17998 #. type: textblock
17999 #: ../src/guestfs-actions.pod:7410 ../fish/guestfish-actions.pod:4920
18000 msgid ""
18001 "This creates an LVM volume group called C<volgroup> from the non-empty list "
18002 "of physical volumes C<physvols>."
18003 msgstr ""
18004
18005 #. type: =head2
18006 #: ../src/guestfs-actions.pod:7417
18007 msgid "guestfs_vglvuuids"
18008 msgstr ""
18009
18010 #. type: verbatim
18011 #: ../src/guestfs-actions.pod:7419
18012 #, no-wrap
18013 msgid ""
18014 " char **\n"
18015 " guestfs_vglvuuids (guestfs_h *g,\n"
18016 "                    const char *vgname);\n"
18017 "\n"
18018 msgstr ""
18019
18020 #. type: textblock
18021 #: ../src/guestfs-actions.pod:7423 ../fish/guestfish-actions.pod:4927
18022 msgid ""
18023 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
18024 "volumes created in this volume group."
18025 msgstr ""
18026
18027 #. type: textblock
18028 #: ../src/guestfs-actions.pod:7426
18029 msgid ""
18030 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
18031 "associate logical volumes and volume groups."
18032 msgstr ""
18033
18034 #. type: textblock
18035 #: ../src/guestfs-actions.pod:7429
18036 msgid "See also C<guestfs_vgpvuuids>."
18037 msgstr ""
18038
18039 #. type: =head2
18040 #: ../src/guestfs-actions.pod:7437
18041 msgid "guestfs_vgpvuuids"
18042 msgstr ""
18043
18044 #. type: verbatim
18045 #: ../src/guestfs-actions.pod:7439
18046 #, no-wrap
18047 msgid ""
18048 " char **\n"
18049 " guestfs_vgpvuuids (guestfs_h *g,\n"
18050 "                    const char *vgname);\n"
18051 "\n"
18052 msgstr ""
18053
18054 #. type: textblock
18055 #: ../src/guestfs-actions.pod:7443 ../fish/guestfish-actions.pod:4939
18056 msgid ""
18057 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
18058 "volumes that this volume group resides on."
18059 msgstr ""
18060
18061 #. type: textblock
18062 #: ../src/guestfs-actions.pod:7446
18063 msgid ""
18064 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
18065 "associate physical volumes and volume groups."
18066 msgstr ""
18067
18068 #. type: textblock
18069 #: ../src/guestfs-actions.pod:7449
18070 msgid "See also C<guestfs_vglvuuids>."
18071 msgstr ""
18072
18073 #. type: =head2
18074 #: ../src/guestfs-actions.pod:7457
18075 msgid "guestfs_vgremove"
18076 msgstr ""
18077
18078 #. type: verbatim
18079 #: ../src/guestfs-actions.pod:7459
18080 #, no-wrap
18081 msgid ""
18082 " int\n"
18083 " guestfs_vgremove (guestfs_h *g,\n"
18084 "                   const char *vgname);\n"
18085 "\n"
18086 msgstr ""
18087
18088 #. type: textblock
18089 #: ../src/guestfs-actions.pod:7463 ../fish/guestfish-actions.pod:4951
18090 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
18091 msgstr ""
18092
18093 #. type: textblock
18094 #: ../src/guestfs-actions.pod:7465 ../fish/guestfish-actions.pod:4953
18095 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
18096 msgstr ""
18097
18098 #. type: =head2
18099 #: ../src/guestfs-actions.pod:7472
18100 msgid "guestfs_vgrename"
18101 msgstr ""
18102
18103 #. type: verbatim
18104 #: ../src/guestfs-actions.pod:7474
18105 #, no-wrap
18106 msgid ""
18107 " int\n"
18108 " guestfs_vgrename (guestfs_h *g,\n"
18109 "                   const char *volgroup,\n"
18110 "                   const char *newvolgroup);\n"
18111 "\n"
18112 msgstr ""
18113
18114 #. type: textblock
18115 #: ../src/guestfs-actions.pod:7479 ../fish/guestfish-actions.pod:4960
18116 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18117 msgstr ""
18118
18119 #. type: =head2
18120 #: ../src/guestfs-actions.pod:7485
18121 msgid "guestfs_vgs"
18122 msgstr ""
18123
18124 #. type: verbatim
18125 #: ../src/guestfs-actions.pod:7487
18126 #, no-wrap
18127 msgid ""
18128 " char **\n"
18129 " guestfs_vgs (guestfs_h *g);\n"
18130 "\n"
18131 msgstr ""
18132
18133 #. type: textblock
18134 #: ../src/guestfs-actions.pod:7490 ../fish/guestfish-actions.pod:4966
18135 msgid ""
18136 "List all the volumes groups detected.  This is the equivalent of the "
18137 "L<vgs(8)> command."
18138 msgstr ""
18139
18140 #. type: textblock
18141 #: ../src/guestfs-actions.pod:7493 ../fish/guestfish-actions.pod:4969
18142 msgid ""
18143 "This returns a list of just the volume group names that were detected "
18144 "(eg. C<VolGroup00>)."
18145 msgstr ""
18146
18147 #. type: textblock
18148 #: ../src/guestfs-actions.pod:7496
18149 msgid "See also C<guestfs_vgs_full>."
18150 msgstr ""
18151
18152 #. type: =head2
18153 #: ../src/guestfs-actions.pod:7504
18154 msgid "guestfs_vgs_full"
18155 msgstr ""
18156
18157 #. type: verbatim
18158 #: ../src/guestfs-actions.pod:7506
18159 #, no-wrap
18160 msgid ""
18161 " struct guestfs_lvm_vg_list *\n"
18162 " guestfs_vgs_full (guestfs_h *g);\n"
18163 "\n"
18164 msgstr ""
18165
18166 #. type: textblock
18167 #: ../src/guestfs-actions.pod:7509 ../fish/guestfish-actions.pod:4978
18168 msgid ""
18169 "List all the volumes groups detected.  This is the equivalent of the "
18170 "L<vgs(8)> command.  The \"full\" version includes all fields."
18171 msgstr ""
18172
18173 #. type: textblock
18174 #: ../src/guestfs-actions.pod:7512
18175 msgid ""
18176 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18177 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
18178 "use>."
18179 msgstr ""
18180
18181 #. type: =head2
18182 #: ../src/guestfs-actions.pod:7518
18183 msgid "guestfs_vgscan"
18184 msgstr ""
18185
18186 #. type: verbatim
18187 #: ../src/guestfs-actions.pod:7520
18188 #, no-wrap
18189 msgid ""
18190 " int\n"
18191 " guestfs_vgscan (guestfs_h *g);\n"
18192 "\n"
18193 msgstr ""
18194
18195 #. type: textblock
18196 #: ../src/guestfs-actions.pod:7523 ../fish/guestfish-actions.pod:4985
18197 msgid ""
18198 "This rescans all block devices and rebuilds the list of LVM physical "
18199 "volumes, volume groups and logical volumes."
18200 msgstr ""
18201
18202 #. type: =head2
18203 #: ../src/guestfs-actions.pod:7530
18204 msgid "guestfs_vguuid"
18205 msgstr ""
18206
18207 #. type: verbatim
18208 #: ../src/guestfs-actions.pod:7532
18209 #, no-wrap
18210 msgid ""
18211 " char *\n"
18212 " guestfs_vguuid (guestfs_h *g,\n"
18213 "                 const char *vgname);\n"
18214 "\n"
18215 msgstr ""
18216
18217 #. type: textblock
18218 #: ../src/guestfs-actions.pod:7536 ../fish/guestfish-actions.pod:4992
18219 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18220 msgstr ""
18221
18222 #. type: =head2
18223 #: ../src/guestfs-actions.pod:7543
18224 msgid "guestfs_wait_ready"
18225 msgstr ""
18226
18227 #. type: verbatim
18228 #: ../src/guestfs-actions.pod:7545
18229 #, no-wrap
18230 msgid ""
18231 " int\n"
18232 " guestfs_wait_ready (guestfs_h *g);\n"
18233 "\n"
18234 msgstr ""
18235
18236 #. type: textblock
18237 #: ../src/guestfs-actions.pod:7548
18238 msgid "This function is a no op."
18239 msgstr ""
18240
18241 #. type: textblock
18242 #: ../src/guestfs-actions.pod:7550
18243 msgid ""
18244 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
18245 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
18246 "is no longer necessary because C<guestfs_launch> now does the waiting."
18247 msgstr ""
18248
18249 #. type: textblock
18250 #: ../src/guestfs-actions.pod:7555
18251 msgid ""
18252 "If you see any calls to this function in code then you can just remove them, "
18253 "unless you want to retain compatibility with older versions of the API."
18254 msgstr ""
18255
18256 #. type: textblock
18257 #: ../src/guestfs-actions.pod:7561
18258 msgid "This function is deprecated.  In new code, use the C<launch> call instead."
18259 msgstr ""
18260
18261 #. type: =head2
18262 #: ../src/guestfs-actions.pod:7570
18263 msgid "guestfs_wc_c"
18264 msgstr ""
18265
18266 #. type: verbatim
18267 #: ../src/guestfs-actions.pod:7572
18268 #, no-wrap
18269 msgid ""
18270 " int\n"
18271 " guestfs_wc_c (guestfs_h *g,\n"
18272 "               const char *path);\n"
18273 "\n"
18274 msgstr ""
18275
18276 #. type: textblock
18277 #: ../src/guestfs-actions.pod:7576 ../fish/guestfish-actions.pod:4998
18278 msgid ""
18279 "This command counts the characters in a file, using the C<wc -c> external "
18280 "command."
18281 msgstr ""
18282
18283 #. type: =head2
18284 #: ../src/guestfs-actions.pod:7583
18285 msgid "guestfs_wc_l"
18286 msgstr ""
18287
18288 #. type: verbatim
18289 #: ../src/guestfs-actions.pod:7585
18290 #, no-wrap
18291 msgid ""
18292 " int\n"
18293 " guestfs_wc_l (guestfs_h *g,\n"
18294 "               const char *path);\n"
18295 "\n"
18296 msgstr ""
18297
18298 #. type: textblock
18299 #: ../src/guestfs-actions.pod:7589 ../fish/guestfish-actions.pod:5005
18300 msgid ""
18301 "This command counts the lines in a file, using the C<wc -l> external "
18302 "command."
18303 msgstr ""
18304
18305 #. type: =head2
18306 #: ../src/guestfs-actions.pod:7596
18307 msgid "guestfs_wc_w"
18308 msgstr ""
18309
18310 #. type: verbatim
18311 #: ../src/guestfs-actions.pod:7598
18312 #, no-wrap
18313 msgid ""
18314 " int\n"
18315 " guestfs_wc_w (guestfs_h *g,\n"
18316 "               const char *path);\n"
18317 "\n"
18318 msgstr ""
18319
18320 #. type: textblock
18321 #: ../src/guestfs-actions.pod:7602 ../fish/guestfish-actions.pod:5012
18322 msgid ""
18323 "This command counts the words in a file, using the C<wc -w> external "
18324 "command."
18325 msgstr ""
18326
18327 #. type: =head2
18328 #: ../src/guestfs-actions.pod:7609
18329 msgid "guestfs_write"
18330 msgstr ""
18331
18332 #. type: verbatim
18333 #: ../src/guestfs-actions.pod:7611
18334 #, no-wrap
18335 msgid ""
18336 " int\n"
18337 " guestfs_write (guestfs_h *g,\n"
18338 "                const char *path,\n"
18339 "                const char *content,\n"
18340 "                size_t content_size);\n"
18341 "\n"
18342 msgstr ""
18343
18344 #. type: textblock
18345 #: ../src/guestfs-actions.pod:7617 ../fish/guestfish-actions.pod:5019
18346 msgid ""
18347 "This call creates a file called C<path>.  The content of the file is the "
18348 "string C<content> (which can contain any 8 bit data)."
18349 msgstr ""
18350
18351 #. type: =head2
18352 #: ../src/guestfs-actions.pod:7627
18353 msgid "guestfs_write_file"
18354 msgstr ""
18355
18356 #. type: verbatim
18357 #: ../src/guestfs-actions.pod:7629
18358 #, no-wrap
18359 msgid ""
18360 " int\n"
18361 " guestfs_write_file (guestfs_h *g,\n"
18362 "                     const char *path,\n"
18363 "                     const char *content,\n"
18364 "                     int size);\n"
18365 "\n"
18366 msgstr ""
18367
18368 #. type: textblock
18369 #: ../src/guestfs-actions.pod:7635 ../fish/guestfish-actions.pod:5029
18370 msgid ""
18371 "This call creates a file called C<path>.  The contents of the file is the "
18372 "string C<content> (which can contain any 8 bit data), with length C<size>."
18373 msgstr ""
18374
18375 #. type: textblock
18376 #: ../src/guestfs-actions.pod:7639 ../fish/guestfish-actions.pod:5033
18377 msgid ""
18378 "As a special case, if C<size> is C<0> then the length is calculated using "
18379 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18380 msgstr ""
18381
18382 #. type: textblock
18383 #: ../src/guestfs-actions.pod:7643 ../fish/guestfish-actions.pod:5037
18384 msgid ""
18385 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18386 "I<not> work, even if the length is specified."
18387 msgstr ""
18388
18389 #. type: textblock
18390 #: ../src/guestfs-actions.pod:7651 ../fish/guestfish-actions.pod:5043
18391 msgid "This function is deprecated.  In new code, use the C<write> call instead."
18392 msgstr ""
18393
18394 #. type: =head2
18395 #: ../src/guestfs-actions.pod:7660
18396 msgid "guestfs_zegrep"
18397 msgstr ""
18398
18399 #. type: verbatim
18400 #: ../src/guestfs-actions.pod:7662
18401 #, no-wrap
18402 msgid ""
18403 " char **\n"
18404 " guestfs_zegrep (guestfs_h *g,\n"
18405 "                 const char *regex,\n"
18406 "                 const char *path);\n"
18407 "\n"
18408 msgstr ""
18409
18410 #. type: textblock
18411 #: ../src/guestfs-actions.pod:7667 ../fish/guestfish-actions.pod:5054
18412 msgid "This calls the external C<zegrep> program and returns the matching lines."
18413 msgstr ""
18414
18415 #. type: =head2
18416 #: ../src/guestfs-actions.pod:7679
18417 msgid "guestfs_zegrepi"
18418 msgstr ""
18419
18420 #. type: verbatim
18421 #: ../src/guestfs-actions.pod:7681
18422 #, no-wrap
18423 msgid ""
18424 " char **\n"
18425 " guestfs_zegrepi (guestfs_h *g,\n"
18426 "                  const char *regex,\n"
18427 "                  const char *path);\n"
18428 "\n"
18429 msgstr ""
18430
18431 #. type: textblock
18432 #: ../src/guestfs-actions.pod:7686 ../fish/guestfish-actions.pod:5064
18433 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
18434 msgstr ""
18435
18436 #. type: =head2
18437 #: ../src/guestfs-actions.pod:7698
18438 msgid "guestfs_zero"
18439 msgstr ""
18440
18441 #. type: verbatim
18442 #: ../src/guestfs-actions.pod:7700
18443 #, no-wrap
18444 msgid ""
18445 " int\n"
18446 " guestfs_zero (guestfs_h *g,\n"
18447 "               const char *device);\n"
18448 "\n"
18449 msgstr ""
18450
18451 #. type: textblock
18452 #: ../src/guestfs-actions.pod:7704 ../fish/guestfish-actions.pod:5074
18453 msgid "This command writes zeroes over the first few blocks of C<device>."
18454 msgstr ""
18455
18456 #. type: textblock
18457 #: ../src/guestfs-actions.pod:7706 ../fish/guestfish-actions.pod:5076
18458 msgid ""
18459 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18460 "securely wipe the device).  It should be sufficient to remove any partition "
18461 "tables, filesystem superblocks and so on."
18462 msgstr ""
18463
18464 #. type: textblock
18465 #: ../src/guestfs-actions.pod:7710
18466 msgid ""
18467 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
18468 "C<guestfs_is_zero_device>"
18469 msgstr ""
18470
18471 #. type: =head2
18472 #: ../src/guestfs-actions.pod:7722
18473 msgid "guestfs_zero_device"
18474 msgstr ""
18475
18476 #. type: verbatim
18477 #: ../src/guestfs-actions.pod:7724
18478 #, no-wrap
18479 msgid ""
18480 " int\n"
18481 " guestfs_zero_device (guestfs_h *g,\n"
18482 "                      const char *device);\n"
18483 "\n"
18484 msgstr ""
18485
18486 #. type: textblock
18487 #: ../src/guestfs-actions.pod:7728
18488 msgid ""
18489 "This command writes zeroes over the entire C<device>.  Compare with "
18490 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18491 msgstr ""
18492
18493 #. type: textblock
18494 #: ../src/guestfs-actions.pod:7742
18495 msgid "(Added in 1.3.1)"
18496 msgstr ""
18497
18498 #. type: =head2
18499 #: ../src/guestfs-actions.pod:7744
18500 msgid "guestfs_zerofree"
18501 msgstr ""
18502
18503 #. type: verbatim
18504 #: ../src/guestfs-actions.pod:7746
18505 #, no-wrap
18506 msgid ""
18507 " int\n"
18508 " guestfs_zerofree (guestfs_h *g,\n"
18509 "                   const char *device);\n"
18510 "\n"
18511 msgstr ""
18512
18513 #. type: textblock
18514 #: ../src/guestfs-actions.pod:7750 ../fish/guestfish-actions.pod:5098
18515 msgid ""
18516 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18517 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18518 "possible to compress the filesystem more effectively."
18519 msgstr ""
18520
18521 #. type: textblock
18522 #: ../src/guestfs-actions.pod:7755 ../fish/guestfish-actions.pod:5103
18523 msgid "You should B<not> run this program if the filesystem is mounted."
18524 msgstr ""
18525
18526 #. type: textblock
18527 #: ../src/guestfs-actions.pod:7758 ../fish/guestfish-actions.pod:5106
18528 msgid ""
18529 "It is possible that using this program can damage the filesystem or data on "
18530 "the filesystem."
18531 msgstr ""
18532
18533 #. type: =head2
18534 #: ../src/guestfs-actions.pod:7765
18535 msgid "guestfs_zfgrep"
18536 msgstr ""
18537
18538 #. type: verbatim
18539 #: ../src/guestfs-actions.pod:7767
18540 #, no-wrap
18541 msgid ""
18542 " char **\n"
18543 " guestfs_zfgrep (guestfs_h *g,\n"
18544 "                 const char *pattern,\n"
18545 "                 const char *path);\n"
18546 "\n"
18547 msgstr ""
18548
18549 #. type: textblock
18550 #: ../src/guestfs-actions.pod:7772 ../fish/guestfish-actions.pod:5113
18551 msgid "This calls the external C<zfgrep> program and returns the matching lines."
18552 msgstr ""
18553
18554 #. type: =head2
18555 #: ../src/guestfs-actions.pod:7784
18556 msgid "guestfs_zfgrepi"
18557 msgstr ""
18558
18559 #. type: verbatim
18560 #: ../src/guestfs-actions.pod:7786
18561 #, no-wrap
18562 msgid ""
18563 " char **\n"
18564 " guestfs_zfgrepi (guestfs_h *g,\n"
18565 "                  const char *pattern,\n"
18566 "                  const char *path);\n"
18567 "\n"
18568 msgstr ""
18569
18570 #. type: textblock
18571 #: ../src/guestfs-actions.pod:7791 ../fish/guestfish-actions.pod:5123
18572 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
18573 msgstr ""
18574
18575 #. type: =head2
18576 #: ../src/guestfs-actions.pod:7803
18577 msgid "guestfs_zfile"
18578 msgstr ""
18579
18580 #. type: verbatim
18581 #: ../src/guestfs-actions.pod:7805
18582 #, no-wrap
18583 msgid ""
18584 " char *\n"
18585 " guestfs_zfile (guestfs_h *g,\n"
18586 "                const char *meth,\n"
18587 "                const char *path);\n"
18588 "\n"
18589 msgstr ""
18590
18591 #. type: textblock
18592 #: ../src/guestfs-actions.pod:7810 ../fish/guestfish-actions.pod:5133
18593 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
18594 msgstr ""
18595
18596 #. type: textblock
18597 #: ../src/guestfs-actions.pod:7813 ../fish/guestfish-actions.pod:5136
18598 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18599 msgstr ""
18600
18601 #. type: textblock
18602 #: ../src/guestfs-actions.pod:7815
18603 msgid ""
18604 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18605 "files."
18606 msgstr ""
18607
18608 #. type: textblock
18609 #: ../src/guestfs-actions.pod:7821 ../fish/guestfish-actions.pod:5141
18610 msgid "This function is deprecated.  In new code, use the C<file> call instead."
18611 msgstr ""
18612
18613 #. type: =head2
18614 #: ../src/guestfs-actions.pod:7830
18615 msgid "guestfs_zgrep"
18616 msgstr ""
18617
18618 #. type: verbatim
18619 #: ../src/guestfs-actions.pod:7832
18620 #, no-wrap
18621 msgid ""
18622 " char **\n"
18623 " guestfs_zgrep (guestfs_h *g,\n"
18624 "                const char *regex,\n"
18625 "                const char *path);\n"
18626 "\n"
18627 msgstr ""
18628
18629 #. type: textblock
18630 #: ../src/guestfs-actions.pod:7837 ../fish/guestfish-actions.pod:5152
18631 msgid "This calls the external C<zgrep> program and returns the matching lines."
18632 msgstr ""
18633
18634 #. type: =head2
18635 #: ../src/guestfs-actions.pod:7849
18636 msgid "guestfs_zgrepi"
18637 msgstr ""
18638
18639 #. type: verbatim
18640 #: ../src/guestfs-actions.pod:7851
18641 #, no-wrap
18642 msgid ""
18643 " char **\n"
18644 " guestfs_zgrepi (guestfs_h *g,\n"
18645 "                 const char *regex,\n"
18646 "                 const char *path);\n"
18647 "\n"
18648 msgstr ""
18649
18650 #. type: textblock
18651 #: ../src/guestfs-actions.pod:7856 ../fish/guestfish-actions.pod:5162
18652 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
18653 msgstr ""
18654
18655 #. type: =item
18656 #: ../src/guestfs-availability.pod:3
18657 msgid "B<augeas>"
18658 msgstr ""
18659
18660 #. type: textblock
18661 #: ../src/guestfs-availability.pod:5
18662 msgid ""
18663 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
18664 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
18665 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
18666 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
18667 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
18668 msgstr ""
18669
18670 #. type: =item
18671 #: ../src/guestfs-availability.pod:21
18672 msgid "B<btrfs>"
18673 msgstr ""
18674
18675 #. type: textblock
18676 #: ../src/guestfs-availability.pod:23
18677 msgid "The following functions: L</guestfs_btrfs_filesystem_resize>"
18678 msgstr ""
18679
18680 #. type: =item
18681 #: ../src/guestfs-availability.pod:26
18682 msgid "B<inotify>"
18683 msgstr ""
18684
18685 #. type: textblock
18686 #: ../src/guestfs-availability.pod:28
18687 msgid ""
18688 "The following functions: L</guestfs_inotify_add_watch> "
18689 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
18690 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18691 msgstr ""
18692
18693 #. type: =item
18694 #: ../src/guestfs-availability.pod:36
18695 msgid "B<linuxfsuuid>"
18696 msgstr ""
18697
18698 #. type: textblock
18699 #: ../src/guestfs-availability.pod:38
18700 msgid ""
18701 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
18702 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18703 msgstr ""
18704
18705 #. type: =item
18706 #: ../src/guestfs-availability.pod:45
18707 msgid "B<linuxmodules>"
18708 msgstr ""
18709
18710 #. type: textblock
18711 #: ../src/guestfs-availability.pod:47
18712 msgid "The following functions: L</guestfs_modprobe>"
18713 msgstr ""
18714
18715 #. type: =item
18716 #: ../src/guestfs-availability.pod:50
18717 msgid "B<linuxxattrs>"
18718 msgstr ""
18719
18720 #. type: textblock
18721 #: ../src/guestfs-availability.pod:52
18722 msgid ""
18723 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
18724 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
18725 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
18726 "L</guestfs_setxattr>"
18727 msgstr ""
18728
18729 #. type: =item
18730 #: ../src/guestfs-availability.pod:63
18731 msgid "B<luks>"
18732 msgstr ""
18733
18734 #. type: textblock
18735 #: ../src/guestfs-availability.pod:65
18736 msgid ""
18737 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
18738 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
18739 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18740 msgstr ""
18741
18742 #. type: =item
18743 #: ../src/guestfs-availability.pod:74
18744 msgid "B<lvm2>"
18745 msgstr ""
18746
18747 #. type: textblock
18748 #: ../src/guestfs-availability.pod:76
18749 msgid ""
18750 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
18751 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
18752 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
18753 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
18754 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
18755 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
18756 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
18757 "L</guestfs_vgs_full>"
18758 msgstr ""
18759
18760 #. type: =item
18761 #: ../src/guestfs-availability.pod:99
18762 msgid "B<mknod>"
18763 msgstr ""
18764
18765 #. type: textblock
18766 #: ../src/guestfs-availability.pod:101
18767 msgid ""
18768 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
18769 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
18770 msgstr ""
18771
18772 #. type: =item
18773 #: ../src/guestfs-availability.pod:107
18774 msgid "B<ntfs3g>"
18775 msgstr ""
18776
18777 #. type: textblock
18778 #: ../src/guestfs-availability.pod:109
18779 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18780 msgstr ""
18781
18782 #. type: =item
18783 #: ../src/guestfs-availability.pod:112
18784 msgid "B<ntfsprogs>"
18785 msgstr ""
18786
18787 #. type: textblock
18788 #: ../src/guestfs-availability.pod:114
18789 msgid ""
18790 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_opts> "
18791 "L</guestfs_ntfsresize_size>"
18792 msgstr ""
18793
18794 #. type: =item
18795 #: ../src/guestfs-availability.pod:119
18796 msgid "B<realpath>"
18797 msgstr ""
18798
18799 #. type: textblock
18800 #: ../src/guestfs-availability.pod:121
18801 msgid "The following functions: L</guestfs_realpath>"
18802 msgstr ""
18803
18804 #. type: =item
18805 #: ../src/guestfs-availability.pod:124
18806 msgid "B<scrub>"
18807 msgstr ""
18808
18809 #. type: textblock
18810 #: ../src/guestfs-availability.pod:126
18811 msgid ""
18812 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
18813 "L</guestfs_scrub_freespace>"
18814 msgstr ""
18815
18816 #. type: =item
18817 #: ../src/guestfs-availability.pod:131
18818 msgid "B<selinux>"
18819 msgstr ""
18820
18821 #. type: textblock
18822 #: ../src/guestfs-availability.pod:133
18823 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18824 msgstr ""
18825
18826 #. type: =item
18827 #: ../src/guestfs-availability.pod:137
18828 msgid "B<xz>"
18829 msgstr ""
18830
18831 #. type: textblock
18832 #: ../src/guestfs-availability.pod:139
18833 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18834 msgstr ""
18835
18836 #. type: =item
18837 #: ../src/guestfs-availability.pod:143
18838 msgid "B<zerofree>"
18839 msgstr ""
18840
18841 #. type: textblock
18842 #: ../src/guestfs-availability.pod:145
18843 msgid "The following functions: L</guestfs_zerofree>"
18844 msgstr ""
18845
18846 #. type: =head2
18847 #: ../src/guestfs-structs.pod:1
18848 msgid "guestfs_int_bool"
18849 msgstr ""
18850
18851 #. type: verbatim
18852 #: ../src/guestfs-structs.pod:3
18853 #, no-wrap
18854 msgid ""
18855 " struct guestfs_int_bool {\n"
18856 "   int32_t i;\n"
18857 "   int32_t b;\n"
18858 " };\n"
18859 " \n"
18860 msgstr ""
18861
18862 #. type: verbatim
18863 #: ../src/guestfs-structs.pod:8
18864 #, no-wrap
18865 msgid ""
18866 " struct guestfs_int_bool_list {\n"
18867 "   uint32_t len; /* Number of elements in list. */\n"
18868 "   struct guestfs_int_bool *val; /* Elements. */\n"
18869 " };\n"
18870 " \n"
18871 msgstr ""
18872
18873 #. type: verbatim
18874 #: ../src/guestfs-structs.pod:13
18875 #, no-wrap
18876 msgid ""
18877 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18878 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18879 "\n"
18880 msgstr ""
18881
18882 #. type: =head2
18883 #: ../src/guestfs-structs.pod:16
18884 msgid "guestfs_lvm_pv"
18885 msgstr ""
18886
18887 #. type: verbatim
18888 #: ../src/guestfs-structs.pod:18
18889 #, no-wrap
18890 msgid ""
18891 " struct guestfs_lvm_pv {\n"
18892 "   char *pv_name;\n"
18893 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18894 "*/\n"
18895 "   char pv_uuid[32];\n"
18896 "   char *pv_fmt;\n"
18897 "   uint64_t pv_size;\n"
18898 "   uint64_t dev_size;\n"
18899 "   uint64_t pv_free;\n"
18900 "   uint64_t pv_used;\n"
18901 "   char *pv_attr;\n"
18902 "   int64_t pv_pe_count;\n"
18903 "   int64_t pv_pe_alloc_count;\n"
18904 "   char *pv_tags;\n"
18905 "   uint64_t pe_start;\n"
18906 "   int64_t pv_mda_count;\n"
18907 "   uint64_t pv_mda_free;\n"
18908 " };\n"
18909 " \n"
18910 msgstr ""
18911
18912 #. type: verbatim
18913 #: ../src/guestfs-structs.pod:36
18914 #, no-wrap
18915 msgid ""
18916 " struct guestfs_lvm_pv_list {\n"
18917 "   uint32_t len; /* Number of elements in list. */\n"
18918 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18919 " };\n"
18920 " \n"
18921 msgstr ""
18922
18923 #. type: verbatim
18924 #: ../src/guestfs-structs.pod:41
18925 #, no-wrap
18926 msgid ""
18927 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18928 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18929 "\n"
18930 msgstr ""
18931
18932 #. type: =head2
18933 #: ../src/guestfs-structs.pod:44
18934 msgid "guestfs_lvm_vg"
18935 msgstr ""
18936
18937 #. type: verbatim
18938 #: ../src/guestfs-structs.pod:46
18939 #, no-wrap
18940 msgid ""
18941 " struct guestfs_lvm_vg {\n"
18942 "   char *vg_name;\n"
18943 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18944 "*/\n"
18945 "   char vg_uuid[32];\n"
18946 "   char *vg_fmt;\n"
18947 "   char *vg_attr;\n"
18948 "   uint64_t vg_size;\n"
18949 "   uint64_t vg_free;\n"
18950 "   char *vg_sysid;\n"
18951 "   uint64_t vg_extent_size;\n"
18952 "   int64_t vg_extent_count;\n"
18953 "   int64_t vg_free_count;\n"
18954 "   int64_t max_lv;\n"
18955 "   int64_t max_pv;\n"
18956 "   int64_t pv_count;\n"
18957 "   int64_t lv_count;\n"
18958 "   int64_t snap_count;\n"
18959 "   int64_t vg_seqno;\n"
18960 "   char *vg_tags;\n"
18961 "   int64_t vg_mda_count;\n"
18962 "   uint64_t vg_mda_free;\n"
18963 " };\n"
18964 " \n"
18965 msgstr ""
18966
18967 #. type: verbatim
18968 #: ../src/guestfs-structs.pod:69
18969 #, no-wrap
18970 msgid ""
18971 " struct guestfs_lvm_vg_list {\n"
18972 "   uint32_t len; /* Number of elements in list. */\n"
18973 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18974 " };\n"
18975 " \n"
18976 msgstr ""
18977
18978 #. type: verbatim
18979 #: ../src/guestfs-structs.pod:74
18980 #, no-wrap
18981 msgid ""
18982 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18983 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18984 "\n"
18985 msgstr ""
18986
18987 #. type: =head2
18988 #: ../src/guestfs-structs.pod:77
18989 msgid "guestfs_lvm_lv"
18990 msgstr ""
18991
18992 #. type: verbatim
18993 #: ../src/guestfs-structs.pod:79
18994 #, no-wrap
18995 msgid ""
18996 " struct guestfs_lvm_lv {\n"
18997 "   char *lv_name;\n"
18998 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18999 "*/\n"
19000 "   char lv_uuid[32];\n"
19001 "   char *lv_attr;\n"
19002 "   int64_t lv_major;\n"
19003 "   int64_t lv_minor;\n"
19004 "   int64_t lv_kernel_major;\n"
19005 "   int64_t lv_kernel_minor;\n"
19006 "   uint64_t lv_size;\n"
19007 "   int64_t seg_count;\n"
19008 "   char *origin;\n"
19009 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19010 "   float snap_percent;\n"
19011 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19012 "   float copy_percent;\n"
19013 "   char *move_pv;\n"
19014 "   char *lv_tags;\n"
19015 "   char *mirror_log;\n"
19016 "   char *modules;\n"
19017 " };\n"
19018 " \n"
19019 msgstr ""
19020
19021 #. type: verbatim
19022 #: ../src/guestfs-structs.pod:101
19023 #, no-wrap
19024 msgid ""
19025 " struct guestfs_lvm_lv_list {\n"
19026 "   uint32_t len; /* Number of elements in list. */\n"
19027 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
19028 " };\n"
19029 " \n"
19030 msgstr ""
19031
19032 #. type: verbatim
19033 #: ../src/guestfs-structs.pod:106
19034 #, no-wrap
19035 msgid ""
19036 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
19037 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
19038 "\n"
19039 msgstr ""
19040
19041 #. type: verbatim
19042 #: ../src/guestfs-structs.pod:111
19043 #, no-wrap
19044 msgid ""
19045 " struct guestfs_stat {\n"
19046 "   int64_t dev;\n"
19047 "   int64_t ino;\n"
19048 "   int64_t mode;\n"
19049 "   int64_t nlink;\n"
19050 "   int64_t uid;\n"
19051 "   int64_t gid;\n"
19052 "   int64_t rdev;\n"
19053 "   int64_t size;\n"
19054 "   int64_t blksize;\n"
19055 "   int64_t blocks;\n"
19056 "   int64_t atime;\n"
19057 "   int64_t mtime;\n"
19058 "   int64_t ctime;\n"
19059 " };\n"
19060 " \n"
19061 msgstr ""
19062
19063 #. type: verbatim
19064 #: ../src/guestfs-structs.pod:127
19065 #, no-wrap
19066 msgid ""
19067 " struct guestfs_stat_list {\n"
19068 "   uint32_t len; /* Number of elements in list. */\n"
19069 "   struct guestfs_stat *val; /* Elements. */\n"
19070 " };\n"
19071 " \n"
19072 msgstr ""
19073
19074 #. type: verbatim
19075 #: ../src/guestfs-structs.pod:132
19076 #, no-wrap
19077 msgid ""
19078 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
19079 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
19080 "\n"
19081 msgstr ""
19082
19083 #. type: verbatim
19084 #: ../src/guestfs-structs.pod:137
19085 #, no-wrap
19086 msgid ""
19087 " struct guestfs_statvfs {\n"
19088 "   int64_t bsize;\n"
19089 "   int64_t frsize;\n"
19090 "   int64_t blocks;\n"
19091 "   int64_t bfree;\n"
19092 "   int64_t bavail;\n"
19093 "   int64_t files;\n"
19094 "   int64_t ffree;\n"
19095 "   int64_t favail;\n"
19096 "   int64_t fsid;\n"
19097 "   int64_t flag;\n"
19098 "   int64_t namemax;\n"
19099 " };\n"
19100 " \n"
19101 msgstr ""
19102
19103 #. type: verbatim
19104 #: ../src/guestfs-structs.pod:151
19105 #, no-wrap
19106 msgid ""
19107 " struct guestfs_statvfs_list {\n"
19108 "   uint32_t len; /* Number of elements in list. */\n"
19109 "   struct guestfs_statvfs *val; /* Elements. */\n"
19110 " };\n"
19111 " \n"
19112 msgstr ""
19113
19114 #. type: verbatim
19115 #: ../src/guestfs-structs.pod:156
19116 #, no-wrap
19117 msgid ""
19118 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19119 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19120 "\n"
19121 msgstr ""
19122
19123 #. type: =head2
19124 #: ../src/guestfs-structs.pod:159
19125 msgid "guestfs_dirent"
19126 msgstr ""
19127
19128 #. type: verbatim
19129 #: ../src/guestfs-structs.pod:161
19130 #, no-wrap
19131 msgid ""
19132 " struct guestfs_dirent {\n"
19133 "   int64_t ino;\n"
19134 "   char ftyp;\n"
19135 "   char *name;\n"
19136 " };\n"
19137 " \n"
19138 msgstr ""
19139
19140 #. type: verbatim
19141 #: ../src/guestfs-structs.pod:167
19142 #, no-wrap
19143 msgid ""
19144 " struct guestfs_dirent_list {\n"
19145 "   uint32_t len; /* Number of elements in list. */\n"
19146 "   struct guestfs_dirent *val; /* Elements. */\n"
19147 " };\n"
19148 " \n"
19149 msgstr ""
19150
19151 #. type: verbatim
19152 #: ../src/guestfs-structs.pod:172
19153 #, no-wrap
19154 msgid ""
19155 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19156 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19157 "\n"
19158 msgstr ""
19159
19160 #. type: verbatim
19161 #: ../src/guestfs-structs.pod:177
19162 #, no-wrap
19163 msgid ""
19164 " struct guestfs_version {\n"
19165 "   int64_t major;\n"
19166 "   int64_t minor;\n"
19167 "   int64_t release;\n"
19168 "   char *extra;\n"
19169 " };\n"
19170 " \n"
19171 msgstr ""
19172
19173 #. type: verbatim
19174 #: ../src/guestfs-structs.pod:184
19175 #, no-wrap
19176 msgid ""
19177 " struct guestfs_version_list {\n"
19178 "   uint32_t len; /* Number of elements in list. */\n"
19179 "   struct guestfs_version *val; /* Elements. */\n"
19180 " };\n"
19181 " \n"
19182 msgstr ""
19183
19184 #. type: verbatim
19185 #: ../src/guestfs-structs.pod:189
19186 #, no-wrap
19187 msgid ""
19188 " void guestfs_free_version (struct guestfs_free_version *);\n"
19189 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19190 "\n"
19191 msgstr ""
19192
19193 #. type: =head2
19194 #: ../src/guestfs-structs.pod:192
19195 msgid "guestfs_xattr"
19196 msgstr ""
19197
19198 #. type: verbatim
19199 #: ../src/guestfs-structs.pod:194
19200 #, no-wrap
19201 msgid ""
19202 " struct guestfs_xattr {\n"
19203 "   char *attrname;\n"
19204 "   /* The next two fields describe a byte array. */\n"
19205 "   uint32_t attrval_len;\n"
19206 "   char *attrval;\n"
19207 " };\n"
19208 " \n"
19209 msgstr ""
19210
19211 #. type: verbatim
19212 #: ../src/guestfs-structs.pod:201
19213 #, no-wrap
19214 msgid ""
19215 " struct guestfs_xattr_list {\n"
19216 "   uint32_t len; /* Number of elements in list. */\n"
19217 "   struct guestfs_xattr *val; /* Elements. */\n"
19218 " };\n"
19219 " \n"
19220 msgstr ""
19221
19222 #. type: verbatim
19223 #: ../src/guestfs-structs.pod:206
19224 #, no-wrap
19225 msgid ""
19226 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19227 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19228 "\n"
19229 msgstr ""
19230
19231 #. type: =head2
19232 #: ../src/guestfs-structs.pod:209
19233 msgid "guestfs_inotify_event"
19234 msgstr ""
19235
19236 #. type: verbatim
19237 #: ../src/guestfs-structs.pod:211
19238 #, no-wrap
19239 msgid ""
19240 " struct guestfs_inotify_event {\n"
19241 "   int64_t in_wd;\n"
19242 "   uint32_t in_mask;\n"
19243 "   uint32_t in_cookie;\n"
19244 "   char *in_name;\n"
19245 " };\n"
19246 " \n"
19247 msgstr ""
19248
19249 #. type: verbatim
19250 #: ../src/guestfs-structs.pod:218
19251 #, no-wrap
19252 msgid ""
19253 " struct guestfs_inotify_event_list {\n"
19254 "   uint32_t len; /* Number of elements in list. */\n"
19255 "   struct guestfs_inotify_event *val; /* Elements. */\n"
19256 " };\n"
19257 " \n"
19258 msgstr ""
19259
19260 #. type: verbatim
19261 #: ../src/guestfs-structs.pod:223
19262 #, no-wrap
19263 msgid ""
19264 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
19265 " void guestfs_free_inotify_event_list (struct "
19266 "guestfs_free_inotify_event_list *);\n"
19267 "\n"
19268 msgstr ""
19269
19270 #. type: =head2
19271 #: ../src/guestfs-structs.pod:226
19272 msgid "guestfs_partition"
19273 msgstr ""
19274
19275 #. type: verbatim
19276 #: ../src/guestfs-structs.pod:228
19277 #, no-wrap
19278 msgid ""
19279 " struct guestfs_partition {\n"
19280 "   int32_t part_num;\n"
19281 "   uint64_t part_start;\n"
19282 "   uint64_t part_end;\n"
19283 "   uint64_t part_size;\n"
19284 " };\n"
19285 " \n"
19286 msgstr ""
19287
19288 #. type: verbatim
19289 #: ../src/guestfs-structs.pod:235
19290 #, no-wrap
19291 msgid ""
19292 " struct guestfs_partition_list {\n"
19293 "   uint32_t len; /* Number of elements in list. */\n"
19294 "   struct guestfs_partition *val; /* Elements. */\n"
19295 " };\n"
19296 " \n"
19297 msgstr ""
19298
19299 #. type: verbatim
19300 #: ../src/guestfs-structs.pod:240
19301 #, no-wrap
19302 msgid ""
19303 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19304 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19305 "\n"
19306 msgstr ""
19307
19308 #. type: =head2
19309 #: ../src/guestfs-structs.pod:243
19310 msgid "guestfs_application"
19311 msgstr ""
19312
19313 #. type: verbatim
19314 #: ../src/guestfs-structs.pod:245
19315 #, no-wrap
19316 msgid ""
19317 " struct guestfs_application {\n"
19318 "   char *app_name;\n"
19319 "   char *app_display_name;\n"
19320 "   int32_t app_epoch;\n"
19321 "   char *app_version;\n"
19322 "   char *app_release;\n"
19323 "   char *app_install_path;\n"
19324 "   char *app_trans_path;\n"
19325 "   char *app_publisher;\n"
19326 "   char *app_url;\n"
19327 "   char *app_source_package;\n"
19328 "   char *app_summary;\n"
19329 "   char *app_description;\n"
19330 " };\n"
19331 " \n"
19332 msgstr ""
19333
19334 #. type: verbatim
19335 #: ../src/guestfs-structs.pod:260
19336 #, no-wrap
19337 msgid ""
19338 " struct guestfs_application_list {\n"
19339 "   uint32_t len; /* Number of elements in list. */\n"
19340 "   struct guestfs_application *val; /* Elements. */\n"
19341 " };\n"
19342 " \n"
19343 msgstr ""
19344
19345 #. type: verbatim
19346 #: ../src/guestfs-structs.pod:265
19347 #, no-wrap
19348 msgid ""
19349 " void guestfs_free_application (struct guestfs_free_application *);\n"
19350 " void guestfs_free_application_list (struct guestfs_free_application_list "
19351 "*);\n"
19352 "\n"
19353 msgstr ""
19354
19355 #. type: textblock
19356 #: ../fish/guestfish.pod:5
19357 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19358 msgstr ""
19359
19360 #. type: verbatim
19361 #: ../fish/guestfish.pod:9
19362 #, no-wrap
19363 msgid ""
19364 " guestfish [--options] [commands]\n"
19365 "\n"
19366 msgstr ""
19367
19368 #. type: verbatim
19369 #: ../fish/guestfish.pod:11
19370 #, no-wrap
19371 msgid ""
19372 " guestfish\n"
19373 "\n"
19374 msgstr ""
19375
19376 #. type: verbatim
19377 #: ../fish/guestfish.pod:13
19378 #, no-wrap
19379 msgid ""
19380 " guestfish [--ro|--rw] -a disk.img\n"
19381 "\n"
19382 msgstr ""
19383
19384 #. type: verbatim
19385 #: ../fish/guestfish.pod:15
19386 #, no-wrap
19387 msgid ""
19388 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19389 "\n"
19390 msgstr ""
19391
19392 #. type: verbatim
19393 #: ../fish/guestfish.pod:17
19394 #, no-wrap
19395 msgid ""
19396 " guestfish -d libvirt-domain\n"
19397 "\n"
19398 msgstr ""
19399
19400 #. type: verbatim
19401 #: ../fish/guestfish.pod:19
19402 #, no-wrap
19403 msgid ""
19404 " guestfish [--ro|--rw] -a disk.img -i\n"
19405 "\n"
19406 msgstr ""
19407
19408 #. type: verbatim
19409 #: ../fish/guestfish.pod:21
19410 #, no-wrap
19411 msgid ""
19412 " guestfish -d libvirt-domain -i\n"
19413 "\n"
19414 msgstr ""
19415
19416 #. type: =head1
19417 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19418 msgid "WARNING"
19419 msgstr ""
19420
19421 #. type: textblock
19422 #: ../fish/guestfish.pod:25
19423 msgid ""
19424 "Using guestfish in read/write mode on live virtual machines can be "
19425 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19426 "option to use guestfish safely if the disk image or virtual machine might be "
19427 "live."
19428 msgstr ""
19429
19430 #. type: textblock
19431 #: ../fish/guestfish.pod:32
19432 msgid ""
19433 "Guestfish is a shell and command-line tool for examining and modifying "
19434 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19435 "functionality of the guestfs API, see L<guestfs(3)>."
19436 msgstr ""
19437
19438 #. type: textblock
19439 #: ../fish/guestfish.pod:36
19440 msgid ""
19441 "Guestfish gives you structured access to the libguestfs API, from shell "
19442 "scripts or the command line or interactively.  If you want to rescue a "
19443 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19444 "command."
19445 msgstr ""
19446
19447 #. type: =head1
19448 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949 ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
19449 msgid "EXAMPLES"
19450 msgstr ""
19451
19452 #. type: =head2
19453 #: ../fish/guestfish.pod:43
19454 msgid "As an interactive shell"
19455 msgstr ""
19456
19457 #. type: verbatim
19458 #: ../fish/guestfish.pod:45
19459 #, no-wrap
19460 msgid ""
19461 " $ guestfish\n"
19462 " \n"
19463 msgstr ""
19464
19465 #. type: verbatim
19466 #: ../fish/guestfish.pod:47
19467 #, no-wrap
19468 msgid ""
19469 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19470 " editing virtual machine filesystems.\n"
19471 " \n"
19472 msgstr ""
19473
19474 #. type: verbatim
19475 #: ../fish/guestfish.pod:50
19476 #, no-wrap
19477 msgid ""
19478 " Type: 'help' for a list of commands\n"
19479 "       'man' to read the manual\n"
19480 "       'quit' to quit the shell\n"
19481 " \n"
19482 msgstr ""
19483
19484 #. type: verbatim
19485 #: ../fish/guestfish.pod:54
19486 #, no-wrap
19487 msgid ""
19488 " ><fs> add-ro disk.img\n"
19489 " ><fs> run\n"
19490 " ><fs> list-filesystems\n"
19491 " /dev/sda1: ext4\n"
19492 " /dev/vg_guest/lv_root: ext4\n"
19493 " /dev/vg_guest/lv_swap: swap\n"
19494 " ><fs> mount /dev/vg_guest/lv_root /\n"
19495 " ><fs> cat /etc/fstab\n"
19496 " # /etc/fstab\n"
19497 " # Created by anaconda\n"
19498 " [...]\n"
19499 " ><fs> exit\n"
19500 "\n"
19501 msgstr ""
19502
19503 #. type: =head2
19504 #: ../fish/guestfish.pod:67
19505 msgid "From shell scripts"
19506 msgstr ""
19507
19508 #. type: textblock
19509 #: ../fish/guestfish.pod:69
19510 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19511 msgstr ""
19512
19513 #. type: verbatim
19514 #: ../fish/guestfish.pod:71
19515 #, no-wrap
19516 msgid ""
19517 " guestfish <<_EOF_\n"
19518 " add disk.img\n"
19519 " run\n"
19520 " mount /dev/vg_guest/lv_root /\n"
19521 " write /etc/motd \"Welcome, new users\"\n"
19522 " _EOF_\n"
19523 "\n"
19524 msgstr ""
19525
19526 #. type: textblock
19527 #: ../fish/guestfish.pod:78
19528 msgid "List the LVM logical volumes in a disk image:"
19529 msgstr ""
19530
19531 #. type: verbatim
19532 #: ../fish/guestfish.pod:80
19533 #, no-wrap
19534 msgid ""
19535 " guestfish -a disk.img --ro <<_EOF_\n"
19536 " run\n"
19537 " lvs\n"
19538 " _EOF_\n"
19539 "\n"
19540 msgstr ""
19541
19542 #. type: textblock
19543 #: ../fish/guestfish.pod:85
19544 msgid "List all the filesystems in a disk image:"
19545 msgstr ""
19546
19547 #. type: verbatim
19548 #: ../fish/guestfish.pod:87
19549 #, no-wrap
19550 msgid ""
19551 " guestfish -a disk.img --ro <<_EOF_\n"
19552 " run\n"
19553 " list-filesystems\n"
19554 " _EOF_\n"
19555 "\n"
19556 msgstr ""
19557
19558 #. type: =head2
19559 #: ../fish/guestfish.pod:92
19560 msgid "On one command line"
19561 msgstr ""
19562
19563 #. type: textblock
19564 #: ../fish/guestfish.pod:94
19565 msgid "Update C</etc/resolv.conf> in a guest:"
19566 msgstr ""
19567
19568 #. type: verbatim
19569 #: ../fish/guestfish.pod:96
19570 #, no-wrap
19571 msgid ""
19572 " guestfish \\\n"
19573 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19574 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19575 "\n"
19576 msgstr ""
19577
19578 #. type: textblock
19579 #: ../fish/guestfish.pod:100
19580 msgid "Edit C</boot/grub/grub.conf> interactively:"
19581 msgstr ""
19582
19583 #. type: verbatim
19584 #: ../fish/guestfish.pod:102
19585 #, no-wrap
19586 msgid ""
19587 " guestfish --rw --add disk.img \\\n"
19588 "   --mount /dev/vg_guest/lv_root \\\n"
19589 "   --mount /dev/sda1:/boot \\\n"
19590 "   edit /boot/grub/grub.conf\n"
19591 "\n"
19592 msgstr ""
19593
19594 #. type: =head2
19595 #: ../fish/guestfish.pod:107
19596 msgid "Mount disks automatically"
19597 msgstr ""
19598
19599 #. type: textblock
19600 #: ../fish/guestfish.pod:109
19601 msgid ""
19602 "Use the I<-i> option to automatically mount the disks from a virtual "
19603 "machine:"
19604 msgstr ""
19605
19606 #. type: verbatim
19607 #: ../fish/guestfish.pod:112
19608 #, no-wrap
19609 msgid ""
19610 " guestfish --ro -a disk.img -i cat /etc/group\n"
19611 "\n"
19612 msgstr ""
19613
19614 #. type: verbatim
19615 #: ../fish/guestfish.pod:114
19616 #, no-wrap
19617 msgid ""
19618 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19619 "\n"
19620 msgstr ""
19621
19622 #. type: textblock
19623 #: ../fish/guestfish.pod:116
19624 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19625 msgstr ""
19626
19627 #. type: verbatim
19628 #: ../fish/guestfish.pod:118
19629 #, no-wrap
19630 msgid ""
19631 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19632 "\n"
19633 msgstr ""
19634
19635 #. type: =head2
19636 #: ../fish/guestfish.pod:120
19637 msgid "As a script interpreter"
19638 msgstr ""
19639
19640 #. type: textblock
19641 #: ../fish/guestfish.pod:122
19642 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19643 msgstr ""
19644
19645 #. type: verbatim
19646 #: ../fish/guestfish.pod:124
19647 #, no-wrap
19648 msgid ""
19649 " #!/usr/bin/guestfish -f\n"
19650 " sparse test1.img 100M\n"
19651 " run\n"
19652 " part-disk /dev/sda mbr\n"
19653 " mkfs ext2 /dev/sda1\n"
19654 "\n"
19655 msgstr ""
19656
19657 #. type: =head2
19658 #: ../fish/guestfish.pod:130
19659 msgid "Start with a prepared disk"
19660 msgstr ""
19661
19662 #. type: textblock
19663 #: ../fish/guestfish.pod:132
19664 msgid ""
19665 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19666 "single ext2-formatted partition:"
19667 msgstr ""
19668
19669 #. type: verbatim
19670 #: ../fish/guestfish.pod:135
19671 #, no-wrap
19672 msgid ""
19673 " guestfish -N fs\n"
19674 "\n"
19675 msgstr ""
19676
19677 #. type: textblock
19678 #: ../fish/guestfish.pod:137
19679 msgid "To list what is available do:"
19680 msgstr ""
19681
19682 #. type: verbatim
19683 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
19684 #, no-wrap
19685 msgid ""
19686 " guestfish -N help | less\n"
19687 "\n"
19688 msgstr ""
19689
19690 #. type: =head2
19691 #: ../fish/guestfish.pod:141
19692 msgid "Remote control"
19693 msgstr ""
19694
19695 #. type: verbatim
19696 #: ../fish/guestfish.pod:143
19697 #, no-wrap
19698 msgid ""
19699 " eval \"`guestfish --listen`\"\n"
19700 " guestfish --remote add-ro disk.img\n"
19701 " guestfish --remote run\n"
19702 " guestfish --remote lvs\n"
19703 "\n"
19704 msgstr ""
19705
19706 #. type: =head1
19707 #: ../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
19708 msgid "OPTIONS"
19709 msgstr ""
19710
19711 #. type: =item
19712 #: ../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
19713 msgid "B<--help>"
19714 msgstr ""
19715
19716 #. type: textblock
19717 #: ../fish/guestfish.pod:154
19718 msgid "Displays general help on options."
19719 msgstr ""
19720
19721 #. type: =item
19722 #: ../fish/guestfish.pod:156
19723 msgid "B<-h>"
19724 msgstr ""
19725
19726 #. type: =item
19727 #: ../fish/guestfish.pod:158
19728 msgid "B<--cmd-help>"
19729 msgstr ""
19730
19731 #. type: textblock
19732 #: ../fish/guestfish.pod:160
19733 msgid "Lists all available guestfish commands."
19734 msgstr ""
19735
19736 #. type: =item
19737 #: ../fish/guestfish.pod:162
19738 msgid "B<-h cmd>"
19739 msgstr ""
19740
19741 #. type: =item
19742 #: ../fish/guestfish.pod:164
19743 msgid "B<--cmd-help cmd>"
19744 msgstr ""
19745
19746 #. type: textblock
19747 #: ../fish/guestfish.pod:166
19748 msgid "Displays detailed help on a single command C<cmd>."
19749 msgstr ""
19750
19751 #. type: =item
19752 #: ../fish/guestfish.pod:168
19753 msgid "B<-a image>"
19754 msgstr ""
19755
19756 #. type: =item
19757 #: ../fish/guestfish.pod:170
19758 msgid "B<--add image>"
19759 msgstr ""
19760
19761 #. type: textblock
19762 #: ../fish/guestfish.pod:172
19763 msgid "Add a block device or virtual machine image to the shell."
19764 msgstr ""
19765
19766 #. type: textblock
19767 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
19768 msgid ""
19769 "The format of the disk image is auto-detected.  To override this and force a "
19770 "particular format use the I<--format=..> option."
19771 msgstr ""
19772
19773 #. type: textblock
19774 #: ../fish/guestfish.pod:177
19775 msgid ""
19776 "Using this flag is mostly equivalent to using the C<add> command, with "
19777 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19778 "the I<--format=...> flag was given."
19779 msgstr ""
19780
19781 #. type: =item
19782 #: ../fish/guestfish.pod:181
19783 msgid "B<-c URI>"
19784 msgstr ""
19785
19786 #. type: =item
19787 #: ../fish/guestfish.pod:183
19788 msgid "B<--connect URI>"
19789 msgstr ""
19790
19791 #. type: textblock
19792 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
19793 msgid ""
19794 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19795 "URI to use.  The default is to use the default libvirt connection."
19796 msgstr ""
19797
19798 #. type: =item
19799 #: ../fish/guestfish.pod:189
19800 msgid "B<--csh>"
19801 msgstr ""
19802
19803 #. type: textblock
19804 #: ../fish/guestfish.pod:191
19805 msgid ""
19806 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19807 "section L</REMOTE CONTROL AND CSH> below."
19808 msgstr ""
19809
19810 #. type: =item
19811 #: ../fish/guestfish.pod:194
19812 msgid "B<-d libvirt-domain>"
19813 msgstr ""
19814
19815 #. type: =item
19816 #: ../fish/guestfish.pod:196
19817 msgid "B<--domain libvirt-domain>"
19818 msgstr ""
19819
19820 #. type: textblock
19821 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
19822 msgid ""
19823 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19824 "used, then any libvirt domain can be used.  However in write mode, only "
19825 "libvirt domains which are shut down can be named here."
19826 msgstr ""
19827
19828 #. type: textblock
19829 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
19830 msgid "Domain UUIDs can be used instead of names."
19831 msgstr ""
19832
19833 #. type: textblock
19834 #: ../fish/guestfish.pod:204
19835 msgid ""
19836 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19837 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19838 "if the I<--format:...> flag was given."
19839 msgstr ""
19840
19841 #. type: =item
19842 #: ../fish/guestfish.pod:208
19843 msgid "B<-D>"
19844 msgstr ""
19845
19846 #. type: =item
19847 #: ../fish/guestfish.pod:210
19848 msgid "B<--no-dest-paths>"
19849 msgstr ""
19850
19851 #. type: textblock
19852 #: ../fish/guestfish.pod:212
19853 msgid ""
19854 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19855 "to hit the tab key to complete paths on the guest filesystem, but this "
19856 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19857 "allow this feature to be disabled."
19858 msgstr ""
19859
19860 #. type: =item
19861 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
19862 msgid "B<--echo-keys>"
19863 msgstr ""
19864
19865 #. type: textblock
19866 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
19867 msgid ""
19868 "When prompting for keys and passphrases, guestfish normally turns echoing "
19869 "off so you cannot see what you are typing.  If you are not worried about "
19870 "Tempest attacks and there is no one else in the room you can specify this "
19871 "flag to see what you are typing."
19872 msgstr ""
19873
19874 #. type: =item
19875 #: ../fish/guestfish.pod:224
19876 msgid "B<-f file>"
19877 msgstr ""
19878
19879 #. type: =item
19880 #: ../fish/guestfish.pod:226
19881 msgid "B<--file file>"
19882 msgstr ""
19883
19884 #. type: textblock
19885 #: ../fish/guestfish.pod:228
19886 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19887 msgstr ""
19888
19889 #. type: verbatim
19890 #: ../fish/guestfish.pod:231
19891 #, no-wrap
19892 msgid ""
19893 " #!/usr/bin/guestfish -f\n"
19894 "\n"
19895 msgstr ""
19896
19897 #. type: =item
19898 #: ../fish/guestfish.pod:233
19899 msgid "B<--format=raw|qcow2|..>"
19900 msgstr ""
19901
19902 #. type: =item
19903 #: ../fish/guestfish.pod:235
19904 msgid "B<--format>"
19905 msgstr ""
19906
19907 #. type: textblock
19908 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
19909 msgid ""
19910 "The default for the I<-a> option is to auto-detect the format of the disk "
19911 "image.  Using this forces the disk format for I<-a> options which follow on "
19912 "the command line.  Using I<--format> with no argument switches back to "
19913 "auto-detection for subsequent I<-a> options."
19914 msgstr ""
19915
19916 #. type: verbatim
19917 #: ../fish/guestfish.pod:244
19918 #, no-wrap
19919 msgid ""
19920 " guestfish --format=raw -a disk.img\n"
19921 "\n"
19922 msgstr ""
19923
19924 #. type: textblock
19925 #: ../fish/guestfish.pod:246
19926 msgid "forces raw format (no auto-detection) for C<disk.img>."
19927 msgstr ""
19928
19929 #. type: verbatim
19930 #: ../fish/guestfish.pod:248
19931 #, no-wrap
19932 msgid ""
19933 " guestfish --format=raw -a disk.img --format -a another.img\n"
19934 "\n"
19935 msgstr ""
19936
19937 #. type: textblock
19938 #: ../fish/guestfish.pod:250
19939 msgid ""
19940 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
19941 "auto-detection for C<another.img>."
19942 msgstr ""
19943
19944 #. type: textblock
19945 #: ../fish/guestfish.pod:253
19946 msgid ""
19947 "If you have untrusted raw-format guest disk images, you should use this "
19948 "option to specify the disk format.  This avoids a possible security problem "
19949 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19950 msgstr ""
19951
19952 #. type: =item
19953 #: ../fish/guestfish.pod:258
19954 msgid "B<-i>"
19955 msgstr ""
19956
19957 #. type: =item
19958 #: ../fish/guestfish.pod:260
19959 msgid "B<--inspector>"
19960 msgstr ""
19961
19962 #. type: textblock
19963 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
19964 msgid ""
19965 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19966 "system and mount filesystems as they would be mounted on the real virtual "
19967 "machine."
19968 msgstr ""
19969
19970 #. type: textblock
19971 #: ../fish/guestfish.pod:266
19972 msgid "Typical usage is either:"
19973 msgstr ""
19974
19975 #. type: verbatim
19976 #: ../fish/guestfish.pod:268
19977 #, no-wrap
19978 msgid ""
19979 " guestfish -d myguest -i\n"
19980 "\n"
19981 msgstr ""
19982
19983 #. type: textblock
19984 #: ../fish/guestfish.pod:270
19985 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19986 msgstr ""
19987
19988 #. type: verbatim
19989 #: ../fish/guestfish.pod:272
19990 #, no-wrap
19991 msgid ""
19992 " guestfish --ro -d myguest -i\n"
19993 "\n"
19994 msgstr ""
19995
19996 #. type: textblock
19997 #: ../fish/guestfish.pod:274
19998 msgid "(for active domains, readonly), or specify the block device directly:"
19999 msgstr ""
20000
20001 #. type: verbatim
20002 #: ../fish/guestfish.pod:276
20003 #, no-wrap
20004 msgid ""
20005 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
20006 "\n"
20007 msgstr ""
20008
20009 #. type: textblock
20010 #: ../fish/guestfish.pod:278
20011 msgid ""
20012 "Note that the command line syntax changed slightly over older versions of "
20013 "guestfish.  You can still use the old syntax:"
20014 msgstr ""
20015
20016 #. type: verbatim
20017 #: ../fish/guestfish.pod:281
20018 #, no-wrap
20019 msgid ""
20020 " guestfish [--ro] -i disk.img\n"
20021 "\n"
20022 msgstr ""
20023
20024 #. type: verbatim
20025 #: ../fish/guestfish.pod:283
20026 #, no-wrap
20027 msgid ""
20028 " guestfish [--ro] -i libvirt-domain\n"
20029 "\n"
20030 msgstr ""
20031
20032 #. type: textblock
20033 #: ../fish/guestfish.pod:285
20034 msgid ""
20035 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
20036 "then using other commands to mount the filesystems that were found."
20037 msgstr ""
20038
20039 #. type: =item
20040 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
20041 msgid "B<--keys-from-stdin>"
20042 msgstr ""
20043
20044 #. type: textblock
20045 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
20046 msgid ""
20047 "Read key or passphrase parameters from stdin.  The default is to try to read "
20048 "passphrases from the user by opening C</dev/tty>."
20049 msgstr ""
20050
20051 #. type: =item
20052 #: ../fish/guestfish.pod:294
20053 msgid "B<--listen>"
20054 msgstr ""
20055
20056 #. type: textblock
20057 #: ../fish/guestfish.pod:296
20058 msgid ""
20059 "Fork into the background and listen for remote commands.  See section "
20060 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
20061 msgstr ""
20062
20063 #. type: =item
20064 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
20065 msgid "B<--live>"
20066 msgstr ""
20067
20068 #. type: textblock
20069 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
20070 msgid ""
20071 "Connect to a live virtual machine.  (Experimental, see "
20072 "L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
20073 msgstr ""
20074
20075 #. type: =item
20076 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
20077 msgid "B<-m dev[:mountpoint[:options]]>"
20078 msgstr ""
20079
20080 #. type: =item
20081 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
20082 msgid "B<--mount dev[:mountpoint[:options]]>"
20083 msgstr ""
20084
20085 #. type: textblock
20086 #: ../fish/guestfish.pod:308
20087 msgid "Mount the named partition or logical volume on the given mountpoint."
20088 msgstr ""
20089
20090 #. type: textblock
20091 #: ../fish/guestfish.pod:310
20092 msgid "If the mountpoint is omitted, it defaults to C</>."
20093 msgstr ""
20094
20095 #. type: textblock
20096 #: ../fish/guestfish.pod:312
20097 msgid "You have to mount something on C</> before most commands will work."
20098 msgstr ""
20099
20100 #. type: textblock
20101 #: ../fish/guestfish.pod:314
20102 msgid ""
20103 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20104 "launched."
20105 msgstr ""
20106
20107 #. type: textblock
20108 #: ../fish/guestfish.pod:317
20109 msgid ""
20110 "If you don't know what filesystems a disk image contains, you can either run "
20111 "guestfish without this option, then list the partitions, filesystems and LVs "
20112 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20113 "commands), or you can use the L<virt-filesystems(1)> program."
20114 msgstr ""
20115
20116 #. type: textblock
20117 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
20118 msgid ""
20119 "The third (and rarely used) part of the mount parameter is the list of mount "
20120 "options used to mount the underlying filesystem.  If this is not given, then "
20121 "the mount options are either the empty string or C<ro> (the latter if the "
20122 "I<--ro> flag is used).  By specifying the mount options, you override this "
20123 "default choice.  Probably the only time you would use this is to enable ACLs "
20124 "and/or extended attributes if the filesystem can support them:"
20125 msgstr ""
20126
20127 #. type: verbatim
20128 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
20129 #, no-wrap
20130 msgid ""
20131 " -m /dev/sda1:/:acl,user_xattr\n"
20132 "\n"
20133 msgstr ""
20134
20135 #. type: textblock
20136 #: ../fish/guestfish.pod:333
20137 msgid "Using this flag is equivalent to using the C<mount-options> command."
20138 msgstr ""
20139
20140 #. type: =item
20141 #: ../fish/guestfish.pod:335
20142 msgid "B<-n>"
20143 msgstr ""
20144
20145 #. type: =item
20146 #: ../fish/guestfish.pod:337
20147 msgid "B<--no-sync>"
20148 msgstr ""
20149
20150 #. type: textblock
20151 #: ../fish/guestfish.pod:339
20152 msgid ""
20153 "Disable autosync.  This is enabled by default.  See the discussion of "
20154 "autosync in the L<guestfs(3)> manpage."
20155 msgstr ""
20156
20157 #. type: =item
20158 #: ../fish/guestfish.pod:342
20159 msgid "B<-N type>"
20160 msgstr ""
20161
20162 #. type: =item
20163 #: ../fish/guestfish.pod:344
20164 msgid "B<--new type>"
20165 msgstr ""
20166
20167 #. type: =item
20168 #: ../fish/guestfish.pod:346
20169 msgid "B<-N help>"
20170 msgstr ""
20171
20172 #. type: textblock
20173 #: ../fish/guestfish.pod:348
20174 msgid ""
20175 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
20176 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20177 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20178 "IMAGES> below."
20179 msgstr ""
20180
20181 #. type: =item
20182 #: ../fish/guestfish.pod:353
20183 msgid "B<--progress-bars>"
20184 msgstr ""
20185
20186 #. type: textblock
20187 #: ../fish/guestfish.pod:355
20188 msgid "Enable progress bars, even when guestfish is used non-interactively."
20189 msgstr ""
20190
20191 #. type: textblock
20192 #: ../fish/guestfish.pod:357
20193 msgid ""
20194 "Progress bars are enabled by default when guestfish is used as an "
20195 "interactive shell."
20196 msgstr ""
20197
20198 #. type: =item
20199 #: ../fish/guestfish.pod:360
20200 msgid "B<--no-progress-bars>"
20201 msgstr ""
20202
20203 #. type: textblock
20204 #: ../fish/guestfish.pod:362
20205 msgid "Disable progress bars."
20206 msgstr ""
20207
20208 #. type: =item
20209 #: ../fish/guestfish.pod:364
20210 msgid "B<--remote[=pid]>"
20211 msgstr ""
20212
20213 #. type: textblock
20214 #: ../fish/guestfish.pod:366
20215 msgid ""
20216 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20217 "CONTROL GUESTFISH OVER A SOCKET> below."
20218 msgstr ""
20219
20220 #. type: =item
20221 #: ../fish/guestfish.pod:369
20222 msgid "B<-r>"
20223 msgstr ""
20224
20225 #. type: =item
20226 #: ../fish/guestfish.pod:371
20227 msgid "B<--ro>"
20228 msgstr ""
20229
20230 #. type: textblock
20231 #: ../fish/guestfish.pod:373
20232 msgid ""
20233 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20234 "mounts are done read-only."
20235 msgstr ""
20236
20237 #. type: textblock
20238 #: ../fish/guestfish.pod:376
20239 msgid ""
20240 "The option must always be used if the disk image or virtual machine might be "
20241 "running, and is generally recommended in cases where you don't need write "
20242 "access to the disk."
20243 msgstr ""
20244
20245 #. type: textblock
20246 #: ../fish/guestfish.pod:380
20247 msgid ""
20248 "Note that prepared disk images created with I<-N> are not affected by this "
20249 "option.  Also commands like C<add> are not affected - you have to specify "
20250 "the C<readonly:true> option explicitly if you need it."
20251 msgstr ""
20252
20253 #. type: textblock
20254 #: ../fish/guestfish.pod:384
20255 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
20256 msgstr ""
20257
20258 #. type: =item
20259 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
20260 msgid "B<--selinux>"
20261 msgstr ""
20262
20263 #. type: textblock
20264 #: ../fish/guestfish.pod:388
20265 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
20266 msgstr ""
20267
20268 #. type: =item
20269 #: ../fish/guestfish.pod:390
20270 msgid "B<-v>"
20271 msgstr ""
20272
20273 #. type: =item
20274 #: ../fish/guestfish.pod:392
20275 msgid "B<--verbose>"
20276 msgstr ""
20277
20278 #. type: textblock
20279 #: ../fish/guestfish.pod:394
20280 msgid ""
20281 "Enable very verbose messages.  This is particularly useful if you find a "
20282 "bug."
20283 msgstr ""
20284
20285 #. type: =item
20286 #: ../fish/guestfish.pod:397
20287 msgid "B<-V>"
20288 msgstr ""
20289
20290 #. type: =item
20291 #: ../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
20292 msgid "B<--version>"
20293 msgstr ""
20294
20295 #. type: textblock
20296 #: ../fish/guestfish.pod:401
20297 msgid "Display the guestfish / libguestfs version number and exit."
20298 msgstr ""
20299
20300 #. type: =item
20301 #: ../fish/guestfish.pod:403
20302 msgid "B<-w>"
20303 msgstr ""
20304
20305 #. type: =item
20306 #: ../fish/guestfish.pod:405
20307 msgid "B<--rw>"
20308 msgstr ""
20309
20310 #. type: textblock
20311 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
20312 msgid ""
20313 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20314 "mounts are done read-write."
20315 msgstr ""
20316
20317 #. type: textblock
20318 #: ../fish/guestfish.pod:410
20319 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20320 msgstr ""
20321
20322 #. type: =item
20323 #: ../fish/guestfish.pod:412
20324 msgid "B<-x>"
20325 msgstr ""
20326
20327 #. type: textblock
20328 #: ../fish/guestfish.pod:414
20329 msgid "Echo each command before executing it."
20330 msgstr ""
20331
20332 #. type: =head1
20333 #: ../fish/guestfish.pod:418
20334 msgid "COMMANDS ON COMMAND LINE"
20335 msgstr ""
20336
20337 #. type: textblock
20338 #: ../fish/guestfish.pod:420
20339 msgid "Any additional (non-option) arguments are treated as commands to execute."
20340 msgstr ""
20341
20342 #. type: textblock
20343 #: ../fish/guestfish.pod:423
20344 msgid ""
20345 "Commands to execute should be separated by a colon (C<:>), where the colon "
20346 "is a separate parameter.  Thus:"
20347 msgstr ""
20348
20349 #. type: verbatim
20350 #: ../fish/guestfish.pod:426
20351 #, no-wrap
20352 msgid ""
20353 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20354 "\n"
20355 msgstr ""
20356
20357 #. type: textblock
20358 #: ../fish/guestfish.pod:428
20359 msgid ""
20360 "If there are no additional arguments, then we enter a shell, either an "
20361 "interactive shell with a prompt (if the input is a terminal) or a "
20362 "non-interactive shell."
20363 msgstr ""
20364
20365 #. type: textblock
20366 #: ../fish/guestfish.pod:432
20367 msgid ""
20368 "In either command line mode or non-interactive shell, the first command that "
20369 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20370 "prompt) if a command fails, you can continue to enter commands."
20371 msgstr ""
20372
20373 #. type: =head1
20374 #: ../fish/guestfish.pod:437
20375 msgid "USING launch (OR run)"
20376 msgstr ""
20377
20378 #. type: textblock
20379 #: ../fish/guestfish.pod:439
20380 msgid ""
20381 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20382 "then launch it, then mount any disks you need, and finally issue "
20383 "actions/commands.  So the general order of the day is:"
20384 msgstr ""
20385
20386 #. type: textblock
20387 #: ../fish/guestfish.pod:447
20388 msgid "add or -a/--add"
20389 msgstr ""
20390
20391 #. type: textblock
20392 #: ../fish/guestfish.pod:451
20393 msgid "launch (aka run)"
20394 msgstr ""
20395
20396 #. type: textblock
20397 #: ../fish/guestfish.pod:455
20398 msgid "mount or -m/--mount"
20399 msgstr ""
20400
20401 #. type: textblock
20402 #: ../fish/guestfish.pod:459
20403 msgid "any other commands"
20404 msgstr ""
20405
20406 #. type: textblock
20407 #: ../fish/guestfish.pod:463
20408 msgid ""
20409 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20410 "guest before mounting or performing any other commands."
20411 msgstr ""
20412
20413 #. type: textblock
20414 #: ../fish/guestfish.pod:466
20415 msgid ""
20416 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20417 "I<--new> options were given then C<run> is done automatically, simply "
20418 "because guestfish can't perform the action you asked for without doing this."
20419 msgstr ""
20420
20421 #. type: =head1
20422 #: ../fish/guestfish.pod:471
20423 msgid "OPENING DISKS FOR READ AND WRITE"
20424 msgstr ""
20425
20426 #. type: textblock
20427 #: ../fish/guestfish.pod:473
20428 msgid ""
20429 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20430 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20431 "I<-i> and I<-m> open disk images read-only or for writing."
20432 msgstr ""
20433
20434 #. type: textblock
20435 #: ../fish/guestfish.pod:478
20436 msgid ""
20437 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20438 "opening disk images supplied on the command line for write.  To open a disk "
20439 "image read-only you have to do I<-a image --ro>."
20440 msgstr ""
20441
20442 #. type: textblock
20443 #: ../fish/guestfish.pod:482
20444 msgid ""
20445 "This matters: If you accidentally open a live VM disk image writable then "
20446 "you will cause irreversible disk corruption."
20447 msgstr ""
20448
20449 #. type: textblock
20450 #: ../fish/guestfish.pod:485
20451 msgid ""
20452 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20453 "images will be opened read-only.  You will have to either specify "
20454 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20455 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20456 "access for disk images specified by those other command line options."
20457 msgstr ""
20458
20459 #. type: textblock
20460 #: ../fish/guestfish.pod:492
20461 msgid ""
20462 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20463 "which does nothing (it is already the default).  However it is highly "
20464 "recommended that you use this option to indicate that you need write access, "
20465 "and prepare your scripts for the day when this option will be required for "
20466 "write access."
20467 msgstr ""
20468
20469 #. type: textblock
20470 #: ../fish/guestfish.pod:498
20471 msgid ""
20472 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20473 "other libguestfs program apart from guestfish and guestmount."
20474 msgstr ""
20475
20476 #. type: =head1
20477 #: ../fish/guestfish.pod:501
20478 msgid "QUOTING"
20479 msgstr ""
20480
20481 #. type: textblock
20482 #: ../fish/guestfish.pod:503
20483 msgid ""
20484 "You can quote ordinary parameters using either single or double quotes.  For "
20485 "example:"
20486 msgstr ""
20487
20488 #. type: verbatim
20489 #: ../fish/guestfish.pod:506
20490 #, no-wrap
20491 msgid ""
20492 " add \"file with a space.img\"\n"
20493 "\n"
20494 msgstr ""
20495
20496 #. type: verbatim
20497 #: ../fish/guestfish.pod:508
20498 #, no-wrap
20499 msgid ""
20500 " rm '/file name'\n"
20501 "\n"
20502 msgstr ""
20503
20504 #. type: verbatim
20505 #: ../fish/guestfish.pod:510
20506 #, no-wrap
20507 msgid ""
20508 " rm '/\"'\n"
20509 "\n"
20510 msgstr ""
20511
20512 #. type: textblock
20513 #: ../fish/guestfish.pod:512
20514 msgid ""
20515 "A few commands require a list of strings to be passed.  For these, use a "
20516 "whitespace-separated list, enclosed in quotes.  Strings containing "
20517 "whitespace to be passed through must be enclosed in single quotes.  A "
20518 "literal single quote must be escaped with a backslash."
20519 msgstr ""
20520
20521 #. type: verbatim
20522 #: ../fish/guestfish.pod:517
20523 #, no-wrap
20524 msgid ""
20525 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20526 " command \"/bin/echo 'foo      bar'\"\n"
20527 " command \"/bin/echo \\'foo\\'\"\n"
20528 "\n"
20529 msgstr ""
20530
20531 #. type: =head1
20532 #: ../fish/guestfish.pod:521
20533 msgid "OPTIONAL ARGUMENTS"
20534 msgstr ""
20535
20536 #. type: textblock
20537 #: ../fish/guestfish.pod:523
20538 msgid ""
20539 "Some commands take optional arguments.  These arguments appear in this "
20540 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20541 msgstr ""
20542
20543 #. type: verbatim
20544 #: ../fish/guestfish.pod:527
20545 #, no-wrap
20546 msgid ""
20547 " add-drive-opts filename\n"
20548 "\n"
20549 msgstr ""
20550
20551 #. type: verbatim
20552 #: ../fish/guestfish.pod:529
20553 #, no-wrap
20554 msgid ""
20555 " add-drive-opts filename readonly:true\n"
20556 "\n"
20557 msgstr ""
20558
20559 #. type: verbatim
20560 #: ../fish/guestfish.pod:531
20561 #, no-wrap
20562 msgid ""
20563 " add-drive-opts filename format:qcow2 readonly:false\n"
20564 "\n"
20565 msgstr ""
20566
20567 #. type: textblock
20568 #: ../fish/guestfish.pod:533
20569 msgid ""
20570 "Each optional argument can appear at most once.  All optional arguments must "
20571 "appear after the required ones."
20572 msgstr ""
20573
20574 #. type: =head1
20575 #: ../fish/guestfish.pod:536
20576 msgid "NUMBERS"
20577 msgstr ""
20578
20579 #. type: textblock
20580 #: ../fish/guestfish.pod:538
20581 msgid "This section applies to all commands which can take integers as parameters."
20582 msgstr ""
20583
20584 #. type: =head2
20585 #: ../fish/guestfish.pod:541
20586 msgid "SIZE SUFFIX"
20587 msgstr ""
20588
20589 #. type: textblock
20590 #: ../fish/guestfish.pod:543
20591 msgid ""
20592 "When the command takes a parameter measured in bytes, you can use one of the "
20593 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20594 msgstr ""
20595
20596 #. type: =item
20597 #: ../fish/guestfish.pod:549
20598 msgid "B<k> or B<K> or B<KiB>"
20599 msgstr ""
20600
20601 #. type: textblock
20602 #: ../fish/guestfish.pod:551
20603 msgid "The size in kilobytes (multiplied by 1024)."
20604 msgstr ""
20605
20606 #. type: =item
20607 #: ../fish/guestfish.pod:553
20608 msgid "B<KB>"
20609 msgstr ""
20610
20611 #. type: textblock
20612 #: ../fish/guestfish.pod:555
20613 msgid "The size in SI 1000 byte units."
20614 msgstr ""
20615
20616 #. type: =item
20617 #: ../fish/guestfish.pod:557
20618 msgid "B<M> or B<MiB>"
20619 msgstr ""
20620
20621 #. type: textblock
20622 #: ../fish/guestfish.pod:559
20623 msgid "The size in megabytes (multiplied by 1048576)."
20624 msgstr ""
20625
20626 #. type: =item
20627 #: ../fish/guestfish.pod:561
20628 msgid "B<MB>"
20629 msgstr ""
20630
20631 #. type: textblock
20632 #: ../fish/guestfish.pod:563
20633 msgid "The size in SI 1000000 byte units."
20634 msgstr ""
20635
20636 #. type: =item
20637 #: ../fish/guestfish.pod:565
20638 msgid "B<G> or B<GiB>"
20639 msgstr ""
20640
20641 #. type: textblock
20642 #: ../fish/guestfish.pod:567
20643 msgid "The size in gigabytes (multiplied by 2**30)."
20644 msgstr ""
20645
20646 #. type: =item
20647 #: ../fish/guestfish.pod:569
20648 msgid "B<GB>"
20649 msgstr ""
20650
20651 #. type: textblock
20652 #: ../fish/guestfish.pod:571
20653 msgid "The size in SI 10**9 byte units."
20654 msgstr ""
20655
20656 #. type: =item
20657 #: ../fish/guestfish.pod:573
20658 msgid "B<T> or B<TiB>"
20659 msgstr ""
20660
20661 #. type: textblock
20662 #: ../fish/guestfish.pod:575
20663 msgid "The size in terabytes (multiplied by 2**40)."
20664 msgstr ""
20665
20666 #. type: =item
20667 #: ../fish/guestfish.pod:577
20668 msgid "B<TB>"
20669 msgstr ""
20670
20671 #. type: textblock
20672 #: ../fish/guestfish.pod:579
20673 msgid "The size in SI 10**12 byte units."
20674 msgstr ""
20675
20676 #. type: =item
20677 #: ../fish/guestfish.pod:581
20678 msgid "B<P> or B<PiB>"
20679 msgstr ""
20680
20681 #. type: textblock
20682 #: ../fish/guestfish.pod:583
20683 msgid "The size in petabytes (multiplied by 2**50)."
20684 msgstr ""
20685
20686 #. type: =item
20687 #: ../fish/guestfish.pod:585
20688 msgid "B<PB>"
20689 msgstr ""
20690
20691 #. type: textblock
20692 #: ../fish/guestfish.pod:587
20693 msgid "The size in SI 10**15 byte units."
20694 msgstr ""
20695
20696 #. type: =item
20697 #: ../fish/guestfish.pod:589
20698 msgid "B<E> or B<EiB>"
20699 msgstr ""
20700
20701 #. type: textblock
20702 #: ../fish/guestfish.pod:591
20703 msgid "The size in exabytes (multiplied by 2**60)."
20704 msgstr ""
20705
20706 #. type: =item
20707 #: ../fish/guestfish.pod:593
20708 msgid "B<EB>"
20709 msgstr ""
20710
20711 #. type: textblock
20712 #: ../fish/guestfish.pod:595
20713 msgid "The size in SI 10**18 byte units."
20714 msgstr ""
20715
20716 #. type: =item
20717 #: ../fish/guestfish.pod:597
20718 msgid "B<Z> or B<ZiB>"
20719 msgstr ""
20720
20721 #. type: textblock
20722 #: ../fish/guestfish.pod:599
20723 msgid "The size in zettabytes (multiplied by 2**70)."
20724 msgstr ""
20725
20726 #. type: =item
20727 #: ../fish/guestfish.pod:601
20728 msgid "B<ZB>"
20729 msgstr ""
20730
20731 #. type: textblock
20732 #: ../fish/guestfish.pod:603
20733 msgid "The size in SI 10**21 byte units."
20734 msgstr ""
20735
20736 #. type: =item
20737 #: ../fish/guestfish.pod:605
20738 msgid "B<Y> or B<YiB>"
20739 msgstr ""
20740
20741 #. type: textblock
20742 #: ../fish/guestfish.pod:607
20743 msgid "The size in yottabytes (multiplied by 2**80)."
20744 msgstr ""
20745
20746 #. type: =item
20747 #: ../fish/guestfish.pod:609
20748 msgid "B<YB>"
20749 msgstr ""
20750
20751 #. type: textblock
20752 #: ../fish/guestfish.pod:611
20753 msgid "The size in SI 10**24 byte units."
20754 msgstr ""
20755
20756 #. type: verbatim
20757 #: ../fish/guestfish.pod:617
20758 #, no-wrap
20759 msgid ""
20760 " truncate-size /file 1G\n"
20761 "\n"
20762 msgstr ""
20763
20764 #. type: textblock
20765 #: ../fish/guestfish.pod:619
20766 msgid "would truncate the file to 1 gigabyte."
20767 msgstr ""
20768
20769 #. type: textblock
20770 #: ../fish/guestfish.pod:621
20771 msgid ""
20772 "Be careful because a few commands take sizes in kilobytes or megabytes "
20773 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
20774 "Adding a suffix will probably not do what you expect."
20775 msgstr ""
20776
20777 #. type: =head2
20778 #: ../fish/guestfish.pod:625
20779 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20780 msgstr ""
20781
20782 #. type: textblock
20783 #: ../fish/guestfish.pod:627
20784 msgid ""
20785 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20786 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20787 msgstr ""
20788
20789 #. type: verbatim
20790 #: ../fish/guestfish.pod:630
20791 #, no-wrap
20792 msgid ""
20793 " 1234      decimal number 1234\n"
20794 " 02322     octal number, equivalent to decimal 1234\n"
20795 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20796 "\n"
20797 msgstr ""
20798
20799 #. type: textblock
20800 #: ../fish/guestfish.pod:634
20801 msgid ""
20802 "When using the C<chmod> command, you almost always want to specify an octal "
20803 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20804 "L<chmod(1)> program):"
20805 msgstr ""
20806
20807 #. type: verbatim
20808 #: ../fish/guestfish.pod:638
20809 #, no-wrap
20810 msgid ""
20811 " chmod 0777 /public  # OK\n"
20812 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20813 "\n"
20814 msgstr ""
20815
20816 #. type: textblock
20817 #: ../fish/guestfish.pod:641
20818 msgid ""
20819 "Commands that return numbers usually print them in decimal, but some "
20820 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20821 "octal, preceeded by C<0>)."
20822 msgstr ""
20823
20824 #. type: =head1
20825 #: ../fish/guestfish.pod:645
20826 msgid "WILDCARDS AND GLOBBING"
20827 msgstr ""
20828
20829 #. type: textblock
20830 #: ../fish/guestfish.pod:647
20831 msgid ""
20832 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20833 "(globbing) by default.  So for example the following will not do what you "
20834 "expect:"
20835 msgstr ""
20836
20837 #. type: verbatim
20838 #: ../fish/guestfish.pod:651
20839 #, no-wrap
20840 msgid ""
20841 " rm-rf /home/*\n"
20842 "\n"
20843 msgstr ""
20844
20845 #. type: textblock
20846 #: ../fish/guestfish.pod:653
20847 msgid ""
20848 "Assuming you don't have a directory called literally C</home/*> then the "
20849 "above command will return an error."
20850 msgstr ""
20851
20852 #. type: textblock
20853 #: ../fish/guestfish.pod:656
20854 msgid "To perform wildcard expansion, use the C<glob> command."
20855 msgstr ""
20856
20857 #. type: verbatim
20858 #: ../fish/guestfish.pod:658
20859 #, no-wrap
20860 msgid ""
20861 " glob rm-rf /home/*\n"
20862 "\n"
20863 msgstr ""
20864
20865 #. type: textblock
20866 #: ../fish/guestfish.pod:660
20867 msgid ""
20868 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20869 "many times), equivalent to:"
20870 msgstr ""
20871
20872 #. type: verbatim
20873 #: ../fish/guestfish.pod:663
20874 #, no-wrap
20875 msgid ""
20876 " rm-rf /home/jim\n"
20877 " rm-rf /home/joe\n"
20878 " rm-rf /home/mary\n"
20879 "\n"
20880 msgstr ""
20881
20882 #. type: textblock
20883 #: ../fish/guestfish.pod:667
20884 msgid "C<glob> only works on simple guest paths and not on device names."
20885 msgstr ""
20886
20887 #. type: textblock
20888 #: ../fish/guestfish.pod:669
20889 msgid ""
20890 "If you have several parameters, each containing a wildcard, then glob will "
20891 "perform a Cartesian product."
20892 msgstr ""
20893
20894 #. type: =head1
20895 #: ../fish/guestfish.pod:672
20896 msgid "COMMENTS"
20897 msgstr ""
20898
20899 #. type: textblock
20900 #: ../fish/guestfish.pod:674
20901 msgid ""
20902 "Any line which starts with a I<#> character is treated as a comment and "
20903 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20904 "a command.  For example:"
20905 msgstr ""
20906
20907 #. type: verbatim
20908 #: ../fish/guestfish.pod:678
20909 #, no-wrap
20910 msgid ""
20911 " # this is a comment\n"
20912 "         # this is a comment\n"
20913 " foo # NOT a comment\n"
20914 "\n"
20915 msgstr ""
20916
20917 #. type: textblock
20918 #: ../fish/guestfish.pod:682
20919 msgid "Blank lines are also ignored."
20920 msgstr ""
20921
20922 #. type: =head1
20923 #: ../fish/guestfish.pod:684
20924 msgid "RUNNING COMMANDS LOCALLY"
20925 msgstr ""
20926
20927 #. type: textblock
20928 #: ../fish/guestfish.pod:686
20929 msgid ""
20930 "Any line which starts with a I<!> character is treated as a command sent to "
20931 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20932 msgstr ""
20933
20934 #. type: verbatim
20935 #: ../fish/guestfish.pod:690
20936 #, no-wrap
20937 msgid ""
20938 " !mkdir local\n"
20939 " tgz-out /remote local/remote-data.tar.gz\n"
20940 "\n"
20941 msgstr ""
20942
20943 #. type: textblock
20944 #: ../fish/guestfish.pod:693
20945 msgid ""
20946 "will create a directory C<local> on the host, and then export the contents "
20947 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20948 "(See C<tgz-out>)."
20949 msgstr ""
20950
20951 #. type: textblock
20952 #: ../fish/guestfish.pod:697
20953 msgid ""
20954 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20955 "effect, due to the way that subprocesses work in Unix."
20956 msgstr ""
20957
20958 #. type: =head2
20959 #: ../fish/guestfish.pod:700
20960 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20961 msgstr ""
20962
20963 #. type: textblock
20964 #: ../fish/guestfish.pod:702
20965 msgid ""
20966 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20967 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20968 "and executed as guestfish commands."
20969 msgstr ""
20970
20971 #. type: textblock
20972 #: ../fish/guestfish.pod:706
20973 msgid ""
20974 "Thus you can use shell script to construct arbitrary guestfish commands "
20975 "which are then parsed by guestfish."
20976 msgstr ""
20977
20978 #. type: textblock
20979 #: ../fish/guestfish.pod:709
20980 msgid ""
20981 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20982 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20983 "if we use a shell script to create the guestfish commands for us:"
20984 msgstr ""
20985
20986 #. type: verbatim
20987 #: ../fish/guestfish.pod:714
20988 #, no-wrap
20989 msgid ""
20990 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20991 "\n"
20992 msgstr ""
20993
20994 #. type: textblock
20995 #: ../fish/guestfish.pod:716
20996 msgid "or with names like C</foo.001>:"
20997 msgstr ""
20998
20999 #. type: verbatim
21000 #: ../fish/guestfish.pod:718
21001 #, no-wrap
21002 msgid ""
21003 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
21004 "\n"
21005 msgstr ""
21006
21007 #. type: textblock
21008 #: ../fish/guestfish.pod:720
21009 msgid ""
21010 "When using guestfish interactively it can be helpful to just run the shell "
21011 "script first (ie. remove the initial C<E<lt>> character so it is just an "
21012 "ordinary I<!> local command), see what guestfish commands it would run, and "
21013 "when you are happy with those prepend the C<E<lt>> character to run the "
21014 "guestfish commands for real."
21015 msgstr ""
21016
21017 #. type: =head1
21018 #: ../fish/guestfish.pod:726
21019 msgid "PIPES"
21020 msgstr ""
21021
21022 #. type: textblock
21023 #: ../fish/guestfish.pod:728
21024 msgid ""
21025 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
21026 "command (a guestfish command) to the second command (any host command).  For "
21027 "example:"
21028 msgstr ""
21029
21030 #. type: verbatim
21031 #: ../fish/guestfish.pod:732
21032 #, no-wrap
21033 msgid ""
21034 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
21035 "\n"
21036 msgstr ""
21037
21038 #. type: textblock
21039 #: ../fish/guestfish.pod:734
21040 msgid ""
21041 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
21042 "program).  The above command would list all accounts in the guest filesystem "
21043 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
21044 msgstr ""
21045
21046 #. type: verbatim
21047 #: ../fish/guestfish.pod:739
21048 #, no-wrap
21049 msgid ""
21050 " hexdump /bin/ls | head\n"
21051 " list-devices | tail -1\n"
21052 " tgz-out / - | tar ztf -\n"
21053 "\n"
21054 msgstr ""
21055
21056 #. type: textblock
21057 #: ../fish/guestfish.pod:743
21058 msgid ""
21059 "The space before the pipe symbol is required, any space after the pipe "
21060 "symbol is optional.  Everything after the pipe symbol is just passed "
21061 "straight to the host shell, so it can contain redirections, globs and "
21062 "anything else that makes sense on the host side."
21063 msgstr ""
21064
21065 #. type: textblock
21066 #: ../fish/guestfish.pod:748
21067 msgid ""
21068 "To use a literal argument which begins with a pipe symbol, you have to quote "
21069 "it, eg:"
21070 msgstr ""
21071
21072 #. type: verbatim
21073 #: ../fish/guestfish.pod:751
21074 #, no-wrap
21075 msgid ""
21076 " echo \"|\"\n"
21077 "\n"
21078 msgstr ""
21079
21080 #. type: =head1
21081 #: ../fish/guestfish.pod:753
21082 msgid "HOME DIRECTORIES"
21083 msgstr ""
21084
21085 #. type: textblock
21086 #: ../fish/guestfish.pod:755
21087 msgid ""
21088 "If a parameter starts with the character C<~> then the tilde may be expanded "
21089 "as a home directory path (either C<~> for the current user's home directory, "
21090 "or C<~user> for another user)."
21091 msgstr ""
21092
21093 #. type: textblock
21094 #: ../fish/guestfish.pod:759
21095 msgid ""
21096 "Note that home directory expansion happens for users known I<on the host>, "
21097 "not in the guest filesystem."
21098 msgstr ""
21099
21100 #. type: textblock
21101 #: ../fish/guestfish.pod:762
21102 msgid ""
21103 "To use a literal argument which begins with a tilde, you have to quote it, "
21104 "eg:"
21105 msgstr ""
21106
21107 #. type: verbatim
21108 #: ../fish/guestfish.pod:765
21109 #, no-wrap
21110 msgid ""
21111 " echo \"~\"\n"
21112 "\n"
21113 msgstr ""
21114
21115 #. type: textblock
21116 #: ../fish/guestfish.pod:769
21117 msgid ""
21118 "Libguestfs has some support for Linux guests encrypted according to the "
21119 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
21120 "disk encryption systems used by modern Linux guests.  Currently only "
21121 "LVM-on-LUKS is supported."
21122 msgstr ""
21123
21124 #. type: textblock
21125 #: ../fish/guestfish.pod:774
21126 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
21127 msgstr ""
21128
21129 #. type: verbatim
21130 #: ../fish/guestfish.pod:776
21131 #, no-wrap
21132 msgid ""
21133 " ><fs> vfs-type /dev/sda2\n"
21134 " crypto_LUKS\n"
21135 "\n"
21136 msgstr ""
21137
21138 #. type: textblock
21139 #: ../fish/guestfish.pod:779
21140 msgid ""
21141 "Then open those devices using L</luks-open>.  This creates a device-mapper "
21142 "device called C</dev/mapper/luksdev>."
21143 msgstr ""
21144
21145 #. type: verbatim
21146 #: ../fish/guestfish.pod:782
21147 #, no-wrap
21148 msgid ""
21149 " ><fs> luks-open /dev/sda2 luksdev\n"
21150 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
21151 "\n"
21152 msgstr ""
21153
21154 #. type: textblock
21155 #: ../fish/guestfish.pod:785
21156 msgid ""
21157 "Finally you have to tell LVM to scan for volume groups on the newly created "
21158 "mapper device:"
21159 msgstr ""
21160
21161 #. type: verbatim
21162 #: ../fish/guestfish.pod:788
21163 #, no-wrap
21164 msgid ""
21165 " vgscan\n"
21166 " vg-activate-all true\n"
21167 "\n"
21168 msgstr ""
21169
21170 #. type: textblock
21171 #: ../fish/guestfish.pod:791
21172 msgid "The logical volume(s) can now be mounted in the usual way."
21173 msgstr ""
21174
21175 #. type: textblock
21176 #: ../fish/guestfish.pod:793
21177 msgid ""
21178 "Before closing a LUKS device you must unmount any logical volumes on it and "
21179 "deactivate the volume groups by calling C<vg-activate false VG> on each "
21180 "one.  Then you can close the mapper device:"
21181 msgstr ""
21182
21183 #. type: verbatim
21184 #: ../fish/guestfish.pod:797
21185 #, no-wrap
21186 msgid ""
21187 " vg-activate false /dev/VG\n"
21188 " luks-close /dev/mapper/luksdev\n"
21189 "\n"
21190 msgstr ""
21191
21192 #. type: =head1
21193 #: ../fish/guestfish.pod:800
21194 msgid "WINDOWS PATHS"
21195 msgstr ""
21196
21197 #. type: textblock
21198 #: ../fish/guestfish.pod:802
21199 msgid ""
21200 "If a path is prefixed with C<win:> then you can use Windows-style drive "
21201 "letters and paths (with some limitations).  The following commands are "
21202 "equivalent:"
21203 msgstr ""
21204
21205 #. type: verbatim
21206 #: ../fish/guestfish.pod:806
21207 #, no-wrap
21208 msgid ""
21209 " file /WINDOWS/system32/config/system.LOG\n"
21210 "\n"
21211 msgstr ""
21212
21213 #. type: verbatim
21214 #: ../fish/guestfish.pod:808
21215 #, no-wrap
21216 msgid ""
21217 " file win:\\windows\\system32\\config\\system.log\n"
21218 "\n"
21219 msgstr ""
21220
21221 #. type: verbatim
21222 #: ../fish/guestfish.pod:810
21223 #, no-wrap
21224 msgid ""
21225 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
21226 "\n"
21227 msgstr ""
21228
21229 #. type: textblock
21230 #: ../fish/guestfish.pod:812
21231 msgid ""
21232 "The parameter is rewritten \"behind the scenes\" by looking up the position "
21233 "where the drive is mounted, prepending that to the path, changing all "
21234 "backslash characters to forward slash, then resolving the result using "
21235 "L</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
21236 "then the parameter might be rewritten like this:"
21237 msgstr ""
21238
21239 #. type: verbatim
21240 #: ../fish/guestfish.pod:818
21241 #, no-wrap
21242 msgid ""
21243 " win:e:\\foo\\bar => /e/FOO/bar\n"
21244 "\n"
21245 msgstr ""
21246
21247 #. type: textblock
21248 #: ../fish/guestfish.pod:820
21249 msgid "This only works in argument positions that expect a path."
21250 msgstr ""
21251
21252 #. type: =head1
21253 #: ../fish/guestfish.pod:822
21254 msgid "UPLOADING AND DOWNLOADING FILES"
21255 msgstr ""
21256
21257 #. type: textblock
21258 #: ../fish/guestfish.pod:824
21259 msgid ""
21260 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
21261 "others which upload from or download to a local file, you can use the "
21262 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
21263 msgstr ""
21264
21265 #. type: verbatim
21266 #: ../fish/guestfish.pod:828
21267 #, no-wrap
21268 msgid ""
21269 " upload - /foo\n"
21270 "\n"
21271 msgstr ""
21272
21273 #. type: textblock
21274 #: ../fish/guestfish.pod:830
21275 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
21276 msgstr ""
21277
21278 #. type: verbatim
21279 #: ../fish/guestfish.pod:833
21280 #, no-wrap
21281 msgid ""
21282 " tar-out /etc - | tar tf -\n"
21283 "\n"
21284 msgstr ""
21285
21286 #. type: textblock
21287 #: ../fish/guestfish.pod:835
21288 msgid ""
21289 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21290 "command (see L</PIPES>)."
21291 msgstr ""
21292
21293 #. type: textblock
21294 #: ../fish/guestfish.pod:838
21295 msgid ""
21296 "When using C<-> to read from stdin, the input is read up to the end of "
21297 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21298 "some arbitrary end marker:"
21299 msgstr ""
21300
21301 #. type: verbatim
21302 #: ../fish/guestfish.pod:842
21303 #, no-wrap
21304 msgid ""
21305 " upload -<<END /foo\n"
21306 " input line 1\n"
21307 " input line 2\n"
21308 " input line 3\n"
21309 " END\n"
21310 "\n"
21311 msgstr ""
21312
21313 #. type: textblock
21314 #: ../fish/guestfish.pod:848
21315 msgid ""
21316 "Any string of characters can be used instead of C<END>.  The end marker must "
21317 "appear on a line of its own, without any preceeding or following characters "
21318 "(not even spaces)."
21319 msgstr ""
21320
21321 #. type: textblock
21322 #: ../fish/guestfish.pod:852
21323 msgid ""
21324 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21325 "upload local files (so-called \"FileIn\" parameters in the generator)."
21326 msgstr ""
21327
21328 #. type: =head1
21329 #: ../fish/guestfish.pod:855
21330 msgid "EXIT ON ERROR BEHAVIOUR"
21331 msgstr ""
21332
21333 #. type: textblock
21334 #: ../fish/guestfish.pod:857
21335 msgid ""
21336 "By default, guestfish will ignore any errors when in interactive mode "
21337 "(ie. taking commands from a human over a tty), and will exit on the first "
21338 "error in non-interactive mode (scripts, commands given on the command line)."
21339 msgstr ""
21340
21341 #. type: textblock
21342 #: ../fish/guestfish.pod:862
21343 msgid ""
21344 "If you prefix a command with a I<-> character, then that command will not "
21345 "cause guestfish to exit, even if that (one) command returns an error."
21346 msgstr ""
21347
21348 #. type: =head1
21349 #: ../fish/guestfish.pod:866
21350 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21351 msgstr ""
21352
21353 #. type: textblock
21354 #: ../fish/guestfish.pod:868
21355 msgid ""
21356 "Guestfish can be remote-controlled over a socket.  This is useful "
21357 "particularly in shell scripts where you want to make several different "
21358 "changes to a filesystem, but you don't want the overhead of starting up a "
21359 "guestfish process each time."
21360 msgstr ""
21361
21362 #. type: textblock
21363 #: ../fish/guestfish.pod:873
21364 msgid "Start a guestfish server process using:"
21365 msgstr ""
21366
21367 #. type: verbatim
21368 #: ../fish/guestfish.pod:875
21369 #, no-wrap
21370 msgid ""
21371 " eval \"`guestfish --listen`\"\n"
21372 "\n"
21373 msgstr ""
21374
21375 #. type: textblock
21376 #: ../fish/guestfish.pod:877
21377 msgid "and then send it commands by doing:"
21378 msgstr ""
21379
21380 #. type: verbatim
21381 #: ../fish/guestfish.pod:879
21382 #, no-wrap
21383 msgid ""
21384 " guestfish --remote cmd [...]\n"
21385 "\n"
21386 msgstr ""
21387
21388 #. type: textblock
21389 #: ../fish/guestfish.pod:881
21390 msgid "To cause the server to exit, send it the exit command:"
21391 msgstr ""
21392
21393 #. type: verbatim
21394 #: ../fish/guestfish.pod:883
21395 #, no-wrap
21396 msgid ""
21397 " guestfish --remote exit\n"
21398 "\n"
21399 msgstr ""
21400
21401 #. type: textblock
21402 #: ../fish/guestfish.pod:885
21403 msgid ""
21404 "Note that the server will normally exit if there is an error in a command.  "
21405 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21406 "BEHAVIOUR>."
21407 msgstr ""
21408
21409 #. type: =head2
21410 #: ../fish/guestfish.pod:889
21411 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21412 msgstr ""
21413
21414 #. type: textblock
21415 #: ../fish/guestfish.pod:891
21416 msgid ""
21417 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21418 "is how the I<--remote> option knows where to send the commands.  You can "
21419 "have several guestfish listener processes running using:"
21420 msgstr ""
21421
21422 #. type: verbatim
21423 #: ../fish/guestfish.pod:895
21424 #, no-wrap
21425 msgid ""
21426 " eval \"`guestfish --listen`\"\n"
21427 " pid1=$GUESTFISH_PID\n"
21428 " eval \"`guestfish --listen`\"\n"
21429 " pid2=$GUESTFISH_PID\n"
21430 " ...\n"
21431 " guestfish --remote=$pid1 cmd\n"
21432 " guestfish --remote=$pid2 cmd\n"
21433 "\n"
21434 msgstr ""
21435
21436 #. type: =head2
21437 #: ../fish/guestfish.pod:903
21438 msgid "REMOTE CONTROL AND CSH"
21439 msgstr ""
21440
21441 #. type: textblock
21442 #: ../fish/guestfish.pod:905
21443 msgid ""
21444 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21445 "option:"
21446 msgstr ""
21447
21448 #. type: verbatim
21449 #: ../fish/guestfish.pod:908
21450 #, no-wrap
21451 msgid ""
21452 " eval \"`guestfish --listen --csh`\"\n"
21453 "\n"
21454 msgstr ""
21455
21456 #. type: =head2
21457 #: ../fish/guestfish.pod:910
21458 msgid "REMOTE CONTROL DETAILS"
21459 msgstr ""
21460
21461 #. type: textblock
21462 #: ../fish/guestfish.pod:912
21463 msgid ""
21464 "Remote control happens over a Unix domain socket called "
21465 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
21466 "of the process, and C<$PID> is the process ID of the server."
21467 msgstr ""
21468
21469 #. type: textblock
21470 #: ../fish/guestfish.pod:916
21471 msgid "Guestfish client and server versions must match exactly."
21472 msgstr ""
21473
21474 #. type: =head1
21475 #: ../fish/guestfish.pod:918
21476 msgid "PREPARED DISK IMAGES"
21477 msgstr ""
21478
21479 #. type: textblock
21480 #: ../fish/guestfish.pod:920
21481 msgid ""
21482 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21483 "preformatted disk images that guestfish can make for you to save typing.  "
21484 "This is particularly useful for testing purposes.  This option is used "
21485 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21486 "can be mixed with I<-a>)."
21487 msgstr ""
21488
21489 #. type: textblock
21490 #: ../fish/guestfish.pod:926
21491 msgid ""
21492 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21493 "the second and so on.  Existing files in the current directory are "
21494 "I<overwritten>."
21495 msgstr ""
21496
21497 #. type: textblock
21498 #: ../fish/guestfish.pod:930
21499 msgid ""
21500 "The type briefly describes how the disk should be sized, partitioned, how "
21501 "filesystem(s) should be created, and how content should be added.  "
21502 "Optionally the type can be followed by extra parameters, separated by C<:> "
21503 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
21504 "sparsely-allocated disk, containing a single partition, with the partition "
21505 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
21506 "on a 1GB disk instead."
21507 msgstr ""
21508
21509 #. type: textblock
21510 #: ../fish/guestfish.pod:938
21511 msgid "To list the available types and any extra parameters they take, run:"
21512 msgstr ""
21513
21514 #. type: textblock
21515 #: ../fish/guestfish.pod:942
21516 msgid ""
21517 "Note that the prepared filesystem is not mounted.  You would usually have to "
21518 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21519 msgstr ""
21520
21521 #. type: textblock
21522 #: ../fish/guestfish.pod:946
21523 msgid ""
21524 "If any I<-N> or I<--new> options are given, the guest is automatically "
21525 "launched."
21526 msgstr ""
21527
21528 #. type: textblock
21529 #: ../fish/guestfish.pod:951
21530 msgid "Create a 100MB disk with an ext4-formatted partition:"
21531 msgstr ""
21532
21533 #. type: verbatim
21534 #: ../fish/guestfish.pod:953
21535 #, no-wrap
21536 msgid ""
21537 " guestfish -N fs:ext4\n"
21538 "\n"
21539 msgstr ""
21540
21541 #. type: textblock
21542 #: ../fish/guestfish.pod:955
21543 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21544 msgstr ""
21545
21546 #. type: verbatim
21547 #: ../fish/guestfish.pod:957
21548 #, no-wrap
21549 msgid ""
21550 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21551 "\n"
21552 msgstr ""
21553
21554 #. type: textblock
21555 #: ../fish/guestfish.pod:959
21556 msgid "Create a blank 200MB disk:"
21557 msgstr ""
21558
21559 #. type: verbatim
21560 #: ../fish/guestfish.pod:961
21561 #, no-wrap
21562 msgid ""
21563 " guestfish -N disk:200M\n"
21564 "\n"
21565 msgstr ""
21566
21567 #. type: =head1
21568 #: ../fish/guestfish.pod:963
21569 msgid "PROGRESS BARS"
21570 msgstr ""
21571
21572 #. type: textblock
21573 #: ../fish/guestfish.pod:965
21574 msgid ""
21575 "Some (not all) long-running commands send progress notification messages as "
21576 "they are running.  Guestfish turns these messages into progress bars."
21577 msgstr ""
21578
21579 #. type: textblock
21580 #: ../fish/guestfish.pod:969
21581 msgid ""
21582 "When a command that supports progress bars takes longer than two seconds to "
21583 "run, and if progress bars are enabled, then you will see one appearing below "
21584 "the command:"
21585 msgstr ""
21586
21587 #. type: verbatim
21588 #: ../fish/guestfish.pod:973
21589 #, no-wrap
21590 msgid ""
21591 " ><fs> copy-size /large-file /another-file 2048M\n"
21592 " / 10% [#####-----------------------------------------] 00:30\n"
21593 "\n"
21594 msgstr ""
21595
21596 #. type: textblock
21597 #: ../fish/guestfish.pod:976
21598 msgid ""
21599 "The spinner on the left hand side moves round once for every progress "
21600 "notification received from the backend.  This is a (reasonably) golden "
21601 "assurance that the command is \"doing something\" even if the progress bar "
21602 "is not moving, because the command is able to send the progress "
21603 "notifications.  When the bar reaches 100% and the command finishes, the "
21604 "spinner disappears."
21605 msgstr ""
21606
21607 #. type: textblock
21608 #: ../fish/guestfish.pod:983
21609 msgid ""
21610 "Progress bars are enabled by default when guestfish is used interactively.  "
21611 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21612 "and you can disable them completely using I<--no-progress-bars>."
21613 msgstr ""
21614
21615 #. type: =head1
21616 #: ../fish/guestfish.pod:988
21617 msgid "GUESTFISH COMMANDS"
21618 msgstr ""
21619
21620 #. type: textblock
21621 #: ../fish/guestfish.pod:990
21622 msgid ""
21623 "The commands in this section are guestfish convenience commands, in other "
21624 "words, they are not part of the L<guestfs(3)> API."
21625 msgstr ""
21626
21627 #. type: =head2
21628 #: ../fish/guestfish.pod:993
21629 msgid "help"
21630 msgstr ""
21631
21632 #. type: verbatim
21633 #: ../fish/guestfish.pod:995
21634 #, no-wrap
21635 msgid ""
21636 " help\n"
21637 " help cmd\n"
21638 "\n"
21639 msgstr ""
21640
21641 #. type: textblock
21642 #: ../fish/guestfish.pod:998
21643 msgid "Without any parameter, this provides general help."
21644 msgstr ""
21645
21646 #. type: textblock
21647 #: ../fish/guestfish.pod:1000
21648 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21649 msgstr ""
21650
21651 #. type: =head2
21652 #: ../fish/guestfish.pod:1002
21653 msgid "quit | exit"
21654 msgstr ""
21655
21656 #. type: textblock
21657 #: ../fish/guestfish.pod:1004
21658 msgid "This exits guestfish.  You can also use C<^D> key."
21659 msgstr ""
21660
21661 #. type: textblock
21662 #: ../fish/guestfish.pod:1006
21663 msgid "@FISH_COMMANDS@"
21664 msgstr ""
21665
21666 #. type: =head1
21667 #: ../fish/guestfish.pod:1008
21668 msgid "COMMANDS"
21669 msgstr ""
21670
21671 #. type: =head1
21672 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
21673 msgid "EXIT CODE"
21674 msgstr ""
21675
21676 #. type: textblock
21677 #: ../fish/guestfish.pod:1014
21678 msgid ""
21679 "guestfish returns 0 if the commands completed without error, or 1 if there "
21680 "was an error."
21681 msgstr ""
21682
21683 #. type: =item
21684 #: ../fish/guestfish.pod:1021
21685 msgid "EDITOR"
21686 msgstr ""
21687
21688 #. type: textblock
21689 #: ../fish/guestfish.pod:1023
21690 msgid ""
21691 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21692 "C<vi>."
21693 msgstr ""
21694
21695 #. type: =item
21696 #: ../fish/guestfish.pod:1026
21697 msgid "GUESTFISH_DISPLAY_IMAGE"
21698 msgstr ""
21699
21700 #. type: textblock
21701 #: ../fish/guestfish.pod:1028
21702 msgid ""
21703 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
21704 "If not set, it uses L<display(1)>."
21705 msgstr ""
21706
21707 #. type: =item
21708 #: ../fish/guestfish.pod:1031
21709 msgid "GUESTFISH_PID"
21710 msgstr ""
21711
21712 #. type: textblock
21713 #: ../fish/guestfish.pod:1033
21714 msgid ""
21715 "Used with the I<--remote> option to specify the remote guestfish process to "
21716 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21717 msgstr ""
21718
21719 #. type: =item
21720 #: ../fish/guestfish.pod:1037
21721 msgid "HEXEDITOR"
21722 msgstr ""
21723
21724 #. type: textblock
21725 #: ../fish/guestfish.pod:1039
21726 msgid ""
21727 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21728 "not specified, the external L<hexedit(1)> program is used."
21729 msgstr ""
21730
21731 #. type: =item
21732 #: ../fish/guestfish.pod:1043
21733 msgid "HOME"
21734 msgstr ""
21735
21736 #. type: textblock
21737 #: ../fish/guestfish.pod:1045
21738 msgid ""
21739 "If compiled with GNU readline support, various files in the home directory "
21740 "can be used.  See L</FILES>."
21741 msgstr ""
21742
21743 #. type: textblock
21744 #: ../fish/guestfish.pod:1054
21745 msgid ""
21746 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21747 "effect as using the B<-v> option."
21748 msgstr ""
21749
21750 #. type: textblock
21751 #: ../fish/guestfish.pod:1066
21752 msgid ""
21753 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21754 "the discussion of paths in L<guestfs(3)>."
21755 msgstr ""
21756
21757 #. type: textblock
21758 #: ../fish/guestfish.pod:1077
21759 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21760 msgstr ""
21761
21762 #. type: =item
21763 #: ../fish/guestfish.pod:1079
21764 msgid "PAGER"
21765 msgstr ""
21766
21767 #. type: textblock
21768 #: ../fish/guestfish.pod:1081
21769 msgid ""
21770 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21771 "C<more>."
21772 msgstr ""
21773
21774 #. type: =head1
21775 #: ../fish/guestfish.pod:1097 ../fuse/guestmount.pod:264
21776 msgid "FILES"
21777 msgstr ""
21778
21779 #. type: =item
21780 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:268
21781 msgid "$HOME/.libguestfs-tools.rc"
21782 msgstr ""
21783
21784 #. type: =item
21785 #: ../fish/guestfish.pod:1103 ../fuse/guestmount.pod:270
21786 msgid "/etc/libguestfs-tools.conf"
21787 msgstr ""
21788
21789 #. type: textblock
21790 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:272
21791 msgid ""
21792 "This configuration file controls the default read-only or read-write mode "
21793 "(I<--ro> or I<--rw>)."
21794 msgstr ""
21795
21796 #. type: textblock
21797 #: ../fish/guestfish.pod:1108
21798 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21799 msgstr ""
21800
21801 #. type: =item
21802 #: ../fish/guestfish.pod:1110
21803 msgid "$HOME/.guestfish"
21804 msgstr ""
21805
21806 #. type: textblock
21807 #: ../fish/guestfish.pod:1112
21808 msgid ""
21809 "If compiled with GNU readline support, then the command history is saved in "
21810 "this file."
21811 msgstr ""
21812
21813 #. type: =item
21814 #: ../fish/guestfish.pod:1115
21815 msgid "$HOME/.inputrc"
21816 msgstr ""
21817
21818 #. type: =item
21819 #: ../fish/guestfish.pod:1117
21820 msgid "/etc/inputrc"
21821 msgstr ""
21822
21823 #. type: textblock
21824 #: ../fish/guestfish.pod:1119
21825 msgid ""
21826 "If compiled with GNU readline support, then these files can be used to "
21827 "configure readline.  For further information, please see "
21828 "L<readline(3)/INITIALIZATION FILE>."
21829 msgstr ""
21830
21831 #. type: textblock
21832 #: ../fish/guestfish.pod:1123
21833 msgid "To write rules which only apply to guestfish, use:"
21834 msgstr ""
21835
21836 #. type: verbatim
21837 #: ../fish/guestfish.pod:1125
21838 #, no-wrap
21839 msgid ""
21840 " $if guestfish\n"
21841 " ...\n"
21842 " $endif\n"
21843 "\n"
21844 msgstr ""
21845
21846 #. type: textblock
21847 #: ../fish/guestfish.pod:1129
21848 msgid ""
21849 "Variables that you can set in inputrc that change the behaviour of guestfish "
21850 "in useful ways include:"
21851 msgstr ""
21852
21853 #. type: =item
21854 #: ../fish/guestfish.pod:1134
21855 msgid "completion-ignore-case (default: on)"
21856 msgstr ""
21857
21858 #. type: textblock
21859 #: ../fish/guestfish.pod:1136
21860 msgid ""
21861 "By default, guestfish will ignore case when tab-completing paths on the "
21862 "disk.  Use:"
21863 msgstr ""
21864
21865 #. type: verbatim
21866 #: ../fish/guestfish.pod:1139
21867 #, no-wrap
21868 msgid ""
21869 " set completion-ignore-case off\n"
21870 "\n"
21871 msgstr ""
21872
21873 #. type: textblock
21874 #: ../fish/guestfish.pod:1141
21875 msgid "to make guestfish case sensitive."
21876 msgstr ""
21877
21878 #. type: =item
21879 #: ../fish/guestfish.pod:1145
21880 msgid "test1.img"
21881 msgstr ""
21882
21883 #. type: =item
21884 #: ../fish/guestfish.pod:1147
21885 msgid "test2.img (etc)"
21886 msgstr ""
21887
21888 #. type: textblock
21889 #: ../fish/guestfish.pod:1149
21890 msgid ""
21891 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21892 "will be created in the file C<test1.img> in the current directory.  The "
21893 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21894 "the same name will be overwritten."
21895 msgstr ""
21896
21897 #. type: textblock
21898 #: ../fish/guestfish.pod:1158
21899 msgid ""
21900 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, "
21901 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
21902 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
21903 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
21904 "L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, "
21905 "L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<display(1)>, L<hexedit(1)>."
21906 msgstr ""
21907
21908 #. type: textblock
21909 #: ../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
21910 msgid ""
21911 "This program is free software; you can redistribute it and/or modify it "
21912 "under the terms of the GNU General Public License as published by the Free "
21913 "Software Foundation; either version 2 of the License, or (at your option) "
21914 "any later version."
21915 msgstr ""
21916
21917 #. type: textblock
21918 #: ../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
21919 msgid ""
21920 "This program is distributed in the hope that it will be useful, but WITHOUT "
21921 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21922 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21923 "more details."
21924 msgstr ""
21925
21926 #. type: textblock
21927 #: ../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
21928 msgid ""
21929 "You should have received a copy of the GNU General Public License along with "
21930 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21931 "Ave, Cambridge, MA 02139, USA."
21932 msgstr ""
21933
21934 #. type: =head2
21935 #: ../fish/guestfish-actions.pod:1
21936 msgid "add-cdrom"
21937 msgstr ""
21938
21939 #. type: verbatim
21940 #: ../fish/guestfish-actions.pod:3
21941 #, no-wrap
21942 msgid ""
21943 " add-cdrom filename\n"
21944 "\n"
21945 msgstr ""
21946
21947 #. type: textblock
21948 #: ../fish/guestfish-actions.pod:15
21949 msgid ""
21950 "This call checks for the existence of C<filename>.  This stops you from "
21951 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21952 "and C<http:> URLs.  To specify those, use the general L</config> call "
21953 "instead."
21954 msgstr ""
21955
21956 #. type: textblock
21957 #: ../fish/guestfish-actions.pod:22
21958 msgid ""
21959 "If you just want to add an ISO file (often you use this as an efficient way "
21960 "to transfer large files into the guest), then you should probably use "
21961 "L</add-drive-ro> instead."
21962 msgstr ""
21963
21964 #. type: =head2
21965 #: ../fish/guestfish-actions.pod:35
21966 msgid "add-domain"
21967 msgstr ""
21968
21969 #. type: =head2
21970 #: ../fish/guestfish-actions.pod:37
21971 msgid "domain"
21972 msgstr ""
21973
21974 #. type: verbatim
21975 #: ../fish/guestfish-actions.pod:39
21976 #, no-wrap
21977 msgid ""
21978 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] "
21979 "[allowuuid:..]\n"
21980 "\n"
21981 msgstr ""
21982
21983 #. type: textblock
21984 #: ../fish/guestfish-actions.pod:41
21985 msgid ""
21986 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21987 "It works by connecting to libvirt, requesting the domain and domain XML from "
21988 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21989 msgstr ""
21990
21991 #. type: textblock
21992 #: ../fish/guestfish-actions.pod:76
21993 msgid ""
21994 "The other optional parameters are passed directly through to "
21995 "L</add-drive-opts>."
21996 msgstr ""
21997
21998 #. type: textblock
21999 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143 ../fish/guestfish-actions.pod:568 ../fish/guestfish-actions.pod:1962 ../fish/guestfish-actions.pod:3128 ../fish/guestfish-actions.pod:3301 ../fish/guestfish-actions.pod:3436
22000 msgid ""
22001 "This command has one or more optional arguments.  See L</OPTIONAL "
22002 "ARGUMENTS>."
22003 msgstr ""
22004
22005 #. type: =head2
22006 #: ../fish/guestfish-actions.pod:81
22007 msgid "add-drive"
22008 msgstr ""
22009
22010 #. type: verbatim
22011 #: ../fish/guestfish-actions.pod:83
22012 #, no-wrap
22013 msgid ""
22014 " add-drive filename\n"
22015 "\n"
22016 msgstr ""
22017
22018 #. type: textblock
22019 #: ../fish/guestfish-actions.pod:85
22020 msgid ""
22021 "This function is the equivalent of calling L</add-drive-opts> with no "
22022 "optional parameters, so the disk is added writable, with the format being "
22023 "detected automatically."
22024 msgstr ""
22025
22026 #. type: textblock
22027 #: ../fish/guestfish-actions.pod:89
22028 msgid ""
22029 "Automatic detection of the format opens you up to a potential security hole "
22030 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
22031 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
22032 "you should think about replacing calls to this function with calls to "
22033 "L</add-drive-opts>, and specifying the format."
22034 msgstr ""
22035
22036 #. type: =head2
22037 #: ../fish/guestfish-actions.pod:96
22038 msgid "add-drive-opts"
22039 msgstr ""
22040
22041 #. type: =head2
22042 #: ../fish/guestfish-actions.pod:98
22043 msgid "add"
22044 msgstr ""
22045
22046 #. type: verbatim
22047 #: ../fish/guestfish-actions.pod:100
22048 #, no-wrap
22049 msgid ""
22050 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
22051 "\n"
22052 msgstr ""
22053
22054 #. type: textblock
22055 #: ../fish/guestfish-actions.pod:127
22056 msgid ""
22057 "This forces the image format.  If you omit this (or use L</add-drive> or "
22058 "L</add-drive-ro>) then the format is automatically detected.  Possible "
22059 "formats include C<raw> and C<qcow2>."
22060 msgstr ""
22061
22062 #. type: textblock
22063 #: ../fish/guestfish-actions.pod:138
22064 msgid ""
22065 "This rarely-used option lets you emulate the behaviour of the deprecated "
22066 "L</add-drive-with-if> call (q.v.)"
22067 msgstr ""
22068
22069 #. type: =head2
22070 #: ../fish/guestfish-actions.pod:145
22071 msgid "add-drive-ro"
22072 msgstr ""
22073
22074 #. type: =head2
22075 #: ../fish/guestfish-actions.pod:147
22076 msgid "add-ro"
22077 msgstr ""
22078
22079 #. type: verbatim
22080 #: ../fish/guestfish-actions.pod:149
22081 #, no-wrap
22082 msgid ""
22083 " add-drive-ro filename\n"
22084 "\n"
22085 msgstr ""
22086
22087 #. type: textblock
22088 #: ../fish/guestfish-actions.pod:151
22089 msgid ""
22090 "This function is the equivalent of calling L</add-drive-opts> with the "
22091 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
22092 "is added read-only, with the format being detected automatically."
22093 msgstr ""
22094
22095 #. type: =head2
22096 #: ../fish/guestfish-actions.pod:156
22097 msgid "add-drive-ro-with-if"
22098 msgstr ""
22099
22100 #. type: verbatim
22101 #: ../fish/guestfish-actions.pod:158
22102 #, no-wrap
22103 msgid ""
22104 " add-drive-ro-with-if filename iface\n"
22105 "\n"
22106 msgstr ""
22107
22108 #. type: textblock
22109 #: ../fish/guestfish-actions.pod:160
22110 msgid ""
22111 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
22112 "interface emulation to use at run time."
22113 msgstr ""
22114
22115 #. type: =head2
22116 #: ../fish/guestfish-actions.pod:170
22117 msgid "add-drive-with-if"
22118 msgstr ""
22119
22120 #. type: verbatim
22121 #: ../fish/guestfish-actions.pod:172
22122 #, no-wrap
22123 msgid ""
22124 " add-drive-with-if filename iface\n"
22125 "\n"
22126 msgstr ""
22127
22128 #. type: textblock
22129 #: ../fish/guestfish-actions.pod:174
22130 msgid ""
22131 "This is the same as L</add-drive> but it allows you to specify the QEMU "
22132 "interface emulation to use at run time."
22133 msgstr ""
22134
22135 #. type: =head2
22136 #: ../fish/guestfish-actions.pod:184
22137 msgid "aug-clear"
22138 msgstr ""
22139
22140 #. type: verbatim
22141 #: ../fish/guestfish-actions.pod:186
22142 #, no-wrap
22143 msgid ""
22144 " aug-clear augpath\n"
22145 "\n"
22146 msgstr ""
22147
22148 #. type: =head2
22149 #: ../fish/guestfish-actions.pod:191
22150 msgid "aug-close"
22151 msgstr ""
22152
22153 #. type: verbatim
22154 #: ../fish/guestfish-actions.pod:193
22155 #, no-wrap
22156 msgid ""
22157 " aug-close\n"
22158 "\n"
22159 msgstr ""
22160
22161 #. type: textblock
22162 #: ../fish/guestfish-actions.pod:195
22163 msgid ""
22164 "Close the current Augeas handle and free up any resources used by it.  After "
22165 "calling this, you have to call L</aug-init> again before you can use any "
22166 "other Augeas functions."
22167 msgstr ""
22168
22169 #. type: =head2
22170 #: ../fish/guestfish-actions.pod:200
22171 msgid "aug-defnode"
22172 msgstr ""
22173
22174 #. type: verbatim
22175 #: ../fish/guestfish-actions.pod:202
22176 #, no-wrap
22177 msgid ""
22178 " aug-defnode name expr val\n"
22179 "\n"
22180 msgstr ""
22181
22182 #. type: textblock
22183 #: ../fish/guestfish-actions.pod:207
22184 msgid ""
22185 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
22186 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
22187 "containing that single node."
22188 msgstr ""
22189
22190 #. type: =head2
22191 #: ../fish/guestfish-actions.pod:215
22192 msgid "aug-defvar"
22193 msgstr ""
22194
22195 #. type: verbatim
22196 #: ../fish/guestfish-actions.pod:217
22197 #, no-wrap
22198 msgid ""
22199 " aug-defvar name expr\n"
22200 "\n"
22201 msgstr ""
22202
22203 #. type: =head2
22204 #: ../fish/guestfish-actions.pod:226
22205 msgid "aug-get"
22206 msgstr ""
22207
22208 #. type: verbatim
22209 #: ../fish/guestfish-actions.pod:228
22210 #, no-wrap
22211 msgid ""
22212 " aug-get augpath\n"
22213 "\n"
22214 msgstr ""
22215
22216 #. type: =head2
22217 #: ../fish/guestfish-actions.pod:233
22218 msgid "aug-init"
22219 msgstr ""
22220
22221 #. type: verbatim
22222 #: ../fish/guestfish-actions.pod:235
22223 #, no-wrap
22224 msgid ""
22225 " aug-init root flags\n"
22226 "\n"
22227 msgstr ""
22228
22229 #. type: textblock
22230 #: ../fish/guestfish-actions.pod:241
22231 msgid "You must call this before using any other L</aug-*> commands."
22232 msgstr ""
22233
22234 #. type: textblock
22235 #: ../fish/guestfish-actions.pod:276
22236 msgid "Do not load the tree in L</aug-init>."
22237 msgstr ""
22238
22239 #. type: textblock
22240 #: ../fish/guestfish-actions.pod:280
22241 msgid "To close the handle, you can call L</aug-close>."
22242 msgstr ""
22243
22244 #. type: =head2
22245 #: ../fish/guestfish-actions.pod:284
22246 msgid "aug-insert"
22247 msgstr ""
22248
22249 #. type: verbatim
22250 #: ../fish/guestfish-actions.pod:286
22251 #, no-wrap
22252 msgid ""
22253 " aug-insert augpath label true|false\n"
22254 "\n"
22255 msgstr ""
22256
22257 #. type: =head2
22258 #: ../fish/guestfish-actions.pod:296
22259 msgid "aug-load"
22260 msgstr ""
22261
22262 #. type: verbatim
22263 #: ../fish/guestfish-actions.pod:298
22264 #, no-wrap
22265 msgid ""
22266 " aug-load\n"
22267 "\n"
22268 msgstr ""
22269
22270 #. type: =head2
22271 #: ../fish/guestfish-actions.pod:305
22272 msgid "aug-ls"
22273 msgstr ""
22274
22275 #. type: verbatim
22276 #: ../fish/guestfish-actions.pod:307
22277 #, no-wrap
22278 msgid ""
22279 " aug-ls augpath\n"
22280 "\n"
22281 msgstr ""
22282
22283 #. type: textblock
22284 #: ../fish/guestfish-actions.pod:309
22285 msgid ""
22286 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22287 "resulting nodes into alphabetical order."
22288 msgstr ""
22289
22290 #. type: =head2
22291 #: ../fish/guestfish-actions.pod:312
22292 msgid "aug-match"
22293 msgstr ""
22294
22295 #. type: verbatim
22296 #: ../fish/guestfish-actions.pod:314
22297 #, no-wrap
22298 msgid ""
22299 " aug-match augpath\n"
22300 "\n"
22301 msgstr ""
22302
22303 #. type: =head2
22304 #: ../fish/guestfish-actions.pod:320
22305 msgid "aug-mv"
22306 msgstr ""
22307
22308 #. type: verbatim
22309 #: ../fish/guestfish-actions.pod:322
22310 #, no-wrap
22311 msgid ""
22312 " aug-mv src dest\n"
22313 "\n"
22314 msgstr ""
22315
22316 #. type: =head2
22317 #: ../fish/guestfish-actions.pod:327
22318 msgid "aug-rm"
22319 msgstr ""
22320
22321 #. type: verbatim
22322 #: ../fish/guestfish-actions.pod:329
22323 #, no-wrap
22324 msgid ""
22325 " aug-rm augpath\n"
22326 "\n"
22327 msgstr ""
22328
22329 #. type: =head2
22330 #: ../fish/guestfish-actions.pod:335
22331 msgid "aug-save"
22332 msgstr ""
22333
22334 #. type: verbatim
22335 #: ../fish/guestfish-actions.pod:337
22336 #, no-wrap
22337 msgid ""
22338 " aug-save\n"
22339 "\n"
22340 msgstr ""
22341
22342 #. type: textblock
22343 #: ../fish/guestfish-actions.pod:341
22344 msgid ""
22345 "The flags which were passed to L</aug-init> affect exactly how files are "
22346 "saved."
22347 msgstr ""
22348
22349 #. type: =head2
22350 #: ../fish/guestfish-actions.pod:344
22351 msgid "aug-set"
22352 msgstr ""
22353
22354 #. type: verbatim
22355 #: ../fish/guestfish-actions.pod:346
22356 #, no-wrap
22357 msgid ""
22358 " aug-set augpath val\n"
22359 "\n"
22360 msgstr ""
22361
22362 #. type: textblock
22363 #: ../fish/guestfish-actions.pod:350
22364 msgid ""
22365 "In the Augeas API, it is possible to clear a node by setting the value to "
22366 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22367 "this call.  Instead you must use the L</aug-clear> call."
22368 msgstr ""
22369
22370 #. type: =head2
22371 #: ../fish/guestfish-actions.pod:355
22372 msgid "available"
22373 msgstr ""
22374
22375 #. type: verbatim
22376 #: ../fish/guestfish-actions.pod:357
22377 #, no-wrap
22378 msgid ""
22379 " available 'groups ...'\n"
22380 "\n"
22381 msgstr ""
22382
22383 #. type: textblock
22384 #: ../fish/guestfish-actions.pod:363
22385 msgid ""
22386 "The libguestfs groups, and the functions that those groups correspond to, "
22387 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22388 "runtime by calling L</available-all-groups>."
22389 msgstr ""
22390
22391 #. type: textblock
22392 #: ../fish/guestfish-actions.pod:387
22393 msgid "You must call L</launch> before calling this function."
22394 msgstr ""
22395
22396 #. type: textblock
22397 #: ../fish/guestfish-actions.pod:409
22398 msgid ""
22399 "This call was added in version C<1.0.80>.  In previous versions of "
22400 "libguestfs all you could do would be to speculatively execute a command to "
22401 "find out if the daemon implemented it.  See also L</version>."
22402 msgstr ""
22403
22404 #. type: =head2
22405 #: ../fish/guestfish-actions.pod:416
22406 msgid "available-all-groups"
22407 msgstr ""
22408
22409 #. type: verbatim
22410 #: ../fish/guestfish-actions.pod:418
22411 #, no-wrap
22412 msgid ""
22413 " available-all-groups\n"
22414 "\n"
22415 msgstr ""
22416
22417 #. type: textblock
22418 #: ../fish/guestfish-actions.pod:420
22419 msgid ""
22420 "This command returns a list of all optional groups that this daemon knows "
22421 "about.  Note this returns both supported and unsupported groups.  To find "
22422 "out which ones the daemon can actually support you have to call "
22423 "L</available> on each member of the returned list."
22424 msgstr ""
22425
22426 #. type: textblock
22427 #: ../fish/guestfish-actions.pod:426
22428 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22429 msgstr ""
22430
22431 #. type: =head2
22432 #: ../fish/guestfish-actions.pod:428
22433 msgid "base64-in"
22434 msgstr ""
22435
22436 #. type: verbatim
22437 #: ../fish/guestfish-actions.pod:430
22438 #, no-wrap
22439 msgid ""
22440 " base64-in (base64file|-) filename\n"
22441 "\n"
22442 msgstr ""
22443
22444 #. type: textblock
22445 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444 ../fish/guestfish-actions.pod:693 ../fish/guestfish-actions.pod:862 ../fish/guestfish-actions.pod:881 ../fish/guestfish-actions.pod:1255 ../fish/guestfish-actions.pod:4631 ../fish/guestfish-actions.pod:4643 ../fish/guestfish-actions.pod:4654 ../fish/guestfish-actions.pod:4665 ../fish/guestfish-actions.pod:4717 ../fish/guestfish-actions.pod:4726 ../fish/guestfish-actions.pod:4780 ../fish/guestfish-actions.pod:4803
22446 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22447 msgstr ""
22448
22449 #. type: =head2
22450 #: ../fish/guestfish-actions.pod:437
22451 msgid "base64-out"
22452 msgstr ""
22453
22454 #. type: verbatim
22455 #: ../fish/guestfish-actions.pod:439
22456 #, no-wrap
22457 msgid ""
22458 " base64-out filename (base64file|-)\n"
22459 "\n"
22460 msgstr ""
22461
22462 #. type: =head2
22463 #: ../fish/guestfish-actions.pod:446
22464 msgid "blockdev-flushbufs"
22465 msgstr ""
22466
22467 #. type: verbatim
22468 #: ../fish/guestfish-actions.pod:448
22469 #, no-wrap
22470 msgid ""
22471 " blockdev-flushbufs device\n"
22472 "\n"
22473 msgstr ""
22474
22475 #. type: =head2
22476 #: ../fish/guestfish-actions.pod:455
22477 msgid "blockdev-getbsz"
22478 msgstr ""
22479
22480 #. type: verbatim
22481 #: ../fish/guestfish-actions.pod:457
22482 #, no-wrap
22483 msgid ""
22484 " blockdev-getbsz device\n"
22485 "\n"
22486 msgstr ""
22487
22488 #. type: =head2
22489 #: ../fish/guestfish-actions.pod:466
22490 msgid "blockdev-getro"
22491 msgstr ""
22492
22493 #. type: verbatim
22494 #: ../fish/guestfish-actions.pod:468
22495 #, no-wrap
22496 msgid ""
22497 " blockdev-getro device\n"
22498 "\n"
22499 msgstr ""
22500
22501 #. type: =head2
22502 #: ../fish/guestfish-actions.pod:475
22503 msgid "blockdev-getsize64"
22504 msgstr ""
22505
22506 #. type: verbatim
22507 #: ../fish/guestfish-actions.pod:477
22508 #, no-wrap
22509 msgid ""
22510 " blockdev-getsize64 device\n"
22511 "\n"
22512 msgstr ""
22513
22514 #. type: textblock
22515 #: ../fish/guestfish-actions.pod:481
22516 msgid "See also L</blockdev-getsz>."
22517 msgstr ""
22518
22519 #. type: =head2
22520 #: ../fish/guestfish-actions.pod:485
22521 msgid "blockdev-getss"
22522 msgstr ""
22523
22524 #. type: verbatim
22525 #: ../fish/guestfish-actions.pod:487
22526 #, no-wrap
22527 msgid ""
22528 " blockdev-getss device\n"
22529 "\n"
22530 msgstr ""
22531
22532 #. type: textblock
22533 #: ../fish/guestfish-actions.pod:492
22534 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22535 msgstr ""
22536
22537 #. type: =head2
22538 #: ../fish/guestfish-actions.pod:497
22539 msgid "blockdev-getsz"
22540 msgstr ""
22541
22542 #. type: verbatim
22543 #: ../fish/guestfish-actions.pod:499
22544 #, no-wrap
22545 msgid ""
22546 " blockdev-getsz device\n"
22547 "\n"
22548 msgstr ""
22549
22550 #. type: textblock
22551 #: ../fish/guestfish-actions.pod:504
22552 msgid ""
22553 "See also L</blockdev-getss> for the real sector size of the device, and "
22554 "L</blockdev-getsize64> for the more useful I<size in bytes>."
22555 msgstr ""
22556
22557 #. type: =head2
22558 #: ../fish/guestfish-actions.pod:510
22559 msgid "blockdev-rereadpt"
22560 msgstr ""
22561
22562 #. type: verbatim
22563 #: ../fish/guestfish-actions.pod:512
22564 #, no-wrap
22565 msgid ""
22566 " blockdev-rereadpt device\n"
22567 "\n"
22568 msgstr ""
22569
22570 #. type: =head2
22571 #: ../fish/guestfish-actions.pod:518
22572 msgid "blockdev-setbsz"
22573 msgstr ""
22574
22575 #. type: verbatim
22576 #: ../fish/guestfish-actions.pod:520
22577 #, no-wrap
22578 msgid ""
22579 " blockdev-setbsz device blocksize\n"
22580 "\n"
22581 msgstr ""
22582
22583 #. type: =head2
22584 #: ../fish/guestfish-actions.pod:529
22585 msgid "blockdev-setro"
22586 msgstr ""
22587
22588 #. type: verbatim
22589 #: ../fish/guestfish-actions.pod:531
22590 #, no-wrap
22591 msgid ""
22592 " blockdev-setro device\n"
22593 "\n"
22594 msgstr ""
22595
22596 #. type: =head2
22597 #: ../fish/guestfish-actions.pod:537
22598 msgid "blockdev-setrw"
22599 msgstr ""
22600
22601 #. type: verbatim
22602 #: ../fish/guestfish-actions.pod:539
22603 #, no-wrap
22604 msgid ""
22605 " blockdev-setrw device\n"
22606 "\n"
22607 msgstr ""
22608
22609 #. type: =head2
22610 #: ../fish/guestfish-actions.pod:545
22611 msgid "btrfs-filesystem-resize"
22612 msgstr ""
22613
22614 #. type: verbatim
22615 #: ../fish/guestfish-actions.pod:547
22616 #, no-wrap
22617 msgid ""
22618 " btrfs-filesystem-resize mountpoint [size:..]\n"
22619 "\n"
22620 msgstr ""
22621
22622 #. type: =head2
22623 #: ../fish/guestfish-actions.pod:570
22624 msgid "case-sensitive-path"
22625 msgstr ""
22626
22627 #. type: verbatim
22628 #: ../fish/guestfish-actions.pod:572
22629 #, no-wrap
22630 msgid ""
22631 " case-sensitive-path path\n"
22632 "\n"
22633 msgstr ""
22634
22635 #. type: textblock
22636 #: ../fish/guestfish-actions.pod:596
22637 msgid ""
22638 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
22639 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
22640 "how the directories were originally created under Windows)."
22641 msgstr ""
22642
22643 #. type: textblock
22644 #: ../fish/guestfish-actions.pod:604
22645 msgid "See also L</realpath>."
22646 msgstr ""
22647
22648 #. type: =head2
22649 #: ../fish/guestfish-actions.pod:606
22650 msgid "cat"
22651 msgstr ""
22652
22653 #. type: verbatim
22654 #: ../fish/guestfish-actions.pod:608
22655 #, no-wrap
22656 msgid ""
22657 " cat path\n"
22658 "\n"
22659 msgstr ""
22660
22661 #. type: textblock
22662 #: ../fish/guestfish-actions.pod:612
22663 msgid ""
22664 "Note that this function cannot correctly handle binary files (specifically, "
22665 "files containing C<\\0> character which is treated as end of string).  For "
22666 "those you need to use the L</read-file> or L</download> functions which have "
22667 "a more complex interface."
22668 msgstr ""
22669
22670 #. type: =head2
22671 #: ../fish/guestfish-actions.pod:620
22672 msgid "checksum"
22673 msgstr ""
22674
22675 #. type: verbatim
22676 #: ../fish/guestfish-actions.pod:622
22677 #, no-wrap
22678 msgid ""
22679 " checksum csumtype path\n"
22680 "\n"
22681 msgstr ""
22682
22683 #. type: textblock
22684 #: ../fish/guestfish-actions.pod:665
22685 msgid "To get the checksum for a device, use L</checksum-device>."
22686 msgstr ""
22687
22688 #. type: textblock
22689 #: ../fish/guestfish-actions.pod:667
22690 msgid "To get the checksums for many files, use L</checksums-out>."
22691 msgstr ""
22692
22693 #. type: =head2
22694 #: ../fish/guestfish-actions.pod:669
22695 msgid "checksum-device"
22696 msgstr ""
22697
22698 #. type: verbatim
22699 #: ../fish/guestfish-actions.pod:671
22700 #, no-wrap
22701 msgid ""
22702 " checksum-device csumtype device\n"
22703 "\n"
22704 msgstr ""
22705
22706 #. type: textblock
22707 #: ../fish/guestfish-actions.pod:673
22708 msgid ""
22709 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22710 "device named C<device>.  For the types of checksums supported see the "
22711 "L</checksum> command."
22712 msgstr ""
22713
22714 #. type: =head2
22715 #: ../fish/guestfish-actions.pod:677
22716 msgid "checksums-out"
22717 msgstr ""
22718
22719 #. type: verbatim
22720 #: ../fish/guestfish-actions.pod:679
22721 #, no-wrap
22722 msgid ""
22723 " checksums-out csumtype directory (sumsfile|-)\n"
22724 "\n"
22725 msgstr ""
22726
22727 #. type: =head2
22728 #: ../fish/guestfish-actions.pod:695
22729 msgid "chmod"
22730 msgstr ""
22731
22732 #. type: verbatim
22733 #: ../fish/guestfish-actions.pod:697
22734 #, no-wrap
22735 msgid ""
22736 " chmod mode path\n"
22737 "\n"
22738 msgstr ""
22739
22740 #. type: =head2
22741 #: ../fish/guestfish-actions.pod:708
22742 msgid "chown"
22743 msgstr ""
22744
22745 #. type: verbatim
22746 #: ../fish/guestfish-actions.pod:710
22747 #, no-wrap
22748 msgid ""
22749 " chown owner group path\n"
22750 "\n"
22751 msgstr ""
22752
22753 #. type: =head2
22754 #: ../fish/guestfish-actions.pod:718
22755 msgid "command"
22756 msgstr ""
22757
22758 #. type: verbatim
22759 #: ../fish/guestfish-actions.pod:720
22760 #, no-wrap
22761 msgid ""
22762 " command 'arguments ...'\n"
22763 "\n"
22764 msgstr ""
22765
22766 #. type: textblock
22767 #: ../fish/guestfish-actions.pod:727
22768 msgid ""
22769 "The single parameter is an argv-style list of arguments.  The first element "
22770 "is the name of the program to run.  Subsequent elements are parameters.  The "
22771 "list must be non-empty (ie. must contain a program name).  Note that the "
22772 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22773 msgstr ""
22774
22775 #. type: =head2
22776 #: ../fish/guestfish-actions.pod:755
22777 msgid "command-lines"
22778 msgstr ""
22779
22780 #. type: verbatim
22781 #: ../fish/guestfish-actions.pod:757
22782 #, no-wrap
22783 msgid ""
22784 " command-lines 'arguments ...'\n"
22785 "\n"
22786 msgstr ""
22787
22788 #. type: textblock
22789 #: ../fish/guestfish-actions.pod:759
22790 msgid "This is the same as L</command>, but splits the result into a list of lines."
22791 msgstr ""
22792
22793 #. type: textblock
22794 #: ../fish/guestfish-actions.pod:762
22795 msgid "See also: L</sh-lines>"
22796 msgstr ""
22797
22798 #. type: =head2
22799 #: ../fish/guestfish-actions.pod:767
22800 msgid "config"
22801 msgstr ""
22802
22803 #. type: verbatim
22804 #: ../fish/guestfish-actions.pod:769
22805 #, no-wrap
22806 msgid ""
22807 " config qemuparam qemuvalue\n"
22808 "\n"
22809 msgstr ""
22810
22811 #. type: =head2
22812 #: ../fish/guestfish-actions.pod:780
22813 msgid "copy-size"
22814 msgstr ""
22815
22816 #. type: verbatim
22817 #: ../fish/guestfish-actions.pod:782
22818 #, no-wrap
22819 msgid ""
22820 " copy-size src dest size\n"
22821 "\n"
22822 msgstr ""
22823
22824 #. type: =head2
22825 #: ../fish/guestfish-actions.pod:790
22826 msgid "cp"
22827 msgstr ""
22828
22829 #. type: verbatim
22830 #: ../fish/guestfish-actions.pod:792
22831 #, no-wrap
22832 msgid ""
22833 " cp src dest\n"
22834 "\n"
22835 msgstr ""
22836
22837 #. type: =head2
22838 #: ../fish/guestfish-actions.pod:797
22839 msgid "cp-a"
22840 msgstr ""
22841
22842 #. type: verbatim
22843 #: ../fish/guestfish-actions.pod:799
22844 #, no-wrap
22845 msgid ""
22846 " cp-a src dest\n"
22847 "\n"
22848 msgstr ""
22849
22850 #. type: =head2
22851 #: ../fish/guestfish-actions.pod:804
22852 msgid "dd"
22853 msgstr ""
22854
22855 #. type: verbatim
22856 #: ../fish/guestfish-actions.pod:806
22857 #, no-wrap
22858 msgid ""
22859 " dd src dest\n"
22860 "\n"
22861 msgstr ""
22862
22863 #. type: textblock
22864 #: ../fish/guestfish-actions.pod:813
22865 msgid ""
22866 "If the destination is a device, it must be as large or larger than the "
22867 "source file or device, otherwise the copy will fail.  This command cannot do "
22868 "partial copies (see L</copy-size>)."
22869 msgstr ""
22870
22871 #. type: =head2
22872 #: ../fish/guestfish-actions.pod:817
22873 msgid "df"
22874 msgstr ""
22875
22876 #. type: verbatim
22877 #: ../fish/guestfish-actions.pod:819
22878 #, no-wrap
22879 msgid ""
22880 " df\n"
22881 "\n"
22882 msgstr ""
22883
22884 #. type: textblock
22885 #: ../fish/guestfish-actions.pod:823 ../fish/guestfish-actions.pod:834
22886 msgid ""
22887 "This command is mostly useful for interactive sessions.  It is I<not> "
22888 "intended that you try to parse the output string.  Use L</statvfs> from "
22889 "programs."
22890 msgstr ""
22891
22892 #. type: =head2
22893 #: ../fish/guestfish-actions.pod:827
22894 msgid "df-h"
22895 msgstr ""
22896
22897 #. type: verbatim
22898 #: ../fish/guestfish-actions.pod:829
22899 #, no-wrap
22900 msgid ""
22901 " df-h\n"
22902 "\n"
22903 msgstr ""
22904
22905 #. type: =head2
22906 #: ../fish/guestfish-actions.pod:838
22907 msgid "dmesg"
22908 msgstr ""
22909
22910 #. type: verbatim
22911 #: ../fish/guestfish-actions.pod:840
22912 #, no-wrap
22913 msgid ""
22914 " dmesg\n"
22915 "\n"
22916 msgstr ""
22917
22918 #. type: textblock
22919 #: ../fish/guestfish-actions.pod:846
22920 msgid ""
22921 "Another way to get the same information is to enable verbose messages with "
22922 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22923 "before running the program."
22924 msgstr ""
22925
22926 #. type: =head2
22927 #: ../fish/guestfish-actions.pod:851
22928 msgid "download"
22929 msgstr ""
22930
22931 #. type: verbatim
22932 #: ../fish/guestfish-actions.pod:853
22933 #, no-wrap
22934 msgid ""
22935 " download remotefilename (filename|-)\n"
22936 "\n"
22937 msgstr ""
22938
22939 #. type: textblock
22940 #: ../fish/guestfish-actions.pod:860
22941 msgid "See also L</upload>, L</cat>."
22942 msgstr ""
22943
22944 #. type: =head2
22945 #: ../fish/guestfish-actions.pod:864
22946 msgid "download-offset"
22947 msgstr ""
22948
22949 #. type: verbatim
22950 #: ../fish/guestfish-actions.pod:866
22951 #, no-wrap
22952 msgid ""
22953 " download-offset remotefilename (filename|-) offset size\n"
22954 "\n"
22955 msgstr ""
22956
22957 #. type: textblock
22958 #: ../fish/guestfish-actions.pod:874
22959 msgid ""
22960 "Note that there is no limit on the amount of data that can be downloaded "
22961 "with this call, unlike with L</pread>, and this call always reads the full "
22962 "amount unless an error occurs."
22963 msgstr ""
22964
22965 #. type: textblock
22966 #: ../fish/guestfish-actions.pod:879
22967 msgid "See also L</download>, L</pread>."
22968 msgstr ""
22969
22970 #. type: =head2
22971 #: ../fish/guestfish-actions.pod:883
22972 msgid "drop-caches"
22973 msgstr ""
22974
22975 #. type: verbatim
22976 #: ../fish/guestfish-actions.pod:885
22977 #, no-wrap
22978 msgid ""
22979 " drop-caches whattodrop\n"
22980 "\n"
22981 msgstr ""
22982
22983 #. type: =head2
22984 #: ../fish/guestfish-actions.pod:897
22985 msgid "du"
22986 msgstr ""
22987
22988 #. type: verbatim
22989 #: ../fish/guestfish-actions.pod:899
22990 #, no-wrap
22991 msgid ""
22992 " du path\n"
22993 "\n"
22994 msgstr ""
22995
22996 #. type: =head2
22997 #: ../fish/guestfish-actions.pod:911
22998 msgid "e2fsck-f"
22999 msgstr ""
23000
23001 #. type: verbatim
23002 #: ../fish/guestfish-actions.pod:913
23003 #, no-wrap
23004 msgid ""
23005 " e2fsck-f device\n"
23006 "\n"
23007 msgstr ""
23008
23009 #. type: textblock
23010 #: ../fish/guestfish-actions.pod:919
23011 msgid ""
23012 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
23013 "should use L</fsck>."
23014 msgstr ""
23015
23016 #. type: =head2
23017 #: ../fish/guestfish-actions.pod:922
23018 msgid "echo-daemon"
23019 msgstr ""
23020
23021 #. type: verbatim
23022 #: ../fish/guestfish-actions.pod:924
23023 #, no-wrap
23024 msgid ""
23025 " echo-daemon 'words ...'\n"
23026 "\n"
23027 msgstr ""
23028
23029 #. type: textblock
23030 #: ../fish/guestfish-actions.pod:931
23031 msgid "See also L</ping-daemon>."
23032 msgstr ""
23033
23034 #. type: =head2
23035 #: ../fish/guestfish-actions.pod:933
23036 msgid "egrep"
23037 msgstr ""
23038
23039 #. type: verbatim
23040 #: ../fish/guestfish-actions.pod:935
23041 #, no-wrap
23042 msgid ""
23043 " egrep regex path\n"
23044 "\n"
23045 msgstr ""
23046
23047 #. type: =head2
23048 #: ../fish/guestfish-actions.pod:943
23049 msgid "egrepi"
23050 msgstr ""
23051
23052 #. type: verbatim
23053 #: ../fish/guestfish-actions.pod:945
23054 #, no-wrap
23055 msgid ""
23056 " egrepi regex path\n"
23057 "\n"
23058 msgstr ""
23059
23060 #. type: =head2
23061 #: ../fish/guestfish-actions.pod:953
23062 msgid "equal"
23063 msgstr ""
23064
23065 #. type: verbatim
23066 #: ../fish/guestfish-actions.pod:955
23067 #, no-wrap
23068 msgid ""
23069 " equal file1 file2\n"
23070 "\n"
23071 msgstr ""
23072
23073 #. type: =head2
23074 #: ../fish/guestfish-actions.pod:962
23075 msgid "exists"
23076 msgstr ""
23077
23078 #. type: verbatim
23079 #: ../fish/guestfish-actions.pod:964
23080 #, no-wrap
23081 msgid ""
23082 " exists path\n"
23083 "\n"
23084 msgstr ""
23085
23086 #. type: textblock
23087 #: ../fish/guestfish-actions.pod:969
23088 msgid "See also L</is-file>, L</is-dir>, L</stat>."
23089 msgstr ""
23090
23091 #. type: =head2
23092 #: ../fish/guestfish-actions.pod:971
23093 msgid "fallocate"
23094 msgstr ""
23095
23096 #. type: verbatim
23097 #: ../fish/guestfish-actions.pod:973
23098 #, no-wrap
23099 msgid ""
23100 " fallocate path len\n"
23101 "\n"
23102 msgstr ""
23103
23104 #. type: =head2
23105 #: ../fish/guestfish-actions.pod:990
23106 msgid "fallocate64"
23107 msgstr ""
23108
23109 #. type: verbatim
23110 #: ../fish/guestfish-actions.pod:992
23111 #, no-wrap
23112 msgid ""
23113 " fallocate64 path len\n"
23114 "\n"
23115 msgstr ""
23116
23117 #. type: textblock
23118 #: ../fish/guestfish-actions.pod:998
23119 msgid ""
23120 "Note that this call allocates disk blocks for the file.  To create a sparse "
23121 "file use L</truncate-size> instead."
23122 msgstr ""
23123
23124 #. type: textblock
23125 #: ../fish/guestfish-actions.pod:1001
23126 msgid ""
23127 "The deprecated call L</fallocate> does the same, but owing to an oversight "
23128 "it only allowed 30 bit lengths to be specified, effectively limiting the "
23129 "maximum size of files created through that call to 1GB."
23130 msgstr ""
23131
23132 #. type: =head2
23133 #: ../fish/guestfish-actions.pod:1010
23134 msgid "fgrep"
23135 msgstr ""
23136
23137 #. type: verbatim
23138 #: ../fish/guestfish-actions.pod:1012
23139 #, no-wrap
23140 msgid ""
23141 " fgrep pattern path\n"
23142 "\n"
23143 msgstr ""
23144
23145 #. type: =head2
23146 #: ../fish/guestfish-actions.pod:1020
23147 msgid "fgrepi"
23148 msgstr ""
23149
23150 #. type: verbatim
23151 #: ../fish/guestfish-actions.pod:1022
23152 #, no-wrap
23153 msgid ""
23154 " fgrepi pattern path\n"
23155 "\n"
23156 msgstr ""
23157
23158 #. type: =head2
23159 #: ../fish/guestfish-actions.pod:1030
23160 msgid "file"
23161 msgstr ""
23162
23163 #. type: verbatim
23164 #: ../fish/guestfish-actions.pod:1032
23165 #, no-wrap
23166 msgid ""
23167 " file path\n"
23168 "\n"
23169 msgstr ""
23170
23171 #. type: textblock
23172 #: ../fish/guestfish-actions.pod:1048
23173 msgid ""
23174 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
23175 "(etc), L</is-zero>."
23176 msgstr ""
23177
23178 #. type: =head2
23179 #: ../fish/guestfish-actions.pod:1051
23180 msgid "file-architecture"
23181 msgstr ""
23182
23183 #. type: verbatim
23184 #: ../fish/guestfish-actions.pod:1053
23185 #, no-wrap
23186 msgid ""
23187 " file-architecture filename\n"
23188 "\n"
23189 msgstr ""
23190
23191 #. type: =head2
23192 #: ../fish/guestfish-actions.pod:1156
23193 msgid "filesize"
23194 msgstr ""
23195
23196 #. type: verbatim
23197 #: ../fish/guestfish-actions.pod:1158
23198 #, no-wrap
23199 msgid ""
23200 " filesize file\n"
23201 "\n"
23202 msgstr ""
23203
23204 #. type: textblock
23205 #: ../fish/guestfish-actions.pod:1162
23206 msgid ""
23207 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
23208 "L</is-file> etc.  To get the size of block devices, use "
23209 "L</blockdev-getsize64>."
23210 msgstr ""
23211
23212 #. type: =head2
23213 #: ../fish/guestfish-actions.pod:1166
23214 msgid "fill"
23215 msgstr ""
23216
23217 #. type: verbatim
23218 #: ../fish/guestfish-actions.pod:1168
23219 #, no-wrap
23220 msgid ""
23221 " fill c len path\n"
23222 "\n"
23223 msgstr ""
23224
23225 #. type: textblock
23226 #: ../fish/guestfish-actions.pod:1174
23227 msgid ""
23228 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
23229 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
23230 "L</fill-pattern>."
23231 msgstr ""
23232
23233 #. type: =head2
23234 #: ../fish/guestfish-actions.pod:1179
23235 msgid "fill-pattern"
23236 msgstr ""
23237
23238 #. type: verbatim
23239 #: ../fish/guestfish-actions.pod:1181
23240 #, no-wrap
23241 msgid ""
23242 " fill-pattern pattern len path\n"
23243 "\n"
23244 msgstr ""
23245
23246 #. type: textblock
23247 #: ../fish/guestfish-actions.pod:1183
23248 msgid ""
23249 "This function is like L</fill> except that it creates a new file of length "
23250 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
23251 "is truncated if necessary to ensure the length of the file is exactly C<len> "
23252 "bytes."
23253 msgstr ""
23254
23255 #. type: =head2
23256 #: ../fish/guestfish-actions.pod:1188
23257 msgid "find"
23258 msgstr ""
23259
23260 #. type: verbatim
23261 #: ../fish/guestfish-actions.pod:1190
23262 #, no-wrap
23263 msgid ""
23264 " find directory\n"
23265 "\n"
23266 msgstr ""
23267
23268 #. type: textblock
23269 #: ../fish/guestfish-actions.pod:1204
23270 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
23271 msgstr ""
23272
23273 #. type: textblock
23274 #: ../fish/guestfish-actions.pod:1217
23275 msgid "See also L</find0>."
23276 msgstr ""
23277
23278 #. type: =head2
23279 #: ../fish/guestfish-actions.pod:1222
23280 msgid "find0"
23281 msgstr ""
23282
23283 #. type: verbatim
23284 #: ../fish/guestfish-actions.pod:1224
23285 #, no-wrap
23286 msgid ""
23287 " find0 directory (files|-)\n"
23288 "\n"
23289 msgstr ""
23290
23291 #. type: textblock
23292 #: ../fish/guestfish-actions.pod:1230
23293 msgid "This command works the same way as L</find> with the following exceptions:"
23294 msgstr ""
23295
23296 #. type: =head2
23297 #: ../fish/guestfish-actions.pod:1257
23298 msgid "findfs-label"
23299 msgstr ""
23300
23301 #. type: verbatim
23302 #: ../fish/guestfish-actions.pod:1259
23303 #, no-wrap
23304 msgid ""
23305 " findfs-label label\n"
23306 "\n"
23307 msgstr ""
23308
23309 #. type: textblock
23310 #: ../fish/guestfish-actions.pod:1265
23311 msgid "To find the label of a filesystem, use L</vfs-label>."
23312 msgstr ""
23313
23314 #. type: =head2
23315 #: ../fish/guestfish-actions.pod:1267
23316 msgid "findfs-uuid"
23317 msgstr ""
23318
23319 #. type: verbatim
23320 #: ../fish/guestfish-actions.pod:1269
23321 #, no-wrap
23322 msgid ""
23323 " findfs-uuid uuid\n"
23324 "\n"
23325 msgstr ""
23326
23327 #. type: textblock
23328 #: ../fish/guestfish-actions.pod:1275
23329 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23330 msgstr ""
23331
23332 #. type: =head2
23333 #: ../fish/guestfish-actions.pod:1277
23334 msgid "fsck"
23335 msgstr ""
23336
23337 #. type: verbatim
23338 #: ../fish/guestfish-actions.pod:1279
23339 #, no-wrap
23340 msgid ""
23341 " fsck fstype device\n"
23342 "\n"
23343 msgstr ""
23344
23345 #. type: =head2
23346 #: ../fish/guestfish-actions.pod:1309
23347 msgid "get-append"
23348 msgstr ""
23349
23350 #. type: verbatim
23351 #: ../fish/guestfish-actions.pod:1311
23352 #, no-wrap
23353 msgid ""
23354 " get-append\n"
23355 "\n"
23356 msgstr ""
23357
23358 #. type: =head2
23359 #: ../fish/guestfish-actions.pod:1318
23360 msgid "get-attach-method"
23361 msgstr ""
23362
23363 #. type: verbatim
23364 #: ../fish/guestfish-actions.pod:1320
23365 #, no-wrap
23366 msgid ""
23367 " get-attach-method\n"
23368 "\n"
23369 msgstr ""
23370
23371 #. type: textblock
23372 #: ../fish/guestfish-actions.pod:1322
23373 msgid "Return the current attach method.  See L</set-attach-method>."
23374 msgstr ""
23375
23376 #. type: =head2
23377 #: ../fish/guestfish-actions.pod:1324
23378 msgid "get-autosync"
23379 msgstr ""
23380
23381 #. type: verbatim
23382 #: ../fish/guestfish-actions.pod:1326
23383 #, no-wrap
23384 msgid ""
23385 " get-autosync\n"
23386 "\n"
23387 msgstr ""
23388
23389 #. type: =head2
23390 #: ../fish/guestfish-actions.pod:1330
23391 msgid "get-direct"
23392 msgstr ""
23393
23394 #. type: verbatim
23395 #: ../fish/guestfish-actions.pod:1332
23396 #, no-wrap
23397 msgid ""
23398 " get-direct\n"
23399 "\n"
23400 msgstr ""
23401
23402 #. type: =head2
23403 #: ../fish/guestfish-actions.pod:1336
23404 msgid "get-e2label"
23405 msgstr ""
23406
23407 #. type: verbatim
23408 #: ../fish/guestfish-actions.pod:1338
23409 #, no-wrap
23410 msgid ""
23411 " get-e2label device\n"
23412 "\n"
23413 msgstr ""
23414
23415 #. type: =head2
23416 #: ../fish/guestfish-actions.pod:1350
23417 msgid "get-e2uuid"
23418 msgstr ""
23419
23420 #. type: verbatim
23421 #: ../fish/guestfish-actions.pod:1352
23422 #, no-wrap
23423 msgid ""
23424 " get-e2uuid device\n"
23425 "\n"
23426 msgstr ""
23427
23428 #. type: =head2
23429 #: ../fish/guestfish-actions.pod:1364
23430 msgid "get-memsize"
23431 msgstr ""
23432
23433 #. type: verbatim
23434 #: ../fish/guestfish-actions.pod:1366
23435 #, no-wrap
23436 msgid ""
23437 " get-memsize\n"
23438 "\n"
23439 msgstr ""
23440
23441 #. type: textblock
23442 #: ../fish/guestfish-actions.pod:1371
23443 msgid ""
23444 "If L</set-memsize> was not called on this handle, and if "
23445 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23446 "value for memsize."
23447 msgstr ""
23448
23449 #. type: =head2
23450 #: ../fish/guestfish-actions.pod:1378
23451 msgid "get-network"
23452 msgstr ""
23453
23454 #. type: verbatim
23455 #: ../fish/guestfish-actions.pod:1380
23456 #, no-wrap
23457 msgid ""
23458 " get-network\n"
23459 "\n"
23460 msgstr ""
23461
23462 #. type: =head2
23463 #: ../fish/guestfish-actions.pod:1384
23464 msgid "get-path"
23465 msgstr ""
23466
23467 #. type: verbatim
23468 #: ../fish/guestfish-actions.pod:1386
23469 #, no-wrap
23470 msgid ""
23471 " get-path\n"
23472 "\n"
23473 msgstr ""
23474
23475 #. type: =head2
23476 #: ../fish/guestfish-actions.pod:1393
23477 msgid "get-pid"
23478 msgstr ""
23479
23480 #. type: =head2
23481 #: ../fish/guestfish-actions.pod:1395
23482 msgid "pid"
23483 msgstr ""
23484
23485 #. type: verbatim
23486 #: ../fish/guestfish-actions.pod:1397
23487 #, no-wrap
23488 msgid ""
23489 " get-pid\n"
23490 "\n"
23491 msgstr ""
23492
23493 #. type: =head2
23494 #: ../fish/guestfish-actions.pod:1404
23495 msgid "get-qemu"
23496 msgstr ""
23497
23498 #. type: verbatim
23499 #: ../fish/guestfish-actions.pod:1406
23500 #, no-wrap
23501 msgid ""
23502 " get-qemu\n"
23503 "\n"
23504 msgstr ""
23505
23506 #. type: =head2
23507 #: ../fish/guestfish-actions.pod:1413
23508 msgid "get-recovery-proc"
23509 msgstr ""
23510
23511 #. type: verbatim
23512 #: ../fish/guestfish-actions.pod:1415
23513 #, no-wrap
23514 msgid ""
23515 " get-recovery-proc\n"
23516 "\n"
23517 msgstr ""
23518
23519 #. type: =head2
23520 #: ../fish/guestfish-actions.pod:1419
23521 msgid "get-selinux"
23522 msgstr ""
23523
23524 #. type: verbatim
23525 #: ../fish/guestfish-actions.pod:1421
23526 #, no-wrap
23527 msgid ""
23528 " get-selinux\n"
23529 "\n"
23530 msgstr ""
23531
23532 #. type: textblock
23533 #: ../fish/guestfish-actions.pod:1423
23534 msgid ""
23535 "This returns the current setting of the selinux flag which is passed to the "
23536 "appliance at boot time.  See L</set-selinux>."
23537 msgstr ""
23538
23539 #. type: =head2
23540 #: ../fish/guestfish-actions.pod:1429
23541 msgid "get-state"
23542 msgstr ""
23543
23544 #. type: verbatim
23545 #: ../fish/guestfish-actions.pod:1431
23546 #, no-wrap
23547 msgid ""
23548 " get-state\n"
23549 "\n"
23550 msgstr ""
23551
23552 #. type: =head2
23553 #: ../fish/guestfish-actions.pod:1438
23554 msgid "get-trace"
23555 msgstr ""
23556
23557 #. type: verbatim
23558 #: ../fish/guestfish-actions.pod:1440
23559 #, no-wrap
23560 msgid ""
23561 " get-trace\n"
23562 "\n"
23563 msgstr ""
23564
23565 #. type: =head2
23566 #: ../fish/guestfish-actions.pod:1444
23567 msgid "get-umask"
23568 msgstr ""
23569
23570 #. type: verbatim
23571 #: ../fish/guestfish-actions.pod:1446
23572 #, no-wrap
23573 msgid ""
23574 " get-umask\n"
23575 "\n"
23576 msgstr ""
23577
23578 #. type: textblock
23579 #: ../fish/guestfish-actions.pod:1448
23580 msgid ""
23581 "Return the current umask.  By default the umask is C<022> unless it has been "
23582 "set by calling L</umask>."
23583 msgstr ""
23584
23585 #. type: =head2
23586 #: ../fish/guestfish-actions.pod:1451
23587 msgid "get-verbose"
23588 msgstr ""
23589
23590 #. type: verbatim
23591 #: ../fish/guestfish-actions.pod:1453
23592 #, no-wrap
23593 msgid ""
23594 " get-verbose\n"
23595 "\n"
23596 msgstr ""
23597
23598 #. type: =head2
23599 #: ../fish/guestfish-actions.pod:1457
23600 msgid "getcon"
23601 msgstr ""
23602
23603 #. type: verbatim
23604 #: ../fish/guestfish-actions.pod:1459
23605 #, no-wrap
23606 msgid ""
23607 " getcon\n"
23608 "\n"
23609 msgstr ""
23610
23611 #. type: textblock
23612 #: ../fish/guestfish-actions.pod:1463
23613 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23614 msgstr ""
23615
23616 #. type: =head2
23617 #: ../fish/guestfish-actions.pod:1466
23618 msgid "getxattr"
23619 msgstr ""
23620
23621 #. type: verbatim
23622 #: ../fish/guestfish-actions.pod:1468
23623 #, no-wrap
23624 msgid ""
23625 " getxattr path name\n"
23626 "\n"
23627 msgstr ""
23628
23629 #. type: textblock
23630 #: ../fish/guestfish-actions.pod:1470
23631 msgid ""
23632 "Get a single extended attribute from file C<path> named C<name>.  This call "
23633 "follows symlinks.  If you want to lookup an extended attribute for the "
23634 "symlink itself, use L</lgetxattr>."
23635 msgstr ""
23636
23637 #. type: textblock
23638 #: ../fish/guestfish-actions.pod:1474 ../fish/guestfish-actions.pod:2501
23639 msgid ""
23640 "Normally it is better to get all extended attributes from a file in one go "
23641 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23642 "buggy and do not provide a way to list out attributes.  For these "
23643 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23644 "attributes you want in advance and call this function."
23645 msgstr ""
23646
23647 #. type: textblock
23648 #: ../fish/guestfish-actions.pod:1484
23649 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23650 msgstr ""
23651
23652 #. type: =head2
23653 #: ../fish/guestfish-actions.pod:1486
23654 msgid "getxattrs"
23655 msgstr ""
23656
23657 #. type: verbatim
23658 #: ../fish/guestfish-actions.pod:1488
23659 #, no-wrap
23660 msgid ""
23661 " getxattrs path\n"
23662 "\n"
23663 msgstr ""
23664
23665 #. type: textblock
23666 #: ../fish/guestfish-actions.pod:1496
23667 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23668 msgstr ""
23669
23670 #. type: =head2
23671 #: ../fish/guestfish-actions.pod:1498
23672 msgid "glob-expand"
23673 msgstr ""
23674
23675 #. type: verbatim
23676 #: ../fish/guestfish-actions.pod:1500
23677 #, no-wrap
23678 msgid ""
23679 " glob-expand pattern\n"
23680 "\n"
23681 msgstr ""
23682
23683 #. type: =head2
23684 #: ../fish/guestfish-actions.pod:1513
23685 msgid "grep"
23686 msgstr ""
23687
23688 #. type: verbatim
23689 #: ../fish/guestfish-actions.pod:1515
23690 #, no-wrap
23691 msgid ""
23692 " grep regex path\n"
23693 "\n"
23694 msgstr ""
23695
23696 #. type: =head2
23697 #: ../fish/guestfish-actions.pod:1523
23698 msgid "grepi"
23699 msgstr ""
23700
23701 #. type: verbatim
23702 #: ../fish/guestfish-actions.pod:1525
23703 #, no-wrap
23704 msgid ""
23705 " grepi regex path\n"
23706 "\n"
23707 msgstr ""
23708
23709 #. type: =head2
23710 #: ../fish/guestfish-actions.pod:1533
23711 msgid "grub-install"
23712 msgstr ""
23713
23714 #. type: verbatim
23715 #: ../fish/guestfish-actions.pod:1535
23716 #, no-wrap
23717 msgid ""
23718 " grub-install root device\n"
23719 "\n"
23720 msgstr ""
23721
23722 #. type: =head2
23723 #: ../fish/guestfish-actions.pod:1551
23724 msgid "head"
23725 msgstr ""
23726
23727 #. type: verbatim
23728 #: ../fish/guestfish-actions.pod:1553
23729 #, no-wrap
23730 msgid ""
23731 " head path\n"
23732 "\n"
23733 msgstr ""
23734
23735 #. type: =head2
23736 #: ../fish/guestfish-actions.pod:1561
23737 msgid "head-n"
23738 msgstr ""
23739
23740 #. type: verbatim
23741 #: ../fish/guestfish-actions.pod:1563
23742 #, no-wrap
23743 msgid ""
23744 " head-n nrlines path\n"
23745 "\n"
23746 msgstr ""
23747
23748 #. type: =head2
23749 #: ../fish/guestfish-actions.pod:1576
23750 msgid "hexdump"
23751 msgstr ""
23752
23753 #. type: verbatim
23754 #: ../fish/guestfish-actions.pod:1578
23755 #, no-wrap
23756 msgid ""
23757 " hexdump path\n"
23758 "\n"
23759 msgstr ""
23760
23761 #. type: =head2
23762 #: ../fish/guestfish-actions.pod:1586
23763 msgid "initrd-cat"
23764 msgstr ""
23765
23766 #. type: verbatim
23767 #: ../fish/guestfish-actions.pod:1588
23768 #, no-wrap
23769 msgid ""
23770 " initrd-cat initrdpath filename\n"
23771 "\n"
23772 msgstr ""
23773
23774 #. type: textblock
23775 #: ../fish/guestfish-actions.pod:1600
23776 msgid "See also L</initrd-list>."
23777 msgstr ""
23778
23779 #. type: =head2
23780 #: ../fish/guestfish-actions.pod:1605
23781 msgid "initrd-list"
23782 msgstr ""
23783
23784 #. type: verbatim
23785 #: ../fish/guestfish-actions.pod:1607
23786 #, no-wrap
23787 msgid ""
23788 " initrd-list path\n"
23789 "\n"
23790 msgstr ""
23791
23792 #. type: =head2
23793 #: ../fish/guestfish-actions.pod:1619
23794 msgid "inotify-add-watch"
23795 msgstr ""
23796
23797 #. type: verbatim
23798 #: ../fish/guestfish-actions.pod:1621
23799 #, no-wrap
23800 msgid ""
23801 " inotify-add-watch path mask\n"
23802 "\n"
23803 msgstr ""
23804
23805 #. type: =head2
23806 #: ../fish/guestfish-actions.pod:1633
23807 msgid "inotify-close"
23808 msgstr ""
23809
23810 #. type: verbatim
23811 #: ../fish/guestfish-actions.pod:1635
23812 #, no-wrap
23813 msgid ""
23814 " inotify-close\n"
23815 "\n"
23816 msgstr ""
23817
23818 #. type: =head2
23819 #: ../fish/guestfish-actions.pod:1641
23820 msgid "inotify-files"
23821 msgstr ""
23822
23823 #. type: verbatim
23824 #: ../fish/guestfish-actions.pod:1643
23825 #, no-wrap
23826 msgid ""
23827 " inotify-files\n"
23828 "\n"
23829 msgstr ""
23830
23831 #. type: textblock
23832 #: ../fish/guestfish-actions.pod:1645
23833 msgid ""
23834 "This function is a helpful wrapper around L</inotify-read> which just "
23835 "returns a list of pathnames of objects that were touched.  The returned "
23836 "pathnames are sorted and deduplicated."
23837 msgstr ""
23838
23839 #. type: =head2
23840 #: ../fish/guestfish-actions.pod:1649
23841 msgid "inotify-init"
23842 msgstr ""
23843
23844 #. type: verbatim
23845 #: ../fish/guestfish-actions.pod:1651
23846 #, no-wrap
23847 msgid ""
23848 " inotify-init maxevents\n"
23849 "\n"
23850 msgstr ""
23851
23852 #. type: textblock
23853 #: ../fish/guestfish-actions.pod:1657
23854 msgid ""
23855 "C<maxevents> is the maximum number of events which will be queued up between "
23856 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23857 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23858 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23859 "but records the fact that it threw them away by setting a flag "
23860 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23861 msgstr ""
23862
23863 #. type: textblock
23864 #: ../fish/guestfish-actions.pod:1667
23865 msgid ""
23866 "Before any events are generated, you have to add some watches to the "
23867 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23868 "L</inotify-watch-all>."
23869 msgstr ""
23870
23871 #. type: textblock
23872 #: ../fish/guestfish-actions.pod:1673
23873 msgid ""
23874 "Queued up events should be read periodically by calling L</inotify-read> (or "
23875 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23876 "If you don't read the events out often enough then you risk the internal "
23877 "queue overflowing."
23878 msgstr ""
23879
23880 #. type: textblock
23881 #: ../fish/guestfish-actions.pod:1680
23882 msgid ""
23883 "The handle should be closed after use by calling L</inotify-close>.  This "
23884 "also removes any watches automatically."
23885 msgstr ""
23886
23887 #. type: =head2
23888 #: ../fish/guestfish-actions.pod:1689
23889 msgid "inotify-read"
23890 msgstr ""
23891
23892 #. type: verbatim
23893 #: ../fish/guestfish-actions.pod:1691
23894 #, no-wrap
23895 msgid ""
23896 " inotify-read\n"
23897 "\n"
23898 msgstr ""
23899
23900 #. type: =head2
23901 #: ../fish/guestfish-actions.pod:1704
23902 msgid "inotify-rm-watch"
23903 msgstr ""
23904
23905 #. type: verbatim
23906 #: ../fish/guestfish-actions.pod:1706
23907 #, no-wrap
23908 msgid ""
23909 " inotify-rm-watch wd\n"
23910 "\n"
23911 msgstr ""
23912
23913 #. type: textblock
23914 #: ../fish/guestfish-actions.pod:1708
23915 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23916 msgstr ""
23917
23918 #. type: =head2
23919 #: ../fish/guestfish-actions.pod:1711
23920 msgid "inspect-get-arch"
23921 msgstr ""
23922
23923 #. type: verbatim
23924 #: ../fish/guestfish-actions.pod:1713
23925 #, no-wrap
23926 msgid ""
23927 " inspect-get-arch root\n"
23928 "\n"
23929 msgstr ""
23930
23931 #. type: textblock
23932 #: ../fish/guestfish-actions.pod:1715
23933 msgid ""
23934 "This returns the architecture of the inspected operating system.  The "
23935 "possible return values are listed under L</file-architecture>."
23936 msgstr ""
23937
23938 #. type: =head2
23939 #: ../fish/guestfish-actions.pod:1724
23940 msgid "inspect-get-distro"
23941 msgstr ""
23942
23943 #. type: verbatim
23944 #: ../fish/guestfish-actions.pod:1726
23945 #, no-wrap
23946 msgid ""
23947 " inspect-get-distro root\n"
23948 "\n"
23949 msgstr ""
23950
23951 #. type: =head2
23952 #: ../fish/guestfish-actions.pod:1807
23953 msgid "inspect-get-drive-mappings"
23954 msgstr ""
23955
23956 #. type: verbatim
23957 #: ../fish/guestfish-actions.pod:1809
23958 #, no-wrap
23959 msgid ""
23960 " inspect-get-drive-mappings root\n"
23961 "\n"
23962 msgstr ""
23963
23964 #. type: textblock
23965 #: ../fish/guestfish-actions.pod:1836
23966 msgid ""
23967 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23968 "L</inspect-get-mountpoints>, L</inspect-get-filesystems>."
23969 msgstr ""
23970
23971 #. type: =head2
23972 #: ../fish/guestfish-actions.pod:1840
23973 msgid "inspect-get-filesystems"
23974 msgstr ""
23975
23976 #. type: verbatim
23977 #: ../fish/guestfish-actions.pod:1842
23978 #, no-wrap
23979 msgid ""
23980 " inspect-get-filesystems root\n"
23981 "\n"
23982 msgstr ""
23983
23984 #. type: textblock
23985 #: ../fish/guestfish-actions.pod:1852
23986 msgid ""
23987 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23988 "L</inspect-get-mountpoints>."
23989 msgstr ""
23990
23991 #. type: =head2
23992 #: ../fish/guestfish-actions.pod:1855
23993 msgid "inspect-get-format"
23994 msgstr ""
23995
23996 #. type: verbatim
23997 #: ../fish/guestfish-actions.pod:1857
23998 #, no-wrap
23999 msgid ""
24000 " inspect-get-format root\n"
24001 "\n"
24002 msgstr ""
24003
24004 #. type: =head2
24005 #: ../fish/guestfish-actions.pod:1886
24006 msgid "inspect-get-hostname"
24007 msgstr ""
24008
24009 #. type: verbatim
24010 #: ../fish/guestfish-actions.pod:1888
24011 #, no-wrap
24012 msgid ""
24013 " inspect-get-hostname root\n"
24014 "\n"
24015 msgstr ""
24016
24017 #. type: =head2
24018 #: ../fish/guestfish-actions.pod:1898
24019 msgid "inspect-get-icon"
24020 msgstr ""
24021
24022 #. type: verbatim
24023 #: ../fish/guestfish-actions.pod:1900
24024 #, no-wrap
24025 msgid ""
24026 " inspect-get-icon root [favicon:..] [highquality:..]\n"
24027 "\n"
24028 msgstr ""
24029
24030 #. type: =head2
24031 #: ../fish/guestfish-actions.pod:1964
24032 msgid "inspect-get-major-version"
24033 msgstr ""
24034
24035 #. type: verbatim
24036 #: ../fish/guestfish-actions.pod:1966
24037 #, no-wrap
24038 msgid ""
24039 " inspect-get-major-version root\n"
24040 "\n"
24041 msgstr ""
24042
24043 #. type: =head2
24044 #: ../fish/guestfish-actions.pod:1982
24045 msgid "inspect-get-minor-version"
24046 msgstr ""
24047
24048 #. type: verbatim
24049 #: ../fish/guestfish-actions.pod:1984
24050 #, no-wrap
24051 msgid ""
24052 " inspect-get-minor-version root\n"
24053 "\n"
24054 msgstr ""
24055
24056 #. type: textblock
24057 #: ../fish/guestfish-actions.pod:1991
24058 msgid ""
24059 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
24060 "L</inspect-get-major-version>."
24061 msgstr ""
24062
24063 #. type: =head2
24064 #: ../fish/guestfish-actions.pod:1994
24065 msgid "inspect-get-mountpoints"
24066 msgstr ""
24067
24068 #. type: verbatim
24069 #: ../fish/guestfish-actions.pod:1996
24070 #, no-wrap
24071 msgid ""
24072 " inspect-get-mountpoints root\n"
24073 "\n"
24074 msgstr ""
24075
24076 #. type: textblock
24077 #: ../fish/guestfish-actions.pod:2015
24078 msgid ""
24079 "For operating systems like Windows which still use drive letters, this call "
24080 "will only return an entry for the first drive \"mounted on\" C</>.  For "
24081 "information about the mapping of drive letters to partitions, see "
24082 "L</inspect-get-drive-mappings>."
24083 msgstr ""
24084
24085 #. type: textblock
24086 #: ../fish/guestfish-actions.pod:2021
24087 msgid ""
24088 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
24089 "L</inspect-get-filesystems>."
24090 msgstr ""
24091
24092 #. type: =head2
24093 #: ../fish/guestfish-actions.pod:2024
24094 msgid "inspect-get-package-format"
24095 msgstr ""
24096
24097 #. type: verbatim
24098 #: ../fish/guestfish-actions.pod:2026
24099 #, no-wrap
24100 msgid ""
24101 " inspect-get-package-format root\n"
24102 "\n"
24103 msgstr ""
24104
24105 #. type: textblock
24106 #: ../fish/guestfish-actions.pod:2028
24107 msgid ""
24108 "This function and L</inspect-get-package-management> return the package "
24109 "format and package management tool used by the inspected operating system.  "
24110 "For example for Fedora these functions would return C<rpm> (package format) "
24111 "and C<yum> (package management)."
24112 msgstr ""
24113
24114 #. type: =head2
24115 #: ../fish/guestfish-actions.pod:2043
24116 msgid "inspect-get-package-management"
24117 msgstr ""
24118
24119 #. type: verbatim
24120 #: ../fish/guestfish-actions.pod:2045
24121 #, no-wrap
24122 msgid ""
24123 " inspect-get-package-management root\n"
24124 "\n"
24125 msgstr ""
24126
24127 #. type: textblock
24128 #: ../fish/guestfish-actions.pod:2047
24129 msgid ""
24130 "L</inspect-get-package-format> and this function return the package format "
24131 "and package management tool used by the inspected operating system.  For "
24132 "example for Fedora these functions would return C<rpm> (package format) and "
24133 "C<yum> (package management)."
24134 msgstr ""
24135
24136 #. type: =head2
24137 #: ../fish/guestfish-actions.pod:2064
24138 msgid "inspect-get-product-name"
24139 msgstr ""
24140
24141 #. type: verbatim
24142 #: ../fish/guestfish-actions.pod:2066
24143 #, no-wrap
24144 msgid ""
24145 " inspect-get-product-name root\n"
24146 "\n"
24147 msgstr ""
24148
24149 #. type: =head2
24150 #: ../fish/guestfish-actions.pod:2078
24151 msgid "inspect-get-product-variant"
24152 msgstr ""
24153
24154 #. type: verbatim
24155 #: ../fish/guestfish-actions.pod:2080
24156 #, no-wrap
24157 msgid ""
24158 " inspect-get-product-variant root\n"
24159 "\n"
24160 msgstr ""
24161
24162 #. type: textblock
24163 #: ../fish/guestfish-actions.pod:2101
24164 msgid ""
24165 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
24166 "L</inspect-get-product-name>, L</inspect-get-major-version>."
24167 msgstr ""
24168
24169 #. type: =head2
24170 #: ../fish/guestfish-actions.pod:2105
24171 msgid "inspect-get-roots"
24172 msgstr ""
24173
24174 #. type: verbatim
24175 #: ../fish/guestfish-actions.pod:2107
24176 #, no-wrap
24177 msgid ""
24178 " inspect-get-roots\n"
24179 "\n"
24180 msgstr ""
24181
24182 #. type: textblock
24183 #: ../fish/guestfish-actions.pod:2109
24184 msgid ""
24185 "This function is a convenient way to get the list of root devices, as "
24186 "returned from a previous call to L</inspect-os>, but without redoing the "
24187 "whole inspection process."
24188 msgstr ""
24189
24190 #. type: textblock
24191 #: ../fish/guestfish-actions.pod:2113
24192 msgid ""
24193 "This returns an empty list if either no root devices were found or the "
24194 "caller has not called L</inspect-os>."
24195 msgstr ""
24196
24197 #. type: =head2
24198 #: ../fish/guestfish-actions.pod:2118
24199 msgid "inspect-get-type"
24200 msgstr ""
24201
24202 #. type: verbatim
24203 #: ../fish/guestfish-actions.pod:2120
24204 #, no-wrap
24205 msgid ""
24206 " inspect-get-type root\n"
24207 "\n"
24208 msgstr ""
24209
24210 #. type: =head2
24211 #: ../fish/guestfish-actions.pod:2150
24212 msgid "inspect-get-windows-current-control-set"
24213 msgstr ""
24214
24215 #. type: verbatim
24216 #: ../fish/guestfish-actions.pod:2152
24217 #, no-wrap
24218 msgid ""
24219 " inspect-get-windows-current-control-set root\n"
24220 "\n"
24221 msgstr ""
24222
24223 #. type: =head2
24224 #: ../fish/guestfish-actions.pod:2163
24225 msgid "inspect-get-windows-systemroot"
24226 msgstr ""
24227
24228 #. type: verbatim
24229 #: ../fish/guestfish-actions.pod:2165
24230 #, no-wrap
24231 msgid ""
24232 " inspect-get-windows-systemroot root\n"
24233 "\n"
24234 msgstr ""
24235
24236 #. type: =head2
24237 #: ../fish/guestfish-actions.pod:2176
24238 msgid "inspect-is-live"
24239 msgstr ""
24240
24241 #. type: verbatim
24242 #: ../fish/guestfish-actions.pod:2178
24243 #, no-wrap
24244 msgid ""
24245 " inspect-is-live root\n"
24246 "\n"
24247 msgstr ""
24248
24249 #. type: textblock
24250 #: ../fish/guestfish-actions.pod:2180
24251 msgid ""
24252 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24253 "then this returns true if a live image was detected on the disk."
24254 msgstr ""
24255
24256 #. type: =head2
24257 #: ../fish/guestfish-actions.pod:2186
24258 msgid "inspect-is-multipart"
24259 msgstr ""
24260
24261 #. type: verbatim
24262 #: ../fish/guestfish-actions.pod:2188
24263 #, no-wrap
24264 msgid ""
24265 " inspect-is-multipart root\n"
24266 "\n"
24267 msgstr ""
24268
24269 #. type: textblock
24270 #: ../fish/guestfish-actions.pod:2190
24271 msgid ""
24272 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24273 "then this returns true if the disk is part of a set."
24274 msgstr ""
24275
24276 #. type: =head2
24277 #: ../fish/guestfish-actions.pod:2196
24278 msgid "inspect-is-netinst"
24279 msgstr ""
24280
24281 #. type: verbatim
24282 #: ../fish/guestfish-actions.pod:2198
24283 #, no-wrap
24284 msgid ""
24285 " inspect-is-netinst root\n"
24286 "\n"
24287 msgstr ""
24288
24289 #. type: textblock
24290 #: ../fish/guestfish-actions.pod:2200
24291 msgid ""
24292 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24293 "then this returns true if the disk is a network installer, ie. not a "
24294 "self-contained install CD but one which is likely to require network access "
24295 "to complete the install."
24296 msgstr ""
24297
24298 #. type: =head2
24299 #: ../fish/guestfish-actions.pod:2208
24300 msgid "inspect-list-applications"
24301 msgstr ""
24302
24303 #. type: verbatim
24304 #: ../fish/guestfish-actions.pod:2210
24305 #, no-wrap
24306 msgid ""
24307 " inspect-list-applications root\n"
24308 "\n"
24309 msgstr ""
24310
24311 #. type: textblock
24312 #: ../fish/guestfish-actions.pod:2214
24313 msgid ""
24314 "I<Note:> This call works differently from other parts of the inspection "
24315 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24316 "then mount up the disks, before calling this.  Listing applications is a "
24317 "significantly more difficult operation which requires access to the full "
24318 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24319 "are just returning data cached in the libguestfs handle, this call actually "
24320 "reads parts of the mounted filesystems during the call."
24321 msgstr ""
24322
24323 #. type: =head2
24324 #: ../fish/guestfish-actions.pod:2304
24325 msgid "inspect-os"
24326 msgstr ""
24327
24328 #. type: verbatim
24329 #: ../fish/guestfish-actions.pod:2306
24330 #, no-wrap
24331 msgid ""
24332 " inspect-os\n"
24333 "\n"
24334 msgstr ""
24335
24336 #. type: textblock
24337 #: ../fish/guestfish-actions.pod:2321
24338 msgid ""
24339 "You can pass the root string(s) returned to other L</inspect-get-*> "
24340 "functions in order to query further information about each operating system, "
24341 "such as the name and version."
24342 msgstr ""
24343
24344 #. type: textblock
24345 #: ../fish/guestfish-actions.pod:2326
24346 msgid ""
24347 "This function uses other libguestfs features such as L</mount-ro> and "
24348 "L</umount-all> in order to mount and unmount filesystems and look at the "
24349 "contents.  This should be called with no disks currently mounted.  The "
24350 "function may also use Augeas, so any existing Augeas handle will be closed."
24351 msgstr ""
24352
24353 #. type: textblock
24354 #: ../fish/guestfish-actions.pod:2338 ../fish/guestfish-actions.pod:2536 ../fish/guestfish-actions.pod:2595
24355 msgid "See also L</list-filesystems>."
24356 msgstr ""
24357
24358 #. type: =head2
24359 #: ../fish/guestfish-actions.pod:2340
24360 msgid "is-blockdev"
24361 msgstr ""
24362
24363 #. type: verbatim
24364 #: ../fish/guestfish-actions.pod:2342
24365 #, no-wrap
24366 msgid ""
24367 " is-blockdev path\n"
24368 "\n"
24369 msgstr ""
24370
24371 #. type: textblock
24372 #: ../fish/guestfish-actions.pod:2347 ../fish/guestfish-actions.pod:2365 ../fish/guestfish-actions.pod:2384 ../fish/guestfish-actions.pod:2393 ../fish/guestfish-actions.pod:2403 ../fish/guestfish-actions.pod:2437 ../fish/guestfish-actions.pod:2446
24373 msgid "See also L</stat>."
24374 msgstr ""
24375
24376 #. type: =head2
24377 #: ../fish/guestfish-actions.pod:2349
24378 msgid "is-busy"
24379 msgstr ""
24380
24381 #. type: verbatim
24382 #: ../fish/guestfish-actions.pod:2351
24383 #, no-wrap
24384 msgid ""
24385 " is-busy\n"
24386 "\n"
24387 msgstr ""
24388
24389 #. type: =head2
24390 #: ../fish/guestfish-actions.pod:2358
24391 msgid "is-chardev"
24392 msgstr ""
24393
24394 #. type: verbatim
24395 #: ../fish/guestfish-actions.pod:2360
24396 #, no-wrap
24397 msgid ""
24398 " is-chardev path\n"
24399 "\n"
24400 msgstr ""
24401
24402 #. type: =head2
24403 #: ../fish/guestfish-actions.pod:2367
24404 msgid "is-config"
24405 msgstr ""
24406
24407 #. type: verbatim
24408 #: ../fish/guestfish-actions.pod:2369
24409 #, no-wrap
24410 msgid ""
24411 " is-config\n"
24412 "\n"
24413 msgstr ""
24414
24415 #. type: =head2
24416 #: ../fish/guestfish-actions.pod:2376
24417 msgid "is-dir"
24418 msgstr ""
24419
24420 #. type: verbatim
24421 #: ../fish/guestfish-actions.pod:2378
24422 #, no-wrap
24423 msgid ""
24424 " is-dir path\n"
24425 "\n"
24426 msgstr ""
24427
24428 #. type: =head2
24429 #: ../fish/guestfish-actions.pod:2386
24430 msgid "is-fifo"
24431 msgstr ""
24432
24433 #. type: verbatim
24434 #: ../fish/guestfish-actions.pod:2388
24435 #, no-wrap
24436 msgid ""
24437 " is-fifo path\n"
24438 "\n"
24439 msgstr ""
24440
24441 #. type: =head2
24442 #: ../fish/guestfish-actions.pod:2395
24443 msgid "is-file"
24444 msgstr ""
24445
24446 #. type: verbatim
24447 #: ../fish/guestfish-actions.pod:2397
24448 #, no-wrap
24449 msgid ""
24450 " is-file path\n"
24451 "\n"
24452 msgstr ""
24453
24454 #. type: =head2
24455 #: ../fish/guestfish-actions.pod:2405
24456 msgid "is-launching"
24457 msgstr ""
24458
24459 #. type: verbatim
24460 #: ../fish/guestfish-actions.pod:2407
24461 #, no-wrap
24462 msgid ""
24463 " is-launching\n"
24464 "\n"
24465 msgstr ""
24466
24467 #. type: =head2
24468 #: ../fish/guestfish-actions.pod:2414
24469 msgid "is-lv"
24470 msgstr ""
24471
24472 #. type: verbatim
24473 #: ../fish/guestfish-actions.pod:2416
24474 #, no-wrap
24475 msgid ""
24476 " is-lv device\n"
24477 "\n"
24478 msgstr ""
24479
24480 #. type: =head2
24481 #: ../fish/guestfish-actions.pod:2421
24482 msgid "is-ready"
24483 msgstr ""
24484
24485 #. type: verbatim
24486 #: ../fish/guestfish-actions.pod:2423
24487 #, no-wrap
24488 msgid ""
24489 " is-ready\n"
24490 "\n"
24491 msgstr ""
24492
24493 #. type: =head2
24494 #: ../fish/guestfish-actions.pod:2430
24495 msgid "is-socket"
24496 msgstr ""
24497
24498 #. type: verbatim
24499 #: ../fish/guestfish-actions.pod:2432
24500 #, no-wrap
24501 msgid ""
24502 " is-socket path\n"
24503 "\n"
24504 msgstr ""
24505
24506 #. type: =head2
24507 #: ../fish/guestfish-actions.pod:2439
24508 msgid "is-symlink"
24509 msgstr ""
24510
24511 #. type: verbatim
24512 #: ../fish/guestfish-actions.pod:2441
24513 #, no-wrap
24514 msgid ""
24515 " is-symlink path\n"
24516 "\n"
24517 msgstr ""
24518
24519 #. type: =head2
24520 #: ../fish/guestfish-actions.pod:2448
24521 msgid "is-zero"
24522 msgstr ""
24523
24524 #. type: verbatim
24525 #: ../fish/guestfish-actions.pod:2450
24526 #, no-wrap
24527 msgid ""
24528 " is-zero path\n"
24529 "\n"
24530 msgstr ""
24531
24532 #. type: =head2
24533 #: ../fish/guestfish-actions.pod:2455
24534 msgid "is-zero-device"
24535 msgstr ""
24536
24537 #. type: verbatim
24538 #: ../fish/guestfish-actions.pod:2457
24539 #, no-wrap
24540 msgid ""
24541 " is-zero-device device\n"
24542 "\n"
24543 msgstr ""
24544
24545 #. type: =head2
24546 #: ../fish/guestfish-actions.pod:2463
24547 msgid "kill-subprocess"
24548 msgstr ""
24549
24550 #. type: verbatim
24551 #: ../fish/guestfish-actions.pod:2465
24552 #, no-wrap
24553 msgid ""
24554 " kill-subprocess\n"
24555 "\n"
24556 msgstr ""
24557
24558 #. type: =head2
24559 #: ../fish/guestfish-actions.pod:2469
24560 msgid "launch"
24561 msgstr ""
24562
24563 #. type: =head2
24564 #: ../fish/guestfish-actions.pod:2471
24565 msgid "run"
24566 msgstr ""
24567
24568 #. type: verbatim
24569 #: ../fish/guestfish-actions.pod:2473
24570 #, no-wrap
24571 msgid ""
24572 " launch\n"
24573 "\n"
24574 msgstr ""
24575
24576 #. type: =head2
24577 #: ../fish/guestfish-actions.pod:2481
24578 msgid "lchown"
24579 msgstr ""
24580
24581 #. type: verbatim
24582 #: ../fish/guestfish-actions.pod:2483
24583 #, no-wrap
24584 msgid ""
24585 " lchown owner group path\n"
24586 "\n"
24587 msgstr ""
24588
24589 #. type: textblock
24590 #: ../fish/guestfish-actions.pod:2485
24591 msgid ""
24592 "Change the file owner to C<owner> and group to C<group>.  This is like "
24593 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
24594 "the target."
24595 msgstr ""
24596
24597 #. type: =head2
24598 #: ../fish/guestfish-actions.pod:2493
24599 msgid "lgetxattr"
24600 msgstr ""
24601
24602 #. type: verbatim
24603 #: ../fish/guestfish-actions.pod:2495
24604 #, no-wrap
24605 msgid ""
24606 " lgetxattr path name\n"
24607 "\n"
24608 msgstr ""
24609
24610 #. type: textblock
24611 #: ../fish/guestfish-actions.pod:2511
24612 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24613 msgstr ""
24614
24615 #. type: =head2
24616 #: ../fish/guestfish-actions.pod:2513
24617 msgid "lgetxattrs"
24618 msgstr ""
24619
24620 #. type: verbatim
24621 #: ../fish/guestfish-actions.pod:2515
24622 #, no-wrap
24623 msgid ""
24624 " lgetxattrs path\n"
24625 "\n"
24626 msgstr ""
24627
24628 #. type: textblock
24629 #: ../fish/guestfish-actions.pod:2517
24630 msgid ""
24631 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24632 "it returns the extended attributes of the link itself."
24633 msgstr ""
24634
24635 #. type: =head2
24636 #: ../fish/guestfish-actions.pod:2521
24637 msgid "list-9p"
24638 msgstr ""
24639
24640 #. type: verbatim
24641 #: ../fish/guestfish-actions.pod:2523
24642 #, no-wrap
24643 msgid ""
24644 " list-9p\n"
24645 "\n"
24646 msgstr ""
24647
24648 #. type: =head2
24649 #: ../fish/guestfish-actions.pod:2528
24650 msgid "list-devices"
24651 msgstr ""
24652
24653 #. type: verbatim
24654 #: ../fish/guestfish-actions.pod:2530
24655 #, no-wrap
24656 msgid ""
24657 " list-devices\n"
24658 "\n"
24659 msgstr ""
24660
24661 #. type: =head2
24662 #: ../fish/guestfish-actions.pod:2538
24663 msgid "list-dm-devices"
24664 msgstr ""
24665
24666 #. type: verbatim
24667 #: ../fish/guestfish-actions.pod:2540
24668 #, no-wrap
24669 msgid ""
24670 " list-dm-devices\n"
24671 "\n"
24672 msgstr ""
24673
24674 #. type: textblock
24675 #: ../fish/guestfish-actions.pod:2544
24676 msgid ""
24677 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
24678 "previous call to L</luks-open>."
24679 msgstr ""
24680
24681 #. type: textblock
24682 #: ../fish/guestfish-actions.pod:2547
24683 msgid ""
24684 "Device mapper devices which correspond to logical volumes are I<not> "
24685 "returned in this list.  Call L</lvs> if you want to list logical volumes."
24686 msgstr ""
24687
24688 #. type: =head2
24689 #: ../fish/guestfish-actions.pod:2551
24690 msgid "list-filesystems"
24691 msgstr ""
24692
24693 #. type: verbatim
24694 #: ../fish/guestfish-actions.pod:2553
24695 #, no-wrap
24696 msgid ""
24697 " list-filesystems\n"
24698 "\n"
24699 msgstr ""
24700
24701 #. type: textblock
24702 #: ../fish/guestfish-actions.pod:2572
24703 msgid ""
24704 "This command runs other libguestfs commands, which might include L</mount> "
24705 "and L</umount>, and therefore you should use this soon after launch and only "
24706 "when nothing is mounted."
24707 msgstr ""
24708
24709 #. type: textblock
24710 #: ../fish/guestfish-actions.pod:2576
24711 msgid ""
24712 "Not all of the filesystems returned will be mountable.  In particular, swap "
24713 "partitions are returned in the list.  Also this command does not check that "
24714 "each filesystem found is valid and mountable, and some filesystems might be "
24715 "mountable but require special options.  Filesystems may not all belong to a "
24716 "single logical operating system (use L</inspect-os> to look for OSes)."
24717 msgstr ""
24718
24719 #. type: =head2
24720 #: ../fish/guestfish-actions.pod:2584
24721 msgid "list-partitions"
24722 msgstr ""
24723
24724 #. type: verbatim
24725 #: ../fish/guestfish-actions.pod:2586
24726 #, no-wrap
24727 msgid ""
24728 " list-partitions\n"
24729 "\n"
24730 msgstr ""
24731
24732 #. type: textblock
24733 #: ../fish/guestfish-actions.pod:2592
24734 msgid ""
24735 "This does not return logical volumes.  For that you will need to call "
24736 "L</lvs>."
24737 msgstr ""
24738
24739 #. type: =head2
24740 #: ../fish/guestfish-actions.pod:2597
24741 msgid "ll"
24742 msgstr ""
24743
24744 #. type: verbatim
24745 #: ../fish/guestfish-actions.pod:2599
24746 #, no-wrap
24747 msgid ""
24748 " ll directory\n"
24749 "\n"
24750 msgstr ""
24751
24752 #. type: =head2
24753 #: ../fish/guestfish-actions.pod:2607
24754 msgid "ln"
24755 msgstr ""
24756
24757 #. type: verbatim
24758 #: ../fish/guestfish-actions.pod:2609
24759 #, no-wrap
24760 msgid ""
24761 " ln target linkname\n"
24762 "\n"
24763 msgstr ""
24764
24765 #. type: =head2
24766 #: ../fish/guestfish-actions.pod:2613
24767 msgid "ln-f"
24768 msgstr ""
24769
24770 #. type: verbatim
24771 #: ../fish/guestfish-actions.pod:2615
24772 #, no-wrap
24773 msgid ""
24774 " ln-f target linkname\n"
24775 "\n"
24776 msgstr ""
24777
24778 #. type: =head2
24779 #: ../fish/guestfish-actions.pod:2620
24780 msgid "ln-s"
24781 msgstr ""
24782
24783 #. type: verbatim
24784 #: ../fish/guestfish-actions.pod:2622
24785 #, no-wrap
24786 msgid ""
24787 " ln-s target linkname\n"
24788 "\n"
24789 msgstr ""
24790
24791 #. type: =head2
24792 #: ../fish/guestfish-actions.pod:2626
24793 msgid "ln-sf"
24794 msgstr ""
24795
24796 #. type: verbatim
24797 #: ../fish/guestfish-actions.pod:2628
24798 #, no-wrap
24799 msgid ""
24800 " ln-sf target linkname\n"
24801 "\n"
24802 msgstr ""
24803
24804 #. type: =head2
24805 #: ../fish/guestfish-actions.pod:2633
24806 msgid "lremovexattr"
24807 msgstr ""
24808
24809 #. type: verbatim
24810 #: ../fish/guestfish-actions.pod:2635
24811 #, no-wrap
24812 msgid ""
24813 " lremovexattr xattr path\n"
24814 "\n"
24815 msgstr ""
24816
24817 #. type: textblock
24818 #: ../fish/guestfish-actions.pod:2637
24819 msgid ""
24820 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24821 "it removes an extended attribute of the link itself."
24822 msgstr ""
24823
24824 #. type: =head2
24825 #: ../fish/guestfish-actions.pod:2641
24826 msgid "ls"
24827 msgstr ""
24828
24829 #. type: verbatim
24830 #: ../fish/guestfish-actions.pod:2643
24831 #, no-wrap
24832 msgid ""
24833 " ls directory\n"
24834 "\n"
24835 msgstr ""
24836
24837 #. type: textblock
24838 #: ../fish/guestfish-actions.pod:2649
24839 msgid ""
24840 "This command is mostly useful for interactive sessions.  Programs should "
24841 "probably use L</readdir> instead."
24842 msgstr ""
24843
24844 #. type: =head2
24845 #: ../fish/guestfish-actions.pod:2652
24846 msgid "lsetxattr"
24847 msgstr ""
24848
24849 #. type: verbatim
24850 #: ../fish/guestfish-actions.pod:2654
24851 #, no-wrap
24852 msgid ""
24853 " lsetxattr xattr val vallen path\n"
24854 "\n"
24855 msgstr ""
24856
24857 #. type: textblock
24858 #: ../fish/guestfish-actions.pod:2656
24859 msgid ""
24860 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24861 "sets an extended attribute of the link itself."
24862 msgstr ""
24863
24864 #. type: =head2
24865 #: ../fish/guestfish-actions.pod:2660
24866 msgid "lstat"
24867 msgstr ""
24868
24869 #. type: verbatim
24870 #: ../fish/guestfish-actions.pod:2662
24871 #, no-wrap
24872 msgid ""
24873 " lstat path\n"
24874 "\n"
24875 msgstr ""
24876
24877 #. type: textblock
24878 #: ../fish/guestfish-actions.pod:2666
24879 msgid ""
24880 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24881 "the link is stat-ed, not the file it refers to."
24882 msgstr ""
24883
24884 #. type: =head2
24885 #: ../fish/guestfish-actions.pod:2672
24886 msgid "lstatlist"
24887 msgstr ""
24888
24889 #. type: verbatim
24890 #: ../fish/guestfish-actions.pod:2674
24891 #, no-wrap
24892 msgid ""
24893 " lstatlist path 'names ...'\n"
24894 "\n"
24895 msgstr ""
24896
24897 #. type: textblock
24898 #: ../fish/guestfish-actions.pod:2676
24899 msgid ""
24900 "This call allows you to perform the L</lstat> operation on multiple files, "
24901 "where all files are in the directory C<path>.  C<names> is the list of files "
24902 "from this directory."
24903 msgstr ""
24904
24905 #. type: textblock
24906 #: ../fish/guestfish-actions.pod:2685
24907 msgid ""
24908 "This call is intended for programs that want to efficiently list a directory "
24909 "contents without making many round-trips.  See also L</lxattrlist> for a "
24910 "similarly efficient call for getting extended attributes.  Very long "
24911 "directory listings might cause the protocol message size to be exceeded, "
24912 "causing this call to fail.  The caller must split up such requests into "
24913 "smaller groups of names."
24914 msgstr ""
24915
24916 #. type: =head2
24917 #: ../fish/guestfish-actions.pod:2693
24918 msgid "luks-add-key"
24919 msgstr ""
24920
24921 #. type: verbatim
24922 #: ../fish/guestfish-actions.pod:2695
24923 #, no-wrap
24924 msgid ""
24925 " luks-add-key device keyslot\n"
24926 "\n"
24927 msgstr ""
24928
24929 #. type: textblock
24930 #: ../fish/guestfish-actions.pod:2702
24931 msgid ""
24932 "Note that if C<keyslot> already contains a key, then this command will "
24933 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24934 msgstr ""
24935
24936 #. type: textblock
24937 #: ../fish/guestfish-actions.pod:2706 ../fish/guestfish-actions.pod:2728 ../fish/guestfish-actions.pod:2741 ../fish/guestfish-actions.pod:2755 ../fish/guestfish-actions.pod:2781 ../fish/guestfish-actions.pod:2791
24938 msgid ""
24939 "This command has one or more key or passphrase parameters.  Guestfish will "
24940 "prompt for these separately."
24941 msgstr ""
24942
24943 #. type: =head2
24944 #: ../fish/guestfish-actions.pod:2709
24945 msgid "luks-close"
24946 msgstr ""
24947
24948 #. type: verbatim
24949 #: ../fish/guestfish-actions.pod:2711
24950 #, no-wrap
24951 msgid ""
24952 " luks-close device\n"
24953 "\n"
24954 msgstr ""
24955
24956 #. type: textblock
24957 #: ../fish/guestfish-actions.pod:2713
24958 msgid ""
24959 "This closes a LUKS device that was created earlier by L</luks-open> or "
24960 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
24961 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
24962 "underlying block device."
24963 msgstr ""
24964
24965 #. type: =head2
24966 #: ../fish/guestfish-actions.pod:2719
24967 msgid "luks-format"
24968 msgstr ""
24969
24970 #. type: verbatim
24971 #: ../fish/guestfish-actions.pod:2721
24972 #, no-wrap
24973 msgid ""
24974 " luks-format device keyslot\n"
24975 "\n"
24976 msgstr ""
24977
24978 #. type: =head2
24979 #: ../fish/guestfish-actions.pod:2734
24980 msgid "luks-format-cipher"
24981 msgstr ""
24982
24983 #. type: verbatim
24984 #: ../fish/guestfish-actions.pod:2736
24985 #, no-wrap
24986 msgid ""
24987 " luks-format-cipher device keyslot cipher\n"
24988 "\n"
24989 msgstr ""
24990
24991 #. type: textblock
24992 #: ../fish/guestfish-actions.pod:2738
24993 msgid ""
24994 "This command is the same as L</luks-format> but it also allows you to set "
24995 "the C<cipher> used."
24996 msgstr ""
24997
24998 #. type: =head2
24999 #: ../fish/guestfish-actions.pod:2747
25000 msgid "luks-kill-slot"
25001 msgstr ""
25002
25003 #. type: verbatim
25004 #: ../fish/guestfish-actions.pod:2749
25005 #, no-wrap
25006 msgid ""
25007 " luks-kill-slot device keyslot\n"
25008 "\n"
25009 msgstr ""
25010
25011 #. type: =head2
25012 #: ../fish/guestfish-actions.pod:2758
25013 msgid "luks-open"
25014 msgstr ""
25015
25016 #. type: verbatim
25017 #: ../fish/guestfish-actions.pod:2760
25018 #, no-wrap
25019 msgid ""
25020 " luks-open device mapname\n"
25021 "\n"
25022 msgstr ""
25023
25024 #. type: textblock
25025 #: ../fish/guestfish-actions.pod:2774
25026 msgid ""
25027 "If this block device contains LVM volume groups, then calling L</vgscan> "
25028 "followed by L</vg-activate-all> will make them visible."
25029 msgstr ""
25030
25031 #. type: textblock
25032 #: ../fish/guestfish-actions.pod:2778
25033 msgid "Use L</list-dm-devices> to list all device mapper devices."
25034 msgstr ""
25035
25036 #. type: =head2
25037 #: ../fish/guestfish-actions.pod:2784
25038 msgid "luks-open-ro"
25039 msgstr ""
25040
25041 #. type: verbatim
25042 #: ../fish/guestfish-actions.pod:2786
25043 #, no-wrap
25044 msgid ""
25045 " luks-open-ro device mapname\n"
25046 "\n"
25047 msgstr ""
25048
25049 #. type: textblock
25050 #: ../fish/guestfish-actions.pod:2788
25051 msgid ""
25052 "This is the same as L</luks-open> except that a read-only mapping is "
25053 "created."
25054 msgstr ""
25055
25056 #. type: =head2
25057 #: ../fish/guestfish-actions.pod:2794
25058 msgid "lvcreate"
25059 msgstr ""
25060
25061 #. type: verbatim
25062 #: ../fish/guestfish-actions.pod:2796
25063 #, no-wrap
25064 msgid ""
25065 " lvcreate logvol volgroup mbytes\n"
25066 "\n"
25067 msgstr ""
25068
25069 #. type: =head2
25070 #: ../fish/guestfish-actions.pod:2801
25071 msgid "lvm-canonical-lv-name"
25072 msgstr ""
25073
25074 #. type: verbatim
25075 #: ../fish/guestfish-actions.pod:2803
25076 #, no-wrap
25077 msgid ""
25078 " lvm-canonical-lv-name lvname\n"
25079 "\n"
25080 msgstr ""
25081
25082 #. type: textblock
25083 #: ../fish/guestfish-actions.pod:2812
25084 msgid "See also L</is-lv>."
25085 msgstr ""
25086
25087 #. type: =head2
25088 #: ../fish/guestfish-actions.pod:2814
25089 msgid "lvm-clear-filter"
25090 msgstr ""
25091
25092 #. type: verbatim
25093 #: ../fish/guestfish-actions.pod:2816
25094 #, no-wrap
25095 msgid ""
25096 " lvm-clear-filter\n"
25097 "\n"
25098 msgstr ""
25099
25100 #. type: textblock
25101 #: ../fish/guestfish-actions.pod:2818
25102 msgid ""
25103 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
25104 "block device."
25105 msgstr ""
25106
25107 #. type: =head2
25108 #: ../fish/guestfish-actions.pod:2824
25109 msgid "lvm-remove-all"
25110 msgstr ""
25111
25112 #. type: verbatim
25113 #: ../fish/guestfish-actions.pod:2826
25114 #, no-wrap
25115 msgid ""
25116 " lvm-remove-all\n"
25117 "\n"
25118 msgstr ""
25119
25120 #. type: =head2
25121 #: ../fish/guestfish-actions.pod:2834
25122 msgid "lvm-set-filter"
25123 msgstr ""
25124
25125 #. type: verbatim
25126 #: ../fish/guestfish-actions.pod:2836
25127 #, no-wrap
25128 msgid ""
25129 " lvm-set-filter 'devices ...'\n"
25130 "\n"
25131 msgstr ""
25132
25133 #. type: =head2
25134 #: ../fish/guestfish-actions.pod:2861
25135 msgid "lvremove"
25136 msgstr ""
25137
25138 #. type: verbatim
25139 #: ../fish/guestfish-actions.pod:2863
25140 #, no-wrap
25141 msgid ""
25142 " lvremove device\n"
25143 "\n"
25144 msgstr ""
25145
25146 #. type: =head2
25147 #: ../fish/guestfish-actions.pod:2871
25148 msgid "lvrename"
25149 msgstr ""
25150
25151 #. type: verbatim
25152 #: ../fish/guestfish-actions.pod:2873
25153 #, no-wrap
25154 msgid ""
25155 " lvrename logvol newlogvol\n"
25156 "\n"
25157 msgstr ""
25158
25159 #. type: =head2
25160 #: ../fish/guestfish-actions.pod:2877
25161 msgid "lvresize"
25162 msgstr ""
25163
25164 #. type: verbatim
25165 #: ../fish/guestfish-actions.pod:2879
25166 #, no-wrap
25167 msgid ""
25168 " lvresize device mbytes\n"
25169 "\n"
25170 msgstr ""
25171
25172 #. type: =head2
25173 #: ../fish/guestfish-actions.pod:2885
25174 msgid "lvresize-free"
25175 msgstr ""
25176
25177 #. type: verbatim
25178 #: ../fish/guestfish-actions.pod:2887
25179 #, no-wrap
25180 msgid ""
25181 " lvresize-free lv percent\n"
25182 "\n"
25183 msgstr ""
25184
25185 #. type: =head2
25186 #: ../fish/guestfish-actions.pod:2895
25187 msgid "lvs"
25188 msgstr ""
25189
25190 #. type: verbatim
25191 #: ../fish/guestfish-actions.pod:2897
25192 #, no-wrap
25193 msgid ""
25194 " lvs\n"
25195 "\n"
25196 msgstr ""
25197
25198 #. type: textblock
25199 #: ../fish/guestfish-actions.pod:2905
25200 msgid "See also L</lvs-full>, L</list-filesystems>."
25201 msgstr ""
25202
25203 #. type: =head2
25204 #: ../fish/guestfish-actions.pod:2907
25205 msgid "lvs-full"
25206 msgstr ""
25207
25208 #. type: verbatim
25209 #: ../fish/guestfish-actions.pod:2909
25210 #, no-wrap
25211 msgid ""
25212 " lvs-full\n"
25213 "\n"
25214 msgstr ""
25215
25216 #. type: =head2
25217 #: ../fish/guestfish-actions.pod:2914
25218 msgid "lvuuid"
25219 msgstr ""
25220
25221 #. type: verbatim
25222 #: ../fish/guestfish-actions.pod:2916
25223 #, no-wrap
25224 msgid ""
25225 " lvuuid device\n"
25226 "\n"
25227 msgstr ""
25228
25229 #. type: =head2
25230 #: ../fish/guestfish-actions.pod:2920
25231 msgid "lxattrlist"
25232 msgstr ""
25233
25234 #. type: verbatim
25235 #: ../fish/guestfish-actions.pod:2922
25236 #, no-wrap
25237 msgid ""
25238 " lxattrlist path 'names ...'\n"
25239 "\n"
25240 msgstr ""
25241
25242 #. type: textblock
25243 #: ../fish/guestfish-actions.pod:2938
25244 msgid ""
25245 "This call is intended for programs that want to efficiently list a directory "
25246 "contents without making many round-trips.  See also L</lstatlist> for a "
25247 "similarly efficient call for getting standard stats.  Very long directory "
25248 "listings might cause the protocol message size to be exceeded, causing this "
25249 "call to fail.  The caller must split up such requests into smaller groups of "
25250 "names."
25251 msgstr ""
25252
25253 #. type: =head2
25254 #: ../fish/guestfish-actions.pod:2946
25255 msgid "mkdir"
25256 msgstr ""
25257
25258 #. type: verbatim
25259 #: ../fish/guestfish-actions.pod:2948
25260 #, no-wrap
25261 msgid ""
25262 " mkdir path\n"
25263 "\n"
25264 msgstr ""
25265
25266 #. type: =head2
25267 #: ../fish/guestfish-actions.pod:2952
25268 msgid "mkdir-mode"
25269 msgstr ""
25270
25271 #. type: verbatim
25272 #: ../fish/guestfish-actions.pod:2954
25273 #, no-wrap
25274 msgid ""
25275 " mkdir-mode path mode\n"
25276 "\n"
25277 msgstr ""
25278
25279 #. type: textblock
25280 #: ../fish/guestfish-actions.pod:2963
25281 msgid "See also L</mkdir>, L</umask>"
25282 msgstr ""
25283
25284 #. type: =head2
25285 #: ../fish/guestfish-actions.pod:2965
25286 msgid "mkdir-p"
25287 msgstr ""
25288
25289 #. type: verbatim
25290 #: ../fish/guestfish-actions.pod:2967
25291 #, no-wrap
25292 msgid ""
25293 " mkdir-p path\n"
25294 "\n"
25295 msgstr ""
25296
25297 #. type: =head2
25298 #: ../fish/guestfish-actions.pod:2972
25299 msgid "mkdtemp"
25300 msgstr ""
25301
25302 #. type: verbatim
25303 #: ../fish/guestfish-actions.pod:2974
25304 #, no-wrap
25305 msgid ""
25306 " mkdtemp template\n"
25307 "\n"
25308 msgstr ""
25309
25310 #. type: =head2
25311 #: ../fish/guestfish-actions.pod:2995
25312 msgid "mke2fs-J"
25313 msgstr ""
25314
25315 #. type: verbatim
25316 #: ../fish/guestfish-actions.pod:2997
25317 #, no-wrap
25318 msgid ""
25319 " mke2fs-J fstype blocksize device journal\n"
25320 "\n"
25321 msgstr ""
25322
25323 #. type: textblock
25324 #: ../fish/guestfish-actions.pod:3005
25325 msgid "See also L</mke2journal>."
25326 msgstr ""
25327
25328 #. type: =head2
25329 #: ../fish/guestfish-actions.pod:3007
25330 msgid "mke2fs-JL"
25331 msgstr ""
25332
25333 #. type: verbatim
25334 #: ../fish/guestfish-actions.pod:3009
25335 #, no-wrap
25336 msgid ""
25337 " mke2fs-JL fstype blocksize device label\n"
25338 "\n"
25339 msgstr ""
25340
25341 #. type: textblock
25342 #: ../fish/guestfish-actions.pod:3014
25343 msgid "See also L</mke2journal-L>."
25344 msgstr ""
25345
25346 #. type: =head2
25347 #: ../fish/guestfish-actions.pod:3016
25348 msgid "mke2fs-JU"
25349 msgstr ""
25350
25351 #. type: verbatim
25352 #: ../fish/guestfish-actions.pod:3018
25353 #, no-wrap
25354 msgid ""
25355 " mke2fs-JU fstype blocksize device uuid\n"
25356 "\n"
25357 msgstr ""
25358
25359 #. type: textblock
25360 #: ../fish/guestfish-actions.pod:3023
25361 msgid "See also L</mke2journal-U>."
25362 msgstr ""
25363
25364 #. type: =head2
25365 #: ../fish/guestfish-actions.pod:3025
25366 msgid "mke2journal"
25367 msgstr ""
25368
25369 #. type: verbatim
25370 #: ../fish/guestfish-actions.pod:3027
25371 #, no-wrap
25372 msgid ""
25373 " mke2journal blocksize device\n"
25374 "\n"
25375 msgstr ""
25376
25377 #. type: =head2
25378 #: ../fish/guestfish-actions.pod:3034
25379 msgid "mke2journal-L"
25380 msgstr ""
25381
25382 #. type: verbatim
25383 #: ../fish/guestfish-actions.pod:3036
25384 #, no-wrap
25385 msgid ""
25386 " mke2journal-L blocksize label device\n"
25387 "\n"
25388 msgstr ""
25389
25390 #. type: =head2
25391 #: ../fish/guestfish-actions.pod:3040
25392 msgid "mke2journal-U"
25393 msgstr ""
25394
25395 #. type: verbatim
25396 #: ../fish/guestfish-actions.pod:3042
25397 #, no-wrap
25398 msgid ""
25399 " mke2journal-U blocksize uuid device\n"
25400 "\n"
25401 msgstr ""
25402
25403 #. type: =head2
25404 #: ../fish/guestfish-actions.pod:3046
25405 msgid "mkfifo"
25406 msgstr ""
25407
25408 #. type: verbatim
25409 #: ../fish/guestfish-actions.pod:3048
25410 #, no-wrap
25411 msgid ""
25412 " mkfifo mode path\n"
25413 "\n"
25414 msgstr ""
25415
25416 #. type: textblock
25417 #: ../fish/guestfish-actions.pod:3050
25418 msgid ""
25419 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25420 "is just a convenient wrapper around L</mknod>."
25421 msgstr ""
25422
25423 #. type: =head2
25424 #: ../fish/guestfish-actions.pod:3056
25425 msgid "mkfs"
25426 msgstr ""
25427
25428 #. type: verbatim
25429 #: ../fish/guestfish-actions.pod:3058
25430 #, no-wrap
25431 msgid ""
25432 " mkfs fstype device\n"
25433 "\n"
25434 msgstr ""
25435
25436 #. type: =head2
25437 #: ../fish/guestfish-actions.pod:3064
25438 msgid "mkfs-b"
25439 msgstr ""
25440
25441 #. type: verbatim
25442 #: ../fish/guestfish-actions.pod:3066
25443 #, no-wrap
25444 msgid ""
25445 " mkfs-b fstype blocksize device\n"
25446 "\n"
25447 msgstr ""
25448
25449 #. type: textblock
25450 #: ../fish/guestfish-actions.pod:3068
25451 msgid ""
25452 "This call is similar to L</mkfs>, but it allows you to control the block "
25453 "size of the resulting filesystem.  Supported block sizes depend on the "
25454 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25455 msgstr ""
25456
25457 #. type: =head2
25458 #: ../fish/guestfish-actions.pod:3083
25459 msgid "mkfs-opts"
25460 msgstr ""
25461
25462 #. type: verbatim
25463 #: ../fish/guestfish-actions.pod:3085
25464 #, no-wrap
25465 msgid ""
25466 " mkfs-opts fstype device [blocksize:..] [features:..] [inode:..] "
25467 "[sectorsize:..]\n"
25468 "\n"
25469 msgstr ""
25470
25471 #. type: =head2
25472 #: ../fish/guestfish-actions.pod:3130
25473 msgid "mkmountpoint"
25474 msgstr ""
25475
25476 #. type: verbatim
25477 #: ../fish/guestfish-actions.pod:3132
25478 #, no-wrap
25479 msgid ""
25480 " mkmountpoint exemptpath\n"
25481 "\n"
25482 msgstr ""
25483
25484 #. type: textblock
25485 #: ../fish/guestfish-actions.pod:3134
25486 msgid ""
25487 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25488 "to create extra mountpoints before mounting the first filesystem."
25489 msgstr ""
25490
25491 #. type: textblock
25492 #: ../fish/guestfish-actions.pod:3158
25493 msgid ""
25494 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25495 "unexpected errors if you try to mix these calls.  It is safest to manually "
25496 "unmount filesystems and remove mountpoints after use."
25497 msgstr ""
25498
25499 #. type: textblock
25500 #: ../fish/guestfish-actions.pod:3162
25501 msgid ""
25502 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25503 "for this to work for manual mountpoints, you must ensure that the innermost "
25504 "mountpoints have the longest pathnames, as in the example code above."
25505 msgstr ""
25506
25507 #. type: textblock
25508 #: ../fish/guestfish-actions.pod:3169
25509 msgid ""
25510 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25511 "L</umount-all> to be called when the handle is closed which can also trigger "
25512 "these issues."
25513 msgstr ""
25514
25515 #. type: =head2
25516 #: ../fish/guestfish-actions.pod:3173
25517 msgid "mknod"
25518 msgstr ""
25519
25520 #. type: verbatim
25521 #: ../fish/guestfish-actions.pod:3175
25522 #, no-wrap
25523 msgid ""
25524 " mknod mode devmajor devminor path\n"
25525 "\n"
25526 msgstr ""
25527
25528 #. type: textblock
25529 #: ../fish/guestfish-actions.pod:3185
25530 msgid ""
25531 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25532 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25533 "regular file).  These constants are available in the standard Linux header "
25534 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25535 "wrappers around this command which bitwise OR in the appropriate constant "
25536 "for you."
25537 msgstr ""
25538
25539 #. type: =head2
25540 #: ../fish/guestfish-actions.pod:3195
25541 msgid "mknod-b"
25542 msgstr ""
25543
25544 #. type: verbatim
25545 #: ../fish/guestfish-actions.pod:3197
25546 #, no-wrap
25547 msgid ""
25548 " mknod-b mode devmajor devminor path\n"
25549 "\n"
25550 msgstr ""
25551
25552 #. type: textblock
25553 #: ../fish/guestfish-actions.pod:3199
25554 msgid ""
25555 "This call creates a block device node called C<path> with mode C<mode> and "
25556 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25557 "wrapper around L</mknod>."
25558 msgstr ""
25559
25560 #. type: =head2
25561 #: ../fish/guestfish-actions.pod:3205
25562 msgid "mknod-c"
25563 msgstr ""
25564
25565 #. type: verbatim
25566 #: ../fish/guestfish-actions.pod:3207
25567 #, no-wrap
25568 msgid ""
25569 " mknod-c mode devmajor devminor path\n"
25570 "\n"
25571 msgstr ""
25572
25573 #. type: textblock
25574 #: ../fish/guestfish-actions.pod:3209
25575 msgid ""
25576 "This call creates a char device node called C<path> with mode C<mode> and "
25577 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25578 "wrapper around L</mknod>."
25579 msgstr ""
25580
25581 #. type: =head2
25582 #: ../fish/guestfish-actions.pod:3215
25583 msgid "mkswap"
25584 msgstr ""
25585
25586 #. type: verbatim
25587 #: ../fish/guestfish-actions.pod:3217
25588 #, no-wrap
25589 msgid ""
25590 " mkswap device\n"
25591 "\n"
25592 msgstr ""
25593
25594 #. type: =head2
25595 #: ../fish/guestfish-actions.pod:3221
25596 msgid "mkswap-L"
25597 msgstr ""
25598
25599 #. type: verbatim
25600 #: ../fish/guestfish-actions.pod:3223
25601 #, no-wrap
25602 msgid ""
25603 " mkswap-L label device\n"
25604 "\n"
25605 msgstr ""
25606
25607 #. type: =head2
25608 #: ../fish/guestfish-actions.pod:3231
25609 msgid "mkswap-U"
25610 msgstr ""
25611
25612 #. type: verbatim
25613 #: ../fish/guestfish-actions.pod:3233
25614 #, no-wrap
25615 msgid ""
25616 " mkswap-U uuid device\n"
25617 "\n"
25618 msgstr ""
25619
25620 #. type: =head2
25621 #: ../fish/guestfish-actions.pod:3237
25622 msgid "mkswap-file"
25623 msgstr ""
25624
25625 #. type: verbatim
25626 #: ../fish/guestfish-actions.pod:3239
25627 #, no-wrap
25628 msgid ""
25629 " mkswap-file path\n"
25630 "\n"
25631 msgstr ""
25632
25633 #. type: textblock
25634 #: ../fish/guestfish-actions.pod:3243
25635 msgid ""
25636 "This command just writes a swap file signature to an existing file.  To "
25637 "create the file itself, use something like L</fallocate>."
25638 msgstr ""
25639
25640 #. type: =head2
25641 #: ../fish/guestfish-actions.pod:3246
25642 msgid "modprobe"
25643 msgstr ""
25644
25645 #. type: verbatim
25646 #: ../fish/guestfish-actions.pod:3248
25647 #, no-wrap
25648 msgid ""
25649 " modprobe modulename\n"
25650 "\n"
25651 msgstr ""
25652
25653 #. type: =head2
25654 #: ../fish/guestfish-actions.pod:3255
25655 msgid "mount"
25656 msgstr ""
25657
25658 #. type: verbatim
25659 #: ../fish/guestfish-actions.pod:3257
25660 #, no-wrap
25661 msgid ""
25662 " mount device mountpoint\n"
25663 "\n"
25664 msgstr ""
25665
25666 #. type: textblock
25667 #: ../fish/guestfish-actions.pod:3273
25668 msgid ""
25669 "B<Important note:> When you use this call, the filesystem options C<sync> "
25670 "and C<noatime> are set implicitly.  This was originally done because we "
25671 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25672 "very large negative performance impact and negligible effect on "
25673 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25674 "code that needs performance, and instead use L</mount-options> (use an empty "
25675 "string for the first parameter if you don't want any options)."
25676 msgstr ""
25677
25678 #. type: =head2
25679 #: ../fish/guestfish-actions.pod:3290
25680 msgid "mount-9p"
25681 msgstr ""
25682
25683 #. type: verbatim
25684 #: ../fish/guestfish-actions.pod:3292
25685 #, no-wrap
25686 msgid ""
25687 " mount-9p mounttag mountpoint [options:..]\n"
25688 "\n"
25689 msgstr ""
25690
25691 #. type: =head2
25692 #: ../fish/guestfish-actions.pod:3303
25693 msgid "mount-loop"
25694 msgstr ""
25695
25696 #. type: verbatim
25697 #: ../fish/guestfish-actions.pod:3305
25698 #, no-wrap
25699 msgid ""
25700 " mount-loop file mountpoint\n"
25701 "\n"
25702 msgstr ""
25703
25704 #. type: =head2
25705 #: ../fish/guestfish-actions.pod:3311
25706 msgid "mount-options"
25707 msgstr ""
25708
25709 #. type: verbatim
25710 #: ../fish/guestfish-actions.pod:3313
25711 #, no-wrap
25712 msgid ""
25713 " mount-options options device mountpoint\n"
25714 "\n"
25715 msgstr ""
25716
25717 #. type: textblock
25718 #: ../fish/guestfish-actions.pod:3315
25719 msgid ""
25720 "This is the same as the L</mount> command, but it allows you to set the "
25721 "mount options as for the L<mount(8)> I<-o> flag."
25722 msgstr ""
25723
25724 #. type: =head2
25725 #: ../fish/guestfish-actions.pod:3323
25726 msgid "mount-ro"
25727 msgstr ""
25728
25729 #. type: verbatim
25730 #: ../fish/guestfish-actions.pod:3325
25731 #, no-wrap
25732 msgid ""
25733 " mount-ro device mountpoint\n"
25734 "\n"
25735 msgstr ""
25736
25737 #. type: textblock
25738 #: ../fish/guestfish-actions.pod:3327
25739 msgid ""
25740 "This is the same as the L</mount> command, but it mounts the filesystem with "
25741 "the read-only (I<-o ro>) flag."
25742 msgstr ""
25743
25744 #. type: =head2
25745 #: ../fish/guestfish-actions.pod:3330
25746 msgid "mount-vfs"
25747 msgstr ""
25748
25749 #. type: verbatim
25750 #: ../fish/guestfish-actions.pod:3332
25751 #, no-wrap
25752 msgid ""
25753 " mount-vfs options vfstype device mountpoint\n"
25754 "\n"
25755 msgstr ""
25756
25757 #. type: textblock
25758 #: ../fish/guestfish-actions.pod:3334
25759 msgid ""
25760 "This is the same as the L</mount> command, but it allows you to set both the "
25761 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25762 msgstr ""
25763
25764 #. type: =head2
25765 #: ../fish/guestfish-actions.pod:3338
25766 msgid "mountpoints"
25767 msgstr ""
25768
25769 #. type: verbatim
25770 #: ../fish/guestfish-actions.pod:3340
25771 #, no-wrap
25772 msgid ""
25773 " mountpoints\n"
25774 "\n"
25775 msgstr ""
25776
25777 #. type: textblock
25778 #: ../fish/guestfish-actions.pod:3342
25779 msgid ""
25780 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25781 "This one returns a hash table (map) of device name to directory where the "
25782 "device is mounted."
25783 msgstr ""
25784
25785 #. type: =head2
25786 #: ../fish/guestfish-actions.pod:3346
25787 msgid "mounts"
25788 msgstr ""
25789
25790 #. type: verbatim
25791 #: ../fish/guestfish-actions.pod:3348
25792 #, no-wrap
25793 msgid ""
25794 " mounts\n"
25795 "\n"
25796 msgstr ""
25797
25798 #. type: textblock
25799 #: ../fish/guestfish-actions.pod:3355
25800 msgid "See also: L</mountpoints>"
25801 msgstr ""
25802
25803 #. type: =head2
25804 #: ../fish/guestfish-actions.pod:3357
25805 msgid "mv"
25806 msgstr ""
25807
25808 #. type: verbatim
25809 #: ../fish/guestfish-actions.pod:3359
25810 #, no-wrap
25811 msgid ""
25812 " mv src dest\n"
25813 "\n"
25814 msgstr ""
25815
25816 #. type: =head2
25817 #: ../fish/guestfish-actions.pod:3364
25818 msgid "ntfs-3g-probe"
25819 msgstr ""
25820
25821 #. type: verbatim
25822 #: ../fish/guestfish-actions.pod:3366
25823 #, no-wrap
25824 msgid ""
25825 " ntfs-3g-probe true|false device\n"
25826 "\n"
25827 msgstr ""
25828
25829 #. type: =head2
25830 #: ../fish/guestfish-actions.pod:3380
25831 msgid "ntfsresize"
25832 msgstr ""
25833
25834 #. type: verbatim
25835 #: ../fish/guestfish-actions.pod:3382
25836 #, no-wrap
25837 msgid ""
25838 " ntfsresize device\n"
25839 "\n"
25840 msgstr ""
25841
25842 #. type: =head2
25843 #: ../fish/guestfish-actions.pod:3404
25844 msgid "ntfsresize-opts"
25845 msgstr ""
25846
25847 #. type: verbatim
25848 #: ../fish/guestfish-actions.pod:3406
25849 #, no-wrap
25850 msgid ""
25851 " ntfsresize-opts device [size:..] [force:..]\n"
25852 "\n"
25853 msgstr ""
25854
25855 #. type: textblock
25856 #: ../fish/guestfish-actions.pod:3425
25857 msgid ""
25858 "After the resize operation, the filesystem is always marked as requiring a "
25859 "consistency check (for safety).  You have to boot into Windows to perform "
25860 "this check and clear this condition.  If you I<don't> set the C<force> "
25861 "option then it is not possible to call L</ntfsresize-opts> multiple times on "
25862 "a single filesystem without booting into Windows between each resize."
25863 msgstr ""
25864
25865 #. type: =head2
25866 #: ../fish/guestfish-actions.pod:3438
25867 msgid "ntfsresize-size"
25868 msgstr ""
25869
25870 #. type: verbatim
25871 #: ../fish/guestfish-actions.pod:3440
25872 #, no-wrap
25873 msgid ""
25874 " ntfsresize-size device size\n"
25875 "\n"
25876 msgstr ""
25877
25878 #. type: textblock
25879 #: ../fish/guestfish-actions.pod:3442
25880 msgid ""
25881 "This command is the same as L</ntfsresize> except that it allows you to "
25882 "specify the new size (in bytes) explicitly."
25883 msgstr ""
25884
25885 #. type: =head2
25886 #: ../fish/guestfish-actions.pod:3452
25887 msgid "part-add"
25888 msgstr ""
25889
25890 #. type: verbatim
25891 #: ../fish/guestfish-actions.pod:3454
25892 #, no-wrap
25893 msgid ""
25894 " part-add device prlogex startsect endsect\n"
25895 "\n"
25896 msgstr ""
25897
25898 #. type: textblock
25899 #: ../fish/guestfish-actions.pod:3456
25900 msgid ""
25901 "This command adds a partition to C<device>.  If there is no partition table "
25902 "on the device, call L</part-init> first."
25903 msgstr ""
25904
25905 #. type: textblock
25906 #: ../fish/guestfish-actions.pod:3468
25907 msgid ""
25908 "Creating a partition which covers the whole disk is not so easy.  Use "
25909 "L</part-disk> to do that."
25910 msgstr ""
25911
25912 #. type: =head2
25913 #: ../fish/guestfish-actions.pod:3471
25914 msgid "part-del"
25915 msgstr ""
25916
25917 #. type: verbatim
25918 #: ../fish/guestfish-actions.pod:3473
25919 #, no-wrap
25920 msgid ""
25921 " part-del device partnum\n"
25922 "\n"
25923 msgstr ""
25924
25925 #. type: =head2
25926 #: ../fish/guestfish-actions.pod:3481
25927 msgid "part-disk"
25928 msgstr ""
25929
25930 #. type: verbatim
25931 #: ../fish/guestfish-actions.pod:3483
25932 #, no-wrap
25933 msgid ""
25934 " part-disk device parttype\n"
25935 "\n"
25936 msgstr ""
25937
25938 #. type: textblock
25939 #: ../fish/guestfish-actions.pod:3485
25940 msgid ""
25941 "This command is simply a combination of L</part-init> followed by "
25942 "L</part-add> to create a single primary partition covering the whole disk."
25943 msgstr ""
25944
25945 #. type: textblock
25946 #: ../fish/guestfish-actions.pod:3489
25947 msgid ""
25948 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25949 "possible values are described in L</part-init>."
25950 msgstr ""
25951
25952 #. type: =head2
25953 #: ../fish/guestfish-actions.pod:3495
25954 msgid "part-get-bootable"
25955 msgstr ""
25956
25957 #. type: verbatim
25958 #: ../fish/guestfish-actions.pod:3497
25959 #, no-wrap
25960 msgid ""
25961 " part-get-bootable device partnum\n"
25962 "\n"
25963 msgstr ""
25964
25965 #. type: textblock
25966 #: ../fish/guestfish-actions.pod:3502
25967 msgid "See also L</part-set-bootable>."
25968 msgstr ""
25969
25970 #. type: =head2
25971 #: ../fish/guestfish-actions.pod:3504
25972 msgid "part-get-mbr-id"
25973 msgstr ""
25974
25975 #. type: verbatim
25976 #: ../fish/guestfish-actions.pod:3506
25977 #, no-wrap
25978 msgid ""
25979 " part-get-mbr-id device partnum\n"
25980 "\n"
25981 msgstr ""
25982
25983 #. type: textblock
25984 #: ../fish/guestfish-actions.pod:3511 ../fish/guestfish-actions.pod:3649
25985 msgid ""
25986 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25987 "undefined results for other partition table types (see "
25988 "L</part-get-parttype>)."
25989 msgstr ""
25990
25991 #. type: =head2
25992 #: ../fish/guestfish-actions.pod:3515
25993 msgid "part-get-parttype"
25994 msgstr ""
25995
25996 #. type: verbatim
25997 #: ../fish/guestfish-actions.pod:3517
25998 #, no-wrap
25999 msgid ""
26000 " part-get-parttype device\n"
26001 "\n"
26002 msgstr ""
26003
26004 #. type: textblock
26005 #: ../fish/guestfish-actions.pod:3522
26006 msgid ""
26007 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
26008 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
26009 "possible, although unusual.  See L</part-init> for a full list."
26010 msgstr ""
26011
26012 #. type: =head2
26013 #: ../fish/guestfish-actions.pod:3527
26014 msgid "part-init"
26015 msgstr ""
26016
26017 #. type: verbatim
26018 #: ../fish/guestfish-actions.pod:3529
26019 #, no-wrap
26020 msgid ""
26021 " part-init device parttype\n"
26022 "\n"
26023 msgstr ""
26024
26025 #. type: textblock
26026 #: ../fish/guestfish-actions.pod:3535
26027 msgid ""
26028 "Initially there are no partitions.  Following this, you should call "
26029 "L</part-add> for each partition required."
26030 msgstr ""
26031
26032 #. type: =head2
26033 #: ../fish/guestfish-actions.pod:3598
26034 msgid "part-list"
26035 msgstr ""
26036
26037 #. type: verbatim
26038 #: ../fish/guestfish-actions.pod:3600
26039 #, no-wrap
26040 msgid ""
26041 " part-list device\n"
26042 "\n"
26043 msgstr ""
26044
26045 #. type: textblock
26046 #: ../fish/guestfish-actions.pod:3615
26047 msgid ""
26048 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
26049 "the device's sector size, see L</blockdev-getss>."
26050 msgstr ""
26051
26052 #. type: =head2
26053 #: ../fish/guestfish-actions.pod:3628
26054 msgid "part-set-bootable"
26055 msgstr ""
26056
26057 #. type: verbatim
26058 #: ../fish/guestfish-actions.pod:3630
26059 #, no-wrap
26060 msgid ""
26061 " part-set-bootable device partnum true|false\n"
26062 "\n"
26063 msgstr ""
26064
26065 #. type: =head2
26066 #: ../fish/guestfish-actions.pod:3639
26067 msgid "part-set-mbr-id"
26068 msgstr ""
26069
26070 #. type: verbatim
26071 #: ../fish/guestfish-actions.pod:3641
26072 #, no-wrap
26073 msgid ""
26074 " part-set-mbr-id device partnum idbyte\n"
26075 "\n"
26076 msgstr ""
26077
26078 #. type: =head2
26079 #: ../fish/guestfish-actions.pod:3653
26080 msgid "part-set-name"
26081 msgstr ""
26082
26083 #. type: verbatim
26084 #: ../fish/guestfish-actions.pod:3655
26085 #, no-wrap
26086 msgid ""
26087 " part-set-name device partnum name\n"
26088 "\n"
26089 msgstr ""
26090
26091 #. type: =head2
26092 #: ../fish/guestfish-actions.pod:3663
26093 msgid "part-to-dev"
26094 msgstr ""
26095
26096 #. type: verbatim
26097 #: ../fish/guestfish-actions.pod:3665
26098 #, no-wrap
26099 msgid ""
26100 " part-to-dev partition\n"
26101 "\n"
26102 msgstr ""
26103
26104 #. type: textblock
26105 #: ../fish/guestfish-actions.pod:3671
26106 msgid ""
26107 "The named partition must exist, for example as a string returned from "
26108 "L</list-partitions>."
26109 msgstr ""
26110
26111 #. type: =head2
26112 #: ../fish/guestfish-actions.pod:3674
26113 msgid "ping-daemon"
26114 msgstr ""
26115
26116 #. type: verbatim
26117 #: ../fish/guestfish-actions.pod:3676
26118 #, no-wrap
26119 msgid ""
26120 " ping-daemon\n"
26121 "\n"
26122 msgstr ""
26123
26124 #. type: =head2
26125 #: ../fish/guestfish-actions.pod:3683
26126 msgid "pread"
26127 msgstr ""
26128
26129 #. type: verbatim
26130 #: ../fish/guestfish-actions.pod:3685
26131 #, no-wrap
26132 msgid ""
26133 " pread path count offset\n"
26134 "\n"
26135 msgstr ""
26136
26137 #. type: textblock
26138 #: ../fish/guestfish-actions.pod:3693
26139 msgid "See also L</pwrite>, L</pread-device>."
26140 msgstr ""
26141
26142 #. type: =head2
26143 #: ../fish/guestfish-actions.pod:3698
26144 msgid "pread-device"
26145 msgstr ""
26146
26147 #. type: verbatim
26148 #: ../fish/guestfish-actions.pod:3700
26149 #, no-wrap
26150 msgid ""
26151 " pread-device device count offset\n"
26152 "\n"
26153 msgstr ""
26154
26155 #. type: textblock
26156 #: ../fish/guestfish-actions.pod:3708
26157 msgid "See also L</pread>."
26158 msgstr ""
26159
26160 #. type: =head2
26161 #: ../fish/guestfish-actions.pod:3713
26162 msgid "pvcreate"
26163 msgstr ""
26164
26165 #. type: verbatim
26166 #: ../fish/guestfish-actions.pod:3715
26167 #, no-wrap
26168 msgid ""
26169 " pvcreate device\n"
26170 "\n"
26171 msgstr ""
26172
26173 #. type: =head2
26174 #: ../fish/guestfish-actions.pod:3721
26175 msgid "pvremove"
26176 msgstr ""
26177
26178 #. type: verbatim
26179 #: ../fish/guestfish-actions.pod:3723
26180 #, no-wrap
26181 msgid ""
26182 " pvremove device\n"
26183 "\n"
26184 msgstr ""
26185
26186 #. type: =head2
26187 #: ../fish/guestfish-actions.pod:3732
26188 msgid "pvresize"
26189 msgstr ""
26190
26191 #. type: verbatim
26192 #: ../fish/guestfish-actions.pod:3734
26193 #, no-wrap
26194 msgid ""
26195 " pvresize device\n"
26196 "\n"
26197 msgstr ""
26198
26199 #. type: =head2
26200 #: ../fish/guestfish-actions.pod:3739
26201 msgid "pvresize-size"
26202 msgstr ""
26203
26204 #. type: verbatim
26205 #: ../fish/guestfish-actions.pod:3741
26206 #, no-wrap
26207 msgid ""
26208 " pvresize-size device size\n"
26209 "\n"
26210 msgstr ""
26211
26212 #. type: textblock
26213 #: ../fish/guestfish-actions.pod:3743
26214 msgid ""
26215 "This command is the same as L</pvresize> except that it allows you to "
26216 "specify the new size (in bytes) explicitly."
26217 msgstr ""
26218
26219 #. type: =head2
26220 #: ../fish/guestfish-actions.pod:3746
26221 msgid "pvs"
26222 msgstr ""
26223
26224 #. type: verbatim
26225 #: ../fish/guestfish-actions.pod:3748
26226 #, no-wrap
26227 msgid ""
26228 " pvs\n"
26229 "\n"
26230 msgstr ""
26231
26232 #. type: textblock
26233 #: ../fish/guestfish-actions.pod:3756
26234 msgid "See also L</pvs-full>."
26235 msgstr ""
26236
26237 #. type: =head2
26238 #: ../fish/guestfish-actions.pod:3758
26239 msgid "pvs-full"
26240 msgstr ""
26241
26242 #. type: verbatim
26243 #: ../fish/guestfish-actions.pod:3760
26244 #, no-wrap
26245 msgid ""
26246 " pvs-full\n"
26247 "\n"
26248 msgstr ""
26249
26250 #. type: =head2
26251 #: ../fish/guestfish-actions.pod:3765
26252 msgid "pvuuid"
26253 msgstr ""
26254
26255 #. type: verbatim
26256 #: ../fish/guestfish-actions.pod:3767
26257 #, no-wrap
26258 msgid ""
26259 " pvuuid device\n"
26260 "\n"
26261 msgstr ""
26262
26263 #. type: =head2
26264 #: ../fish/guestfish-actions.pod:3771
26265 msgid "pwrite"
26266 msgstr ""
26267
26268 #. type: verbatim
26269 #: ../fish/guestfish-actions.pod:3773
26270 #, no-wrap
26271 msgid ""
26272 " pwrite path content offset\n"
26273 "\n"
26274 msgstr ""
26275
26276 #. type: textblock
26277 #: ../fish/guestfish-actions.pod:3784
26278 msgid "See also L</pread>, L</pwrite-device>."
26279 msgstr ""
26280
26281 #. type: =head2
26282 #: ../fish/guestfish-actions.pod:3789
26283 msgid "pwrite-device"
26284 msgstr ""
26285
26286 #. type: verbatim
26287 #: ../fish/guestfish-actions.pod:3791
26288 #, no-wrap
26289 msgid ""
26290 " pwrite-device device content offset\n"
26291 "\n"
26292 msgstr ""
26293
26294 #. type: textblock
26295 #: ../fish/guestfish-actions.pod:3801
26296 msgid "See also L</pwrite>."
26297 msgstr ""
26298
26299 #. type: =head2
26300 #: ../fish/guestfish-actions.pod:3806
26301 msgid "read-file"
26302 msgstr ""
26303
26304 #. type: verbatim
26305 #: ../fish/guestfish-actions.pod:3808
26306 #, no-wrap
26307 msgid ""
26308 " read-file path\n"
26309 "\n"
26310 msgstr ""
26311
26312 #. type: textblock
26313 #: ../fish/guestfish-actions.pod:3813
26314 msgid ""
26315 "Unlike L</cat>, this function can correctly handle files that contain "
26316 "embedded ASCII NUL characters.  However unlike L</download>, this function "
26317 "is limited in the total size of file that can be handled."
26318 msgstr ""
26319
26320 #. type: =head2
26321 #: ../fish/guestfish-actions.pod:3821
26322 msgid "read-lines"
26323 msgstr ""
26324
26325 #. type: verbatim
26326 #: ../fish/guestfish-actions.pod:3823
26327 #, no-wrap
26328 msgid ""
26329 " read-lines path\n"
26330 "\n"
26331 msgstr ""
26332
26333 #. type: textblock
26334 #: ../fish/guestfish-actions.pod:3830
26335 msgid ""
26336 "Note that this function cannot correctly handle binary files (specifically, "
26337 "files containing C<\\0> character which is treated as end of line).  For "
26338 "those you need to use the L</read-file> function which has a more complex "
26339 "interface."
26340 msgstr ""
26341
26342 #. type: =head2
26343 #: ../fish/guestfish-actions.pod:3835
26344 msgid "readdir"
26345 msgstr ""
26346
26347 #. type: verbatim
26348 #: ../fish/guestfish-actions.pod:3837
26349 #, no-wrap
26350 msgid ""
26351 " readdir dir\n"
26352 "\n"
26353 msgstr ""
26354
26355 #. type: textblock
26356 #: ../fish/guestfish-actions.pod:3889
26357 msgid ""
26358 "This function is primarily intended for use by programs.  To get a simple "
26359 "list of names, use L</ls>.  To get a printable directory for human "
26360 "consumption, use L</ll>."
26361 msgstr ""
26362
26363 #. type: =head2
26364 #: ../fish/guestfish-actions.pod:3893
26365 msgid "readlink"
26366 msgstr ""
26367
26368 #. type: verbatim
26369 #: ../fish/guestfish-actions.pod:3895
26370 #, no-wrap
26371 msgid ""
26372 " readlink path\n"
26373 "\n"
26374 msgstr ""
26375
26376 #. type: =head2
26377 #: ../fish/guestfish-actions.pod:3899
26378 msgid "readlinklist"
26379 msgstr ""
26380
26381 #. type: verbatim
26382 #: ../fish/guestfish-actions.pod:3901
26383 #, no-wrap
26384 msgid ""
26385 " readlinklist path 'names ...'\n"
26386 "\n"
26387 msgstr ""
26388
26389 #. type: =head2
26390 #: ../fish/guestfish-actions.pod:3925
26391 msgid "realpath"
26392 msgstr ""
26393
26394 #. type: verbatim
26395 #: ../fish/guestfish-actions.pod:3927
26396 #, no-wrap
26397 msgid ""
26398 " realpath path\n"
26399 "\n"
26400 msgstr ""
26401
26402 #. type: =head2
26403 #: ../fish/guestfish-actions.pod:3932
26404 msgid "removexattr"
26405 msgstr ""
26406
26407 #. type: verbatim
26408 #: ../fish/guestfish-actions.pod:3934
26409 #, no-wrap
26410 msgid ""
26411 " removexattr xattr path\n"
26412 "\n"
26413 msgstr ""
26414
26415 #. type: textblock
26416 #: ../fish/guestfish-actions.pod:3939
26417 msgid "See also: L</lremovexattr>, L<attr(5)>."
26418 msgstr ""
26419
26420 #. type: =head2
26421 #: ../fish/guestfish-actions.pod:3941
26422 msgid "resize2fs"
26423 msgstr ""
26424
26425 #. type: verbatim
26426 #: ../fish/guestfish-actions.pod:3943
26427 #, no-wrap
26428 msgid ""
26429 " resize2fs device\n"
26430 "\n"
26431 msgstr ""
26432
26433 #. type: textblock
26434 #: ../fish/guestfish-actions.pod:3948
26435 msgid ""
26436 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26437 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26438 "gives an error about this and sometimes not.  In any case, it is always safe "
26439 "to call L</e2fsck-f> before calling this function."
26440 msgstr ""
26441
26442 #. type: =head2
26443 #: ../fish/guestfish-actions.pod:3954
26444 msgid "resize2fs-M"
26445 msgstr ""
26446
26447 #. type: verbatim
26448 #: ../fish/guestfish-actions.pod:3956
26449 #, no-wrap
26450 msgid ""
26451 " resize2fs-M device\n"
26452 "\n"
26453 msgstr ""
26454
26455 #. type: textblock
26456 #: ../fish/guestfish-actions.pod:3958
26457 msgid ""
26458 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26459 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26460 "command."
26461 msgstr ""
26462
26463 #. type: textblock
26464 #: ../fish/guestfish-actions.pod:3962
26465 msgid ""
26466 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26467 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26468 "multiplied together, give the resulting size of the minimal filesystem in "
26469 "bytes."
26470 msgstr ""
26471
26472 #. type: =head2
26473 #: ../fish/guestfish-actions.pod:3967
26474 msgid "resize2fs-size"
26475 msgstr ""
26476
26477 #. type: verbatim
26478 #: ../fish/guestfish-actions.pod:3969
26479 #, no-wrap
26480 msgid ""
26481 " resize2fs-size device size\n"
26482 "\n"
26483 msgstr ""
26484
26485 #. type: textblock
26486 #: ../fish/guestfish-actions.pod:3971
26487 msgid ""
26488 "This command is the same as L</resize2fs> except that it allows you to "
26489 "specify the new size (in bytes) explicitly."
26490 msgstr ""
26491
26492 #. type: =head2
26493 #: ../fish/guestfish-actions.pod:3974
26494 msgid "rm"
26495 msgstr ""
26496
26497 #. type: verbatim
26498 #: ../fish/guestfish-actions.pod:3976
26499 #, no-wrap
26500 msgid ""
26501 " rm path\n"
26502 "\n"
26503 msgstr ""
26504
26505 #. type: =head2
26506 #: ../fish/guestfish-actions.pod:3980
26507 msgid "rm-rf"
26508 msgstr ""
26509
26510 #. type: verbatim
26511 #: ../fish/guestfish-actions.pod:3982
26512 #, no-wrap
26513 msgid ""
26514 " rm-rf path\n"
26515 "\n"
26516 msgstr ""
26517
26518 #. type: =head2
26519 #: ../fish/guestfish-actions.pod:3988
26520 msgid "rmdir"
26521 msgstr ""
26522
26523 #. type: verbatim
26524 #: ../fish/guestfish-actions.pod:3990
26525 #, no-wrap
26526 msgid ""
26527 " rmdir path\n"
26528 "\n"
26529 msgstr ""
26530
26531 #. type: =head2
26532 #: ../fish/guestfish-actions.pod:3994
26533 msgid "rmmountpoint"
26534 msgstr ""
26535
26536 #. type: verbatim
26537 #: ../fish/guestfish-actions.pod:3996
26538 #, no-wrap
26539 msgid ""
26540 " rmmountpoint exemptpath\n"
26541 "\n"
26542 msgstr ""
26543
26544 #. type: textblock
26545 #: ../fish/guestfish-actions.pod:3998
26546 msgid ""
26547 "This calls removes a mountpoint that was previously created with "
26548 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
26549 msgstr ""
26550
26551 #. type: =head2
26552 #: ../fish/guestfish-actions.pod:4002
26553 msgid "scrub-device"
26554 msgstr ""
26555
26556 #. type: verbatim
26557 #: ../fish/guestfish-actions.pod:4004
26558 #, no-wrap
26559 msgid ""
26560 " scrub-device device\n"
26561 "\n"
26562 msgstr ""
26563
26564 #. type: =head2
26565 #: ../fish/guestfish-actions.pod:4015
26566 msgid "scrub-file"
26567 msgstr ""
26568
26569 #. type: verbatim
26570 #: ../fish/guestfish-actions.pod:4017
26571 #, no-wrap
26572 msgid ""
26573 " scrub-file file\n"
26574 "\n"
26575 msgstr ""
26576
26577 #. type: =head2
26578 #: ../fish/guestfish-actions.pod:4027
26579 msgid "scrub-freespace"
26580 msgstr ""
26581
26582 #. type: verbatim
26583 #: ../fish/guestfish-actions.pod:4029
26584 #, no-wrap
26585 msgid ""
26586 " scrub-freespace dir\n"
26587 "\n"
26588 msgstr ""
26589
26590 #. type: textblock
26591 #: ../fish/guestfish-actions.pod:4031
26592 msgid ""
26593 "This command creates the directory C<dir> and then fills it with files until "
26594 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26595 "deletes them.  The intention is to scrub any free space on the partition "
26596 "containing C<dir>."
26597 msgstr ""
26598
26599 #. type: =head2
26600 #: ../fish/guestfish-actions.pod:4040
26601 msgid "set-append"
26602 msgstr ""
26603
26604 #. type: =head2
26605 #: ../fish/guestfish-actions.pod:4042
26606 msgid "append"
26607 msgstr ""
26608
26609 #. type: verbatim
26610 #: ../fish/guestfish-actions.pod:4044
26611 #, no-wrap
26612 msgid ""
26613 " set-append append\n"
26614 "\n"
26615 msgstr ""
26616
26617 #. type: =head2
26618 #: ../fish/guestfish-actions.pod:4055
26619 msgid "set-attach-method"
26620 msgstr ""
26621
26622 #. type: =head2
26623 #: ../fish/guestfish-actions.pod:4057
26624 msgid "attach-method"
26625 msgstr ""
26626
26627 #. type: verbatim
26628 #: ../fish/guestfish-actions.pod:4059
26629 #, no-wrap
26630 msgid ""
26631 " set-attach-method attachmethod\n"
26632 "\n"
26633 msgstr ""
26634
26635 #. type: =head2
26636 #: ../fish/guestfish-actions.pod:4081
26637 msgid "set-autosync"
26638 msgstr ""
26639
26640 #. type: =head2
26641 #: ../fish/guestfish-actions.pod:4083
26642 msgid "autosync"
26643 msgstr ""
26644
26645 #. type: verbatim
26646 #: ../fish/guestfish-actions.pod:4085
26647 #, no-wrap
26648 msgid ""
26649 " set-autosync true|false\n"
26650 "\n"
26651 msgstr ""
26652
26653 #. type: =head2
26654 #: ../fish/guestfish-actions.pod:4095
26655 msgid "set-direct"
26656 msgstr ""
26657
26658 #. type: =head2
26659 #: ../fish/guestfish-actions.pod:4097
26660 msgid "direct"
26661 msgstr ""
26662
26663 #. type: verbatim
26664 #: ../fish/guestfish-actions.pod:4099
26665 #, no-wrap
26666 msgid ""
26667 " set-direct true|false\n"
26668 "\n"
26669 msgstr ""
26670
26671 #. type: textblock
26672 #: ../fish/guestfish-actions.pod:4105
26673 msgid ""
26674 "One consequence of this is that log messages aren't caught by the library "
26675 "and handled by L</set-log-message-callback>, but go straight to stdout."
26676 msgstr ""
26677
26678 #. type: =head2
26679 #: ../fish/guestfish-actions.pod:4114
26680 msgid "set-e2label"
26681 msgstr ""
26682
26683 #. type: verbatim
26684 #: ../fish/guestfish-actions.pod:4116
26685 #, no-wrap
26686 msgid ""
26687 " set-e2label device label\n"
26688 "\n"
26689 msgstr ""
26690
26691 #. type: textblock
26692 #: ../fish/guestfish-actions.pod:4122
26693 msgid ""
26694 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26695 "label on a filesystem."
26696 msgstr ""
26697
26698 #. type: =head2
26699 #: ../fish/guestfish-actions.pod:4125
26700 msgid "set-e2uuid"
26701 msgstr ""
26702
26703 #. type: verbatim
26704 #: ../fish/guestfish-actions.pod:4127
26705 #, no-wrap
26706 msgid ""
26707 " set-e2uuid device uuid\n"
26708 "\n"
26709 msgstr ""
26710
26711 #. type: textblock
26712 #: ../fish/guestfish-actions.pod:4134
26713 msgid ""
26714 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26715 "UUID of a filesystem."
26716 msgstr ""
26717
26718 #. type: =head2
26719 #: ../fish/guestfish-actions.pod:4137
26720 msgid "set-memsize"
26721 msgstr ""
26722
26723 #. type: =head2
26724 #: ../fish/guestfish-actions.pod:4139
26725 msgid "memsize"
26726 msgstr ""
26727
26728 #. type: verbatim
26729 #: ../fish/guestfish-actions.pod:4141
26730 #, no-wrap
26731 msgid ""
26732 " set-memsize memsize\n"
26733 "\n"
26734 msgstr ""
26735
26736 #. type: textblock
26737 #: ../fish/guestfish-actions.pod:4143
26738 msgid ""
26739 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26740 "This only has any effect if called before L</launch>."
26741 msgstr ""
26742
26743 #. type: =head2
26744 #: ../fish/guestfish-actions.pod:4154
26745 msgid "set-network"
26746 msgstr ""
26747
26748 #. type: =head2
26749 #: ../fish/guestfish-actions.pod:4156
26750 msgid "network"
26751 msgstr ""
26752
26753 #. type: verbatim
26754 #: ../fish/guestfish-actions.pod:4158
26755 #, no-wrap
26756 msgid ""
26757 " set-network true|false\n"
26758 "\n"
26759 msgstr ""
26760
26761 #. type: textblock
26762 #: ../fish/guestfish-actions.pod:4166
26763 msgid "You must call this before calling L</launch>, otherwise it has no effect."
26764 msgstr ""
26765
26766 #. type: =head2
26767 #: ../fish/guestfish-actions.pod:4169
26768 msgid "set-path"
26769 msgstr ""
26770
26771 #. type: =head2
26772 #: ../fish/guestfish-actions.pod:4171
26773 msgid "path"
26774 msgstr ""
26775
26776 #. type: verbatim
26777 #: ../fish/guestfish-actions.pod:4173
26778 #, no-wrap
26779 msgid ""
26780 " set-path searchpath\n"
26781 "\n"
26782 msgstr ""
26783
26784 #. type: =head2
26785 #: ../fish/guestfish-actions.pod:4182
26786 msgid "set-qemu"
26787 msgstr ""
26788
26789 #. type: =head2
26790 #: ../fish/guestfish-actions.pod:4184
26791 msgid "qemu"
26792 msgstr ""
26793
26794 #. type: verbatim
26795 #: ../fish/guestfish-actions.pod:4186
26796 #, no-wrap
26797 msgid ""
26798 " set-qemu qemu\n"
26799 "\n"
26800 msgstr ""
26801
26802 #. type: =head2
26803 #: ../fish/guestfish-actions.pod:4206
26804 msgid "set-recovery-proc"
26805 msgstr ""
26806
26807 #. type: =head2
26808 #: ../fish/guestfish-actions.pod:4208
26809 msgid "recovery-proc"
26810 msgstr ""
26811
26812 #. type: verbatim
26813 #: ../fish/guestfish-actions.pod:4210
26814 #, no-wrap
26815 msgid ""
26816 " set-recovery-proc true|false\n"
26817 "\n"
26818 msgstr ""
26819
26820 #. type: textblock
26821 #: ../fish/guestfish-actions.pod:4212
26822 msgid ""
26823 "If this is called with the parameter C<false> then L</launch> does not "
26824 "create a recovery process.  The purpose of the recovery process is to stop "
26825 "runaway qemu processes in the case where the main program aborts abruptly."
26826 msgstr ""
26827
26828 #. type: textblock
26829 #: ../fish/guestfish-actions.pod:4217
26830 msgid ""
26831 "This only has any effect if called before L</launch>, and the default is "
26832 "true."
26833 msgstr ""
26834
26835 #. type: =head2
26836 #: ../fish/guestfish-actions.pod:4226
26837 msgid "set-selinux"
26838 msgstr ""
26839
26840 #. type: =head2
26841 #: ../fish/guestfish-actions.pod:4228
26842 msgid "selinux"
26843 msgstr ""
26844
26845 #. type: verbatim
26846 #: ../fish/guestfish-actions.pod:4230
26847 #, no-wrap
26848 msgid ""
26849 " set-selinux true|false\n"
26850 "\n"
26851 msgstr ""
26852
26853 #. type: =head2
26854 #: ../fish/guestfish-actions.pod:4241
26855 msgid "set-trace"
26856 msgstr ""
26857
26858 #. type: =head2
26859 #: ../fish/guestfish-actions.pod:4243
26860 msgid "trace"
26861 msgstr ""
26862
26863 #. type: verbatim
26864 #: ../fish/guestfish-actions.pod:4245
26865 #, no-wrap
26866 msgid ""
26867 " set-trace true|false\n"
26868 "\n"
26869 msgstr ""
26870
26871 #. type: textblock
26872 #: ../fish/guestfish-actions.pod:4257
26873 msgid ""
26874 "Trace messages are normally sent to C<stderr>, unless you register a "
26875 "callback to send them somewhere else (see L</set-event-callback>)."
26876 msgstr ""
26877
26878 #. type: =head2
26879 #: ../fish/guestfish-actions.pod:4261
26880 msgid "set-verbose"
26881 msgstr ""
26882
26883 #. type: =head2
26884 #: ../fish/guestfish-actions.pod:4263
26885 msgid "verbose"
26886 msgstr ""
26887
26888 #. type: verbatim
26889 #: ../fish/guestfish-actions.pod:4265
26890 #, no-wrap
26891 msgid ""
26892 " set-verbose true|false\n"
26893 "\n"
26894 msgstr ""
26895
26896 #. type: textblock
26897 #: ../fish/guestfish-actions.pod:4272
26898 msgid ""
26899 "Verbose messages are normally sent to C<stderr>, unless you register a "
26900 "callback to send them somewhere else (see L</set-event-callback>)."
26901 msgstr ""
26902
26903 #. type: =head2
26904 #: ../fish/guestfish-actions.pod:4276
26905 msgid "setcon"
26906 msgstr ""
26907
26908 #. type: verbatim
26909 #: ../fish/guestfish-actions.pod:4278
26910 #, no-wrap
26911 msgid ""
26912 " setcon context\n"
26913 "\n"
26914 msgstr ""
26915
26916 #. type: =head2
26917 #: ../fish/guestfish-actions.pod:4285
26918 msgid "setxattr"
26919 msgstr ""
26920
26921 #. type: verbatim
26922 #: ../fish/guestfish-actions.pod:4287
26923 #, no-wrap
26924 msgid ""
26925 " setxattr xattr val vallen path\n"
26926 "\n"
26927 msgstr ""
26928
26929 #. type: textblock
26930 #: ../fish/guestfish-actions.pod:4293
26931 msgid "See also: L</lsetxattr>, L<attr(5)>."
26932 msgstr ""
26933
26934 #. type: =head2
26935 #: ../fish/guestfish-actions.pod:4295
26936 msgid "sfdisk"
26937 msgstr ""
26938
26939 #. type: verbatim
26940 #: ../fish/guestfish-actions.pod:4297
26941 #, no-wrap
26942 msgid ""
26943 " sfdisk device cyls heads sectors 'lines ...'\n"
26944 "\n"
26945 msgstr ""
26946
26947 #. type: textblock
26948 #: ../fish/guestfish-actions.pod:4319
26949 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26950 msgstr ""
26951
26952 #. type: =head2
26953 #: ../fish/guestfish-actions.pod:4332
26954 msgid "sfdiskM"
26955 msgstr ""
26956
26957 #. type: verbatim
26958 #: ../fish/guestfish-actions.pod:4334
26959 #, no-wrap
26960 msgid ""
26961 " sfdiskM device 'lines ...'\n"
26962 "\n"
26963 msgstr ""
26964
26965 #. type: textblock
26966 #: ../fish/guestfish-actions.pod:4336
26967 msgid ""
26968 "This is a simplified interface to the L</sfdisk> command, where partition "
26969 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26970 "you don't need to specify the cyls, heads and sectors parameters which were "
26971 "rarely if ever used anyway."
26972 msgstr ""
26973
26974 #. type: textblock
26975 #: ../fish/guestfish-actions.pod:4342
26976 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26977 msgstr ""
26978
26979 #. type: =head2
26980 #: ../fish/guestfish-actions.pod:4355
26981 msgid "sfdisk-N"
26982 msgstr ""
26983
26984 #. type: verbatim
26985 #: ../fish/guestfish-actions.pod:4357
26986 #, no-wrap
26987 msgid ""
26988 " sfdisk-N device partnum cyls heads sectors line\n"
26989 "\n"
26990 msgstr ""
26991
26992 #. type: textblock
26993 #: ../fish/guestfish-actions.pod:4362
26994 msgid ""
26995 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26996 "cyls/heads/sectors parameters."
26997 msgstr ""
26998
26999 #. type: textblock
27000 #: ../fish/guestfish-actions.pod:4365
27001 msgid "See also: L</part-add>"
27002 msgstr ""
27003
27004 #. type: =head2
27005 #: ../fish/guestfish-actions.pod:4377
27006 msgid "sfdisk-disk-geometry"
27007 msgstr ""
27008
27009 #. type: verbatim
27010 #: ../fish/guestfish-actions.pod:4379
27011 #, no-wrap
27012 msgid ""
27013 " sfdisk-disk-geometry device\n"
27014 "\n"
27015 msgstr ""
27016
27017 #. type: textblock
27018 #: ../fish/guestfish-actions.pod:4381
27019 msgid ""
27020 "This displays the disk geometry of C<device> read from the partition table.  "
27021 "Especially in the case where the underlying block device has been resized, "
27022 "this can be different from the kernel's idea of the geometry (see "
27023 "L</sfdisk-kernel-geometry>)."
27024 msgstr ""
27025
27026 #. type: =head2
27027 #: ../fish/guestfish-actions.pod:4389
27028 msgid "sfdisk-kernel-geometry"
27029 msgstr ""
27030
27031 #. type: verbatim
27032 #: ../fish/guestfish-actions.pod:4391
27033 #, no-wrap
27034 msgid ""
27035 " sfdisk-kernel-geometry device\n"
27036 "\n"
27037 msgstr ""
27038
27039 #. type: =head2
27040 #: ../fish/guestfish-actions.pod:4398
27041 msgid "sfdisk-l"
27042 msgstr ""
27043
27044 #. type: verbatim
27045 #: ../fish/guestfish-actions.pod:4400
27046 #, no-wrap
27047 msgid ""
27048 " sfdisk-l device\n"
27049 "\n"
27050 msgstr ""
27051
27052 #. type: textblock
27053 #: ../fish/guestfish-actions.pod:4406
27054 msgid "See also: L</part-list>"
27055 msgstr ""
27056
27057 #. type: =head2
27058 #: ../fish/guestfish-actions.pod:4415
27059 msgid "sh"
27060 msgstr ""
27061
27062 #. type: verbatim
27063 #: ../fish/guestfish-actions.pod:4417
27064 #, no-wrap
27065 msgid ""
27066 " sh command\n"
27067 "\n"
27068 msgstr ""
27069
27070 #. type: textblock
27071 #: ../fish/guestfish-actions.pod:4422
27072 msgid "This is like L</command>, but passes the command to:"
27073 msgstr ""
27074
27075 #. type: textblock
27076 #: ../fish/guestfish-actions.pod:4430
27077 msgid "All the provisos about L</command> apply to this call."
27078 msgstr ""
27079
27080 #. type: =head2
27081 #: ../fish/guestfish-actions.pod:4432
27082 msgid "sh-lines"
27083 msgstr ""
27084
27085 #. type: verbatim
27086 #: ../fish/guestfish-actions.pod:4434
27087 #, no-wrap
27088 msgid ""
27089 " sh-lines command\n"
27090 "\n"
27091 msgstr ""
27092
27093 #. type: textblock
27094 #: ../fish/guestfish-actions.pod:4436
27095 msgid "This is the same as L</sh>, but splits the result into a list of lines."
27096 msgstr ""
27097
27098 #. type: textblock
27099 #: ../fish/guestfish-actions.pod:4439
27100 msgid "See also: L</command-lines>"
27101 msgstr ""
27102
27103 #. type: =head2
27104 #: ../fish/guestfish-actions.pod:4441
27105 msgid "sleep"
27106 msgstr ""
27107
27108 #. type: verbatim
27109 #: ../fish/guestfish-actions.pod:4443
27110 #, no-wrap
27111 msgid ""
27112 " sleep secs\n"
27113 "\n"
27114 msgstr ""
27115
27116 #. type: =head2
27117 #: ../fish/guestfish-actions.pod:4447
27118 msgid "stat"
27119 msgstr ""
27120
27121 #. type: verbatim
27122 #: ../fish/guestfish-actions.pod:4449
27123 #, no-wrap
27124 msgid ""
27125 " stat path\n"
27126 "\n"
27127 msgstr ""
27128
27129 #. type: =head2
27130 #: ../fish/guestfish-actions.pod:4455
27131 msgid "statvfs"
27132 msgstr ""
27133
27134 #. type: verbatim
27135 #: ../fish/guestfish-actions.pod:4457
27136 #, no-wrap
27137 msgid ""
27138 " statvfs path\n"
27139 "\n"
27140 msgstr ""
27141
27142 #. type: =head2
27143 #: ../fish/guestfish-actions.pod:4465
27144 msgid "strings"
27145 msgstr ""
27146
27147 #. type: verbatim
27148 #: ../fish/guestfish-actions.pod:4467
27149 #, no-wrap
27150 msgid ""
27151 " strings path\n"
27152 "\n"
27153 msgstr ""
27154
27155 #. type: =head2
27156 #: ../fish/guestfish-actions.pod:4475
27157 msgid "strings-e"
27158 msgstr ""
27159
27160 #. type: verbatim
27161 #: ../fish/guestfish-actions.pod:4477
27162 #, no-wrap
27163 msgid ""
27164 " strings-e encoding path\n"
27165 "\n"
27166 msgstr ""
27167
27168 #. type: textblock
27169 #: ../fish/guestfish-actions.pod:4479
27170 msgid ""
27171 "This is like the L</strings> command, but allows you to specify the encoding "
27172 "of strings that are looked for in the source file C<path>."
27173 msgstr ""
27174
27175 #. type: textblock
27176 #: ../fish/guestfish-actions.pod:4489
27177 msgid ""
27178 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
27179 "ISO-8859-X (this is what L</strings> uses)."
27180 msgstr ""
27181
27182 #. type: =head2
27183 #: ../fish/guestfish-actions.pod:4521
27184 msgid "swapoff-device"
27185 msgstr ""
27186
27187 #. type: verbatim
27188 #: ../fish/guestfish-actions.pod:4523
27189 #, no-wrap
27190 msgid ""
27191 " swapoff-device device\n"
27192 "\n"
27193 msgstr ""
27194
27195 #. type: textblock
27196 #: ../fish/guestfish-actions.pod:4525
27197 msgid ""
27198 "This command disables the libguestfs appliance swap device or partition "
27199 "named C<device>.  See L</swapon-device>."
27200 msgstr ""
27201
27202 #. type: =head2
27203 #: ../fish/guestfish-actions.pod:4529
27204 msgid "swapoff-file"
27205 msgstr ""
27206
27207 #. type: verbatim
27208 #: ../fish/guestfish-actions.pod:4531
27209 #, no-wrap
27210 msgid ""
27211 " swapoff-file file\n"
27212 "\n"
27213 msgstr ""
27214
27215 #. type: =head2
27216 #: ../fish/guestfish-actions.pod:4535
27217 msgid "swapoff-label"
27218 msgstr ""
27219
27220 #. type: verbatim
27221 #: ../fish/guestfish-actions.pod:4537
27222 #, no-wrap
27223 msgid ""
27224 " swapoff-label label\n"
27225 "\n"
27226 msgstr ""
27227
27228 #. type: =head2
27229 #: ../fish/guestfish-actions.pod:4542
27230 msgid "swapoff-uuid"
27231 msgstr ""
27232
27233 #. type: verbatim
27234 #: ../fish/guestfish-actions.pod:4544
27235 #, no-wrap
27236 msgid ""
27237 " swapoff-uuid uuid\n"
27238 "\n"
27239 msgstr ""
27240
27241 #. type: =head2
27242 #: ../fish/guestfish-actions.pod:4549
27243 msgid "swapon-device"
27244 msgstr ""
27245
27246 #. type: verbatim
27247 #: ../fish/guestfish-actions.pod:4551
27248 #, no-wrap
27249 msgid ""
27250 " swapon-device device\n"
27251 "\n"
27252 msgstr ""
27253
27254 #. type: textblock
27255 #: ../fish/guestfish-actions.pod:4553
27256 msgid ""
27257 "This command enables the libguestfs appliance to use the swap device or "
27258 "partition named C<device>.  The increased memory is made available for all "
27259 "commands, for example those run using L</command> or L</sh>."
27260 msgstr ""
27261
27262 #. type: =head2
27263 #: ../fish/guestfish-actions.pod:4565
27264 msgid "swapon-file"
27265 msgstr ""
27266
27267 #. type: verbatim
27268 #: ../fish/guestfish-actions.pod:4567
27269 #, no-wrap
27270 msgid ""
27271 " swapon-file file\n"
27272 "\n"
27273 msgstr ""
27274
27275 #. type: textblock
27276 #: ../fish/guestfish-actions.pod:4569
27277 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
27278 msgstr ""
27279
27280 #. type: =head2
27281 #: ../fish/guestfish-actions.pod:4572
27282 msgid "swapon-label"
27283 msgstr ""
27284
27285 #. type: verbatim
27286 #: ../fish/guestfish-actions.pod:4574
27287 #, no-wrap
27288 msgid ""
27289 " swapon-label label\n"
27290 "\n"
27291 msgstr ""
27292
27293 #. type: textblock
27294 #: ../fish/guestfish-actions.pod:4576
27295 msgid ""
27296 "This command enables swap to a labeled swap partition.  See "
27297 "L</swapon-device> for other notes."
27298 msgstr ""
27299
27300 #. type: =head2
27301 #: ../fish/guestfish-actions.pod:4579
27302 msgid "swapon-uuid"
27303 msgstr ""
27304
27305 #. type: verbatim
27306 #: ../fish/guestfish-actions.pod:4581
27307 #, no-wrap
27308 msgid ""
27309 " swapon-uuid uuid\n"
27310 "\n"
27311 msgstr ""
27312
27313 #. type: textblock
27314 #: ../fish/guestfish-actions.pod:4583
27315 msgid ""
27316 "This command enables swap to a swap partition with the given UUID.  See "
27317 "L</swapon-device> for other notes."
27318 msgstr ""
27319
27320 #. type: =head2
27321 #: ../fish/guestfish-actions.pod:4586
27322 msgid "sync"
27323 msgstr ""
27324
27325 #. type: verbatim
27326 #: ../fish/guestfish-actions.pod:4588
27327 #, no-wrap
27328 msgid ""
27329 " sync\n"
27330 "\n"
27331 msgstr ""
27332
27333 #. type: =head2
27334 #: ../fish/guestfish-actions.pod:4596
27335 msgid "tail"
27336 msgstr ""
27337
27338 #. type: verbatim
27339 #: ../fish/guestfish-actions.pod:4598
27340 #, no-wrap
27341 msgid ""
27342 " tail path\n"
27343 "\n"
27344 msgstr ""
27345
27346 #. type: =head2
27347 #: ../fish/guestfish-actions.pod:4606
27348 msgid "tail-n"
27349 msgstr ""
27350
27351 #. type: verbatim
27352 #: ../fish/guestfish-actions.pod:4608
27353 #, no-wrap
27354 msgid ""
27355 " tail-n nrlines path\n"
27356 "\n"
27357 msgstr ""
27358
27359 #. type: =head2
27360 #: ../fish/guestfish-actions.pod:4621
27361 msgid "tar-in"
27362 msgstr ""
27363
27364 #. type: verbatim
27365 #: ../fish/guestfish-actions.pod:4623
27366 #, no-wrap
27367 msgid ""
27368 " tar-in (tarfile|-) directory\n"
27369 "\n"
27370 msgstr ""
27371
27372 #. type: textblock
27373 #: ../fish/guestfish-actions.pod:4628
27374 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27375 msgstr ""
27376
27377 #. type: =head2
27378 #: ../fish/guestfish-actions.pod:4633
27379 msgid "tar-out"
27380 msgstr ""
27381
27382 #. type: verbatim
27383 #: ../fish/guestfish-actions.pod:4635
27384 #, no-wrap
27385 msgid ""
27386 " tar-out directory (tarfile|-)\n"
27387 "\n"
27388 msgstr ""
27389
27390 #. type: textblock
27391 #: ../fish/guestfish-actions.pod:4640
27392 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27393 msgstr ""
27394
27395 #. type: =head2
27396 #: ../fish/guestfish-actions.pod:4645
27397 msgid "tgz-in"
27398 msgstr ""
27399
27400 #. type: verbatim
27401 #: ../fish/guestfish-actions.pod:4647
27402 #, no-wrap
27403 msgid ""
27404 " tgz-in (tarball|-) directory\n"
27405 "\n"
27406 msgstr ""
27407
27408 #. type: textblock
27409 #: ../fish/guestfish-actions.pod:4652
27410 msgid "To upload an uncompressed tarball, use L</tar-in>."
27411 msgstr ""
27412
27413 #. type: =head2
27414 #: ../fish/guestfish-actions.pod:4656
27415 msgid "tgz-out"
27416 msgstr ""
27417
27418 #. type: verbatim
27419 #: ../fish/guestfish-actions.pod:4658
27420 #, no-wrap
27421 msgid ""
27422 " tgz-out directory (tarball|-)\n"
27423 "\n"
27424 msgstr ""
27425
27426 #. type: textblock
27427 #: ../fish/guestfish-actions.pod:4663
27428 msgid "To download an uncompressed tarball, use L</tar-out>."
27429 msgstr ""
27430
27431 #. type: =head2
27432 #: ../fish/guestfish-actions.pod:4667
27433 msgid "touch"
27434 msgstr ""
27435
27436 #. type: verbatim
27437 #: ../fish/guestfish-actions.pod:4669
27438 #, no-wrap
27439 msgid ""
27440 " touch path\n"
27441 "\n"
27442 msgstr ""
27443
27444 #. type: =head2
27445 #: ../fish/guestfish-actions.pod:4678
27446 msgid "truncate"
27447 msgstr ""
27448
27449 #. type: verbatim
27450 #: ../fish/guestfish-actions.pod:4680
27451 #, no-wrap
27452 msgid ""
27453 " truncate path\n"
27454 "\n"
27455 msgstr ""
27456
27457 #. type: =head2
27458 #: ../fish/guestfish-actions.pod:4685
27459 msgid "truncate-size"
27460 msgstr ""
27461
27462 #. type: verbatim
27463 #: ../fish/guestfish-actions.pod:4687
27464 #, no-wrap
27465 msgid ""
27466 " truncate-size path size\n"
27467 "\n"
27468 msgstr ""
27469
27470 #. type: textblock
27471 #: ../fish/guestfish-actions.pod:4692
27472 msgid ""
27473 "If the current file size is less than C<size> then the file is extended to "
27474 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27475 "blocks are not allocated for the file until you write to it).  To create a "
27476 "non-sparse file of zeroes, use L</fallocate64> instead."
27477 msgstr ""
27478
27479 #. type: =head2
27480 #: ../fish/guestfish-actions.pod:4698
27481 msgid "tune2fs-l"
27482 msgstr ""
27483
27484 #. type: verbatim
27485 #: ../fish/guestfish-actions.pod:4700
27486 #, no-wrap
27487 msgid ""
27488 " tune2fs-l device\n"
27489 "\n"
27490 msgstr ""
27491
27492 #. type: =head2
27493 #: ../fish/guestfish-actions.pod:4710
27494 msgid "txz-in"
27495 msgstr ""
27496
27497 #. type: verbatim
27498 #: ../fish/guestfish-actions.pod:4712
27499 #, no-wrap
27500 msgid ""
27501 " txz-in (tarball|-) directory\n"
27502 "\n"
27503 msgstr ""
27504
27505 #. type: =head2
27506 #: ../fish/guestfish-actions.pod:4719
27507 msgid "txz-out"
27508 msgstr ""
27509
27510 #. type: verbatim
27511 #: ../fish/guestfish-actions.pod:4721
27512 #, no-wrap
27513 msgid ""
27514 " txz-out directory (tarball|-)\n"
27515 "\n"
27516 msgstr ""
27517
27518 #. type: =head2
27519 #: ../fish/guestfish-actions.pod:4728
27520 msgid "umask"
27521 msgstr ""
27522
27523 #. type: verbatim
27524 #: ../fish/guestfish-actions.pod:4730
27525 #, no-wrap
27526 msgid ""
27527 " umask mask\n"
27528 "\n"
27529 msgstr ""
27530
27531 #. type: textblock
27532 #: ../fish/guestfish-actions.pod:4744
27533 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27534 msgstr ""
27535
27536 #. type: =head2
27537 #: ../fish/guestfish-actions.pod:4749
27538 msgid "umount"
27539 msgstr ""
27540
27541 #. type: =head2
27542 #: ../fish/guestfish-actions.pod:4751
27543 msgid "unmount"
27544 msgstr ""
27545
27546 #. type: verbatim
27547 #: ../fish/guestfish-actions.pod:4753
27548 #, no-wrap
27549 msgid ""
27550 " umount pathordevice\n"
27551 "\n"
27552 msgstr ""
27553
27554 #. type: =head2
27555 #: ../fish/guestfish-actions.pod:4759
27556 msgid "umount-all"
27557 msgstr ""
27558
27559 #. type: =head2
27560 #: ../fish/guestfish-actions.pod:4761
27561 msgid "unmount-all"
27562 msgstr ""
27563
27564 #. type: verbatim
27565 #: ../fish/guestfish-actions.pod:4763
27566 #, no-wrap
27567 msgid ""
27568 " umount-all\n"
27569 "\n"
27570 msgstr ""
27571
27572 #. type: =head2
27573 #: ../fish/guestfish-actions.pod:4769
27574 msgid "upload"
27575 msgstr ""
27576
27577 #. type: verbatim
27578 #: ../fish/guestfish-actions.pod:4771
27579 #, no-wrap
27580 msgid ""
27581 " upload (filename|-) remotefilename\n"
27582 "\n"
27583 msgstr ""
27584
27585 #. type: textblock
27586 #: ../fish/guestfish-actions.pod:4778
27587 msgid "See also L</download>."
27588 msgstr ""
27589
27590 #. type: =head2
27591 #: ../fish/guestfish-actions.pod:4782
27592 msgid "upload-offset"
27593 msgstr ""
27594
27595 #. type: verbatim
27596 #: ../fish/guestfish-actions.pod:4784
27597 #, no-wrap
27598 msgid ""
27599 " upload-offset (filename|-) remotefilename offset\n"
27600 "\n"
27601 msgstr ""
27602
27603 #. type: textblock
27604 #: ../fish/guestfish-actions.pod:4796
27605 msgid ""
27606 "Note that there is no limit on the amount of data that can be uploaded with "
27607 "this call, unlike with L</pwrite>, and this call always writes the full "
27608 "amount unless an error occurs."
27609 msgstr ""
27610
27611 #. type: textblock
27612 #: ../fish/guestfish-actions.pod:4801
27613 msgid "See also L</upload>, L</pwrite>."
27614 msgstr ""
27615
27616 #. type: =head2
27617 #: ../fish/guestfish-actions.pod:4805
27618 msgid "utimens"
27619 msgstr ""
27620
27621 #. type: verbatim
27622 #: ../fish/guestfish-actions.pod:4807
27623 #, no-wrap
27624 msgid ""
27625 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27626 "\n"
27627 msgstr ""
27628
27629 #. type: =head2
27630 #: ../fish/guestfish-actions.pod:4826
27631 msgid "version"
27632 msgstr ""
27633
27634 #. type: verbatim
27635 #: ../fish/guestfish-actions.pod:4828
27636 #, no-wrap
27637 msgid ""
27638 " version\n"
27639 "\n"
27640 msgstr ""
27641
27642 #. type: textblock
27643 #: ../fish/guestfish-actions.pod:4855
27644 msgid ""
27645 "I<Note:> Don't use this call to test for availability of features.  In "
27646 "enterprise distributions we backport features from later versions into "
27647 "earlier versions, making this an unreliable way to test for features.  Use "
27648 "L</available> instead."
27649 msgstr ""
27650
27651 #. type: =head2
27652 #: ../fish/guestfish-actions.pod:4861
27653 msgid "vfs-label"
27654 msgstr ""
27655
27656 #. type: verbatim
27657 #: ../fish/guestfish-actions.pod:4863
27658 #, no-wrap
27659 msgid ""
27660 " vfs-label device\n"
27661 "\n"
27662 msgstr ""
27663
27664 #. type: textblock
27665 #: ../fish/guestfish-actions.pod:4870
27666 msgid "To find a filesystem from the label, use L</findfs-label>."
27667 msgstr ""
27668
27669 #. type: =head2
27670 #: ../fish/guestfish-actions.pod:4872
27671 msgid "vfs-type"
27672 msgstr ""
27673
27674 #. type: verbatim
27675 #: ../fish/guestfish-actions.pod:4874
27676 #, no-wrap
27677 msgid ""
27678 " vfs-type device\n"
27679 "\n"
27680 msgstr ""
27681
27682 #. type: =head2
27683 #: ../fish/guestfish-actions.pod:4884
27684 msgid "vfs-uuid"
27685 msgstr ""
27686
27687 #. type: verbatim
27688 #: ../fish/guestfish-actions.pod:4886
27689 #, no-wrap
27690 msgid ""
27691 " vfs-uuid device\n"
27692 "\n"
27693 msgstr ""
27694
27695 #. type: textblock
27696 #: ../fish/guestfish-actions.pod:4893
27697 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27698 msgstr ""
27699
27700 #. type: =head2
27701 #: ../fish/guestfish-actions.pod:4895
27702 msgid "vg-activate"
27703 msgstr ""
27704
27705 #. type: verbatim
27706 #: ../fish/guestfish-actions.pod:4897
27707 #, no-wrap
27708 msgid ""
27709 " vg-activate true|false 'volgroups ...'\n"
27710 "\n"
27711 msgstr ""
27712
27713 #. type: =head2
27714 #: ../fish/guestfish-actions.pod:4907
27715 msgid "vg-activate-all"
27716 msgstr ""
27717
27718 #. type: verbatim
27719 #: ../fish/guestfish-actions.pod:4909
27720 #, no-wrap
27721 msgid ""
27722 " vg-activate-all true|false\n"
27723 "\n"
27724 msgstr ""
27725
27726 #. type: =head2
27727 #: ../fish/guestfish-actions.pod:4916
27728 msgid "vgcreate"
27729 msgstr ""
27730
27731 #. type: verbatim
27732 #: ../fish/guestfish-actions.pod:4918
27733 #, no-wrap
27734 msgid ""
27735 " vgcreate volgroup 'physvols ...'\n"
27736 "\n"
27737 msgstr ""
27738
27739 #. type: =head2
27740 #: ../fish/guestfish-actions.pod:4923
27741 msgid "vglvuuids"
27742 msgstr ""
27743
27744 #. type: verbatim
27745 #: ../fish/guestfish-actions.pod:4925
27746 #, no-wrap
27747 msgid ""
27748 " vglvuuids vgname\n"
27749 "\n"
27750 msgstr ""
27751
27752 #. type: textblock
27753 #: ../fish/guestfish-actions.pod:4930
27754 msgid ""
27755 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27756 "logical volumes and volume groups."
27757 msgstr ""
27758
27759 #. type: textblock
27760 #: ../fish/guestfish-actions.pod:4933
27761 msgid "See also L</vgpvuuids>."
27762 msgstr ""
27763
27764 #. type: =head2
27765 #: ../fish/guestfish-actions.pod:4935
27766 msgid "vgpvuuids"
27767 msgstr ""
27768
27769 #. type: verbatim
27770 #: ../fish/guestfish-actions.pod:4937
27771 #, no-wrap
27772 msgid ""
27773 " vgpvuuids vgname\n"
27774 "\n"
27775 msgstr ""
27776
27777 #. type: textblock
27778 #: ../fish/guestfish-actions.pod:4942
27779 msgid ""
27780 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27781 "physical volumes and volume groups."
27782 msgstr ""
27783
27784 #. type: textblock
27785 #: ../fish/guestfish-actions.pod:4945
27786 msgid "See also L</vglvuuids>."
27787 msgstr ""
27788
27789 #. type: =head2
27790 #: ../fish/guestfish-actions.pod:4947
27791 msgid "vgremove"
27792 msgstr ""
27793
27794 #. type: verbatim
27795 #: ../fish/guestfish-actions.pod:4949
27796 #, no-wrap
27797 msgid ""
27798 " vgremove vgname\n"
27799 "\n"
27800 msgstr ""
27801
27802 #. type: =head2
27803 #: ../fish/guestfish-actions.pod:4956
27804 msgid "vgrename"
27805 msgstr ""
27806
27807 #. type: verbatim
27808 #: ../fish/guestfish-actions.pod:4958
27809 #, no-wrap
27810 msgid ""
27811 " vgrename volgroup newvolgroup\n"
27812 "\n"
27813 msgstr ""
27814
27815 #. type: =head2
27816 #: ../fish/guestfish-actions.pod:4962
27817 msgid "vgs"
27818 msgstr ""
27819
27820 #. type: verbatim
27821 #: ../fish/guestfish-actions.pod:4964
27822 #, no-wrap
27823 msgid ""
27824 " vgs\n"
27825 "\n"
27826 msgstr ""
27827
27828 #. type: textblock
27829 #: ../fish/guestfish-actions.pod:4972
27830 msgid "See also L</vgs-full>."
27831 msgstr ""
27832
27833 #. type: =head2
27834 #: ../fish/guestfish-actions.pod:4974
27835 msgid "vgs-full"
27836 msgstr ""
27837
27838 #. type: verbatim
27839 #: ../fish/guestfish-actions.pod:4976
27840 #, no-wrap
27841 msgid ""
27842 " vgs-full\n"
27843 "\n"
27844 msgstr ""
27845
27846 #. type: =head2
27847 #: ../fish/guestfish-actions.pod:4981
27848 msgid "vgscan"
27849 msgstr ""
27850
27851 #. type: verbatim
27852 #: ../fish/guestfish-actions.pod:4983
27853 #, no-wrap
27854 msgid ""
27855 " vgscan\n"
27856 "\n"
27857 msgstr ""
27858
27859 #. type: =head2
27860 #: ../fish/guestfish-actions.pod:4988
27861 msgid "vguuid"
27862 msgstr ""
27863
27864 #. type: verbatim
27865 #: ../fish/guestfish-actions.pod:4990
27866 #, no-wrap
27867 msgid ""
27868 " vguuid vgname\n"
27869 "\n"
27870 msgstr ""
27871
27872 #. type: =head2
27873 #: ../fish/guestfish-actions.pod:4994
27874 msgid "wc-c"
27875 msgstr ""
27876
27877 #. type: verbatim
27878 #: ../fish/guestfish-actions.pod:4996
27879 #, no-wrap
27880 msgid ""
27881 " wc-c path\n"
27882 "\n"
27883 msgstr ""
27884
27885 #. type: =head2
27886 #: ../fish/guestfish-actions.pod:5001
27887 msgid "wc-l"
27888 msgstr ""
27889
27890 #. type: verbatim
27891 #: ../fish/guestfish-actions.pod:5003
27892 #, no-wrap
27893 msgid ""
27894 " wc-l path\n"
27895 "\n"
27896 msgstr ""
27897
27898 #. type: =head2
27899 #: ../fish/guestfish-actions.pod:5008
27900 msgid "wc-w"
27901 msgstr ""
27902
27903 #. type: verbatim
27904 #: ../fish/guestfish-actions.pod:5010
27905 #, no-wrap
27906 msgid ""
27907 " wc-w path\n"
27908 "\n"
27909 msgstr ""
27910
27911 #. type: =head2
27912 #: ../fish/guestfish-actions.pod:5015
27913 msgid "write"
27914 msgstr ""
27915
27916 #. type: verbatim
27917 #: ../fish/guestfish-actions.pod:5017
27918 #, no-wrap
27919 msgid ""
27920 " write path content\n"
27921 "\n"
27922 msgstr ""
27923
27924 #. type: =head2
27925 #: ../fish/guestfish-actions.pod:5025
27926 msgid "write-file"
27927 msgstr ""
27928
27929 #. type: verbatim
27930 #: ../fish/guestfish-actions.pod:5027
27931 #, no-wrap
27932 msgid ""
27933 " write-file path content size\n"
27934 "\n"
27935 msgstr ""
27936
27937 #. type: =head2
27938 #: ../fish/guestfish-actions.pod:5050
27939 msgid "zegrep"
27940 msgstr ""
27941
27942 #. type: verbatim
27943 #: ../fish/guestfish-actions.pod:5052
27944 #, no-wrap
27945 msgid ""
27946 " zegrep regex path\n"
27947 "\n"
27948 msgstr ""
27949
27950 #. type: =head2
27951 #: ../fish/guestfish-actions.pod:5060
27952 msgid "zegrepi"
27953 msgstr ""
27954
27955 #. type: verbatim
27956 #: ../fish/guestfish-actions.pod:5062
27957 #, no-wrap
27958 msgid ""
27959 " zegrepi regex path\n"
27960 "\n"
27961 msgstr ""
27962
27963 #. type: =head2
27964 #: ../fish/guestfish-actions.pod:5070
27965 msgid "zero"
27966 msgstr ""
27967
27968 #. type: verbatim
27969 #: ../fish/guestfish-actions.pod:5072
27970 #, no-wrap
27971 msgid ""
27972 " zero device\n"
27973 "\n"
27974 msgstr ""
27975
27976 #. type: textblock
27977 #: ../fish/guestfish-actions.pod:5080
27978 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
27979 msgstr ""
27980
27981 #. type: =head2
27982 #: ../fish/guestfish-actions.pod:5083
27983 msgid "zero-device"
27984 msgstr ""
27985
27986 #. type: verbatim
27987 #: ../fish/guestfish-actions.pod:5085
27988 #, no-wrap
27989 msgid ""
27990 " zero-device device\n"
27991 "\n"
27992 msgstr ""
27993
27994 #. type: textblock
27995 #: ../fish/guestfish-actions.pod:5087
27996 msgid ""
27997 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27998 "which just zeroes the first few blocks of a device."
27999 msgstr ""
28000
28001 #. type: =head2
28002 #: ../fish/guestfish-actions.pod:5094
28003 msgid "zerofree"
28004 msgstr ""
28005
28006 #. type: verbatim
28007 #: ../fish/guestfish-actions.pod:5096
28008 #, no-wrap
28009 msgid ""
28010 " zerofree device\n"
28011 "\n"
28012 msgstr ""
28013
28014 #. type: =head2
28015 #: ../fish/guestfish-actions.pod:5109
28016 msgid "zfgrep"
28017 msgstr ""
28018
28019 #. type: verbatim
28020 #: ../fish/guestfish-actions.pod:5111
28021 #, no-wrap
28022 msgid ""
28023 " zfgrep pattern path\n"
28024 "\n"
28025 msgstr ""
28026
28027 #. type: =head2
28028 #: ../fish/guestfish-actions.pod:5119
28029 msgid "zfgrepi"
28030 msgstr ""
28031
28032 #. type: verbatim
28033 #: ../fish/guestfish-actions.pod:5121
28034 #, no-wrap
28035 msgid ""
28036 " zfgrepi pattern path\n"
28037 "\n"
28038 msgstr ""
28039
28040 #. type: =head2
28041 #: ../fish/guestfish-actions.pod:5129
28042 msgid "zfile"
28043 msgstr ""
28044
28045 #. type: verbatim
28046 #: ../fish/guestfish-actions.pod:5131
28047 #, no-wrap
28048 msgid ""
28049 " zfile meth path\n"
28050 "\n"
28051 msgstr ""
28052
28053 #. type: textblock
28054 #: ../fish/guestfish-actions.pod:5138
28055 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
28056 msgstr ""
28057
28058 #. type: =head2
28059 #: ../fish/guestfish-actions.pod:5148
28060 msgid "zgrep"
28061 msgstr ""
28062
28063 #. type: verbatim
28064 #: ../fish/guestfish-actions.pod:5150
28065 #, no-wrap
28066 msgid ""
28067 " zgrep regex path\n"
28068 "\n"
28069 msgstr ""
28070
28071 #. type: =head2
28072 #: ../fish/guestfish-actions.pod:5158
28073 msgid "zgrepi"
28074 msgstr ""
28075
28076 #. type: verbatim
28077 #: ../fish/guestfish-actions.pod:5160
28078 #, no-wrap
28079 msgid ""
28080 " zgrepi regex path\n"
28081 "\n"
28082 msgstr ""
28083
28084 #. type: =head2
28085 #: ../fish/guestfish-commands.pod:1
28086 msgid "alloc"
28087 msgstr ""
28088
28089 #. type: =head2
28090 #: ../fish/guestfish-commands.pod:3
28091 msgid "allocate"
28092 msgstr ""
28093
28094 #. type: verbatim
28095 #: ../fish/guestfish-commands.pod:5
28096 #, no-wrap
28097 msgid ""
28098 " alloc filename size\n"
28099 "\n"
28100 msgstr ""
28101
28102 #. type: textblock
28103 #: ../fish/guestfish-commands.pod:7
28104 msgid ""
28105 "This creates an empty (zeroed) file of the given size, and then adds so it "
28106 "can be further examined."
28107 msgstr ""
28108
28109 #. type: textblock
28110 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
28111 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
28112 msgstr ""
28113
28114 #. type: textblock
28115 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
28116 msgid "Size can be specified using standard suffixes, eg. C<1M>."
28117 msgstr ""
28118
28119 #. type: textblock
28120 #: ../fish/guestfish-commands.pod:14
28121 msgid ""
28122 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
28123 "image, see L</PREPARED DISK IMAGES>."
28124 msgstr ""
28125
28126 #. type: =head2
28127 #: ../fish/guestfish-commands.pod:17
28128 msgid "copy-in"
28129 msgstr ""
28130
28131 #. type: verbatim
28132 #: ../fish/guestfish-commands.pod:19
28133 #, no-wrap
28134 msgid ""
28135 " copy-in local [local ...] /remotedir\n"
28136 "\n"
28137 msgstr ""
28138
28139 #. type: textblock
28140 #: ../fish/guestfish-commands.pod:21
28141 msgid ""
28142 "C<copy-in> copies local files or directories recursively into the disk "
28143 "image, placing them in the directory called C</remotedir> (which must "
28144 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
28145 "other commands as necessary."
28146 msgstr ""
28147
28148 #. type: textblock
28149 #: ../fish/guestfish-commands.pod:26
28150 msgid ""
28151 "Multiple local files and directories can be specified, but the last "
28152 "parameter must always be a remote directory.  Wildcards cannot be used."
28153 msgstr ""
28154
28155 #. type: =head2
28156 #: ../fish/guestfish-commands.pod:30
28157 msgid "copy-out"
28158 msgstr ""
28159
28160 #. type: verbatim
28161 #: ../fish/guestfish-commands.pod:32
28162 #, no-wrap
28163 msgid ""
28164 " copy-out remote [remote ...] localdir\n"
28165 "\n"
28166 msgstr ""
28167
28168 #. type: textblock
28169 #: ../fish/guestfish-commands.pod:34
28170 msgid ""
28171 "C<copy-out> copies remote files or directories recursively out of the disk "
28172 "image, placing them on the host disk in a local directory called C<localdir> "
28173 "(which must exist).  This guestfish meta-command turns into a sequence of "
28174 "L</download>, L</tar-out> and other commands as necessary."
28175 msgstr ""
28176
28177 #. type: textblock
28178 #: ../fish/guestfish-commands.pod:40
28179 msgid ""
28180 "Multiple remote files and directories can be specified, but the last "
28181 "parameter must always be a local directory.  To download to the current "
28182 "directory, use C<.> as in:"
28183 msgstr ""
28184
28185 #. type: verbatim
28186 #: ../fish/guestfish-commands.pod:44
28187 #, no-wrap
28188 msgid ""
28189 " copy-out /home .\n"
28190 "\n"
28191 msgstr ""
28192
28193 #. type: textblock
28194 #: ../fish/guestfish-commands.pod:46
28195 msgid ""
28196 "Wildcards cannot be used in the ordinary command, but you can use them with "
28197 "the help of L</glob> like this:"
28198 msgstr ""
28199
28200 #. type: verbatim
28201 #: ../fish/guestfish-commands.pod:49
28202 #, no-wrap
28203 msgid ""
28204 " glob copy-out /home/* .\n"
28205 "\n"
28206 msgstr ""
28207
28208 #. type: =head2
28209 #: ../fish/guestfish-commands.pod:51
28210 msgid "display"
28211 msgstr ""
28212
28213 #. type: verbatim
28214 #: ../fish/guestfish-commands.pod:53
28215 #, no-wrap
28216 msgid ""
28217 " display filename\n"
28218 "\n"
28219 msgstr ""
28220
28221 #. type: textblock
28222 #: ../fish/guestfish-commands.pod:55
28223 msgid ""
28224 "Use C<display> (a graphical display program) to display an image file.  It "
28225 "downloads the file, and runs C<display> on it."
28226 msgstr ""
28227
28228 #. type: textblock
28229 #: ../fish/guestfish-commands.pod:58
28230 msgid ""
28231 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
28232 "environment variable.  For example to use the GNOME display program:"
28233 msgstr ""
28234
28235 #. type: verbatim
28236 #: ../fish/guestfish-commands.pod:61
28237 #, no-wrap
28238 msgid ""
28239 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
28240 "\n"
28241 msgstr ""
28242
28243 #. type: textblock
28244 #: ../fish/guestfish-commands.pod:63
28245 msgid "See also L<display(1)>."
28246 msgstr ""
28247
28248 #. type: =head2
28249 #: ../fish/guestfish-commands.pod:65
28250 msgid "echo"
28251 msgstr ""
28252
28253 #. type: verbatim
28254 #: ../fish/guestfish-commands.pod:67
28255 #, no-wrap
28256 msgid ""
28257 " echo [params ...]\n"
28258 "\n"
28259 msgstr ""
28260
28261 #. type: textblock
28262 #: ../fish/guestfish-commands.pod:69
28263 msgid "This echos the parameters to the terminal."
28264 msgstr ""
28265
28266 #. type: =head2
28267 #: ../fish/guestfish-commands.pod:71
28268 msgid "edit"
28269 msgstr ""
28270
28271 #. type: =head2
28272 #: ../fish/guestfish-commands.pod:73
28273 msgid "vi"
28274 msgstr ""
28275
28276 #. type: =head2
28277 #: ../fish/guestfish-commands.pod:75
28278 msgid "emacs"
28279 msgstr ""
28280
28281 #. type: verbatim
28282 #: ../fish/guestfish-commands.pod:77
28283 #, no-wrap
28284 msgid ""
28285 " edit filename\n"
28286 "\n"
28287 msgstr ""
28288
28289 #. type: textblock
28290 #: ../fish/guestfish-commands.pod:79
28291 msgid ""
28292 "This is used to edit a file.  It downloads the file, edits it locally using "
28293 "your editor, then uploads the result."
28294 msgstr ""
28295
28296 #. type: textblock
28297 #: ../fish/guestfish-commands.pod:82
28298 msgid ""
28299 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
28300 "or C<emacs> you will get those corresponding editors."
28301 msgstr ""
28302
28303 #. type: =head2
28304 #: ../fish/guestfish-commands.pod:86
28305 msgid "glob"
28306 msgstr ""
28307
28308 #. type: verbatim
28309 #: ../fish/guestfish-commands.pod:88
28310 #, no-wrap
28311 msgid ""
28312 " glob command args...\n"
28313 "\n"
28314 msgstr ""
28315
28316 #. type: textblock
28317 #: ../fish/guestfish-commands.pod:90
28318 msgid ""
28319 "Expand wildcards in any paths in the args list, and run C<command> "
28320 "repeatedly on each matching path."
28321 msgstr ""
28322
28323 #. type: textblock
28324 #: ../fish/guestfish-commands.pod:93
28325 msgid "See L</WILDCARDS AND GLOBBING>."
28326 msgstr ""
28327
28328 #. type: =head2
28329 #: ../fish/guestfish-commands.pod:95
28330 msgid "hexedit"
28331 msgstr ""
28332
28333 #. type: verbatim
28334 #: ../fish/guestfish-commands.pod:97
28335 #, no-wrap
28336 msgid ""
28337 " hexedit <filename|device>\n"
28338 " hexedit <filename|device> <max>\n"
28339 " hexedit <filename|device> <start> <max>\n"
28340 "\n"
28341 msgstr ""
28342
28343 #. type: textblock
28344 #: ../fish/guestfish-commands.pod:101
28345 msgid ""
28346 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28347 "device."
28348 msgstr ""
28349
28350 #. type: textblock
28351 #: ../fish/guestfish-commands.pod:104
28352 msgid ""
28353 "This command works by downloading potentially the whole file or device, "
28354 "editing it locally, then uploading it.  If the file or device is large, you "
28355 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28356 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28357 "usual modifiers allowed such as C<1M> (1 megabyte)."
28358 msgstr ""
28359
28360 #. type: textblock
28361 #: ../fish/guestfish-commands.pod:111
28362 msgid "For example to edit the first few sectors of a disk you might do:"
28363 msgstr ""
28364
28365 #. type: verbatim
28366 #: ../fish/guestfish-commands.pod:114
28367 #, no-wrap
28368 msgid ""
28369 " hexedit /dev/sda 1M\n"
28370 "\n"
28371 msgstr ""
28372
28373 #. type: textblock
28374 #: ../fish/guestfish-commands.pod:116
28375 msgid ""
28376 "which would allow you to edit anywhere within the first megabyte of the "
28377 "disk."
28378 msgstr ""
28379
28380 #. type: textblock
28381 #: ../fish/guestfish-commands.pod:119
28382 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28383 msgstr ""
28384
28385 #. type: verbatim
28386 #: ../fish/guestfish-commands.pod:121
28387 #, no-wrap
28388 msgid ""
28389 " hexedit /dev/sda1 0x400 0x400\n"
28390 "\n"
28391 msgstr ""
28392
28393 #. type: textblock
28394 #: ../fish/guestfish-commands.pod:123
28395 msgid "(assuming the superblock is in the standard location)."
28396 msgstr ""
28397
28398 #. type: textblock
28399 #: ../fish/guestfish-commands.pod:125
28400 msgid ""
28401 "This command requires the external L<hexedit(1)> program.  You can specify "
28402 "another program to use by setting the C<HEXEDITOR> environment variable."
28403 msgstr ""
28404
28405 #. type: textblock
28406 #: ../fish/guestfish-commands.pod:129
28407 msgid "See also L</hexdump>."
28408 msgstr ""
28409
28410 #. type: =head2
28411 #: ../fish/guestfish-commands.pod:131
28412 msgid "lcd"
28413 msgstr ""
28414
28415 #. type: verbatim
28416 #: ../fish/guestfish-commands.pod:133
28417 #, no-wrap
28418 msgid ""
28419 " lcd directory\n"
28420 "\n"
28421 msgstr ""
28422
28423 #. type: textblock
28424 #: ../fish/guestfish-commands.pod:135
28425 msgid "Change the local directory, ie. the current directory of guestfish itself."
28426 msgstr ""
28427
28428 #. type: textblock
28429 #: ../fish/guestfish-commands.pod:138
28430 msgid "Note that C<!cd> won't do what you might expect."
28431 msgstr ""
28432
28433 #. type: =head2
28434 #: ../fish/guestfish-commands.pod:140
28435 msgid "man"
28436 msgstr ""
28437
28438 #. type: =head2
28439 #: ../fish/guestfish-commands.pod:142
28440 msgid "manual"
28441 msgstr ""
28442
28443 #. type: verbatim
28444 #: ../fish/guestfish-commands.pod:144
28445 #, no-wrap
28446 msgid ""
28447 "  man\n"
28448 "\n"
28449 msgstr ""
28450
28451 #. type: textblock
28452 #: ../fish/guestfish-commands.pod:146
28453 msgid "Opens the manual page for guestfish."
28454 msgstr ""
28455
28456 #. type: =head2
28457 #: ../fish/guestfish-commands.pod:148
28458 msgid "more"
28459 msgstr ""
28460
28461 #. type: =head2
28462 #: ../fish/guestfish-commands.pod:150
28463 msgid "less"
28464 msgstr ""
28465
28466 #. type: verbatim
28467 #: ../fish/guestfish-commands.pod:152
28468 #, no-wrap
28469 msgid ""
28470 " more filename\n"
28471 "\n"
28472 msgstr ""
28473
28474 #. type: verbatim
28475 #: ../fish/guestfish-commands.pod:154
28476 #, no-wrap
28477 msgid ""
28478 " less filename\n"
28479 "\n"
28480 msgstr ""
28481
28482 #. type: textblock
28483 #: ../fish/guestfish-commands.pod:156
28484 msgid "This is used to view a file."
28485 msgstr ""
28486
28487 #. type: textblock
28488 #: ../fish/guestfish-commands.pod:158
28489 msgid ""
28490 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28491 "C<less> you will get the C<less> command specifically."
28492 msgstr ""
28493
28494 #. type: =head2
28495 #: ../fish/guestfish-commands.pod:161
28496 msgid "reopen"
28497 msgstr ""
28498
28499 #. type: verbatim
28500 #: ../fish/guestfish-commands.pod:163
28501 #, no-wrap
28502 msgid ""
28503 "  reopen\n"
28504 "\n"
28505 msgstr ""
28506
28507 #. type: textblock
28508 #: ../fish/guestfish-commands.pod:165
28509 msgid ""
28510 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28511 "normally, because the handle is closed properly when guestfish exits.  "
28512 "However this is occasionally useful for testing."
28513 msgstr ""
28514
28515 #. type: =head2
28516 #: ../fish/guestfish-commands.pod:169
28517 msgid "sparse"
28518 msgstr ""
28519
28520 #. type: verbatim
28521 #: ../fish/guestfish-commands.pod:171
28522 #, no-wrap
28523 msgid ""
28524 " sparse filename size\n"
28525 "\n"
28526 msgstr ""
28527
28528 #. type: textblock
28529 #: ../fish/guestfish-commands.pod:173
28530 msgid ""
28531 "This creates an empty sparse file of the given size, and then adds so it can "
28532 "be further examined."
28533 msgstr ""
28534
28535 #. type: textblock
28536 #: ../fish/guestfish-commands.pod:176
28537 msgid ""
28538 "In all respects it works the same as the L</alloc> command, except that the "
28539 "image file is allocated sparsely, which means that disk blocks are not "
28540 "assigned to the file until they are needed.  Sparse disk files only use "
28541 "space when written to, but they are slower and there is a danger you could "
28542 "run out of real disk space during a write operation."
28543 msgstr ""
28544
28545 #. type: =head2
28546 #: ../fish/guestfish-commands.pod:186
28547 msgid "supported"
28548 msgstr ""
28549
28550 #. type: verbatim
28551 #: ../fish/guestfish-commands.pod:188
28552 #, no-wrap
28553 msgid ""
28554 " supported\n"
28555 "\n"
28556 msgstr ""
28557
28558 #. type: textblock
28559 #: ../fish/guestfish-commands.pod:190
28560 msgid ""
28561 "This command returns a list of the optional groups known to the daemon, and "
28562 "indicates which ones are supported by this build of the libguestfs "
28563 "appliance."
28564 msgstr ""
28565
28566 #. type: textblock
28567 #: ../fish/guestfish-commands.pod:194
28568 msgid "See also L<guestfs(3)/AVAILABILITY>."
28569 msgstr ""
28570
28571 #. type: =head2
28572 #: ../fish/guestfish-commands.pod:196
28573 msgid "time"
28574 msgstr ""
28575
28576 #. type: verbatim
28577 #: ../fish/guestfish-commands.pod:198
28578 #, no-wrap
28579 msgid ""
28580 " time command args...\n"
28581 "\n"
28582 msgstr ""
28583
28584 #. type: textblock
28585 #: ../fish/guestfish-commands.pod:200
28586 msgid ""
28587 "Run the command as usual, but print the elapsed time afterwards.  This can "
28588 "be useful for benchmarking operations."
28589 msgstr ""
28590
28591 #. type: textblock
28592 #: ../test-tool/libguestfs-test-tool.pod:5
28593 msgid "libguestfs-test-tool - End user tests for libguestfs"
28594 msgstr ""
28595
28596 #. type: verbatim
28597 #: ../test-tool/libguestfs-test-tool.pod:9
28598 #, no-wrap
28599 msgid ""
28600 " libguestfs-test-tool [--options]\n"
28601 "\n"
28602 msgstr ""
28603
28604 #. type: textblock
28605 #: ../test-tool/libguestfs-test-tool.pod:13
28606 msgid ""
28607 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28608 "and developers, to allow them to check basic libguestfs functionality is "
28609 "working.  This is needed because libguestfs occasionally breaks for reasons "
28610 "beyond our control: usually because of changes in the underlying qemu or "
28611 "kernel packages, or the host environment."
28612 msgstr ""
28613
28614 #. type: textblock
28615 #: ../test-tool/libguestfs-test-tool.pod:20
28616 msgid "If you suspect a problem in libguestfs, then just run:"
28617 msgstr ""
28618
28619 #. type: verbatim
28620 #: ../test-tool/libguestfs-test-tool.pod:22
28621 #, no-wrap
28622 msgid ""
28623 " libguestfs-test-tool\n"
28624 "\n"
28625 msgstr ""
28626
28627 #. type: textblock
28628 #: ../test-tool/libguestfs-test-tool.pod:24
28629 msgid "It will print lots of diagnostic messages."
28630 msgstr ""
28631
28632 #. type: textblock
28633 #: ../test-tool/libguestfs-test-tool.pod:26
28634 msgid "If it runs to completion successfully, you will see this near the end:"
28635 msgstr ""
28636
28637 #. type: verbatim
28638 #: ../test-tool/libguestfs-test-tool.pod:28
28639 #, no-wrap
28640 msgid ""
28641 " ===== TEST FINISHED OK =====\n"
28642 "\n"
28643 msgstr ""
28644
28645 #. type: textblock
28646 #: ../test-tool/libguestfs-test-tool.pod:30
28647 msgid "and the test tool will exit with code 0."
28648 msgstr ""
28649
28650 #. type: textblock
28651 #: ../test-tool/libguestfs-test-tool.pod:32
28652 msgid ""
28653 "If it fails (and/or exits with non-zero error code), please paste the "
28654 "B<complete, unedited> output of the test tool into a bug report.  More "
28655 "information about reporting bugs can be found on the "
28656 "L<http://libguestfs.org/> website."
28657 msgstr ""
28658
28659 #. type: =item
28660 #: ../test-tool/libguestfs-test-tool.pod:41
28661 msgid "I<--help>"
28662 msgstr ""
28663
28664 #. type: textblock
28665 #: ../test-tool/libguestfs-test-tool.pod:43
28666 msgid "Display short usage information and exit."
28667 msgstr ""
28668
28669 #. type: =item
28670 #: ../test-tool/libguestfs-test-tool.pod:45
28671 msgid "I<--qemu qemu_binary>"
28672 msgstr ""
28673
28674 #. type: textblock
28675 #: ../test-tool/libguestfs-test-tool.pod:47
28676 msgid ""
28677 "If you have downloaded another qemu binary, point this option at the full "
28678 "path of the binary to try it."
28679 msgstr ""
28680
28681 #. type: =item
28682 #: ../test-tool/libguestfs-test-tool.pod:50
28683 msgid "I<--qemudir qemu_source_dir>"
28684 msgstr ""
28685
28686 #. type: textblock
28687 #: ../test-tool/libguestfs-test-tool.pod:52
28688 msgid ""
28689 "If you have compiled qemu from source, point this option at the source "
28690 "directory to try it."
28691 msgstr ""
28692
28693 #. type: =item
28694 #: ../test-tool/libguestfs-test-tool.pod:55
28695 msgid "I<--timeout N>"
28696 msgstr ""
28697
28698 #. type: textblock
28699 #: ../test-tool/libguestfs-test-tool.pod:57
28700 msgid ""
28701 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28702 "does not usually need to be adjusted unless your machine is very slow."
28703 msgstr ""
28704
28705 #. type: =head1
28706 #: ../test-tool/libguestfs-test-tool.pod:63
28707 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28708 msgstr ""
28709
28710 #. type: textblock
28711 #: ../test-tool/libguestfs-test-tool.pod:65
28712 msgid ""
28713 "If you have compiled another version of qemu from source and would like to "
28714 "try that, then you can use the I<--qemudir> option to point to the qemu "
28715 "source directory."
28716 msgstr ""
28717
28718 #. type: textblock
28719 #: ../test-tool/libguestfs-test-tool.pod:69
28720 msgid ""
28721 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28722 "option to point to the binary."
28723 msgstr ""
28724
28725 #. type: textblock
28726 #: ../test-tool/libguestfs-test-tool.pod:72
28727 msgid ""
28728 "When using an alternate qemu with libguestfs, usually you would need to "
28729 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
28730 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
28731 "when you use either of the I<--qemudir> or I<--qemu> options."
28732 msgstr ""
28733
28734 #. type: textblock
28735 #: ../test-tool/libguestfs-test-tool.pod:79
28736 msgid ""
28737 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28738 "I<1> if there was an error."
28739 msgstr ""
28740
28741 #. type: textblock
28742 #: ../test-tool/libguestfs-test-tool.pod:84
28743 msgid ""
28744 "For the full list of environment variables which may affect libguestfs, "
28745 "please see the L<guestfs(3)> manual page."
28746 msgstr ""
28747
28748 #. type: textblock
28749 #: ../test-tool/libguestfs-test-tool.pod:89
28750 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28751 msgstr ""
28752
28753 #. type: textblock
28754 #: ../fuse/guestmount.pod:5
28755 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28756 msgstr ""
28757
28758 #. type: verbatim
28759 #: ../fuse/guestmount.pod:9
28760 #, no-wrap
28761 msgid ""
28762 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28763 "\n"
28764 msgstr ""
28765
28766 #. type: verbatim
28767 #: ../fuse/guestmount.pod:11
28768 #, no-wrap
28769 msgid ""
28770 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28771 "\n"
28772 msgstr ""
28773
28774 #. type: verbatim
28775 #: ../fuse/guestmount.pod:13
28776 #, no-wrap
28777 msgid ""
28778 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28779 "\n"
28780 msgstr ""
28781
28782 #. type: textblock
28783 #: ../fuse/guestmount.pod:17
28784 msgid ""
28785 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28786 "machines.  If you do this, you risk disk corruption in the VM."
28787 msgstr ""
28788
28789 #. type: textblock
28790 #: ../fuse/guestmount.pod:22
28791 msgid ""
28792 "The guestmount program can be used to mount virtual machine filesystems and "
28793 "other disk images on the host.  It uses libguestfs for access to the guest "
28794 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28795 "a mountable device."
28796 msgstr ""
28797
28798 #. type: textblock
28799 #: ../fuse/guestmount.pod:27
28800 msgid ""
28801 "Along with other options, you have to give at least one device (I<-a> "
28802 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28803 "option) or use the I<-i> inspection option.  How this works is better "
28804 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28805 "below."
28806 msgstr ""
28807
28808 #. type: textblock
28809 #: ../fuse/guestmount.pod:33
28810 msgid ""
28811 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28812 "by you, and the filesystem will not be visible to any other users unless you "
28813 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28814 "the filesystem, use the C<fusermount -u> command."
28815 msgstr ""
28816
28817 #. type: textblock
28818 #: ../fuse/guestmount.pod:41
28819 msgid ""
28820 "For a typical Windows guest which has its main filesystem on the first "
28821 "partition:"
28822 msgstr ""
28823
28824 #. type: verbatim
28825 #: ../fuse/guestmount.pod:44
28826 #, no-wrap
28827 msgid ""
28828 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28829 "\n"
28830 msgstr ""
28831
28832 #. type: textblock
28833 #: ../fuse/guestmount.pod:46
28834 msgid ""
28835 "For a typical Linux guest which has a /boot filesystem on the first "
28836 "partition, and the root filesystem on a logical volume:"
28837 msgstr ""
28838
28839 #. type: verbatim
28840 #: ../fuse/guestmount.pod:49
28841 #, no-wrap
28842 msgid ""
28843 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28844 "\n"
28845 msgstr ""
28846
28847 #. type: textblock
28848 #: ../fuse/guestmount.pod:51
28849 msgid "To get libguestfs to detect guest mountpoints for you:"
28850 msgstr ""
28851
28852 #. type: verbatim
28853 #: ../fuse/guestmount.pod:53
28854 #, no-wrap
28855 msgid ""
28856 " guestmount -a guest.img -i --ro /mnt\n"
28857 "\n"
28858 msgstr ""
28859
28860 #. type: textblock
28861 #: ../fuse/guestmount.pod:55
28862 msgid "For a libvirt guest called \"Guest\" you could do:"
28863 msgstr ""
28864
28865 #. type: verbatim
28866 #: ../fuse/guestmount.pod:57
28867 #, no-wrap
28868 msgid ""
28869 " guestmount -d Guest -i --ro /mnt\n"
28870 "\n"
28871 msgstr ""
28872
28873 #. type: textblock
28874 #: ../fuse/guestmount.pod:59
28875 msgid ""
28876 "If you don't know what filesystems are contained in a guest or disk image, "
28877 "use L<virt-filesystems(1)> first:"
28878 msgstr ""
28879
28880 #. type: verbatim
28881 #: ../fuse/guestmount.pod:62
28882 #, no-wrap
28883 msgid ""
28884 " virt-filesystems MyGuest\n"
28885 "\n"
28886 msgstr ""
28887
28888 #. type: textblock
28889 #: ../fuse/guestmount.pod:64
28890 msgid ""
28891 "If you want to trace the libguestfs calls but without excessive debugging "
28892 "information, we recommend:"
28893 msgstr ""
28894
28895 #. type: verbatim
28896 #: ../fuse/guestmount.pod:67
28897 #, no-wrap
28898 msgid ""
28899 " guestmount [...] --trace /mnt\n"
28900 "\n"
28901 msgstr ""
28902
28903 #. type: textblock
28904 #: ../fuse/guestmount.pod:69
28905 msgid "If you want to debug the program, we recommend:"
28906 msgstr ""
28907
28908 #. type: verbatim
28909 #: ../fuse/guestmount.pod:71
28910 #, no-wrap
28911 msgid ""
28912 " guestmount [...] --trace --verbose /mnt\n"
28913 "\n"
28914 msgstr ""
28915
28916 #. type: =head1
28917 #: ../fuse/guestmount.pod:73
28918 msgid "NOTES"
28919 msgstr ""
28920
28921 #. type: =head2
28922 #: ../fuse/guestmount.pod:75
28923 msgid "Other users cannot see the filesystem by default"
28924 msgstr ""
28925
28926 #. type: textblock
28927 #: ../fuse/guestmount.pod:77
28928 msgid ""
28929 "If you mount a filesystem as one user (eg. root), then other users will not "
28930 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
28931 "option when mounting:"
28932 msgstr ""
28933
28934 #. type: verbatim
28935 #: ../fuse/guestmount.pod:81
28936 #, no-wrap
28937 msgid ""
28938 " sudo guestmount [...] -o allow_other /mnt\n"
28939 "\n"
28940 msgstr ""
28941
28942 #. type: =item
28943 #: ../fuse/guestmount.pod:87
28944 msgid "B<-a image> | B<--add image>"
28945 msgstr ""
28946
28947 #. type: textblock
28948 #: ../fuse/guestmount.pod:89
28949 msgid "Add a block device or virtual machine image."
28950 msgstr ""
28951
28952 #. type: =item
28953 #: ../fuse/guestmount.pod:94
28954 msgid "B<-c URI> | B<--connect URI>"
28955 msgstr ""
28956
28957 #. type: =item
28958 #: ../fuse/guestmount.pod:100
28959 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28960 msgstr ""
28961
28962 #. type: =item
28963 #: ../fuse/guestmount.pod:108
28964 msgid "B<--dir-cache-timeout N>"
28965 msgstr ""
28966
28967 #. type: textblock
28968 #: ../fuse/guestmount.pod:110
28969 msgid ""
28970 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28971 "seconds.  The readdir cache [actually, there are several semi-independent "
28972 "caches] is populated after a readdir(2) call with the stat and extended "
28973 "attributes of the files in the directory, in anticipation that they will be "
28974 "requested soon after."
28975 msgstr ""
28976
28977 #. type: textblock
28978 #: ../fuse/guestmount.pod:116
28979 msgid ""
28980 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28981 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28982 "requests, only cache existing ones."
28983 msgstr ""
28984
28985 #. type: =item
28986 #: ../fuse/guestmount.pod:127
28987 msgid "B<--format=raw|qcow2|..> | B<--format>"
28988 msgstr ""
28989
28990 #. type: textblock
28991 #: ../fuse/guestmount.pod:134
28992 msgid ""
28993 "If you have untrusted raw-format guest disk images, you should use this "
28994 "option to specify the disk format.  This avoids a possible security problem "
28995 "with malicious guests (CVE-2010-3851).  See also "
28996 "L<guestfs(3)/guestfs_add_drive_opts>."
28997 msgstr ""
28998
28999 #. type: =item
29000 #: ../fuse/guestmount.pod:139
29001 msgid "B<--fuse-help>"
29002 msgstr ""
29003
29004 #. type: textblock
29005 #: ../fuse/guestmount.pod:141
29006 msgid "Display help on special FUSE options (see I<-o> below)."
29007 msgstr ""
29008
29009 #. type: textblock
29010 #: ../fuse/guestmount.pod:145
29011 msgid "Display brief help and exit."
29012 msgstr ""
29013
29014 #. type: =item
29015 #: ../fuse/guestmount.pod:147
29016 msgid "B<-i> | B<--inspector>"
29017 msgstr ""
29018
29019 #. type: textblock
29020 #: ../fuse/guestmount.pod:167
29021 msgid ""
29022 "Mount the named partition or logical volume on the given mountpoint B<in the "
29023 "guest> (this has nothing to do with mountpoints in the host)."
29024 msgstr ""
29025
29026 #. type: textblock
29027 #: ../fuse/guestmount.pod:170
29028 msgid ""
29029 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
29030 "something on C</>."
29031 msgstr ""
29032
29033 #. type: =item
29034 #: ../fuse/guestmount.pod:183
29035 msgid "B<-n> | B<--no-sync>"
29036 msgstr ""
29037
29038 #. type: textblock
29039 #: ../fuse/guestmount.pod:185
29040 msgid ""
29041 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
29042 "unmounted.  If you specify this option, then we don't attempt to sync the "
29043 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
29044 msgstr ""
29045
29046 #. type: =item
29047 #: ../fuse/guestmount.pod:190
29048 msgid "B<-o option> | B<--option option>"
29049 msgstr ""
29050
29051 #. type: textblock
29052 #: ../fuse/guestmount.pod:192
29053 msgid "Pass extra options to FUSE."
29054 msgstr ""
29055
29056 #. type: textblock
29057 #: ../fuse/guestmount.pod:194
29058 msgid ""
29059 "To get a list of all the extra options supported by FUSE, use the command "
29060 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
29061 "of them are a good idea."
29062 msgstr ""
29063
29064 #. type: verbatim
29065 #: ../fuse/guestmount.pod:198
29066 #, no-wrap
29067 msgid ""
29068 " guestmount --fuse-help\n"
29069 "\n"
29070 msgstr ""
29071
29072 #. type: textblock
29073 #: ../fuse/guestmount.pod:200
29074 msgid "Some potentially useful FUSE options:"
29075 msgstr ""
29076
29077 #. type: =item
29078 #: ../fuse/guestmount.pod:204
29079 msgid "B<-o allow_other>"
29080 msgstr ""
29081
29082 #. type: textblock
29083 #: ../fuse/guestmount.pod:206
29084 msgid "Allow other users to see the filesystem."
29085 msgstr ""
29086
29087 #. type: =item
29088 #: ../fuse/guestmount.pod:208
29089 msgid "B<-o attr_timeout=N>"
29090 msgstr ""
29091
29092 #. type: textblock
29093 #: ../fuse/guestmount.pod:210
29094 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
29095 msgstr ""
29096
29097 #. type: =item
29098 #: ../fuse/guestmount.pod:212
29099 msgid "B<-o kernel_cache>"
29100 msgstr ""
29101
29102 #. type: textblock
29103 #: ../fuse/guestmount.pod:214
29104 msgid ""
29105 "Allow the kernel to cache files (reduces the number of reads that have to go "
29106 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
29107 "afford the extra memory usage."
29108 msgstr ""
29109
29110 #. type: =item
29111 #: ../fuse/guestmount.pod:218
29112 msgid "B<-o uid=N> B<-o gid=N>"
29113 msgstr ""
29114
29115 #. type: textblock
29116 #: ../fuse/guestmount.pod:220
29117 msgid ""
29118 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
29119 "the chosen values."
29120 msgstr ""
29121
29122 #. type: =item
29123 #: ../fuse/guestmount.pod:225
29124 msgid "B<-r> | B<--ro>"
29125 msgstr ""
29126
29127 #. type: textblock
29128 #: ../fuse/guestmount.pod:227
29129 msgid ""
29130 "Add devices and mount everything read-only.  Also disallow writes and make "
29131 "the disk appear read-only to FUSE."
29132 msgstr ""
29133
29134 #. type: textblock
29135 #: ../fuse/guestmount.pod:230
29136 msgid ""
29137 "This is highly recommended if you are not going to edit the guest disk.  If "
29138 "the guest is running and this option is I<not> supplied, then there is a "
29139 "strong risk of disk corruption in the guest.  We try to prevent this from "
29140 "happening, but it is not always possible."
29141 msgstr ""
29142
29143 #. type: textblock
29144 #: ../fuse/guestmount.pod:235
29145 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29146 msgstr ""
29147
29148 #. type: textblock
29149 #: ../fuse/guestmount.pod:239
29150 msgid "Enable SELinux support for the guest."
29151 msgstr ""
29152
29153 #. type: =item
29154 #: ../fuse/guestmount.pod:241
29155 msgid "B<-v> | B<--verbose>"
29156 msgstr ""
29157
29158 #. type: textblock
29159 #: ../fuse/guestmount.pod:243
29160 msgid "Enable verbose messages from underlying libguestfs."
29161 msgstr ""
29162
29163 #. type: =item
29164 #: ../fuse/guestmount.pod:245
29165 msgid "B<-V> | B<--version>"
29166 msgstr ""
29167
29168 #. type: textblock
29169 #: ../fuse/guestmount.pod:247
29170 msgid "Display the program version and exit."
29171 msgstr ""
29172
29173 #. type: =item
29174 #: ../fuse/guestmount.pod:249
29175 msgid "B<-w> | B<--rw>"
29176 msgstr ""
29177
29178 #. type: textblock
29179 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
29180 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
29181 msgstr ""
29182
29183 #. type: =item
29184 #: ../fuse/guestmount.pod:256
29185 msgid "B<-x> | B<--trace>"
29186 msgstr ""
29187
29188 #. type: textblock
29189 #: ../fuse/guestmount.pod:258
29190 msgid "Trace libguestfs calls and entry into each FUSE function."
29191 msgstr ""
29192
29193 #. type: textblock
29194 #: ../fuse/guestmount.pod:260
29195 msgid "This also stops the daemon from forking into the background."
29196 msgstr ""
29197
29198 #. type: textblock
29199 #: ../fuse/guestmount.pod:281
29200 msgid ""
29201 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29202 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
29203 "L<http://fuse.sf.net/>."
29204 msgstr ""
29205
29206 #. type: textblock
29207 #: ../fuse/guestmount.pod:296
29208 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
29209 msgstr ""
29210
29211 #. type: textblock
29212 #: ../tools/virt-win-reg.pl:37
29213 msgid ""
29214 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
29215 "guest"
29216 msgstr ""
29217
29218 #. type: verbatim
29219 #: ../tools/virt-win-reg.pl:41
29220 #, no-wrap
29221 msgid ""
29222 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
29223 "\n"
29224 msgstr ""
29225
29226 #. type: verbatim
29227 #: ../tools/virt-win-reg.pl:43
29228 #, no-wrap
29229 msgid ""
29230 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
29231 "\n"
29232 msgstr ""
29233
29234 #. type: verbatim
29235 #: ../tools/virt-win-reg.pl:45
29236 #, no-wrap
29237 msgid ""
29238 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
29239 "\n"
29240 msgstr ""
29241
29242 #. type: verbatim
29243 #: ../tools/virt-win-reg.pl:47
29244 #, no-wrap
29245 msgid ""
29246 " virt-win-reg --merge domname [input.reg ...]\n"
29247 "\n"
29248 msgstr ""
29249
29250 #. type: verbatim
29251 #: ../tools/virt-win-reg.pl:49
29252 #, no-wrap
29253 msgid ""
29254 " virt-win-reg [--options] disk.img ... # instead of domname\n"
29255 "\n"
29256 msgstr ""
29257
29258 #. type: textblock
29259 #: ../tools/virt-win-reg.pl:53
29260 msgid ""
29261 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
29262 "virtual machines.  If you do this, you I<will> get irreversible disk "
29263 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
29264 "but doesn't catch all cases."
29265 msgstr ""
29266
29267 #. type: textblock
29268 #: ../tools/virt-win-reg.pl:58
29269 msgid ""
29270 "Modifying the Windows Registry is an inherently risky operation.  The format "
29271 "is deliberately obscure and undocumented, and Registry changes can leave the "
29272 "system unbootable.  Therefore when using the I<--merge> option, make sure "
29273 "you have a reliable backup first."
29274 msgstr ""
29275
29276 #. type: textblock
29277 #: ../tools/virt-win-reg.pl:65
29278 msgid ""
29279 "This program can export and merge Windows Registry entries from a Windows "
29280 "guest."
29281 msgstr ""
29282
29283 #. type: textblock
29284 #: ../tools/virt-win-reg.pl:68
29285 msgid ""
29286 "The first parameter is the libvirt guest name or the raw disk image of a "
29287 "Windows guest."
29288 msgstr ""
29289
29290 #. type: textblock
29291 #: ../tools/virt-win-reg.pl:71
29292 msgid ""
29293 "If I<--merge> is I<not> specified, then the chosen registry key is "
29294 "displayed/exported (recursively).  For example:"
29295 msgstr ""
29296
29297 #. type: verbatim
29298 #: ../tools/virt-win-reg.pl:74
29299 #, no-wrap
29300 msgid ""
29301 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
29302 "\n"
29303 msgstr ""
29304
29305 #. type: textblock
29306 #: ../tools/virt-win-reg.pl:76
29307 msgid "You can also display single values from within registry keys, for example:"
29308 msgstr ""
29309
29310 #. type: verbatim
29311 #: ../tools/virt-win-reg.pl:79
29312 #, no-wrap
29313 msgid ""
29314 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
29315 " $ virt-win-reg Windows7 $cvkey ProductName\n"
29316 " Windows 7 Enterprise\n"
29317 "\n"
29318 msgstr ""
29319
29320 #. type: textblock
29321 #: ../tools/virt-win-reg.pl:83
29322 msgid ""
29323 "With I<--merge>, you can merge a textual regedit file into the Windows "
29324 "Registry:"
29325 msgstr ""
29326
29327 #. type: verbatim
29328 #: ../tools/virt-win-reg.pl:86
29329 #, no-wrap
29330 msgid ""
29331 " $ virt-win-reg --merge Windows7 changes.reg\n"
29332 "\n"
29333 msgstr ""
29334
29335 #. type: =head1
29336 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
29337 msgid "NOTE"
29338 msgstr ""
29339
29340 #. type: textblock
29341 #: ../tools/virt-win-reg.pl:90
29342 msgid ""
29343 "This program is only meant for simple access to the registry.  If you want "
29344 "to do complicated things with the registry, we suggest you download the "
29345 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29346 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29347 "L<hivexregedit(1)>."
29348 msgstr ""
29349
29350 #. type: textblock
29351 #: ../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
29352 msgid "Display brief help."
29353 msgstr ""
29354
29355 #. type: textblock
29356 #: ../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
29357 msgid "Display version number and exit."
29358 msgstr ""
29359
29360 #. type: =item
29361 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29362 msgid "B<--debug>"
29363 msgstr ""
29364
29365 #. type: textblock
29366 #: ../tools/virt-win-reg.pl:122
29367 msgid "Enable debugging messages."
29368 msgstr ""
29369
29370 #. type: =item
29371 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
29372 msgid "B<--connect URI> | B<-c URI>"
29373 msgstr ""
29374
29375 #. type: textblock
29376 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
29377 msgid ""
29378 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29379 "to the default libvirt hypervisor."
29380 msgstr ""
29381
29382 #. type: textblock
29383 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
29384 msgid ""
29385 "If you specify guest block devices directly, then libvirt is not used at "
29386 "all."
29387 msgstr ""
29388
29389 #. type: =item
29390 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
29391 msgid "B<--format> raw"
29392 msgstr ""
29393
29394 #. type: textblock
29395 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
29396 msgid ""
29397 "Specify the format of disk images given on the command line.  If this is "
29398 "omitted then the format is autodetected from the content of the disk image."
29399 msgstr ""
29400
29401 #. type: textblock
29402 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
29403 msgid ""
29404 "If disk images are requested from libvirt, then this program asks libvirt "
29405 "for this information.  In this case, the value of the format parameter is "
29406 "ignored."
29407 msgstr ""
29408
29409 #. type: textblock
29410 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
29411 msgid ""
29412 "If working with untrusted raw-format guest disk images, you should ensure "
29413 "the format is always specified."
29414 msgstr ""
29415
29416 #. type: =item
29417 #: ../tools/virt-win-reg.pl:157
29418 msgid "B<--merge>"
29419 msgstr ""
29420
29421 #. type: textblock
29422 #: ../tools/virt-win-reg.pl:159
29423 msgid ""
29424 "In merge mode, this merges a textual regedit file into the Windows Registry "
29425 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29426 "displays or exports Registry entries instead."
29427 msgstr ""
29428
29429 #. type: textblock
29430 #: ../tools/virt-win-reg.pl:163
29431 msgid ""
29432 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29433 "result in disk corruption.  However exporting (without this flag)  is always "
29434 "safe."
29435 msgstr ""
29436
29437 #. type: =item
29438 #: ../tools/virt-win-reg.pl:171
29439 msgid "B<--encoding> UTF-16LE|ASCII"
29440 msgstr ""
29441
29442 #. type: textblock
29443 #: ../tools/virt-win-reg.pl:173
29444 msgid ""
29445 "When merging (only), you may need to specify the encoding for strings to be "
29446 "used in the hive file.  This is explained in detail in "
29447 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
29448 msgstr ""
29449
29450 #. type: textblock
29451 #: ../tools/virt-win-reg.pl:177
29452 msgid ""
29453 "The default is to use UTF-16LE, which should work with recent versions of "
29454 "Windows."
29455 msgstr ""
29456
29457 #. type: =item
29458 #: ../tools/virt-win-reg.pl:184
29459 msgid "B<--unsafe-printable-strings>"
29460 msgstr ""
29461
29462 #. type: textblock
29463 #: ../tools/virt-win-reg.pl:186
29464 msgid ""
29465 "When exporting (only), assume strings are UTF-16LE and print them as strings "
29466 "instead of hex sequences.  Remove the final zero codepoint from strings if "
29467 "present."
29468 msgstr ""
29469
29470 #. type: textblock
29471 #: ../tools/virt-win-reg.pl:190
29472 msgid ""
29473 "This is unsafe and does not preserve the fidelity of strings in the original "
29474 "Registry for various reasons:"
29475 msgstr ""
29476
29477 #. type: textblock
29478 #: ../tools/virt-win-reg.pl:197
29479 msgid ""
29480 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
29481 "other encodings will be corrupted by this transformation."
29482 msgstr ""
29483
29484 #. type: textblock
29485 #: ../tools/virt-win-reg.pl:202
29486 msgid ""
29487 "Assumes that everything which has type 1 or 2 is really a string and that "
29488 "everything else is not a string, but the type field in real Registries is "
29489 "not reliable."
29490 msgstr ""
29491
29492 #. type: textblock
29493 #: ../tools/virt-win-reg.pl:208
29494 msgid ""
29495 "Loses information about whether a zero codepoint followed the string in the "
29496 "Registry or not."
29497 msgstr ""
29498
29499 #. type: textblock
29500 #: ../tools/virt-win-reg.pl:213
29501 msgid ""
29502 "This all happens because the Registry itself contains no information about "
29503 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
29504 msgstr ""
29505
29506 #. type: textblock
29507 #: ../tools/virt-win-reg.pl:217
29508 msgid ""
29509 "You should only use this option for quick hacking and debugging of the "
29510 "Registry contents, and I<never> use it if the output is going to be passed "
29511 "into another program or stored in another Registry."
29512 msgstr ""
29513
29514 #. type: =head1
29515 #: ../tools/virt-win-reg.pl:554
29516 msgid "SUPPORTED SYSTEMS"
29517 msgstr ""
29518
29519 #. type: textblock
29520 #: ../tools/virt-win-reg.pl:556
29521 msgid ""
29522 "The program currently supports Windows NT-derived guests starting with "
29523 "Windows XP through to at least Windows 7."
29524 msgstr ""
29525
29526 #. type: textblock
29527 #: ../tools/virt-win-reg.pl:559
29528 msgid "The following Registry keys are supported:"
29529 msgstr ""
29530
29531 #. type: =item
29532 #: ../tools/virt-win-reg.pl:563
29533 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
29534 msgstr ""
29535
29536 #. type: =item
29537 #: ../tools/virt-win-reg.pl:565
29538 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
29539 msgstr ""
29540
29541 #. type: =item
29542 #: ../tools/virt-win-reg.pl:567
29543 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
29544 msgstr ""
29545
29546 #. type: =item
29547 #: ../tools/virt-win-reg.pl:569
29548 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
29549 msgstr ""
29550
29551 #. type: =item
29552 #: ../tools/virt-win-reg.pl:571
29553 msgid "C<HKEY_USERS\\.DEFAULT>"
29554 msgstr ""
29555
29556 #. type: =item
29557 #: ../tools/virt-win-reg.pl:573
29558 msgid "C<HKEY_USERS\\I<SID>>"
29559 msgstr ""
29560
29561 #. type: textblock
29562 #: ../tools/virt-win-reg.pl:575
29563 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
29564 msgstr ""
29565
29566 #. type: =item
29567 #: ../tools/virt-win-reg.pl:577
29568 msgid "C<HKEY_USERS\\I<username>>"
29569 msgstr ""
29570
29571 #. type: textblock
29572 #: ../tools/virt-win-reg.pl:579
29573 msgid "where I<username> is a local user name (this is a libguestfs extension)."
29574 msgstr ""
29575
29576 #. type: textblock
29577 #: ../tools/virt-win-reg.pl:583
29578 msgid ""
29579 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29580 "C<HKEY_USERS>."
29581 msgstr ""
29582
29583 #. type: textblock
29584 #: ../tools/virt-win-reg.pl:586
29585 msgid ""
29586 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
29587 "supported (there is no \"current user\")."
29588 msgstr ""
29589
29590 #. type: =head1
29591 #: ../tools/virt-win-reg.pl:589
29592 msgid "ENCODING"
29593 msgstr ""
29594
29595 #. type: textblock
29596 #: ../tools/virt-win-reg.pl:591
29597 msgid ""
29598 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29599 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
29600 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
29601 "with Windows-style line endings, you may need to reencode the whole file "
29602 "before or after processing."
29603 msgstr ""
29604
29605 #. type: textblock
29606 #: ../tools/virt-win-reg.pl:597
29607 msgid ""
29608 "To reencode a file from Windows format to Linux (before processing it with "
29609 "the I<--merge> option), you would do something like this:"
29610 msgstr ""
29611
29612 #. type: verbatim
29613 #: ../tools/virt-win-reg.pl:600
29614 #, no-wrap
29615 msgid ""
29616 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29617 "\n"
29618 msgstr ""
29619
29620 #. type: textblock
29621 #: ../tools/virt-win-reg.pl:602
29622 msgid ""
29623 "To go in the opposite direction, after exporting and before sending the file "
29624 "to a Windows user, do something like this:"
29625 msgstr ""
29626
29627 #. type: verbatim
29628 #: ../tools/virt-win-reg.pl:605
29629 #, no-wrap
29630 msgid ""
29631 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29632 "\n"
29633 msgstr ""
29634
29635 #. type: textblock
29636 #: ../tools/virt-win-reg.pl:607
29637 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29638 msgstr ""
29639
29640 #. type: textblock
29641 #: ../tools/virt-win-reg.pl:609
29642 msgid ""
29643 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29644 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
29645 "Windows-style (CRLF) line endings, like this:"
29646 msgstr ""
29647
29648 #. type: verbatim
29649 #: ../tools/virt-win-reg.pl:613
29650 #, no-wrap
29651 msgid ""
29652 " $ file software.reg\n"
29653 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29654 " with CRLF line terminators\n"
29655 "\n"
29656 msgstr ""
29657
29658 #. type: textblock
29659 #: ../tools/virt-win-reg.pl:617
29660 msgid "This file would need conversion before you could I<--merge> it."
29661 msgstr ""
29662
29663 #. type: =head1
29664 #: ../tools/virt-win-reg.pl:619
29665 msgid "CurrentControlSet etc."
29666 msgstr ""
29667
29668 #. type: textblock
29669 #: ../tools/virt-win-reg.pl:621
29670 msgid ""
29671 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29672 "Registry at the level of the hive file, and therefore you cannot modify "
29673 "these."
29674 msgstr ""
29675
29676 #. type: textblock
29677 #: ../tools/virt-win-reg.pl:625
29678 msgid ""
29679 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29680 "circumstances it might refer to another control set.  The way to find out is "
29681 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29682 msgstr ""
29683
29684 #. type: verbatim
29685 #: ../tools/virt-win-reg.pl:629
29686 #, no-wrap
29687 msgid ""
29688 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29689 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29690 " \"Current\"=dword:00000001\n"
29691 " \"Default\"=dword:00000001\n"
29692 " \"Failed\"=dword:00000000\n"
29693 " \"LastKnownGood\"=dword:00000002\n"
29694 "\n"
29695 msgstr ""
29696
29697 #. type: textblock
29698 #: ../tools/virt-win-reg.pl:636
29699 msgid "\"Current\" is the one which Windows will choose when it boots."
29700 msgstr ""
29701
29702 #. type: textblock
29703 #: ../tools/virt-win-reg.pl:638
29704 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
29705 msgstr ""
29706
29707 #. type: =head1
29708 #: ../tools/virt-win-reg.pl:641
29709 msgid "WINDOWS TIPS"
29710 msgstr ""
29711
29712 #. type: textblock
29713 #: ../tools/virt-win-reg.pl:643
29714 msgid ""
29715 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29716 "be shut off, else you will get disk corruption."
29717 msgstr ""
29718
29719 #. type: =head2
29720 #: ../tools/virt-win-reg.pl:646
29721 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29722 msgstr ""
29723
29724 #. type: textblock
29725 #: ../tools/virt-win-reg.pl:648
29726 msgid ""
29727 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29728 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29729 "is uploaded into C<C:\\>:"
29730 msgstr ""
29731
29732 #. type: verbatim
29733 #: ../tools/virt-win-reg.pl:652
29734 #, no-wrap
29735 msgid ""
29736 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29737 "\n"
29738 msgstr ""
29739
29740 #. type: textblock
29741 #: ../tools/virt-win-reg.pl:654
29742 msgid "Prepare a regedit file containing the registry change:"
29743 msgstr ""
29744
29745 #. type: verbatim
29746 #: ../tools/virt-win-reg.pl:656
29747 #, no-wrap
29748 msgid ""
29749 " cat > test.reg <<'EOF'\n"
29750 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29751 " \"Test\"=\"c:\\\\test.bat\"\n"
29752 " EOF\n"
29753 "\n"
29754 msgstr ""
29755
29756 #. type: textblock
29757 #: ../tools/virt-win-reg.pl:661
29758 msgid ""
29759 "In this example we use the key C<RunOnce> which means that the script will "
29760 "run precisely once when the first user logs in.  If you want it to run every "
29761 "time a user logs in, replace C<RunOnce> with C<Run>."
29762 msgstr ""
29763
29764 #. type: textblock
29765 #: ../tools/virt-win-reg.pl:665
29766 msgid "Now update the registry:"
29767 msgstr ""
29768
29769 #. type: verbatim
29770 #: ../tools/virt-win-reg.pl:667
29771 #, no-wrap
29772 msgid ""
29773 " virt-win-reg --merge WindowsGuest test.reg\n"
29774 "\n"
29775 msgstr ""
29776
29777 #. type: =head2
29778 #: ../tools/virt-win-reg.pl:669
29779 msgid "INSTALLING A SERVICE"
29780 msgstr ""
29781
29782 #. type: textblock
29783 #: ../tools/virt-win-reg.pl:671
29784 msgid ""
29785 "This section assumes you are familiar with Windows services, and you either "
29786 "have a program which handles the Windows Service Control Protocol directly "
29787 "or you want to run any program using a service wrapper like SrvAny or the "
29788 "free RHSrvAny."
29789 msgstr ""
29790
29791 #. type: textblock
29792 #: ../tools/virt-win-reg.pl:676
29793 msgid ""
29794 "First upload the program and optionally the service wrapper.  In this case "
29795 "the test program is called C<test.exe> and we are using the RHSrvAny "
29796 "wrapper:"
29797 msgstr ""
29798
29799 #. type: verbatim
29800 #: ../tools/virt-win-reg.pl:680
29801 #, no-wrap
29802 msgid ""
29803 " guestfish -i -d WindowsGuest <<EOF\n"
29804 "   upload rhsrvany.exe /rhsrvany.exe\n"
29805 "   upload test.exe /test.exe\n"
29806 " EOF\n"
29807 "\n"
29808 msgstr ""
29809
29810 #. type: textblock
29811 #: ../tools/virt-win-reg.pl:685
29812 msgid ""
29813 "Prepare a regedit file containing the registry changes.  In this example, "
29814 "the first registry change is needed for the service itself or the service "
29815 "wrapper (if used).  The second registry change is only needed because I am "
29816 "using the RHSrvAny service wrapper."
29817 msgstr ""
29818
29819 #. type: verbatim
29820 #: ../tools/virt-win-reg.pl:690
29821 #, no-wrap
29822 msgid ""
29823 " cat > service.reg <<'EOF'\n"
29824 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
29825 " \"Type\"=dword:00000010\n"
29826 " \"Start\"=dword:00000002\n"
29827 " \"ErrorControl\"=dword:00000001\n"
29828 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
29829 " \"DisplayName\"=\"RHSrvAny\"\n"
29830 " \"ObjectName\"=\"NetworkService\"\n"
29831 " \n"
29832 msgstr ""
29833
29834 #. type: verbatim
29835 #: ../tools/virt-win-reg.pl:699
29836 #, no-wrap
29837 msgid ""
29838 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
29839 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
29840 " \"PWD\"=\"c:\\\\Temp\"\n"
29841 " EOF\n"
29842 "\n"
29843 msgstr ""
29844
29845 #. type: textblock
29846 #: ../tools/virt-win-reg.pl:710
29847 msgid ""
29848 "For use of C<ControlSet001> see the section above in this manual page.  You "
29849 "may need to adjust this according to the control set that is in use by the "
29850 "guest."
29851 msgstr ""
29852
29853 #. type: textblock
29854 #: ../tools/virt-win-reg.pl:716
29855 msgid ""
29856 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
29857 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
29858 "privileged account."
29859 msgstr ""
29860
29861 #. type: textblock
29862 #: ../tools/virt-win-reg.pl:722
29863 msgid ""
29864 "For the meaning of the magic numbers, see this Microsoft KB article: "
29865 "L<http://support.microsoft.com/kb/103000>."
29866 msgstr ""
29867
29868 #. type: textblock
29869 #: ../tools/virt-win-reg.pl:727
29870 msgid "Update the registry:"
29871 msgstr ""
29872
29873 #. type: verbatim
29874 #: ../tools/virt-win-reg.pl:729
29875 #, no-wrap
29876 msgid ""
29877 " virt-win-reg --merge WindowsGuest service.reg\n"
29878 "\n"
29879 msgstr ""
29880
29881 #. type: =head1
29882 #: ../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
29883 msgid "SHELL QUOTING"
29884 msgstr ""
29885
29886 #. type: textblock
29887 #: ../tools/virt-win-reg.pl:733
29888 msgid ""
29889 "Be careful when passing parameters containing C<\\> (backslash) in the "
29890 "shell.  Usually you will have to use 'single quotes' or double backslashes "
29891 "(but not both) to protect them from the shell."
29892 msgstr ""
29893
29894 #. type: textblock
29895 #: ../tools/virt-win-reg.pl:737
29896 msgid "Paths and value names are case-insensitive."
29897 msgstr ""
29898
29899 #. type: textblock
29900 #: ../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
29901 msgid ""
29902 "Libvirt guest names can contain arbitrary characters, some of which have "
29903 "meaning to the shell such as C<#> and space.  You may need to quote or "
29904 "escape these characters on the command line.  See the shell manual page "
29905 "L<sh(1)> for details."
29906 msgstr ""
29907
29908 #. type: textblock
29909 #: ../tools/virt-win-reg.pl:746
29910 msgid ""
29911 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
29912 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
29913 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
29914 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29915 msgstr ""
29916
29917 #. type: textblock
29918 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
29919 msgid ""
29920 "When reporting bugs, please enable debugging and capture the I<complete> "
29921 "output:"
29922 msgstr ""
29923
29924 #. type: verbatim
29925 #: ../tools/virt-win-reg.pl:764
29926 #, no-wrap
29927 msgid ""
29928 " export LIBGUESTFS_DEBUG=1\n"
29929 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
29930 "\n"
29931 msgstr ""
29932
29933 #. type: textblock
29934 #: ../tools/virt-win-reg.pl:767
29935 msgid ""
29936 "Attach /tmp/virt-win-reg.log to a new bug report at "
29937 "L<https://bugzilla.redhat.com/>"
29938 msgstr ""
29939
29940 #. type: =head1
29941 #: ../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
29942 msgid "AUTHOR"
29943 msgstr ""
29944
29945 #. type: textblock
29946 #: ../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
29947 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29948 msgstr ""
29949
29950 #. type: textblock
29951 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
29952 msgid "Copyright (C) 2010 Red Hat Inc."
29953 msgstr ""
29954
29955 #. type: textblock
29956 #: ../tools/virt-list-filesystems.pl:32
29957 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
29958 msgstr ""
29959
29960 #. type: verbatim
29961 #: ../tools/virt-list-filesystems.pl:36
29962 #, no-wrap
29963 msgid ""
29964 " virt-list-filesystems [--options] domname\n"
29965 "\n"
29966 msgstr ""
29967
29968 #. type: verbatim
29969 #: ../tools/virt-list-filesystems.pl:38
29970 #, no-wrap
29971 msgid ""
29972 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29973 "\n"
29974 msgstr ""
29975
29976 #. type: textblock
29977 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29978 msgid ""
29979 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29980 "replacement."
29981 msgstr ""
29982
29983 #. type: textblock
29984 #: ../tools/virt-list-filesystems.pl:45
29985 msgid ""
29986 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29987 "are contained in a virtual machine or disk image."
29988 msgstr ""
29989
29990 #. type: textblock
29991 #: ../tools/virt-list-filesystems.pl:49
29992 msgid ""
29993 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29994 "functionality.  For more complex cases you should look at the "
29995 "L<guestfish(1)> tool."
29996 msgstr ""
29997
29998 #. type: =item
29999 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
30000 msgid "B<-l> | B<--long>"
30001 msgstr ""
30002
30003 #. type: textblock
30004 #: ../tools/virt-list-filesystems.pl:108
30005 msgid ""
30006 "With this option, C<virt-list-filesystems> displays the type of each "
30007 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
30008 msgstr ""
30009
30010 #. type: =item
30011 #: ../tools/virt-list-filesystems.pl:115
30012 msgid "B<-a> | B<--all>"
30013 msgstr ""
30014
30015 #. type: textblock
30016 #: ../tools/virt-list-filesystems.pl:117
30017 msgid ""
30018 "Normally we only show mountable filesystems.  If this option is given then "
30019 "swap devices are shown too."
30020 msgstr ""
30021
30022 #. type: textblock
30023 #: ../tools/virt-list-filesystems.pl:191
30024 msgid ""
30025 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
30026 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
30027 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30028 msgstr ""
30029
30030 #. type: textblock
30031 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
30032 msgid "Copyright (C) 2009 Red Hat Inc."
30033 msgstr ""
30034
30035 #. type: textblock
30036 #: ../tools/virt-tar.pl:33
30037 msgid "virt-tar - Extract or upload files to a virtual machine"
30038 msgstr ""
30039
30040 #. type: verbatim
30041 #: ../tools/virt-tar.pl:37
30042 #, no-wrap
30043 msgid ""
30044 " virt-tar [--options] -x domname directory tarball\n"
30045 "\n"
30046 msgstr ""
30047
30048 #. type: verbatim
30049 #: ../tools/virt-tar.pl:39
30050 #, no-wrap
30051 msgid ""
30052 " virt-tar [--options] -u domname tarball directory\n"
30053 "\n"
30054 msgstr ""
30055
30056 #. type: verbatim
30057 #: ../tools/virt-tar.pl:41
30058 #, no-wrap
30059 msgid ""
30060 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
30061 "\n"
30062 msgstr ""
30063
30064 #. type: verbatim
30065 #: ../tools/virt-tar.pl:43
30066 #, no-wrap
30067 msgid ""
30068 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
30069 "\n"
30070 msgstr ""
30071
30072 #. type: textblock
30073 #: ../tools/virt-tar.pl:47
30074 msgid ""
30075 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, "
30076 "L<virt-tar-in(1)>, L<virt-tar-out(1)> as replacements."
30077 msgstr ""
30078
30079 #. type: textblock
30080 #: ../tools/virt-tar.pl:52
30081 msgid "Download C</home> from the VM into a local tarball:"
30082 msgstr ""
30083
30084 #. type: verbatim
30085 #: ../tools/virt-tar.pl:54
30086 #, no-wrap
30087 msgid ""
30088 " virt-tar -x domname /home home.tar\n"
30089 "\n"
30090 msgstr ""
30091
30092 #. type: verbatim
30093 #: ../tools/virt-tar.pl:56
30094 #, no-wrap
30095 msgid ""
30096 " virt-tar -zx domname /home home.tar.gz\n"
30097 "\n"
30098 msgstr ""
30099
30100 #. type: textblock
30101 #: ../tools/virt-tar.pl:58
30102 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
30103 msgstr ""
30104
30105 #. type: verbatim
30106 #: ../tools/virt-tar.pl:60
30107 #, no-wrap
30108 msgid ""
30109 " virt-tar -u domname uploadstuff.tar /tmp\n"
30110 "\n"
30111 msgstr ""
30112
30113 #. type: verbatim
30114 #: ../tools/virt-tar.pl:62
30115 #, no-wrap
30116 msgid ""
30117 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
30118 "\n"
30119 msgstr ""
30120
30121 #. type: textblock
30122 #: ../tools/virt-tar.pl:66
30123 msgid ""
30124 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
30125 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
30126 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
30127 msgstr ""
30128
30129 #. type: textblock
30130 #: ../tools/virt-tar.pl:71
30131 msgid ""
30132 "You can use I<-x> (extract) on live virtual machines, but you might get "
30133 "inconsistent results or errors if there is filesystem activity inside the "
30134 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
30135 "work, but the only way to guarantee consistent results is if the virtual "
30136 "machine is shut down."
30137 msgstr ""
30138
30139 #. type: textblock
30140 #: ../tools/virt-tar.pl:79
30141 msgid ""
30142 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
30143 "parts of a guest filesystem.  There are many possibilities: making backups, "
30144 "uploading data files, snooping on guest activity, fixing or customizing "
30145 "guests, etc."
30146 msgstr ""
30147
30148 #. type: textblock
30149 #: ../tools/virt-tar.pl:84
30150 msgid ""
30151 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
30152 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
30153 "should look at the L<guestfish(1)> tool."
30154 msgstr ""
30155
30156 #. type: textblock
30157 #: ../tools/virt-tar.pl:88
30158 msgid ""
30159 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
30160 "its contents (recursively) from the virtual machine into a local tarball.  "
30161 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
30162 "virtual machine.  You cannot use these two options together."
30163 msgstr ""
30164
30165 #. type: textblock
30166 #: ../tools/virt-tar.pl:94
30167 msgid ""
30168 "In addition, you may need to use the I<-z> (gZip) option to enable "
30169 "compression.  When uploading, you have to specify I<-z> if the upload file "
30170 "is compressed because virt-tar won't detect this on its own."
30171 msgstr ""
30172
30173 #. type: textblock
30174 #: ../tools/virt-tar.pl:98
30175 msgid ""
30176 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
30177 "example it cannot do PKZip files or bzip2 compression.  If you want that "
30178 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
30179 "the L<libguestfs(3)> API)."
30180 msgstr ""
30181
30182 #. type: =item
30183 #: ../tools/virt-tar.pl:156
30184 msgid "B<-x> | B<--extract> | B<--download>"
30185 msgstr ""
30186
30187 #. type: =item
30188 #: ../tools/virt-tar.pl:158
30189 msgid "B<-u> | B<--upload>"
30190 msgstr ""
30191
30192 #. type: textblock
30193 #: ../tools/virt-tar.pl:160
30194 msgid ""
30195 "Use I<-x> to extract (download) a directory from a virtual machine to a "
30196 "local tarball."
30197 msgstr ""
30198
30199 #. type: textblock
30200 #: ../tools/virt-tar.pl:163
30201 msgid ""
30202 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
30203 "Please read the L</WARNING> section above before using this option."
30204 msgstr ""
30205
30206 #. type: textblock
30207 #: ../tools/virt-tar.pl:167
30208 msgid "You must specify exactly one of these options."
30209 msgstr ""
30210
30211 #. type: =item
30212 #: ../tools/virt-tar.pl:173
30213 msgid "B<-z> | B<--gzip>"
30214 msgstr ""
30215
30216 #. type: textblock
30217 #: ../tools/virt-tar.pl:175
30218 msgid "Specify that the input or output tarball is gzip-compressed."
30219 msgstr ""
30220
30221 #. type: textblock
30222 #: ../tools/virt-tar.pl:288
30223 msgid ""
30224 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
30225 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
30226 "L<virt-tar-out(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, "
30227 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30228 msgstr ""
30229
30230 #. type: textblock
30231 #: ../tools/virt-make-fs.pl:37
30232 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
30233 msgstr ""
30234
30235 #. type: verbatim
30236 #: ../tools/virt-make-fs.pl:41
30237 #, no-wrap
30238 msgid ""
30239 " virt-make-fs [--options] input.tar output.img\n"
30240 "\n"
30241 msgstr ""
30242
30243 #. type: verbatim
30244 #: ../tools/virt-make-fs.pl:43
30245 #, no-wrap
30246 msgid ""
30247 " virt-make-fs [--options] input.tar.gz output.img\n"
30248 "\n"
30249 msgstr ""
30250
30251 #. type: verbatim
30252 #: ../tools/virt-make-fs.pl:45
30253 #, no-wrap
30254 msgid ""
30255 " virt-make-fs [--options] directory output.img\n"
30256 "\n"
30257 msgstr ""
30258
30259 #. type: textblock
30260 #: ../tools/virt-make-fs.pl:49
30261 msgid ""
30262 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
30263 "archive or some files in a directory.  It is similar to tools like "
30264 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
30265 "it can create common filesystem types like ext2/3 or NTFS, which can be "
30266 "useful if you want to attach these filesystems to existing virtual machines "
30267 "(eg. to import large amounts of read-only data to a VM)."
30268 msgstr ""
30269
30270 #. type: textblock
30271 #: ../tools/virt-make-fs.pl:57
30272 msgid "Basic usage is:"
30273 msgstr ""
30274
30275 #. type: verbatim
30276 #: ../tools/virt-make-fs.pl:59
30277 #, no-wrap
30278 msgid ""
30279 " virt-make-fs input output\n"
30280 "\n"
30281 msgstr ""
30282
30283 #. type: textblock
30284 #: ../tools/virt-make-fs.pl:61
30285 msgid ""
30286 "where C<input> is either a directory containing files that you want to add, "
30287 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
30288 "C<output> is a disk image.  The input type is detected automatically.  The "
30289 "output disk image defaults to a raw ext2 image unless you specify extra "
30290 "flags (see L</OPTIONS> below)."
30291 msgstr ""
30292
30293 #. type: =head2
30294 #: ../tools/virt-make-fs.pl:67
30295 msgid "EXTRA SPACE"
30296 msgstr ""
30297
30298 #. type: textblock
30299 #: ../tools/virt-make-fs.pl:69
30300 msgid ""
30301 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
30302 "the files that it contains, but might have extra space.  Depending on how "
30303 "you are going to use the output, you might think this extra space is wasted "
30304 "and want to minimize it, or you might want to leave space so that more files "
30305 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
30306 "but you can use the I<--size> flag to leave space in the filesystem if you "
30307 "want it."
30308 msgstr ""
30309
30310 #. type: textblock
30311 #: ../tools/virt-make-fs.pl:77
30312 msgid ""
30313 "An alternative way to leave extra space but not make the output image any "
30314 "bigger is to use an alternative disk image format (instead of the default "
30315 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
30316 "image format (check your hypervisor supports this before using it).  This "
30317 "allows you to choose a large I<--size> but the extra space won't actually be "
30318 "allocated in the image until you try to store something in it."
30319 msgstr ""
30320
30321 #. type: textblock
30322 #: ../tools/virt-make-fs.pl:85
30323 msgid ""
30324 "Don't forget that you can also use local commands including L<resize2fs(8)> "
30325 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
30326 "to build another image from scratch."
30327 msgstr ""
30328
30329 #. type: =head3
30330 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
30331 msgid "EXAMPLE"
30332 msgstr ""
30333
30334 #. type: verbatim
30335 #: ../tools/virt-make-fs.pl:91
30336 #, no-wrap
30337 msgid ""
30338 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
30339 "\n"
30340 msgstr ""
30341
30342 #. type: =head2
30343 #: ../tools/virt-make-fs.pl:93
30344 msgid "FILESYSTEM TYPE"
30345 msgstr ""
30346
30347 #. type: textblock
30348 #: ../tools/virt-make-fs.pl:95
30349 msgid ""
30350 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30351 "libguestfs supports can be used (but I<not> read-only formats like "
30352 "ISO9660).  Here are some of the more common choices:"
30353 msgstr ""
30354
30355 #. type: =item
30356 #: ../tools/virt-make-fs.pl:101
30357 msgid "I<ext3>"
30358 msgstr ""
30359
30360 #. type: textblock
30361 #: ../tools/virt-make-fs.pl:103
30362 msgid ""
30363 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30364 "you are not going to use the filesystem in a way that requires the journal, "
30365 "then this is just wasted overhead."
30366 msgstr ""
30367
30368 #. type: =item
30369 #: ../tools/virt-make-fs.pl:107
30370 msgid "I<ntfs> or I<vfat>"
30371 msgstr ""
30372
30373 #. type: textblock
30374 #: ../tools/virt-make-fs.pl:109
30375 msgid "Useful if exporting data to a Windows guest."
30376 msgstr ""
30377
30378 #. type: textblock
30379 #: ../tools/virt-make-fs.pl:111
30380 msgid ""
30381 "I<Note for vfat>: The tar archive or local directory must only contain files "
30382 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30383 "program running within libguestfs is unable to change the ownership of "
30384 "non-root files, since vfat itself does not support this."
30385 msgstr ""
30386
30387 #. type: =item
30388 #: ../tools/virt-make-fs.pl:116
30389 msgid "I<minix>"
30390 msgstr ""
30391
30392 #. type: textblock
30393 #: ../tools/virt-make-fs.pl:118
30394 msgid ""
30395 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30396 "total filesystem size."
30397 msgstr ""
30398
30399 #. type: verbatim
30400 #: ../tools/virt-make-fs.pl:125
30401 #, no-wrap
30402 msgid ""
30403 " virt-make-fs --type=minix input minixfs.img\n"
30404 "\n"
30405 msgstr ""
30406
30407 #. type: =head2
30408 #: ../tools/virt-make-fs.pl:127
30409 msgid "TO PARTITION OR NOT TO PARTITION"
30410 msgstr ""
30411
30412 #. type: textblock
30413 #: ../tools/virt-make-fs.pl:129
30414 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30415 msgstr ""
30416
30417 #. type: textblock
30418 #: ../tools/virt-make-fs.pl:131
30419 msgid ""
30420 "Adding a partition can make the disk image more compatible with certain "
30421 "virtualized operating systems which don't expect to see a filesystem "
30422 "directly located on a block device (Linux doesn't care and will happily "
30423 "handle both types)."
30424 msgstr ""
30425
30426 #. type: textblock
30427 #: ../tools/virt-make-fs.pl:136
30428 msgid ""
30429 "On the other hand, if you have a partition table then the output image is no "
30430 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30431 "directly on a partitioned disk image.  (However libguestfs tools such as "
30432 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30433 msgstr ""
30434
30435 #. type: textblock
30436 #: ../tools/virt-make-fs.pl:144
30437 msgid "Add an MBR partition:"
30438 msgstr ""
30439
30440 #. type: verbatim
30441 #: ../tools/virt-make-fs.pl:146
30442 #, no-wrap
30443 msgid ""
30444 " virt-make-fs --partition -- input disk.img\n"
30445 "\n"
30446 msgstr ""
30447
30448 #. type: textblock
30449 #: ../tools/virt-make-fs.pl:148
30450 msgid ""
30451 "If the output disk image could be terabyte-sized or larger, it's better to "
30452 "use an EFI/GPT-compatible partition table:"
30453 msgstr ""
30454
30455 #. type: verbatim
30456 #: ../tools/virt-make-fs.pl:151
30457 #, no-wrap
30458 msgid ""
30459 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30460 "\n"
30461 msgstr ""
30462
30463 #. type: textblock
30464 #: ../tools/virt-make-fs.pl:179
30465 msgid "Enable debugging information."
30466 msgstr ""
30467
30468 #. type: =item
30469 #: ../tools/virt-make-fs.pl:185
30470 msgid "B<--size=E<lt>NE<gt>>"
30471 msgstr ""
30472
30473 #. type: =item
30474 #: ../tools/virt-make-fs.pl:187
30475 msgid "B<--size=+E<lt>NE<gt>>"
30476 msgstr ""
30477
30478 #. type: =item
30479 #: ../tools/virt-make-fs.pl:189
30480 msgid "B<-s E<lt>NE<gt>>"
30481 msgstr ""
30482
30483 #. type: =item
30484 #: ../tools/virt-make-fs.pl:191
30485 msgid "B<-s +E<lt>NE<gt>>"
30486 msgstr ""
30487
30488 #. type: textblock
30489 #: ../tools/virt-make-fs.pl:193
30490 msgid "Use the I<--size> (or I<-s>) option to choose the size of the output image."
30491 msgstr ""
30492
30493 #. type: textblock
30494 #: ../tools/virt-make-fs.pl:196
30495 msgid ""
30496 "If this option is I<not> given, then the output image will be just large "
30497 "enough to contain all the files, with not much wasted space."
30498 msgstr ""
30499
30500 #. type: textblock
30501 #: ../tools/virt-make-fs.pl:199
30502 msgid ""
30503 "To choose a fixed size output disk, specify an absolute number followed by "
30504 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30505 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30506 "files, else you will get an error."
30507 msgstr ""
30508
30509 #. type: textblock
30510 #: ../tools/virt-make-fs.pl:204
30511 msgid ""
30512 "To leave extra space, specify C<+> (plus sign) and a number followed by "
30513 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30514 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
30515 "the input files, and (approximately) an extra 200 MB free space."
30516 msgstr ""
30517
30518 #. type: textblock
30519 #: ../tools/virt-make-fs.pl:210
30520 msgid ""
30521 "Note that virt-make-fs estimates free space, and therefore will not produce "
30522 "filesystems containing precisely the free space requested.  (It is much more "
30523 "expensive and time-consuming to produce a filesystem which has precisely the "
30524 "desired free space)."
30525 msgstr ""
30526
30527 #. type: =item
30528 #: ../tools/virt-make-fs.pl:219
30529 msgid "B<--format=E<lt>fmtE<gt>>"
30530 msgstr ""
30531
30532 #. type: =item
30533 #: ../tools/virt-make-fs.pl:221
30534 msgid "B<-F E<lt>fmtE<gt>>"
30535 msgstr ""
30536
30537 #. type: textblock
30538 #: ../tools/virt-make-fs.pl:223
30539 msgid "Choose the output disk image format."
30540 msgstr ""
30541
30542 #. type: textblock
30543 #: ../tools/virt-make-fs.pl:225
30544 msgid "The default is C<raw> (raw disk image)."
30545 msgstr ""
30546
30547 #. type: textblock
30548 #: ../tools/virt-make-fs.pl:227
30549 msgid ""
30550 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30551 "that would really make sense here is C<qcow2>."
30552 msgstr ""
30553
30554 #. type: =item
30555 #: ../tools/virt-make-fs.pl:234
30556 msgid "B<--type=E<lt>fsE<gt>>"
30557 msgstr ""
30558
30559 #. type: =item
30560 #: ../tools/virt-make-fs.pl:236
30561 msgid "B<-t E<lt>fsE<gt>>"
30562 msgstr ""
30563
30564 #. type: textblock
30565 #: ../tools/virt-make-fs.pl:238
30566 msgid "Choose the output filesystem type."
30567 msgstr ""
30568
30569 #. type: textblock
30570 #: ../tools/virt-make-fs.pl:240
30571 msgid "The default is C<ext2>."
30572 msgstr ""
30573
30574 #. type: textblock
30575 #: ../tools/virt-make-fs.pl:242
30576 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
30577 msgstr ""
30578
30579 #. type: =item
30580 #: ../tools/virt-make-fs.pl:249
30581 msgid "B<--partition>"
30582 msgstr ""
30583
30584 #. type: =item
30585 #: ../tools/virt-make-fs.pl:251
30586 msgid "B<--partition=E<lt>parttypeE<gt>>"
30587 msgstr ""
30588
30589 #. type: textblock
30590 #: ../tools/virt-make-fs.pl:253
30591 msgid ""
30592 "If specified, this flag adds an MBR partition table to the output disk "
30593 "image."
30594 msgstr ""
30595
30596 #. type: textblock
30597 #: ../tools/virt-make-fs.pl:256
30598 msgid ""
30599 "You can change the partition table type, eg. I<--partition=gpt> for large "
30600 "disks."
30601 msgstr ""
30602
30603 #. type: textblock
30604 #: ../tools/virt-make-fs.pl:259
30605 msgid ""
30606 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
30607 "might consider the next parameter to be the partition type.  For example:"
30608 msgstr ""
30609
30610 #. type: verbatim
30611 #: ../tools/virt-make-fs.pl:263
30612 #, no-wrap
30613 msgid ""
30614 " virt-make-fs --partition input.tar ...\n"
30615 "\n"
30616 msgstr ""
30617
30618 #. type: textblock
30619 #: ../tools/virt-make-fs.pl:265
30620 msgid ""
30621 "would cause virt-make-fs to think you wanted to use a partition type of "
30622 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
30623 "dash) between options and the input file argument:"
30624 msgstr ""
30625
30626 #. type: verbatim
30627 #: ../tools/virt-make-fs.pl:269
30628 #, no-wrap
30629 msgid ""
30630 " virt-make-fs --partition -- input.tar ...\n"
30631 "\n"
30632 msgstr ""
30633
30634 #. type: textblock
30635 #: ../tools/virt-make-fs.pl:541
30636 msgid ""
30637 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30638 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
30639 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30640 msgstr ""
30641
30642 #. type: verbatim
30643 #: ../tools/virt-make-fs.pl:558
30644 #, no-wrap
30645 msgid ""
30646 " export LIBGUESTFS_DEBUG=1\n"
30647 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30648 "\n"
30649 msgstr ""
30650
30651 #. type: textblock
30652 #: ../tools/virt-make-fs.pl:561
30653 msgid ""
30654 "Attach /tmp/virt-make-fs.log to a new bug report at "
30655 "L<https://bugzilla.redhat.com/>"
30656 msgstr ""
30657
30658 #. type: textblock
30659 #: ../tools/virt-list-partitions.pl:32
30660 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
30661 msgstr ""
30662
30663 #. type: verbatim
30664 #: ../tools/virt-list-partitions.pl:36
30665 #, no-wrap
30666 msgid ""
30667 " virt-list-partitions [--options] domname\n"
30668 "\n"
30669 msgstr ""
30670
30671 #. type: verbatim
30672 #: ../tools/virt-list-partitions.pl:38
30673 #, no-wrap
30674 msgid ""
30675 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30676 "\n"
30677 msgstr ""
30678
30679 #. type: textblock
30680 #: ../tools/virt-list-partitions.pl:45
30681 msgid ""
30682 "C<virt-list-partitions> is a command line tool to list the partitions that "
30683 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30684 "first step to using L<virt-resize(1)>."
30685 msgstr ""
30686
30687 #. type: textblock
30688 #: ../tools/virt-list-partitions.pl:50
30689 msgid ""
30690 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30691 "functionality.  For more complex cases you should look at the "
30692 "L<guestfish(1)> tool."
30693 msgstr ""
30694
30695 #. type: =item
30696 #: ../tools/virt-list-partitions.pl:107
30697 msgid "B<-h> | B<--human-readable>"
30698 msgstr ""
30699
30700 #. type: textblock
30701 #: ../tools/virt-list-partitions.pl:109
30702 msgid "Show sizes in human-readable form (eg. \"1G\")."
30703 msgstr ""
30704
30705 #. type: textblock
30706 #: ../tools/virt-list-partitions.pl:117
30707 msgid ""
30708 "With this option, C<virt-list-partitions> displays the type and size of each "
30709 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30710 msgstr ""
30711
30712 #. type: =item
30713 #: ../tools/virt-list-partitions.pl:124
30714 msgid "B<-t> | B<--total>"
30715 msgstr ""
30716
30717 #. type: textblock
30718 #: ../tools/virt-list-partitions.pl:126
30719 msgid "Display the total size of each block device (as a separate row or rows)."
30720 msgstr ""
30721
30722 #. type: textblock
30723 #: ../tools/virt-list-partitions.pl:259
30724 msgid ""
30725 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
30726 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
30727 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30728 msgstr ""
30729
30730 #. type: textblock
30731 #: ../tools/virt-list-partitions.pl:275
30732 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30733 msgstr ""