6f532ca52731ac67a67d3afe5958248560c9a211
[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.9\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-06-04 22:42+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:2967 ../src/guestfs.pod:2971 ../src/guestfs.pod:2975 ../src/guestfs.pod:2979 ../src/guestfs-actions.pod:15 ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:583 ../src/guestfs-actions.pod:591 ../src/guestfs-actions.pod:598 ../src/guestfs-actions.pod:605 ../src/guestfs-actions.pod:1603 ../src/guestfs-actions.pod:1607 ../src/guestfs-actions.pod:1611 ../src/guestfs-actions.pod:1615 ../src/guestfs-actions.pod:1623 ../src/guestfs-actions.pod:1627 ../src/guestfs-actions.pod:1631 ../src/guestfs-actions.pod:1641 ../src/guestfs-actions.pod:1645 ../src/guestfs-actions.pod:1649 ../src/guestfs-actions.pod:1787 ../src/guestfs-actions.pod:1791 ../src/guestfs-actions.pod:1796 ../src/guestfs-actions.pod:1801 ../src/guestfs-actions.pod:1862 ../src/guestfs-actions.pod:1866 ../src/guestfs-actions.pod:1871 ../fish/guestfish.pod:445 ../fish/guestfish.pod:449 ../fish/guestfish.pod:453 ../fish/guestfish.pod:457 ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20 ../fish/guestfish-actions.pod:385 ../fish/guestfish-actions.pod:393 ../fish/guestfish-actions.pod:400 ../fish/guestfish-actions.pod:407 ../fish/guestfish-actions.pod:1074 ../fish/guestfish-actions.pod:1078 ../fish/guestfish-actions.pod:1082 ../fish/guestfish-actions.pod:1086 ../fish/guestfish-actions.pod:1094 ../fish/guestfish-actions.pod:1098 ../fish/guestfish-actions.pod:1102 ../fish/guestfish-actions.pod:1112 ../fish/guestfish-actions.pod:1116 ../fish/guestfish-actions.pod:1120 ../fish/guestfish-actions.pod:1210 ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219 ../fish/guestfish-actions.pod:1224 ../fish/guestfish-actions.pod:1266 ../fish/guestfish-actions.pod:1270 ../fish/guestfish-actions.pod:1275 ../tools/virt-win-reg.pl:195 ../tools/virt-win-reg.pl:200 ../tools/virt-win-reg.pl:206 ../tools/virt-win-reg.pl:708 ../tools/virt-win-reg.pl:714 ../tools/virt-win-reg.pl:720
811 msgid "*"
812 msgstr ""
813
814 #. type: textblock
815 #: ../src/guestfs.pod:390
816 msgid ""
817 "The kernel version that the command runs under will be different from what "
818 "it expects."
819 msgstr ""
820
821 #. type: textblock
822 #: ../src/guestfs.pod:395
823 msgid ""
824 "If the command needs to communicate with daemons, then most likely they "
825 "won't be running."
826 msgstr ""
827
828 #. type: textblock
829 #: ../src/guestfs.pod:400
830 msgid "The command will be running in limited memory."
831 msgstr ""
832
833 #. type: textblock
834 #: ../src/guestfs.pod:404
835 msgid ""
836 "The network may not be available unless you enable it (see "
837 "L</guestfs_set_network>)."
838 msgstr ""
839
840 #. type: textblock
841 #: ../src/guestfs.pod:409
842 msgid "Only supports Linux guests (not Windows, BSD, etc)."
843 msgstr ""
844
845 #. type: textblock
846 #: ../src/guestfs.pod:413
847 msgid "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
848 msgstr ""
849
850 #. type: textblock
851 #: ../src/guestfs.pod:418
852 msgid ""
853 "For SELinux guests, you may need to enable SELinux and load policy first.  "
854 "See L</SELINUX> in this manpage."
855 msgstr ""
856
857 #. type: textblock
858 #: ../src/guestfs.pod:423
859 msgid ""
860 "I<Security:> It is not safe to run commands from untrusted, possibly "
861 "malicious guests.  These commands may attempt to exploit your program by "
862 "sending unexpected output.  They could also try to exploit the Linux kernel "
863 "or qemu provided by the libguestfs appliance.  They could use the network "
864 "provided by the libguestfs appliance to bypass ordinary network partitions "
865 "and firewalls.  They could use the elevated privileges or different SELinux "
866 "context of your program to their advantage."
867 msgstr ""
868
869 #. type: textblock
870 #: ../src/guestfs.pod:432
871 msgid ""
872 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
873 "(a script which runs when the guest next boots normally), and to have this "
874 "script run the commands you want in the normal context of the running guest, "
875 "network security and so on.  For information about other security issues, "
876 "see L</SECURITY>."
877 msgstr ""
878
879 #. type: textblock
880 #: ../src/guestfs.pod:440
881 msgid ""
882 "The two main API calls to run commands are L</guestfs_command> and "
883 "L</guestfs_sh> (there are also variations)."
884 msgstr ""
885
886 #. type: textblock
887 #: ../src/guestfs.pod:443
888 msgid ""
889 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
890 "shell globs, redirections, etc will work."
891 msgstr ""
892
893 #. type: =head2
894 #: ../src/guestfs.pod:446
895 msgid "CONFIGURATION FILES"
896 msgstr ""
897
898 #. type: textblock
899 #: ../src/guestfs.pod:448
900 msgid ""
901 "To read and write configuration files in Linux guest filesystems, we "
902 "strongly recommend using Augeas.  For example, Augeas understands how to "
903 "read and write, say, a Linux shadow password file or X.org configuration "
904 "file, and so avoids you having to write that code."
905 msgstr ""
906
907 #. type: textblock
908 #: ../src/guestfs.pod:453
909 msgid ""
910 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
911 "document Augeas itself here because there is excellent documentation on the "
912 "L<http://augeas.net/> website."
913 msgstr ""
914
915 #. type: textblock
916 #: ../src/guestfs.pod:457
917 msgid ""
918 "If you don't want to use Augeas (you fool!) then try calling "
919 "L</guestfs_read_lines> to get the file as a list of lines which you can "
920 "iterate over."
921 msgstr ""
922
923 #. type: =head2
924 #: ../src/guestfs.pod:461
925 msgid "SELINUX"
926 msgstr ""
927
928 #. type: textblock
929 #: ../src/guestfs.pod:463
930 msgid ""
931 "We support SELinux guests.  To ensure that labeling happens correctly in "
932 "SELinux guests, you need to enable SELinux and load the guest's policy:"
933 msgstr ""
934
935 #. type: =item
936 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395 ../src/guestfs.pod:2426
937 msgid "1."
938 msgstr ""
939
940 #. type: textblock
941 #: ../src/guestfs.pod:471
942 msgid "Before launching, do:"
943 msgstr ""
944
945 #. type: verbatim
946 #: ../src/guestfs.pod:473
947 #, no-wrap
948 msgid ""
949 " guestfs_set_selinux (g, 1);\n"
950 "\n"
951 msgstr ""
952
953 #. type: =item
954 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399 ../src/guestfs.pod:2451
955 msgid "2."
956 msgstr ""
957
958 #. type: textblock
959 #: ../src/guestfs.pod:477
960 msgid ""
961 "After mounting the guest's filesystem(s), load the policy.  This is best "
962 "done by running the L<load_policy(8)> command in the guest itself:"
963 msgstr ""
964
965 #. type: verbatim
966 #: ../src/guestfs.pod:481
967 #, no-wrap
968 msgid ""
969 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
970 "\n"
971 msgstr ""
972
973 #. type: textblock
974 #: ../src/guestfs.pod:483
975 msgid ""
976 "(Older versions of C<load_policy> require you to specify the name of the "
977 "policy file)."
978 msgstr ""
979
980 #. type: =item
981 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
982 msgid "3."
983 msgstr ""
984
985 #. type: textblock
986 #: ../src/guestfs.pod:488
987 msgid ""
988 "Optionally, set the security context for the API.  The correct security "
989 "context to use can only be known by inspecting the guest.  As an example:"
990 msgstr ""
991
992 #. type: verbatim
993 #: ../src/guestfs.pod:492
994 #, no-wrap
995 msgid ""
996 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
997 "\n"
998 msgstr ""
999
1000 #. type: textblock
1001 #: ../src/guestfs.pod:496
1002 msgid "This will work for running commands and editing existing files."
1003 msgstr ""
1004
1005 #. type: textblock
1006 #: ../src/guestfs.pod:498
1007 msgid ""
1008 "When new files are created, you may need to label them explicitly, for "
1009 "example by running the external command C<restorecon pathname>."
1010 msgstr ""
1011
1012 #. type: =head2
1013 #: ../src/guestfs.pod:502
1014 msgid "UMASK"
1015 msgstr ""
1016
1017 #. type: textblock
1018 #: ../src/guestfs.pod:504
1019 msgid ""
1020 "Certain calls are affected by the current file mode creation mask (the "
1021 "\"umask\").  In particular ones which create files or directories, such as "
1022 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1023 "either the default mode that the file is created with or modifies the mode "
1024 "that you supply."
1025 msgstr ""
1026
1027 #. type: textblock
1028 #: ../src/guestfs.pod:510
1029 msgid ""
1030 "The default umask is C<022>, so files are created with modes such as C<0644> "
1031 "and directories with C<0755>."
1032 msgstr ""
1033
1034 #. type: textblock
1035 #: ../src/guestfs.pod:513
1036 msgid ""
1037 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1038 "(call C<guestfs_umask (g, 0)> early after launching).  Or call "
1039 "L</guestfs_chmod> after creating each file or directory."
1040 msgstr ""
1041
1042 #. type: textblock
1043 #: ../src/guestfs.pod:517
1044 msgid "For more information about umask, see L<umask(2)>."
1045 msgstr ""
1046
1047 #. type: =head1
1048 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:767
1049 msgid "ENCRYPTED DISKS"
1050 msgstr ""
1051
1052 #. type: textblock
1053 #: ../src/guestfs.pod:521
1054 msgid ""
1055 "Libguestfs allows you to access Linux guests which have been encrypted using "
1056 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1057 "standard.  This includes nearly all whole disk encryption systems used by "
1058 "modern Linux guests."
1059 msgstr ""
1060
1061 #. type: textblock
1062 #: ../src/guestfs.pod:527
1063 msgid ""
1064 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1065 "returns the string C<crypto_LUKS>)."
1066 msgstr ""
1067
1068 #. type: textblock
1069 #: ../src/guestfs.pod:530
1070 msgid ""
1071 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1072 "will require the passphrase!"
1073 msgstr ""
1074
1075 #. type: textblock
1076 #: ../src/guestfs.pod:533
1077 msgid ""
1078 "Opening a LUKS device creates a new device mapper device called "
1079 "C</dev/mapper/mapname> (where C<mapname> is the string you supply to "
1080 "L</guestfs_luks_open>).  Reads and writes to this mapper device are "
1081 "decrypted from and encrypted to the underlying block device respectively."
1082 msgstr ""
1083
1084 #. type: textblock
1085 #: ../src/guestfs.pod:539
1086 msgid ""
1087 "LVM volume groups on the device can be made visible by calling "
1088 "L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical "
1089 "volume(s) can now be mounted in the usual way."
1090 msgstr ""
1091
1092 #. type: textblock
1093 #: ../src/guestfs.pod:543
1094 msgid ""
1095 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1096 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1097 "[\"/dev/VG\"])>.  Then close the mapper device by calling "
1098 "L</guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1099 "underlying encrypted block device)."
1100 msgstr ""
1101
1102 #. type: =head2
1103 #: ../src/guestfs.pod:550
1104 msgid "INSPECTION"
1105 msgstr ""
1106
1107 #. type: textblock
1108 #: ../src/guestfs.pod:552
1109 msgid ""
1110 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1111 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1112 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1113 "version 1.5.3 the most frequently used part of this library has been "
1114 "rewritten in C and moved into the core code)."
1115 msgstr ""
1116
1117 #. type: textblock
1118 #: ../src/guestfs.pod:559
1119 msgid ""
1120 "Add all disks belonging to the unknown virtual machine and call "
1121 "L</guestfs_launch> in the usual way."
1122 msgstr ""
1123
1124 #. type: textblock
1125 #: ../src/guestfs.pod:562
1126 msgid ""
1127 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1128 "and certain heuristics, and returns a list of operating systems that were "
1129 "found.  An empty list means none were found.  A single element is the root "
1130 "filesystem of the operating system.  For dual- or multi-boot guests, "
1131 "multiple roots can be returned, each one corresponding to a separate "
1132 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1133 "world of virtualization, but since this scenario can happen, we have built "
1134 "libguestfs to deal with it.)"
1135 msgstr ""
1136
1137 #. type: textblock
1138 #: ../src/guestfs.pod:571
1139 msgid ""
1140 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1141 "to get additional details about that operating system.  For example, call "
1142 "L</guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1143 "Windows and Linux-based operating systems respectively."
1144 msgstr ""
1145
1146 #. type: textblock
1147 #: ../src/guestfs.pod:577
1148 msgid ""
1149 "Un*x-like and Linux-based operating systems usually consist of several "
1150 "filesystems which are mounted at boot time (for example, a separate boot "
1151 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1152 "filesystems correspond to mount points.  Call "
1153 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1154 "hash table like this example:"
1155 msgstr ""
1156
1157 #. type: verbatim
1158 #: ../src/guestfs.pod:584
1159 #, no-wrap
1160 msgid ""
1161 " /boot => /dev/sda1\n"
1162 " /     => /dev/vg_guest/lv_root\n"
1163 " /usr  => /dev/vg_guest/lv_usr\n"
1164 "\n"
1165 msgstr ""
1166
1167 #. type: textblock
1168 #: ../src/guestfs.pod:588
1169 msgid ""
1170 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1171 "filesystems as suggested."
1172 msgstr ""
1173
1174 #. type: textblock
1175 #: ../src/guestfs.pod:591
1176 msgid ""
1177 "Be careful to mount filesystems in the right order (eg. C</> before "
1178 "C</usr>).  Sorting the keys of the hash by length, shortest first, should "
1179 "work."
1180 msgstr ""
1181
1182 #. type: textblock
1183 #: ../src/guestfs.pod:595
1184 msgid ""
1185 "Inspection currently only works for some common operating systems.  "
1186 "Contributors are welcome to send patches for other operating systems that we "
1187 "currently cannot detect."
1188 msgstr ""
1189
1190 #. type: textblock
1191 #: ../src/guestfs.pod:599
1192 msgid ""
1193 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1194 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1195 "encrypted devices."
1196 msgstr ""
1197
1198 #. type: textblock
1199 #: ../src/guestfs.pod:603
1200 msgid ""
1201 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1202 "inspection and caches the results in the guest handle.  Subsequent calls to "
1203 "C<guestfs_inspect_get_*> return this cached information, but I<do not> "
1204 "re-read the disks.  If you change the content of the guest disks, you can "
1205 "redo inspection by calling L</guestfs_inspect_os> again.  "
1206 "(L</guestfs_inspect_list_applications> works a little differently from the "
1207 "other calls and does read the disks.  See documentation for that function "
1208 "for details)."
1209 msgstr ""
1210
1211 #. type: =head3
1212 #: ../src/guestfs.pod:612
1213 msgid "INSPECTING INSTALL DISKS"
1214 msgstr ""
1215
1216 #. type: textblock
1217 #: ../src/guestfs.pod:614
1218 msgid ""
1219 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1220 "CDs and more."
1221 msgstr ""
1222
1223 #. type: textblock
1224 #: ../src/guestfs.pod:617
1225 msgid ""
1226 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1227 "system, which currently can be C<installed> (a regular operating system) or "
1228 "C<installer> (some sort of install disk)."
1229 msgstr ""
1230
1231 #. type: textblock
1232 #: ../src/guestfs.pod:621
1233 msgid ""
1234 "Further information is available about the operating system that can be "
1235 "installed using the regular inspection APIs like "
1236 "L</guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> "
1237 "etc."
1238 msgstr ""
1239
1240 #. type: textblock
1241 #: ../src/guestfs.pod:626
1242 msgid ""
1243 "Some additional information specific to installer disks is also available "
1244 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and "
1245 "L</guestfs_inspect_is_multipart> calls."
1246 msgstr ""
1247
1248 #. type: =head2
1249 #: ../src/guestfs.pod:631
1250 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1251 msgstr ""
1252
1253 #. type: textblock
1254 #: ../src/guestfs.pod:633
1255 msgid ""
1256 "Libguestfs can mount NTFS partitions.  It does this using the "
1257 "L<http://www.ntfs-3g.org/> driver."
1258 msgstr ""
1259
1260 #. type: =head3
1261 #: ../src/guestfs.pod:636
1262 msgid "DRIVE LETTERS AND PATHS"
1263 msgstr ""
1264
1265 #. type: textblock
1266 #: ../src/guestfs.pod:638
1267 msgid ""
1268 "DOS and Windows still use drive letters, and the filesystems are always "
1269 "treated as case insensitive by Windows itself, and therefore you might find "
1270 "a Windows configuration file referring to a path like "
1271 "C<c:\\windows\\system32>.  When the filesystem is mounted in libguestfs, "
1272 "that directory might be referred to as C</WINDOWS/System32>."
1273 msgstr ""
1274
1275 #. type: textblock
1276 #: ../src/guestfs.pod:644
1277 msgid ""
1278 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1279 "L</guestfs_inspect_get_drive_mappings>)"
1280 msgstr ""
1281
1282 #. type: textblock
1283 #: ../src/guestfs.pod:647
1284 msgid ""
1285 "Dealing with separator characters (backslash vs forward slash) is outside "
1286 "the scope of libguestfs, but usually a simple character replacement will "
1287 "work."
1288 msgstr ""
1289
1290 #. type: textblock
1291 #: ../src/guestfs.pod:651
1292 msgid ""
1293 "To resolve the case insensitivity of paths, call "
1294 "L</guestfs_case_sensitive_path>."
1295 msgstr ""
1296
1297 #. type: =head3
1298 #: ../src/guestfs.pod:654
1299 msgid "ACCESSING THE WINDOWS REGISTRY"
1300 msgstr ""
1301
1302 #. type: textblock
1303 #: ../src/guestfs.pod:656
1304 msgid ""
1305 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1306 "files, through the library C<hivex> which is part of the libguestfs project "
1307 "although ships as a separate tarball.  You have to locate and download the "
1308 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1309 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and "
1310 "L<virt-win-reg(1)> for more help on this issue."
1311 msgstr ""
1312
1313 #. type: =head3
1314 #: ../src/guestfs.pod:664
1315 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1316 msgstr ""
1317
1318 #. type: textblock
1319 #: ../src/guestfs.pod:666
1320 msgid ""
1321 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1322 "provide something which looks like a Linux symlink.  The way it tries to do "
1323 "the rewriting is described here:"
1324 msgstr ""
1325
1326 #. type: textblock
1327 #: ../src/guestfs.pod:670
1328 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-symbolic-links/>"
1329 msgstr ""
1330
1331 #. type: textblock
1332 #: ../src/guestfs.pod:672
1333 msgid ""
1334 "The essential problem is that ntfs-3g simply does not have enough "
1335 "information to do a correct job.  NTFS links can contain drive letters and "
1336 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1337 "It is almost certainly the case that libguestfs callers should ignore what "
1338 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1339 msgstr ""
1340
1341 #. type: textblock
1342 #: ../src/guestfs.pod:679
1343 msgid ""
1344 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use "
1345 "L</guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1346 "attribute, and read the raw reparse data from that (you can find the format "
1347 "documented in various places around the web)."
1348 msgstr ""
1349
1350 #. type: =head3
1351 #: ../src/guestfs.pod:684
1352 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1353 msgstr ""
1354
1355 #. type: textblock
1356 #: ../src/guestfs.pod:686
1357 msgid ""
1358 "There are other useful extended attributes that can be read from ntfs-3g "
1359 "filesystems (using L</guestfs_getxattr>).  See:"
1360 msgstr ""
1361
1362 #. type: textblock
1363 #: ../src/guestfs.pod:689
1364 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1365 msgstr ""
1366
1367 #. type: =head2
1368 #: ../src/guestfs.pod:691
1369 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1370 msgstr ""
1371
1372 #. type: textblock
1373 #: ../src/guestfs.pod:693
1374 msgid ""
1375 "Although we don't want to discourage you from using the C API, we will "
1376 "mention here that the same API is also available in other languages."
1377 msgstr ""
1378
1379 #. type: textblock
1380 #: ../src/guestfs.pod:696
1381 msgid ""
1382 "The API is broadly identical in all supported languages.  This means that "
1383 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1384 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1385 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1386 "each language."
1387 msgstr ""
1388
1389 #. type: textblock
1390 #: ../src/guestfs.pod:702
1391 msgid ""
1392 "Error messages are automatically transformed into exceptions if the language "
1393 "supports it."
1394 msgstr ""
1395
1396 #. type: textblock
1397 #: ../src/guestfs.pod:705
1398 msgid ""
1399 "We don't try to \"object orientify\" parts of the API in OO languages, "
1400 "although contributors are welcome to write higher level APIs above what we "
1401 "provide in their favourite languages if they wish."
1402 msgstr ""
1403
1404 #. type: =item
1405 #: ../src/guestfs.pod:711
1406 msgid "B<C++>"
1407 msgstr ""
1408
1409 #. type: textblock
1410 #: ../src/guestfs.pod:713
1411 msgid ""
1412 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1413 "identical to the C API.  C++ classes and exceptions are not used."
1414 msgstr ""
1415
1416 #. type: =item
1417 #: ../src/guestfs.pod:717
1418 msgid "B<C#>"
1419 msgstr ""
1420
1421 #. type: textblock
1422 #: ../src/guestfs.pod:719
1423 msgid ""
1424 "The C# bindings are highly experimental.  Please read the warnings at the "
1425 "top of C<csharp/Libguestfs.cs>."
1426 msgstr ""
1427
1428 #. type: =item
1429 #: ../src/guestfs.pod:722
1430 msgid "B<Haskell>"
1431 msgstr ""
1432
1433 #. type: textblock
1434 #: ../src/guestfs.pod:724
1435 msgid ""
1436 "This is the only language binding that is working but incomplete.  Only "
1437 "calls which return simple integers have been bound in Haskell, and we are "
1438 "looking for help to complete this binding."
1439 msgstr ""
1440
1441 #. type: =item
1442 #: ../src/guestfs.pod:728
1443 msgid "B<Java>"
1444 msgstr ""
1445
1446 #. type: textblock
1447 #: ../src/guestfs.pod:730
1448 msgid ""
1449 "Full documentation is contained in the Javadoc which is distributed with "
1450 "libguestfs."
1451 msgstr ""
1452
1453 #. type: =item
1454 #: ../src/guestfs.pod:733
1455 msgid "B<OCaml>"
1456 msgstr ""
1457
1458 #. type: textblock
1459 #: ../src/guestfs.pod:735
1460 msgid "See L<guestfs-ocaml(3)>."
1461 msgstr ""
1462
1463 #. type: =item
1464 #: ../src/guestfs.pod:737
1465 msgid "B<Perl>"
1466 msgstr ""
1467
1468 #. type: textblock
1469 #: ../src/guestfs.pod:739
1470 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1471 msgstr ""
1472
1473 #. type: =item
1474 #: ../src/guestfs.pod:741
1475 msgid "B<PHP>"
1476 msgstr ""
1477
1478 #. type: textblock
1479 #: ../src/guestfs.pod:743
1480 msgid ""
1481 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1482 "the php-libguestfs package for your distribution."
1483 msgstr ""
1484
1485 #. type: textblock
1486 #: ../src/guestfs.pod:746
1487 msgid "The PHP binding only works correctly on 64 bit machines."
1488 msgstr ""
1489
1490 #. type: =item
1491 #: ../src/guestfs.pod:748
1492 msgid "B<Python>"
1493 msgstr ""
1494
1495 #. type: textblock
1496 #: ../src/guestfs.pod:750
1497 msgid "See L<guestfs-python(3)>."
1498 msgstr ""
1499
1500 #. type: =item
1501 #: ../src/guestfs.pod:752
1502 msgid "B<Ruby>"
1503 msgstr ""
1504
1505 #. type: textblock
1506 #: ../src/guestfs.pod:754
1507 msgid "See L<guestfs-ruby(3)>."
1508 msgstr ""
1509
1510 #. type: =item
1511 #: ../src/guestfs.pod:756
1512 msgid "B<shell scripts>"
1513 msgstr ""
1514
1515 #. type: textblock
1516 #: ../src/guestfs.pod:758
1517 msgid "See L<guestfish(1)>."
1518 msgstr ""
1519
1520 #. type: =head2
1521 #: ../src/guestfs.pod:762
1522 msgid "LIBGUESTFS GOTCHAS"
1523 msgstr ""
1524
1525 #. type: textblock
1526 #: ../src/guestfs.pod:764
1527 msgid ""
1528 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1529 "system [...] that works in the way it is documented but is counterintuitive "
1530 "and almost invites mistakes.\""
1531 msgstr ""
1532
1533 #. type: textblock
1534 #: ../src/guestfs.pod:768
1535 msgid ""
1536 "Since we developed libguestfs and the associated tools, there are several "
1537 "things we would have designed differently, but are now stuck with for "
1538 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1539 "release, you can expect these to change.  Beware of them."
1540 msgstr ""
1541
1542 #. type: =item
1543 #: ../src/guestfs.pod:776
1544 msgid "Autosync / forgetting to sync."
1545 msgstr ""
1546
1547 #. type: textblock
1548 #: ../src/guestfs.pod:778
1549 msgid ""
1550 "I<Update:> Autosync is enabled by default for all API users starting from "
1551 "libguestfs 1.5.24.  This section only applies to older versions."
1552 msgstr ""
1553
1554 #. type: textblock
1555 #: ../src/guestfs.pod:781
1556 msgid ""
1557 "When modifying a filesystem from C or another language, you B<must> unmount "
1558 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1559 "libguestfs handle.  You can also call:"
1560 msgstr ""
1561
1562 #. type: verbatim
1563 #: ../src/guestfs.pod:785
1564 #, no-wrap
1565 msgid ""
1566 " guestfs_set_autosync (g, 1);\n"
1567 "\n"
1568 msgstr ""
1569
1570 #. type: textblock
1571 #: ../src/guestfs.pod:787
1572 msgid ""
1573 "to have the unmount/sync done automatically for you when the handle 'g' is "
1574 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> "
1575 "q.v.)"
1576 msgstr ""
1577
1578 #. type: textblock
1579 #: ../src/guestfs.pod:791
1580 msgid ""
1581 "If you forget to do this, then it is entirely possible that your changes "
1582 "won't be written out, or will be partially written, or (very rarely) that "
1583 "you'll get disk corruption."
1584 msgstr ""
1585
1586 #. type: textblock
1587 #: ../src/guestfs.pod:795
1588 msgid ""
1589 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1590 "guestfish scripts that forget to sync will work just fine, which can make "
1591 "this very puzzling if you are trying to debug a problem."
1592 msgstr ""
1593
1594 #. type: =item
1595 #: ../src/guestfs.pod:799
1596 msgid "Mount option C<-o sync> should not be the default."
1597 msgstr ""
1598
1599 #. type: textblock
1600 #: ../src/guestfs.pod:801
1601 msgid ""
1602 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1603 "However C<-o sync> does not add any reliability benefit, but does have a "
1604 "very large performance impact."
1605 msgstr ""
1606
1607 #. type: textblock
1608 #: ../src/guestfs.pod:805
1609 msgid ""
1610 "The work around is to use L</guestfs_mount_options> and set the mount "
1611 "options that you actually want to use."
1612 msgstr ""
1613
1614 #. type: =item
1615 #: ../src/guestfs.pod:808
1616 msgid "Read-only should be the default."
1617 msgstr ""
1618
1619 #. type: textblock
1620 #: ../src/guestfs.pod:810
1621 msgid ""
1622 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1623 "specify I<--rw> if you want to make changes to the image."
1624 msgstr ""
1625
1626 #. type: textblock
1627 #: ../src/guestfs.pod:813
1628 msgid "This would reduce the potential to corrupt live VM images."
1629 msgstr ""
1630
1631 #. type: textblock
1632 #: ../src/guestfs.pod:815
1633 msgid ""
1634 "Note that many filesystems change the disk when you just mount and unmount, "
1635 "even if you didn't perform any writes.  You need to use "
1636 "L</guestfs_add_drive_ro> to guarantee that the disk is not changed."
1637 msgstr ""
1638
1639 #. type: =item
1640 #: ../src/guestfs.pod:819
1641 msgid "guestfish command line is hard to use."
1642 msgstr ""
1643
1644 #. type: textblock
1645 #: ../src/guestfs.pod:821
1646 msgid ""
1647 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1648 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1649 "exist, so it fails.  In earlier versions of guestfish the error message was "
1650 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1651 "we should have used C<guestfish -c command> to run commands."
1652 msgstr ""
1653
1654 #. type: =item
1655 #: ../src/guestfs.pod:828
1656 msgid "guestfish megabyte modifiers don't work right on all commands"
1657 msgstr ""
1658
1659 #. type: textblock
1660 #: ../src/guestfs.pod:830
1661 msgid ""
1662 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1663 "other modifiers).  What guestfish actually does is to multiply the number "
1664 "part by the modifier part and pass the result to the C API.  However this "
1665 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1666 "expecting some other unit (eg. megabytes)."
1667 msgstr ""
1668
1669 #. type: textblock
1670 #: ../src/guestfs.pod:837
1671 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1672 msgstr ""
1673
1674 #. type: verbatim
1675 #: ../src/guestfs.pod:839
1676 #, no-wrap
1677 msgid ""
1678 " lvcreate LV VG 100M\n"
1679 "\n"
1680 msgstr ""
1681
1682 #. type: textblock
1683 #: ../src/guestfs.pod:841
1684 msgid ""
1685 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1686 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1687 "megabytes * megabytes) logical volume.  The error message you get from this "
1688 "is also a little obscure."
1689 msgstr ""
1690
1691 #. type: textblock
1692 #: ../src/guestfs.pod:846
1693 msgid ""
1694 "This could be fixed in the generator by specially marking parameters and "
1695 "return values which take bytes or other units."
1696 msgstr ""
1697
1698 #. type: =item
1699 #: ../src/guestfs.pod:849
1700 msgid "Ambiguity between devices and paths"
1701 msgstr ""
1702
1703 #. type: textblock
1704 #: ../src/guestfs.pod:851
1705 msgid ""
1706 "There is a subtle ambiguity in the API between a device name "
1707 "(eg. C</dev/sdb2>) and a similar pathname.  A file might just happen to be "
1708 "called C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1709 msgstr ""
1710
1711 #. type: textblock
1712 #: ../src/guestfs.pod:856
1713 msgid ""
1714 "In the current API we usually resolve this ambiguity by having two separate "
1715 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1716 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1717 "detecting if the path supplied begins with C</dev/>."
1718 msgstr ""
1719
1720 #. type: textblock
1721 #: ../src/guestfs.pod:862
1722 msgid ""
1723 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1724 "make paths/devices into structured names.  One way to do this would be to "
1725 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1726 "aspect of grub.  Another way would be to use a structured type, equivalent "
1727 "to this OCaml type:"
1728 msgstr ""
1729
1730 #. type: verbatim
1731 #: ../src/guestfs.pod:868
1732 #, no-wrap
1733 msgid ""
1734 " type path = Path of string | Device of int | Partition of int * int\n"
1735 "\n"
1736 msgstr ""
1737
1738 #. type: textblock
1739 #: ../src/guestfs.pod:870
1740 msgid "which would allow you to pass arguments like:"
1741 msgstr ""
1742
1743 #. type: verbatim
1744 #: ../src/guestfs.pod:872
1745 #, no-wrap
1746 msgid ""
1747 " Path \"/foo/bar\"\n"
1748 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1749 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1750 " Path \"/dev/sdb2\"    (* not a device *)\n"
1751 "\n"
1752 msgstr ""
1753
1754 #. type: textblock
1755 #: ../src/guestfs.pod:877
1756 msgid ""
1757 "As you can see there are still problems to resolve even with this "
1758 "representation.  Also consider how it might work in guestfish."
1759 msgstr ""
1760
1761 #. type: =head2
1762 #: ../src/guestfs.pod:882
1763 msgid "KEYS AND PASSPHRASES"
1764 msgstr ""
1765
1766 #. type: textblock
1767 #: ../src/guestfs.pod:884
1768 msgid ""
1769 "Certain libguestfs calls take a parameter that contains sensitive key "
1770 "material, passed in as a C string."
1771 msgstr ""
1772
1773 #. type: textblock
1774 #: ../src/guestfs.pod:887
1775 msgid ""
1776 "In the future we would hope to change the libguestfs implementation so that "
1777 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1778 "swap.  However this is I<not> done at the moment, because of the complexity "
1779 "of such an implementation."
1780 msgstr ""
1781
1782 #. type: textblock
1783 #: ../src/guestfs.pod:892
1784 msgid ""
1785 "Therefore you should be aware that any key parameter you pass to libguestfs "
1786 "might end up being written out to the swap partition.  If this is a concern, "
1787 "scrub the swap partition or don't use libguestfs on encrypted devices."
1788 msgstr ""
1789
1790 #. type: =head2
1791 #: ../src/guestfs.pod:897
1792 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1793 msgstr ""
1794
1795 #. type: textblock
1796 #: ../src/guestfs.pod:899
1797 msgid ""
1798 "All high-level libguestfs actions are synchronous.  If you want to use "
1799 "libguestfs asynchronously then you must create a thread."
1800 msgstr ""
1801
1802 #. type: textblock
1803 #: ../src/guestfs.pod:902
1804 msgid ""
1805 "Only use the handle from a single thread.  Either use the handle exclusively "
1806 "from one thread, or provide your own mutex so that two threads cannot issue "
1807 "calls on the same handle at the same time."
1808 msgstr ""
1809
1810 #. type: textblock
1811 #: ../src/guestfs.pod:906
1812 msgid ""
1813 "See the graphical program guestfs-browser for one possible architecture for "
1814 "multithreaded programs using libvirt and libguestfs."
1815 msgstr ""
1816
1817 #. type: =head2
1818 #: ../src/guestfs.pod:909
1819 msgid "PATH"
1820 msgstr ""
1821
1822 #. type: textblock
1823 #: ../src/guestfs.pod:911
1824 msgid ""
1825 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1826 "internal path."
1827 msgstr ""
1828
1829 #. type: textblock
1830 #: ../src/guestfs.pod:914
1831 msgid ""
1832 "By default it looks for these in the directory C<$libdir/guestfs> "
1833 "(eg. C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1834 msgstr ""
1835
1836 #. type: textblock
1837 #: ../src/guestfs.pod:917
1838 msgid ""
1839 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1840 "to change the directories that libguestfs will search in.  The value is a "
1841 "colon-separated list of paths.  The current directory is I<not> searched "
1842 "unless the path contains an empty element or C<.>.  For example "
1843 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1844 "then C</usr/lib/guestfs>."
1845 msgstr ""
1846
1847 #. type: =head2
1848 #: ../src/guestfs.pod:924
1849 msgid "QEMU WRAPPERS"
1850 msgstr ""
1851
1852 #. type: textblock
1853 #: ../src/guestfs.pod:926
1854 msgid ""
1855 "If you want to compile your own qemu, run qemu from a non-standard location, "
1856 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1857 "around qemu."
1858 msgstr ""
1859
1860 #. type: textblock
1861 #: ../src/guestfs.pod:930
1862 msgid ""
1863 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1864 "last command in the shell script (so that qemu replaces the shell and "
1865 "becomes the direct child of the libguestfs-using program).  If you don't do "
1866 "this, then the qemu process won't be cleaned up correctly."
1867 msgstr ""
1868
1869 #. type: textblock
1870 #: ../src/guestfs.pod:935
1871 msgid ""
1872 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1873 "source:"
1874 msgstr ""
1875
1876 #. type: verbatim
1877 #: ../src/guestfs.pod:938
1878 #, no-wrap
1879 msgid ""
1880 " #!/bin/sh -\n"
1881 " qemudir=/home/rjones/d/qemu\n"
1882 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios "
1883 "\"$@\"\n"
1884 "\n"
1885 msgstr ""
1886
1887 #. type: textblock
1888 #: ../src/guestfs.pod:942
1889 msgid ""
1890 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1891 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1892 "example:"
1893 msgstr ""
1894
1895 #. type: verbatim
1896 #: ../src/guestfs.pod:946
1897 #, no-wrap
1898 msgid ""
1899 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1900 "\n"
1901 msgstr ""
1902
1903 #. type: textblock
1904 #: ../src/guestfs.pod:948
1905 msgid ""
1906 "Note that libguestfs also calls qemu with the -help and -version options in "
1907 "order to determine features."
1908 msgstr ""
1909
1910 #. type: =head2
1911 #: ../src/guestfs.pod:951
1912 msgid "ATTACHING TO RUNNING DAEMONS"
1913 msgstr ""
1914
1915 #. type: textblock
1916 #: ../src/guestfs.pod:953
1917 msgid ""
1918 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
1919 "babies.  Use with caution."
1920 msgstr ""
1921
1922 #. type: textblock
1923 #: ../src/guestfs.pod:956
1924 msgid ""
1925 "I<Note (2):> This section explains how to attach to a running daemon from a "
1926 "low level perspective.  For most users, simply using virt tools such as "
1927 "L<guestfish(1)> with the I<--live> option will \"just work\"."
1928 msgstr ""
1929
1930 #. type: =head3
1931 #: ../src/guestfs.pod:960
1932 msgid "Using guestfs_set_attach_method"
1933 msgstr ""
1934
1935 #. type: textblock
1936 #: ../src/guestfs.pod:962
1937 msgid ""
1938 "By calling L</guestfs_set_attach_method> you can change how the library "
1939 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read "
1940 "L</ARCHITECTURE> for some background)."
1941 msgstr ""
1942
1943 #. type: textblock
1944 #: ../src/guestfs.pod:966
1945 msgid ""
1946 "The normal attach method is C<appliance>, where a small appliance is created "
1947 "containing the daemon, and then the library connects to this."
1948 msgstr ""
1949
1950 #. type: textblock
1951 #: ../src/guestfs.pod:969
1952 msgid ""
1953 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
1954 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
1955 "daemon over the Unix domain socket."
1956 msgstr ""
1957
1958 #. type: textblock
1959 #: ../src/guestfs.pod:973
1960 msgid ""
1961 "The normal use for this is to connect to a running virtual machine that "
1962 "contains a C<guestfsd> daemon, and send commands so you can read and write "
1963 "files inside the live virtual machine."
1964 msgstr ""
1965
1966 #. type: =head3
1967 #: ../src/guestfs.pod:977
1968 msgid "Using guestfs_add_domain with live flag"
1969 msgstr ""
1970
1971 #. type: textblock
1972 #: ../src/guestfs.pod:979
1973 msgid ""
1974 "L</guestfs_add_domain> provides some help for getting the correct attach "
1975 "method.  If you pass the C<live> option to this function, then (if the "
1976 "virtual machine is running) it will examine the libvirt XML looking for a "
1977 "virtio-serial channel to connect to:"
1978 msgstr ""
1979
1980 #. type: verbatim
1981 #: ../src/guestfs.pod:985
1982 #, no-wrap
1983 msgid ""
1984 " <domain>\n"
1985 "   ...\n"
1986 "   <devices>\n"
1987 "     ...\n"
1988 "     <channel type='unix'>\n"
1989 "       <source mode='bind' path='/path/to/socket'/>\n"
1990 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
1991 "     </channel>\n"
1992 "     ...\n"
1993 "   </devices>\n"
1994 " </domain>\n"
1995 "\n"
1996 msgstr ""
1997
1998 #. type: textblock
1999 #: ../src/guestfs.pod:997
2000 msgid ""
2001 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2002 "method to C<unix:/path/to/socket>."
2003 msgstr ""
2004
2005 #. type: textblock
2006 #: ../src/guestfs.pod:1000
2007 msgid ""
2008 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2009 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2010 "to attach to and modify live virtual machines."
2011 msgstr ""
2012
2013 #. type: textblock
2014 #: ../src/guestfs.pod:1004
2015 msgid ""
2016 "The virtual machine needs to have been set up beforehand so that it has the "
2017 "virtio-serial channel and so that guestfsd is running inside it."
2018 msgstr ""
2019
2020 #. type: =head2
2021 #: ../src/guestfs.pod:1008
2022 msgid "ABI GUARANTEE"
2023 msgstr ""
2024
2025 #. type: textblock
2026 #: ../src/guestfs.pod:1010
2027 msgid ""
2028 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2029 "actions as outlined in this section.  Although we will deprecate some "
2030 "actions, for example if they get replaced by newer calls, we will keep the "
2031 "old actions forever.  This allows you the developer to program in confidence "
2032 "against the libguestfs API."
2033 msgstr ""
2034
2035 #. type: =head2
2036 #: ../src/guestfs.pod:1016
2037 msgid "BLOCK DEVICE NAMING"
2038 msgstr ""
2039
2040 #. type: textblock
2041 #: ../src/guestfs.pod:1018
2042 msgid ""
2043 "In the kernel there is now quite a profusion of schemata for naming block "
2044 "devices (in this context, by I<block device> I mean a physical or virtual "
2045 "hard drive).  The original Linux IDE driver used names starting with "
2046 "C</dev/hd*>.  SCSI devices have historically used a different naming scheme, "
2047 "C</dev/sd*>.  When the Linux kernel I<libata> driver became a popular "
2048 "replacement for the old IDE driver (particularly for SATA devices) those "
2049 "devices also used the C</dev/sd*> scheme.  Additionally we now have virtual "
2050 "machines with paravirtualized drivers.  This has created several different "
2051 "naming systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for "
2052 "Xen PV disks."
2053 msgstr ""
2054
2055 #. type: textblock
2056 #: ../src/guestfs.pod:1030
2057 msgid ""
2058 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2059 "Linux kernel to access block devices.  We can run a variety of appliances "
2060 "based on a variety of Linux kernels."
2061 msgstr ""
2062
2063 #. type: textblock
2064 #: ../src/guestfs.pod:1034
2065 msgid ""
2066 "This causes a problem for libguestfs because many API calls use device or "
2067 "partition names.  Working scripts and the recipe (example) scripts that we "
2068 "make available over the internet could fail if the naming scheme changes."
2069 msgstr ""
2070
2071 #. type: textblock
2072 #: ../src/guestfs.pod:1039
2073 msgid ""
2074 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2075 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2076 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2077 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2078 msgstr ""
2079
2080 #. type: textblock
2081 #: ../src/guestfs.pod:1045
2082 msgid ""
2083 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2084 "L</guestfs_list_partitions> and similar calls return the true names of the "
2085 "devices and partitions as known to the appliance."
2086 msgstr ""
2087
2088 #. type: =head3
2089 #: ../src/guestfs.pod:1050
2090 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2091 msgstr ""
2092
2093 #. type: textblock
2094 #: ../src/guestfs.pod:1052
2095 msgid ""
2096 "Usually this translation is transparent.  However in some (very rare)  cases "
2097 "you may need to know the exact algorithm.  Such cases include where you use "
2098 "L</guestfs_config> to add a mixture of virtio and IDE devices to the "
2099 "qemu-based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> "
2100 "devices."
2101 msgstr ""
2102
2103 #. type: textblock
2104 #: ../src/guestfs.pod:1058
2105 msgid ""
2106 "The algorithm is applied only to I<parameters> which are known to be either "
2107 "device or partition names.  Return values from functions such as "
2108 "L</guestfs_list_devices> are never changed."
2109 msgstr ""
2110
2111 #. type: textblock
2112 #: ../src/guestfs.pod:1066
2113 msgid "Is the string a parameter which is a device or partition name?"
2114 msgstr ""
2115
2116 #. type: textblock
2117 #: ../src/guestfs.pod:1070
2118 msgid "Does the string begin with C</dev/sd>?"
2119 msgstr ""
2120
2121 #. type: textblock
2122 #: ../src/guestfs.pod:1074
2123 msgid ""
2124 "Does the named device exist? If so, we use that device.  However if I<not> "
2125 "then we continue with this algorithm."
2126 msgstr ""
2127
2128 #. type: textblock
2129 #: ../src/guestfs.pod:1079
2130 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2131 msgstr ""
2132
2133 #. type: textblock
2134 #: ../src/guestfs.pod:1081
2135 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2136 msgstr ""
2137
2138 #. type: textblock
2139 #: ../src/guestfs.pod:1083
2140 msgid "If that named device exists, use it.  If not, continue."
2141 msgstr ""
2142
2143 #. type: textblock
2144 #: ../src/guestfs.pod:1087
2145 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2146 msgstr ""
2147
2148 #. type: textblock
2149 #: ../src/guestfs.pod:1089
2150 msgid "If that named device exists, use it.  If not, return an error."
2151 msgstr ""
2152
2153 #. type: =head3
2154 #: ../src/guestfs.pod:1093
2155 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2156 msgstr ""
2157
2158 #. type: textblock
2159 #: ../src/guestfs.pod:1095
2160 msgid ""
2161 "Although the standard naming scheme and automatic translation is useful for "
2162 "simple programs and guestfish scripts, for larger programs it is best not to "
2163 "rely on this mechanism."
2164 msgstr ""
2165
2166 #. type: textblock
2167 #: ../src/guestfs.pod:1099
2168 msgid ""
2169 "Where possible for maximum future portability programs using libguestfs "
2170 "should use these future-proof techniques:"
2171 msgstr ""
2172
2173 #. type: textblock
2174 #: ../src/guestfs.pod:1106
2175 msgid ""
2176 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2177 "device names, and then use those names directly."
2178 msgstr ""
2179
2180 #. type: textblock
2181 #: ../src/guestfs.pod:1109
2182 msgid "Since those device names exist by definition, they will never be translated."
2183 msgstr ""
2184
2185 #. type: textblock
2186 #: ../src/guestfs.pod:1114
2187 msgid ""
2188 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2189 "filesystem labels."
2190 msgstr ""
2191
2192 #. type: =head1
2193 #: ../src/guestfs.pod:1119
2194 msgid "SECURITY"
2195 msgstr ""
2196
2197 #. type: textblock
2198 #: ../src/guestfs.pod:1121
2199 msgid ""
2200 "This section discusses security implications of using libguestfs, "
2201 "particularly with untrusted or malicious guests or disk images."
2202 msgstr ""
2203
2204 #. type: =head2
2205 #: ../src/guestfs.pod:1124
2206 msgid "GENERAL SECURITY CONSIDERATIONS"
2207 msgstr ""
2208
2209 #. type: textblock
2210 #: ../src/guestfs.pod:1126
2211 msgid ""
2212 "Be careful with any files or data that you download from a guest (by "
2213 "\"download\" we mean not just the L</guestfs_download> command but any "
2214 "command that reads files, filenames, directories or anything else from a "
2215 "disk image).  An attacker could manipulate the data to fool your program "
2216 "into doing the wrong thing.  Consider cases such as:"
2217 msgstr ""
2218
2219 #. type: textblock
2220 #: ../src/guestfs.pod:1136
2221 msgid "the data (file etc) not being present"
2222 msgstr ""
2223
2224 #. type: textblock
2225 #: ../src/guestfs.pod:1140
2226 msgid "being present but empty"
2227 msgstr ""
2228
2229 #. type: textblock
2230 #: ../src/guestfs.pod:1144
2231 msgid "being much larger than normal"
2232 msgstr ""
2233
2234 #. type: textblock
2235 #: ../src/guestfs.pod:1148
2236 msgid "containing arbitrary 8 bit data"
2237 msgstr ""
2238
2239 #. type: textblock
2240 #: ../src/guestfs.pod:1152
2241 msgid "being in an unexpected character encoding"
2242 msgstr ""
2243
2244 #. type: textblock
2245 #: ../src/guestfs.pod:1156
2246 msgid "containing homoglyphs."
2247 msgstr ""
2248
2249 #. type: =head2
2250 #: ../src/guestfs.pod:1160
2251 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2252 msgstr ""
2253
2254 #. type: textblock
2255 #: ../src/guestfs.pod:1162
2256 msgid ""
2257 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2258 "(VFS) module can sometimes be escalated into exploits by deliberately "
2259 "creating a malicious, malformed filesystem.  These exploits are very severe "
2260 "for two reasons.  Firstly there are very many filesystem drivers in the "
2261 "kernel, and many of them are infrequently used and not much developer "
2262 "attention has been paid to the code.  Linux userspace helps potential "
2263 "crackers by detecting the filesystem type and automatically choosing the "
2264 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2265 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2266 "exploit (worse in some ways), giving immediate and total access to the "
2267 "system right down to the hardware level."
2268 msgstr ""
2269
2270 #. type: textblock
2271 #: ../src/guestfs.pod:1175
2272 msgid ""
2273 "That explains why you should never mount a filesystem from an untrusted "
2274 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2275 "inside a qemu virtual machine, usually running as a non-root user.  The "
2276 "attacker would need to write a filesystem which first exploited the kernel, "
2277 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2278 "the libguestfs protocol, and finally to be as serious as the host kernel "
2279 "exploit it would need to escalate its privileges to root.  This multi-step "
2280 "escalation, performed by a static piece of data, is thought to be extremely "
2281 "hard to do, although we never say 'never' about security issues."
2282 msgstr ""
2283
2284 #. type: textblock
2285 #: ../src/guestfs.pod:1186
2286 msgid ""
2287 "In any case callers can reduce the attack surface by forcing the filesystem "
2288 "type when mounting (use L</guestfs_mount_vfs>)."
2289 msgstr ""
2290
2291 #. type: =head2
2292 #: ../src/guestfs.pod:1189
2293 msgid "PROTOCOL SECURITY"
2294 msgstr ""
2295
2296 #. type: textblock
2297 #: ../src/guestfs.pod:1191
2298 msgid ""
2299 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2300 "defined upper message size.  However a program that uses libguestfs must "
2301 "also take care - for example you can write a program that downloads a binary "
2302 "from a disk image and executes it locally, and no amount of protocol "
2303 "security will save you from the consequences."
2304 msgstr ""
2305
2306 #. type: =head2
2307 #: ../src/guestfs.pod:1197
2308 msgid "INSPECTION SECURITY"
2309 msgstr ""
2310
2311 #. type: textblock
2312 #: ../src/guestfs.pod:1199
2313 msgid ""
2314 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2315 "directly from the guest, and these could contain any 8 bit data.  Callers "
2316 "should be careful to escape these before printing them to a structured file "
2317 "(for example, use HTML escaping if creating a web page)."
2318 msgstr ""
2319
2320 #. type: textblock
2321 #: ../src/guestfs.pod:1205
2322 msgid ""
2323 "Guest configuration may be altered in unusual ways by the administrator of "
2324 "the virtual machine, and may not reflect reality (particularly for untrusted "
2325 "or actively malicious guests).  For example we parse the hostname from "
2326 "configuration files like C</etc/sysconfig/network> that we find in the "
2327 "guest, but the guest administrator can easily manipulate these files to "
2328 "provide the wrong hostname."
2329 msgstr ""
2330
2331 #. type: textblock
2332 #: ../src/guestfs.pod:1213
2333 msgid ""
2334 "The inspection API parses guest configuration using two external libraries: "
2335 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2336 "designed to be robust in the face of malicious data, although denial of "
2337 "service attacks are still possible, for example with oversized configuration "
2338 "files."
2339 msgstr ""
2340
2341 #. type: =head2
2342 #: ../src/guestfs.pod:1219
2343 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2344 msgstr ""
2345
2346 #. type: textblock
2347 #: ../src/guestfs.pod:1221
2348 msgid ""
2349 "Be very cautious about running commands from the guest.  By running a "
2350 "command in the guest, you are giving CPU time to a binary that you do not "
2351 "control, under the same user account as the library, albeit wrapped in qemu "
2352 "virtualization.  More information and alternatives can be found in the "
2353 "section L</RUNNING COMMANDS>."
2354 msgstr ""
2355
2356 #. type: =head2
2357 #: ../src/guestfs.pod:1227
2358 msgid "CVE-2010-3851"
2359 msgstr ""
2360
2361 #. type: textblock
2362 #: ../src/guestfs.pod:1229
2363 msgid "https://bugzilla.redhat.com/642934"
2364 msgstr ""
2365
2366 #. type: textblock
2367 #: ../src/guestfs.pod:1231
2368 msgid ""
2369 "This security bug concerns the automatic disk format detection that qemu "
2370 "does on disk images."
2371 msgstr ""
2372
2373 #. type: textblock
2374 #: ../src/guestfs.pod:1234
2375 msgid ""
2376 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2377 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2378 "for one of the known headers, and if none is found then assuming the disk "
2379 "image must be raw."
2380 msgstr ""
2381
2382 #. type: textblock
2383 #: ../src/guestfs.pod:1239
2384 msgid ""
2385 "This allows a guest which has been given a raw disk image to write some "
2386 "other header.  At next boot (or when the disk image is accessed by "
2387 "libguestfs) qemu would do autodetection and think the disk image format was, "
2388 "say, qcow2 based on the header written by the guest."
2389 msgstr ""
2390
2391 #. type: textblock
2392 #: ../src/guestfs.pod:1244
2393 msgid ""
2394 "This in itself would not be a problem, but qcow2 offers many features, one "
2395 "of which is to allow a disk image to refer to another image (called the "
2396 "\"backing disk\").  It does this by placing the path to the backing disk "
2397 "into the qcow2 header.  This path is not validated and could point to any "
2398 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2399 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2400 "control of the attacker."
2401 msgstr ""
2402
2403 #. type: textblock
2404 #: ../src/guestfs.pod:1252
2405 msgid "In libguestfs this is rather hard to exploit except under two circumstances:"
2406 msgstr ""
2407
2408 #. type: textblock
2409 #: ../src/guestfs.pod:1259
2410 msgid "You have enabled the network or have opened the disk in write mode."
2411 msgstr ""
2412
2413 #. type: textblock
2414 #: ../src/guestfs.pod:1263
2415 msgid ""
2416 "You are also running untrusted code from the guest (see L</RUNNING "
2417 "COMMANDS>)."
2418 msgstr ""
2419
2420 #. type: textblock
2421 #: ../src/guestfs.pod:1268
2422 msgid ""
2423 "The way to avoid this is to specify the expected disk format when adding "
2424 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2425 "should always do this if the disk is raw format, and it's a good idea for "
2426 "other cases too."
2427 msgstr ""
2428
2429 #. type: textblock
2430 #: ../src/guestfs.pod:1273
2431 msgid ""
2432 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2433 "format is fetched from libvirt and passed through."
2434 msgstr ""
2435
2436 #. type: textblock
2437 #: ../src/guestfs.pod:1276
2438 msgid ""
2439 "For libguestfs tools, use the I<--format> command line parameter as "
2440 "appropriate."
2441 msgstr ""
2442
2443 #. type: =head1
2444 #: ../src/guestfs.pod:1279
2445 msgid "CONNECTION MANAGEMENT"
2446 msgstr ""
2447
2448 #. type: =head2
2449 #: ../src/guestfs.pod:1281
2450 msgid "guestfs_h *"
2451 msgstr ""
2452
2453 #. type: textblock
2454 #: ../src/guestfs.pod:1283
2455 msgid ""
2456 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2457 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2458 "handle and release all resources used."
2459 msgstr ""
2460
2461 #. type: textblock
2462 #: ../src/guestfs.pod:1287
2463 msgid ""
2464 "For information on using multiple handles and threads, see the section "
2465 "L</MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2466 msgstr ""
2467
2468 #. type: =head2
2469 #: ../src/guestfs.pod:1290
2470 msgid "guestfs_create"
2471 msgstr ""
2472
2473 #. type: verbatim
2474 #: ../src/guestfs.pod:1292
2475 #, no-wrap
2476 msgid ""
2477 " guestfs_h *guestfs_create (void);\n"
2478 "\n"
2479 msgstr ""
2480
2481 #. type: textblock
2482 #: ../src/guestfs.pod:1294
2483 msgid "Create a connection handle."
2484 msgstr ""
2485
2486 #. type: textblock
2487 #: ../src/guestfs.pod:1296
2488 msgid ""
2489 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2490 "NULL."
2491 msgstr ""
2492
2493 #. type: textblock
2494 #: ../src/guestfs.pod:1299
2495 msgid ""
2496 "You have to \"configure\" the handle after creating it.  This includes "
2497 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2498 "handle at least once."
2499 msgstr ""
2500
2501 #. type: textblock
2502 #: ../src/guestfs.pod:1303
2503 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2504 msgstr ""
2505
2506 #. type: textblock
2507 #: ../src/guestfs.pod:1305
2508 msgid ""
2509 "You may also want to configure error handling for the handle.  See the "
2510 "L</ERROR HANDLING> section below."
2511 msgstr ""
2512
2513 #. type: =head2
2514 #: ../src/guestfs.pod:1308
2515 msgid "guestfs_close"
2516 msgstr ""
2517
2518 #. type: verbatim
2519 #: ../src/guestfs.pod:1310
2520 #, no-wrap
2521 msgid ""
2522 " void guestfs_close (guestfs_h *g);\n"
2523 "\n"
2524 msgstr ""
2525
2526 #. type: textblock
2527 #: ../src/guestfs.pod:1312
2528 msgid "This closes the connection handle and frees up all resources used."
2529 msgstr ""
2530
2531 #. type: textblock
2532 #: ../src/guestfs.pod:1314
2533 msgid ""
2534 "If autosync was set on the handle and the handle was launched, then this "
2535 "implicitly calls various functions to unmount filesystems and sync the "
2536 "disk.  See L</guestfs_set_autosync> for more details."
2537 msgstr ""
2538
2539 #. type: textblock
2540 #: ../src/guestfs.pod:1318
2541 msgid "If a close callback was set on the handle, then it is called."
2542 msgstr ""
2543
2544 #. type: =head1
2545 #: ../src/guestfs.pod:1320
2546 msgid "ERROR HANDLING"
2547 msgstr ""
2548
2549 #. type: textblock
2550 #: ../src/guestfs.pod:1322
2551 msgid ""
2552 "API functions can return errors.  For example, almost all functions that "
2553 "return C<int> will return C<-1> to indicate an error."
2554 msgstr ""
2555
2556 #. type: textblock
2557 #: ../src/guestfs.pod:1325
2558 msgid ""
2559 "Additional information is available for errors: an error message string and "
2560 "optionally an error number (errno) if the thing that failed was a system "
2561 "call."
2562 msgstr ""
2563
2564 #. type: textblock
2565 #: ../src/guestfs.pod:1329
2566 msgid ""
2567 "You can get at the additional information about the last error on the handle "
2568 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2569 "up an error handler with L</guestfs_set_error_handler>."
2570 msgstr ""
2571
2572 #. type: textblock
2573 #: ../src/guestfs.pod:1334
2574 msgid ""
2575 "When the handle is created, a default error handler is installed which "
2576 "prints the error message string to C<stderr>.  For small short-running "
2577 "command line programs it is sufficient to do:"
2578 msgstr ""
2579
2580 #. type: verbatim
2581 #: ../src/guestfs.pod:1338
2582 #, no-wrap
2583 msgid ""
2584 " if (guestfs_launch (g) == -1)\n"
2585 "   exit (EXIT_FAILURE);\n"
2586 "\n"
2587 msgstr ""
2588
2589 #. type: textblock
2590 #: ../src/guestfs.pod:1341
2591 msgid ""
2592 "since the default error handler will ensure that an error message has been "
2593 "printed to C<stderr> before the program exits."
2594 msgstr ""
2595
2596 #. type: textblock
2597 #: ../src/guestfs.pod:1344
2598 msgid ""
2599 "For other programs the caller will almost certainly want to install an "
2600 "alternate error handler or do error handling in-line like this:"
2601 msgstr ""
2602
2603 #. type: verbatim
2604 #: ../src/guestfs.pod:1347
2605 #, no-wrap
2606 msgid ""
2607 " g = guestfs_create ();\n"
2608 " \n"
2609 msgstr ""
2610
2611 #. type: verbatim
2612 #: ../src/guestfs.pod:1349
2613 #, no-wrap
2614 msgid ""
2615 " /* This disables the default behaviour of printing errors\n"
2616 "    on stderr. */\n"
2617 " guestfs_set_error_handler (g, NULL, NULL);\n"
2618 " \n"
2619 msgstr ""
2620
2621 #. type: verbatim
2622 #: ../src/guestfs.pod:1353
2623 #, no-wrap
2624 msgid ""
2625 " if (guestfs_launch (g) == -1) {\n"
2626 "   /* Examine the error message and print it etc. */\n"
2627 "   char *msg = guestfs_last_error (g);\n"
2628 "   int errnum = guestfs_last_errno (g);\n"
2629 "   fprintf (stderr, \"%s\\n\", msg);\n"
2630 "   /* ... */\n"
2631 "  }\n"
2632 "\n"
2633 msgstr ""
2634
2635 #. type: textblock
2636 #: ../src/guestfs.pod:1361
2637 msgid ""
2638 "Out of memory errors are handled differently.  The default action is to call "
2639 "L<abort(3)>.  If this is undesirable, then you can set a handler using "
2640 "L</guestfs_set_out_of_memory_handler>."
2641 msgstr ""
2642
2643 #. type: textblock
2644 #: ../src/guestfs.pod:1365
2645 msgid ""
2646 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2647 "because there is no handle if this happens there is no way to get additional "
2648 "error information.  However L</guestfs_create> is supposed to be a "
2649 "lightweight operation which can only fail because of insufficient memory (it "
2650 "returns NULL in this case)."
2651 msgstr ""
2652
2653 #. type: =head2
2654 #: ../src/guestfs.pod:1371
2655 msgid "guestfs_last_error"
2656 msgstr ""
2657
2658 #. type: verbatim
2659 #: ../src/guestfs.pod:1373
2660 #, no-wrap
2661 msgid ""
2662 " const char *guestfs_last_error (guestfs_h *g);\n"
2663 "\n"
2664 msgstr ""
2665
2666 #. type: textblock
2667 #: ../src/guestfs.pod:1375
2668 msgid ""
2669 "This returns the last error message that happened on C<g>.  If there has not "
2670 "been an error since the handle was created, then this returns C<NULL>."
2671 msgstr ""
2672
2673 #. type: textblock
2674 #: ../src/guestfs.pod:1379
2675 msgid ""
2676 "The lifetime of the returned string is until the next error occurs, or "
2677 "L</guestfs_close> is called."
2678 msgstr ""
2679
2680 #. type: =head2
2681 #: ../src/guestfs.pod:1382
2682 msgid "guestfs_last_errno"
2683 msgstr ""
2684
2685 #. type: verbatim
2686 #: ../src/guestfs.pod:1384
2687 #, no-wrap
2688 msgid ""
2689 " int guestfs_last_errno (guestfs_h *g);\n"
2690 "\n"
2691 msgstr ""
2692
2693 #. type: textblock
2694 #: ../src/guestfs.pod:1386
2695 msgid "This returns the last error number (errno) that happened on C<g>."
2696 msgstr ""
2697
2698 #. type: textblock
2699 #: ../src/guestfs.pod:1388
2700 msgid "If successful, an errno integer not equal to zero is returned."
2701 msgstr ""
2702
2703 #. type: textblock
2704 #: ../src/guestfs.pod:1390
2705 msgid "If no error, this returns 0.  This call can return 0 in three situations:"
2706 msgstr ""
2707
2708 #. type: textblock
2709 #: ../src/guestfs.pod:1397
2710 msgid "There has not been any error on the handle."
2711 msgstr ""
2712
2713 #. type: textblock
2714 #: ../src/guestfs.pod:1401
2715 msgid ""
2716 "There has been an error but the errno was meaningless.  This corresponds to "
2717 "the case where the error did not come from a failed system call, but for "
2718 "some other reason."
2719 msgstr ""
2720
2721 #. type: textblock
2722 #: ../src/guestfs.pod:1407
2723 msgid ""
2724 "There was an error from a failed system call, but for some reason the errno "
2725 "was not captured and returned.  This usually indicates a bug in libguestfs."
2726 msgstr ""
2727
2728 #. type: textblock
2729 #: ../src/guestfs.pod:1413
2730 msgid ""
2731 "Libguestfs tries to convert the errno from inside the applicance into a "
2732 "corresponding errno for the caller (not entirely trivial: the appliance "
2733 "might be running a completely different operating system from the library "
2734 "and error numbers are not standardized across Un*xen).  If this could not be "
2735 "done, then the error is translated to C<EINVAL>.  In practice this should "
2736 "only happen in very rare circumstances."
2737 msgstr ""
2738
2739 #. type: =head2
2740 #: ../src/guestfs.pod:1421
2741 msgid "guestfs_set_error_handler"
2742 msgstr ""
2743
2744 #. type: verbatim
2745 #: ../src/guestfs.pod:1423
2746 #, no-wrap
2747 msgid ""
2748 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2749 "                                           void *opaque,\n"
2750 "                                           const char *msg);\n"
2751 " void guestfs_set_error_handler (guestfs_h *g,\n"
2752 "                                 guestfs_error_handler_cb cb,\n"
2753 "                                 void *opaque);\n"
2754 "\n"
2755 msgstr ""
2756
2757 #. type: textblock
2758 #: ../src/guestfs.pod:1430
2759 msgid ""
2760 "The callback C<cb> will be called if there is an error.  The parameters "
2761 "passed to the callback are an opaque data pointer and the error message "
2762 "string."
2763 msgstr ""
2764
2765 #. type: textblock
2766 #: ../src/guestfs.pod:1434
2767 msgid ""
2768 "C<errno> is not passed to the callback.  To get that the callback must call "
2769 "L</guestfs_last_errno>."
2770 msgstr ""
2771
2772 #. type: textblock
2773 #: ../src/guestfs.pod:1437
2774 msgid ""
2775 "Note that the message string C<msg> is freed as soon as the callback "
2776 "function returns, so if you want to stash it somewhere you must make your "
2777 "own copy."
2778 msgstr ""
2779
2780 #. type: textblock
2781 #: ../src/guestfs.pod:1441
2782 msgid "The default handler prints messages on C<stderr>."
2783 msgstr ""
2784
2785 #. type: textblock
2786 #: ../src/guestfs.pod:1443
2787 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2788 msgstr ""
2789
2790 #. type: =head2
2791 #: ../src/guestfs.pod:1445
2792 msgid "guestfs_get_error_handler"
2793 msgstr ""
2794
2795 #. type: verbatim
2796 #: ../src/guestfs.pod:1447
2797 #, no-wrap
2798 msgid ""
2799 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2800 "                                                     void **opaque_rtn);\n"
2801 "\n"
2802 msgstr ""
2803
2804 #. type: textblock
2805 #: ../src/guestfs.pod:1450
2806 msgid "Returns the current error handler callback."
2807 msgstr ""
2808
2809 #. type: =head2
2810 #: ../src/guestfs.pod:1452
2811 msgid "guestfs_set_out_of_memory_handler"
2812 msgstr ""
2813
2814 #. type: verbatim
2815 #: ../src/guestfs.pod:1454
2816 #, no-wrap
2817 msgid ""
2818 " typedef void (*guestfs_abort_cb) (void);\n"
2819 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2820 "                                        guestfs_abort_cb);\n"
2821 "\n"
2822 msgstr ""
2823
2824 #. type: textblock
2825 #: ../src/guestfs.pod:1458
2826 msgid ""
2827 "The callback C<cb> will be called if there is an out of memory situation.  "
2828 "I<Note this callback must not return>."
2829 msgstr ""
2830
2831 #. type: textblock
2832 #: ../src/guestfs.pod:1461
2833 msgid "The default is to call L<abort(3)>."
2834 msgstr ""
2835
2836 #. type: textblock
2837 #: ../src/guestfs.pod:1463
2838 msgid "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2839 msgstr ""
2840
2841 #. type: =head2
2842 #: ../src/guestfs.pod:1466
2843 msgid "guestfs_get_out_of_memory_handler"
2844 msgstr ""
2845
2846 #. type: verbatim
2847 #: ../src/guestfs.pod:1468
2848 #, no-wrap
2849 msgid ""
2850 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2851 "\n"
2852 msgstr ""
2853
2854 #. type: textblock
2855 #: ../src/guestfs.pod:1470
2856 msgid "This returns the current out of memory handler."
2857 msgstr ""
2858
2859 #. type: =head1
2860 #: ../src/guestfs.pod:1472
2861 msgid "API CALLS"
2862 msgstr ""
2863
2864 #. type: textblock
2865 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1010
2866 msgid "@ACTIONS@"
2867 msgstr ""
2868
2869 #. type: =head1
2870 #: ../src/guestfs.pod:1476
2871 msgid "STRUCTURES"
2872 msgstr ""
2873
2874 #. type: textblock
2875 #: ../src/guestfs.pod:1478
2876 msgid "@STRUCTS@"
2877 msgstr ""
2878
2879 #. type: =head1
2880 #: ../src/guestfs.pod:1480
2881 msgid "AVAILABILITY"
2882 msgstr ""
2883
2884 #. type: =head2
2885 #: ../src/guestfs.pod:1482
2886 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2887 msgstr ""
2888
2889 #. type: textblock
2890 #: ../src/guestfs.pod:1484
2891 msgid ""
2892 "Using L</guestfs_available> you can test availability of the following "
2893 "groups of functions.  This test queries the appliance to see if the "
2894 "appliance you are currently using supports the functionality."
2895 msgstr ""
2896
2897 #. type: textblock
2898 #: ../src/guestfs.pod:1489
2899 msgid "@AVAILABILITY@"
2900 msgstr ""
2901
2902 #. type: =head2
2903 #: ../src/guestfs.pod:1491
2904 msgid "GUESTFISH supported COMMAND"
2905 msgstr ""
2906
2907 #. type: textblock
2908 #: ../src/guestfs.pod:1493
2909 msgid ""
2910 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
2911 "prints out the available groups and whether they are supported by this build "
2912 "of libguestfs.  Note however that you have to do C<run> first."
2913 msgstr ""
2914
2915 #. type: =head2
2916 #: ../src/guestfs.pod:1498
2917 msgid "SINGLE CALLS AT COMPILE TIME"
2918 msgstr ""
2919
2920 #. type: textblock
2921 #: ../src/guestfs.pod:1500
2922 msgid ""
2923 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
2924 "function, such as:"
2925 msgstr ""
2926
2927 #. type: verbatim
2928 #: ../src/guestfs.pod:1503
2929 #, no-wrap
2930 msgid ""
2931 " #define LIBGUESTFS_HAVE_DD 1\n"
2932 "\n"
2933 msgstr ""
2934
2935 #. type: textblock
2936 #: ../src/guestfs.pod:1505
2937 msgid "if L</guestfs_dd> is available."
2938 msgstr ""
2939
2940 #. type: textblock
2941 #: ../src/guestfs.pod:1507
2942 msgid ""
2943 "Before version 1.5.8, if you needed to test whether a single libguestfs "
2944 "function is available at compile time, we recommended using build tools such "
2945 "as autoconf or cmake.  For example in autotools you could use:"
2946 msgstr ""
2947
2948 #. type: verbatim
2949 #: ../src/guestfs.pod:1512
2950 #, no-wrap
2951 msgid ""
2952 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
2953 " AC_CHECK_FUNCS([guestfs_dd])\n"
2954 "\n"
2955 msgstr ""
2956
2957 #. type: textblock
2958 #: ../src/guestfs.pod:1515
2959 msgid ""
2960 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
2961 "in your program."
2962 msgstr ""
2963
2964 #. type: =head2
2965 #: ../src/guestfs.pod:1518
2966 msgid "SINGLE CALLS AT RUN TIME"
2967 msgstr ""
2968
2969 #. type: textblock
2970 #: ../src/guestfs.pod:1520
2971 msgid ""
2972 "Testing at compile time doesn't guarantee that a function really exists in "
2973 "the library.  The reason is that you might be dynamically linked against a "
2974 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
2975 "This situation unfortunately results in a segmentation fault, which is a "
2976 "shortcoming of the C dynamic linking system itself."
2977 msgstr ""
2978
2979 #. type: textblock
2980 #: ../src/guestfs.pod:1527
2981 msgid ""
2982 "You can use L<dlopen(3)> to test if a function is available at run time, as "
2983 "in this example program (note that you still need the compile time check as "
2984 "well):"
2985 msgstr ""
2986
2987 #. type: verbatim
2988 #: ../src/guestfs.pod:1531
2989 #, no-wrap
2990 msgid ""
2991 " #include <stdio.h>\n"
2992 " #include <stdlib.h>\n"
2993 " #include <unistd.h>\n"
2994 " #include <dlfcn.h>\n"
2995 " #include <guestfs.h>\n"
2996 " \n"
2997 msgstr ""
2998
2999 #. type: verbatim
3000 #: ../src/guestfs.pod:1537
3001 #, no-wrap
3002 msgid ""
3003 " main ()\n"
3004 " {\n"
3005 " #ifdef LIBGUESTFS_HAVE_DD\n"
3006 "   void *dl;\n"
3007 "   int has_function;\n"
3008 " \n"
3009 msgstr ""
3010
3011 #. type: verbatim
3012 #: ../src/guestfs.pod:1543
3013 #, no-wrap
3014 msgid ""
3015 "   /* Test if the function guestfs_dd is really available. */\n"
3016 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3017 "   if (!dl) {\n"
3018 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3019 "     exit (EXIT_FAILURE);\n"
3020 "   }\n"
3021 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3022 "   dlclose (dl);\n"
3023 " \n"
3024 msgstr ""
3025
3026 #. type: verbatim
3027 #: ../src/guestfs.pod:1552
3028 #, no-wrap
3029 msgid ""
3030 "   if (!has_function)\n"
3031 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3032 "   else {\n"
3033 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3034 "     /* Now it's safe to call\n"
3035 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3036 "     */\n"
3037 "   }\n"
3038 " #else\n"
3039 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3040 " #endif\n"
3041 "  }\n"
3042 "\n"
3043 msgstr ""
3044
3045 #. type: textblock
3046 #: ../src/guestfs.pod:1565
3047 msgid ""
3048 "You may think the above is an awful lot of hassle, and it is.  There are "
3049 "other ways outside of the C linking system to ensure that this kind of "
3050 "incompatibility never arises, such as using package versioning:"
3051 msgstr ""
3052
3053 #. type: verbatim
3054 #: ../src/guestfs.pod:1570
3055 #, no-wrap
3056 msgid ""
3057 " Requires: libguestfs >= 1.0.80\n"
3058 "\n"
3059 msgstr ""
3060
3061 #. type: =head1
3062 #: ../src/guestfs.pod:1572
3063 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3064 msgstr ""
3065
3066 #. type: textblock
3067 #: ../src/guestfs.pod:1574
3068 msgid ""
3069 "A recent feature of the API is the introduction of calls which take optional "
3070 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3071 "takes variable arguments (ie. C<...>), as in this example:"
3072 msgstr ""
3073
3074 #. type: verbatim
3075 #: ../src/guestfs.pod:1579
3076 #, no-wrap
3077 msgid ""
3078 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3079 "\n"
3080 msgstr ""
3081
3082 #. type: textblock
3083 #: ../src/guestfs.pod:1581
3084 msgid ""
3085 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3086 "call with no optional arguments specified:"
3087 msgstr ""
3088
3089 #. type: verbatim
3090 #: ../src/guestfs.pod:1584
3091 #, no-wrap
3092 msgid ""
3093 " guestfs_add_drive_opts (g, filename, -1);\n"
3094 "\n"
3095 msgstr ""
3096
3097 #. type: textblock
3098 #: ../src/guestfs.pod:1586
3099 msgid "With a single optional argument:"
3100 msgstr ""
3101
3102 #. type: verbatim
3103 #: ../src/guestfs.pod:1588
3104 #, no-wrap
3105 msgid ""
3106 " guestfs_add_drive_opts (g, filename,\n"
3107 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3108 "                         -1);\n"
3109 "\n"
3110 msgstr ""
3111
3112 #. type: textblock
3113 #: ../src/guestfs.pod:1592
3114 msgid "With two:"
3115 msgstr ""
3116
3117 #. type: verbatim
3118 #: ../src/guestfs.pod:1594
3119 #, no-wrap
3120 msgid ""
3121 " guestfs_add_drive_opts (g, filename,\n"
3122 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3123 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3124 "                         -1);\n"
3125 "\n"
3126 msgstr ""
3127
3128 #. type: textblock
3129 #: ../src/guestfs.pod:1599
3130 msgid ""
3131 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3132 "happen!"
3133 msgstr ""
3134
3135 #. type: =head2
3136 #: ../src/guestfs.pod:1602
3137 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3138 msgstr ""
3139
3140 #. type: textblock
3141 #: ../src/guestfs.pod:1604
3142 msgid ""
3143 "The second variant has the same name with the suffix C<_va>, which works the "
3144 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3145 "example function, this is declared:"
3146 msgstr ""
3147
3148 #. type: verbatim
3149 #: ../src/guestfs.pod:1608
3150 #, no-wrap
3151 msgid ""
3152 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3153 "                                va_list args);\n"
3154 "\n"
3155 msgstr ""
3156
3157 #. type: =head2
3158 #: ../src/guestfs.pod:1611
3159 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3160 msgstr ""
3161
3162 #. type: textblock
3163 #: ../src/guestfs.pod:1613
3164 msgid ""
3165 "The third variant is useful where you need to construct these calls.  You "
3166 "pass in a structure where you fill in the optional fields.  The structure "
3167 "has a bitmask as the first element which you must set to indicate which "
3168 "fields you have filled in.  For our example function the structure and call "
3169 "are declared:"
3170 msgstr ""
3171
3172 #. type: verbatim
3173 #: ../src/guestfs.pod:1619
3174 #, no-wrap
3175 msgid ""
3176 " struct guestfs_add_drive_opts_argv {\n"
3177 "   uint64_t bitmask;\n"
3178 "   int readonly;\n"
3179 "   const char *format;\n"
3180 "   /* ... */\n"
3181 " };\n"
3182 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3183 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3184 "\n"
3185 msgstr ""
3186
3187 #. type: textblock
3188 #: ../src/guestfs.pod:1628
3189 msgid "You could call it like this:"
3190 msgstr ""
3191
3192 #. type: verbatim
3193 #: ../src/guestfs.pod:1630
3194 #, no-wrap
3195 msgid ""
3196 " struct guestfs_add_drive_opts_argv optargs = {\n"
3197 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3198 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3199 "   .readonly = 1,\n"
3200 "   .format = \"qcow2\"\n"
3201 " };\n"
3202 " \n"
3203 msgstr ""
3204
3205 #. type: verbatim
3206 #: ../src/guestfs.pod:1637
3207 #, no-wrap
3208 msgid ""
3209 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3210 "\n"
3211 msgstr ""
3212
3213 #. type: textblock
3214 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11 ../src/guestfs-actions.pod:1858 ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1262 ../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:5847 ../fish/guestfish-actions.pod:3932
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<contrib>"
5070 msgstr ""
5071
5072 #. type: textblock
5073 #: ../src/guestfs.pod:2663
5074 msgid "Outside contributions, experimental parts."
5075 msgstr ""
5076
5077 #. type: =item
5078 #: ../src/guestfs.pod:2665
5079 msgid "C<daemon>"
5080 msgstr ""
5081
5082 #. type: textblock
5083 #: ../src/guestfs.pod:2667
5084 msgid ""
5085 "The daemon that runs inside the libguestfs appliance and carries out "
5086 "actions."
5087 msgstr ""
5088
5089 #. type: =item
5090 #: ../src/guestfs.pod:2670
5091 msgid "C<df>"
5092 msgstr ""
5093
5094 #. type: textblock
5095 #: ../src/guestfs.pod:2672
5096 msgid "L<virt-df(1)> command and documentation."
5097 msgstr ""
5098
5099 #. type: =item
5100 #: ../src/guestfs.pod:2674
5101 msgid "C<edit>"
5102 msgstr ""
5103
5104 #. type: textblock
5105 #: ../src/guestfs.pod:2676
5106 msgid "L<virt-edit(1)> command and documentation."
5107 msgstr ""
5108
5109 #. type: =item
5110 #: ../src/guestfs.pod:2678
5111 msgid "C<examples>"
5112 msgstr ""
5113
5114 #. type: textblock
5115 #: ../src/guestfs.pod:2680
5116 msgid "C API example code."
5117 msgstr ""
5118
5119 #. type: =item
5120 #: ../src/guestfs.pod:2682
5121 msgid "C<fish>"
5122 msgstr ""
5123
5124 #. type: textblock
5125 #: ../src/guestfs.pod:2684
5126 msgid ""
5127 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5128 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5129 "L<virt-tar-out(1)>."
5130 msgstr ""
5131
5132 #. type: =item
5133 #: ../src/guestfs.pod:2688
5134 msgid "C<fuse>"
5135 msgstr ""
5136
5137 #. type: textblock
5138 #: ../src/guestfs.pod:2690
5139 msgid "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5140 msgstr ""
5141
5142 #. type: =item
5143 #: ../src/guestfs.pod:2692
5144 msgid "C<generator>"
5145 msgstr ""
5146
5147 #. type: textblock
5148 #: ../src/guestfs.pod:2694
5149 msgid ""
5150 "The crucially important generator, used to automatically generate large "
5151 "amounts of boilerplate C code for things like RPC and bindings."
5152 msgstr ""
5153
5154 #. type: =item
5155 #: ../src/guestfs.pod:2697
5156 msgid "C<images>"
5157 msgstr ""
5158
5159 #. type: textblock
5160 #: ../src/guestfs.pod:2699
5161 msgid "Files used by the test suite."
5162 msgstr ""
5163
5164 #. type: textblock
5165 #: ../src/guestfs.pod:2701
5166 msgid "Some \"phony\" guest images which we test against."
5167 msgstr ""
5168
5169 #. type: =item
5170 #: ../src/guestfs.pod:2703
5171 msgid "C<inspector>"
5172 msgstr ""
5173
5174 #. type: textblock
5175 #: ../src/guestfs.pod:2705
5176 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5177 msgstr ""
5178
5179 #. type: =item
5180 #: ../src/guestfs.pod:2707
5181 msgid "C<logo>"
5182 msgstr ""
5183
5184 #. type: textblock
5185 #: ../src/guestfs.pod:2709
5186 msgid "Logo used on the website.  The fish is called Arthur by the way."
5187 msgstr ""
5188
5189 #. type: =item
5190 #: ../src/guestfs.pod:2711
5191 msgid "C<m4>"
5192 msgstr ""
5193
5194 #. type: textblock
5195 #: ../src/guestfs.pod:2713
5196 msgid "M4 macros used by autoconf."
5197 msgstr ""
5198
5199 #. type: =item
5200 #: ../src/guestfs.pod:2715
5201 msgid "C<po>"
5202 msgstr ""
5203
5204 #. type: textblock
5205 #: ../src/guestfs.pod:2717
5206 msgid "Translations of simple gettext strings."
5207 msgstr ""
5208
5209 #. type: =item
5210 #: ../src/guestfs.pod:2719
5211 msgid "C<po-docs>"
5212 msgstr ""
5213
5214 #. type: textblock
5215 #: ../src/guestfs.pod:2721
5216 msgid ""
5217 "The build infrastructure and PO files for translations of manpages and POD "
5218 "files.  Eventually this will be combined with the C<po> directory, but that "
5219 "is rather complicated."
5220 msgstr ""
5221
5222 #. type: =item
5223 #: ../src/guestfs.pod:2725
5224 msgid "C<regressions>"
5225 msgstr ""
5226
5227 #. type: textblock
5228 #: ../src/guestfs.pod:2727
5229 msgid "Regression tests."
5230 msgstr ""
5231
5232 #. type: =item
5233 #: ../src/guestfs.pod:2729
5234 msgid "C<rescue>"
5235 msgstr ""
5236
5237 #. type: textblock
5238 #: ../src/guestfs.pod:2731
5239 msgid "L<virt-rescue(1)> command and documentation."
5240 msgstr ""
5241
5242 #. type: =item
5243 #: ../src/guestfs.pod:2733
5244 msgid "C<src>"
5245 msgstr ""
5246
5247 #. type: textblock
5248 #: ../src/guestfs.pod:2735
5249 msgid "Source code to the C library."
5250 msgstr ""
5251
5252 #. type: =item
5253 #: ../src/guestfs.pod:2737
5254 msgid "C<tools>"
5255 msgstr ""
5256
5257 #. type: textblock
5258 #: ../src/guestfs.pod:2739
5259 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5260 msgstr ""
5261
5262 #. type: =item
5263 #: ../src/guestfs.pod:2741
5264 msgid "C<test-tool>"
5265 msgstr ""
5266
5267 #. type: textblock
5268 #: ../src/guestfs.pod:2743
5269 msgid ""
5270 "Test tool for end users to test if their qemu/kernel combination will work "
5271 "with libguestfs."
5272 msgstr ""
5273
5274 #. type: =item
5275 #: ../src/guestfs.pod:2746
5276 msgid "C<csharp>"
5277 msgstr ""
5278
5279 #. type: =item
5280 #: ../src/guestfs.pod:2748
5281 msgid "C<haskell>"
5282 msgstr ""
5283
5284 #. type: =item
5285 #: ../src/guestfs.pod:2750
5286 msgid "C<java>"
5287 msgstr ""
5288
5289 #. type: =item
5290 #: ../src/guestfs.pod:2752
5291 msgid "C<ocaml>"
5292 msgstr ""
5293
5294 #. type: =item
5295 #: ../src/guestfs.pod:2754
5296 msgid "C<php>"
5297 msgstr ""
5298
5299 #. type: =item
5300 #: ../src/guestfs.pod:2756
5301 msgid "C<perl>"
5302 msgstr ""
5303
5304 #. type: =item
5305 #: ../src/guestfs.pod:2758
5306 msgid "C<python>"
5307 msgstr ""
5308
5309 #. type: =item
5310 #: ../src/guestfs.pod:2760
5311 msgid "C<ruby>"
5312 msgstr ""
5313
5314 #. type: textblock
5315 #: ../src/guestfs.pod:2762
5316 msgid "Language bindings."
5317 msgstr ""
5318
5319 #. type: =head1
5320 #: ../src/guestfs.pod:2766
5321 msgid "LIMITS"
5322 msgstr ""
5323
5324 #. type: =head2
5325 #: ../src/guestfs.pod:2768
5326 msgid "PROTOCOL LIMITS"
5327 msgstr ""
5328
5329 #. type: textblock
5330 #: ../src/guestfs.pod:2770
5331 msgid ""
5332 "Internally libguestfs uses a message-based protocol to pass API calls and "
5333 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5334 "plenty more detail about this).  The maximum message size used by the "
5335 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5336 "aware of this limit.  The API calls which may be affected are individually "
5337 "documented, with a link back to this section of the documentation."
5338 msgstr ""
5339
5340 #. type: textblock
5341 #: ../src/guestfs.pod:2778
5342 msgid ""
5343 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5344 "a simple string.  Because this string is at some point internally encoded as "
5345 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5346 "the requested file is larger than this then you will get an error."
5347 msgstr ""
5348
5349 #. type: textblock
5350 #: ../src/guestfs.pod:2784
5351 msgid ""
5352 "In order to transfer large files into and out of the guest filesystem, you "
5353 "need to use particular calls that support this.  The sections L</UPLOADING> "
5354 "and L</DOWNLOADING> document how to do this."
5355 msgstr ""
5356
5357 #. type: textblock
5358 #: ../src/guestfs.pod:2788
5359 msgid ""
5360 "You might also consider mounting the disk image using our FUSE filesystem "
5361 "support (L<guestmount(1)>)."
5362 msgstr ""
5363
5364 #. type: =head2
5365 #: ../src/guestfs.pod:2791
5366 msgid "MAXIMUM NUMBER OF DISKS"
5367 msgstr ""
5368
5369 #. type: textblock
5370 #: ../src/guestfs.pod:2793
5371 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5372 msgstr ""
5373
5374 #. type: textblock
5375 #: ../src/guestfs.pod:2796
5376 msgid ""
5377 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5378 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5379 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5380 "purposes."
5381 msgstr ""
5382
5383 #. type: textblock
5384 #: ../src/guestfs.pod:2801
5385 msgid ""
5386 "We are working to substantially raise this limit in future versions but it "
5387 "requires complex changes to qemu."
5388 msgstr ""
5389
5390 #. type: textblock
5391 #: ../src/guestfs.pod:2804
5392 msgid ""
5393 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5394 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5395 "requires changes to qemu."
5396 msgstr ""
5397
5398 #. type: =head2
5399 #: ../src/guestfs.pod:2808
5400 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5401 msgstr ""
5402
5403 #. type: textblock
5404 #: ../src/guestfs.pod:2810
5405 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5406 msgstr ""
5407
5408 #. type: textblock
5409 #: ../src/guestfs.pod:2812
5410 msgid ""
5411 "This is because it reserves 4 bits for the minor device number (thus "
5412 "C</dev/vda>, and C</dev/vda1> through C</dev/vda15>)."
5413 msgstr ""
5414
5415 #. type: textblock
5416 #: ../src/guestfs.pod:2815
5417 msgid ""
5418 "If you attach a disk with more than 15 partitions, the extra partitions are "
5419 "ignored by libguestfs."
5420 msgstr ""
5421
5422 #. type: =head2
5423 #: ../src/guestfs.pod:2818
5424 msgid "MAXIMUM SIZE OF A DISK"
5425 msgstr ""
5426
5427 #. type: textblock
5428 #: ../src/guestfs.pod:2820
5429 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5430 msgstr ""
5431
5432 #. type: textblock
5433 #: ../src/guestfs.pod:2822
5434 msgid ""
5435 "We have tested block devices up to 1 exabyte (2**60 or "
5436 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5437 "filesystem."
5438 msgstr ""
5439
5440 #. type: textblock
5441 #: ../src/guestfs.pod:2826
5442 msgid ""
5443 "Although libguestfs probably does not impose any limit, the underlying host "
5444 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5445 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5446 "TB).  If you store disk images as host logical volumes then you are limited "
5447 "by the maximum size of an LV."
5448 msgstr ""
5449
5450 #. type: textblock
5451 #: ../src/guestfs.pod:2832
5452 msgid ""
5453 "For the hugest disk image files, we recommend using XFS on the host for "
5454 "storage."
5455 msgstr ""
5456
5457 #. type: =head2
5458 #: ../src/guestfs.pod:2835
5459 msgid "MAXIMUM SIZE OF A PARTITION"
5460 msgstr ""
5461
5462 #. type: textblock
5463 #: ../src/guestfs.pod:2837
5464 msgid ""
5465 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5466 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5467 "address a partition located beyond 2 TB on the disk."
5468 msgstr ""
5469
5470 #. type: textblock
5471 #: ../src/guestfs.pod:2841
5472 msgid ""
5473 "It is recommended that you use GPT partitions on disks which are larger than "
5474 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
5475 "which are theoretically larger than the largest disk we could support."
5476 msgstr ""
5477
5478 #. type: =head2
5479 #: ../src/guestfs.pod:2846
5480 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5481 msgstr ""
5482
5483 #. type: textblock
5484 #: ../src/guestfs.pod:2848
5485 msgid ""
5486 "This depends on the filesystem type.  libguestfs itself does not impose any "
5487 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5488 "what these limits are."
5489 msgstr ""
5490
5491 #. type: =head2
5492 #: ../src/guestfs.pod:2852
5493 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5494 msgstr ""
5495
5496 #. type: textblock
5497 #: ../src/guestfs.pod:2854
5498 msgid ""
5499 "The API functions L</guestfs_upload>, L</guestfs_download>, "
5500 "L</guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5501 "uploads and downloads."
5502 msgstr ""
5503
5504 #. type: =head2
5505 #: ../src/guestfs.pod:2858
5506 msgid "INSPECTION LIMITS"
5507 msgstr ""
5508
5509 #. type: textblock
5510 #: ../src/guestfs.pod:2860
5511 msgid ""
5512 "The inspection code has several arbitrary limits on things like the size of "
5513 "Windows Registry hive it will read, and the length of product name.  These "
5514 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5515 "memory and disk space on the host, and should not be reached in practice.  "
5516 "See the source code for more information."
5517 msgstr ""
5518
5519 #. type: =head1
5520 #: ../src/guestfs.pod:2866 ../fish/guestfish.pod:1017 ../test-tool/libguestfs-test-tool.pod:82
5521 msgid "ENVIRONMENT VARIABLES"
5522 msgstr ""
5523
5524 #. type: =item
5525 #: ../src/guestfs.pod:2870 ../fish/guestfish.pod:1043
5526 msgid "LIBGUESTFS_APPEND"
5527 msgstr ""
5528
5529 #. type: textblock
5530 #: ../src/guestfs.pod:2872 ../fish/guestfish.pod:1045
5531 msgid "Pass additional options to the guest kernel."
5532 msgstr ""
5533
5534 #. type: =item
5535 #: ../src/guestfs.pod:2874 ../fish/guestfish.pod:1047
5536 msgid "LIBGUESTFS_DEBUG"
5537 msgstr ""
5538
5539 #. type: textblock
5540 #: ../src/guestfs.pod:2876
5541 msgid ""
5542 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5543 "effect as calling C<guestfs_set_verbose (g, 1)>."
5544 msgstr ""
5545
5546 #. type: =item
5547 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1052
5548 msgid "LIBGUESTFS_MEMSIZE"
5549 msgstr ""
5550
5551 #. type: textblock
5552 #: ../src/guestfs.pod:2881 ../fish/guestfish.pod:1054
5553 msgid "Set the memory allocated to the qemu process, in megabytes.  For example:"
5554 msgstr ""
5555
5556 #. type: verbatim
5557 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1057
5558 #, no-wrap
5559 msgid ""
5560 " LIBGUESTFS_MEMSIZE=700\n"
5561 "\n"
5562 msgstr ""
5563
5564 #. type: =item
5565 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1059
5566 msgid "LIBGUESTFS_PATH"
5567 msgstr ""
5568
5569 #. type: textblock
5570 #: ../src/guestfs.pod:2888
5571 msgid ""
5572 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5573 "the discussion of paths in section L</PATH> above."
5574 msgstr ""
5575
5576 #. type: =item
5577 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1064
5578 msgid "LIBGUESTFS_QEMU"
5579 msgstr ""
5580
5581 #. type: textblock
5582 #: ../src/guestfs.pod:2893 ../fish/guestfish.pod:1066
5583 msgid ""
5584 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5585 "which was found at compile time by the configure script is used."
5586 msgstr ""
5587
5588 #. type: textblock
5589 #: ../src/guestfs.pod:2897
5590 msgid "See also L</QEMU WRAPPERS> above."
5591 msgstr ""
5592
5593 #. type: =item
5594 #: ../src/guestfs.pod:2899 ../fish/guestfish.pod:1070
5595 msgid "LIBGUESTFS_TRACE"
5596 msgstr ""
5597
5598 #. type: textblock
5599 #: ../src/guestfs.pod:2901
5600 msgid ""
5601 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5602 "effect as calling C<guestfs_set_trace (g, 1)>."
5603 msgstr ""
5604
5605 #. type: =item
5606 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1079
5607 msgid "TMPDIR"
5608 msgstr ""
5609
5610 #. type: textblock
5611 #: ../src/guestfs.pod:2906 ../fish/guestfish.pod:1081
5612 msgid ""
5613 "Location of temporary directory, defaults to C</tmp> except for the cached "
5614 "supermin appliance which defaults to C</var/tmp>."
5615 msgstr ""
5616
5617 #. type: textblock
5618 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1084
5619 msgid ""
5620 "If libguestfs was compiled to use the supermin appliance then the real "
5621 "appliance is cached in this directory, shared between all handles belonging "
5622 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5623 "use in case C</var/tmp> is not large enough."
5624 msgstr ""
5625
5626 #. type: =head1
5627 #: ../src/guestfs.pod:2917 ../fish/guestfish.pod:1151 ../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
5628 msgid "SEE ALSO"
5629 msgstr ""
5630
5631 #. type: textblock
5632 #: ../src/guestfs.pod:2919
5633 msgid ""
5634 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, "
5635 "L<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, "
5636 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
5637 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
5638 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
5639 "L<virt-rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, "
5640 "L<virt-win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, "
5641 "L<http://libguestfs.org/>."
5642 msgstr ""
5643
5644 #. type: textblock
5645 #: ../src/guestfs.pod:2946
5646 msgid ""
5647 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, "
5648 "L<lvm(8)>, L<disktype(1)>."
5649 msgstr ""
5650
5651 #. type: =head1
5652 #: ../src/guestfs.pod:2953 ../tools/virt-win-reg.pl:759 ../tools/virt-make-fs.pl:553
5653 msgid "BUGS"
5654 msgstr ""
5655
5656 #. type: textblock
5657 #: ../src/guestfs.pod:2955
5658 msgid "To get a list of bugs against libguestfs use this link:"
5659 msgstr ""
5660
5661 #. type: textblock
5662 #: ../src/guestfs.pod:2957
5663 msgid "L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>"
5664 msgstr ""
5665
5666 #. type: textblock
5667 #: ../src/guestfs.pod:2959
5668 msgid "To report a new bug against libguestfs use this link:"
5669 msgstr ""
5670
5671 #. type: textblock
5672 #: ../src/guestfs.pod:2961
5673 msgid "L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>"
5674 msgstr ""
5675
5676 #. type: textblock
5677 #: ../src/guestfs.pod:2963
5678 msgid "When reporting a bug, please check:"
5679 msgstr ""
5680
5681 #. type: textblock
5682 #: ../src/guestfs.pod:2969
5683 msgid "That the bug hasn't been reported already."
5684 msgstr ""
5685
5686 #. type: textblock
5687 #: ../src/guestfs.pod:2973
5688 msgid "That you are testing a recent version."
5689 msgstr ""
5690
5691 #. type: textblock
5692 #: ../src/guestfs.pod:2977
5693 msgid "Describe the bug accurately, and give a way to reproduce it."
5694 msgstr ""
5695
5696 #. type: textblock
5697 #: ../src/guestfs.pod:2981
5698 msgid ""
5699 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5700 "bug report."
5701 msgstr ""
5702
5703 #. type: =head1
5704 #: ../src/guestfs.pod:2986 ../fish/guestfish.pod:1174 ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:290
5705 msgid "AUTHORS"
5706 msgstr ""
5707
5708 #. type: textblock
5709 #: ../src/guestfs.pod:2988 ../fish/guestfish.pod:1176 ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:292
5710 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5711 msgstr ""
5712
5713 #. type: =head1
5714 #: ../src/guestfs.pod:2990 ../fish/guestfish.pod:1178 ../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
5715 msgid "COPYRIGHT"
5716 msgstr ""
5717
5718 #. type: textblock
5719 #: ../src/guestfs.pod:2992 ../fish/guestfish.pod:1180 ../test-tool/libguestfs-test-tool.pod:99
5720 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5721 msgstr ""
5722
5723 #. type: textblock
5724 #: ../src/guestfs.pod:2995
5725 msgid ""
5726 "This library is free software; you can redistribute it and/or modify it "
5727 "under the terms of the GNU Lesser General Public License as published by the "
5728 "Free Software Foundation; either version 2 of the License, or (at your "
5729 "option) any later version."
5730 msgstr ""
5731
5732 #. type: textblock
5733 #: ../src/guestfs.pod:3000
5734 msgid ""
5735 "This library is distributed in the hope that it will be useful, but WITHOUT "
5736 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5737 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5738 "for more details."
5739 msgstr ""
5740
5741 #. type: textblock
5742 #: ../src/guestfs.pod:3005
5743 msgid ""
5744 "You should have received a copy of the GNU Lesser General Public License "
5745 "along with this library; if not, write to the Free Software Foundation, "
5746 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5747 msgstr ""
5748
5749 #. type: =head2
5750 #: ../src/guestfs-actions.pod:1
5751 msgid "guestfs_add_cdrom"
5752 msgstr ""
5753
5754 #. type: verbatim
5755 #: ../src/guestfs-actions.pod:3
5756 #, no-wrap
5757 msgid ""
5758 " int\n"
5759 " guestfs_add_cdrom (guestfs_h *g,\n"
5760 "                    const char *filename);\n"
5761 "\n"
5762 msgstr ""
5763
5764 #. type: textblock
5765 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5766 msgid "This function adds a virtual CD-ROM disk image to the guest."
5767 msgstr ""
5768
5769 #. type: textblock
5770 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5771 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5772 msgstr ""
5773
5774 #. type: textblock
5775 #: ../src/guestfs-actions.pod:17
5776 msgid ""
5777 "This call checks for the existence of C<filename>.  This stops you from "
5778 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5779 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5780 "instead."
5781 msgstr ""
5782
5783 #. type: textblock
5784 #: ../src/guestfs-actions.pod:24
5785 msgid ""
5786 "If you just want to add an ISO file (often you use this as an efficient way "
5787 "to transfer large files into the guest), then you should probably use "
5788 "C<guestfs_add_drive_ro> instead."
5789 msgstr ""
5790
5791 #. type: textblock
5792 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:140 ../src/guestfs-actions.pod:201 ../src/guestfs-actions.pod:238 ../src/guestfs-actions.pod:252 ../src/guestfs-actions.pod:273 ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:307 ../src/guestfs-actions.pod:422 ../src/guestfs-actions.pod:442 ../src/guestfs-actions.pod:456 ../src/guestfs-actions.pod:501 ../src/guestfs-actions.pod:529 ../src/guestfs-actions.pod:547 ../src/guestfs-actions.pod:614 ../src/guestfs-actions.pod:647 ../src/guestfs-actions.pod:661 ../src/guestfs-actions.pod:676 ../src/guestfs-actions.pod:775 ../src/guestfs-actions.pod:793 ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:821 ../src/guestfs-actions.pod:982 ../src/guestfs-actions.pod:1002 ../src/guestfs-actions.pod:1020 ../src/guestfs-actions.pod:1104 ../src/guestfs-actions.pod:1122 ../src/guestfs-actions.pod:1141 ../src/guestfs-actions.pod:1155 ../src/guestfs-actions.pod:1175 ../src/guestfs-actions.pod:1245 ../src/guestfs-actions.pod:1276 ../src/guestfs-actions.pod:1301 ../src/guestfs-actions.pod:1343 ../src/guestfs-actions.pod:1449 ../src/guestfs-actions.pod:1483 ../src/guestfs-actions.pod:1698 ../src/guestfs-actions.pod:1720 ../src/guestfs-actions.pod:1807 ../src/guestfs-actions.pod:2269 ../src/guestfs-actions.pod:2413 ../src/guestfs-actions.pod:2474 ../src/guestfs-actions.pod:2509 ../src/guestfs-actions.pod:3485 ../src/guestfs-actions.pod:3500 ../src/guestfs-actions.pod:3525 ../src/guestfs-actions.pod:3680 ../src/guestfs-actions.pod:3694 ../src/guestfs-actions.pod:3707 ../src/guestfs-actions.pod:3721 ../src/guestfs-actions.pod:3736 ../src/guestfs-actions.pod:3772 ../src/guestfs-actions.pod:3844 ../src/guestfs-actions.pod:3864 ../src/guestfs-actions.pod:3881 ../src/guestfs-actions.pod:3904 ../src/guestfs-actions.pod:3927 ../src/guestfs-actions.pod:3959 ../src/guestfs-actions.pod:3978 ../src/guestfs-actions.pod:3997 ../src/guestfs-actions.pod:4032 ../src/guestfs-actions.pod:4044 ../src/guestfs-actions.pod:4080 ../src/guestfs-actions.pod:4096 ../src/guestfs-actions.pod:4109 ../src/guestfs-actions.pod:4124 ../src/guestfs-actions.pod:4141 ../src/guestfs-actions.pod:4234 ../src/guestfs-actions.pod:4254 ../src/guestfs-actions.pod:4267 ../src/guestfs-actions.pod:4318 ../src/guestfs-actions.pod:4336 ../src/guestfs-actions.pod:4354 ../src/guestfs-actions.pod:4370 ../src/guestfs-actions.pod:4384 ../src/guestfs-actions.pod:4398 ../src/guestfs-actions.pod:4415 ../src/guestfs-actions.pod:4430 ../src/guestfs-actions.pod:4450 ../src/guestfs-actions.pod:4508 ../src/guestfs-actions.pod:4581 ../src/guestfs-actions.pod:4612 ../src/guestfs-actions.pod:4631 ../src/guestfs-actions.pod:4650 ../src/guestfs-actions.pod:4662 ../src/guestfs-actions.pod:4679 ../src/guestfs-actions.pod:4692 ../src/guestfs-actions.pod:4707 ../src/guestfs-actions.pod:4722 ../src/guestfs-actions.pod:4757 ../src/guestfs-actions.pod:4779 ../src/guestfs-actions.pod:4799 ../src/guestfs-actions.pod:4813 ../src/guestfs-actions.pod:4830 ../src/guestfs-actions.pod:4879 ../src/guestfs-actions.pod:4916 ../src/guestfs-actions.pod:4930 ../src/guestfs-actions.pod:4958 ../src/guestfs-actions.pod:4975 ../src/guestfs-actions.pod:4993 ../src/guestfs-actions.pod:5127 ../src/guestfs-actions.pod:5184 ../src/guestfs-actions.pod:5206 ../src/guestfs-actions.pod:5224 ../src/guestfs-actions.pod:5256 ../src/guestfs-actions.pod:5322 ../src/guestfs-actions.pod:5339 ../src/guestfs-actions.pod:5352 ../src/guestfs-actions.pod:5366 ../src/guestfs-actions.pod:5655 ../src/guestfs-actions.pod:5674 ../src/guestfs-actions.pod:5693 ../src/guestfs-actions.pod:5705 ../src/guestfs-actions.pod:5717 ../src/guestfs-actions.pod:5731 ../src/guestfs-actions.pod:5743 ../src/guestfs-actions.pod:5757 ../src/guestfs-actions.pod:5773 ../src/guestfs-actions.pod:5794 ../src/guestfs-actions.pod:5813 ../src/guestfs-actions.pod:5832 ../src/guestfs-actions.pod:5862 ../src/guestfs-actions.pod:5878 ../src/guestfs-actions.pod:5901 ../src/guestfs-actions.pod:5919 ../src/guestfs-actions.pod:5938 ../src/guestfs-actions.pod:5959 ../src/guestfs-actions.pod:5978 ../src/guestfs-actions.pod:5995 ../src/guestfs-actions.pod:6023 ../src/guestfs-actions.pod:6047 ../src/guestfs-actions.pod:6066 ../src/guestfs-actions.pod:6090 ../src/guestfs-actions.pod:6109 ../src/guestfs-actions.pod:6124 ../src/guestfs-actions.pod:6143 ../src/guestfs-actions.pod:6180 ../src/guestfs-actions.pod:6210 ../src/guestfs-actions.pod:6243 ../src/guestfs-actions.pod:6365 ../src/guestfs-actions.pod:6486 ../src/guestfs-actions.pod:6498 ../src/guestfs-actions.pod:6511 ../src/guestfs-actions.pod:6524 ../src/guestfs-actions.pod:6546 ../src/guestfs-actions.pod:6559 ../src/guestfs-actions.pod:6572 ../src/guestfs-actions.pod:6585 ../src/guestfs-actions.pod:6600 ../src/guestfs-actions.pod:6659 ../src/guestfs-actions.pod:6676 ../src/guestfs-actions.pod:6692 ../src/guestfs-actions.pod:6708 ../src/guestfs-actions.pod:6725 ../src/guestfs-actions.pod:6738 ../src/guestfs-actions.pod:6758 ../src/guestfs-actions.pod:6794 ../src/guestfs-actions.pod:6808 ../src/guestfs-actions.pod:6849 ../src/guestfs-actions.pod:6862 ../src/guestfs-actions.pod:6880 ../src/guestfs-actions.pod:6914 ../src/guestfs-actions.pod:6950 ../src/guestfs-actions.pod:7069 ../src/guestfs-actions.pod:7087 ../src/guestfs-actions.pod:7101 ../src/guestfs-actions.pod:7156 ../src/guestfs-actions.pod:7169 ../src/guestfs-actions.pod:7214 ../src/guestfs-actions.pod:7247 ../src/guestfs-actions.pod:7308 ../src/guestfs-actions.pod:7334 ../src/guestfs-actions.pod:7401 ../src/guestfs-actions.pod:7420 ../src/guestfs-actions.pod:7449
5793 msgid "This function returns 0 on success or -1 on error."
5794 msgstr ""
5795
5796 #. type: textblock
5797 #: ../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
5798 msgid ""
5799 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
5800 "instead."
5801 msgstr ""
5802
5803 #. type: textblock
5804 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257 ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1454 ../src/guestfs-actions.pod:1947 ../src/guestfs-actions.pod:1968 ../src/guestfs-actions.pod:4455 ../src/guestfs-actions.pod:4762 ../src/guestfs-actions.pod:6188 ../src/guestfs-actions.pod:6218 ../src/guestfs-actions.pod:6251 ../src/guestfs-actions.pod:6310 ../src/guestfs-actions.pod:7252 ../src/guestfs-actions.pod:7342 ../src/guestfs-actions.pod:7512 ../fish/guestfish-actions.pod:31 ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180 ../fish/guestfish-actions.pod:961 ../fish/guestfish-actions.pod:1321 ../fish/guestfish-actions.pod:1335 ../fish/guestfish-actions.pod:3025 ../fish/guestfish-actions.pod:3222 ../fish/guestfish-actions.pod:4194 ../fish/guestfish-actions.pod:4217 ../fish/guestfish-actions.pod:4239 ../fish/guestfish-actions.pod:4277 ../fish/guestfish-actions.pod:4918 ../fish/guestfish-actions.pod:5016
5805 msgid ""
5806 "Deprecated functions will not be removed from the API, but the fact that "
5807 "they are deprecated indicates that there are problems with correct use of "
5808 "these functions."
5809 msgstr ""
5810
5811 #. type: textblock
5812 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142 ../src/guestfs-actions.pod:1106 ../src/guestfs-actions.pod:1919 ../src/guestfs-actions.pod:2017 ../src/guestfs-actions.pod:2120 ../src/guestfs-actions.pod:3487 ../src/guestfs-actions.pod:3507 ../src/guestfs-actions.pod:4766 ../src/guestfs-actions.pod:5880 ../src/guestfs-actions.pod:5997 ../src/guestfs-actions.pod:6111 ../src/guestfs-actions.pod:6602 ../src/guestfs-actions.pod:6727 ../src/guestfs-actions.pod:7256
5813 msgid "(Added in 0.3)"
5814 msgstr ""
5815
5816 #. type: =head2
5817 #: ../src/guestfs-actions.pod:41
5818 msgid "guestfs_add_domain"
5819 msgstr ""
5820
5821 #. type: verbatim
5822 #: ../src/guestfs-actions.pod:43
5823 #, no-wrap
5824 msgid ""
5825 " int\n"
5826 " guestfs_add_domain (guestfs_h *g,\n"
5827 "                     const char *dom,\n"
5828 "                     ...);\n"
5829 "\n"
5830 msgstr ""
5831
5832 #. type: textblock
5833 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151 ../src/guestfs-actions.pod:4469
5834 msgid ""
5835 "You may supply a list of optional arguments to this call.  Use zero or more "
5836 "of the following pairs of parameters, and terminate the list with C<-1> on "
5837 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
5838 msgstr ""
5839
5840 #. type: verbatim
5841 #: ../src/guestfs-actions.pod:53
5842 #, no-wrap
5843 msgid ""
5844 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
5845 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
5846 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
5847 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
5848 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
5849 "\n"
5850 msgstr ""
5851
5852 #. type: textblock
5853 #: ../src/guestfs-actions.pod:59
5854 msgid ""
5855 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
5856 "It works by connecting to libvirt, requesting the domain and domain XML from "
5857 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
5858 "one."
5859 msgstr ""
5860
5861 #. type: textblock
5862 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
5863 msgid ""
5864 "The number of disks added is returned.  This operation is atomic: if an "
5865 "error is returned, then no disks are added."
5866 msgstr ""
5867
5868 #. type: textblock
5869 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
5870 msgid ""
5871 "This function does some minimal checks to make sure the libvirt domain is "
5872 "not running (unless C<readonly> is true).  In a future version we will try "
5873 "to acquire the libvirt lock on each disk."
5874 msgstr ""
5875
5876 #. type: textblock
5877 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
5878 msgid ""
5879 "Disks must be accessible locally.  This often means that adding disks from a "
5880 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
5881 "unless those disks are accessible via the same device path locally too."
5882 msgstr ""
5883
5884 #. type: textblock
5885 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
5886 msgid ""
5887 "The optional C<libvirturi> parameter sets the libvirt URI (see "
5888 "L<http://libvirt.org/uri.html>).  If this is not set then we connect to the "
5889 "default libvirt URI (or one set through an environment variable, see the "
5890 "libvirt documentation for full details)."
5891 msgstr ""
5892
5893 #. type: textblock
5894 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
5895 msgid ""
5896 "The optional C<live> flag controls whether this call will try to connect to "
5897 "a running virtual machine C<guestfsd> process if it sees a suitable "
5898 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
5899 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
5900 "DAEMONS> for more information."
5901 msgstr ""
5902
5903 #. type: textblock
5904 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
5905 msgid ""
5906 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
5907 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
5908 "first and looked up, and if that lookup fails then we treat C<dom> as a name "
5909 "as usual."
5910 msgstr ""
5911
5912 #. type: textblock
5913 #: ../src/guestfs-actions.pod:94
5914 msgid ""
5915 "The other optional parameters are passed directly through to "
5916 "C<guestfs_add_drive_opts>."
5917 msgstr ""
5918
5919 #. type: textblock
5920 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350 ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693 ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742 ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1321 ../src/guestfs-actions.pod:1677 ../src/guestfs-actions.pod:1880 ../src/guestfs-actions.pod:1989 ../src/guestfs-actions.pod:2029 ../src/guestfs-actions.pod:2084 ../src/guestfs-actions.pod:2107 ../src/guestfs-actions.pod:2400 ../src/guestfs-actions.pod:2783 ../src/guestfs-actions.pod:2804 ../src/guestfs-actions.pod:4902 ../src/guestfs-actions.pod:5030 ../src/guestfs-actions.pod:5436 ../src/guestfs-actions.pod:5462 ../src/guestfs-actions.pod:6835 ../src/guestfs-actions.pod:7267 ../src/guestfs-actions.pod:7280 ../src/guestfs-actions.pod:7293
5921 msgid "On error this function returns -1."
5922 msgstr ""
5923
5924 #. type: textblock
5925 #: ../src/guestfs-actions.pod:99
5926 msgid "(Added in 1.7.4)"
5927 msgstr ""
5928
5929 #. type: =head2
5930 #: ../src/guestfs-actions.pod:101
5931 msgid "guestfs_add_domain_va"
5932 msgstr ""
5933
5934 #. type: verbatim
5935 #: ../src/guestfs-actions.pod:103
5936 #, no-wrap
5937 msgid ""
5938 " int\n"
5939 " guestfs_add_domain_va (guestfs_h *g,\n"
5940 "                        const char *dom,\n"
5941 "                        va_list args);\n"
5942 "\n"
5943 msgstr ""
5944
5945 #. type: textblock
5946 #: ../src/guestfs-actions.pod:108
5947 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
5948 msgstr ""
5949
5950 #. type: textblock
5951 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121 ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225 ../src/guestfs-actions.pod:4522 ../src/guestfs-actions.pod:4534
5952 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
5953 msgstr ""
5954
5955 #. type: =head2
5956 #: ../src/guestfs-actions.pod:112
5957 msgid "guestfs_add_domain_argv"
5958 msgstr ""
5959
5960 #. type: verbatim
5961 #: ../src/guestfs-actions.pod:114
5962 #, no-wrap
5963 msgid ""
5964 " int\n"
5965 " guestfs_add_domain_argv (guestfs_h *g,\n"
5966 "                          const char *dom,\n"
5967 "                          const struct guestfs_add_domain_argv *optargs);\n"
5968 "\n"
5969 msgstr ""
5970
5971 #. type: textblock
5972 #: ../src/guestfs-actions.pod:119
5973 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
5974 msgstr ""
5975
5976 #. type: =head2
5977 #: ../src/guestfs-actions.pod:123
5978 msgid "guestfs_add_drive"
5979 msgstr ""
5980
5981 #. type: verbatim
5982 #: ../src/guestfs-actions.pod:125
5983 #, no-wrap
5984 msgid ""
5985 " int\n"
5986 " guestfs_add_drive (guestfs_h *g,\n"
5987 "                    const char *filename);\n"
5988 "\n"
5989 msgstr ""
5990
5991 #. type: textblock
5992 #: ../src/guestfs-actions.pod:129
5993 msgid ""
5994 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
5995 "optional parameters, so the disk is added writable, with the format being "
5996 "detected automatically."
5997 msgstr ""
5998
5999 #. type: textblock
6000 #: ../src/guestfs-actions.pod:133
6001 msgid ""
6002 "Automatic detection of the format opens you up to a potential security hole "
6003 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6004 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6005 "you should think about replacing calls to this function with calls to "
6006 "C<guestfs_add_drive_opts>, and specifying the format."
6007 msgstr ""
6008
6009 #. type: =head2
6010 #: ../src/guestfs-actions.pod:144
6011 msgid "guestfs_add_drive_opts"
6012 msgstr ""
6013
6014 #. type: verbatim
6015 #: ../src/guestfs-actions.pod:146
6016 #, no-wrap
6017 msgid ""
6018 " int\n"
6019 " guestfs_add_drive_opts (guestfs_h *g,\n"
6020 "                         const char *filename,\n"
6021 "                         ...);\n"
6022 "\n"
6023 msgstr ""
6024
6025 #. type: verbatim
6026 #: ../src/guestfs-actions.pod:156
6027 #, no-wrap
6028 msgid ""
6029 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6030 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6031 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6032 "\n"
6033 msgstr ""
6034
6035 #. type: textblock
6036 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6037 msgid ""
6038 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6039 "The first time you call this function, the disk appears as C</dev/sda>, the "
6040 "second time as C</dev/sdb>, and so on."
6041 msgstr ""
6042
6043 #. type: textblock
6044 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6045 msgid ""
6046 "You don't necessarily need to be root when using libguestfs.  However you "
6047 "obviously do need sufficient permissions to access the filename for whatever "
6048 "operations you want to perform (ie. read access if you just want to read the "
6049 "image or write access if you want to modify the image)."
6050 msgstr ""
6051
6052 #. type: textblock
6053 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6054 msgid "This call checks that C<filename> exists."
6055 msgstr ""
6056
6057 #. type: textblock
6058 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4480 ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3036
6059 msgid "The optional arguments are:"
6060 msgstr ""
6061
6062 #. type: =item
6063 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6064 msgid "C<readonly>"
6065 msgstr ""
6066
6067 #. type: textblock
6068 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6069 msgid ""
6070 "If true then the image is treated as read-only.  Writes are still allowed, "
6071 "but they are stored in a temporary snapshot overlay which is discarded at "
6072 "the end.  The disk that you add is not modified."
6073 msgstr ""
6074
6075 #. type: =item
6076 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6077 msgid "C<format>"
6078 msgstr ""
6079
6080 #. type: textblock
6081 #: ../src/guestfs-actions.pod:185
6082 msgid ""
6083 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6084 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6085 "Possible formats include C<raw> and C<qcow2>."
6086 msgstr ""
6087
6088 #. type: textblock
6089 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6090 msgid ""
6091 "Automatic detection of the format opens you up to a potential security hole "
6092 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6093 "RHBZ#642934.  Specifying the format closes this security hole."
6094 msgstr ""
6095
6096 #. type: =item
6097 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6098 msgid "C<iface>"
6099 msgstr ""
6100
6101 #. type: textblock
6102 #: ../src/guestfs-actions.pod:196
6103 msgid ""
6104 "This rarely-used option lets you emulate the behaviour of the deprecated "
6105 "C<guestfs_add_drive_with_if> call (q.v.)"
6106 msgstr ""
6107
6108 #. type: textblock
6109 #: ../src/guestfs-actions.pod:203
6110 msgid "(Added in 1.5.23)"
6111 msgstr ""
6112
6113 #. type: =head2
6114 #: ../src/guestfs-actions.pod:205
6115 msgid "guestfs_add_drive_opts_va"
6116 msgstr ""
6117
6118 #. type: verbatim
6119 #: ../src/guestfs-actions.pod:207
6120 #, no-wrap
6121 msgid ""
6122 " int\n"
6123 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6124 "                            const char *filename,\n"
6125 "                            va_list args);\n"
6126 "\n"
6127 msgstr ""
6128
6129 #. type: textblock
6130 #: ../src/guestfs-actions.pod:212
6131 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6132 msgstr ""
6133
6134 #. type: =head2
6135 #: ../src/guestfs-actions.pod:216
6136 msgid "guestfs_add_drive_opts_argv"
6137 msgstr ""
6138
6139 #. type: verbatim
6140 #: ../src/guestfs-actions.pod:218
6141 #, no-wrap
6142 msgid ""
6143 " int\n"
6144 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6145 "                              const char *filename,\n"
6146 "                              const struct guestfs_add_drive_opts_argv "
6147 "*optargs);\n"
6148 "\n"
6149 msgstr ""
6150
6151 #. type: textblock
6152 #: ../src/guestfs-actions.pod:223
6153 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6154 msgstr ""
6155
6156 #. type: =head2
6157 #: ../src/guestfs-actions.pod:227
6158 msgid "guestfs_add_drive_ro"
6159 msgstr ""
6160
6161 #. type: verbatim
6162 #: ../src/guestfs-actions.pod:229
6163 #, no-wrap
6164 msgid ""
6165 " int\n"
6166 " guestfs_add_drive_ro (guestfs_h *g,\n"
6167 "                       const char *filename);\n"
6168 "\n"
6169 msgstr ""
6170
6171 #. type: textblock
6172 #: ../src/guestfs-actions.pod:233
6173 msgid ""
6174 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6175 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6176 "disk is added read-only, with the format being detected automatically."
6177 msgstr ""
6178
6179 #. type: textblock
6180 #: ../src/guestfs-actions.pod:240
6181 msgid "(Added in 1.0.38)"
6182 msgstr ""
6183
6184 #. type: =head2
6185 #: ../src/guestfs-actions.pod:242
6186 msgid "guestfs_add_drive_ro_with_if"
6187 msgstr ""
6188
6189 #. type: verbatim
6190 #: ../src/guestfs-actions.pod:244
6191 #, no-wrap
6192 msgid ""
6193 " int\n"
6194 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6195 "                               const char *filename,\n"
6196 "                               const char *iface);\n"
6197 "\n"
6198 msgstr ""
6199
6200 #. type: textblock
6201 #: ../src/guestfs-actions.pod:249
6202 msgid ""
6203 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6204 "QEMU interface emulation to use at run time."
6205 msgstr ""
6206
6207 #. type: textblock
6208 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282 ../src/guestfs-actions.pod:2359
6209 msgid "(Added in 1.0.84)"
6210 msgstr ""
6211
6212 #. type: =head2
6213 #: ../src/guestfs-actions.pod:263
6214 msgid "guestfs_add_drive_with_if"
6215 msgstr ""
6216
6217 #. type: verbatim
6218 #: ../src/guestfs-actions.pod:265
6219 #, no-wrap
6220 msgid ""
6221 " int\n"
6222 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6223 "                            const char *filename,\n"
6224 "                            const char *iface);\n"
6225 "\n"
6226 msgstr ""
6227
6228 #. type: textblock
6229 #: ../src/guestfs-actions.pod:270
6230 msgid ""
6231 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6232 "QEMU interface emulation to use at run time."
6233 msgstr ""
6234
6235 #. type: =head2
6236 #: ../src/guestfs-actions.pod:284
6237 msgid "guestfs_aug_clear"
6238 msgstr ""
6239
6240 #. type: verbatim
6241 #: ../src/guestfs-actions.pod:286
6242 #, no-wrap
6243 msgid ""
6244 " int\n"
6245 " guestfs_aug_clear (guestfs_h *g,\n"
6246 "                    const char *augpath);\n"
6247 "\n"
6248 msgstr ""
6249
6250 #. type: textblock
6251 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6252 msgid ""
6253 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6254 "L<augtool(1)> C<clear> command."
6255 msgstr ""
6256
6257 #. type: textblock
6258 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2109
6259 msgid "(Added in 1.3.4)"
6260 msgstr ""
6261
6262 #. type: =head2
6263 #: ../src/guestfs-actions.pod:297
6264 msgid "guestfs_aug_close"
6265 msgstr ""
6266
6267 #. type: verbatim
6268 #: ../src/guestfs-actions.pod:299
6269 #, no-wrap
6270 msgid ""
6271 " int\n"
6272 " guestfs_aug_close (guestfs_h *g);\n"
6273 "\n"
6274 msgstr ""
6275
6276 #. type: textblock
6277 #: ../src/guestfs-actions.pod:302
6278 msgid ""
6279 "Close the current Augeas handle and free up any resources used by it.  After "
6280 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6281 "any other Augeas functions."
6282 msgstr ""
6283
6284 #. type: textblock
6285 #: ../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:5513
6286 msgid "(Added in 0.7)"
6287 msgstr ""
6288
6289 #. type: =head2
6290 #: ../src/guestfs-actions.pod:311
6291 msgid "guestfs_aug_defnode"
6292 msgstr ""
6293
6294 #. type: verbatim
6295 #: ../src/guestfs-actions.pod:313
6296 #, no-wrap
6297 msgid ""
6298 " struct guestfs_int_bool *\n"
6299 " guestfs_aug_defnode (guestfs_h *g,\n"
6300 "                      const char *name,\n"
6301 "                      const char *expr,\n"
6302 "                      const char *val);\n"
6303 "\n"
6304 msgstr ""
6305
6306 #. type: textblock
6307 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6308 msgid "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6309 msgstr ""
6310
6311 #. type: textblock
6312 #: ../src/guestfs-actions.pod:322
6313 msgid ""
6314 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6315 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6316 "containing that single node."
6317 msgstr ""
6318
6319 #. type: textblock
6320 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6321 msgid ""
6322 "On success this returns a pair containing the number of nodes in the "
6323 "nodeset, and a boolean flag if a node was created."
6324 msgstr ""
6325
6326 #. type: textblock
6327 #: ../src/guestfs-actions.pod:330
6328 msgid ""
6329 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6330 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6331 msgstr ""
6332
6333 #. type: =head2
6334 #: ../src/guestfs-actions.pod:336
6335 msgid "guestfs_aug_defvar"
6336 msgstr ""
6337
6338 #. type: verbatim
6339 #: ../src/guestfs-actions.pod:338
6340 #, no-wrap
6341 msgid ""
6342 " int\n"
6343 " guestfs_aug_defvar (guestfs_h *g,\n"
6344 "                     const char *name,\n"
6345 "                     const char *expr);\n"
6346 "\n"
6347 msgstr ""
6348
6349 #. type: textblock
6350 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6351 msgid ""
6352 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6353 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6354 msgstr ""
6355
6356 #. type: textblock
6357 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6358 msgid ""
6359 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6360 "evaluates to something which is not a nodeset."
6361 msgstr ""
6362
6363 #. type: =head2
6364 #: ../src/guestfs-actions.pod:354
6365 msgid "guestfs_aug_get"
6366 msgstr ""
6367
6368 #. type: verbatim
6369 #: ../src/guestfs-actions.pod:356
6370 #, no-wrap
6371 msgid ""
6372 " char *\n"
6373 " guestfs_aug_get (guestfs_h *g,\n"
6374 "                  const char *augpath);\n"
6375 "\n"
6376 msgstr ""
6377
6378 #. type: textblock
6379 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6380 msgid ""
6381 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6382 "node, the C<value> is returned."
6383 msgstr ""
6384
6385 #. type: textblock
6386 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:863 ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:941 ../src/guestfs-actions.pod:957 ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1190 ../src/guestfs-actions.pod:1207 ../src/guestfs-actions.pod:1226 ../src/guestfs-actions.pod:1360 ../src/guestfs-actions.pod:1548 ../src/guestfs-actions.pod:1660 ../src/guestfs-actions.pod:1823 ../src/guestfs-actions.pod:1840 ../src/guestfs-actions.pod:1907 ../src/guestfs-actions.pod:1941 ../src/guestfs-actions.pod:1962 ../src/guestfs-actions.pod:2132 ../src/guestfs-actions.pod:2324 ../src/guestfs-actions.pod:2531 ../src/guestfs-actions.pod:2624 ../src/guestfs-actions.pod:2735 ../src/guestfs-actions.pod:2755 ../src/guestfs-actions.pod:2875 ../src/guestfs-actions.pod:2906 ../src/guestfs-actions.pod:2930 ../src/guestfs-actions.pod:2967 ../src/guestfs-actions.pod:3027 ../src/guestfs-actions.pod:3050 ../src/guestfs-actions.pod:3071 ../src/guestfs-actions.pod:3666 ../src/guestfs-actions.pod:4016 ../src/guestfs-actions.pod:4186 ../src/guestfs-actions.pod:4296 ../src/guestfs-actions.pod:5048 ../src/guestfs-actions.pod:5241 ../src/guestfs-actions.pod:5411 ../src/guestfs-actions.pod:5589 ../src/guestfs-actions.pod:5638 ../src/guestfs-actions.pod:6271 ../src/guestfs-actions.pod:6287 ../src/guestfs-actions.pod:6304 ../src/guestfs-actions.pod:6335 ../src/guestfs-actions.pod:7009 ../src/guestfs-actions.pod:7028 ../src/guestfs-actions.pod:7046 ../src/guestfs-actions.pod:7226 ../src/guestfs-actions.pod:7506
6387 msgid ""
6388 "This function returns a string, or NULL on error.  I<The caller must free "
6389 "the returned string after use>."
6390 msgstr ""
6391
6392 #. type: =head2
6393 #: ../src/guestfs-actions.pod:368
6394 msgid "guestfs_aug_init"
6395 msgstr ""
6396
6397 #. type: verbatim
6398 #: ../src/guestfs-actions.pod:370
6399 #, no-wrap
6400 msgid ""
6401 " int\n"
6402 " guestfs_aug_init (guestfs_h *g,\n"
6403 "                   const char *root,\n"
6404 "                   int flags);\n"
6405 "\n"
6406 msgstr ""
6407
6408 #. type: textblock
6409 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6410 msgid ""
6411 "Create a new Augeas handle for editing configuration files.  If there was "
6412 "any previous Augeas handle associated with this guestfs session, then it is "
6413 "closed."
6414 msgstr ""
6415
6416 #. type: textblock
6417 #: ../src/guestfs-actions.pod:379
6418 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6419 msgstr ""
6420
6421 #. type: textblock
6422 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6423 msgid "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6424 msgstr ""
6425
6426 #. type: textblock
6427 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6428 msgid ""
6429 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6430 "logical I<or> of the following integers:"
6431 msgstr ""
6432
6433 #. type: =item
6434 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6435 msgid "C<AUG_SAVE_BACKUP> = 1"
6436 msgstr ""
6437
6438 #. type: textblock
6439 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6440 msgid "Keep the original file with a C<.augsave> extension."
6441 msgstr ""
6442
6443 #. type: =item
6444 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6445 msgid "C<AUG_SAVE_NEWFILE> = 2"
6446 msgstr ""
6447
6448 #. type: textblock
6449 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6450 msgid ""
6451 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6452 "original.  Overrides C<AUG_SAVE_BACKUP>."
6453 msgstr ""
6454
6455 #. type: =item
6456 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6457 msgid "C<AUG_TYPE_CHECK> = 4"
6458 msgstr ""
6459
6460 #. type: textblock
6461 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6462 msgid "Typecheck lenses (can be expensive)."
6463 msgstr ""
6464
6465 #. type: =item
6466 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6467 msgid "C<AUG_NO_STDINC> = 8"
6468 msgstr ""
6469
6470 #. type: textblock
6471 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6472 msgid "Do not use standard load path for modules."
6473 msgstr ""
6474
6475 #. type: =item
6476 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6477 msgid "C<AUG_SAVE_NOOP> = 16"
6478 msgstr ""
6479
6480 #. type: textblock
6481 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6482 msgid "Make save a no-op, just record what would have been changed."
6483 msgstr ""
6484
6485 #. type: =item
6486 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6487 msgid "C<AUG_NO_LOAD> = 32"
6488 msgstr ""
6489
6490 #. type: textblock
6491 #: ../src/guestfs-actions.pod:414
6492 msgid "Do not load the tree in C<guestfs_aug_init>."
6493 msgstr ""
6494
6495 #. type: textblock
6496 #: ../src/guestfs-actions.pod:418
6497 msgid "To close the handle, you can call C<guestfs_aug_close>."
6498 msgstr ""
6499
6500 #. type: textblock
6501 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6502 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6503 msgstr ""
6504
6505 #. type: =head2
6506 #: ../src/guestfs-actions.pod:426
6507 msgid "guestfs_aug_insert"
6508 msgstr ""
6509
6510 #. type: verbatim
6511 #: ../src/guestfs-actions.pod:428
6512 #, no-wrap
6513 msgid ""
6514 " int\n"
6515 " guestfs_aug_insert (guestfs_h *g,\n"
6516 "                     const char *augpath,\n"
6517 "                     const char *label,\n"
6518 "                     int before);\n"
6519 "\n"
6520 msgstr ""
6521
6522 #. type: textblock
6523 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6524 msgid ""
6525 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6526 "or after C<path> (depending on the boolean flag C<before>)."
6527 msgstr ""
6528
6529 #. type: textblock
6530 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6531 msgid ""
6532 "C<path> must match exactly one existing node in the tree, and C<label> must "
6533 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6534 msgstr ""
6535
6536 #. type: =head2
6537 #: ../src/guestfs-actions.pod:446
6538 msgid "guestfs_aug_load"
6539 msgstr ""
6540
6541 #. type: verbatim
6542 #: ../src/guestfs-actions.pod:448
6543 #, no-wrap
6544 msgid ""
6545 " int\n"
6546 " guestfs_aug_load (guestfs_h *g);\n"
6547 "\n"
6548 msgstr ""
6549
6550 #. type: textblock
6551 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6552 msgid "Load files into the tree."
6553 msgstr ""
6554
6555 #. type: textblock
6556 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6557 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6558 msgstr ""
6559
6560 #. type: =head2
6561 #: ../src/guestfs-actions.pod:460
6562 msgid "guestfs_aug_ls"
6563 msgstr ""
6564
6565 #. type: verbatim
6566 #: ../src/guestfs-actions.pod:462
6567 #, no-wrap
6568 msgid ""
6569 " char **\n"
6570 " guestfs_aug_ls (guestfs_h *g,\n"
6571 "                 const char *augpath);\n"
6572 "\n"
6573 msgstr ""
6574
6575 #. type: textblock
6576 #: ../src/guestfs-actions.pod:466
6577 msgid ""
6578 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6579 "sorting the resulting nodes into alphabetical order."
6580 msgstr ""
6581
6582 #. type: textblock
6583 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485 ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1079 ../src/guestfs-actions.pod:1375 ../src/guestfs-actions.pod:1394 ../src/guestfs-actions.pod:1497 ../src/guestfs-actions.pod:1516 ../src/guestfs-actions.pod:1762 ../src/guestfs-actions.pod:2204 ../src/guestfs-actions.pod:2220 ../src/guestfs-actions.pod:2239 ../src/guestfs-actions.pod:2282 ../src/guestfs-actions.pod:2306 ../src/guestfs-actions.pod:2377 ../src/guestfs-actions.pod:2426 ../src/guestfs-actions.pod:2693 ../src/guestfs-actions.pod:2984 ../src/guestfs-actions.pod:3273 ../src/guestfs-actions.pod:3586 ../src/guestfs-actions.pod:3648 ../src/guestfs-actions.pod:3753 ../src/guestfs-actions.pod:4158 ../src/guestfs-actions.pod:4863 ../src/guestfs-actions.pod:5383 ../src/guestfs-actions.pod:5509 ../src/guestfs-actions.pod:5623 ../src/guestfs-actions.pod:6351 ../src/guestfs-actions.pod:6412 ../src/guestfs-actions.pod:6467 ../src/guestfs-actions.pod:6613 ../src/guestfs-actions.pod:6637 ../src/guestfs-actions.pod:7119 ../src/guestfs-actions.pod:7139 ../src/guestfs-actions.pod:7186 ../src/guestfs-actions.pod:7358 ../src/guestfs-actions.pod:7377 ../src/guestfs-actions.pod:7463 ../src/guestfs-actions.pod:7482 ../src/guestfs-actions.pod:7528 ../src/guestfs-actions.pod:7547
6584 msgid ""
6585 "This function returns a NULL-terminated array of strings (like "
6586 "L<environ(3)>), or NULL if there was an error.  I<The caller must free the "
6587 "strings and the array after use>."
6588 msgstr ""
6589
6590 #. type: textblock
6591 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1004 ../src/guestfs-actions.pod:1022 ../src/guestfs-actions.pod:1432 ../src/guestfs-actions.pod:3351 ../src/guestfs-actions.pod:3382 ../src/guestfs-actions.pod:3999 ../src/guestfs-actions.pod:4049 ../src/guestfs-actions.pod:4236 ../src/guestfs-actions.pod:4269 ../src/guestfs-actions.pod:4432 ../src/guestfs-actions.pod:4867 ../src/guestfs-actions.pod:5324 ../src/guestfs-actions.pod:5719 ../src/guestfs-actions.pod:5733 ../src/guestfs-actions.pod:5745 ../src/guestfs-actions.pod:6192 ../src/guestfs-actions.pod:6851 ../src/guestfs-actions.pod:6864 ../src/guestfs-actions.pod:7103 ../src/guestfs-actions.pod:7346
6592 msgid "(Added in 0.8)"
6593 msgstr ""
6594
6595 #. type: =head2
6596 #: ../src/guestfs-actions.pod:475
6597 msgid "guestfs_aug_match"
6598 msgstr ""
6599
6600 #. type: verbatim
6601 #: ../src/guestfs-actions.pod:477
6602 #, no-wrap
6603 msgid ""
6604 " char **\n"
6605 " guestfs_aug_match (guestfs_h *g,\n"
6606 "                    const char *augpath);\n"
6607 "\n"
6608 msgstr ""
6609
6610 #. type: textblock
6611 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
6612 msgid ""
6613 "Returns a list of paths which match the path expression C<path>.  The "
6614 "returned paths are sufficiently qualified so that they match exactly one "
6615 "node in the current tree."
6616 msgstr ""
6617
6618 #. type: =head2
6619 #: ../src/guestfs-actions.pod:491
6620 msgid "guestfs_aug_mv"
6621 msgstr ""
6622
6623 #. type: verbatim
6624 #: ../src/guestfs-actions.pod:493
6625 #, no-wrap
6626 msgid ""
6627 " int\n"
6628 " guestfs_aug_mv (guestfs_h *g,\n"
6629 "                 const char *src,\n"
6630 "                 const char *dest);\n"
6631 "\n"
6632 msgstr ""
6633
6634 #. type: textblock
6635 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
6636 msgid ""
6637 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6638 "C<dest> is overwritten if it exists."
6639 msgstr ""
6640
6641 #. type: =head2
6642 #: ../src/guestfs-actions.pod:505
6643 msgid "guestfs_aug_rm"
6644 msgstr ""
6645
6646 #. type: verbatim
6647 #: ../src/guestfs-actions.pod:507
6648 #, no-wrap
6649 msgid ""
6650 " int\n"
6651 " guestfs_aug_rm (guestfs_h *g,\n"
6652 "                 const char *augpath);\n"
6653 "\n"
6654 msgstr ""
6655
6656 #. type: textblock
6657 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
6658 msgid "Remove C<path> and all of its children."
6659 msgstr ""
6660
6661 #. type: textblock
6662 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
6663 msgid "On success this returns the number of entries which were removed."
6664 msgstr ""
6665
6666 #. type: =head2
6667 #: ../src/guestfs-actions.pod:519
6668 msgid "guestfs_aug_save"
6669 msgstr ""
6670
6671 #. type: verbatim
6672 #: ../src/guestfs-actions.pod:521
6673 #, no-wrap
6674 msgid ""
6675 " int\n"
6676 " guestfs_aug_save (guestfs_h *g);\n"
6677 "\n"
6678 msgstr ""
6679
6680 #. type: textblock
6681 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
6682 msgid "This writes all pending changes to disk."
6683 msgstr ""
6684
6685 #. type: textblock
6686 #: ../src/guestfs-actions.pod:526
6687 msgid ""
6688 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
6689 "are saved."
6690 msgstr ""
6691
6692 #. type: =head2
6693 #: ../src/guestfs-actions.pod:533
6694 msgid "guestfs_aug_set"
6695 msgstr ""
6696
6697 #. type: verbatim
6698 #: ../src/guestfs-actions.pod:535
6699 #, no-wrap
6700 msgid ""
6701 " int\n"
6702 " guestfs_aug_set (guestfs_h *g,\n"
6703 "                  const char *augpath,\n"
6704 "                  const char *val);\n"
6705 "\n"
6706 msgstr ""
6707
6708 #. type: textblock
6709 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
6710 msgid "Set the value associated with C<path> to C<val>."
6711 msgstr ""
6712
6713 #. type: textblock
6714 #: ../src/guestfs-actions.pod:542
6715 msgid ""
6716 "In the Augeas API, it is possible to clear a node by setting the value to "
6717 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
6718 "this call.  Instead you must use the C<guestfs_aug_clear> call."
6719 msgstr ""
6720
6721 #. type: =head2
6722 #: ../src/guestfs-actions.pod:551
6723 msgid "guestfs_available"
6724 msgstr ""
6725
6726 #. type: verbatim
6727 #: ../src/guestfs-actions.pod:553
6728 #, no-wrap
6729 msgid ""
6730 " int\n"
6731 " guestfs_available (guestfs_h *g,\n"
6732 "                    char *const *groups);\n"
6733 "\n"
6734 msgstr ""
6735
6736 #. type: textblock
6737 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
6738 msgid ""
6739 "This command is used to check the availability of some groups of "
6740 "functionality in the appliance, which not all builds of the libguestfs "
6741 "appliance will be able to provide."
6742 msgstr ""
6743
6744 #. type: textblock
6745 #: ../src/guestfs-actions.pod:561
6746 msgid ""
6747 "The libguestfs groups, and the functions that those groups correspond to, "
6748 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
6749 "runtime by calling C<guestfs_available_all_groups>."
6750 msgstr ""
6751
6752 #. type: textblock
6753 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
6754 msgid ""
6755 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", "
6756 "\"augeas\"]> would check for the availability of the Linux inotify functions "
6757 "and Augeas (configuration file editing) functions."
6758 msgstr ""
6759
6760 #. type: textblock
6761 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
6762 msgid "The command returns no error if I<all> requested groups are available."
6763 msgstr ""
6764
6765 #. type: textblock
6766 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
6767 msgid ""
6768 "It fails with an error if one or more of the requested groups is unavailable "
6769 "in the appliance."
6770 msgstr ""
6771
6772 #. type: textblock
6773 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
6774 msgid ""
6775 "If an unknown group name is included in the list of groups then an error is "
6776 "always returned."
6777 msgstr ""
6778
6779 #. type: textblock
6780 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
6781 msgid "I<Notes:>"
6782 msgstr ""
6783
6784 #. type: textblock
6785 #: ../src/guestfs-actions.pod:585
6786 msgid "You must call C<guestfs_launch> before calling this function."
6787 msgstr ""
6788
6789 #. type: textblock
6790 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
6791 msgid ""
6792 "The reason is because we don't know what groups are supported by the "
6793 "appliance/daemon until it is running and can be queried."
6794 msgstr ""
6795
6796 #. type: textblock
6797 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
6798 msgid ""
6799 "If a group of functions is available, this does not necessarily mean that "
6800 "they will work.  You still have to check for errors when calling individual "
6801 "API functions even if they are available."
6802 msgstr ""
6803
6804 #. type: textblock
6805 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
6806 msgid ""
6807 "It is usually the job of distro packagers to build complete functionality "
6808 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
6809 "with all requirements satisfied, will support everything."
6810 msgstr ""
6811
6812 #. type: textblock
6813 #: ../src/guestfs-actions.pod:607
6814 msgid ""
6815 "This call was added in version C<1.0.80>.  In previous versions of "
6816 "libguestfs all you could do would be to speculatively execute a command to "
6817 "find out if the daemon implemented it.  See also C<guestfs_version>."
6818 msgstr ""
6819
6820 #. type: textblock
6821 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1177
6822 msgid "(Added in 1.0.80)"
6823 msgstr ""
6824
6825 #. type: =head2
6826 #: ../src/guestfs-actions.pod:618
6827 msgid "guestfs_available_all_groups"
6828 msgstr ""
6829
6830 #. type: verbatim
6831 #: ../src/guestfs-actions.pod:620
6832 #, no-wrap
6833 msgid ""
6834 " char **\n"
6835 " guestfs_available_all_groups (guestfs_h *g);\n"
6836 "\n"
6837 msgstr ""
6838
6839 #. type: textblock
6840 #: ../src/guestfs-actions.pod:623
6841 msgid ""
6842 "This command returns a list of all optional groups that this daemon knows "
6843 "about.  Note this returns both supported and unsupported groups.  To find "
6844 "out which ones the daemon can actually support you have to call "
6845 "C<guestfs_available> on each member of the returned list."
6846 msgstr ""
6847
6848 #. type: textblock
6849 #: ../src/guestfs-actions.pod:629
6850 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
6851 msgstr ""
6852
6853 #. type: textblock
6854 #: ../src/guestfs-actions.pod:635
6855 msgid "(Added in 1.3.15)"
6856 msgstr ""
6857
6858 #. type: =head2
6859 #: ../src/guestfs-actions.pod:637
6860 msgid "guestfs_base64_in"
6861 msgstr ""
6862
6863 #. type: verbatim
6864 #: ../src/guestfs-actions.pod:639
6865 #, no-wrap
6866 msgid ""
6867 " int\n"
6868 " guestfs_base64_in (guestfs_h *g,\n"
6869 "                    const char *base64file,\n"
6870 "                    const char *filename);\n"
6871 "\n"
6872 msgstr ""
6873
6874 #. type: textblock
6875 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
6876 msgid "This command uploads base64-encoded data from C<base64file> to C<filename>."
6877 msgstr ""
6878
6879 #. type: textblock
6880 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
6881 msgid "(Added in 1.3.5)"
6882 msgstr ""
6883
6884 #. type: =head2
6885 #: ../src/guestfs-actions.pod:651
6886 msgid "guestfs_base64_out"
6887 msgstr ""
6888
6889 #. type: verbatim
6890 #: ../src/guestfs-actions.pod:653
6891 #, no-wrap
6892 msgid ""
6893 " int\n"
6894 " guestfs_base64_out (guestfs_h *g,\n"
6895 "                     const char *filename,\n"
6896 "                     const char *base64file);\n"
6897 "\n"
6898 msgstr ""
6899
6900 #. type: textblock
6901 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
6902 msgid ""
6903 "This command downloads the contents of C<filename>, writing it out to local "
6904 "file C<base64file> encoded as base64."
6905 msgstr ""
6906
6907 #. type: =head2
6908 #: ../src/guestfs-actions.pod:665
6909 msgid "guestfs_blockdev_flushbufs"
6910 msgstr ""
6911
6912 #. type: verbatim
6913 #: ../src/guestfs-actions.pod:667
6914 #, no-wrap
6915 msgid ""
6916 " int\n"
6917 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
6918 "                             const char *device);\n"
6919 "\n"
6920 msgstr ""
6921
6922 #. type: textblock
6923 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
6924 msgid "This tells the kernel to flush internal buffers associated with C<device>."
6925 msgstr ""
6926
6927 #. type: textblock
6928 #: ../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
6929 msgid "This uses the L<blockdev(8)> command."
6930 msgstr ""
6931
6932 #. type: textblock
6933 #: ../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
6934 msgid "(Added in 0.9.3)"
6935 msgstr ""
6936
6937 #. type: =head2
6938 #: ../src/guestfs-actions.pod:680
6939 msgid "guestfs_blockdev_getbsz"
6940 msgstr ""
6941
6942 #. type: verbatim
6943 #: ../src/guestfs-actions.pod:682
6944 #, no-wrap
6945 msgid ""
6946 " int\n"
6947 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
6948 "                          const char *device);\n"
6949 "\n"
6950 msgstr ""
6951
6952 #. type: textblock
6953 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
6954 msgid "This returns the block size of a device."
6955 msgstr ""
6956
6957 #. type: textblock
6958 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788 ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
6959 msgid ""
6960 "(Note this is different from both I<size in blocks> and I<filesystem block "
6961 "size>)."
6962 msgstr ""
6963
6964 #. type: =head2
6965 #: ../src/guestfs-actions.pod:697
6966 msgid "guestfs_blockdev_getro"
6967 msgstr ""
6968
6969 #. type: verbatim
6970 #: ../src/guestfs-actions.pod:699
6971 #, no-wrap
6972 msgid ""
6973 " int\n"
6974 " guestfs_blockdev_getro (guestfs_h *g,\n"
6975 "                         const char *device);\n"
6976 "\n"
6977 msgstr ""
6978
6979 #. type: textblock
6980 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
6981 msgid ""
6982 "Returns a boolean indicating if the block device is read-only (true if "
6983 "read-only, false if not)."
6984 msgstr ""
6985
6986 #. type: textblock
6987 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1415 ../src/guestfs-actions.pod:1430 ../src/guestfs-actions.pod:1917 ../src/guestfs-actions.pod:1928 ../src/guestfs-actions.pod:2000 ../src/guestfs-actions.pod:2055 ../src/guestfs-actions.pod:2070 ../src/guestfs-actions.pod:2095 ../src/guestfs-actions.pod:2118 ../src/guestfs-actions.pod:3091 ../src/guestfs-actions.pod:3108 ../src/guestfs-actions.pod:3127 ../src/guestfs-actions.pod:3290 ../src/guestfs-actions.pod:3304 ../src/guestfs-actions.pod:3319 ../src/guestfs-actions.pod:3333 ../src/guestfs-actions.pod:3349 ../src/guestfs-actions.pod:3364 ../src/guestfs-actions.pod:3380 ../src/guestfs-actions.pod:3394 ../src/guestfs-actions.pod:3407 ../src/guestfs-actions.pod:3421 ../src/guestfs-actions.pod:3436 ../src/guestfs-actions.pod:3451 ../src/guestfs-actions.pod:3464 ../src/guestfs-actions.pod:3476 ../src/guestfs-actions.pod:5012
6988 msgid "This function returns a C truth value on success or -1 on error."
6989 msgstr ""
6990
6991 #. type: =head2
6992 #: ../src/guestfs-actions.pod:712
6993 msgid "guestfs_blockdev_getsize64"
6994 msgstr ""
6995
6996 #. type: verbatim
6997 #: ../src/guestfs-actions.pod:714
6998 #, no-wrap
6999 msgid ""
7000 " int64_t\n"
7001 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7002 "                             const char *device);\n"
7003 "\n"
7004 msgstr ""
7005
7006 #. type: textblock
7007 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7008 msgid "This returns the size of the device in bytes."
7009 msgstr ""
7010
7011 #. type: textblock
7012 #: ../src/guestfs-actions.pod:720
7013 msgid "See also C<guestfs_blockdev_getsz>."
7014 msgstr ""
7015
7016 #. type: =head2
7017 #: ../src/guestfs-actions.pod:728
7018 msgid "guestfs_blockdev_getss"
7019 msgstr ""
7020
7021 #. type: verbatim
7022 #: ../src/guestfs-actions.pod:730
7023 #, no-wrap
7024 msgid ""
7025 " int\n"
7026 " guestfs_blockdev_getss (guestfs_h *g,\n"
7027 "                         const char *device);\n"
7028 "\n"
7029 msgstr ""
7030
7031 #. type: textblock
7032 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7033 msgid ""
7034 "This returns the size of sectors on a block device.  Usually 512, but can be "
7035 "larger for modern devices."
7036 msgstr ""
7037
7038 #. type: textblock
7039 #: ../src/guestfs-actions.pod:737
7040 msgid ""
7041 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7042 "that)."
7043 msgstr ""
7044
7045 #. type: =head2
7046 #: ../src/guestfs-actions.pod:746
7047 msgid "guestfs_blockdev_getsz"
7048 msgstr ""
7049
7050 #. type: verbatim
7051 #: ../src/guestfs-actions.pod:748
7052 #, no-wrap
7053 msgid ""
7054 " int64_t\n"
7055 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7056 "                         const char *device);\n"
7057 "\n"
7058 msgstr ""
7059
7060 #. type: textblock
7061 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7062 msgid ""
7063 "This returns the size of the device in units of 512-byte sectors (even if "
7064 "the sectorsize isn't 512 bytes ... weird)."
7065 msgstr ""
7066
7067 #. type: textblock
7068 #: ../src/guestfs-actions.pod:755
7069 msgid ""
7070 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7071 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7072 msgstr ""
7073
7074 #. type: =head2
7075 #: ../src/guestfs-actions.pod:765
7076 msgid "guestfs_blockdev_rereadpt"
7077 msgstr ""
7078
7079 #. type: verbatim
7080 #: ../src/guestfs-actions.pod:767
7081 #, no-wrap
7082 msgid ""
7083 " int\n"
7084 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7085 "                            const char *device);\n"
7086 "\n"
7087 msgstr ""
7088
7089 #. type: textblock
7090 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7091 msgid "Reread the partition table on C<device>."
7092 msgstr ""
7093
7094 #. type: =head2
7095 #: ../src/guestfs-actions.pod:779
7096 msgid "guestfs_blockdev_setbsz"
7097 msgstr ""
7098
7099 #. type: verbatim
7100 #: ../src/guestfs-actions.pod:781
7101 #, no-wrap
7102 msgid ""
7103 " int\n"
7104 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7105 "                          const char *device,\n"
7106 "                          int blocksize);\n"
7107 "\n"
7108 msgstr ""
7109
7110 #. type: textblock
7111 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7112 msgid "This sets the block size of a device."
7113 msgstr ""
7114
7115 #. type: =head2
7116 #: ../src/guestfs-actions.pod:797
7117 msgid "guestfs_blockdev_setro"
7118 msgstr ""
7119
7120 #. type: verbatim
7121 #: ../src/guestfs-actions.pod:799
7122 #, no-wrap
7123 msgid ""
7124 " int\n"
7125 " guestfs_blockdev_setro (guestfs_h *g,\n"
7126 "                         const char *device);\n"
7127 "\n"
7128 msgstr ""
7129
7130 #. type: textblock
7131 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7132 msgid "Sets the block device named C<device> to read-only."
7133 msgstr ""
7134
7135 #. type: =head2
7136 #: ../src/guestfs-actions.pod:811
7137 msgid "guestfs_blockdev_setrw"
7138 msgstr ""
7139
7140 #. type: verbatim
7141 #: ../src/guestfs-actions.pod:813
7142 #, no-wrap
7143 msgid ""
7144 " int\n"
7145 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7146 "                         const char *device);\n"
7147 "\n"
7148 msgstr ""
7149
7150 #. type: textblock
7151 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7152 msgid "Sets the block device named C<device> to read-write."
7153 msgstr ""
7154
7155 #. type: =head2
7156 #: ../src/guestfs-actions.pod:825
7157 msgid "guestfs_case_sensitive_path"
7158 msgstr ""
7159
7160 #. type: verbatim
7161 #: ../src/guestfs-actions.pod:827
7162 #, no-wrap
7163 msgid ""
7164 " char *\n"
7165 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7166 "                              const char *path);\n"
7167 "\n"
7168 msgstr ""
7169
7170 #. type: textblock
7171 #: ../src/guestfs-actions.pod:831 ../fish/guestfish-actions.pod:549
7172 msgid ""
7173 "This can be used to resolve case insensitive paths on a filesystem which is "
7174 "case sensitive.  The use case is to resolve paths which you have read from "
7175 "Windows configuration files or the Windows Registry, to the true path."
7176 msgstr ""
7177
7178 #. type: textblock
7179 #: ../src/guestfs-actions.pod:836 ../fish/guestfish-actions.pod:554
7180 msgid ""
7181 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7182 "(and probably others), which is that although the underlying filesystem is "
7183 "case-insensitive, the driver exports the filesystem to Linux as "
7184 "case-sensitive."
7185 msgstr ""
7186
7187 #. type: textblock
7188 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:559
7189 msgid ""
7190 "One consequence of this is that special directories such as C<c:\\windows> "
7191 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7192 "precise details of how they were created.  In Windows itself this would not "
7193 "be a problem."
7194 msgstr ""
7195
7196 #. type: textblock
7197 #: ../src/guestfs-actions.pod:847 ../fish/guestfish-actions.pod:565
7198 msgid ""
7199 "Bug or feature? You decide: "
7200 "L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>"
7201 msgstr ""
7202
7203 #. type: textblock
7204 #: ../src/guestfs-actions.pod:850 ../fish/guestfish-actions.pod:568
7205 msgid ""
7206 "This function resolves the true case of each element in the path and returns "
7207 "the case-sensitive path."
7208 msgstr ""
7209
7210 #. type: textblock
7211 #: ../src/guestfs-actions.pod:853
7212 msgid ""
7213 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return "
7214 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7215 "how the directories were originally created under Windows)."
7216 msgstr ""
7217
7218 #. type: textblock
7219 #: ../src/guestfs-actions.pod:858 ../fish/guestfish-actions.pod:576
7220 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7221 msgstr ""
7222
7223 #. type: textblock
7224 #: ../src/guestfs-actions.pod:861
7225 msgid "See also C<guestfs_realpath>."
7226 msgstr ""
7227
7228 #. type: textblock
7229 #: ../src/guestfs-actions.pod:866 ../src/guestfs-actions.pod:7031
7230 msgid "(Added in 1.0.75)"
7231 msgstr ""
7232
7233 #. type: =head2
7234 #: ../src/guestfs-actions.pod:868
7235 msgid "guestfs_cat"
7236 msgstr ""
7237
7238 #. type: verbatim
7239 #: ../src/guestfs-actions.pod:870
7240 #, no-wrap
7241 msgid ""
7242 " char *\n"
7243 " guestfs_cat (guestfs_h *g,\n"
7244 "              const char *path);\n"
7245 "\n"
7246 msgstr ""
7247
7248 #. type: textblock
7249 #: ../src/guestfs-actions.pod:874 ../src/guestfs-actions.pod:5499 ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3691
7250 msgid "Return the contents of the file named C<path>."
7251 msgstr ""
7252
7253 #. type: textblock
7254 #: ../src/guestfs-actions.pod:876
7255 msgid ""
7256 "Note that this function cannot correctly handle binary files (specifically, "
7257 "files containing C<\\0> character which is treated as end of string).  For "
7258 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7259 "functions which have a more complex interface."
7260 msgstr ""
7261
7262 #. type: textblock
7263 #: ../src/guestfs-actions.pod:884 ../src/guestfs-actions.pod:1063 ../src/guestfs-actions.pod:1083 ../src/guestfs-actions.pod:1379 ../src/guestfs-actions.pod:1398 ../src/guestfs-actions.pod:1501 ../src/guestfs-actions.pod:1520 ../src/guestfs-actions.pod:1766 ../src/guestfs-actions.pod:2224 ../src/guestfs-actions.pod:2243 ../src/guestfs-actions.pod:2286 ../src/guestfs-actions.pod:2310 ../src/guestfs-actions.pod:2327 ../src/guestfs-actions.pod:2356 ../src/guestfs-actions.pod:5281 ../src/guestfs-actions.pod:5307 ../src/guestfs-actions.pod:5438 ../src/guestfs-actions.pod:5464 ../src/guestfs-actions.pod:5488 ../src/guestfs-actions.pod:6416 ../src/guestfs-actions.pod:6471 ../src/guestfs-actions.pod:6617 ../src/guestfs-actions.pod:6641 ../src/guestfs-actions.pod:7310 ../src/guestfs-actions.pod:7336 ../src/guestfs-actions.pod:7362 ../src/guestfs-actions.pod:7381 ../src/guestfs-actions.pod:7467 ../src/guestfs-actions.pod:7486 ../src/guestfs-actions.pod:7532 ../src/guestfs-actions.pod:7551 ../fish/guestfish-actions.pod:592 ../fish/guestfish-actions.pod:727 ../fish/guestfish-actions.pod:739 ../fish/guestfish-actions.pod:915 ../fish/guestfish-actions.pod:925 ../fish/guestfish-actions.pod:992 ../fish/guestfish-actions.pod:1002 ../fish/guestfish-actions.pod:1194 ../fish/guestfish-actions.pod:1495 ../fish/guestfish-actions.pod:1505 ../fish/guestfish-actions.pod:1533 ../fish/guestfish-actions.pod:1548 ../fish/guestfish-actions.pod:1558 ../fish/guestfish-actions.pod:1577 ../fish/guestfish-actions.pod:3561 ../fish/guestfish-actions.pod:3576 ../fish/guestfish-actions.pod:3652 ../fish/guestfish-actions.pod:3669 ../fish/guestfish-actions.pod:3684 ../fish/guestfish-actions.pod:4338 ../fish/guestfish-actions.pod:4384 ../fish/guestfish-actions.pod:4469 ../fish/guestfish-actions.pod:4484 ../fish/guestfish-actions.pod:4894 ../fish/guestfish-actions.pod:4912 ../fish/guestfish-actions.pod:4929 ../fish/guestfish-actions.pod:4939 ../fish/guestfish-actions.pod:4988 ../fish/guestfish-actions.pod:4998 ../fish/guestfish-actions.pod:5027 ../fish/guestfish-actions.pod:5037
7264 msgid ""
7265 "Because of the message protocol, there is a transfer limit of somewhere "
7266 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7267 msgstr ""
7268
7269 #. type: textblock
7270 #: ../src/guestfs-actions.pod:887 ../src/guestfs-actions.pod:3590 ../src/guestfs-actions.pod:3652 ../src/guestfs-actions.pod:3669 ../src/guestfs-actions.pod:3757 ../src/guestfs-actions.pod:4162 ../src/guestfs-actions.pod:4176 ../src/guestfs-actions.pod:5387 ../src/guestfs-actions.pod:5401 ../src/guestfs-actions.pod:7190 ../src/guestfs-actions.pod:7204
7271 msgid "(Added in 0.4)"
7272 msgstr ""
7273
7274 #. type: =head2
7275 #: ../src/guestfs-actions.pod:889
7276 msgid "guestfs_checksum"
7277 msgstr ""
7278
7279 #. type: verbatim
7280 #: ../src/guestfs-actions.pod:891
7281 #, no-wrap
7282 msgid ""
7283 " char *\n"
7284 " guestfs_checksum (guestfs_h *g,\n"
7285 "                   const char *csumtype,\n"
7286 "                   const char *path);\n"
7287 "\n"
7288 msgstr ""
7289
7290 #. type: textblock
7291 #: ../src/guestfs-actions.pod:896 ../fish/guestfish-actions.pod:599
7292 msgid "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7293 msgstr ""
7294
7295 #. type: textblock
7296 #: ../src/guestfs-actions.pod:899 ../fish/guestfish-actions.pod:602
7297 msgid ""
7298 "The type of checksum to compute is given by the C<csumtype> parameter which "
7299 "must have one of the following values:"
7300 msgstr ""
7301
7302 #. type: =item
7303 #: ../src/guestfs-actions.pod:904 ../fish/guestfish-actions.pod:607
7304 msgid "C<crc>"
7305 msgstr ""
7306
7307 #. type: textblock
7308 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:609
7309 msgid ""
7310 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7311 "C<cksum> command."
7312 msgstr ""
7313
7314 #. type: =item
7315 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:612
7316 msgid "C<md5>"
7317 msgstr ""
7318
7319 #. type: textblock
7320 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:614
7321 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7322 msgstr ""
7323
7324 #. type: =item
7325 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:616
7326 msgid "C<sha1>"
7327 msgstr ""
7328
7329 #. type: textblock
7330 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:618
7331 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7332 msgstr ""
7333
7334 #. type: =item
7335 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:620
7336 msgid "C<sha224>"
7337 msgstr ""
7338
7339 #. type: textblock
7340 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:622
7341 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7342 msgstr ""
7343
7344 #. type: =item
7345 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:624
7346 msgid "C<sha256>"
7347 msgstr ""
7348
7349 #. type: textblock
7350 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:626
7351 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7352 msgstr ""
7353
7354 #. type: =item
7355 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:628
7356 msgid "C<sha384>"
7357 msgstr ""
7358
7359 #. type: textblock
7360 #: ../src/guestfs-actions.pod:927 ../fish/guestfish-actions.pod:630
7361 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7362 msgstr ""
7363
7364 #. type: =item
7365 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:632
7366 msgid "C<sha512>"
7367 msgstr ""
7368
7369 #. type: textblock
7370 #: ../src/guestfs-actions.pod:931 ../fish/guestfish-actions.pod:634
7371 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7372 msgstr ""
7373
7374 #. type: textblock
7375 #: ../src/guestfs-actions.pod:935 ../fish/guestfish-actions.pod:638
7376 msgid "The checksum is returned as a printable string."
7377 msgstr ""
7378
7379 #. type: textblock
7380 #: ../src/guestfs-actions.pod:937
7381 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7382 msgstr ""
7383
7384 #. type: textblock
7385 #: ../src/guestfs-actions.pod:939
7386 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7387 msgstr ""
7388
7389 #. type: textblock
7390 #: ../src/guestfs-actions.pod:944 ../src/guestfs-actions.pod:1252 ../src/guestfs-actions.pod:2086 ../src/guestfs-actions.pod:3306 ../src/guestfs-actions.pod:3335 ../src/guestfs-actions.pod:3396 ../src/guestfs-actions.pod:3423 ../src/guestfs-actions.pod:6887
7391 msgid "(Added in 1.0.2)"
7392 msgstr ""
7393
7394 #. type: =head2
7395 #: ../src/guestfs-actions.pod:946
7396 msgid "guestfs_checksum_device"
7397 msgstr ""
7398
7399 #. type: verbatim
7400 #: ../src/guestfs-actions.pod:948
7401 #, no-wrap
7402 msgid ""
7403 " char *\n"
7404 " guestfs_checksum_device (guestfs_h *g,\n"
7405 "                          const char *csumtype,\n"
7406 "                          const char *device);\n"
7407 "\n"
7408 msgstr ""
7409
7410 #. type: textblock
7411 #: ../src/guestfs-actions.pod:953
7412 msgid ""
7413 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7414 "device named C<device>.  For the types of checksums supported see the "
7415 "C<guestfs_checksum> command."
7416 msgstr ""
7417
7418 #. type: textblock
7419 #: ../src/guestfs-actions.pod:960 ../src/guestfs-actions.pod:4918 ../src/guestfs-actions.pod:4977 ../src/guestfs-actions.pod:5014 ../src/guestfs-actions.pod:5032 ../src/guestfs-actions.pod:5208 ../src/guestfs-actions.pod:6796 ../src/guestfs-actions.pod:6810 ../src/guestfs-actions.pod:7216
7420 msgid "(Added in 1.3.2)"
7421 msgstr ""
7422
7423 #. type: =head2
7424 #: ../src/guestfs-actions.pod:962
7425 msgid "guestfs_checksums_out"
7426 msgstr ""
7427
7428 #. type: verbatim
7429 #: ../src/guestfs-actions.pod:964
7430 #, no-wrap
7431 msgid ""
7432 " int\n"
7433 " guestfs_checksums_out (guestfs_h *g,\n"
7434 "                        const char *csumtype,\n"
7435 "                        const char *directory,\n"
7436 "                        const char *sumsfile);\n"
7437 "\n"
7438 msgstr ""
7439
7440 #. type: textblock
7441 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:656
7442 msgid ""
7443 "This command computes the checksums of all regular files in C<directory> and "
7444 "then emits a list of those checksums to the local output file C<sumsfile>."
7445 msgstr ""
7446
7447 #. type: textblock
7448 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:660
7449 msgid ""
7450 "This can be used for verifying the integrity of a virtual machine.  However "
7451 "to be properly secure you should pay attention to the output of the checksum "
7452 "command (it uses the ones from GNU coreutils).  In particular when the "
7453 "filename is not printable, coreutils uses a special backslash syntax.  For "
7454 "more information, see the GNU coreutils info file."
7455 msgstr ""
7456
7457 #. type: textblock
7458 #: ../src/guestfs-actions.pod:984
7459 msgid "(Added in 1.3.7)"
7460 msgstr ""
7461
7462 #. type: =head2
7463 #: ../src/guestfs-actions.pod:986
7464 msgid "guestfs_chmod"
7465 msgstr ""
7466
7467 #. type: verbatim
7468 #: ../src/guestfs-actions.pod:988
7469 #, no-wrap
7470 msgid ""
7471 " int\n"
7472 " guestfs_chmod (guestfs_h *g,\n"
7473 "                int mode,\n"
7474 "                const char *path);\n"
7475 "\n"
7476 msgstr ""
7477
7478 #. type: textblock
7479 #: ../src/guestfs-actions.pod:993 ../fish/guestfish-actions.pod:674
7480 msgid ""
7481 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7482 "supported."
7483 msgstr ""
7484
7485 #. type: textblock
7486 #: ../src/guestfs-actions.pod:996 ../fish/guestfish-actions.pod:677
7487 msgid ""
7488 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7489 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7490 "C<700>."
7491 msgstr ""
7492
7493 #. type: textblock
7494 #: ../src/guestfs-actions.pod:1000 ../src/guestfs-actions.pod:4413 ../src/guestfs-actions.pod:4610 ../src/guestfs-actions.pod:4629 ../src/guestfs-actions.pod:4648 ../fish/guestfish-actions.pod:681 ../fish/guestfish-actions.pod:3000 ../fish/guestfish-actions.pod:3129 ../fish/guestfish-actions.pod:3139 ../fish/guestfish-actions.pod:3149
7495 msgid "The mode actually set is affected by the umask."
7496 msgstr ""
7497
7498 #. type: =head2
7499 #: ../src/guestfs-actions.pod:1006
7500 msgid "guestfs_chown"
7501 msgstr ""
7502
7503 #. type: verbatim
7504 #: ../src/guestfs-actions.pod:1008
7505 #, no-wrap
7506 msgid ""
7507 " int\n"
7508 " guestfs_chown (guestfs_h *g,\n"
7509 "                int owner,\n"
7510 "                int group,\n"
7511 "                const char *path);\n"
7512 "\n"
7513 msgstr ""
7514
7515 #. type: textblock
7516 #: ../src/guestfs-actions.pod:1014 ../fish/guestfish-actions.pod:687
7517 msgid "Change the file owner to C<owner> and group to C<group>."
7518 msgstr ""
7519
7520 #. type: textblock
7521 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:3521 ../fish/guestfish-actions.pod:689 ../fish/guestfish-actions.pod:2458
7522 msgid ""
7523 "Only numeric uid and gid are supported.  If you want to use names, you will "
7524 "need to locate and parse the password file yourself (Augeas support makes "
7525 "this relatively easy)."
7526 msgstr ""
7527
7528 #. type: =head2
7529 #: ../src/guestfs-actions.pod:1024
7530 msgid "guestfs_command"
7531 msgstr ""
7532
7533 #. type: verbatim
7534 #: ../src/guestfs-actions.pod:1026
7535 #, no-wrap
7536 msgid ""
7537 " char *\n"
7538 " guestfs_command (guestfs_h *g,\n"
7539 "                  char *const *arguments);\n"
7540 "\n"
7541 msgstr ""
7542
7543 #. type: textblock
7544 #: ../src/guestfs-actions.pod:1030 ../fish/guestfish-actions.pod:697
7545 msgid ""
7546 "This call runs a command from the guest filesystem.  The filesystem must be "
7547 "mounted, and must contain a compatible operating system (ie. something "
7548 "Linux, with the same or compatible processor architecture)."
7549 msgstr ""
7550
7551 #. type: textblock
7552 #: ../src/guestfs-actions.pod:1035
7553 msgid ""
7554 "The single parameter is an argv-style list of arguments.  The first element "
7555 "is the name of the program to run.  Subsequent elements are parameters.  The "
7556 "list must be non-empty (ie. must contain a program name).  Note that the "
7557 "command runs directly, and is I<not> invoked via the shell (see "
7558 "C<guestfs_sh>)."
7559 msgstr ""
7560
7561 #. type: textblock
7562 #: ../src/guestfs-actions.pod:1042 ../fish/guestfish-actions.pod:709
7563 msgid "The return value is anything printed to I<stdout> by the command."
7564 msgstr ""
7565
7566 #. type: textblock
7567 #: ../src/guestfs-actions.pod:1045 ../fish/guestfish-actions.pod:712
7568 msgid ""
7569 "If the command returns a non-zero exit status, then this function returns an "
7570 "error message.  The error message string is the content of I<stderr> from "
7571 "the command."
7572 msgstr ""
7573
7574 #. type: textblock
7575 #: ../src/guestfs-actions.pod:1049 ../fish/guestfish-actions.pod:716
7576 msgid ""
7577 "The C<$PATH> environment variable will contain at least C</usr/bin> and "
7578 "C</bin>.  If you require a program from another location, you should provide "
7579 "the full path in the first parameter."
7580 msgstr ""
7581
7582 #. type: textblock
7583 #: ../src/guestfs-actions.pod:1054 ../fish/guestfish-actions.pod:721
7584 msgid ""
7585 "Shared libraries and data files required by the program must be available on "
7586 "filesystems which are mounted in the correct places.  It is the caller's "
7587 "responsibility to ensure all filesystems that are needed are mounted at the "
7588 "right locations."
7589 msgstr ""
7590
7591 #. type: textblock
7592 #: ../src/guestfs-actions.pod:1066 ../src/guestfs-actions.pod:1086 ../src/guestfs-actions.pod:1551
7593 msgid "(Added in 0.9.1)"
7594 msgstr ""
7595
7596 #. type: =head2
7597 #: ../src/guestfs-actions.pod:1068
7598 msgid "guestfs_command_lines"
7599 msgstr ""
7600
7601 #. type: verbatim
7602 #: ../src/guestfs-actions.pod:1070
7603 #, no-wrap
7604 msgid ""
7605 " char **\n"
7606 " guestfs_command_lines (guestfs_h *g,\n"
7607 "                        char *const *arguments);\n"
7608 "\n"
7609 msgstr ""
7610
7611 #. type: textblock
7612 #: ../src/guestfs-actions.pod:1074
7613 msgid ""
7614 "This is the same as C<guestfs_command>, but splits the result into a list of "
7615 "lines."
7616 msgstr ""
7617
7618 #. type: textblock
7619 #: ../src/guestfs-actions.pod:1077
7620 msgid "See also: C<guestfs_sh_lines>"
7621 msgstr ""
7622
7623 #. type: =head2
7624 #: ../src/guestfs-actions.pod:1088
7625 msgid "guestfs_config"
7626 msgstr ""
7627
7628 #. type: verbatim
7629 #: ../src/guestfs-actions.pod:1090
7630 #, no-wrap
7631 msgid ""
7632 " int\n"
7633 " guestfs_config (guestfs_h *g,\n"
7634 "                 const char *qemuparam,\n"
7635 "                 const char *qemuvalue);\n"
7636 "\n"
7637 msgstr ""
7638
7639 #. type: textblock
7640 #: ../src/guestfs-actions.pod:1095 ../fish/guestfish-actions.pod:746
7641 msgid ""
7642 "This can be used to add arbitrary qemu command line parameters of the form "
7643 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
7644 "setting some parameters which would interfere with parameters that we use."
7645 msgstr ""
7646
7647 #. type: textblock
7648 #: ../src/guestfs-actions.pod:1100 ../fish/guestfish-actions.pod:751
7649 msgid "The first character of C<param> string must be a C<-> (dash)."
7650 msgstr ""
7651
7652 #. type: textblock
7653 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:753
7654 msgid "C<value> can be NULL."
7655 msgstr ""
7656
7657 #. type: =head2
7658 #: ../src/guestfs-actions.pod:1108
7659 msgid "guestfs_copy_size"
7660 msgstr ""
7661
7662 #. type: verbatim
7663 #: ../src/guestfs-actions.pod:1110
7664 #, no-wrap
7665 msgid ""
7666 " int\n"
7667 " guestfs_copy_size (guestfs_h *g,\n"
7668 "                    const char *src,\n"
7669 "                    const char *dest,\n"
7670 "                    int64_t size);\n"
7671 "\n"
7672 msgstr ""
7673
7674 #. type: textblock
7675 #: ../src/guestfs-actions.pod:1116 ../fish/guestfish-actions.pod:759
7676 msgid ""
7677 "This command copies exactly C<size> bytes from one source device or file "
7678 "C<src> to another destination device or file C<dest>."
7679 msgstr ""
7680
7681 #. type: textblock
7682 #: ../src/guestfs-actions.pod:1119 ../fish/guestfish-actions.pod:762
7683 msgid ""
7684 "Note this will fail if the source is too short or if the destination is not "
7685 "large enough."
7686 msgstr ""
7687
7688 #. type: textblock
7689 #: ../src/guestfs-actions.pod:1124 ../src/guestfs-actions.pod:1247 ../src/guestfs-actions.pod:1278 ../src/guestfs-actions.pod:1323 ../src/guestfs-actions.pod:1700 ../src/guestfs-actions.pod:1722 ../src/guestfs-actions.pod:3502 ../src/guestfs-actions.pod:6882 ../src/guestfs-actions.pod:6916 ../src/guestfs-actions.pod:7403 ../src/guestfs-actions.pod:7422
7690 msgid ""
7691 "This long-running command can generate progress notification messages so "
7692 "that the caller can display a progress bar or indicator.  To receive these "
7693 "messages, the caller must register a progress event callback.  See "
7694 "L<guestfs(3)/GUESTFS_EVENT_PROGRESS>."
7695 msgstr ""
7696
7697 #. type: textblock
7698 #: ../src/guestfs-actions.pod:1129 ../src/guestfs-actions.pod:4189 ../src/guestfs-actions.pod:5414 ../src/guestfs-actions.pod:7123 ../src/guestfs-actions.pod:7143 ../src/guestfs-actions.pod:7229
7699 msgid "(Added in 1.0.87)"
7700 msgstr ""
7701
7702 #. type: =head2
7703 #: ../src/guestfs-actions.pod:1131
7704 msgid "guestfs_cp"
7705 msgstr ""
7706
7707 #. type: verbatim
7708 #: ../src/guestfs-actions.pod:1133
7709 #, no-wrap
7710 msgid ""
7711 " int\n"
7712 " guestfs_cp (guestfs_h *g,\n"
7713 "             const char *src,\n"
7714 "             const char *dest);\n"
7715 "\n"
7716 msgstr ""
7717
7718 #. type: textblock
7719 #: ../src/guestfs-actions.pod:1138 ../fish/guestfish-actions.pod:769
7720 msgid ""
7721 "This copies a file from C<src> to C<dest> where C<dest> is either a "
7722 "destination filename or destination directory."
7723 msgstr ""
7724
7725 #. type: textblock
7726 #: ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1157 ../src/guestfs-actions.pod:1229 ../src/guestfs-actions.pod:1303 ../src/guestfs-actions.pod:1417 ../src/guestfs-actions.pod:4881 ../src/guestfs-actions.pod:5258
7727 msgid "(Added in 1.0.18)"
7728 msgstr ""
7729
7730 #. type: =head2
7731 #: ../src/guestfs-actions.pod:1145
7732 msgid "guestfs_cp_a"
7733 msgstr ""
7734
7735 #. type: verbatim
7736 #: ../src/guestfs-actions.pod:1147
7737 #, no-wrap
7738 msgid ""
7739 " int\n"
7740 " guestfs_cp_a (guestfs_h *g,\n"
7741 "               const char *src,\n"
7742 "               const char *dest);\n"
7743 "\n"
7744 msgstr ""
7745
7746 #. type: textblock
7747 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:776
7748 msgid ""
7749 "This copies a file or directory from C<src> to C<dest> recursively using the "
7750 "C<cp -a> command."
7751 msgstr ""
7752
7753 #. type: =head2
7754 #: ../src/guestfs-actions.pod:1159
7755 msgid "guestfs_dd"
7756 msgstr ""
7757
7758 #. type: verbatim
7759 #: ../src/guestfs-actions.pod:1161
7760 #, no-wrap
7761 msgid ""
7762 " int\n"
7763 " guestfs_dd (guestfs_h *g,\n"
7764 "             const char *src,\n"
7765 "             const char *dest);\n"
7766 "\n"
7767 msgstr ""
7768
7769 #. type: textblock
7770 #: ../src/guestfs-actions.pod:1166 ../fish/guestfish-actions.pod:783
7771 msgid ""
7772 "This command copies from one source device or file C<src> to another "
7773 "destination device or file C<dest>.  Normally you would use this to copy to "
7774 "or from a device or partition, for example to duplicate a filesystem."
7775 msgstr ""
7776
7777 #. type: textblock
7778 #: ../src/guestfs-actions.pod:1171
7779 msgid ""
7780 "If the destination is a device, it must be as large or larger than the "
7781 "source file or device, otherwise the copy will fail.  This command cannot do "
7782 "partial copies (see C<guestfs_copy_size>)."
7783 msgstr ""
7784
7785 #. type: =head2
7786 #: ../src/guestfs-actions.pod:1179
7787 msgid "guestfs_df"
7788 msgstr ""
7789
7790 #. type: verbatim
7791 #: ../src/guestfs-actions.pod:1181
7792 #, no-wrap
7793 msgid ""
7794 " char *\n"
7795 " guestfs_df (guestfs_h *g);\n"
7796 "\n"
7797 msgstr ""
7798
7799 #. type: textblock
7800 #: ../src/guestfs-actions.pod:1184 ../fish/guestfish-actions.pod:796
7801 msgid "This command runs the C<df> command to report disk space used."
7802 msgstr ""
7803
7804 #. type: textblock
7805 #: ../src/guestfs-actions.pod:1186 ../src/guestfs-actions.pod:1203
7806 msgid ""
7807 "This command is mostly useful for interactive sessions.  It is I<not> "
7808 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
7809 "from programs."
7810 msgstr ""
7811
7812 #. type: textblock
7813 #: ../src/guestfs-actions.pod:1193 ../src/guestfs-actions.pod:1210 ../src/guestfs-actions.pod:1328 ../src/guestfs-actions.pod:2289 ../src/guestfs-actions.pod:2313 ../src/guestfs-actions.pod:2381 ../src/guestfs-actions.pod:4299 ../src/guestfs-actions.pod:4781 ../src/guestfs-actions.pod:6620 ../src/guestfs-actions.pod:6644 ../src/guestfs-actions.pod:7269 ../src/guestfs-actions.pod:7282 ../src/guestfs-actions.pod:7295
7814 msgid "(Added in 1.0.54)"
7815 msgstr ""
7816
7817 #. type: =head2
7818 #: ../src/guestfs-actions.pod:1195
7819 msgid "guestfs_df_h"
7820 msgstr ""
7821
7822 #. type: verbatim
7823 #: ../src/guestfs-actions.pod:1197
7824 #, no-wrap
7825 msgid ""
7826 " char *\n"
7827 " guestfs_df_h (guestfs_h *g);\n"
7828 "\n"
7829 msgstr ""
7830
7831 #. type: textblock
7832 #: ../src/guestfs-actions.pod:1200 ../fish/guestfish-actions.pod:806
7833 msgid ""
7834 "This command runs the C<df -h> command to report disk space used in "
7835 "human-readable format."
7836 msgstr ""
7837
7838 #. type: =head2
7839 #: ../src/guestfs-actions.pod:1212
7840 msgid "guestfs_dmesg"
7841 msgstr ""
7842
7843 #. type: verbatim
7844 #: ../src/guestfs-actions.pod:1214
7845 #, no-wrap
7846 msgid ""
7847 " char *\n"
7848 " guestfs_dmesg (guestfs_h *g);\n"
7849 "\n"
7850 msgstr ""
7851
7852 #. type: textblock
7853 #: ../src/guestfs-actions.pod:1217 ../fish/guestfish-actions.pod:817
7854 msgid ""
7855 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
7856 "This is sometimes useful for extended debugging of problems."
7857 msgstr ""
7858
7859 #. type: textblock
7860 #: ../src/guestfs-actions.pod:1221
7861 msgid ""
7862 "Another way to get the same information is to enable verbose messages with "
7863 "C<guestfs_set_verbose> or by setting the environment variable "
7864 "C<LIBGUESTFS_DEBUG=1> before running the program."
7865 msgstr ""
7866
7867 #. type: =head2
7868 #: ../src/guestfs-actions.pod:1231
7869 msgid "guestfs_download"
7870 msgstr ""
7871
7872 #. type: verbatim
7873 #: ../src/guestfs-actions.pod:1233
7874 #, no-wrap
7875 msgid ""
7876 " int\n"
7877 " guestfs_download (guestfs_h *g,\n"
7878 "                   const char *remotefilename,\n"
7879 "                   const char *filename);\n"
7880 "\n"
7881 msgstr ""
7882
7883 #. type: textblock
7884 #: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:1263 ../fish/guestfish-actions.pod:830 ../fish/guestfish-actions.pod:843
7885 msgid ""
7886 "Download file C<remotefilename> and save it as C<filename> on the local "
7887 "machine."
7888 msgstr ""
7889
7890 #. type: textblock
7891 #: ../src/guestfs-actions.pod:1241 ../src/guestfs-actions.pod:6876 ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4642
7892 msgid "C<filename> can also be a named pipe."
7893 msgstr ""
7894
7895 #. type: textblock
7896 #: ../src/guestfs-actions.pod:1243
7897 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
7898 msgstr ""
7899
7900 #. type: =head2
7901 #: ../src/guestfs-actions.pod:1254
7902 msgid "guestfs_download_offset"
7903 msgstr ""
7904
7905 #. type: verbatim
7906 #: ../src/guestfs-actions.pod:1256
7907 #, no-wrap
7908 msgid ""
7909 " int\n"
7910 " guestfs_download_offset (guestfs_h *g,\n"
7911 "                          const char *remotefilename,\n"
7912 "                          const char *filename,\n"
7913 "                          int64_t offset,\n"
7914 "                          int64_t size);\n"
7915 "\n"
7916 msgstr ""
7917
7918 #. type: textblock
7919 #: ../src/guestfs-actions.pod:1266 ../fish/guestfish-actions.pod:846
7920 msgid ""
7921 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
7922 "region must be within the file or device)."
7923 msgstr ""
7924
7925 #. type: textblock
7926 #: ../src/guestfs-actions.pod:1269
7927 msgid ""
7928 "Note that there is no limit on the amount of data that can be downloaded "
7929 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
7930 "full amount unless an error occurs."
7931 msgstr ""
7932
7933 #. type: textblock
7934 #: ../src/guestfs-actions.pod:1274
7935 msgid "See also C<guestfs_download>, C<guestfs_pread>."
7936 msgstr ""
7937
7938 #. type: textblock
7939 #: ../src/guestfs-actions.pod:1283 ../src/guestfs-actions.pod:6921
7940 msgid "(Added in 1.5.17)"
7941 msgstr ""
7942
7943 #. type: =head2
7944 #: ../src/guestfs-actions.pod:1285
7945 msgid "guestfs_drop_caches"
7946 msgstr ""
7947
7948 #. type: verbatim
7949 #: ../src/guestfs-actions.pod:1287
7950 #, no-wrap
7951 msgid ""
7952 " int\n"
7953 " guestfs_drop_caches (guestfs_h *g,\n"
7954 "                      int whattodrop);\n"
7955 "\n"
7956 msgstr ""
7957
7958 #. type: textblock
7959 #: ../src/guestfs-actions.pod:1291 ../fish/guestfish-actions.pod:862
7960 msgid ""
7961 "This instructs the guest kernel to drop its page cache, and/or dentries and "
7962 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
7963 "to drop, see L<http://linux-mm.org/Drop_Caches>"
7964 msgstr ""
7965
7966 #. type: textblock
7967 #: ../src/guestfs-actions.pod:1296 ../fish/guestfish-actions.pod:867
7968 msgid "Setting C<whattodrop> to 3 should drop everything."
7969 msgstr ""
7970
7971 #. type: textblock
7972 #: ../src/guestfs-actions.pod:1298 ../fish/guestfish-actions.pod:869
7973 msgid ""
7974 "This automatically calls L<sync(2)> before the operation, so that the "
7975 "maximum guest memory is freed."
7976 msgstr ""
7977
7978 #. type: =head2
7979 #: ../src/guestfs-actions.pod:1305
7980 msgid "guestfs_du"
7981 msgstr ""
7982
7983 #. type: verbatim
7984 #: ../src/guestfs-actions.pod:1307
7985 #, no-wrap
7986 msgid ""
7987 " int64_t\n"
7988 " guestfs_du (guestfs_h *g,\n"
7989 "             const char *path);\n"
7990 "\n"
7991 msgstr ""
7992
7993 #. type: textblock
7994 #: ../src/guestfs-actions.pod:1311 ../fish/guestfish-actions.pod:876
7995 msgid ""
7996 "This command runs the C<du -s> command to estimate file space usage for "
7997 "C<path>."
7998 msgstr ""
7999
8000 #. type: textblock
8001 #: ../src/guestfs-actions.pod:1314 ../fish/guestfish-actions.pod:879
8002 msgid ""
8003 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8004 "estimate includes the contents of the directory and all subdirectories "
8005 "(recursively)."
8006 msgstr ""
8007
8008 #. type: textblock
8009 #: ../src/guestfs-actions.pod:1318 ../fish/guestfish-actions.pod:883
8010 msgid "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8011 msgstr ""
8012
8013 #. type: =head2
8014 #: ../src/guestfs-actions.pod:1330
8015 msgid "guestfs_e2fsck_f"
8016 msgstr ""
8017
8018 #. type: verbatim
8019 #: ../src/guestfs-actions.pod:1332
8020 #, no-wrap
8021 msgid ""
8022 " int\n"
8023 " guestfs_e2fsck_f (guestfs_h *g,\n"
8024 "                   const char *device);\n"
8025 "\n"
8026 msgstr ""
8027
8028 #. type: textblock
8029 #: ../src/guestfs-actions.pod:1336 ../fish/guestfish-actions.pod:890
8030 msgid ""
8031 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8032 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8033 "clean (I<-f>)."
8034 msgstr ""
8035
8036 #. type: textblock
8037 #: ../src/guestfs-actions.pod:1340
8038 msgid ""
8039 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8040 "Normally you should use C<guestfs_fsck>."
8041 msgstr ""
8042
8043 #. type: textblock
8044 #: ../src/guestfs-actions.pod:1345
8045 msgid "(Added in 1.0.29)"
8046 msgstr ""
8047
8048 #. type: =head2
8049 #: ../src/guestfs-actions.pod:1347
8050 msgid "guestfs_echo_daemon"
8051 msgstr ""
8052
8053 #. type: verbatim
8054 #: ../src/guestfs-actions.pod:1349
8055 #, no-wrap
8056 msgid ""
8057 " char *\n"
8058 " guestfs_echo_daemon (guestfs_h *g,\n"
8059 "                      char *const *words);\n"
8060 "\n"
8061 msgstr ""
8062
8063 #. type: textblock
8064 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:901
8065 msgid ""
8066 "This command concatenates the list of C<words> passed with single spaces "
8067 "between them and returns the resulting string."
8068 msgstr ""
8069
8070 #. type: textblock
8071 #: ../src/guestfs-actions.pod:1356 ../fish/guestfish-actions.pod:904
8072 msgid "You can use this command to test the connection through to the daemon."
8073 msgstr ""
8074
8075 #. type: textblock
8076 #: ../src/guestfs-actions.pod:1358
8077 msgid "See also C<guestfs_ping_daemon>."
8078 msgstr ""
8079
8080 #. type: textblock
8081 #: ../src/guestfs-actions.pod:1363 ../src/guestfs-actions.pod:2097 ../src/guestfs-actions.pod:6092
8082 msgid "(Added in 1.0.69)"
8083 msgstr ""
8084
8085 #. type: =head2
8086 #: ../src/guestfs-actions.pod:1365
8087 msgid "guestfs_egrep"
8088 msgstr ""
8089
8090 #. type: verbatim
8091 #: ../src/guestfs-actions.pod:1367
8092 #, no-wrap
8093 msgid ""
8094 " char **\n"
8095 " guestfs_egrep (guestfs_h *g,\n"
8096 "                const char *regex,\n"
8097 "                const char *path);\n"
8098 "\n"
8099 msgstr ""
8100
8101 #. type: textblock
8102 #: ../src/guestfs-actions.pod:1372 ../fish/guestfish-actions.pod:912
8103 msgid "This calls the external C<egrep> program and returns the matching lines."
8104 msgstr ""
8105
8106 #. type: textblock
8107 #: ../src/guestfs-actions.pod:1382 ../src/guestfs-actions.pod:1401 ../src/guestfs-actions.pod:1458 ../src/guestfs-actions.pod:1504 ../src/guestfs-actions.pod:1523 ../src/guestfs-actions.pod:2227 ../src/guestfs-actions.pod:2246 ../src/guestfs-actions.pod:2402 ../src/guestfs-actions.pod:2415 ../src/guestfs-actions.pod:2430 ../src/guestfs-actions.pod:2476 ../src/guestfs-actions.pod:2498 ../src/guestfs-actions.pod:2511 ../src/guestfs-actions.pod:3682 ../src/guestfs-actions.pod:3696 ../src/guestfs-actions.pod:3709 ../src/guestfs-actions.pod:3723 ../src/guestfs-actions.pod:4709 ../src/guestfs-actions.pod:5592 ../src/guestfs-actions.pod:5641 ../src/guestfs-actions.pod:6488 ../src/guestfs-actions.pod:6500 ../src/guestfs-actions.pod:6513 ../src/guestfs-actions.pod:6526 ../src/guestfs-actions.pod:6548 ../src/guestfs-actions.pod:6561 ../src/guestfs-actions.pod:6574 ../src/guestfs-actions.pod:6587 ../src/guestfs-actions.pod:7365 ../src/guestfs-actions.pod:7384 ../src/guestfs-actions.pod:7470 ../src/guestfs-actions.pod:7489 ../src/guestfs-actions.pod:7535 ../src/guestfs-actions.pod:7554
8108 msgid "(Added in 1.0.66)"
8109 msgstr ""
8110
8111 #. type: =head2
8112 #: ../src/guestfs-actions.pod:1384
8113 msgid "guestfs_egrepi"
8114 msgstr ""
8115
8116 #. type: verbatim
8117 #: ../src/guestfs-actions.pod:1386
8118 #, no-wrap
8119 msgid ""
8120 " char **\n"
8121 " guestfs_egrepi (guestfs_h *g,\n"
8122 "                 const char *regex,\n"
8123 "                 const char *path);\n"
8124 "\n"
8125 msgstr ""
8126
8127 #. type: textblock
8128 #: ../src/guestfs-actions.pod:1391 ../fish/guestfish-actions.pod:922
8129 msgid "This calls the external C<egrep -i> program and returns the matching lines."
8130 msgstr ""
8131
8132 #. type: =head2
8133 #: ../src/guestfs-actions.pod:1403
8134 msgid "guestfs_equal"
8135 msgstr ""
8136
8137 #. type: verbatim
8138 #: ../src/guestfs-actions.pod:1405
8139 #, no-wrap
8140 msgid ""
8141 " int\n"
8142 " guestfs_equal (guestfs_h *g,\n"
8143 "                const char *file1,\n"
8144 "                const char *file2);\n"
8145 "\n"
8146 msgstr ""
8147
8148 #. type: textblock
8149 #: ../src/guestfs-actions.pod:1410 ../fish/guestfish-actions.pod:932
8150 msgid ""
8151 "This compares the two files C<file1> and C<file2> and returns true if their "
8152 "content is exactly equal, or false otherwise."
8153 msgstr ""
8154
8155 #. type: textblock
8156 #: ../src/guestfs-actions.pod:1413 ../fish/guestfish-actions.pod:935
8157 msgid "The external L<cmp(1)> program is used for the comparison."
8158 msgstr ""
8159
8160 #. type: =head2
8161 #: ../src/guestfs-actions.pod:1419
8162 msgid "guestfs_exists"
8163 msgstr ""
8164
8165 #. type: verbatim
8166 #: ../src/guestfs-actions.pod:1421
8167 #, no-wrap
8168 msgid ""
8169 " int\n"
8170 " guestfs_exists (guestfs_h *g,\n"
8171 "                 const char *path);\n"
8172 "\n"
8173 msgstr ""
8174
8175 #. type: textblock
8176 #: ../src/guestfs-actions.pod:1425 ../fish/guestfish-actions.pod:941
8177 msgid ""
8178 "This returns C<true> if and only if there is a file, directory (or anything) "
8179 "with the given C<path> name."
8180 msgstr ""
8181
8182 #. type: textblock
8183 #: ../src/guestfs-actions.pod:1428
8184 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8185 msgstr ""
8186
8187 #. type: =head2
8188 #: ../src/guestfs-actions.pod:1434
8189 msgid "guestfs_fallocate"
8190 msgstr ""
8191
8192 #. type: verbatim
8193 #: ../src/guestfs-actions.pod:1436
8194 #, no-wrap
8195 msgid ""
8196 " int\n"
8197 " guestfs_fallocate (guestfs_h *g,\n"
8198 "                    const char *path,\n"
8199 "                    int len);\n"
8200 "\n"
8201 msgstr ""
8202
8203 #. type: textblock
8204 #: ../src/guestfs-actions.pod:1441 ../src/guestfs-actions.pod:1467 ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:969
8205 msgid ""
8206 "This command preallocates a file (containing zero bytes) named C<path> of "
8207 "size C<len> bytes.  If the file exists already, it is overwritten."
8208 msgstr ""
8209
8210 #. type: textblock
8211 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:954
8212 msgid ""
8213 "Do not confuse this with the guestfish-specific C<alloc> command which "
8214 "allocates a file in the host and attaches it as a device."
8215 msgstr ""
8216
8217 #. type: textblock
8218 #: ../src/guestfs-actions.pod:1451 ../fish/guestfish-actions.pod:958
8219 msgid ""
8220 "This function is deprecated.  In new code, use the C<fallocate64> call "
8221 "instead."
8222 msgstr ""
8223
8224 #. type: =head2
8225 #: ../src/guestfs-actions.pod:1460
8226 msgid "guestfs_fallocate64"
8227 msgstr ""
8228
8229 #. type: verbatim
8230 #: ../src/guestfs-actions.pod:1462
8231 #, no-wrap
8232 msgid ""
8233 " int\n"
8234 " guestfs_fallocate64 (guestfs_h *g,\n"
8235 "                      const char *path,\n"
8236 "                      int64_t len);\n"
8237 "\n"
8238 msgstr ""
8239
8240 #. type: textblock
8241 #: ../src/guestfs-actions.pod:1471
8242 msgid ""
8243 "Note that this call allocates disk blocks for the file.  To create a sparse "
8244 "file use C<guestfs_truncate_size> instead."
8245 msgstr ""
8246
8247 #. type: textblock
8248 #: ../src/guestfs-actions.pod:1474
8249 msgid ""
8250 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8251 "oversight it only allowed 30 bit lengths to be specified, effectively "
8252 "limiting the maximum size of files created through that call to 1GB."
8253 msgstr ""
8254
8255 #. type: textblock
8256 #: ../src/guestfs-actions.pod:1479 ../fish/guestfish-actions.pod:981
8257 msgid ""
8258 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8259 "commands which create a file in the host and attach it as a device."
8260 msgstr ""
8261
8262 #. type: textblock
8263 #: ../src/guestfs-actions.pod:1485
8264 msgid "(Added in 1.3.17)"
8265 msgstr ""
8266
8267 #. type: =head2
8268 #: ../src/guestfs-actions.pod:1487
8269 msgid "guestfs_fgrep"
8270 msgstr ""
8271
8272 #. type: verbatim
8273 #: ../src/guestfs-actions.pod:1489
8274 #, no-wrap
8275 msgid ""
8276 " char **\n"
8277 " guestfs_fgrep (guestfs_h *g,\n"
8278 "                const char *pattern,\n"
8279 "                const char *path);\n"
8280 "\n"
8281 msgstr ""
8282
8283 #. type: textblock
8284 #: ../src/guestfs-actions.pod:1494 ../fish/guestfish-actions.pod:989
8285 msgid "This calls the external C<fgrep> program and returns the matching lines."
8286 msgstr ""
8287
8288 #. type: =head2
8289 #: ../src/guestfs-actions.pod:1506
8290 msgid "guestfs_fgrepi"
8291 msgstr ""
8292
8293 #. type: verbatim
8294 #: ../src/guestfs-actions.pod:1508
8295 #, no-wrap
8296 msgid ""
8297 " char **\n"
8298 " guestfs_fgrepi (guestfs_h *g,\n"
8299 "                 const char *pattern,\n"
8300 "                 const char *path);\n"
8301 "\n"
8302 msgstr ""
8303
8304 #. type: textblock
8305 #: ../src/guestfs-actions.pod:1513 ../fish/guestfish-actions.pod:999
8306 msgid "This calls the external C<fgrep -i> program and returns the matching lines."
8307 msgstr ""
8308
8309 #. type: =head2
8310 #: ../src/guestfs-actions.pod:1525
8311 msgid "guestfs_file"
8312 msgstr ""
8313
8314 #. type: verbatim
8315 #: ../src/guestfs-actions.pod:1527
8316 #, no-wrap
8317 msgid ""
8318 " char *\n"
8319 " guestfs_file (guestfs_h *g,\n"
8320 "               const char *path);\n"
8321 "\n"
8322 msgstr ""
8323
8324 #. type: textblock
8325 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1009
8326 msgid ""
8327 "This call uses the standard L<file(1)> command to determine the type or "
8328 "contents of the file."
8329 msgstr ""
8330
8331 #. type: textblock
8332 #: ../src/guestfs-actions.pod:1534 ../fish/guestfish-actions.pod:1012
8333 msgid ""
8334 "This call will also transparently look inside various types of compressed "
8335 "file."
8336 msgstr ""
8337
8338 #. type: textblock
8339 #: ../src/guestfs-actions.pod:1537 ../fish/guestfish-actions.pod:1015
8340 msgid ""
8341 "The exact command which runs is C<file -zb path>.  Note in particular that "
8342 "the filename is not prepended to the output (the I<-b> option)."
8343 msgstr ""
8344
8345 #. type: textblock
8346 #: ../src/guestfs-actions.pod:1541 ../fish/guestfish-actions.pod:1019
8347 msgid ""
8348 "The output depends on the output of the underlying L<file(1)> command and it "
8349 "can change in future in ways beyond our control.  In other words, the output "
8350 "is not guaranteed by the ABI."
8351 msgstr ""
8352
8353 #. type: textblock
8354 #: ../src/guestfs-actions.pod:1545
8355 msgid ""
8356 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8357 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc), C<guestfs_is_zero>."
8358 msgstr ""
8359
8360 #. type: =head2
8361 #: ../src/guestfs-actions.pod:1553
8362 msgid "guestfs_file_architecture"
8363 msgstr ""
8364
8365 #. type: verbatim
8366 #: ../src/guestfs-actions.pod:1555
8367 #, no-wrap
8368 msgid ""
8369 " char *\n"
8370 " guestfs_file_architecture (guestfs_h *g,\n"
8371 "                            const char *filename);\n"
8372 "\n"
8373 msgstr ""
8374
8375 #. type: textblock
8376 #: ../src/guestfs-actions.pod:1559 ../fish/guestfish-actions.pod:1030
8377 msgid ""
8378 "This detects the architecture of the binary C<filename>, and returns it if "
8379 "known."
8380 msgstr ""
8381
8382 #. type: textblock
8383 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1033
8384 msgid "Currently defined architectures are:"
8385 msgstr ""
8386
8387 #. type: =item
8388 #: ../src/guestfs-actions.pod:1566 ../fish/guestfish-actions.pod:1037
8389 msgid "\"i386\""
8390 msgstr ""
8391
8392 #. type: textblock
8393 #: ../src/guestfs-actions.pod:1568 ../fish/guestfish-actions.pod:1039
8394 msgid ""
8395 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8396 "irrespective of the precise processor requirements of the binary."
8397 msgstr ""
8398
8399 #. type: =item
8400 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1042
8401 msgid "\"x86_64\""
8402 msgstr ""
8403
8404 #. type: textblock
8405 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1044
8406 msgid "64 bit x86-64."
8407 msgstr ""
8408
8409 #. type: =item
8410 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1046
8411 msgid "\"sparc\""
8412 msgstr ""
8413
8414 #. type: textblock
8415 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1048
8416 msgid "32 bit SPARC."
8417 msgstr ""
8418
8419 #. type: =item
8420 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1050
8421 msgid "\"sparc64\""
8422 msgstr ""
8423
8424 #. type: textblock
8425 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1052
8426 msgid "64 bit SPARC V9 and above."
8427 msgstr ""
8428
8429 #. type: =item
8430 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1054
8431 msgid "\"ia64\""
8432 msgstr ""
8433
8434 #. type: textblock
8435 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1056
8436 msgid "Intel Itanium."
8437 msgstr ""
8438
8439 #. type: =item
8440 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1058
8441 msgid "\"ppc\""
8442 msgstr ""
8443
8444 #. type: textblock
8445 #: ../src/guestfs-actions.pod:1589 ../fish/guestfish-actions.pod:1060
8446 msgid "32 bit Power PC."
8447 msgstr ""
8448
8449 #. type: =item
8450 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1062
8451 msgid "\"ppc64\""
8452 msgstr ""
8453
8454 #. type: textblock
8455 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1064
8456 msgid "64 bit Power PC."
8457 msgstr ""
8458
8459 #. type: textblock
8460 #: ../src/guestfs-actions.pod:1597 ../fish/guestfish-actions.pod:1068
8461 msgid "Libguestfs may return other architecture strings in future."
8462 msgstr ""
8463
8464 #. type: textblock
8465 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1070
8466 msgid "The function works on at least the following types of files:"
8467 msgstr ""
8468
8469 #. type: textblock
8470 #: ../src/guestfs-actions.pod:1605 ../fish/guestfish-actions.pod:1076
8471 msgid "many types of Un*x and Linux binary"
8472 msgstr ""
8473
8474 #. type: textblock
8475 #: ../src/guestfs-actions.pod:1609 ../fish/guestfish-actions.pod:1080
8476 msgid "many types of Un*x and Linux shared library"
8477 msgstr ""
8478
8479 #. type: textblock
8480 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1084
8481 msgid "Windows Win32 and Win64 binaries"
8482 msgstr ""
8483
8484 #. type: textblock
8485 #: ../src/guestfs-actions.pod:1617 ../fish/guestfish-actions.pod:1088
8486 msgid "Windows Win32 and Win64 DLLs"
8487 msgstr ""
8488
8489 #. type: textblock
8490 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1090
8491 msgid "Win32 binaries and DLLs return C<i386>."
8492 msgstr ""
8493
8494 #. type: textblock
8495 #: ../src/guestfs-actions.pod:1621 ../fish/guestfish-actions.pod:1092
8496 msgid "Win64 binaries and DLLs return C<x86_64>."
8497 msgstr ""
8498
8499 #. type: textblock
8500 #: ../src/guestfs-actions.pod:1625 ../fish/guestfish-actions.pod:1096
8501 msgid "Linux kernel modules"
8502 msgstr ""
8503
8504 #. type: textblock
8505 #: ../src/guestfs-actions.pod:1629 ../fish/guestfish-actions.pod:1100
8506 msgid "Linux new-style initrd images"
8507 msgstr ""
8508
8509 #. type: textblock
8510 #: ../src/guestfs-actions.pod:1633 ../fish/guestfish-actions.pod:1104
8511 msgid "some non-x86 Linux vmlinuz kernels"
8512 msgstr ""
8513
8514 #. type: textblock
8515 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1108
8516 msgid "What it can't do currently:"
8517 msgstr ""
8518
8519 #. type: textblock
8520 #: ../src/guestfs-actions.pod:1643 ../fish/guestfish-actions.pod:1114
8521 msgid "static libraries (libfoo.a)"
8522 msgstr ""
8523
8524 #. type: textblock
8525 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1118
8526 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8527 msgstr ""
8528
8529 #. type: textblock
8530 #: ../src/guestfs-actions.pod:1651 ../fish/guestfish-actions.pod:1122
8531 msgid "x86 Linux vmlinuz kernels"
8532 msgstr ""
8533
8534 #. type: textblock
8535 #: ../src/guestfs-actions.pod:1653 ../fish/guestfish-actions.pod:1124
8536 msgid ""
8537 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8538 "compressed code, and are horribly hard to unpack.  If you want to find the "
8539 "architecture of a kernel, use the architecture of the associated initrd or "
8540 "kernel module(s) instead."
8541 msgstr ""
8542
8543 #. type: textblock
8544 #: ../src/guestfs-actions.pod:1663 ../src/guestfs-actions.pod:1826 ../src/guestfs-actions.pod:1843 ../src/guestfs-actions.pod:2534 ../src/guestfs-actions.pod:2627 ../src/guestfs-actions.pod:2697 ../src/guestfs-actions.pod:2785 ../src/guestfs-actions.pod:2806 ../src/guestfs-actions.pod:2849 ../src/guestfs-actions.pod:2933 ../src/guestfs-actions.pod:3030 ../src/guestfs-actions.pod:3277 ../src/guestfs-actions.pod:3409
8545 msgid "(Added in 1.5.3)"
8546 msgstr ""
8547
8548 #. type: =head2
8549 #: ../src/guestfs-actions.pod:1665
8550 msgid "guestfs_filesize"
8551 msgstr ""
8552
8553 #. type: verbatim
8554 #: ../src/guestfs-actions.pod:1667
8555 #, no-wrap
8556 msgid ""
8557 " int64_t\n"
8558 " guestfs_filesize (guestfs_h *g,\n"
8559 "                   const char *file);\n"
8560 "\n"
8561 msgstr ""
8562
8563 #. type: textblock
8564 #: ../src/guestfs-actions.pod:1671 ../fish/guestfish-actions.pod:1135
8565 msgid "This command returns the size of C<file> in bytes."
8566 msgstr ""
8567
8568 #. type: textblock
8569 #: ../src/guestfs-actions.pod:1673
8570 msgid ""
8571 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
8572 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
8573 "devices, use C<guestfs_blockdev_getsize64>."
8574 msgstr ""
8575
8576 #. type: textblock
8577 #: ../src/guestfs-actions.pod:1679
8578 msgid "(Added in 1.0.82)"
8579 msgstr ""
8580
8581 #. type: =head2
8582 #: ../src/guestfs-actions.pod:1681
8583 msgid "guestfs_fill"
8584 msgstr ""
8585
8586 #. type: verbatim
8587 #: ../src/guestfs-actions.pod:1683
8588 #, no-wrap
8589 msgid ""
8590 " int\n"
8591 " guestfs_fill (guestfs_h *g,\n"
8592 "               int c,\n"
8593 "               int len,\n"
8594 "               const char *path);\n"
8595 "\n"
8596 msgstr ""
8597
8598 #. type: textblock
8599 #: ../src/guestfs-actions.pod:1689 ../fish/guestfish-actions.pod:1145
8600 msgid ""
8601 "This command creates a new file called C<path>.  The initial content of the "
8602 "file is C<len> octets of C<c>, where C<c> must be a number in the range "
8603 "C<[0..255]>."
8604 msgstr ""
8605
8606 #. type: textblock
8607 #: ../src/guestfs-actions.pod:1693
8608 msgid ""
8609 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
8610 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
8611 "bytes use C<guestfs_fill_pattern>."
8612 msgstr ""
8613
8614 #. type: textblock
8615 #: ../src/guestfs-actions.pod:1705
8616 msgid "(Added in 1.0.79)"
8617 msgstr ""
8618
8619 #. type: =head2
8620 #: ../src/guestfs-actions.pod:1707
8621 msgid "guestfs_fill_pattern"
8622 msgstr ""
8623
8624 #. type: verbatim
8625 #: ../src/guestfs-actions.pod:1709
8626 #, no-wrap
8627 msgid ""
8628 " int\n"
8629 " guestfs_fill_pattern (guestfs_h *g,\n"
8630 "                       const char *pattern,\n"
8631 "                       int len,\n"
8632 "                       const char *path);\n"
8633 "\n"
8634 msgstr ""
8635
8636 #. type: textblock
8637 #: ../src/guestfs-actions.pod:1715
8638 msgid ""
8639 "This function is like C<guestfs_fill> except that it creates a new file of "
8640 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
8641 "pattern is truncated if necessary to ensure the length of the file is "
8642 "exactly C<len> bytes."
8643 msgstr ""
8644
8645 #. type: textblock
8646 #: ../src/guestfs-actions.pod:1727
8647 msgid "(Added in 1.3.12)"
8648 msgstr ""
8649
8650 #. type: =head2
8651 #: ../src/guestfs-actions.pod:1729
8652 msgid "guestfs_find"
8653 msgstr ""
8654
8655 #. type: verbatim
8656 #: ../src/guestfs-actions.pod:1731
8657 #, no-wrap
8658 msgid ""
8659 " char **\n"
8660 " guestfs_find (guestfs_h *g,\n"
8661 "               const char *directory);\n"
8662 "\n"
8663 msgstr ""
8664
8665 #. type: textblock
8666 #: ../src/guestfs-actions.pod:1735 ../fish/guestfish-actions.pod:1167
8667 msgid ""
8668 "This command lists out all files and directories, recursively, starting at "
8669 "C<directory>.  It is essentially equivalent to running the shell command "
8670 "C<find directory -print> but some post-processing happens on the output, "
8671 "described below."
8672 msgstr ""
8673
8674 #. type: textblock
8675 #: ../src/guestfs-actions.pod:1740 ../fish/guestfish-actions.pod:1172
8676 msgid ""
8677 "This returns a list of strings I<without any prefix>.  Thus if the directory "
8678 "structure was:"
8679 msgstr ""
8680
8681 #. type: verbatim
8682 #: ../src/guestfs-actions.pod:1743 ../fish/guestfish-actions.pod:1175
8683 #, no-wrap
8684 msgid ""
8685 " /tmp/a\n"
8686 " /tmp/b\n"
8687 " /tmp/c/d\n"
8688 "\n"
8689 msgstr ""
8690
8691 #. type: textblock
8692 #: ../src/guestfs-actions.pod:1747
8693 msgid "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
8694 msgstr ""
8695
8696 #. type: verbatim
8697 #: ../src/guestfs-actions.pod:1750 ../fish/guestfish-actions.pod:1182
8698 #, no-wrap
8699 msgid ""
8700 " a\n"
8701 " b\n"
8702 " c\n"
8703 " c/d\n"
8704 "\n"
8705 msgstr ""
8706
8707 #. type: textblock
8708 #: ../src/guestfs-actions.pod:1755 ../fish/guestfish-actions.pod:1187
8709 msgid "If C<directory> is not a directory, then this command returns an error."
8710 msgstr ""
8711
8712 #. type: textblock
8713 #: ../src/guestfs-actions.pod:1758 ../fish/guestfish-actions.pod:1190
8714 msgid "The returned list is sorted."
8715 msgstr ""
8716
8717 #. type: textblock
8718 #: ../src/guestfs-actions.pod:1760
8719 msgid "See also C<guestfs_find0>."
8720 msgstr ""
8721
8722 #. type: textblock
8723 #: ../src/guestfs-actions.pod:1769 ../src/guestfs-actions.pod:4126 ../src/guestfs-actions.pod:5676
8724 msgid "(Added in 1.0.27)"
8725 msgstr ""
8726
8727 #. type: =head2
8728 #: ../src/guestfs-actions.pod:1771
8729 msgid "guestfs_find0"
8730 msgstr ""
8731
8732 #. type: verbatim
8733 #: ../src/guestfs-actions.pod:1773
8734 #, no-wrap
8735 msgid ""
8736 " int\n"
8737 " guestfs_find0 (guestfs_h *g,\n"
8738 "                const char *directory,\n"
8739 "                const char *files);\n"
8740 "\n"
8741 msgstr ""
8742
8743 #. type: textblock
8744 #: ../src/guestfs-actions.pod:1778 ../fish/guestfish-actions.pod:1201
8745 msgid ""
8746 "This command lists out all files and directories, recursively, starting at "
8747 "C<directory>, placing the resulting list in the external file called "
8748 "C<files>."
8749 msgstr ""
8750
8751 #. type: textblock
8752 #: ../src/guestfs-actions.pod:1782
8753 msgid ""
8754 "This command works the same way as C<guestfs_find> with the following "
8755 "exceptions:"
8756 msgstr ""
8757
8758 #. type: textblock
8759 #: ../src/guestfs-actions.pod:1789 ../fish/guestfish-actions.pod:1212
8760 msgid "The resulting list is written to an external file."
8761 msgstr ""
8762
8763 #. type: textblock
8764 #: ../src/guestfs-actions.pod:1793 ../fish/guestfish-actions.pod:1216
8765 msgid ""
8766 "Items (filenames) in the result are separated by C<\\0> characters.  See "
8767 "L<find(1)> option I<-print0>."
8768 msgstr ""
8769
8770 #. type: textblock
8771 #: ../src/guestfs-actions.pod:1798 ../fish/guestfish-actions.pod:1221
8772 msgid "This command is not limited in the number of names that it can return."
8773 msgstr ""
8774
8775 #. type: textblock
8776 #: ../src/guestfs-actions.pod:1803 ../fish/guestfish-actions.pod:1226
8777 msgid "The result list is not sorted."
8778 msgstr ""
8779
8780 #. type: textblock
8781 #: ../src/guestfs-actions.pod:1809
8782 msgid "(Added in 1.0.74)"
8783 msgstr ""
8784
8785 #. type: =head2
8786 #: ../src/guestfs-actions.pod:1811
8787 msgid "guestfs_findfs_label"
8788 msgstr ""
8789
8790 #. type: verbatim
8791 #: ../src/guestfs-actions.pod:1813
8792 #, no-wrap
8793 msgid ""
8794 " char *\n"
8795 " guestfs_findfs_label (guestfs_h *g,\n"
8796 "                       const char *label);\n"
8797 "\n"
8798 msgstr ""
8799
8800 #. type: textblock
8801 #: ../src/guestfs-actions.pod:1817 ../fish/guestfish-actions.pod:1236
8802 msgid ""
8803 "This command searches the filesystems and returns the one which has the "
8804 "given label.  An error is returned if no such filesystem can be found."
8805 msgstr ""
8806
8807 #. type: textblock
8808 #: ../src/guestfs-actions.pod:1821
8809 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
8810 msgstr ""
8811
8812 #. type: =head2
8813 #: ../src/guestfs-actions.pod:1828
8814 msgid "guestfs_findfs_uuid"
8815 msgstr ""
8816
8817 #. type: verbatim
8818 #: ../src/guestfs-actions.pod:1830
8819 #, no-wrap
8820 msgid ""
8821 " char *\n"
8822 " guestfs_findfs_uuid (guestfs_h *g,\n"
8823 "                      const char *uuid);\n"
8824 "\n"
8825 msgstr ""
8826
8827 #. type: textblock
8828 #: ../src/guestfs-actions.pod:1834 ../fish/guestfish-actions.pod:1246
8829 msgid ""
8830 "This command searches the filesystems and returns the one which has the "
8831 "given UUID.  An error is returned if no such filesystem can be found."
8832 msgstr ""
8833
8834 #. type: textblock
8835 #: ../src/guestfs-actions.pod:1838
8836 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
8837 msgstr ""
8838
8839 #. type: =head2
8840 #: ../src/guestfs-actions.pod:1845
8841 msgid "guestfs_fsck"
8842 msgstr ""
8843
8844 #. type: verbatim
8845 #: ../src/guestfs-actions.pod:1847
8846 #, no-wrap
8847 msgid ""
8848 " int\n"
8849 " guestfs_fsck (guestfs_h *g,\n"
8850 "               const char *fstype,\n"
8851 "               const char *device);\n"
8852 "\n"
8853 msgstr ""
8854
8855 #. type: textblock
8856 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1256
8857 msgid ""
8858 "This runs the filesystem checker (fsck) on C<device> which should have "
8859 "filesystem type C<fstype>."
8860 msgstr ""
8861
8862 #. type: textblock
8863 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:1259
8864 msgid ""
8865 "The returned integer is the status.  See L<fsck(8)> for the list of status "
8866 "codes from C<fsck>."
8867 msgstr ""
8868
8869 #. type: textblock
8870 #: ../src/guestfs-actions.pod:1864 ../fish/guestfish-actions.pod:1268
8871 msgid "Multiple status codes can be summed together."
8872 msgstr ""
8873
8874 #. type: textblock
8875 #: ../src/guestfs-actions.pod:1868 ../fish/guestfish-actions.pod:1272
8876 msgid ""
8877 "A non-zero return code can mean \"success\", for example if errors have been "
8878 "corrected on the filesystem."
8879 msgstr ""
8880
8881 #. type: textblock
8882 #: ../src/guestfs-actions.pod:1873 ../fish/guestfish-actions.pod:1277
8883 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
8884 msgstr ""
8885
8886 #. type: textblock
8887 #: ../src/guestfs-actions.pod:1878 ../fish/guestfish-actions.pod:1282
8888 msgid "This command is entirely equivalent to running C<fsck -a -t fstype device>."
8889 msgstr ""
8890
8891 #. type: textblock
8892 #: ../src/guestfs-actions.pod:1882 ../src/guestfs-actions.pod:7408
8893 msgid "(Added in 1.0.16)"
8894 msgstr ""
8895
8896 #. type: =head2
8897 #: ../src/guestfs-actions.pod:1884
8898 msgid "guestfs_get_append"
8899 msgstr ""
8900
8901 #. type: verbatim
8902 #: ../src/guestfs-actions.pod:1886
8903 #, no-wrap
8904 msgid ""
8905 " const char *\n"
8906 " guestfs_get_append (guestfs_h *g);\n"
8907 "\n"
8908 msgstr ""
8909
8910 #. type: textblock
8911 #: ../src/guestfs-actions.pod:1889 ../fish/guestfish-actions.pod:1288
8912 msgid ""
8913 "Return the additional kernel options which are added to the guest kernel "
8914 "command line."
8915 msgstr ""
8916
8917 #. type: textblock
8918 #: ../src/guestfs-actions.pod:1892 ../fish/guestfish-actions.pod:1291
8919 msgid "If C<NULL> then no options are added."
8920 msgstr ""
8921
8922 #. type: textblock
8923 #: ../src/guestfs-actions.pod:1894
8924 msgid ""
8925 "This function returns a string which may be NULL.  There is no way to return "
8926 "an error from this function.  The string is owned by the guest handle and "
8927 "must I<not> be freed."
8928 msgstr ""
8929
8930 #. type: textblock
8931 #: ../src/guestfs-actions.pod:1898 ../src/guestfs-actions.pod:5354 ../src/guestfs-actions.pod:5834 ../src/guestfs-actions.pod:6255 ../src/guestfs-actions.pod:6274 ../src/guestfs-actions.pod:6290 ../src/guestfs-actions.pod:6314 ../src/guestfs-actions.pod:7071 ../src/guestfs-actions.pod:7089 ../src/guestfs-actions.pod:7451
8932 msgid "(Added in 1.0.26)"
8933 msgstr ""
8934
8935 #. type: =head2
8936 #: ../src/guestfs-actions.pod:1900
8937 msgid "guestfs_get_attach_method"
8938 msgstr ""
8939
8940 #. type: verbatim
8941 #: ../src/guestfs-actions.pod:1902
8942 #, no-wrap
8943 msgid ""
8944 " char *\n"
8945 " guestfs_get_attach_method (guestfs_h *g);\n"
8946 "\n"
8947 msgstr ""
8948
8949 #. type: textblock
8950 #: ../src/guestfs-actions.pod:1905
8951 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
8952 msgstr ""
8953
8954 #. type: =head2
8955 #: ../src/guestfs-actions.pod:1910
8956 msgid "guestfs_get_autosync"
8957 msgstr ""
8958
8959 #. type: verbatim
8960 #: ../src/guestfs-actions.pod:1912
8961 #, no-wrap
8962 msgid ""
8963 " int\n"
8964 " guestfs_get_autosync (guestfs_h *g);\n"
8965 "\n"
8966 msgstr ""
8967
8968 #. type: textblock
8969 #: ../src/guestfs-actions.pod:1915 ../fish/guestfish-actions.pod:1303
8970 msgid "Get the autosync flag."
8971 msgstr ""
8972
8973 #. type: =head2
8974 #: ../src/guestfs-actions.pod:1921
8975 msgid "guestfs_get_direct"
8976 msgstr ""
8977
8978 #. type: verbatim
8979 #: ../src/guestfs-actions.pod:1923
8980 #, no-wrap
8981 msgid ""
8982 " int\n"
8983 " guestfs_get_direct (guestfs_h *g);\n"
8984 "\n"
8985 msgstr ""
8986
8987 #. type: textblock
8988 #: ../src/guestfs-actions.pod:1926 ../fish/guestfish-actions.pod:1309
8989 msgid "Return the direct appliance mode flag."
8990 msgstr ""
8991
8992 #. type: textblock
8993 #: ../src/guestfs-actions.pod:1930 ../src/guestfs-actions.pod:5903
8994 msgid "(Added in 1.0.72)"
8995 msgstr ""
8996
8997 #. type: =head2
8998 #: ../src/guestfs-actions.pod:1932
8999 msgid "guestfs_get_e2label"
9000 msgstr ""
9001
9002 #. type: verbatim
9003 #: ../src/guestfs-actions.pod:1934
9004 #, no-wrap
9005 msgid ""
9006 " char *\n"
9007 " guestfs_get_e2label (guestfs_h *g,\n"
9008 "                      const char *device);\n"
9009 "\n"
9010 msgstr ""
9011
9012 #. type: textblock
9013 #: ../src/guestfs-actions.pod:1938 ../fish/guestfish-actions.pod:1315
9014 msgid "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9015 msgstr ""
9016
9017 #. type: textblock
9018 #: ../src/guestfs-actions.pod:1944 ../fish/guestfish-actions.pod:1318
9019 msgid ""
9020 "This function is deprecated.  In new code, use the C<vfs_label> call "
9021 "instead."
9022 msgstr ""
9023
9024 #. type: textblock
9025 #: ../src/guestfs-actions.pod:1951 ../src/guestfs-actions.pod:1972 ../src/guestfs-actions.pod:5921 ../src/guestfs-actions.pod:5940
9026 msgid "(Added in 1.0.15)"
9027 msgstr ""
9028
9029 #. type: =head2
9030 #: ../src/guestfs-actions.pod:1953
9031 msgid "guestfs_get_e2uuid"
9032 msgstr ""
9033
9034 #. type: verbatim
9035 #: ../src/guestfs-actions.pod:1955
9036 #, no-wrap
9037 msgid ""
9038 " char *\n"
9039 " guestfs_get_e2uuid (guestfs_h *g,\n"
9040 "                     const char *device);\n"
9041 "\n"
9042 msgstr ""
9043
9044 #. type: textblock
9045 #: ../src/guestfs-actions.pod:1959 ../fish/guestfish-actions.pod:1329
9046 msgid "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9047 msgstr ""
9048
9049 #. type: textblock
9050 #: ../src/guestfs-actions.pod:1965 ../fish/guestfish-actions.pod:1332
9051 msgid "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9052 msgstr ""
9053
9054 #. type: =head2
9055 #: ../src/guestfs-actions.pod:1974
9056 msgid "guestfs_get_memsize"
9057 msgstr ""
9058
9059 #. type: verbatim
9060 #: ../src/guestfs-actions.pod:1976
9061 #, no-wrap
9062 msgid ""
9063 " int\n"
9064 " guestfs_get_memsize (guestfs_h *g);\n"
9065 "\n"
9066 msgstr ""
9067
9068 #. type: textblock
9069 #: ../src/guestfs-actions.pod:1979 ../fish/guestfish-actions.pod:1343
9070 msgid "This gets the memory size in megabytes allocated to the qemu subprocess."
9071 msgstr ""
9072
9073 #. type: textblock
9074 #: ../src/guestfs-actions.pod:1982
9075 msgid ""
9076 "If C<guestfs_set_memsize> was not called on this handle, and if "
9077 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9078 "value for memsize."
9079 msgstr ""
9080
9081 #. type: textblock
9082 #: ../src/guestfs-actions.pod:1986 ../src/guestfs-actions.pod:2067 ../src/guestfs-actions.pod:5956 ../src/guestfs-actions.pod:6063 ../fish/guestfish-actions.pod:1350 ../fish/guestfish-actions.pod:1401 ../fish/guestfish-actions.pod:4017 ../fish/guestfish-actions.pod:4104
9083 msgid "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9084 msgstr ""
9085
9086 #. type: textblock
9087 #: ../src/guestfs-actions.pod:1991 ../src/guestfs-actions.pod:4417 ../src/guestfs-actions.pod:4614 ../src/guestfs-actions.pod:4633 ../src/guestfs-actions.pod:4652 ../src/guestfs-actions.pod:4664 ../src/guestfs-actions.pod:4681 ../src/guestfs-actions.pod:4694 ../src/guestfs-actions.pod:5579 ../src/guestfs-actions.pod:5961 ../src/guestfs-actions.pod:6222 ../src/guestfs-actions.pod:6837
9088 msgid "(Added in 1.0.55)"
9089 msgstr ""
9090
9091 #. type: =head2
9092 #: ../src/guestfs-actions.pod:1993
9093 msgid "guestfs_get_network"
9094 msgstr ""
9095
9096 #. type: verbatim
9097 #: ../src/guestfs-actions.pod:1995
9098 #, no-wrap
9099 msgid ""
9100 " int\n"
9101 " guestfs_get_network (guestfs_h *g);\n"
9102 "\n"
9103 msgstr ""
9104
9105 #. type: textblock
9106 #: ../src/guestfs-actions.pod:1998 ../fish/guestfish-actions.pod:1357
9107 msgid "This returns the enable network flag."
9108 msgstr ""
9109
9110 #. type: textblock
9111 #: ../src/guestfs-actions.pod:2002 ../src/guestfs-actions.pod:5980
9112 msgid "(Added in 1.5.4)"
9113 msgstr ""
9114
9115 #. type: =head2
9116 #: ../src/guestfs-actions.pod:2004
9117 msgid "guestfs_get_path"
9118 msgstr ""
9119
9120 #. type: verbatim
9121 #: ../src/guestfs-actions.pod:2006
9122 #, no-wrap
9123 msgid ""
9124 " const char *\n"
9125 " guestfs_get_path (guestfs_h *g);\n"
9126 "\n"
9127 msgstr ""
9128
9129 #. type: textblock
9130 #: ../src/guestfs-actions.pod:2009 ../fish/guestfish-actions.pod:1363
9131 msgid "Return the current search path."
9132 msgstr ""
9133
9134 #. type: textblock
9135 #: ../src/guestfs-actions.pod:2011 ../fish/guestfish-actions.pod:1365
9136 msgid ""
9137 "This is always non-NULL.  If it wasn't set already, then this will return "
9138 "the default path."
9139 msgstr ""
9140
9141 #. type: textblock
9142 #: ../src/guestfs-actions.pod:2014 ../src/guestfs-actions.pod:2043
9143 msgid ""
9144 "This function returns a string, or NULL on error.  The string is owned by "
9145 "the guest handle and must I<not> be freed."
9146 msgstr ""
9147
9148 #. type: =head2
9149 #: ../src/guestfs-actions.pod:2019
9150 msgid "guestfs_get_pid"
9151 msgstr ""
9152
9153 #. type: verbatim
9154 #: ../src/guestfs-actions.pod:2021
9155 #, no-wrap
9156 msgid ""
9157 " int\n"
9158 " guestfs_get_pid (guestfs_h *g);\n"
9159 "\n"
9160 msgstr ""
9161
9162 #. type: textblock
9163 #: ../src/guestfs-actions.pod:2024 ../fish/guestfish-actions.pod:1374
9164 msgid ""
9165 "Return the process ID of the qemu subprocess.  If there is no qemu "
9166 "subprocess, then this will return an error."
9167 msgstr ""
9168
9169 #. type: textblock
9170 #: ../src/guestfs-actions.pod:2027 ../fish/guestfish-actions.pod:1377
9171 msgid "This is an internal call used for debugging and testing."
9172 msgstr ""
9173
9174 #. type: textblock
9175 #: ../src/guestfs-actions.pod:2031
9176 msgid "(Added in 1.0.56)"
9177 msgstr ""
9178
9179 #. type: =head2
9180 #: ../src/guestfs-actions.pod:2033
9181 msgid "guestfs_get_qemu"
9182 msgstr ""
9183
9184 #. type: verbatim
9185 #: ../src/guestfs-actions.pod:2035
9186 #, no-wrap
9187 msgid ""
9188 " const char *\n"
9189 " guestfs_get_qemu (guestfs_h *g);\n"
9190 "\n"
9191 msgstr ""
9192
9193 #. type: textblock
9194 #: ../src/guestfs-actions.pod:2038 ../fish/guestfish-actions.pod:1383
9195 msgid "Return the current qemu binary."
9196 msgstr ""
9197
9198 #. type: textblock
9199 #: ../src/guestfs-actions.pod:2040 ../fish/guestfish-actions.pod:1385
9200 msgid ""
9201 "This is always non-NULL.  If it wasn't set already, then this will return "
9202 "the default qemu binary name."
9203 msgstr ""
9204
9205 #. type: textblock
9206 #: ../src/guestfs-actions.pod:2046 ../src/guestfs-actions.pod:6025
9207 msgid "(Added in 1.0.6)"
9208 msgstr ""
9209
9210 #. type: =head2
9211 #: ../src/guestfs-actions.pod:2048
9212 msgid "guestfs_get_recovery_proc"
9213 msgstr ""
9214
9215 #. type: verbatim
9216 #: ../src/guestfs-actions.pod:2050
9217 #, no-wrap
9218 msgid ""
9219 " int\n"
9220 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9221 "\n"
9222 msgstr ""
9223
9224 #. type: textblock
9225 #: ../src/guestfs-actions.pod:2053 ../fish/guestfish-actions.pod:1392
9226 msgid "Return the recovery process enabled flag."
9227 msgstr ""
9228
9229 #. type: textblock
9230 #: ../src/guestfs-actions.pod:2057 ../src/guestfs-actions.pod:3527 ../src/guestfs-actions.pod:3824 ../src/guestfs-actions.pod:4224 ../src/guestfs-actions.pod:4256 ../src/guestfs-actions.pod:5284 ../src/guestfs-actions.pod:5627 ../src/guestfs-actions.pod:6049 ../src/guestfs-actions.pod:6740 ../src/guestfs-actions.pod:6760 ../src/guestfs-actions.pod:6952
9231 msgid "(Added in 1.0.77)"
9232 msgstr ""
9233
9234 #. type: =head2
9235 #: ../src/guestfs-actions.pod:2059
9236 msgid "guestfs_get_selinux"
9237 msgstr ""
9238
9239 #. type: verbatim
9240 #: ../src/guestfs-actions.pod:2061
9241 #, no-wrap
9242 msgid ""
9243 " int\n"
9244 " guestfs_get_selinux (guestfs_h *g);\n"
9245 "\n"
9246 msgstr ""
9247
9248 #. type: textblock
9249 #: ../src/guestfs-actions.pod:2064
9250 msgid ""
9251 "This returns the current setting of the selinux flag which is passed to the "
9252 "appliance at boot time.  See C<guestfs_set_selinux>."
9253 msgstr ""
9254
9255 #. type: textblock
9256 #: ../src/guestfs-actions.pod:2072 ../src/guestfs-actions.pod:2135 ../src/guestfs-actions.pod:6068 ../src/guestfs-actions.pod:6126
9257 msgid "(Added in 1.0.67)"
9258 msgstr ""
9259
9260 #. type: =head2
9261 #: ../src/guestfs-actions.pod:2074
9262 msgid "guestfs_get_state"
9263 msgstr ""
9264
9265 #. type: verbatim
9266 #: ../src/guestfs-actions.pod:2076
9267 #, no-wrap
9268 msgid ""
9269 " int\n"
9270 " guestfs_get_state (guestfs_h *g);\n"
9271 "\n"
9272 msgstr ""
9273
9274 #. type: textblock
9275 #: ../src/guestfs-actions.pod:2079 ../fish/guestfish-actions.pod:1408
9276 msgid ""
9277 "This returns the current state as an opaque integer.  This is only useful "
9278 "for printing debug and internal error messages."
9279 msgstr ""
9280
9281 #. type: textblock
9282 #: ../src/guestfs-actions.pod:2082 ../src/guestfs-actions.pod:3302 ../src/guestfs-actions.pod:3331 ../src/guestfs-actions.pod:3392 ../src/guestfs-actions.pod:3419 ../fish/guestfish-actions.pod:1411 ../fish/guestfish-actions.pod:2325 ../fish/guestfish-actions.pod:2343 ../fish/guestfish-actions.pod:2381 ../fish/guestfish-actions.pod:2397
9283 msgid "For more information on states, see L<guestfs(3)>."
9284 msgstr ""
9285
9286 #. type: =head2
9287 #: ../src/guestfs-actions.pod:2088
9288 msgid "guestfs_get_trace"
9289 msgstr ""
9290
9291 #. type: verbatim
9292 #: ../src/guestfs-actions.pod:2090
9293 #, no-wrap
9294 msgid ""
9295 " int\n"
9296 " guestfs_get_trace (guestfs_h *g);\n"
9297 "\n"
9298 msgstr ""
9299
9300 #. type: textblock
9301 #: ../src/guestfs-actions.pod:2093 ../fish/guestfish-actions.pod:1417
9302 msgid "Return the command trace flag."
9303 msgstr ""
9304
9305 #. type: =head2
9306 #: ../src/guestfs-actions.pod:2099
9307 msgid "guestfs_get_umask"
9308 msgstr ""
9309
9310 #. type: verbatim
9311 #: ../src/guestfs-actions.pod:2101
9312 #, no-wrap
9313 msgid ""
9314 " int\n"
9315 " guestfs_get_umask (guestfs_h *g);\n"
9316 "\n"
9317 msgstr ""
9318
9319 #. type: textblock
9320 #: ../src/guestfs-actions.pod:2104
9321 msgid ""
9322 "Return the current umask.  By default the umask is C<022> unless it has been "
9323 "set by calling C<guestfs_umask>."
9324 msgstr ""
9325
9326 #. type: =head2
9327 #: ../src/guestfs-actions.pod:2111
9328 msgid "guestfs_get_verbose"
9329 msgstr ""
9330
9331 #. type: verbatim
9332 #: ../src/guestfs-actions.pod:2113
9333 #, no-wrap
9334 msgid ""
9335 " int\n"
9336 " guestfs_get_verbose (guestfs_h *g);\n"
9337 "\n"
9338 msgstr ""
9339
9340 #. type: textblock
9341 #: ../src/guestfs-actions.pod:2116 ../fish/guestfish-actions.pod:1430
9342 msgid "This returns the verbose messages flag."
9343 msgstr ""
9344
9345 #. type: =head2
9346 #: ../src/guestfs-actions.pod:2122
9347 msgid "guestfs_getcon"
9348 msgstr ""
9349
9350 #. type: verbatim
9351 #: ../src/guestfs-actions.pod:2124
9352 #, no-wrap
9353 msgid ""
9354 " char *\n"
9355 " guestfs_getcon (guestfs_h *g);\n"
9356 "\n"
9357 msgstr ""
9358
9359 #. type: textblock
9360 #: ../src/guestfs-actions.pod:2127 ../fish/guestfish-actions.pod:1436
9361 msgid "This gets the SELinux security context of the daemon."
9362 msgstr ""
9363
9364 #. type: textblock
9365 #: ../src/guestfs-actions.pod:2129
9366 msgid "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9367 msgstr ""
9368
9369 #. type: =head2
9370 #: ../src/guestfs-actions.pod:2137
9371 msgid "guestfs_getxattr"
9372 msgstr ""
9373
9374 #. type: verbatim
9375 #: ../src/guestfs-actions.pod:2139
9376 #, no-wrap
9377 msgid ""
9378 " char *\n"
9379 " guestfs_getxattr (guestfs_h *g,\n"
9380 "                   const char *path,\n"
9381 "                   const char *name,\n"
9382 "                   size_t *size_r);\n"
9383 "\n"
9384 msgstr ""
9385
9386 #. type: textblock
9387 #: ../src/guestfs-actions.pod:2145
9388 msgid ""
9389 "Get a single extended attribute from file C<path> named C<name>.  This call "
9390 "follows symlinks.  If you want to lookup an extended attribute for the "
9391 "symlink itself, use C<guestfs_lgetxattr>."
9392 msgstr ""
9393
9394 #. type: textblock
9395 #: ../src/guestfs-actions.pod:2149 ../src/guestfs-actions.pod:3541
9396 msgid ""
9397 "Normally it is better to get all extended attributes from a file in one go "
9398 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9399 "implementations are buggy and do not provide a way to list out attributes.  "
9400 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9401 "extended attributes you want in advance and call this function."
9402 msgstr ""
9403
9404 #. type: textblock
9405 #: ../src/guestfs-actions.pod:2156 ../src/guestfs-actions.pod:3548 ../fish/guestfish-actions.pod:1456 ../fish/guestfish-actions.pod:2477
9406 msgid ""
9407 "Extended attribute values are blobs of binary data.  If there is no extended "
9408 "attribute named C<name>, this returns an error."
9409 msgstr ""
9410
9411 #. type: textblock
9412 #: ../src/guestfs-actions.pod:2159
9413 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9414 msgstr ""
9415
9416 #. type: textblock
9417 #: ../src/guestfs-actions.pod:2161 ../src/guestfs-actions.pod:2352 ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:5277 ../src/guestfs-actions.pod:5303 ../src/guestfs-actions.pod:5484
9418 msgid ""
9419 "This function returns a buffer, or NULL on error.  The size of the returned "
9420 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9421 "after use>."
9422 msgstr ""
9423
9424 #. type: textblock
9425 #: ../src/guestfs-actions.pod:2165 ../src/guestfs-actions.pod:3557
9426 msgid "(Added in 1.7.24)"
9427 msgstr ""
9428
9429 #. type: =head2
9430 #: ../src/guestfs-actions.pod:2167
9431 msgid "guestfs_getxattrs"
9432 msgstr ""
9433
9434 #. type: verbatim
9435 #: ../src/guestfs-actions.pod:2169
9436 #, no-wrap
9437 msgid ""
9438 " struct guestfs_xattr_list *\n"
9439 " guestfs_getxattrs (guestfs_h *g,\n"
9440 "                    const char *path);\n"
9441 "\n"
9442 msgstr ""
9443
9444 #. type: textblock
9445 #: ../src/guestfs-actions.pod:2173 ../fish/guestfish-actions.pod:1465
9446 msgid "This call lists the extended attributes of the file or directory C<path>."
9447 msgstr ""
9448
9449 #. type: textblock
9450 #: ../src/guestfs-actions.pod:2176 ../fish/guestfish-actions.pod:1468
9451 msgid ""
9452 "At the system call level, this is a combination of the L<listxattr(2)> and "
9453 "L<getxattr(2)> calls."
9454 msgstr ""
9455
9456 #. type: textblock
9457 #: ../src/guestfs-actions.pod:2179
9458 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9459 msgstr ""
9460
9461 #. type: textblock
9462 #: ../src/guestfs-actions.pod:2181 ../src/guestfs-actions.pod:3569 ../src/guestfs-actions.pod:4220
9463 msgid ""
9464 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9465 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9466 msgstr ""
9467
9468 #. type: textblock
9469 #: ../src/guestfs-actions.pod:2185 ../src/guestfs-actions.pod:3573 ../src/guestfs-actions.pod:3738 ../src/guestfs-actions.pod:3774 ../src/guestfs-actions.pod:5657 ../src/guestfs-actions.pod:6145 ../src/guestfs-actions.pod:7516
9470 msgid "(Added in 1.0.59)"
9471 msgstr ""
9472
9473 #. type: =head2
9474 #: ../src/guestfs-actions.pod:2187
9475 msgid "guestfs_glob_expand"
9476 msgstr ""
9477
9478 #. type: verbatim
9479 #: ../src/guestfs-actions.pod:2189
9480 #, no-wrap
9481 msgid ""
9482 " char **\n"
9483 " guestfs_glob_expand (guestfs_h *g,\n"
9484 "                      const char *pattern);\n"
9485 "\n"
9486 msgstr ""
9487
9488 #. type: textblock
9489 #: ../src/guestfs-actions.pod:2193 ../fish/guestfish-actions.pod:1477
9490 msgid ""
9491 "This command searches for all the pathnames matching C<pattern> according to "
9492 "the wildcard expansion rules used by the shell."
9493 msgstr ""
9494
9495 #. type: textblock
9496 #: ../src/guestfs-actions.pod:2197 ../fish/guestfish-actions.pod:1481
9497 msgid "If no paths match, then this returns an empty list (note: not an error)."
9498 msgstr ""
9499
9500 #. type: textblock
9501 #: ../src/guestfs-actions.pod:2200 ../fish/guestfish-actions.pod:1484
9502 msgid ""
9503 "It is just a wrapper around the C L<glob(3)> function with flags "
9504 "C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
9505 msgstr ""
9506
9507 #. type: textblock
9508 #: ../src/guestfs-actions.pod:2208 ../src/guestfs-actions.pod:6338 ../src/guestfs-actions.pod:6355
9509 msgid "(Added in 1.0.50)"
9510 msgstr ""
9511
9512 #. type: =head2
9513 #: ../src/guestfs-actions.pod:2210
9514 msgid "guestfs_grep"
9515 msgstr ""
9516
9517 #. type: verbatim
9518 #: ../src/guestfs-actions.pod:2212
9519 #, no-wrap
9520 msgid ""
9521 " char **\n"
9522 " guestfs_grep (guestfs_h *g,\n"
9523 "               const char *regex,\n"
9524 "               const char *path);\n"
9525 "\n"
9526 msgstr ""
9527
9528 #. type: textblock
9529 #: ../src/guestfs-actions.pod:2217 ../fish/guestfish-actions.pod:1492
9530 msgid "This calls the external C<grep> program and returns the matching lines."
9531 msgstr ""
9532
9533 #. type: =head2
9534 #: ../src/guestfs-actions.pod:2229
9535 msgid "guestfs_grepi"
9536 msgstr ""
9537
9538 #. type: verbatim
9539 #: ../src/guestfs-actions.pod:2231
9540 #, no-wrap
9541 msgid ""
9542 " char **\n"
9543 " guestfs_grepi (guestfs_h *g,\n"
9544 "                const char *regex,\n"
9545 "                const char *path);\n"
9546 "\n"
9547 msgstr ""
9548
9549 #. type: textblock
9550 #: ../src/guestfs-actions.pod:2236 ../fish/guestfish-actions.pod:1502
9551 msgid "This calls the external C<grep -i> program and returns the matching lines."
9552 msgstr ""
9553
9554 #. type: =head2
9555 #: ../src/guestfs-actions.pod:2248
9556 msgid "guestfs_grub_install"
9557 msgstr ""
9558
9559 #. type: verbatim
9560 #: ../src/guestfs-actions.pod:2250
9561 #, no-wrap
9562 msgid ""
9563 " int\n"
9564 " guestfs_grub_install (guestfs_h *g,\n"
9565 "                       const char *root,\n"
9566 "                       const char *device);\n"
9567 "\n"
9568 msgstr ""
9569
9570 #. type: textblock
9571 #: ../src/guestfs-actions.pod:2255 ../fish/guestfish-actions.pod:1512
9572 msgid ""
9573 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
9574 "the root directory being C<root>."
9575 msgstr ""
9576
9577 #. type: textblock
9578 #: ../src/guestfs-actions.pod:2258 ../fish/guestfish-actions.pod:1515
9579 msgid ""
9580 "Note: If grub-install reports the error \"No suitable drive was found in the "
9581 "generated device map.\" it may be that you need to create a "
9582 "C</boot/grub/device.map> file first that contains the mapping between grub "
9583 "device names and Linux device names.  It is usually sufficient to create a "
9584 "file containing:"
9585 msgstr ""
9586
9587 #. type: verbatim
9588 #: ../src/guestfs-actions.pod:2265 ../fish/guestfish-actions.pod:1522
9589 #, no-wrap
9590 msgid ""
9591 " (hd0) /dev/vda\n"
9592 "\n"
9593 msgstr ""
9594
9595 #. type: textblock
9596 #: ../src/guestfs-actions.pod:2267 ../fish/guestfish-actions.pod:1524
9597 msgid "replacing C</dev/vda> with the name of the installation device."
9598 msgstr ""
9599
9600 #. type: textblock
9601 #: ../src/guestfs-actions.pod:2271
9602 msgid "(Added in 1.0.17)"
9603 msgstr ""
9604
9605 #. type: =head2
9606 #: ../src/guestfs-actions.pod:2273
9607 msgid "guestfs_head"
9608 msgstr ""
9609
9610 #. type: verbatim
9611 #: ../src/guestfs-actions.pod:2275
9612 #, no-wrap
9613 msgid ""
9614 " char **\n"
9615 " guestfs_head (guestfs_h *g,\n"
9616 "               const char *path);\n"
9617 "\n"
9618 msgstr ""
9619
9620 #. type: textblock
9621 #: ../src/guestfs-actions.pod:2279 ../fish/guestfish-actions.pod:1530
9622 msgid ""
9623 "This command returns up to the first 10 lines of a file as a list of "
9624 "strings."
9625 msgstr ""
9626
9627 #. type: =head2
9628 #: ../src/guestfs-actions.pod:2291
9629 msgid "guestfs_head_n"
9630 msgstr ""
9631
9632 #. type: verbatim
9633 #: ../src/guestfs-actions.pod:2293
9634 #, no-wrap
9635 msgid ""
9636 " char **\n"
9637 " guestfs_head_n (guestfs_h *g,\n"
9638 "                 int nrlines,\n"
9639 "                 const char *path);\n"
9640 "\n"
9641 msgstr ""
9642
9643 #. type: textblock
9644 #: ../src/guestfs-actions.pod:2298 ../fish/guestfish-actions.pod:1540
9645 msgid ""
9646 "If the parameter C<nrlines> is a positive number, this returns the first "
9647 "C<nrlines> lines of the file C<path>."
9648 msgstr ""
9649
9650 #. type: textblock
9651 #: ../src/guestfs-actions.pod:2301 ../fish/guestfish-actions.pod:1543
9652 msgid ""
9653 "If the parameter C<nrlines> is a negative number, this returns lines from "
9654 "the file C<path>, excluding the last C<nrlines> lines."
9655 msgstr ""
9656
9657 #. type: textblock
9658 #: ../src/guestfs-actions.pod:2304 ../src/guestfs-actions.pod:6635 ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:4482
9659 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
9660 msgstr ""
9661
9662 #. type: =head2
9663 #: ../src/guestfs-actions.pod:2315
9664 msgid "guestfs_hexdump"
9665 msgstr ""
9666
9667 #. type: verbatim
9668 #: ../src/guestfs-actions.pod:2317
9669 #, no-wrap
9670 msgid ""
9671 " char *\n"
9672 " guestfs_hexdump (guestfs_h *g,\n"
9673 "                  const char *path);\n"
9674 "\n"
9675 msgstr ""
9676
9677 #. type: textblock
9678 #: ../src/guestfs-actions.pod:2321 ../fish/guestfish-actions.pod:1555
9679 msgid ""
9680 "This runs C<hexdump -C> on the given C<path>.  The result is the "
9681 "human-readable, canonical hex dump of the file."
9682 msgstr ""
9683
9684 #. type: textblock
9685 #: ../src/guestfs-actions.pod:2330 ../src/guestfs-actions.pod:6419 ../src/guestfs-actions.pod:6474
9686 msgid "(Added in 1.0.22)"
9687 msgstr ""
9688
9689 #. type: =head2
9690 #: ../src/guestfs-actions.pod:2332
9691 msgid "guestfs_initrd_cat"
9692 msgstr ""
9693
9694 #. type: verbatim
9695 #: ../src/guestfs-actions.pod:2334
9696 #, no-wrap
9697 msgid ""
9698 " char *\n"
9699 " guestfs_initrd_cat (guestfs_h *g,\n"
9700 "                     const char *initrdpath,\n"
9701 "                     const char *filename,\n"
9702 "                     size_t *size_r);\n"
9703 "\n"
9704 msgstr ""
9705
9706 #. type: textblock
9707 #: ../src/guestfs-actions.pod:2340 ../fish/guestfish-actions.pod:1565
9708 msgid ""
9709 "This command unpacks the file C<filename> from the initrd file called "
9710 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
9711 "character."
9712 msgstr ""
9713
9714 #. type: textblock
9715 #: ../src/guestfs-actions.pod:2344 ../fish/guestfish-actions.pod:1569
9716 msgid ""
9717 "For example, in guestfish you could use the following command to examine the "
9718 "boot script (usually called C</init>)  contained in a Linux initrd or "
9719 "initramfs image:"
9720 msgstr ""
9721
9722 #. type: verbatim
9723 #: ../src/guestfs-actions.pod:2348 ../fish/guestfish-actions.pod:1573
9724 #, no-wrap
9725 msgid ""
9726 " initrd-cat /boot/initrd-<version>.img init\n"
9727 "\n"
9728 msgstr ""
9729
9730 #. type: textblock
9731 #: ../src/guestfs-actions.pod:2350
9732 msgid "See also C<guestfs_initrd_list>."
9733 msgstr ""
9734
9735 #. type: =head2
9736 #: ../src/guestfs-actions.pod:2361
9737 msgid "guestfs_initrd_list"
9738 msgstr ""
9739
9740 #. type: verbatim
9741 #: ../src/guestfs-actions.pod:2363
9742 #, no-wrap
9743 msgid ""
9744 " char **\n"
9745 " guestfs_initrd_list (guestfs_h *g,\n"
9746 "                      const char *path);\n"
9747 "\n"
9748 msgstr ""
9749
9750 #. type: textblock
9751 #: ../src/guestfs-actions.pod:2367 ../fish/guestfish-actions.pod:1584
9752 msgid "This command lists out files contained in an initrd."
9753 msgstr ""
9754
9755 #. type: textblock
9756 #: ../src/guestfs-actions.pod:2369 ../fish/guestfish-actions.pod:1586
9757 msgid ""
9758 "The files are listed without any initial C</> character.  The files are "
9759 "listed in the order they appear (not necessarily alphabetical).  Directory "
9760 "names are listed as separate items."
9761 msgstr ""
9762
9763 #. type: textblock
9764 #: ../src/guestfs-actions.pod:2373 ../fish/guestfish-actions.pod:1590
9765 msgid ""
9766 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
9767 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
9768 "files)."
9769 msgstr ""
9770
9771 #. type: =head2
9772 #: ../src/guestfs-actions.pod:2383
9773 msgid "guestfs_inotify_add_watch"
9774 msgstr ""
9775
9776 #. type: verbatim
9777 #: ../src/guestfs-actions.pod:2385
9778 #, no-wrap
9779 msgid ""
9780 " int64_t\n"
9781 " guestfs_inotify_add_watch (guestfs_h *g,\n"
9782 "                            const char *path,\n"
9783 "                            int mask);\n"
9784 "\n"
9785 msgstr ""
9786
9787 #. type: textblock
9788 #: ../src/guestfs-actions.pod:2390 ../fish/guestfish-actions.pod:1598
9789 msgid "Watch C<path> for the events listed in C<mask>."
9790 msgstr ""
9791
9792 #. type: textblock
9793 #: ../src/guestfs-actions.pod:2392 ../fish/guestfish-actions.pod:1600
9794 msgid ""
9795 "Note that if C<path> is a directory then events within that directory are "
9796 "watched, but this does I<not> happen recursively (in subdirectories)."
9797 msgstr ""
9798
9799 #. type: textblock
9800 #: ../src/guestfs-actions.pod:2396 ../fish/guestfish-actions.pod:1604
9801 msgid ""
9802 "Note for non-C or non-Linux callers: the inotify events are defined by the "
9803 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
9804 msgstr ""
9805
9806 #. type: =head2
9807 #: ../src/guestfs-actions.pod:2404
9808 msgid "guestfs_inotify_close"
9809 msgstr ""
9810
9811 #. type: verbatim
9812 #: ../src/guestfs-actions.pod:2406
9813 #, no-wrap
9814 msgid ""
9815 " int\n"
9816 " guestfs_inotify_close (guestfs_h *g);\n"
9817 "\n"
9818 msgstr ""
9819
9820 #. type: textblock
9821 #: ../src/guestfs-actions.pod:2409 ../fish/guestfish-actions.pod:1612
9822 msgid ""
9823 "This closes the inotify handle which was previously opened by inotify_init.  "
9824 "It removes all watches, throws away any pending events, and deallocates all "
9825 "resources."
9826 msgstr ""
9827
9828 #. type: =head2
9829 #: ../src/guestfs-actions.pod:2417
9830 msgid "guestfs_inotify_files"
9831 msgstr ""
9832
9833 #. type: verbatim
9834 #: ../src/guestfs-actions.pod:2419
9835 #, no-wrap
9836 msgid ""
9837 " char **\n"
9838 " guestfs_inotify_files (guestfs_h *g);\n"
9839 "\n"
9840 msgstr ""
9841
9842 #. type: textblock
9843 #: ../src/guestfs-actions.pod:2422
9844 msgid ""
9845 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
9846 "returns a list of pathnames of objects that were touched.  The returned "
9847 "pathnames are sorted and deduplicated."
9848 msgstr ""
9849
9850 #. type: =head2
9851 #: ../src/guestfs-actions.pod:2432
9852 msgid "guestfs_inotify_init"
9853 msgstr ""
9854
9855 #. type: verbatim
9856 #: ../src/guestfs-actions.pod:2434
9857 #, no-wrap
9858 msgid ""
9859 " int\n"
9860 " guestfs_inotify_init (guestfs_h *g,\n"
9861 "                       int maxevents);\n"
9862 "\n"
9863 msgstr ""
9864
9865 #. type: textblock
9866 #: ../src/guestfs-actions.pod:2438 ../fish/guestfish-actions.pod:1628
9867 msgid ""
9868 "This command creates a new inotify handle.  The inotify subsystem can be "
9869 "used to notify events which happen to objects in the guest filesystem."
9870 msgstr ""
9871
9872 #. type: textblock
9873 #: ../src/guestfs-actions.pod:2442
9874 msgid ""
9875 "C<maxevents> is the maximum number of events which will be queued up between "
9876 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
9877 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
9878 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
9879 "throws away events, but records the fact that it threw them away by setting "
9880 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
9881 "C<guestfs_inotify_read>)."
9882 msgstr ""
9883
9884 #. type: textblock
9885 #: ../src/guestfs-actions.pod:2452
9886 msgid ""
9887 "Before any events are generated, you have to add some watches to the "
9888 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
9889 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
9890 msgstr ""
9891
9892 #. type: textblock
9893 #: ../src/guestfs-actions.pod:2458
9894 msgid ""
9895 "Queued up events should be read periodically by calling "
9896 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
9897 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
9898 "often enough then you risk the internal queue overflowing."
9899 msgstr ""
9900
9901 #. type: textblock
9902 #: ../src/guestfs-actions.pod:2465
9903 msgid ""
9904 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
9905 "This also removes any watches automatically."
9906 msgstr ""
9907
9908 #. type: textblock
9909 #: ../src/guestfs-actions.pod:2469 ../fish/guestfish-actions.pod:1659
9910 msgid ""
9911 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
9912 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
9913 "that there is one global inotify handle per libguestfs instance."
9914 msgstr ""
9915
9916 #. type: =head2
9917 #: ../src/guestfs-actions.pod:2478
9918 msgid "guestfs_inotify_read"
9919 msgstr ""
9920
9921 #. type: verbatim
9922 #: ../src/guestfs-actions.pod:2480
9923 #, no-wrap
9924 msgid ""
9925 " struct guestfs_inotify_event_list *\n"
9926 " guestfs_inotify_read (guestfs_h *g);\n"
9927 "\n"
9928 msgstr ""
9929
9930 #. type: textblock
9931 #: ../src/guestfs-actions.pod:2483 ../fish/guestfish-actions.pod:1668
9932 msgid ""
9933 "Return the complete queue of events that have happened since the previous "
9934 "read call."
9935 msgstr ""
9936
9937 #. type: textblock
9938 #: ../src/guestfs-actions.pod:2486 ../fish/guestfish-actions.pod:1671
9939 msgid "If no events have happened, this returns an empty list."
9940 msgstr ""
9941
9942 #. type: textblock
9943 #: ../src/guestfs-actions.pod:2488 ../fish/guestfish-actions.pod:1673
9944 msgid ""
9945 "I<Note>: In order to make sure that all events have been read, you must call "
9946 "this function repeatedly until it returns an empty list.  The reason is that "
9947 "the call will read events up to the maximum appliance-to-host message size "
9948 "and leave remaining events in the queue."
9949 msgstr ""
9950
9951 #. type: textblock
9952 #: ../src/guestfs-actions.pod:2494
9953 msgid ""
9954 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
9955 "there was an error.  I<The caller must call "
9956 "C<guestfs_free_inotify_event_list> after use>."
9957 msgstr ""
9958
9959 #. type: =head2
9960 #: ../src/guestfs-actions.pod:2500
9961 msgid "guestfs_inotify_rm_watch"
9962 msgstr ""
9963
9964 #. type: verbatim
9965 #: ../src/guestfs-actions.pod:2502
9966 #, no-wrap
9967 msgid ""
9968 " int\n"
9969 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
9970 "                           int wd);\n"
9971 "\n"
9972 msgstr ""
9973
9974 #. type: textblock
9975 #: ../src/guestfs-actions.pod:2506
9976 msgid ""
9977 "Remove a previously defined inotify watch.  See "
9978 "C<guestfs_inotify_add_watch>."
9979 msgstr ""
9980
9981 #. type: =head2
9982 #: ../src/guestfs-actions.pod:2513
9983 msgid "guestfs_inspect_get_arch"
9984 msgstr ""
9985
9986 #. type: verbatim
9987 #: ../src/guestfs-actions.pod:2515
9988 #, no-wrap
9989 msgid ""
9990 " char *\n"
9991 " guestfs_inspect_get_arch (guestfs_h *g,\n"
9992 "                           const char *root);\n"
9993 "\n"
9994 msgstr ""
9995
9996 #. type: textblock
9997 #: ../src/guestfs-actions.pod:2519 ../src/guestfs-actions.pod:2542 ../src/guestfs-actions.pod:2635 ../src/guestfs-actions.pod:2679 ../src/guestfs-actions.pod:2705 ../src/guestfs-actions.pod:2744 ../src/guestfs-actions.pod:2766 ../src/guestfs-actions.pod:2793 ../src/guestfs-actions.pod:2814 ../src/guestfs-actions.pod:2857 ../src/guestfs-actions.pod:2886 ../src/guestfs-actions.pod:2917 ../src/guestfs-actions.pod:2941 ../src/guestfs-actions.pod:2996 ../src/guestfs-actions.pod:3038 ../src/guestfs-actions.pod:3059 ../src/guestfs-actions.pod:3082 ../src/guestfs-actions.pod:3099 ../src/guestfs-actions.pod:3116 ../src/guestfs-actions.pod:3135
9998 msgid ""
9999 "This function should only be called with a root device string as returned by "
10000 "C<guestfs_inspect_os>."
10001 msgstr ""
10002
10003 #. type: textblock
10004 #: ../src/guestfs-actions.pod:2522
10005 msgid ""
10006 "This returns the architecture of the inspected operating system.  The "
10007 "possible return values are listed under C<guestfs_file_architecture>."
10008 msgstr ""
10009
10010 #. type: textblock
10011 #: ../src/guestfs-actions.pod:2526 ../fish/guestfish-actions.pod:1697
10012 msgid ""
10013 "If the architecture could not be determined, then the string C<unknown> is "
10014 "returned."
10015 msgstr ""
10016
10017 #. type: textblock
10018 #: ../src/guestfs-actions.pod:2529 ../src/guestfs-actions.pod:2622 ../src/guestfs-actions.pod:2733 ../src/guestfs-actions.pod:2753 ../src/guestfs-actions.pod:2781 ../src/guestfs-actions.pod:2873 ../src/guestfs-actions.pod:2904 ../src/guestfs-actions.pod:2928 ../src/guestfs-actions.pod:2982 ../src/guestfs-actions.pod:3025 ../src/guestfs-actions.pod:3048 ../src/guestfs-actions.pod:3069 ../src/guestfs-actions.pod:3089 ../src/guestfs-actions.pod:3106 ../src/guestfs-actions.pod:3125 ../src/guestfs-actions.pod:3228 ../src/guestfs-actions.pod:3269 ../fish/guestfish-actions.pod:1700 ../fish/guestfish-actions.pod:1786 ../fish/guestfish-actions.pod:1874 ../fish/guestfish-actions.pod:1889 ../fish/guestfish-actions.pod:1910 ../fish/guestfish-actions.pod:1980 ../fish/guestfish-actions.pod:2004 ../fish/guestfish-actions.pod:2021 ../fish/guestfish-actions.pod:2064 ../fish/guestfish-actions.pod:2099 ../fish/guestfish-actions.pod:2115 ../fish/guestfish-actions.pod:2131 ../fish/guestfish-actions.pod:2144 ../fish/guestfish-actions.pod:2157 ../fish/guestfish-actions.pod:2172 ../fish/guestfish-actions.pod:2271 ../fish/guestfish-actions.pod:2305
10019 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10020 msgstr ""
10021
10022 #. type: =head2
10023 #: ../src/guestfs-actions.pod:2536
10024 msgid "guestfs_inspect_get_distro"
10025 msgstr ""
10026
10027 #. type: verbatim
10028 #: ../src/guestfs-actions.pod:2538
10029 #, no-wrap
10030 msgid ""
10031 " char *\n"
10032 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10033 "                             const char *root);\n"
10034 "\n"
10035 msgstr ""
10036
10037 #. type: textblock
10038 #: ../src/guestfs-actions.pod:2545 ../fish/guestfish-actions.pod:1709
10039 msgid "This returns the distro (distribution) of the inspected operating system."
10040 msgstr ""
10041
10042 #. type: textblock
10043 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1712
10044 msgid "Currently defined distros are:"
10045 msgstr ""
10046
10047 #. type: =item
10048 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1716
10049 msgid "\"archlinux\""
10050 msgstr ""
10051
10052 #. type: textblock
10053 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1718
10054 msgid "Arch Linux."
10055 msgstr ""
10056
10057 #. type: =item
10058 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1720
10059 msgid "\"centos\""
10060 msgstr ""
10061
10062 #. type: textblock
10063 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1722
10064 msgid "CentOS."
10065 msgstr ""
10066
10067 #. type: =item
10068 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1724
10069 msgid "\"debian\""
10070 msgstr ""
10071
10072 #. type: textblock
10073 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1726
10074 msgid "Debian."
10075 msgstr ""
10076
10077 #. type: =item
10078 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1728
10079 msgid "\"fedora\""
10080 msgstr ""
10081
10082 #. type: textblock
10083 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1730
10084 msgid "Fedora."
10085 msgstr ""
10086
10087 #. type: =item
10088 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1732
10089 msgid "\"gentoo\""
10090 msgstr ""
10091
10092 #. type: textblock
10093 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1734
10094 msgid "Gentoo."
10095 msgstr ""
10096
10097 #. type: =item
10098 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1736
10099 msgid "\"linuxmint\""
10100 msgstr ""
10101
10102 #. type: textblock
10103 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1738
10104 msgid "Linux Mint."
10105 msgstr ""
10106
10107 #. type: =item
10108 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1740
10109 msgid "\"mandriva\""
10110 msgstr ""
10111
10112 #. type: textblock
10113 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1742
10114 msgid "Mandriva."
10115 msgstr ""
10116
10117 #. type: =item
10118 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1744
10119 msgid "\"meego\""
10120 msgstr ""
10121
10122 #. type: textblock
10123 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1746
10124 msgid "MeeGo."
10125 msgstr ""
10126
10127 #. type: =item
10128 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1748
10129 msgid "\"pardus\""
10130 msgstr ""
10131
10132 #. type: textblock
10133 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1750
10134 msgid "Pardus."
10135 msgstr ""
10136
10137 #. type: =item
10138 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1752
10139 msgid "\"redhat-based\""
10140 msgstr ""
10141
10142 #. type: textblock
10143 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1754
10144 msgid "Some Red Hat-derived distro."
10145 msgstr ""
10146
10147 #. type: =item
10148 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1756
10149 msgid "\"rhel\""
10150 msgstr ""
10151
10152 #. type: textblock
10153 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1758
10154 msgid "Red Hat Enterprise Linux."
10155 msgstr ""
10156
10157 #. type: =item
10158 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1760
10159 msgid "\"scientificlinux\""
10160 msgstr ""
10161
10162 #. type: textblock
10163 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1762
10164 msgid "Scientific Linux."
10165 msgstr ""
10166
10167 #. type: =item
10168 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1764
10169 msgid "\"slackware\""
10170 msgstr ""
10171
10172 #. type: textblock
10173 #: ../src/guestfs-actions.pod:2602 ../fish/guestfish-actions.pod:1766
10174 msgid "Slackware."
10175 msgstr ""
10176
10177 #. type: =item
10178 #: ../src/guestfs-actions.pod:2604 ../fish/guestfish-actions.pod:1768
10179 msgid "\"ubuntu\""
10180 msgstr ""
10181
10182 #. type: textblock
10183 #: ../src/guestfs-actions.pod:2606 ../fish/guestfish-actions.pod:1770
10184 msgid "Ubuntu."
10185 msgstr ""
10186
10187 #. type: =item
10188 #: ../src/guestfs-actions.pod:2608 ../src/guestfs-actions.pod:2724 ../src/guestfs-actions.pod:3016 ../fish/guestfish-actions.pod:1772 ../fish/guestfish-actions.pod:1865 ../fish/guestfish-actions.pod:2090
10189 msgid "\"unknown\""
10190 msgstr ""
10191
10192 #. type: textblock
10193 #: ../src/guestfs-actions.pod:2610 ../fish/guestfish-actions.pod:1774
10194 msgid "The distro could not be determined."
10195 msgstr ""
10196
10197 #. type: =item
10198 #: ../src/guestfs-actions.pod:2612 ../src/guestfs-actions.pod:3008 ../fish/guestfish-actions.pod:1776 ../fish/guestfish-actions.pod:2082
10199 msgid "\"windows\""
10200 msgstr ""
10201
10202 #. type: textblock
10203 #: ../src/guestfs-actions.pod:2614 ../fish/guestfish-actions.pod:1778
10204 msgid ""
10205 "Windows does not have distributions.  This string is returned if the OS type "
10206 "is Windows."
10207 msgstr ""
10208
10209 #. type: textblock
10210 #: ../src/guestfs-actions.pod:2619 ../src/guestfs-actions.pod:2730 ../src/guestfs-actions.pod:3022 ../fish/guestfish-actions.pod:1783 ../fish/guestfish-actions.pod:1871 ../fish/guestfish-actions.pod:2096
10211 msgid ""
10212 "Future versions of libguestfs may return other strings here.  The caller "
10213 "should be prepared to handle any string."
10214 msgstr ""
10215
10216 #. type: =head2
10217 #: ../src/guestfs-actions.pod:2629
10218 msgid "guestfs_inspect_get_drive_mappings"
10219 msgstr ""
10220
10221 #. type: verbatim
10222 #: ../src/guestfs-actions.pod:2631
10223 #, no-wrap
10224 msgid ""
10225 " char **\n"
10226 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10227 "                                     const char *root);\n"
10228 "\n"
10229 msgstr ""
10230
10231 #. type: textblock
10232 #: ../src/guestfs-actions.pod:2638 ../fish/guestfish-actions.pod:1795
10233 msgid ""
10234 "This call is useful for Windows which uses a primitive system of assigning "
10235 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10236 "Windows Registry to find out how disks/partitions are mapped to drive "
10237 "letters, and returns a hash table as in the example below:"
10238 msgstr ""
10239
10240 #. type: verbatim
10241 #: ../src/guestfs-actions.pod:2644 ../fish/guestfish-actions.pod:1801
10242 #, no-wrap
10243 msgid ""
10244 " C      =>     /dev/vda2\n"
10245 " E      =>     /dev/vdb1\n"
10246 " F      =>     /dev/vdc1\n"
10247 "\n"
10248 msgstr ""
10249
10250 #. type: textblock
10251 #: ../src/guestfs-actions.pod:2648 ../fish/guestfish-actions.pod:1805
10252 msgid ""
10253 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10254 "and just contains the drive letter, without the customary colon separator "
10255 "character."
10256 msgstr ""
10257
10258 #. type: textblock
10259 #: ../src/guestfs-actions.pod:2652 ../fish/guestfish-actions.pod:1809
10260 msgid ""
10261 "In future we may support other operating systems that also used drive "
10262 "letters, but the keys for those might not be case insensitive and might be "
10263 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10264 "C<h1> etc."
10265 msgstr ""
10266
10267 #. type: textblock
10268 #: ../src/guestfs-actions.pod:2657 ../fish/guestfish-actions.pod:1814
10269 msgid ""
10270 "For Windows guests, currently only hard drive mappings are returned.  "
10271 "Removable disks (eg. DVD-ROMs) are ignored."
10272 msgstr ""
10273
10274 #. type: textblock
10275 #: ../src/guestfs-actions.pod:2660 ../fish/guestfish-actions.pod:1817
10276 msgid ""
10277 "For guests that do not use drive mappings, or if the drive mappings could "
10278 "not be determined, this returns an empty hash table."
10279 msgstr ""
10280
10281 #. type: textblock
10282 #: ../src/guestfs-actions.pod:2663
10283 msgid ""
10284 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10285 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10286 msgstr ""
10287
10288 #. type: textblock
10289 #: ../src/guestfs-actions.pod:2667 ../src/guestfs-actions.pod:2843 ../src/guestfs-actions.pod:3626 ../src/guestfs-actions.pod:4843 ../src/guestfs-actions.pod:6776
10290 msgid ""
10291 "This function returns a NULL-terminated array of strings, or NULL if there "
10292 "was an error.  The array of strings will always have length C<2n+1>, where "
10293 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10294 "caller must free the strings and the array after use>."
10295 msgstr ""
10296
10297 #. type: =head2
10298 #: ../src/guestfs-actions.pod:2673
10299 msgid "guestfs_inspect_get_filesystems"
10300 msgstr ""
10301
10302 #. type: verbatim
10303 #: ../src/guestfs-actions.pod:2675
10304 #, no-wrap
10305 msgid ""
10306 " char **\n"
10307 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10308 "                                  const char *root);\n"
10309 "\n"
10310 msgstr ""
10311
10312 #. type: textblock
10313 #: ../src/guestfs-actions.pod:2682 ../fish/guestfish-actions.pod:1831
10314 msgid ""
10315 "This returns a list of all the filesystems that we think are associated with "
10316 "this operating system.  This includes the root filesystem, other ordinary "
10317 "filesystems, and non-mounted devices like swap partitions."
10318 msgstr ""
10319
10320 #. type: textblock
10321 #: ../src/guestfs-actions.pod:2687 ../fish/guestfish-actions.pod:1836
10322 msgid ""
10323 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10324 "to be shared between operating systems."
10325 msgstr ""
10326
10327 #. type: textblock
10328 #: ../src/guestfs-actions.pod:2690
10329 msgid ""
10330 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10331 "C<guestfs_inspect_get_mountpoints>."
10332 msgstr ""
10333
10334 #. type: =head2
10335 #: ../src/guestfs-actions.pod:2699
10336 msgid "guestfs_inspect_get_format"
10337 msgstr ""
10338
10339 #. type: verbatim
10340 #: ../src/guestfs-actions.pod:2701
10341 #, no-wrap
10342 msgid ""
10343 " char *\n"
10344 " guestfs_inspect_get_format (guestfs_h *g,\n"
10345 "                             const char *root);\n"
10346 "\n"
10347 msgstr ""
10348
10349 #. type: textblock
10350 #: ../src/guestfs-actions.pod:2708 ../fish/guestfish-actions.pod:1849
10351 msgid ""
10352 "This returns the format of the inspected operating system.  You can use it "
10353 "to detect install images, live CDs and similar."
10354 msgstr ""
10355
10356 #. type: textblock
10357 #: ../src/guestfs-actions.pod:2711 ../fish/guestfish-actions.pod:1852
10358 msgid "Currently defined formats are:"
10359 msgstr ""
10360
10361 #. type: =item
10362 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1856
10363 msgid "\"installed\""
10364 msgstr ""
10365
10366 #. type: textblock
10367 #: ../src/guestfs-actions.pod:2717 ../fish/guestfish-actions.pod:1858
10368 msgid "This is an installed operating system."
10369 msgstr ""
10370
10371 #. type: =item
10372 #: ../src/guestfs-actions.pod:2719 ../fish/guestfish-actions.pod:1860
10373 msgid "\"installer\""
10374 msgstr ""
10375
10376 #. type: textblock
10377 #: ../src/guestfs-actions.pod:2721 ../fish/guestfish-actions.pod:1862
10378 msgid ""
10379 "The disk image being inspected is not an installed operating system, but a "
10380 "I<bootable> install disk, live CD, or similar."
10381 msgstr ""
10382
10383 #. type: textblock
10384 #: ../src/guestfs-actions.pod:2726 ../fish/guestfish-actions.pod:1867
10385 msgid "The format of this disk image is not known."
10386 msgstr ""
10387
10388 #. type: =head2
10389 #: ../src/guestfs-actions.pod:2738
10390 msgid "guestfs_inspect_get_hostname"
10391 msgstr ""
10392
10393 #. type: verbatim
10394 #: ../src/guestfs-actions.pod:2740
10395 #, no-wrap
10396 msgid ""
10397 " char *\n"
10398 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10399 "                               const char *root);\n"
10400 "\n"
10401 msgstr ""
10402
10403 #. type: textblock
10404 #: ../src/guestfs-actions.pod:2747 ../fish/guestfish-actions.pod:1883
10405 msgid ""
10406 "This function returns the hostname of the operating system as found by "
10407 "inspection of the guest's configuration files."
10408 msgstr ""
10409
10410 #. type: textblock
10411 #: ../src/guestfs-actions.pod:2750 ../fish/guestfish-actions.pod:1886
10412 msgid ""
10413 "If the hostname could not be determined, then the string C<unknown> is "
10414 "returned."
10415 msgstr ""
10416
10417 #. type: textblock
10418 #: ../src/guestfs-actions.pod:2758
10419 msgid "(Added in 1.7.9)"
10420 msgstr ""
10421
10422 #. type: =head2
10423 #: ../src/guestfs-actions.pod:2760
10424 msgid "guestfs_inspect_get_major_version"
10425 msgstr ""
10426
10427 #. type: verbatim
10428 #: ../src/guestfs-actions.pod:2762
10429 #, no-wrap
10430 msgid ""
10431 " int\n"
10432 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10433 "                                    const char *root);\n"
10434 "\n"
10435 msgstr ""
10436
10437 #. type: textblock
10438 #: ../src/guestfs-actions.pod:2769 ../fish/guestfish-actions.pod:1898
10439 msgid "This returns the major version number of the inspected operating system."
10440 msgstr ""
10441
10442 #. type: textblock
10443 #: ../src/guestfs-actions.pod:2772 ../fish/guestfish-actions.pod:1901
10444 msgid ""
10445 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10446 "popular public names used by the operating system.  Notably the operating "
10447 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10448 "1).  You can find out the real versions corresponding to releases of Windows "
10449 "by consulting Wikipedia or MSDN."
10450 msgstr ""
10451
10452 #. type: textblock
10453 #: ../src/guestfs-actions.pod:2779 ../src/guestfs-actions.pod:2799 ../fish/guestfish-actions.pod:1908 ../fish/guestfish-actions.pod:1922
10454 msgid "If the version could not be determined, then C<0> is returned."
10455 msgstr ""
10456
10457 #. type: =head2
10458 #: ../src/guestfs-actions.pod:2787
10459 msgid "guestfs_inspect_get_minor_version"
10460 msgstr ""
10461
10462 #. type: verbatim
10463 #: ../src/guestfs-actions.pod:2789
10464 #, no-wrap
10465 msgid ""
10466 " int\n"
10467 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
10468 "                                    const char *root);\n"
10469 "\n"
10470 msgstr ""
10471
10472 #. type: textblock
10473 #: ../src/guestfs-actions.pod:2796 ../fish/guestfish-actions.pod:1919
10474 msgid "This returns the minor version number of the inspected operating system."
10475 msgstr ""
10476
10477 #. type: textblock
10478 #: ../src/guestfs-actions.pod:2801
10479 msgid ""
10480 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10481 "C<guestfs_inspect_get_major_version>."
10482 msgstr ""
10483
10484 #. type: =head2
10485 #: ../src/guestfs-actions.pod:2808
10486 msgid "guestfs_inspect_get_mountpoints"
10487 msgstr ""
10488
10489 #. type: verbatim
10490 #: ../src/guestfs-actions.pod:2810
10491 #, no-wrap
10492 msgid ""
10493 " char **\n"
10494 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
10495 "                                  const char *root);\n"
10496 "\n"
10497 msgstr ""
10498
10499 #. type: textblock
10500 #: ../src/guestfs-actions.pod:2817 ../fish/guestfish-actions.pod:1934
10501 msgid ""
10502 "This returns a hash of where we think the filesystems associated with this "
10503 "operating system should be mounted.  Callers should note that this is at "
10504 "best an educated guess made by reading configuration files such as "
10505 "C</etc/fstab>.  I<In particular note> that this may return filesystems which "
10506 "are non-existent or not mountable and callers should be prepared to handle "
10507 "or ignore failures if they try to mount them."
10508 msgstr ""
10509
10510 #. type: textblock
10511 #: ../src/guestfs-actions.pod:2826 ../fish/guestfish-actions.pod:1943
10512 msgid ""
10513 "Each element in the returned hashtable has a key which is the path of the "
10514 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
10515 "mounted there (eg. C</dev/sda1>)."
10516 msgstr ""
10517
10518 #. type: textblock
10519 #: ../src/guestfs-actions.pod:2831 ../fish/guestfish-actions.pod:1948
10520 msgid "Non-mounted devices such as swap devices are I<not> returned in this list."
10521 msgstr ""
10522
10523 #. type: textblock
10524 #: ../src/guestfs-actions.pod:2834
10525 msgid ""
10526 "For operating systems like Windows which still use drive letters, this call "
10527 "will only return an entry for the first drive \"mounted on\" C</>.  For "
10528 "information about the mapping of drive letters to partitions, see "
10529 "C<guestfs_inspect_get_drive_mappings>."
10530 msgstr ""
10531
10532 #. type: textblock
10533 #: ../src/guestfs-actions.pod:2840
10534 msgid ""
10535 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10536 "C<guestfs_inspect_get_filesystems>."
10537 msgstr ""
10538
10539 #. type: =head2
10540 #: ../src/guestfs-actions.pod:2851
10541 msgid "guestfs_inspect_get_package_format"
10542 msgstr ""
10543
10544 #. type: verbatim
10545 #: ../src/guestfs-actions.pod:2853
10546 #, no-wrap
10547 msgid ""
10548 " char *\n"
10549 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
10550 "                                     const char *root);\n"
10551 "\n"
10552 msgstr ""
10553
10554 #. type: textblock
10555 #: ../src/guestfs-actions.pod:2860
10556 msgid ""
10557 "This function and C<guestfs_inspect_get_package_management> return the "
10558 "package format and package management tool used by the inspected operating "
10559 "system.  For example for Fedora these functions would return C<rpm> (package "
10560 "format) and C<yum> (package management)."
10561 msgstr ""
10562
10563 #. type: textblock
10564 #: ../src/guestfs-actions.pod:2866 ../fish/guestfish-actions.pod:1973
10565 msgid ""
10566 "This returns the string C<unknown> if we could not determine the package "
10567 "format I<or> if the operating system does not have a real packaging system "
10568 "(eg. Windows)."
10569 msgstr ""
10570
10571 #. type: textblock
10572 #: ../src/guestfs-actions.pod:2870 ../fish/guestfish-actions.pod:1977
10573 msgid ""
10574 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
10575 "Future versions of libguestfs may return other strings."
10576 msgstr ""
10577
10578 #. type: textblock
10579 #: ../src/guestfs-actions.pod:2878 ../src/guestfs-actions.pod:2909
10580 msgid "(Added in 1.7.5)"
10581 msgstr ""
10582
10583 #. type: =head2
10584 #: ../src/guestfs-actions.pod:2880
10585 msgid "guestfs_inspect_get_package_management"
10586 msgstr ""
10587
10588 #. type: verbatim
10589 #: ../src/guestfs-actions.pod:2882
10590 #, no-wrap
10591 msgid ""
10592 " char *\n"
10593 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
10594 "                                         const char *root);\n"
10595 "\n"
10596 msgstr ""
10597
10598 #. type: textblock
10599 #: ../src/guestfs-actions.pod:2889
10600 msgid ""
10601 "C<guestfs_inspect_get_package_format> and this function return the package "
10602 "format and package management tool used by the inspected operating system.  "
10603 "For example for Fedora these functions would return C<rpm> (package format) "
10604 "and C<yum> (package management)."
10605 msgstr ""
10606
10607 #. type: textblock
10608 #: ../src/guestfs-actions.pod:2895 ../fish/guestfish-actions.pod:1995
10609 msgid ""
10610 "This returns the string C<unknown> if we could not determine the package "
10611 "management tool I<or> if the operating system does not have a real packaging "
10612 "system (eg. Windows)."
10613 msgstr ""
10614
10615 #. type: textblock
10616 #: ../src/guestfs-actions.pod:2899 ../fish/guestfish-actions.pod:1999
10617 msgid ""
10618 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
10619 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
10620 "libguestfs may return other strings."
10621 msgstr ""
10622
10623 #. type: =head2
10624 #: ../src/guestfs-actions.pod:2911
10625 msgid "guestfs_inspect_get_product_name"
10626 msgstr ""
10627
10628 #. type: verbatim
10629 #: ../src/guestfs-actions.pod:2913
10630 #, no-wrap
10631 msgid ""
10632 " char *\n"
10633 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
10634 "                                   const char *root);\n"
10635 "\n"
10636 msgstr ""
10637
10638 #. type: textblock
10639 #: ../src/guestfs-actions.pod:2920 ../fish/guestfish-actions.pod:2013
10640 msgid ""
10641 "This returns the product name of the inspected operating system.  The "
10642 "product name is generally some freeform string which can be displayed to the "
10643 "user, but should not be parsed by programs."
10644 msgstr ""
10645
10646 #. type: textblock
10647 #: ../src/guestfs-actions.pod:2925 ../fish/guestfish-actions.pod:2018
10648 msgid ""
10649 "If the product name could not be determined, then the string C<unknown> is "
10650 "returned."
10651 msgstr ""
10652
10653 #. type: =head2
10654 #: ../src/guestfs-actions.pod:2935
10655 msgid "guestfs_inspect_get_product_variant"
10656 msgstr ""
10657
10658 #. type: verbatim
10659 #: ../src/guestfs-actions.pod:2937
10660 #, no-wrap
10661 msgid ""
10662 " char *\n"
10663 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
10664 "                                      const char *root);\n"
10665 "\n"
10666 msgstr ""
10667
10668 #. type: textblock
10669 #: ../src/guestfs-actions.pod:2944 ../fish/guestfish-actions.pod:2030
10670 msgid "This returns the product variant of the inspected operating system."
10671 msgstr ""
10672
10673 #. type: textblock
10674 #: ../src/guestfs-actions.pod:2947 ../fish/guestfish-actions.pod:2033
10675 msgid ""
10676 "For Windows guests, this returns the contents of the Registry key "
10677 "C<HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> "
10678 "which is usually a string such as C<Client> or C<Server> (other values are "
10679 "possible).  This can be used to distinguish consumer and enterprise versions "
10680 "of Windows that have the same version number (for example, Windows 7 and "
10681 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
10682 "the latter is C<Server>)."
10683 msgstr ""
10684
10685 #. type: textblock
10686 #: ../src/guestfs-actions.pod:2956 ../fish/guestfish-actions.pod:2042
10687 msgid ""
10688 "For enterprise Linux guests, in future we intend this to return the product "
10689 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
10690 "implemented at present."
10691 msgstr ""
10692
10693 #. type: textblock
10694 #: ../src/guestfs-actions.pod:2960 ../fish/guestfish-actions.pod:2046
10695 msgid ""
10696 "If the product variant could not be determined, then the string C<unknown> "
10697 "is returned."
10698 msgstr ""
10699
10700 #. type: textblock
10701 #: ../src/guestfs-actions.pod:2963
10702 msgid ""
10703 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10704 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
10705 msgstr ""
10706
10707 #. type: =head2
10708 #: ../src/guestfs-actions.pod:2970
10709 msgid "guestfs_inspect_get_roots"
10710 msgstr ""
10711
10712 #. type: verbatim
10713 #: ../src/guestfs-actions.pod:2972
10714 #, no-wrap
10715 msgid ""
10716 " char **\n"
10717 " guestfs_inspect_get_roots (guestfs_h *g);\n"
10718 "\n"
10719 msgstr ""
10720
10721 #. type: textblock
10722 #: ../src/guestfs-actions.pod:2975
10723 msgid ""
10724 "This function is a convenient way to get the list of root devices, as "
10725 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
10726 "the whole inspection process."
10727 msgstr ""
10728
10729 #. type: textblock
10730 #: ../src/guestfs-actions.pod:2979
10731 msgid ""
10732 "This returns an empty list if either no root devices were found or the "
10733 "caller has not called C<guestfs_inspect_os>."
10734 msgstr ""
10735
10736 #. type: textblock
10737 #: ../src/guestfs-actions.pod:2988
10738 msgid "(Added in 1.7.3)"
10739 msgstr ""
10740
10741 #. type: =head2
10742 #: ../src/guestfs-actions.pod:2990
10743 msgid "guestfs_inspect_get_type"
10744 msgstr ""
10745
10746 #. type: verbatim
10747 #: ../src/guestfs-actions.pod:2992
10748 #, no-wrap
10749 msgid ""
10750 " char *\n"
10751 " guestfs_inspect_get_type (guestfs_h *g,\n"
10752 "                           const char *root);\n"
10753 "\n"
10754 msgstr ""
10755
10756 #. type: textblock
10757 #: ../src/guestfs-actions.pod:2999 ../fish/guestfish-actions.pod:2073
10758 msgid ""
10759 "This returns the type of the inspected operating system.  Currently defined "
10760 "types are:"
10761 msgstr ""
10762
10763 #. type: =item
10764 #: ../src/guestfs-actions.pod:3004 ../fish/guestfish-actions.pod:2078
10765 msgid "\"linux\""
10766 msgstr ""
10767
10768 #. type: textblock
10769 #: ../src/guestfs-actions.pod:3006 ../fish/guestfish-actions.pod:2080
10770 msgid "Any Linux-based operating system."
10771 msgstr ""
10772
10773 #. type: textblock
10774 #: ../src/guestfs-actions.pod:3010 ../fish/guestfish-actions.pod:2084
10775 msgid "Any Microsoft Windows operating system."
10776 msgstr ""
10777
10778 #. type: =item
10779 #: ../src/guestfs-actions.pod:3012 ../fish/guestfish-actions.pod:2086
10780 msgid "\"freebsd\""
10781 msgstr ""
10782
10783 #. type: textblock
10784 #: ../src/guestfs-actions.pod:3014 ../fish/guestfish-actions.pod:2088
10785 msgid "FreeBSD."
10786 msgstr ""
10787
10788 #. type: textblock
10789 #: ../src/guestfs-actions.pod:3018 ../fish/guestfish-actions.pod:2092
10790 msgid "The operating system type could not be determined."
10791 msgstr ""
10792
10793 #. type: =head2
10794 #: ../src/guestfs-actions.pod:3032
10795 msgid "guestfs_inspect_get_windows_current_control_set"
10796 msgstr ""
10797
10798 #. type: verbatim
10799 #: ../src/guestfs-actions.pod:3034
10800 #, no-wrap
10801 msgid ""
10802 " char *\n"
10803 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
10804 "                                                  const char *root);\n"
10805 "\n"
10806 msgstr ""
10807
10808 #. type: textblock
10809 #: ../src/guestfs-actions.pod:3041 ../fish/guestfish-actions.pod:2108
10810 msgid ""
10811 "This returns the Windows CurrentControlSet of the inspected guest.  The "
10812 "CurrentControlSet is a registry key name such as C<ControlSet001>."
10813 msgstr ""
10814
10815 #. type: textblock
10816 #: ../src/guestfs-actions.pod:3044 ../fish/guestfish-actions.pod:2111
10817 msgid ""
10818 "This call assumes that the guest is Windows and that the Registry could be "
10819 "examined by inspection.  If this is not the case then an error is returned."
10820 msgstr ""
10821
10822 #. type: =head2
10823 #: ../src/guestfs-actions.pod:3053
10824 msgid "guestfs_inspect_get_windows_systemroot"
10825 msgstr ""
10826
10827 #. type: verbatim
10828 #: ../src/guestfs-actions.pod:3055
10829 #, no-wrap
10830 msgid ""
10831 " char *\n"
10832 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
10833 "                                         const char *root);\n"
10834 "\n"
10835 msgstr ""
10836
10837 #. type: textblock
10838 #: ../src/guestfs-actions.pod:3062 ../fish/guestfish-actions.pod:2124
10839 msgid ""
10840 "This returns the Windows systemroot of the inspected guest.  The systemroot "
10841 "is a directory path such as C</WINDOWS>."
10842 msgstr ""
10843
10844 #. type: textblock
10845 #: ../src/guestfs-actions.pod:3065 ../fish/guestfish-actions.pod:2127
10846 msgid ""
10847 "This call assumes that the guest is Windows and that the systemroot could be "
10848 "determined by inspection.  If this is not the case then an error is "
10849 "returned."
10850 msgstr ""
10851
10852 #. type: textblock
10853 #: ../src/guestfs-actions.pod:3074
10854 msgid "(Added in 1.5.25)"
10855 msgstr ""
10856
10857 #. type: =head2
10858 #: ../src/guestfs-actions.pod:3076
10859 msgid "guestfs_inspect_is_live"
10860 msgstr ""
10861
10862 #. type: verbatim
10863 #: ../src/guestfs-actions.pod:3078
10864 #, no-wrap
10865 msgid ""
10866 " int\n"
10867 " guestfs_inspect_is_live (guestfs_h *g,\n"
10868 "                          const char *root);\n"
10869 "\n"
10870 msgstr ""
10871
10872 #. type: textblock
10873 #: ../src/guestfs-actions.pod:3085
10874 msgid ""
10875 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
10876 "disk), then this returns true if a live image was detected on the disk."
10877 msgstr ""
10878
10879 #. type: =head2
10880 #: ../src/guestfs-actions.pod:3093
10881 msgid "guestfs_inspect_is_multipart"
10882 msgstr ""
10883
10884 #. type: verbatim
10885 #: ../src/guestfs-actions.pod:3095
10886 #, no-wrap
10887 msgid ""
10888 " int\n"
10889 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
10890 "                               const char *root);\n"
10891 "\n"
10892 msgstr ""
10893
10894 #. type: textblock
10895 #: ../src/guestfs-actions.pod:3102
10896 msgid ""
10897 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
10898 "disk), then this returns true if the disk is part of a set."
10899 msgstr ""
10900
10901 #. type: =head2
10902 #: ../src/guestfs-actions.pod:3110
10903 msgid "guestfs_inspect_is_netinst"
10904 msgstr ""
10905
10906 #. type: verbatim
10907 #: ../src/guestfs-actions.pod:3112
10908 #, no-wrap
10909 msgid ""
10910 " int\n"
10911 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
10912 "                             const char *root);\n"
10913 "\n"
10914 msgstr ""
10915
10916 #. type: textblock
10917 #: ../src/guestfs-actions.pod:3119
10918 msgid ""
10919 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
10920 "disk), then this returns true if the disk is a network installer, ie. not a "
10921 "self-contained install CD but one which is likely to require network access "
10922 "to complete the install."
10923 msgstr ""
10924
10925 #. type: =head2
10926 #: ../src/guestfs-actions.pod:3129
10927 msgid "guestfs_inspect_list_applications"
10928 msgstr ""
10929
10930 #. type: verbatim
10931 #: ../src/guestfs-actions.pod:3131
10932 #, no-wrap
10933 msgid ""
10934 " struct guestfs_application_list *\n"
10935 " guestfs_inspect_list_applications (guestfs_h *g,\n"
10936 "                                    const char *root);\n"
10937 "\n"
10938 msgstr ""
10939
10940 #. type: textblock
10941 #: ../src/guestfs-actions.pod:3138 ../fish/guestfish-actions.pod:2181
10942 msgid "Return the list of applications installed in the operating system."
10943 msgstr ""
10944
10945 #. type: textblock
10946 #: ../src/guestfs-actions.pod:3140
10947 msgid ""
10948 "I<Note:> This call works differently from other parts of the inspection "
10949 "API.  You have to call C<guestfs_inspect_os>, then "
10950 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
10951 "this.  Listing applications is a significantly more difficult operation "
10952 "which requires access to the full filesystem.  Also note that unlike the "
10953 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
10954 "the libguestfs handle, this call actually reads parts of the mounted "
10955 "filesystems during the call."
10956 msgstr ""
10957
10958 #. type: textblock
10959 #: ../src/guestfs-actions.pod:3150 ../fish/guestfish-actions.pod:2193
10960 msgid ""
10961 "This returns an empty list if the inspection code was not able to determine "
10962 "the list of applications."
10963 msgstr ""
10964
10965 #. type: textblock
10966 #: ../src/guestfs-actions.pod:3153 ../fish/guestfish-actions.pod:2196
10967 msgid "The application structure contains the following fields:"
10968 msgstr ""
10969
10970 #. type: =item
10971 #: ../src/guestfs-actions.pod:3157 ../fish/guestfish-actions.pod:2200
10972 msgid "C<app_name>"
10973 msgstr ""
10974
10975 #. type: textblock
10976 #: ../src/guestfs-actions.pod:3159 ../fish/guestfish-actions.pod:2202
10977 msgid ""
10978 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
10979 "guests, this is the package name."
10980 msgstr ""
10981
10982 #. type: =item
10983 #: ../src/guestfs-actions.pod:3162 ../fish/guestfish-actions.pod:2205
10984 msgid "C<app_display_name>"
10985 msgstr ""
10986
10987 #. type: textblock
10988 #: ../src/guestfs-actions.pod:3164 ../fish/guestfish-actions.pod:2207
10989 msgid ""
10990 "The display name of the application, sometimes localized to the install "
10991 "language of the guest operating system."
10992 msgstr ""
10993
10994 #. type: textblock
10995 #: ../src/guestfs-actions.pod:3167 ../fish/guestfish-actions.pod:2210
10996 msgid ""
10997 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
10998 "to display something can use C<app_name> instead."
10999 msgstr ""
11000
11001 #. type: =item
11002 #: ../src/guestfs-actions.pod:3170 ../fish/guestfish-actions.pod:2213
11003 msgid "C<app_epoch>"
11004 msgstr ""
11005
11006 #. type: textblock
11007 #: ../src/guestfs-actions.pod:3172 ../fish/guestfish-actions.pod:2215
11008 msgid ""
11009 "For package managers which use epochs, this contains the epoch of the "
11010 "package (an integer).  If unavailable, this is returned as C<0>."
11011 msgstr ""
11012
11013 #. type: =item
11014 #: ../src/guestfs-actions.pod:3175 ../fish/guestfish-actions.pod:2218
11015 msgid "C<app_version>"
11016 msgstr ""
11017
11018 #. type: textblock
11019 #: ../src/guestfs-actions.pod:3177 ../fish/guestfish-actions.pod:2220
11020 msgid ""
11021 "The version string of the application or package.  If unavailable this is "
11022 "returned as an empty string C<\"\">."
11023 msgstr ""
11024
11025 #. type: =item
11026 #: ../src/guestfs-actions.pod:3180 ../fish/guestfish-actions.pod:2223
11027 msgid "C<app_release>"
11028 msgstr ""
11029
11030 #. type: textblock
11031 #: ../src/guestfs-actions.pod:3182 ../fish/guestfish-actions.pod:2225
11032 msgid ""
11033 "The release string of the application or package, for package managers that "
11034 "use this.  If unavailable this is returned as an empty string C<\"\">."
11035 msgstr ""
11036
11037 #. type: =item
11038 #: ../src/guestfs-actions.pod:3186 ../fish/guestfish-actions.pod:2229
11039 msgid "C<app_install_path>"
11040 msgstr ""
11041
11042 #. type: textblock
11043 #: ../src/guestfs-actions.pod:3188 ../fish/guestfish-actions.pod:2231
11044 msgid ""
11045 "The installation path of the application (on operating systems such as "
11046 "Windows which use installation paths).  This path is in the format used by "
11047 "the guest operating system, it is not a libguestfs path."
11048 msgstr ""
11049
11050 #. type: textblock
11051 #: ../src/guestfs-actions.pod:3193 ../fish/guestfish-actions.pod:2236
11052 msgid "If unavailable this is returned as an empty string C<\"\">."
11053 msgstr ""
11054
11055 #. type: =item
11056 #: ../src/guestfs-actions.pod:3195 ../fish/guestfish-actions.pod:2238
11057 msgid "C<app_trans_path>"
11058 msgstr ""
11059
11060 #. type: textblock
11061 #: ../src/guestfs-actions.pod:3197 ../fish/guestfish-actions.pod:2240
11062 msgid ""
11063 "The install path translated into a libguestfs path.  If unavailable this is "
11064 "returned as an empty string C<\"\">."
11065 msgstr ""
11066
11067 #. type: =item
11068 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2243
11069 msgid "C<app_publisher>"
11070 msgstr ""
11071
11072 #. type: textblock
11073 #: ../src/guestfs-actions.pod:3202 ../fish/guestfish-actions.pod:2245
11074 msgid ""
11075 "The name of the publisher of the application, for package managers that use "
11076 "this.  If unavailable this is returned as an empty string C<\"\">."
11077 msgstr ""
11078
11079 #. type: =item
11080 #: ../src/guestfs-actions.pod:3206 ../fish/guestfish-actions.pod:2249
11081 msgid "C<app_url>"
11082 msgstr ""
11083
11084 #. type: textblock
11085 #: ../src/guestfs-actions.pod:3208 ../fish/guestfish-actions.pod:2251
11086 msgid ""
11087 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11088 "returned as an empty string C<\"\">."
11089 msgstr ""
11090
11091 #. type: =item
11092 #: ../src/guestfs-actions.pod:3211 ../fish/guestfish-actions.pod:2254
11093 msgid "C<app_source_package>"
11094 msgstr ""
11095
11096 #. type: textblock
11097 #: ../src/guestfs-actions.pod:3213 ../fish/guestfish-actions.pod:2256
11098 msgid ""
11099 "For packaging systems which support this, the name of the source package.  "
11100 "If unavailable this is returned as an empty string C<\"\">."
11101 msgstr ""
11102
11103 #. type: =item
11104 #: ../src/guestfs-actions.pod:3216 ../fish/guestfish-actions.pod:2259
11105 msgid "C<app_summary>"
11106 msgstr ""
11107
11108 #. type: textblock
11109 #: ../src/guestfs-actions.pod:3218 ../fish/guestfish-actions.pod:2261
11110 msgid ""
11111 "A short (usually one line) description of the application or package.  If "
11112 "unavailable this is returned as an empty string C<\"\">."
11113 msgstr ""
11114
11115 #. type: =item
11116 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2264
11117 msgid "C<app_description>"
11118 msgstr ""
11119
11120 #. type: textblock
11121 #: ../src/guestfs-actions.pod:3223 ../fish/guestfish-actions.pod:2266
11122 msgid ""
11123 "A longer description of the application or package.  If unavailable this is "
11124 "returned as an empty string C<\"\">."
11125 msgstr ""
11126
11127 #. type: textblock
11128 #: ../src/guestfs-actions.pod:3230
11129 msgid ""
11130 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11131 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11132 "after use>."
11133 msgstr ""
11134
11135 #. type: textblock
11136 #: ../src/guestfs-actions.pod:3234
11137 msgid "(Added in 1.7.8)"
11138 msgstr ""
11139
11140 #. type: =head2
11141 #: ../src/guestfs-actions.pod:3236
11142 msgid "guestfs_inspect_os"
11143 msgstr ""
11144
11145 #. type: verbatim
11146 #: ../src/guestfs-actions.pod:3238
11147 #, no-wrap
11148 msgid ""
11149 " char **\n"
11150 " guestfs_inspect_os (guestfs_h *g);\n"
11151 "\n"
11152 msgstr ""
11153
11154 #. type: textblock
11155 #: ../src/guestfs-actions.pod:3241 ../fish/guestfish-actions.pod:2277
11156 msgid ""
11157 "This function uses other libguestfs functions and certain heuristics to "
11158 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11159 "for operating systems."
11160 msgstr ""
11161
11162 #. type: textblock
11163 #: ../src/guestfs-actions.pod:3245 ../fish/guestfish-actions.pod:2281
11164 msgid "The list returned is empty if no operating systems were found."
11165 msgstr ""
11166
11167 #. type: textblock
11168 #: ../src/guestfs-actions.pod:3247 ../fish/guestfish-actions.pod:2283
11169 msgid ""
11170 "If one operating system was found, then this returns a list with a single "
11171 "element, which is the name of the root filesystem of this operating system.  "
11172 "It is also possible for this function to return a list containing more than "
11173 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11174 "element being the root filesystem of one of the operating systems."
11175 msgstr ""
11176
11177 #. type: textblock
11178 #: ../src/guestfs-actions.pod:3254
11179 msgid ""
11180 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11181 "functions in order to query further information about each operating system, "
11182 "such as the name and version."
11183 msgstr ""
11184
11185 #. type: textblock
11186 #: ../src/guestfs-actions.pod:3259
11187 msgid ""
11188 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11189 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11190 "the contents.  This should be called with no disks currently mounted.  The "
11191 "function may also use Augeas, so any existing Augeas handle will be closed."
11192 msgstr ""
11193
11194 #. type: textblock
11195 #: ../src/guestfs-actions.pod:3265 ../fish/guestfish-actions.pod:2301
11196 msgid ""
11197 "This function cannot decrypt encrypted disks.  The caller must do that first "
11198 "(supplying the necessary keys) if the disk is encrypted."
11199 msgstr ""
11200
11201 #. type: textblock
11202 #: ../src/guestfs-actions.pod:3271 ../src/guestfs-actions.pod:3584 ../src/guestfs-actions.pod:3646
11203 msgid "See also C<guestfs_list_filesystems>."
11204 msgstr ""
11205
11206 #. type: =head2
11207 #: ../src/guestfs-actions.pod:3279
11208 msgid "guestfs_is_blockdev"
11209 msgstr ""
11210
11211 #. type: verbatim
11212 #: ../src/guestfs-actions.pod:3281
11213 #, no-wrap
11214 msgid ""
11215 " int\n"
11216 " guestfs_is_blockdev (guestfs_h *g,\n"
11217 "                      const char *path);\n"
11218 "\n"
11219 msgstr ""
11220
11221 #. type: textblock
11222 #: ../src/guestfs-actions.pod:3285 ../fish/guestfish-actions.pod:2313
11223 msgid ""
11224 "This returns C<true> if and only if there is a block device with the given "
11225 "C<path> name."
11226 msgstr ""
11227
11228 #. type: textblock
11229 #: ../src/guestfs-actions.pod:3288 ../src/guestfs-actions.pod:3317 ../src/guestfs-actions.pod:3347 ../src/guestfs-actions.pod:3362 ../src/guestfs-actions.pod:3378 ../src/guestfs-actions.pod:3434 ../src/guestfs-actions.pod:3449
11230 msgid "See also C<guestfs_stat>."
11231 msgstr ""
11232
11233 #. type: textblock
11234 #: ../src/guestfs-actions.pod:3292 ../src/guestfs-actions.pod:3321 ../src/guestfs-actions.pod:3366 ../src/guestfs-actions.pod:3438 ../src/guestfs-actions.pod:3453
11235 msgid "(Added in 1.5.10)"
11236 msgstr ""
11237
11238 #. type: =head2
11239 #: ../src/guestfs-actions.pod:3294
11240 msgid "guestfs_is_busy"
11241 msgstr ""
11242
11243 #. type: verbatim
11244 #: ../src/guestfs-actions.pod:3296
11245 #, no-wrap
11246 msgid ""
11247 " int\n"
11248 " guestfs_is_busy (guestfs_h *g);\n"
11249 "\n"
11250 msgstr ""
11251
11252 #. type: textblock
11253 #: ../src/guestfs-actions.pod:3299 ../fish/guestfish-actions.pod:2322
11254 msgid ""
11255 "This returns true iff this handle is busy processing a command (in the "
11256 "C<BUSY> state)."
11257 msgstr ""
11258
11259 #. type: =head2
11260 #: ../src/guestfs-actions.pod:3308
11261 msgid "guestfs_is_chardev"
11262 msgstr ""
11263
11264 #. type: verbatim
11265 #: ../src/guestfs-actions.pod:3310
11266 #, no-wrap
11267 msgid ""
11268 " int\n"
11269 " guestfs_is_chardev (guestfs_h *g,\n"
11270 "                     const char *path);\n"
11271 "\n"
11272 msgstr ""
11273
11274 #. type: textblock
11275 #: ../src/guestfs-actions.pod:3314 ../fish/guestfish-actions.pod:2331
11276 msgid ""
11277 "This returns C<true> if and only if there is a character device with the "
11278 "given C<path> name."
11279 msgstr ""
11280
11281 #. type: =head2
11282 #: ../src/guestfs-actions.pod:3323
11283 msgid "guestfs_is_config"
11284 msgstr ""
11285
11286 #. type: verbatim
11287 #: ../src/guestfs-actions.pod:3325
11288 #, no-wrap
11289 msgid ""
11290 " int\n"
11291 " guestfs_is_config (guestfs_h *g);\n"
11292 "\n"
11293 msgstr ""
11294
11295 #. type: textblock
11296 #: ../src/guestfs-actions.pod:3328 ../fish/guestfish-actions.pod:2340
11297 msgid ""
11298 "This returns true iff this handle is being configured (in the C<CONFIG> "
11299 "state)."
11300 msgstr ""
11301
11302 #. type: =head2
11303 #: ../src/guestfs-actions.pod:3337
11304 msgid "guestfs_is_dir"
11305 msgstr ""
11306
11307 #. type: verbatim
11308 #: ../src/guestfs-actions.pod:3339
11309 #, no-wrap
11310 msgid ""
11311 " int\n"
11312 " guestfs_is_dir (guestfs_h *g,\n"
11313 "                 const char *path);\n"
11314 "\n"
11315 msgstr ""
11316
11317 #. type: textblock
11318 #: ../src/guestfs-actions.pod:3343 ../fish/guestfish-actions.pod:2349
11319 msgid ""
11320 "This returns C<true> if and only if there is a directory with the given "
11321 "C<path> name.  Note that it returns false for other objects like files."
11322 msgstr ""
11323
11324 #. type: =head2
11325 #: ../src/guestfs-actions.pod:3353
11326 msgid "guestfs_is_fifo"
11327 msgstr ""
11328
11329 #. type: verbatim
11330 #: ../src/guestfs-actions.pod:3355
11331 #, no-wrap
11332 msgid ""
11333 " int\n"
11334 " guestfs_is_fifo (guestfs_h *g,\n"
11335 "                  const char *path);\n"
11336 "\n"
11337 msgstr ""
11338
11339 #. type: textblock
11340 #: ../src/guestfs-actions.pod:3359 ../fish/guestfish-actions.pod:2359
11341 msgid ""
11342 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11343 "given C<path> name."
11344 msgstr ""
11345
11346 #. type: =head2
11347 #: ../src/guestfs-actions.pod:3368
11348 msgid "guestfs_is_file"
11349 msgstr ""
11350
11351 #. type: verbatim
11352 #: ../src/guestfs-actions.pod:3370
11353 #, no-wrap
11354 msgid ""
11355 " int\n"
11356 " guestfs_is_file (guestfs_h *g,\n"
11357 "                  const char *path);\n"
11358 "\n"
11359 msgstr ""
11360
11361 #. type: textblock
11362 #: ../src/guestfs-actions.pod:3374 ../fish/guestfish-actions.pod:2368
11363 msgid ""
11364 "This returns C<true> if and only if there is a regular file with the given "
11365 "C<path> name.  Note that it returns false for other objects like "
11366 "directories."
11367 msgstr ""
11368
11369 #. type: =head2
11370 #: ../src/guestfs-actions.pod:3384
11371 msgid "guestfs_is_launching"
11372 msgstr ""
11373
11374 #. type: verbatim
11375 #: ../src/guestfs-actions.pod:3386
11376 #, no-wrap
11377 msgid ""
11378 " int\n"
11379 " guestfs_is_launching (guestfs_h *g);\n"
11380 "\n"
11381 msgstr ""
11382
11383 #. type: textblock
11384 #: ../src/guestfs-actions.pod:3389 ../fish/guestfish-actions.pod:2378
11385 msgid ""
11386 "This returns true iff this handle is launching the subprocess (in the "
11387 "C<LAUNCHING> state)."
11388 msgstr ""
11389
11390 #. type: =head2
11391 #: ../src/guestfs-actions.pod:3398
11392 msgid "guestfs_is_lv"
11393 msgstr ""
11394
11395 #. type: verbatim
11396 #: ../src/guestfs-actions.pod:3400
11397 #, no-wrap
11398 msgid ""
11399 " int\n"
11400 " guestfs_is_lv (guestfs_h *g,\n"
11401 "                const char *device);\n"
11402 "\n"
11403 msgstr ""
11404
11405 #. type: textblock
11406 #: ../src/guestfs-actions.pod:3404 ../fish/guestfish-actions.pod:2387
11407 msgid ""
11408 "This command tests whether C<device> is a logical volume, and returns true "
11409 "iff this is the case."
11410 msgstr ""
11411
11412 #. type: =head2
11413 #: ../src/guestfs-actions.pod:3411
11414 msgid "guestfs_is_ready"
11415 msgstr ""
11416
11417 #. type: verbatim
11418 #: ../src/guestfs-actions.pod:3413
11419 #, no-wrap
11420 msgid ""
11421 " int\n"
11422 " guestfs_is_ready (guestfs_h *g);\n"
11423 "\n"
11424 msgstr ""
11425
11426 #. type: textblock
11427 #: ../src/guestfs-actions.pod:3416 ../fish/guestfish-actions.pod:2394
11428 msgid ""
11429 "This returns true iff this handle is ready to accept commands (in the "
11430 "C<READY> state)."
11431 msgstr ""
11432
11433 #. type: =head2
11434 #: ../src/guestfs-actions.pod:3425
11435 msgid "guestfs_is_socket"
11436 msgstr ""
11437
11438 #. type: verbatim
11439 #: ../src/guestfs-actions.pod:3427
11440 #, no-wrap
11441 msgid ""
11442 " int\n"
11443 " guestfs_is_socket (guestfs_h *g,\n"
11444 "                    const char *path);\n"
11445 "\n"
11446 msgstr ""
11447
11448 #. type: textblock
11449 #: ../src/guestfs-actions.pod:3431 ../fish/guestfish-actions.pod:2403
11450 msgid ""
11451 "This returns C<true> if and only if there is a Unix domain socket with the "
11452 "given C<path> name."
11453 msgstr ""
11454
11455 #. type: =head2
11456 #: ../src/guestfs-actions.pod:3440
11457 msgid "guestfs_is_symlink"
11458 msgstr ""
11459
11460 #. type: verbatim
11461 #: ../src/guestfs-actions.pod:3442
11462 #, no-wrap
11463 msgid ""
11464 " int\n"
11465 " guestfs_is_symlink (guestfs_h *g,\n"
11466 "                     const char *path);\n"
11467 "\n"
11468 msgstr ""
11469
11470 #. type: textblock
11471 #: ../src/guestfs-actions.pod:3446 ../fish/guestfish-actions.pod:2412
11472 msgid ""
11473 "This returns C<true> if and only if there is a symbolic link with the given "
11474 "C<path> name."
11475 msgstr ""
11476
11477 #. type: =head2
11478 #: ../src/guestfs-actions.pod:3455
11479 msgid "guestfs_is_zero"
11480 msgstr ""
11481
11482 #. type: verbatim
11483 #: ../src/guestfs-actions.pod:3457
11484 #, no-wrap
11485 msgid ""
11486 " int\n"
11487 " guestfs_is_zero (guestfs_h *g,\n"
11488 "                  const char *path);\n"
11489 "\n"
11490 msgstr ""
11491
11492 #. type: textblock
11493 #: ../src/guestfs-actions.pod:3461 ../fish/guestfish-actions.pod:2421
11494 msgid ""
11495 "This returns true iff the file exists and the file is empty or it contains "
11496 "all zero bytes."
11497 msgstr ""
11498
11499 #. type: =head2
11500 #: ../src/guestfs-actions.pod:3466
11501 msgid "guestfs_is_zero_device"
11502 msgstr ""
11503
11504 #. type: verbatim
11505 #: ../src/guestfs-actions.pod:3468
11506 #, no-wrap
11507 msgid ""
11508 " int\n"
11509 " guestfs_is_zero_device (guestfs_h *g,\n"
11510 "                         const char *device);\n"
11511 "\n"
11512 msgstr ""
11513
11514 #. type: textblock
11515 #: ../src/guestfs-actions.pod:3472 ../fish/guestfish-actions.pod:2428
11516 msgid "This returns true iff the device exists and contains all zero bytes."
11517 msgstr ""
11518
11519 #. type: textblock
11520 #: ../src/guestfs-actions.pod:3474 ../fish/guestfish-actions.pod:2430
11521 msgid "Note that for large devices this can take a long time to run."
11522 msgstr ""
11523
11524 #. type: =head2
11525 #: ../src/guestfs-actions.pod:3478
11526 msgid "guestfs_kill_subprocess"
11527 msgstr ""
11528
11529 #. type: verbatim
11530 #: ../src/guestfs-actions.pod:3480
11531 #, no-wrap
11532 msgid ""
11533 " int\n"
11534 " guestfs_kill_subprocess (guestfs_h *g);\n"
11535 "\n"
11536 msgstr ""
11537
11538 #. type: textblock
11539 #: ../src/guestfs-actions.pod:3483 ../fish/guestfish-actions.pod:2436
11540 msgid "This kills the qemu subprocess.  You should never need to call this."
11541 msgstr ""
11542
11543 #. type: =head2
11544 #: ../src/guestfs-actions.pod:3489
11545 msgid "guestfs_launch"
11546 msgstr ""
11547
11548 #. type: verbatim
11549 #: ../src/guestfs-actions.pod:3491
11550 #, no-wrap
11551 msgid ""
11552 " int\n"
11553 " guestfs_launch (guestfs_h *g);\n"
11554 "\n"
11555 msgstr ""
11556
11557 #. type: textblock
11558 #: ../src/guestfs-actions.pod:3494 ../fish/guestfish-actions.pod:2444
11559 msgid ""
11560 "Internally libguestfs is implemented by running a virtual machine using "
11561 "L<qemu(1)>."
11562 msgstr ""
11563
11564 #. type: textblock
11565 #: ../src/guestfs-actions.pod:3497 ../fish/guestfish-actions.pod:2447
11566 msgid ""
11567 "You should call this after configuring the handle (eg. adding drives) but "
11568 "before performing any actions."
11569 msgstr ""
11570
11571 #. type: =head2
11572 #: ../src/guestfs-actions.pod:3509
11573 msgid "guestfs_lchown"
11574 msgstr ""
11575
11576 #. type: verbatim
11577 #: ../src/guestfs-actions.pod:3511
11578 #, no-wrap
11579 msgid ""
11580 " int\n"
11581 " guestfs_lchown (guestfs_h *g,\n"
11582 "                 int owner,\n"
11583 "                 int group,\n"
11584 "                 const char *path);\n"
11585 "\n"
11586 msgstr ""
11587
11588 #. type: textblock
11589 #: ../src/guestfs-actions.pod:3517
11590 msgid ""
11591 "Change the file owner to C<owner> and group to C<group>.  This is like "
11592 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
11593 "changed, not the target."
11594 msgstr ""
11595
11596 #. type: =head2
11597 #: ../src/guestfs-actions.pod:3529
11598 msgid "guestfs_lgetxattr"
11599 msgstr ""
11600
11601 #. type: verbatim
11602 #: ../src/guestfs-actions.pod:3531
11603 #, no-wrap
11604 msgid ""
11605 " char *\n"
11606 " guestfs_lgetxattr (guestfs_h *g,\n"
11607 "                    const char *path,\n"
11608 "                    const char *name,\n"
11609 "                    size_t *size_r);\n"
11610 "\n"
11611 msgstr ""
11612
11613 #. type: textblock
11614 #: ../src/guestfs-actions.pod:3537 ../fish/guestfish-actions.pod:2466
11615 msgid ""
11616 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
11617 "is a symlink, then this call returns an extended attribute from the symlink."
11618 msgstr ""
11619
11620 #. type: textblock
11621 #: ../src/guestfs-actions.pod:3551
11622 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
11623 msgstr ""
11624
11625 #. type: =head2
11626 #: ../src/guestfs-actions.pod:3559
11627 msgid "guestfs_lgetxattrs"
11628 msgstr ""
11629
11630 #. type: verbatim
11631 #: ../src/guestfs-actions.pod:3561
11632 #, no-wrap
11633 msgid ""
11634 " struct guestfs_xattr_list *\n"
11635 " guestfs_lgetxattrs (guestfs_h *g,\n"
11636 "                     const char *path);\n"
11637 "\n"
11638 msgstr ""
11639
11640 #. type: textblock
11641 #: ../src/guestfs-actions.pod:3565
11642 msgid ""
11643 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
11644 "then it returns the extended attributes of the link itself."
11645 msgstr ""
11646
11647 #. type: =head2
11648 #: ../src/guestfs-actions.pod:3575
11649 msgid "guestfs_list_devices"
11650 msgstr ""
11651
11652 #. type: verbatim
11653 #: ../src/guestfs-actions.pod:3577
11654 #, no-wrap
11655 msgid ""
11656 " char **\n"
11657 " guestfs_list_devices (guestfs_h *g);\n"
11658 "\n"
11659 msgstr ""
11660
11661 #. type: textblock
11662 #: ../src/guestfs-actions.pod:3580 ../fish/guestfish-actions.pod:2494
11663 msgid "List all the block devices."
11664 msgstr ""
11665
11666 #. type: textblock
11667 #: ../src/guestfs-actions.pod:3582 ../fish/guestfish-actions.pod:2496
11668 msgid "The full block device names are returned, eg. C</dev/sda>."
11669 msgstr ""
11670
11671 #. type: =head2
11672 #: ../src/guestfs-actions.pod:3592
11673 msgid "guestfs_list_filesystems"
11674 msgstr ""
11675
11676 #. type: verbatim
11677 #: ../src/guestfs-actions.pod:3594
11678 #, no-wrap
11679 msgid ""
11680 " char **\n"
11681 " guestfs_list_filesystems (guestfs_h *g);\n"
11682 "\n"
11683 msgstr ""
11684
11685 #. type: textblock
11686 #: ../src/guestfs-actions.pod:3597 ../fish/guestfish-actions.pod:2504
11687 msgid ""
11688 "This inspection command looks for filesystems on partitions, block devices "
11689 "and logical volumes, returning a list of devices containing filesystems and "
11690 "their type."
11691 msgstr ""
11692
11693 #. type: textblock
11694 #: ../src/guestfs-actions.pod:3601 ../fish/guestfish-actions.pod:2508
11695 msgid ""
11696 "The return value is a hash, where the keys are the devices containing "
11697 "filesystems, and the values are the filesystem types.  For example:"
11698 msgstr ""
11699
11700 #. type: verbatim
11701 #: ../src/guestfs-actions.pod:3605 ../fish/guestfish-actions.pod:2512
11702 #, no-wrap
11703 msgid ""
11704 " \"/dev/sda1\" => \"ntfs\"\n"
11705 " \"/dev/sda2\" => \"ext2\"\n"
11706 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
11707 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
11708 "\n"
11709 msgstr ""
11710
11711 #. type: textblock
11712 #: ../src/guestfs-actions.pod:3610 ../fish/guestfish-actions.pod:2517
11713 msgid ""
11714 "The value can have the special value \"unknown\", meaning the content of the "
11715 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
11716 msgstr ""
11717
11718 #. type: textblock
11719 #: ../src/guestfs-actions.pod:3614
11720 msgid ""
11721 "This command runs other libguestfs commands, which might include "
11722 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
11723 "soon after launch and only when nothing is mounted."
11724 msgstr ""
11725
11726 #. type: textblock
11727 #: ../src/guestfs-actions.pod:3618
11728 msgid ""
11729 "Not all of the filesystems returned will be mountable.  In particular, swap "
11730 "partitions are returned in the list.  Also this command does not check that "
11731 "each filesystem found is valid and mountable, and some filesystems might be "
11732 "mountable but require special options.  Filesystems may not all belong to a "
11733 "single logical operating system (use C<guestfs_inspect_os> to look for "
11734 "OSes)."
11735 msgstr ""
11736
11737 #. type: textblock
11738 #: ../src/guestfs-actions.pod:3632 ../src/guestfs-actions.pod:5244
11739 msgid "(Added in 1.5.15)"
11740 msgstr ""
11741
11742 #. type: =head2
11743 #: ../src/guestfs-actions.pod:3634
11744 msgid "guestfs_list_partitions"
11745 msgstr ""
11746
11747 #. type: verbatim
11748 #: ../src/guestfs-actions.pod:3636
11749 #, no-wrap
11750 msgid ""
11751 " char **\n"
11752 " guestfs_list_partitions (guestfs_h *g);\n"
11753 "\n"
11754 msgstr ""
11755
11756 #. type: textblock
11757 #: ../src/guestfs-actions.pod:3639 ../fish/guestfish-actions.pod:2537
11758 msgid "List all the partitions detected on all block devices."
11759 msgstr ""
11760
11761 #. type: textblock
11762 #: ../src/guestfs-actions.pod:3641 ../fish/guestfish-actions.pod:2539
11763 msgid "The full partition device names are returned, eg. C</dev/sda1>"
11764 msgstr ""
11765
11766 #. type: textblock
11767 #: ../src/guestfs-actions.pod:3643
11768 msgid ""
11769 "This does not return logical volumes.  For that you will need to call "
11770 "C<guestfs_lvs>."
11771 msgstr ""
11772
11773 #. type: =head2
11774 #: ../src/guestfs-actions.pod:3654
11775 msgid "guestfs_ll"
11776 msgstr ""
11777
11778 #. type: verbatim
11779 #: ../src/guestfs-actions.pod:3656
11780 #, no-wrap
11781 msgid ""
11782 " char *\n"
11783 " guestfs_ll (guestfs_h *g,\n"
11784 "             const char *directory);\n"
11785 "\n"
11786 msgstr ""
11787
11788 #. type: textblock
11789 #: ../src/guestfs-actions.pod:3660 ../fish/guestfish-actions.pod:2550
11790 msgid ""
11791 "List the files in C<directory> (relative to the root directory, there is no "
11792 "cwd) in the format of 'ls -la'."
11793 msgstr ""
11794
11795 #. type: textblock
11796 #: ../src/guestfs-actions.pod:3663 ../fish/guestfish-actions.pod:2553
11797 msgid ""
11798 "This command is mostly useful for interactive sessions.  It is I<not> "
11799 "intended that you try to parse the output string."
11800 msgstr ""
11801
11802 #. type: =head2
11803 #: ../src/guestfs-actions.pod:3671
11804 msgid "guestfs_ln"
11805 msgstr ""
11806
11807 #. type: verbatim
11808 #: ../src/guestfs-actions.pod:3673
11809 #, no-wrap
11810 msgid ""
11811 " int\n"
11812 " guestfs_ln (guestfs_h *g,\n"
11813 "             const char *target,\n"
11814 "             const char *linkname);\n"
11815 "\n"
11816 msgstr ""
11817
11818 #. type: textblock
11819 #: ../src/guestfs-actions.pod:3678 ../fish/guestfish-actions.pod:2560
11820 msgid "This command creates a hard link using the C<ln> command."
11821 msgstr ""
11822
11823 #. type: =head2
11824 #: ../src/guestfs-actions.pod:3684
11825 msgid "guestfs_ln_f"
11826 msgstr ""
11827
11828 #. type: verbatim
11829 #: ../src/guestfs-actions.pod:3686
11830 #, no-wrap
11831 msgid ""
11832 " int\n"
11833 " guestfs_ln_f (guestfs_h *g,\n"
11834 "               const char *target,\n"
11835 "               const char *linkname);\n"
11836 "\n"
11837 msgstr ""
11838
11839 #. type: textblock
11840 #: ../src/guestfs-actions.pod:3691 ../fish/guestfish-actions.pod:2566
11841 msgid ""
11842 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
11843 "option removes the link (C<linkname>) if it exists already."
11844 msgstr ""
11845
11846 #. type: =head2
11847 #: ../src/guestfs-actions.pod:3698
11848 msgid "guestfs_ln_s"
11849 msgstr ""
11850
11851 #. type: verbatim
11852 #: ../src/guestfs-actions.pod:3700
11853 #, no-wrap
11854 msgid ""
11855 " int\n"
11856 " guestfs_ln_s (guestfs_h *g,\n"
11857 "               const char *target,\n"
11858 "               const char *linkname);\n"
11859 "\n"
11860 msgstr ""
11861
11862 #. type: textblock
11863 #: ../src/guestfs-actions.pod:3705 ../fish/guestfish-actions.pod:2573
11864 msgid "This command creates a symbolic link using the C<ln -s> command."
11865 msgstr ""
11866
11867 #. type: =head2
11868 #: ../src/guestfs-actions.pod:3711
11869 msgid "guestfs_ln_sf"
11870 msgstr ""
11871
11872 #. type: verbatim
11873 #: ../src/guestfs-actions.pod:3713
11874 #, no-wrap
11875 msgid ""
11876 " int\n"
11877 " guestfs_ln_sf (guestfs_h *g,\n"
11878 "                const char *target,\n"
11879 "                const char *linkname);\n"
11880 "\n"
11881 msgstr ""
11882
11883 #. type: textblock
11884 #: ../src/guestfs-actions.pod:3718 ../fish/guestfish-actions.pod:2579
11885 msgid ""
11886 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
11887 "option removes the link (C<linkname>) if it exists already."
11888 msgstr ""
11889
11890 #. type: =head2
11891 #: ../src/guestfs-actions.pod:3725
11892 msgid "guestfs_lremovexattr"
11893 msgstr ""
11894
11895 #. type: verbatim
11896 #: ../src/guestfs-actions.pod:3727
11897 #, no-wrap
11898 msgid ""
11899 " int\n"
11900 " guestfs_lremovexattr (guestfs_h *g,\n"
11901 "                       const char *xattr,\n"
11902 "                       const char *path);\n"
11903 "\n"
11904 msgstr ""
11905
11906 #. type: textblock
11907 #: ../src/guestfs-actions.pod:3732
11908 msgid ""
11909 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
11910 "link, then it removes an extended attribute of the link itself."
11911 msgstr ""
11912
11913 #. type: =head2
11914 #: ../src/guestfs-actions.pod:3740
11915 msgid "guestfs_ls"
11916 msgstr ""
11917
11918 #. type: verbatim
11919 #: ../src/guestfs-actions.pod:3742
11920 #, no-wrap
11921 msgid ""
11922 " char **\n"
11923 " guestfs_ls (guestfs_h *g,\n"
11924 "             const char *directory);\n"
11925 "\n"
11926 msgstr ""
11927
11928 #. type: textblock
11929 #: ../src/guestfs-actions.pod:3746 ../fish/guestfish-actions.pod:2594
11930 msgid ""
11931 "List the files in C<directory> (relative to the root directory, there is no "
11932 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
11933 "shown."
11934 msgstr ""
11935
11936 #. type: textblock
11937 #: ../src/guestfs-actions.pod:3750
11938 msgid ""
11939 "This command is mostly useful for interactive sessions.  Programs should "
11940 "probably use C<guestfs_readdir> instead."
11941 msgstr ""
11942
11943 #. type: =head2
11944 #: ../src/guestfs-actions.pod:3759
11945 msgid "guestfs_lsetxattr"
11946 msgstr ""
11947
11948 #. type: verbatim
11949 #: ../src/guestfs-actions.pod:3761
11950 #, no-wrap
11951 msgid ""
11952 " int\n"
11953 " guestfs_lsetxattr (guestfs_h *g,\n"
11954 "                    const char *xattr,\n"
11955 "                    const char *val,\n"
11956 "                    int vallen,\n"
11957 "                    const char *path);\n"
11958 "\n"
11959 msgstr ""
11960
11961 #. type: textblock
11962 #: ../src/guestfs-actions.pod:3768
11963 msgid ""
11964 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
11965 "then it sets an extended attribute of the link itself."
11966 msgstr ""
11967
11968 #. type: =head2
11969 #: ../src/guestfs-actions.pod:3776
11970 msgid "guestfs_lstat"
11971 msgstr ""
11972
11973 #. type: verbatim
11974 #: ../src/guestfs-actions.pod:3778
11975 #, no-wrap
11976 msgid ""
11977 " struct guestfs_stat *\n"
11978 " guestfs_lstat (guestfs_h *g,\n"
11979 "                const char *path);\n"
11980 "\n"
11981 msgstr ""
11982
11983 #. type: textblock
11984 #: ../src/guestfs-actions.pod:3782 ../src/guestfs-actions.pod:6375 ../fish/guestfish-actions.pod:2613 ../fish/guestfish-actions.pod:4317
11985 msgid "Returns file information for the given C<path>."
11986 msgstr ""
11987
11988 #. type: textblock
11989 #: ../src/guestfs-actions.pod:3784
11990 msgid ""
11991 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
11992 "link, then the link is stat-ed, not the file it refers to."
11993 msgstr ""
11994
11995 #. type: textblock
11996 #: ../src/guestfs-actions.pod:3788 ../fish/guestfish-actions.pod:2619
11997 msgid "This is the same as the C<lstat(2)> system call."
11998 msgstr ""
11999
12000 #. type: textblock
12001 #: ../src/guestfs-actions.pod:3790 ../src/guestfs-actions.pod:6379
12002 msgid ""
12003 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12004 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12005 msgstr ""
12006
12007 #. type: textblock
12008 #: ../src/guestfs-actions.pod:3794 ../src/guestfs-actions.pod:6383 ../src/guestfs-actions.pod:6401 ../src/guestfs-actions.pod:6782
12009 msgid "(Added in 0.9.2)"
12010 msgstr ""
12011
12012 #. type: =head2
12013 #: ../src/guestfs-actions.pod:3796
12014 msgid "guestfs_lstatlist"
12015 msgstr ""
12016
12017 #. type: verbatim
12018 #: ../src/guestfs-actions.pod:3798
12019 #, no-wrap
12020 msgid ""
12021 " struct guestfs_stat_list *\n"
12022 " guestfs_lstatlist (guestfs_h *g,\n"
12023 "                    const char *path,\n"
12024 "                    char *const *names);\n"
12025 "\n"
12026 msgstr ""
12027
12028 #. type: textblock
12029 #: ../src/guestfs-actions.pod:3803
12030 msgid ""
12031 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12032 "files, where all files are in the directory C<path>.  C<names> is the list "
12033 "of files from this directory."
12034 msgstr ""
12035
12036 #. type: textblock
12037 #: ../src/guestfs-actions.pod:3807 ../fish/guestfish-actions.pod:2629
12038 msgid ""
12039 "On return you get a list of stat structs, with a one-to-one correspondence "
12040 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12041 "then the C<ino> field of that structure is set to C<-1>."
12042 msgstr ""
12043
12044 #. type: textblock
12045 #: ../src/guestfs-actions.pod:3812
12046 msgid ""
12047 "This call is intended for programs that want to efficiently list a directory "
12048 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12049 "for a similarly efficient call for getting extended attributes.  Very long "
12050 "directory listings might cause the protocol message size to be exceeded, "
12051 "causing this call to fail.  The caller must split up such requests into "
12052 "smaller groups of names."
12053 msgstr ""
12054
12055 #. type: textblock
12056 #: ../src/guestfs-actions.pod:3820
12057 msgid ""
12058 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12059 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12060 msgstr ""
12061
12062 #. type: =head2
12063 #: ../src/guestfs-actions.pod:3826
12064 msgid "guestfs_luks_add_key"
12065 msgstr ""
12066
12067 #. type: verbatim
12068 #: ../src/guestfs-actions.pod:3828
12069 #, no-wrap
12070 msgid ""
12071 " int\n"
12072 " guestfs_luks_add_key (guestfs_h *g,\n"
12073 "                       const char *device,\n"
12074 "                       const char *key,\n"
12075 "                       const char *newkey,\n"
12076 "                       int keyslot);\n"
12077 "\n"
12078 msgstr ""
12079
12080 #. type: textblock
12081 #: ../src/guestfs-actions.pod:3835 ../fish/guestfish-actions.pod:2646
12082 msgid ""
12083 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12084 "existing key, and is used to access the device.  C<newkey> is the new key to "
12085 "add.  C<keyslot> is the key slot that will be replaced."
12086 msgstr ""
12087
12088 #. type: textblock
12089 #: ../src/guestfs-actions.pod:3840
12090 msgid ""
12091 "Note that if C<keyslot> already contains a key, then this command will "
12092 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12093 msgstr ""
12094
12095 #. type: textblock
12096 #: ../src/guestfs-actions.pod:3846 ../src/guestfs-actions.pod:3886 ../src/guestfs-actions.pod:3909 ../src/guestfs-actions.pod:3929 ../src/guestfs-actions.pod:3961 ../src/guestfs-actions.pod:3980
12097 msgid ""
12098 "This function takes a key or passphrase parameter which could contain "
12099 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12100 "information."
12101 msgstr ""
12102
12103 #. type: textblock
12104 #: ../src/guestfs-actions.pod:3850 ../src/guestfs-actions.pod:3890 ../src/guestfs-actions.pod:3913 ../src/guestfs-actions.pod:3933
12105 msgid "(Added in 1.5.2)"
12106 msgstr ""
12107
12108 #. type: =head2
12109 #: ../src/guestfs-actions.pod:3852
12110 msgid "guestfs_luks_close"
12111 msgstr ""
12112
12113 #. type: verbatim
12114 #: ../src/guestfs-actions.pod:3854
12115 #, no-wrap
12116 msgid ""
12117 " int\n"
12118 " guestfs_luks_close (guestfs_h *g,\n"
12119 "                     const char *device);\n"
12120 "\n"
12121 msgstr ""
12122
12123 #. type: textblock
12124 #: ../src/guestfs-actions.pod:3858
12125 msgid ""
12126 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12127 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12128 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12129 "underlying block device."
12130 msgstr ""
12131
12132 #. type: textblock
12133 #: ../src/guestfs-actions.pod:3866 ../src/guestfs-actions.pod:3965 ../src/guestfs-actions.pod:3984 ../src/guestfs-actions.pod:4034 ../src/guestfs-actions.pod:4082
12134 msgid "(Added in 1.5.1)"
12135 msgstr ""
12136
12137 #. type: =head2
12138 #: ../src/guestfs-actions.pod:3868
12139 msgid "guestfs_luks_format"
12140 msgstr ""
12141
12142 #. type: verbatim
12143 #: ../src/guestfs-actions.pod:3870
12144 #, no-wrap
12145 msgid ""
12146 " int\n"
12147 " guestfs_luks_format (guestfs_h *g,\n"
12148 "                      const char *device,\n"
12149 "                      const char *key,\n"
12150 "                      int keyslot);\n"
12151 "\n"
12152 msgstr ""
12153
12154 #. type: textblock
12155 #: ../src/guestfs-actions.pod:3876 ../fish/guestfish-actions.pod:2672
12156 msgid ""
12157 "This command erases existing data on C<device> and formats the device as a "
12158 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12159 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12160 msgstr ""
12161
12162 #. type: textblock
12163 #: ../src/guestfs-actions.pod:3883 ../src/guestfs-actions.pod:3906 ../src/guestfs-actions.pod:4046 ../src/guestfs-actions.pod:4995 ../src/guestfs-actions.pod:5775 ../src/guestfs-actions.pod:6182 ../src/guestfs-actions.pod:6212 ../src/guestfs-actions.pod:6245 ../src/guestfs-actions.pod:7427 ../fish/guestfish-actions.pod:2680 ../fish/guestfish-actions.pod:2693 ../fish/guestfish-actions.pod:2777 ../fish/guestfish-actions.pod:3358 ../fish/guestfish-actions.pod:3878 ../fish/guestfish-actions.pod:4188 ../fish/guestfish-actions.pod:4211 ../fish/guestfish-actions.pod:4233 ../fish/guestfish-actions.pod:4963
12164 msgid ""
12165 "B<This command is dangerous.  Without careful use you can easily destroy all "
12166 "your data>."
12167 msgstr ""
12168
12169 #. type: =head2
12170 #: ../src/guestfs-actions.pod:3892
12171 msgid "guestfs_luks_format_cipher"
12172 msgstr ""
12173
12174 #. type: verbatim
12175 #: ../src/guestfs-actions.pod:3894
12176 #, no-wrap
12177 msgid ""
12178 " int\n"
12179 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12180 "                             const char *device,\n"
12181 "                             const char *key,\n"
12182 "                             int keyslot,\n"
12183 "                             const char *cipher);\n"
12184 "\n"
12185 msgstr ""
12186
12187 #. type: textblock
12188 #: ../src/guestfs-actions.pod:3901
12189 msgid ""
12190 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12191 "set the C<cipher> used."
12192 msgstr ""
12193
12194 #. type: =head2
12195 #: ../src/guestfs-actions.pod:3915
12196 msgid "guestfs_luks_kill_slot"
12197 msgstr ""
12198
12199 #. type: verbatim
12200 #: ../src/guestfs-actions.pod:3917
12201 #, no-wrap
12202 msgid ""
12203 " int\n"
12204 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12205 "                         const char *device,\n"
12206 "                         const char *key,\n"
12207 "                         int keyslot);\n"
12208 "\n"
12209 msgstr ""
12210
12211 #. type: textblock
12212 #: ../src/guestfs-actions.pod:3923 ../fish/guestfish-actions.pod:2700
12213 msgid ""
12214 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12215 "device C<device>.  C<key> must be one of the I<other> keys."
12216 msgstr ""
12217
12218 #. type: =head2
12219 #: ../src/guestfs-actions.pod:3935
12220 msgid "guestfs_luks_open"
12221 msgstr ""
12222
12223 #. type: verbatim
12224 #: ../src/guestfs-actions.pod:3937
12225 #, no-wrap
12226 msgid ""
12227 " int\n"
12228 " guestfs_luks_open (guestfs_h *g,\n"
12229 "                    const char *device,\n"
12230 "                    const char *key,\n"
12231 "                    const char *mapname);\n"
12232 "\n"
12233 msgstr ""
12234
12235 #. type: textblock
12236 #: ../src/guestfs-actions.pod:3943 ../fish/guestfish-actions.pod:2711
12237 msgid ""
12238 "This command opens a block device which has been encrypted according to the "
12239 "Linux Unified Key Setup (LUKS) standard."
12240 msgstr ""
12241
12242 #. type: textblock
12243 #: ../src/guestfs-actions.pod:3946 ../fish/guestfish-actions.pod:2714
12244 msgid "C<device> is the encrypted block device or partition."
12245 msgstr ""
12246
12247 #. type: textblock
12248 #: ../src/guestfs-actions.pod:3948 ../fish/guestfish-actions.pod:2716
12249 msgid ""
12250 "The caller must supply one of the keys associated with the LUKS block "
12251 "device, in the C<key> parameter."
12252 msgstr ""
12253
12254 #. type: textblock
12255 #: ../src/guestfs-actions.pod:3951 ../fish/guestfish-actions.pod:2719
12256 msgid ""
12257 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12258 "writes to this block device are decrypted from and encrypted to the "
12259 "underlying C<device> respectively."
12260 msgstr ""
12261
12262 #. type: textblock
12263 #: ../src/guestfs-actions.pod:3955
12264 msgid ""
12265 "If this block device contains LVM volume groups, then calling "
12266 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12267 "visible."
12268 msgstr ""
12269
12270 #. type: =head2
12271 #: ../src/guestfs-actions.pod:3967
12272 msgid "guestfs_luks_open_ro"
12273 msgstr ""
12274
12275 #. type: verbatim
12276 #: ../src/guestfs-actions.pod:3969
12277 #, no-wrap
12278 msgid ""
12279 " int\n"
12280 " guestfs_luks_open_ro (guestfs_h *g,\n"
12281 "                       const char *device,\n"
12282 "                       const char *key,\n"
12283 "                       const char *mapname);\n"
12284 "\n"
12285 msgstr ""
12286
12287 #. type: textblock
12288 #: ../src/guestfs-actions.pod:3975
12289 msgid ""
12290 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12291 "created."
12292 msgstr ""
12293
12294 #. type: =head2
12295 #: ../src/guestfs-actions.pod:3986
12296 msgid "guestfs_lvcreate"
12297 msgstr ""
12298
12299 #. type: verbatim
12300 #: ../src/guestfs-actions.pod:3988
12301 #, no-wrap
12302 msgid ""
12303 " int\n"
12304 " guestfs_lvcreate (guestfs_h *g,\n"
12305 "                   const char *logvol,\n"
12306 "                   const char *volgroup,\n"
12307 "                   int mbytes);\n"
12308 "\n"
12309 msgstr ""
12310
12311 #. type: textblock
12312 #: ../src/guestfs-actions.pod:3994 ../fish/guestfish-actions.pod:2744
12313 msgid ""
12314 "This creates an LVM logical volume called C<logvol> on the volume group "
12315 "C<volgroup>, with C<size> megabytes."
12316 msgstr ""
12317
12318 #. type: =head2
12319 #: ../src/guestfs-actions.pod:4001
12320 msgid "guestfs_lvm_canonical_lv_name"
12321 msgstr ""
12322
12323 #. type: verbatim
12324 #: ../src/guestfs-actions.pod:4003
12325 #, no-wrap
12326 msgid ""
12327 " char *\n"
12328 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12329 "                                const char *lvname);\n"
12330 "\n"
12331 msgstr ""
12332
12333 #. type: textblock
12334 #: ../src/guestfs-actions.pod:4007 ../fish/guestfish-actions.pod:2751
12335 msgid ""
12336 "This converts alternative naming schemes for LVs that you might find to the "
12337 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
12338 "C</dev/VG/LV>."
12339 msgstr ""
12340
12341 #. type: textblock
12342 #: ../src/guestfs-actions.pod:4011 ../fish/guestfish-actions.pod:2755
12343 msgid ""
12344 "This command returns an error if the C<lvname> parameter does not refer to a "
12345 "logical volume."
12346 msgstr ""
12347
12348 #. type: textblock
12349 #: ../src/guestfs-actions.pod:4014
12350 msgid "See also C<guestfs_is_lv>."
12351 msgstr ""
12352
12353 #. type: textblock
12354 #: ../src/guestfs-actions.pod:4019
12355 msgid "(Added in 1.5.24)"
12356 msgstr ""
12357
12358 #. type: =head2
12359 #: ../src/guestfs-actions.pod:4021
12360 msgid "guestfs_lvm_clear_filter"
12361 msgstr ""
12362
12363 #. type: verbatim
12364 #: ../src/guestfs-actions.pod:4023
12365 #, no-wrap
12366 msgid ""
12367 " int\n"
12368 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12369 "\n"
12370 msgstr ""
12371
12372 #. type: textblock
12373 #: ../src/guestfs-actions.pod:4026
12374 msgid ""
12375 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12376 "see every block device."
12377 msgstr ""
12378
12379 #. type: textblock
12380 #: ../src/guestfs-actions.pod:4029 ../src/guestfs-actions.pod:4071 ../fish/guestfish-actions.pod:2767 ../fish/guestfish-actions.pod:2798
12381 msgid "This command also clears the LVM cache and performs a volume group scan."
12382 msgstr ""
12383
12384 #. type: =head2
12385 #: ../src/guestfs-actions.pod:4036
12386 msgid "guestfs_lvm_remove_all"
12387 msgstr ""
12388
12389 #. type: verbatim
12390 #: ../src/guestfs-actions.pod:4038
12391 #, no-wrap
12392 msgid ""
12393 " int\n"
12394 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12395 "\n"
12396 msgstr ""
12397
12398 #. type: textblock
12399 #: ../src/guestfs-actions.pod:4041 ../fish/guestfish-actions.pod:2774
12400 msgid ""
12401 "This command removes all LVM logical volumes, volume groups and physical "
12402 "volumes."
12403 msgstr ""
12404
12405 #. type: =head2
12406 #: ../src/guestfs-actions.pod:4051
12407 msgid "guestfs_lvm_set_filter"
12408 msgstr ""
12409
12410 #. type: verbatim
12411 #: ../src/guestfs-actions.pod:4053
12412 #, no-wrap
12413 msgid ""
12414 " int\n"
12415 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12416 "                         char *const *devices);\n"
12417 "\n"
12418 msgstr ""
12419
12420 #. type: textblock
12421 #: ../src/guestfs-actions.pod:4057 ../fish/guestfish-actions.pod:2784
12422 msgid ""
12423 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12424 "block devices in the list C<devices>, and will ignore all other attached "
12425 "block devices."
12426 msgstr ""
12427
12428 #. type: textblock
12429 #: ../src/guestfs-actions.pod:4061 ../fish/guestfish-actions.pod:2788
12430 msgid ""
12431 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12432 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12433 "there are two types of duplication possible: either cloned PVs/VGs which "
12434 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12435 "same name.  In normal operation you cannot create this situation, but you "
12436 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12437 "inside the LVM metadata."
12438 msgstr ""
12439
12440 #. type: textblock
12441 #: ../src/guestfs-actions.pod:4074 ../fish/guestfish-actions.pod:2801
12442 msgid "You can filter whole block devices or individual partitions."
12443 msgstr ""
12444
12445 #. type: textblock
12446 #: ../src/guestfs-actions.pod:4076 ../fish/guestfish-actions.pod:2803
12447 msgid ""
12448 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12449 "filesystem), even if you are not filtering out that VG."
12450 msgstr ""
12451
12452 #. type: =head2
12453 #: ../src/guestfs-actions.pod:4084
12454 msgid "guestfs_lvremove"
12455 msgstr ""
12456
12457 #. type: verbatim
12458 #: ../src/guestfs-actions.pod:4086
12459 #, no-wrap
12460 msgid ""
12461 " int\n"
12462 " guestfs_lvremove (guestfs_h *g,\n"
12463 "                   const char *device);\n"
12464 "\n"
12465 msgstr ""
12466
12467 #. type: textblock
12468 #: ../src/guestfs-actions.pod:4090 ../fish/guestfish-actions.pod:2811
12469 msgid ""
12470 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12471 "LV, such as C</dev/VG/LV>."
12472 msgstr ""
12473
12474 #. type: textblock
12475 #: ../src/guestfs-actions.pod:4093 ../fish/guestfish-actions.pod:2814
12476 msgid ""
12477 "You can also remove all LVs in a volume group by specifying the VG name, "
12478 "C</dev/VG>."
12479 msgstr ""
12480
12481 #. type: textblock
12482 #: ../src/guestfs-actions.pod:4098 ../src/guestfs-actions.pod:5341 ../src/guestfs-actions.pod:7158
12483 msgid "(Added in 1.0.13)"
12484 msgstr ""
12485
12486 #. type: =head2
12487 #: ../src/guestfs-actions.pod:4100
12488 msgid "guestfs_lvrename"
12489 msgstr ""
12490
12491 #. type: verbatim
12492 #: ../src/guestfs-actions.pod:4102
12493 #, no-wrap
12494 msgid ""
12495 " int\n"
12496 " guestfs_lvrename (guestfs_h *g,\n"
12497 "                   const char *logvol,\n"
12498 "                   const char *newlogvol);\n"
12499 "\n"
12500 msgstr ""
12501
12502 #. type: textblock
12503 #: ../src/guestfs-actions.pod:4107 ../fish/guestfish-actions.pod:2821
12504 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12505 msgstr ""
12506
12507 #. type: textblock
12508 #: ../src/guestfs-actions.pod:4111 ../src/guestfs-actions.pod:7171
12509 msgid "(Added in 1.0.83)"
12510 msgstr ""
12511
12512 #. type: =head2
12513 #: ../src/guestfs-actions.pod:4113
12514 msgid "guestfs_lvresize"
12515 msgstr ""
12516
12517 #. type: verbatim
12518 #: ../src/guestfs-actions.pod:4115
12519 #, no-wrap
12520 msgid ""
12521 " int\n"
12522 " guestfs_lvresize (guestfs_h *g,\n"
12523 "                   const char *device,\n"
12524 "                   int mbytes);\n"
12525 "\n"
12526 msgstr ""
12527
12528 #. type: textblock
12529 #: ../src/guestfs-actions.pod:4120 ../fish/guestfish-actions.pod:2827
12530 msgid ""
12531 "This resizes (expands or shrinks) an existing LVM logical volume to "
12532 "C<mbytes>.  When reducing, data in the reduced part is lost."
12533 msgstr ""
12534
12535 #. type: =head2
12536 #: ../src/guestfs-actions.pod:4128
12537 msgid "guestfs_lvresize_free"
12538 msgstr ""
12539
12540 #. type: verbatim
12541 #: ../src/guestfs-actions.pod:4130
12542 #, no-wrap
12543 msgid ""
12544 " int\n"
12545 " guestfs_lvresize_free (guestfs_h *g,\n"
12546 "                        const char *lv,\n"
12547 "                        int percent);\n"
12548 "\n"
12549 msgstr ""
12550
12551 #. type: textblock
12552 #: ../src/guestfs-actions.pod:4135 ../fish/guestfish-actions.pod:2835
12553 msgid ""
12554 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
12555 "remaining free space in the volume group.  Commonly you would call this with "
12556 "pc = 100 which expands the logical volume as much as possible, using all "
12557 "remaining free space in the volume group."
12558 msgstr ""
12559
12560 #. type: textblock
12561 #: ../src/guestfs-actions.pod:4143
12562 msgid "(Added in 1.3.3)"
12563 msgstr ""
12564
12565 #. type: =head2
12566 #: ../src/guestfs-actions.pod:4145
12567 msgid "guestfs_lvs"
12568 msgstr ""
12569
12570 #. type: verbatim
12571 #: ../src/guestfs-actions.pod:4147
12572 #, no-wrap
12573 msgid ""
12574 " char **\n"
12575 " guestfs_lvs (guestfs_h *g);\n"
12576 "\n"
12577 msgstr ""
12578
12579 #. type: textblock
12580 #: ../src/guestfs-actions.pod:4150 ../fish/guestfish-actions.pod:2845
12581 msgid ""
12582 "List all the logical volumes detected.  This is the equivalent of the "
12583 "L<lvs(8)> command."
12584 msgstr ""
12585
12586 #. type: textblock
12587 #: ../src/guestfs-actions.pod:4153 ../fish/guestfish-actions.pod:2848
12588 msgid ""
12589 "This returns a list of the logical volume device names "
12590 "(eg. C</dev/VolGroup00/LogVol00>)."
12591 msgstr ""
12592
12593 #. type: textblock
12594 #: ../src/guestfs-actions.pod:4156
12595 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
12596 msgstr ""
12597
12598 #. type: =head2
12599 #: ../src/guestfs-actions.pod:4164
12600 msgid "guestfs_lvs_full"
12601 msgstr ""
12602
12603 #. type: verbatim
12604 #: ../src/guestfs-actions.pod:4166
12605 #, no-wrap
12606 msgid ""
12607 " struct guestfs_lvm_lv_list *\n"
12608 " guestfs_lvs_full (guestfs_h *g);\n"
12609 "\n"
12610 msgstr ""
12611
12612 #. type: textblock
12613 #: ../src/guestfs-actions.pod:4169 ../fish/guestfish-actions.pod:2857
12614 msgid ""
12615 "List all the logical volumes detected.  This is the equivalent of the "
12616 "L<lvs(8)> command.  The \"full\" version includes all fields."
12617 msgstr ""
12618
12619 #. type: textblock
12620 #: ../src/guestfs-actions.pod:4172
12621 msgid ""
12622 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
12623 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
12624 "use>."
12625 msgstr ""
12626
12627 #. type: =head2
12628 #: ../src/guestfs-actions.pod:4178
12629 msgid "guestfs_lvuuid"
12630 msgstr ""
12631
12632 #. type: verbatim
12633 #: ../src/guestfs-actions.pod:4180
12634 #, no-wrap
12635 msgid ""
12636 " char *\n"
12637 " guestfs_lvuuid (guestfs_h *g,\n"
12638 "                 const char *device);\n"
12639 "\n"
12640 msgstr ""
12641
12642 #. type: textblock
12643 #: ../src/guestfs-actions.pod:4184 ../fish/guestfish-actions.pod:2864
12644 msgid "This command returns the UUID of the LVM LV C<device>."
12645 msgstr ""
12646
12647 #. type: =head2
12648 #: ../src/guestfs-actions.pod:4191
12649 msgid "guestfs_lxattrlist"
12650 msgstr ""
12651
12652 #. type: verbatim
12653 #: ../src/guestfs-actions.pod:4193
12654 #, no-wrap
12655 msgid ""
12656 " struct guestfs_xattr_list *\n"
12657 " guestfs_lxattrlist (guestfs_h *g,\n"
12658 "                     const char *path,\n"
12659 "                     char *const *names);\n"
12660 "\n"
12661 msgstr ""
12662
12663 #. type: textblock
12664 #: ../src/guestfs-actions.pod:4198 ../fish/guestfish-actions.pod:2870
12665 msgid ""
12666 "This call allows you to get the extended attributes of multiple files, where "
12667 "all files are in the directory C<path>.  C<names> is the list of files from "
12668 "this directory."
12669 msgstr ""
12670
12671 #. type: textblock
12672 #: ../src/guestfs-actions.pod:4202 ../fish/guestfish-actions.pod:2874
12673 msgid ""
12674 "On return you get a flat list of xattr structs which must be interpreted "
12675 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
12676 "C<attrval> in this struct is zero-length to indicate there was an error "
12677 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
12678 "number (the number of following attributes for this file, which could be "
12679 "C<\"0\">).  Then after the first xattr struct are the zero or more "
12680 "attributes for the first named file.  This repeats for the second and "
12681 "subsequent files."
12682 msgstr ""
12683
12684 #. type: textblock
12685 #: ../src/guestfs-actions.pod:4212
12686 msgid ""
12687 "This call is intended for programs that want to efficiently list a directory "
12688 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
12689 "a similarly efficient call for getting standard stats.  Very long directory "
12690 "listings might cause the protocol message size to be exceeded, causing this "
12691 "call to fail.  The caller must split up such requests into smaller groups of "
12692 "names."
12693 msgstr ""
12694
12695 #. type: =head2
12696 #: ../src/guestfs-actions.pod:4226
12697 msgid "guestfs_mkdir"
12698 msgstr ""
12699
12700 #. type: verbatim
12701 #: ../src/guestfs-actions.pod:4228
12702 #, no-wrap
12703 msgid ""
12704 " int\n"
12705 " guestfs_mkdir (guestfs_h *g,\n"
12706 "                const char *path);\n"
12707 "\n"
12708 msgstr ""
12709
12710 #. type: textblock
12711 #: ../src/guestfs-actions.pod:4232 ../fish/guestfish-actions.pod:2896
12712 msgid "Create a directory named C<path>."
12713 msgstr ""
12714
12715 #. type: =head2
12716 #: ../src/guestfs-actions.pod:4238
12717 msgid "guestfs_mkdir_mode"
12718 msgstr ""
12719
12720 #. type: verbatim
12721 #: ../src/guestfs-actions.pod:4240
12722 #, no-wrap
12723 msgid ""
12724 " int\n"
12725 " guestfs_mkdir_mode (guestfs_h *g,\n"
12726 "                     const char *path,\n"
12727 "                     int mode);\n"
12728 "\n"
12729 msgstr ""
12730
12731 #. type: textblock
12732 #: ../src/guestfs-actions.pod:4245 ../fish/guestfish-actions.pod:2902
12733 msgid ""
12734 "This command creates a directory, setting the initial permissions of the "
12735 "directory to C<mode>."
12736 msgstr ""
12737
12738 #. type: textblock
12739 #: ../src/guestfs-actions.pod:4248 ../fish/guestfish-actions.pod:2905
12740 msgid ""
12741 "For common Linux filesystems, the actual mode which is set will be C<mode & "
12742 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
12743 "other ways."
12744 msgstr ""
12745
12746 #. type: textblock
12747 #: ../src/guestfs-actions.pod:4252
12748 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
12749 msgstr ""
12750
12751 #. type: =head2
12752 #: ../src/guestfs-actions.pod:4258
12753 msgid "guestfs_mkdir_p"
12754 msgstr ""
12755
12756 #. type: verbatim
12757 #: ../src/guestfs-actions.pod:4260
12758 #, no-wrap
12759 msgid ""
12760 " int\n"
12761 " guestfs_mkdir_p (guestfs_h *g,\n"
12762 "                  const char *path);\n"
12763 "\n"
12764 msgstr ""
12765
12766 #. type: textblock
12767 #: ../src/guestfs-actions.pod:4264 ../fish/guestfish-actions.pod:2915
12768 msgid ""
12769 "Create a directory named C<path>, creating any parent directories as "
12770 "necessary.  This is like the C<mkdir -p> shell command."
12771 msgstr ""
12772
12773 #. type: =head2
12774 #: ../src/guestfs-actions.pod:4271
12775 msgid "guestfs_mkdtemp"
12776 msgstr ""
12777
12778 #. type: verbatim
12779 #: ../src/guestfs-actions.pod:4273
12780 #, no-wrap
12781 msgid ""
12782 " char *\n"
12783 " guestfs_mkdtemp (guestfs_h *g,\n"
12784 "                  const char *template);\n"
12785 "\n"
12786 msgstr ""
12787
12788 #. type: textblock
12789 #: ../src/guestfs-actions.pod:4277 ../fish/guestfish-actions.pod:2922
12790 msgid ""
12791 "This command creates a temporary directory.  The C<template> parameter "
12792 "should be a full pathname for the temporary directory name with the final "
12793 "six characters being \"XXXXXX\"."
12794 msgstr ""
12795
12796 #. type: textblock
12797 #: ../src/guestfs-actions.pod:4282 ../fish/guestfish-actions.pod:2927
12798 msgid ""
12799 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
12800 "being suitable for Windows filesystems."
12801 msgstr ""
12802
12803 #. type: textblock
12804 #: ../src/guestfs-actions.pod:4285 ../fish/guestfish-actions.pod:2930
12805 msgid "The name of the temporary directory that was created is returned."
12806 msgstr ""
12807
12808 #. type: textblock
12809 #: ../src/guestfs-actions.pod:4288 ../fish/guestfish-actions.pod:2933
12810 msgid "The temporary directory is created with mode 0700 and is owned by root."
12811 msgstr ""
12812
12813 #. type: textblock
12814 #: ../src/guestfs-actions.pod:4291 ../fish/guestfish-actions.pod:2936
12815 msgid ""
12816 "The caller is responsible for deleting the temporary directory and its "
12817 "contents after use."
12818 msgstr ""
12819
12820 #. type: textblock
12821 #: ../src/guestfs-actions.pod:4294 ../fish/guestfish-actions.pod:2939
12822 msgid "See also: L<mkdtemp(3)>"
12823 msgstr ""
12824
12825 #. type: =head2
12826 #: ../src/guestfs-actions.pod:4301
12827 msgid "guestfs_mke2fs_J"
12828 msgstr ""
12829
12830 #. type: verbatim
12831 #: ../src/guestfs-actions.pod:4303
12832 #, no-wrap
12833 msgid ""
12834 " int\n"
12835 " guestfs_mke2fs_J (guestfs_h *g,\n"
12836 "                   const char *fstype,\n"
12837 "                   int blocksize,\n"
12838 "                   const char *device,\n"
12839 "                   const char *journal);\n"
12840 "\n"
12841 msgstr ""
12842
12843 #. type: textblock
12844 #: ../src/guestfs-actions.pod:4310 ../fish/guestfish-actions.pod:2945
12845 msgid ""
12846 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
12847 "C<journal>.  It is equivalent to the command:"
12848 msgstr ""
12849
12850 #. type: verbatim
12851 #: ../src/guestfs-actions.pod:4314 ../fish/guestfish-actions.pod:2949
12852 #, no-wrap
12853 msgid ""
12854 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
12855 "\n"
12856 msgstr ""
12857
12858 #. type: textblock
12859 #: ../src/guestfs-actions.pod:4316
12860 msgid "See also C<guestfs_mke2journal>."
12861 msgstr ""
12862
12863 #. type: textblock
12864 #: ../src/guestfs-actions.pod:4320 ../src/guestfs-actions.pod:4338 ../src/guestfs-actions.pod:4356 ../src/guestfs-actions.pod:4372 ../src/guestfs-actions.pod:4386 ../src/guestfs-actions.pod:4400 ../src/guestfs-actions.pod:4459 ../src/guestfs-actions.pod:4724
12865 msgid "(Added in 1.0.68)"
12866 msgstr ""
12867
12868 #. type: =head2
12869 #: ../src/guestfs-actions.pod:4322
12870 msgid "guestfs_mke2fs_JL"
12871 msgstr ""
12872
12873 #. type: verbatim
12874 #: ../src/guestfs-actions.pod:4324
12875 #, no-wrap
12876 msgid ""
12877 " int\n"
12878 " guestfs_mke2fs_JL (guestfs_h *g,\n"
12879 "                    const char *fstype,\n"
12880 "                    int blocksize,\n"
12881 "                    const char *device,\n"
12882 "                    const char *label);\n"
12883 "\n"
12884 msgstr ""
12885
12886 #. type: textblock
12887 #: ../src/guestfs-actions.pod:4331 ../fish/guestfish-actions.pod:2957
12888 msgid ""
12889 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
12890 "the journal labeled C<label>."
12891 msgstr ""
12892
12893 #. type: textblock
12894 #: ../src/guestfs-actions.pod:4334
12895 msgid "See also C<guestfs_mke2journal_L>."
12896 msgstr ""
12897
12898 #. type: =head2
12899 #: ../src/guestfs-actions.pod:4340
12900 msgid "guestfs_mke2fs_JU"
12901 msgstr ""
12902
12903 #. type: verbatim
12904 #: ../src/guestfs-actions.pod:4342
12905 #, no-wrap
12906 msgid ""
12907 " int\n"
12908 " guestfs_mke2fs_JU (guestfs_h *g,\n"
12909 "                    const char *fstype,\n"
12910 "                    int blocksize,\n"
12911 "                    const char *device,\n"
12912 "                    const char *uuid);\n"
12913 "\n"
12914 msgstr ""
12915
12916 #. type: textblock
12917 #: ../src/guestfs-actions.pod:4349 ../fish/guestfish-actions.pod:2966
12918 msgid ""
12919 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
12920 "the journal with UUID C<uuid>."
12921 msgstr ""
12922
12923 #. type: textblock
12924 #: ../src/guestfs-actions.pod:4352
12925 msgid "See also C<guestfs_mke2journal_U>."
12926 msgstr ""
12927
12928 #. type: =head2
12929 #: ../src/guestfs-actions.pod:4358
12930 msgid "guestfs_mke2journal"
12931 msgstr ""
12932
12933 #. type: verbatim
12934 #: ../src/guestfs-actions.pod:4360
12935 #, no-wrap
12936 msgid ""
12937 " int\n"
12938 " guestfs_mke2journal (guestfs_h *g,\n"
12939 "                      int blocksize,\n"
12940 "                      const char *device);\n"
12941 "\n"
12942 msgstr ""
12943
12944 #. type: textblock
12945 #: ../src/guestfs-actions.pod:4365 ../fish/guestfish-actions.pod:2975
12946 msgid ""
12947 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
12948 "command:"
12949 msgstr ""
12950
12951 #. type: verbatim
12952 #: ../src/guestfs-actions.pod:4368 ../fish/guestfish-actions.pod:2978
12953 #, no-wrap
12954 msgid ""
12955 " mke2fs -O journal_dev -b blocksize device\n"
12956 "\n"
12957 msgstr ""
12958
12959 #. type: =head2
12960 #: ../src/guestfs-actions.pod:4374
12961 msgid "guestfs_mke2journal_L"
12962 msgstr ""
12963
12964 #. type: verbatim
12965 #: ../src/guestfs-actions.pod:4376
12966 #, no-wrap
12967 msgid ""
12968 " int\n"
12969 " guestfs_mke2journal_L (guestfs_h *g,\n"
12970 "                        int blocksize,\n"
12971 "                        const char *label,\n"
12972 "                        const char *device);\n"
12973 "\n"
12974 msgstr ""
12975
12976 #. type: textblock
12977 #: ../src/guestfs-actions.pod:4382 ../fish/guestfish-actions.pod:2984
12978 msgid "This creates an ext2 external journal on C<device> with label C<label>."
12979 msgstr ""
12980
12981 #. type: =head2
12982 #: ../src/guestfs-actions.pod:4388
12983 msgid "guestfs_mke2journal_U"
12984 msgstr ""
12985
12986 #. type: verbatim
12987 #: ../src/guestfs-actions.pod:4390
12988 #, no-wrap
12989 msgid ""
12990 " int\n"
12991 " guestfs_mke2journal_U (guestfs_h *g,\n"
12992 "                        int blocksize,\n"
12993 "                        const char *uuid,\n"
12994 "                        const char *device);\n"
12995 "\n"
12996 msgstr ""
12997
12998 #. type: textblock
12999 #: ../src/guestfs-actions.pod:4396 ../fish/guestfish-actions.pod:2990
13000 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13001 msgstr ""
13002
13003 #. type: =head2
13004 #: ../src/guestfs-actions.pod:4402
13005 msgid "guestfs_mkfifo"
13006 msgstr ""
13007
13008 #. type: verbatim
13009 #: ../src/guestfs-actions.pod:4404
13010 #, no-wrap
13011 msgid ""
13012 " int\n"
13013 " guestfs_mkfifo (guestfs_h *g,\n"
13014 "                 int mode,\n"
13015 "                 const char *path);\n"
13016 "\n"
13017 msgstr ""
13018
13019 #. type: textblock
13020 #: ../src/guestfs-actions.pod:4409
13021 msgid ""
13022 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13023 "is just a convenient wrapper around C<guestfs_mknod>."
13024 msgstr ""
13025
13026 #. type: =head2
13027 #: ../src/guestfs-actions.pod:4419
13028 msgid "guestfs_mkfs"
13029 msgstr ""
13030
13031 #. type: verbatim
13032 #: ../src/guestfs-actions.pod:4421
13033 #, no-wrap
13034 msgid ""
13035 " int\n"
13036 " guestfs_mkfs (guestfs_h *g,\n"
13037 "               const char *fstype,\n"
13038 "               const char *device);\n"
13039 "\n"
13040 msgstr ""
13041
13042 #. type: textblock
13043 #: ../src/guestfs-actions.pod:4426 ../fish/guestfish-actions.pod:3006
13044 msgid ""
13045 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13046 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13047 msgstr ""
13048
13049 #. type: =head2
13050 #: ../src/guestfs-actions.pod:4434
13051 msgid "guestfs_mkfs_b"
13052 msgstr ""
13053
13054 #. type: verbatim
13055 #: ../src/guestfs-actions.pod:4436
13056 #, no-wrap
13057 msgid ""
13058 " int\n"
13059 " guestfs_mkfs_b (guestfs_h *g,\n"
13060 "                 const char *fstype,\n"
13061 "                 int blocksize,\n"
13062 "                 const char *device);\n"
13063 "\n"
13064 msgstr ""
13065
13066 #. type: textblock
13067 #: ../src/guestfs-actions.pod:4442
13068 msgid ""
13069 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13070 "block size of the resulting filesystem.  Supported block sizes depend on the "
13071 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13072 msgstr ""
13073
13074 #. type: textblock
13075 #: ../src/guestfs-actions.pod:4447 ../src/guestfs-actions.pod:4490 ../fish/guestfish-actions.pod:3019 ../fish/guestfish-actions.pod:3046
13076 msgid ""
13077 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13078 "cluster size."
13079 msgstr ""
13080
13081 #. type: textblock
13082 #: ../src/guestfs-actions.pod:4452 ../fish/guestfish-actions.pod:3022
13083 msgid ""
13084 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
13085 "instead."
13086 msgstr ""
13087
13088 #. type: =head2
13089 #: ../src/guestfs-actions.pod:4461
13090 msgid "guestfs_mkfs_opts"
13091 msgstr ""
13092
13093 #. type: verbatim
13094 #: ../src/guestfs-actions.pod:4463
13095 #, no-wrap
13096 msgid ""
13097 " int\n"
13098 " guestfs_mkfs_opts (guestfs_h *g,\n"
13099 "                    const char *fstype,\n"
13100 "                    const char *device,\n"
13101 "                    ...);\n"
13102 "\n"
13103 msgstr ""
13104
13105 #. type: verbatim
13106 #: ../src/guestfs-actions.pod:4474
13107 #, no-wrap
13108 msgid ""
13109 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13110 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13111 "\n"
13112 msgstr ""
13113
13114 #. type: textblock
13115 #: ../src/guestfs-actions.pod:4477 ../fish/guestfish-actions.pod:3033
13116 msgid ""
13117 "This function creates a filesystem on C<device>.  The filesystem type is "
13118 "C<fstype>, for example C<ext3>."
13119 msgstr ""
13120
13121 #. type: =item
13122 #: ../src/guestfs-actions.pod:4484 ../fish/guestfish-actions.pod:3040
13123 msgid "C<blocksize>"
13124 msgstr ""
13125
13126 #. type: textblock
13127 #: ../src/guestfs-actions.pod:4486 ../fish/guestfish-actions.pod:3042
13128 msgid ""
13129 "The filesystem block size.  Supported block sizes depend on the filesystem "
13130 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13131 "filesystems."
13132 msgstr ""
13133
13134 #. type: textblock
13135 #: ../src/guestfs-actions.pod:4493 ../fish/guestfish-actions.pod:3049
13136 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13137 msgstr ""
13138
13139 #. type: =item
13140 #: ../src/guestfs-actions.pod:4495 ../fish/guestfish-actions.pod:3051
13141 msgid "C<features>"
13142 msgstr ""
13143
13144 #. type: textblock
13145 #: ../src/guestfs-actions.pod:4497 ../fish/guestfish-actions.pod:3053
13146 msgid "This passes the I<-O> parameter to the external mkfs program."
13147 msgstr ""
13148
13149 #. type: textblock
13150 #: ../src/guestfs-actions.pod:4499 ../fish/guestfish-actions.pod:3055
13151 msgid ""
13152 "For certain filesystem types, this allows extra filesystem features to be "
13153 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13154 msgstr ""
13155
13156 #. type: textblock
13157 #: ../src/guestfs-actions.pod:4503 ../fish/guestfish-actions.pod:3059
13158 msgid ""
13159 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13160 "type."
13161 msgstr ""
13162
13163 #. type: textblock
13164 #: ../src/guestfs-actions.pod:4510
13165 msgid "(Added in 1.7.19)"
13166 msgstr ""
13167
13168 #. type: =head2
13169 #: ../src/guestfs-actions.pod:4512
13170 msgid "guestfs_mkfs_opts_va"
13171 msgstr ""
13172
13173 #. type: verbatim
13174 #: ../src/guestfs-actions.pod:4514
13175 #, no-wrap
13176 msgid ""
13177 " int\n"
13178 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13179 "                       const char *fstype,\n"
13180 "                       const char *device,\n"
13181 "                       va_list args);\n"
13182 "\n"
13183 msgstr ""
13184
13185 #. type: textblock
13186 #: ../src/guestfs-actions.pod:4520
13187 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13188 msgstr ""
13189
13190 #. type: =head2
13191 #: ../src/guestfs-actions.pod:4524
13192 msgid "guestfs_mkfs_opts_argv"
13193 msgstr ""
13194
13195 #. type: verbatim
13196 #: ../src/guestfs-actions.pod:4526
13197 #, no-wrap
13198 msgid ""
13199 " int\n"
13200 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13201 "                         const char *fstype,\n"
13202 "                         const char *device,\n"
13203 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13204 "\n"
13205 msgstr ""
13206
13207 #. type: textblock
13208 #: ../src/guestfs-actions.pod:4532
13209 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13210 msgstr ""
13211
13212 #. type: =head2
13213 #: ../src/guestfs-actions.pod:4536
13214 msgid "guestfs_mkmountpoint"
13215 msgstr ""
13216
13217 #. type: verbatim
13218 #: ../src/guestfs-actions.pod:4538
13219 #, no-wrap
13220 msgid ""
13221 " int\n"
13222 " guestfs_mkmountpoint (guestfs_h *g,\n"
13223 "                       const char *exemptpath);\n"
13224 "\n"
13225 msgstr ""
13226
13227 #. type: textblock
13228 #: ../src/guestfs-actions.pod:4542
13229 msgid ""
13230 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13231 "that can be used to create extra mountpoints before mounting the first "
13232 "filesystem."
13233 msgstr ""
13234
13235 #. type: textblock
13236 #: ../src/guestfs-actions.pod:4546 ../fish/guestfish-actions.pod:3074
13237 msgid ""
13238 "These calls are I<only> necessary in some very limited circumstances, mainly "
13239 "the case where you want to mount a mix of unrelated and/or read-only "
13240 "filesystems together."
13241 msgstr ""
13242
13243 #. type: textblock
13244 #: ../src/guestfs-actions.pod:4550 ../fish/guestfish-actions.pod:3078
13245 msgid ""
13246 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13247 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13248 "inside that.  You can unpack this as follows in guestfish:"
13249 msgstr ""
13250
13251 #. type: verbatim
13252 #: ../src/guestfs-actions.pod:4555 ../fish/guestfish-actions.pod:3083
13253 #, no-wrap
13254 msgid ""
13255 " add-ro Fedora-11-i686-Live.iso\n"
13256 " run\n"
13257 " mkmountpoint /cd\n"
13258 " mkmountpoint /sqsh\n"
13259 " mkmountpoint /ext3fs\n"
13260 " mount /dev/sda /cd\n"
13261 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13262 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13263 "\n"
13264 msgstr ""
13265
13266 #. type: textblock
13267 #: ../src/guestfs-actions.pod:4564 ../fish/guestfish-actions.pod:3092
13268 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13269 msgstr ""
13270
13271 #. type: textblock
13272 #: ../src/guestfs-actions.pod:4566
13273 msgid ""
13274 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13275 "may get unexpected errors if you try to mix these calls.  It is safest to "
13276 "manually unmount filesystems and remove mountpoints after use."
13277 msgstr ""
13278
13279 #. type: textblock
13280 #: ../src/guestfs-actions.pod:4570
13281 msgid ""
13282 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13283 "first, so for this to work for manual mountpoints, you must ensure that the "
13284 "innermost mountpoints have the longest pathnames, as in the example code "
13285 "above."
13286 msgstr ""
13287
13288 #. type: textblock
13289 #: ../src/guestfs-actions.pod:4575 ../fish/guestfish-actions.pod:3103
13290 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13291 msgstr ""
13292
13293 #. type: textblock
13294 #: ../src/guestfs-actions.pod:4577
13295 msgid ""
13296 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13297 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13298 "can also trigger these issues."
13299 msgstr ""
13300
13301 #. type: textblock
13302 #: ../src/guestfs-actions.pod:4583 ../src/guestfs-actions.pod:4849 ../src/guestfs-actions.pod:5759
13303 msgid "(Added in 1.0.62)"
13304 msgstr ""
13305
13306 #. type: =head2
13307 #: ../src/guestfs-actions.pod:4585
13308 msgid "guestfs_mknod"
13309 msgstr ""
13310
13311 #. type: verbatim
13312 #: ../src/guestfs-actions.pod:4587
13313 #, no-wrap
13314 msgid ""
13315 " int\n"
13316 " guestfs_mknod (guestfs_h *g,\n"
13317 "                int mode,\n"
13318 "                int devmajor,\n"
13319 "                int devminor,\n"
13320 "                const char *path);\n"
13321 "\n"
13322 msgstr ""
13323
13324 #. type: textblock
13325 #: ../src/guestfs-actions.pod:4594 ../fish/guestfish-actions.pod:3113
13326 msgid ""
13327 "This call creates block or character special devices, or named pipes "
13328 "(FIFOs)."
13329 msgstr ""
13330
13331 #. type: textblock
13332 #: ../src/guestfs-actions.pod:4597 ../fish/guestfish-actions.pod:3116
13333 msgid ""
13334 "The C<mode> parameter should be the mode, using the standard constants.  "
13335 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13336 "used when creating block and character special devices."
13337 msgstr ""
13338
13339 #. type: textblock
13340 #: ../src/guestfs-actions.pod:4602
13341 msgid ""
13342 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13343 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13344 "regular file).  These constants are available in the standard Linux header "
13345 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13346 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13347 "the appropriate constant for you."
13348 msgstr ""
13349
13350 #. type: =head2
13351 #: ../src/guestfs-actions.pod:4616
13352 msgid "guestfs_mknod_b"
13353 msgstr ""
13354
13355 #. type: verbatim
13356 #: ../src/guestfs-actions.pod:4618
13357 #, no-wrap
13358 msgid ""
13359 " int\n"
13360 " guestfs_mknod_b (guestfs_h *g,\n"
13361 "                  int mode,\n"
13362 "                  int devmajor,\n"
13363 "                  int devminor,\n"
13364 "                  const char *path);\n"
13365 "\n"
13366 msgstr ""
13367
13368 #. type: textblock
13369 #: ../src/guestfs-actions.pod:4625
13370 msgid ""
13371 "This call creates a block device node called C<path> with mode C<mode> and "
13372 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13373 "wrapper around C<guestfs_mknod>."
13374 msgstr ""
13375
13376 #. type: =head2
13377 #: ../src/guestfs-actions.pod:4635
13378 msgid "guestfs_mknod_c"
13379 msgstr ""
13380
13381 #. type: verbatim
13382 #: ../src/guestfs-actions.pod:4637
13383 #, no-wrap
13384 msgid ""
13385 " int\n"
13386 " guestfs_mknod_c (guestfs_h *g,\n"
13387 "                  int mode,\n"
13388 "                  int devmajor,\n"
13389 "                  int devminor,\n"
13390 "                  const char *path);\n"
13391 "\n"
13392 msgstr ""
13393
13394 #. type: textblock
13395 #: ../src/guestfs-actions.pod:4644
13396 msgid ""
13397 "This call creates a char device node called C<path> with mode C<mode> and "
13398 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13399 "wrapper around C<guestfs_mknod>."
13400 msgstr ""
13401
13402 #. type: =head2
13403 #: ../src/guestfs-actions.pod:4654
13404 msgid "guestfs_mkswap"
13405 msgstr ""
13406
13407 #. type: verbatim
13408 #: ../src/guestfs-actions.pod:4656
13409 #, no-wrap
13410 msgid ""
13411 " int\n"
13412 " guestfs_mkswap (guestfs_h *g,\n"
13413 "                 const char *device);\n"
13414 "\n"
13415 msgstr ""
13416
13417 #. type: textblock
13418 #: ../src/guestfs-actions.pod:4660 ../fish/guestfish-actions.pod:3155
13419 msgid "Create a swap partition on C<device>."
13420 msgstr ""
13421
13422 #. type: =head2
13423 #: ../src/guestfs-actions.pod:4666
13424 msgid "guestfs_mkswap_L"
13425 msgstr ""
13426
13427 #. type: verbatim
13428 #: ../src/guestfs-actions.pod:4668
13429 #, no-wrap
13430 msgid ""
13431 " int\n"
13432 " guestfs_mkswap_L (guestfs_h *g,\n"
13433 "                   const char *label,\n"
13434 "                   const char *device);\n"
13435 "\n"
13436 msgstr ""
13437
13438 #. type: textblock
13439 #: ../src/guestfs-actions.pod:4673 ../fish/guestfish-actions.pod:3161
13440 msgid "Create a swap partition on C<device> with label C<label>."
13441 msgstr ""
13442
13443 #. type: textblock
13444 #: ../src/guestfs-actions.pod:4675 ../fish/guestfish-actions.pod:3163
13445 msgid ""
13446 "Note that you cannot attach a swap label to a block device "
13447 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
13448 "the kernel or swap tools."
13449 msgstr ""
13450
13451 #. type: =head2
13452 #: ../src/guestfs-actions.pod:4683
13453 msgid "guestfs_mkswap_U"
13454 msgstr ""
13455
13456 #. type: verbatim
13457 #: ../src/guestfs-actions.pod:4685
13458 #, no-wrap
13459 msgid ""
13460 " int\n"
13461 " guestfs_mkswap_U (guestfs_h *g,\n"
13462 "                   const char *uuid,\n"
13463 "                   const char *device);\n"
13464 "\n"
13465 msgstr ""
13466
13467 #. type: textblock
13468 #: ../src/guestfs-actions.pod:4690 ../fish/guestfish-actions.pod:3171
13469 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13470 msgstr ""
13471
13472 #. type: =head2
13473 #: ../src/guestfs-actions.pod:4696
13474 msgid "guestfs_mkswap_file"
13475 msgstr ""
13476
13477 #. type: verbatim
13478 #: ../src/guestfs-actions.pod:4698
13479 #, no-wrap
13480 msgid ""
13481 " int\n"
13482 " guestfs_mkswap_file (guestfs_h *g,\n"
13483 "                      const char *path);\n"
13484 "\n"
13485 msgstr ""
13486
13487 #. type: textblock
13488 #: ../src/guestfs-actions.pod:4702 ../fish/guestfish-actions.pod:3177
13489 msgid "Create a swap file."
13490 msgstr ""
13491
13492 #. type: textblock
13493 #: ../src/guestfs-actions.pod:4704
13494 msgid ""
13495 "This command just writes a swap file signature to an existing file.  To "
13496 "create the file itself, use something like C<guestfs_fallocate>."
13497 msgstr ""
13498
13499 #. type: =head2
13500 #: ../src/guestfs-actions.pod:4711
13501 msgid "guestfs_modprobe"
13502 msgstr ""
13503
13504 #. type: verbatim
13505 #: ../src/guestfs-actions.pod:4713
13506 #, no-wrap
13507 msgid ""
13508 " int\n"
13509 " guestfs_modprobe (guestfs_h *g,\n"
13510 "                   const char *modulename);\n"
13511 "\n"
13512 msgstr ""
13513
13514 #. type: textblock
13515 #: ../src/guestfs-actions.pod:4717 ../fish/guestfish-actions.pod:3186
13516 msgid "This loads a kernel module in the appliance."
13517 msgstr ""
13518
13519 #. type: textblock
13520 #: ../src/guestfs-actions.pod:4719 ../fish/guestfish-actions.pod:3188
13521 msgid ""
13522 "The kernel module must have been whitelisted when libguestfs was built (see "
13523 "C<appliance/kmod.whitelist.in> in the source)."
13524 msgstr ""
13525
13526 #. type: =head2
13527 #: ../src/guestfs-actions.pod:4726
13528 msgid "guestfs_mount"
13529 msgstr ""
13530
13531 #. type: verbatim
13532 #: ../src/guestfs-actions.pod:4728
13533 #, no-wrap
13534 msgid ""
13535 " int\n"
13536 " guestfs_mount (guestfs_h *g,\n"
13537 "                const char *device,\n"
13538 "                const char *mountpoint);\n"
13539 "\n"
13540 msgstr ""
13541
13542 #. type: textblock
13543 #: ../src/guestfs-actions.pod:4733 ../fish/guestfish-actions.pod:3195
13544 msgid ""
13545 "Mount a guest disk at a position in the filesystem.  Block devices are named "
13546 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
13547 "those block devices contain partitions, they will have the usual names "
13548 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
13549 msgstr ""
13550
13551 #. type: textblock
13552 #: ../src/guestfs-actions.pod:4739 ../fish/guestfish-actions.pod:3201
13553 msgid ""
13554 "The rules are the same as for L<mount(2)>: A filesystem must first be "
13555 "mounted on C</> before others can be mounted.  Other filesystems can only be "
13556 "mounted on directories which already exist."
13557 msgstr ""
13558
13559 #. type: textblock
13560 #: ../src/guestfs-actions.pod:4744 ../fish/guestfish-actions.pod:3206
13561 msgid ""
13562 "The mounted filesystem is writable, if we have sufficient permissions on the "
13563 "underlying device."
13564 msgstr ""
13565
13566 #. type: textblock
13567 #: ../src/guestfs-actions.pod:4747
13568 msgid ""
13569 "B<Important note:> When you use this call, the filesystem options C<sync> "
13570 "and C<noatime> are set implicitly.  This was originally done because we "
13571 "thought it would improve reliability, but it turns out that I<-o sync> has a "
13572 "very large negative performance impact and negligible effect on "
13573 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
13574 "in any code that needs performance, and instead use C<guestfs_mount_options> "
13575 "(use an empty string for the first parameter if you don't want any options)."
13576 msgstr ""
13577
13578 #. type: textblock
13579 #: ../src/guestfs-actions.pod:4759 ../fish/guestfish-actions.pod:3219
13580 msgid ""
13581 "This function is deprecated.  In new code, use the C<mount_options> call "
13582 "instead."
13583 msgstr ""
13584
13585 #. type: =head2
13586 #: ../src/guestfs-actions.pod:4768
13587 msgid "guestfs_mount_loop"
13588 msgstr ""
13589
13590 #. type: verbatim
13591 #: ../src/guestfs-actions.pod:4770
13592 #, no-wrap
13593 msgid ""
13594 " int\n"
13595 " guestfs_mount_loop (guestfs_h *g,\n"
13596 "                     const char *file,\n"
13597 "                     const char *mountpoint);\n"
13598 "\n"
13599 msgstr ""
13600
13601 #. type: textblock
13602 #: ../src/guestfs-actions.pod:4775 ../fish/guestfish-actions.pod:3230
13603 msgid ""
13604 "This command lets you mount C<file> (a filesystem image in a file) on a "
13605 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
13606 "mountpoint>."
13607 msgstr ""
13608
13609 #. type: =head2
13610 #: ../src/guestfs-actions.pod:4783
13611 msgid "guestfs_mount_options"
13612 msgstr ""
13613
13614 #. type: verbatim
13615 #: ../src/guestfs-actions.pod:4785
13616 #, no-wrap
13617 msgid ""
13618 " int\n"
13619 " guestfs_mount_options (guestfs_h *g,\n"
13620 "                        const char *options,\n"
13621 "                        const char *device,\n"
13622 "                        const char *mountpoint);\n"
13623 "\n"
13624 msgstr ""
13625
13626 #. type: textblock
13627 #: ../src/guestfs-actions.pod:4791
13628 msgid ""
13629 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13630 "the mount options as for the L<mount(8)> I<-o> flag."
13631 msgstr ""
13632
13633 #. type: textblock
13634 #: ../src/guestfs-actions.pod:4795 ../fish/guestfish-actions.pod:3242
13635 msgid ""
13636 "If the C<options> parameter is an empty string, then no options are passed "
13637 "(all options default to whatever the filesystem uses)."
13638 msgstr ""
13639
13640 #. type: textblock
13641 #: ../src/guestfs-actions.pod:4801 ../src/guestfs-actions.pod:4815 ../src/guestfs-actions.pod:4832
13642 msgid "(Added in 1.0.10)"
13643 msgstr ""
13644
13645 #. type: =head2
13646 #: ../src/guestfs-actions.pod:4803
13647 msgid "guestfs_mount_ro"
13648 msgstr ""
13649
13650 #. type: verbatim
13651 #: ../src/guestfs-actions.pod:4805
13652 #, no-wrap
13653 msgid ""
13654 " int\n"
13655 " guestfs_mount_ro (guestfs_h *g,\n"
13656 "                   const char *device,\n"
13657 "                   const char *mountpoint);\n"
13658 "\n"
13659 msgstr ""
13660
13661 #. type: textblock
13662 #: ../src/guestfs-actions.pod:4810
13663 msgid ""
13664 "This is the same as the C<guestfs_mount> command, but it mounts the "
13665 "filesystem with the read-only (I<-o ro>) flag."
13666 msgstr ""
13667
13668 #. type: =head2
13669 #: ../src/guestfs-actions.pod:4817
13670 msgid "guestfs_mount_vfs"
13671 msgstr ""
13672
13673 #. type: verbatim
13674 #: ../src/guestfs-actions.pod:4819
13675 #, no-wrap
13676 msgid ""
13677 " int\n"
13678 " guestfs_mount_vfs (guestfs_h *g,\n"
13679 "                    const char *options,\n"
13680 "                    const char *vfstype,\n"
13681 "                    const char *device,\n"
13682 "                    const char *mountpoint);\n"
13683 "\n"
13684 msgstr ""
13685
13686 #. type: textblock
13687 #: ../src/guestfs-actions.pod:4826
13688 msgid ""
13689 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13690 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
13691 "I<-t> flags."
13692 msgstr ""
13693
13694 #. type: =head2
13695 #: ../src/guestfs-actions.pod:4834
13696 msgid "guestfs_mountpoints"
13697 msgstr ""
13698
13699 #. type: verbatim
13700 #: ../src/guestfs-actions.pod:4836
13701 #, no-wrap
13702 msgid ""
13703 " char **\n"
13704 " guestfs_mountpoints (guestfs_h *g);\n"
13705 "\n"
13706 msgstr ""
13707
13708 #. type: textblock
13709 #: ../src/guestfs-actions.pod:4839
13710 msgid ""
13711 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
13712 "devices.  This one returns a hash table (map) of device name to directory "
13713 "where the device is mounted."
13714 msgstr ""
13715
13716 #. type: =head2
13717 #: ../src/guestfs-actions.pod:4851
13718 msgid "guestfs_mounts"
13719 msgstr ""
13720
13721 #. type: verbatim
13722 #: ../src/guestfs-actions.pod:4853
13723 #, no-wrap
13724 msgid ""
13725 " char **\n"
13726 " guestfs_mounts (guestfs_h *g);\n"
13727 "\n"
13728 msgstr ""
13729
13730 #. type: textblock
13731 #: ../src/guestfs-actions.pod:4856 ../fish/guestfish-actions.pod:3273
13732 msgid ""
13733 "This returns the list of currently mounted filesystems.  It returns the list "
13734 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
13735 msgstr ""
13736
13737 #. type: textblock
13738 #: ../src/guestfs-actions.pod:4859 ../fish/guestfish-actions.pod:3276
13739 msgid "Some internal mounts are not shown."
13740 msgstr ""
13741
13742 #. type: textblock
13743 #: ../src/guestfs-actions.pod:4861
13744 msgid "See also: C<guestfs_mountpoints>"
13745 msgstr ""
13746
13747 #. type: =head2
13748 #: ../src/guestfs-actions.pod:4869
13749 msgid "guestfs_mv"
13750 msgstr ""
13751
13752 #. type: verbatim
13753 #: ../src/guestfs-actions.pod:4871
13754 #, no-wrap
13755 msgid ""
13756 " int\n"
13757 " guestfs_mv (guestfs_h *g,\n"
13758 "             const char *src,\n"
13759 "             const char *dest);\n"
13760 "\n"
13761 msgstr ""
13762
13763 #. type: textblock
13764 #: ../src/guestfs-actions.pod:4876 ../fish/guestfish-actions.pod:3284
13765 msgid ""
13766 "This moves a file from C<src> to C<dest> where C<dest> is either a "
13767 "destination filename or destination directory."
13768 msgstr ""
13769
13770 #. type: =head2
13771 #: ../src/guestfs-actions.pod:4883
13772 msgid "guestfs_ntfs_3g_probe"
13773 msgstr ""
13774
13775 #. type: verbatim
13776 #: ../src/guestfs-actions.pod:4885
13777 #, no-wrap
13778 msgid ""
13779 " int\n"
13780 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
13781 "                        int rw,\n"
13782 "                        const char *device);\n"
13783 "\n"
13784 msgstr ""
13785
13786 #. type: textblock
13787 #: ../src/guestfs-actions.pod:4890 ../fish/guestfish-actions.pod:3291
13788 msgid ""
13789 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
13790 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
13791 "read-write, and some cannot be mounted at all)."
13792 msgstr ""
13793
13794 #. type: textblock
13795 #: ../src/guestfs-actions.pod:4894 ../fish/guestfish-actions.pod:3295
13796 msgid ""
13797 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
13798 "can be mounted read-write.  Set it to false if you want to test if the "
13799 "volume can be mounted read-only."
13800 msgstr ""
13801
13802 #. type: textblock
13803 #: ../src/guestfs-actions.pod:4898 ../fish/guestfish-actions.pod:3299
13804 msgid ""
13805 "The return value is an integer which C<0> if the operation would succeed, or "
13806 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
13807 msgstr ""
13808
13809 #. type: textblock
13810 #: ../src/guestfs-actions.pod:4904
13811 msgid "(Added in 1.0.43)"
13812 msgstr ""
13813
13814 #. type: =head2
13815 #: ../src/guestfs-actions.pod:4906
13816 msgid "guestfs_ntfsresize"
13817 msgstr ""
13818
13819 #. type: verbatim
13820 #: ../src/guestfs-actions.pod:4908
13821 #, no-wrap
13822 msgid ""
13823 " int\n"
13824 " guestfs_ntfsresize (guestfs_h *g,\n"
13825 "                     const char *device);\n"
13826 "\n"
13827 msgstr ""
13828
13829 #. type: textblock
13830 #: ../src/guestfs-actions.pod:4912 ../fish/guestfish-actions.pod:3307
13831 msgid ""
13832 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
13833 "size of the underlying device.  See also L<ntfsresize(8)>."
13834 msgstr ""
13835
13836 #. type: =head2
13837 #: ../src/guestfs-actions.pod:4920
13838 msgid "guestfs_ntfsresize_size"
13839 msgstr ""
13840
13841 #. type: verbatim
13842 #: ../src/guestfs-actions.pod:4922
13843 #, no-wrap
13844 msgid ""
13845 " int\n"
13846 " guestfs_ntfsresize_size (guestfs_h *g,\n"
13847 "                          const char *device,\n"
13848 "                          int64_t size);\n"
13849 "\n"
13850 msgstr ""
13851
13852 #. type: textblock
13853 #: ../src/guestfs-actions.pod:4927
13854 msgid ""
13855 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
13856 "to specify the new size (in bytes) explicitly."
13857 msgstr ""
13858
13859 #. type: textblock
13860 #: ../src/guestfs-actions.pod:4932 ../src/guestfs-actions.pod:5368 ../src/guestfs-actions.pod:5441 ../src/guestfs-actions.pod:5707 ../src/guestfs-actions.pod:7313
13861 msgid "(Added in 1.3.14)"
13862 msgstr ""
13863
13864 #. type: =head2
13865 #: ../src/guestfs-actions.pod:4934
13866 msgid "guestfs_part_add"
13867 msgstr ""
13868
13869 #. type: verbatim
13870 #: ../src/guestfs-actions.pod:4936
13871 #, no-wrap
13872 msgid ""
13873 " int\n"
13874 " guestfs_part_add (guestfs_h *g,\n"
13875 "                   const char *device,\n"
13876 "                   const char *prlogex,\n"
13877 "                   int64_t startsect,\n"
13878 "                   int64_t endsect);\n"
13879 "\n"
13880 msgstr ""
13881
13882 #. type: textblock
13883 #: ../src/guestfs-actions.pod:4943
13884 msgid ""
13885 "This command adds a partition to C<device>.  If there is no partition table "
13886 "on the device, call C<guestfs_part_init> first."
13887 msgstr ""
13888
13889 #. type: textblock
13890 #: ../src/guestfs-actions.pod:4946 ../fish/guestfish-actions.pod:3325
13891 msgid ""
13892 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
13893 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
13894 "C<logical>) and C<e> (or C<extended>) partition types."
13895 msgstr ""
13896
13897 #. type: textblock
13898 #: ../src/guestfs-actions.pod:4951 ../fish/guestfish-actions.pod:3330
13899 msgid ""
13900 "C<startsect> and C<endsect> are the start and end of the partition in "
13901 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
13902 "from the end of the disk (C<-1> is the last sector)."
13903 msgstr ""
13904
13905 #. type: textblock
13906 #: ../src/guestfs-actions.pod:4955
13907 msgid ""
13908 "Creating a partition which covers the whole disk is not so easy.  Use "
13909 "C<guestfs_part_disk> to do that."
13910 msgstr ""
13911
13912 #. type: textblock
13913 #: ../src/guestfs-actions.pod:4960 ../src/guestfs-actions.pod:4998 ../src/guestfs-actions.pod:5051 ../src/guestfs-actions.pod:5129 ../src/guestfs-actions.pod:5167 ../src/guestfs-actions.pod:5186 ../src/guestfs-actions.pod:5226
13914 msgid "(Added in 1.0.78)"
13915 msgstr ""
13916
13917 #. type: =head2
13918 #: ../src/guestfs-actions.pod:4962
13919 msgid "guestfs_part_del"
13920 msgstr ""
13921
13922 #. type: verbatim
13923 #: ../src/guestfs-actions.pod:4964
13924 #, no-wrap
13925 msgid ""
13926 " int\n"
13927 " guestfs_part_del (guestfs_h *g,\n"
13928 "                   const char *device,\n"
13929 "                   int partnum);\n"
13930 "\n"
13931 msgstr ""
13932
13933 #. type: textblock
13934 #: ../src/guestfs-actions.pod:4969 ../fish/guestfish-actions.pod:3341
13935 msgid "This command deletes the partition numbered C<partnum> on C<device>."
13936 msgstr ""
13937
13938 #. type: textblock
13939 #: ../src/guestfs-actions.pod:4971 ../fish/guestfish-actions.pod:3343
13940 msgid ""
13941 "Note that in the case of MBR partitioning, deleting an extended partition "
13942 "also deletes any logical partitions it contains."
13943 msgstr ""
13944
13945 #. type: =head2
13946 #: ../src/guestfs-actions.pod:4979
13947 msgid "guestfs_part_disk"
13948 msgstr ""
13949
13950 #. type: verbatim
13951 #: ../src/guestfs-actions.pod:4981
13952 #, no-wrap
13953 msgid ""
13954 " int\n"
13955 " guestfs_part_disk (guestfs_h *g,\n"
13956 "                    const char *device,\n"
13957 "                    const char *parttype);\n"
13958 "\n"
13959 msgstr ""
13960
13961 #. type: textblock
13962 #: ../src/guestfs-actions.pod:4986
13963 msgid ""
13964 "This command is simply a combination of C<guestfs_part_init> followed by "
13965 "C<guestfs_part_add> to create a single primary partition covering the whole "
13966 "disk."
13967 msgstr ""
13968
13969 #. type: textblock
13970 #: ../src/guestfs-actions.pod:4990
13971 msgid ""
13972 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
13973 "possible values are described in C<guestfs_part_init>."
13974 msgstr ""
13975
13976 #. type: =head2
13977 #: ../src/guestfs-actions.pod:5000
13978 msgid "guestfs_part_get_bootable"
13979 msgstr ""
13980
13981 #. type: verbatim
13982 #: ../src/guestfs-actions.pod:5002
13983 #, no-wrap
13984 msgid ""
13985 " int\n"
13986 " guestfs_part_get_bootable (guestfs_h *g,\n"
13987 "                            const char *device,\n"
13988 "                            int partnum);\n"
13989 "\n"
13990 msgstr ""
13991
13992 #. type: textblock
13993 #: ../src/guestfs-actions.pod:5007 ../fish/guestfish-actions.pod:3365
13994 msgid ""
13995 "This command returns true if the partition C<partnum> on C<device> has the "
13996 "bootable flag set."
13997 msgstr ""
13998
13999 #. type: textblock
14000 #: ../src/guestfs-actions.pod:5010
14001 msgid "See also C<guestfs_part_set_bootable>."
14002 msgstr ""
14003
14004 #. type: =head2
14005 #: ../src/guestfs-actions.pod:5016
14006 msgid "guestfs_part_get_mbr_id"
14007 msgstr ""
14008
14009 #. type: verbatim
14010 #: ../src/guestfs-actions.pod:5018
14011 #, no-wrap
14012 msgid ""
14013 " int\n"
14014 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14015 "                          const char *device,\n"
14016 "                          int partnum);\n"
14017 "\n"
14018 msgstr ""
14019
14020 #. type: textblock
14021 #: ../src/guestfs-actions.pod:5023 ../fish/guestfish-actions.pod:3374
14022 msgid ""
14023 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14024 "partition C<partnum>."
14025 msgstr ""
14026
14027 #. type: textblock
14028 #: ../src/guestfs-actions.pod:5026 ../src/guestfs-actions.pod:5202
14029 msgid ""
14030 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14031 "undefined results for other partition table types (see "
14032 "C<guestfs_part_get_parttype>)."
14033 msgstr ""
14034
14035 #. type: =head2
14036 #: ../src/guestfs-actions.pod:5034
14037 msgid "guestfs_part_get_parttype"
14038 msgstr ""
14039
14040 #. type: verbatim
14041 #: ../src/guestfs-actions.pod:5036
14042 #, no-wrap
14043 msgid ""
14044 " char *\n"
14045 " guestfs_part_get_parttype (guestfs_h *g,\n"
14046 "                            const char *device);\n"
14047 "\n"
14048 msgstr ""
14049
14050 #. type: textblock
14051 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3385
14052 msgid ""
14053 "This command examines the partition table on C<device> and returns the "
14054 "partition table type (format) being used."
14055 msgstr ""
14056
14057 #. type: textblock
14058 #: ../src/guestfs-actions.pod:5043
14059 msgid ""
14060 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14061 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14062 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14063 msgstr ""
14064
14065 #. type: =head2
14066 #: ../src/guestfs-actions.pod:5053
14067 msgid "guestfs_part_init"
14068 msgstr ""
14069
14070 #. type: verbatim
14071 #: ../src/guestfs-actions.pod:5055
14072 #, no-wrap
14073 msgid ""
14074 " int\n"
14075 " guestfs_part_init (guestfs_h *g,\n"
14076 "                    const char *device,\n"
14077 "                    const char *parttype);\n"
14078 "\n"
14079 msgstr ""
14080
14081 #. type: textblock
14082 #: ../src/guestfs-actions.pod:5060 ../fish/guestfish-actions.pod:3397
14083 msgid ""
14084 "This creates an empty partition table on C<device> of one of the partition "
14085 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14086 "(for large disks)."
14087 msgstr ""
14088
14089 #. type: textblock
14090 #: ../src/guestfs-actions.pod:5064
14091 msgid ""
14092 "Initially there are no partitions.  Following this, you should call "
14093 "C<guestfs_part_add> for each partition required."
14094 msgstr ""
14095
14096 #. type: textblock
14097 #: ../src/guestfs-actions.pod:5067 ../fish/guestfish-actions.pod:3404
14098 msgid "Possible values for C<parttype> are:"
14099 msgstr ""
14100
14101 #. type: =item
14102 #: ../src/guestfs-actions.pod:5071 ../fish/guestfish-actions.pod:3408
14103 msgid "B<efi> | B<gpt>"
14104 msgstr ""
14105
14106 #. type: textblock
14107 #: ../src/guestfs-actions.pod:5073 ../fish/guestfish-actions.pod:3410
14108 msgid "Intel EFI / GPT partition table."
14109 msgstr ""
14110
14111 #. type: textblock
14112 #: ../src/guestfs-actions.pod:5075 ../fish/guestfish-actions.pod:3412
14113 msgid ""
14114 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14115 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14116 "the C<mbr> format."
14117 msgstr ""
14118
14119 #. type: =item
14120 #: ../src/guestfs-actions.pod:5079 ../fish/guestfish-actions.pod:3416
14121 msgid "B<mbr> | B<msdos>"
14122 msgstr ""
14123
14124 #. type: textblock
14125 #: ../src/guestfs-actions.pod:5081 ../fish/guestfish-actions.pod:3418
14126 msgid ""
14127 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14128 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14129 "TB.  For large disks we recommend using C<gpt>."
14130 msgstr ""
14131
14132 #. type: textblock
14133 #: ../src/guestfs-actions.pod:5088 ../fish/guestfish-actions.pod:3425
14134 msgid "Other partition table types that may work but are not supported include:"
14135 msgstr ""
14136
14137 #. type: =item
14138 #: ../src/guestfs-actions.pod:5093 ../fish/guestfish-actions.pod:3430
14139 msgid "B<aix>"
14140 msgstr ""
14141
14142 #. type: textblock
14143 #: ../src/guestfs-actions.pod:5095 ../fish/guestfish-actions.pod:3432
14144 msgid "AIX disk labels."
14145 msgstr ""
14146
14147 #. type: =item
14148 #: ../src/guestfs-actions.pod:5097 ../fish/guestfish-actions.pod:3434
14149 msgid "B<amiga> | B<rdb>"
14150 msgstr ""
14151
14152 #. type: textblock
14153 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3436
14154 msgid "Amiga \"Rigid Disk Block\" format."
14155 msgstr ""
14156
14157 #. type: =item
14158 #: ../src/guestfs-actions.pod:5101 ../fish/guestfish-actions.pod:3438
14159 msgid "B<bsd>"
14160 msgstr ""
14161
14162 #. type: textblock
14163 #: ../src/guestfs-actions.pod:5103 ../fish/guestfish-actions.pod:3440
14164 msgid "BSD disk labels."
14165 msgstr ""
14166
14167 #. type: =item
14168 #: ../src/guestfs-actions.pod:5105 ../fish/guestfish-actions.pod:3442
14169 msgid "B<dasd>"
14170 msgstr ""
14171
14172 #. type: textblock
14173 #: ../src/guestfs-actions.pod:5107 ../fish/guestfish-actions.pod:3444
14174 msgid "DASD, used on IBM mainframes."
14175 msgstr ""
14176
14177 #. type: =item
14178 #: ../src/guestfs-actions.pod:5109 ../fish/guestfish-actions.pod:3446
14179 msgid "B<dvh>"
14180 msgstr ""
14181
14182 #. type: textblock
14183 #: ../src/guestfs-actions.pod:5111 ../fish/guestfish-actions.pod:3448
14184 msgid "MIPS/SGI volumes."
14185 msgstr ""
14186
14187 #. type: =item
14188 #: ../src/guestfs-actions.pod:5113 ../fish/guestfish-actions.pod:3450
14189 msgid "B<mac>"
14190 msgstr ""
14191
14192 #. type: textblock
14193 #: ../src/guestfs-actions.pod:5115 ../fish/guestfish-actions.pod:3452
14194 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14195 msgstr ""
14196
14197 #. type: =item
14198 #: ../src/guestfs-actions.pod:5117 ../fish/guestfish-actions.pod:3454
14199 msgid "B<pc98>"
14200 msgstr ""
14201
14202 #. type: textblock
14203 #: ../src/guestfs-actions.pod:5119 ../fish/guestfish-actions.pod:3456
14204 msgid "NEC PC-98 format, common in Japan apparently."
14205 msgstr ""
14206
14207 #. type: =item
14208 #: ../src/guestfs-actions.pod:5121 ../fish/guestfish-actions.pod:3458
14209 msgid "B<sun>"
14210 msgstr ""
14211
14212 #. type: textblock
14213 #: ../src/guestfs-actions.pod:5123 ../fish/guestfish-actions.pod:3460
14214 msgid "Sun disk labels."
14215 msgstr ""
14216
14217 #. type: =head2
14218 #: ../src/guestfs-actions.pod:5131
14219 msgid "guestfs_part_list"
14220 msgstr ""
14221
14222 #. type: verbatim
14223 #: ../src/guestfs-actions.pod:5133
14224 #, no-wrap
14225 msgid ""
14226 " struct guestfs_partition_list *\n"
14227 " guestfs_part_list (guestfs_h *g,\n"
14228 "                    const char *device);\n"
14229 "\n"
14230 msgstr ""
14231
14232 #. type: textblock
14233 #: ../src/guestfs-actions.pod:5137 ../fish/guestfish-actions.pod:3468
14234 msgid ""
14235 "This command parses the partition table on C<device> and returns the list of "
14236 "partitions found."
14237 msgstr ""
14238
14239 #. type: textblock
14240 #: ../src/guestfs-actions.pod:5140 ../fish/guestfish-actions.pod:3471
14241 msgid "The fields in the returned structure are:"
14242 msgstr ""
14243
14244 #. type: =item
14245 #: ../src/guestfs-actions.pod:5144 ../fish/guestfish-actions.pod:3475
14246 msgid "B<part_num>"
14247 msgstr ""
14248
14249 #. type: textblock
14250 #: ../src/guestfs-actions.pod:5146 ../fish/guestfish-actions.pod:3477
14251 msgid "Partition number, counting from 1."
14252 msgstr ""
14253
14254 #. type: =item
14255 #: ../src/guestfs-actions.pod:5148 ../fish/guestfish-actions.pod:3479
14256 msgid "B<part_start>"
14257 msgstr ""
14258
14259 #. type: textblock
14260 #: ../src/guestfs-actions.pod:5150
14261 msgid ""
14262 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14263 "the device's sector size, see C<guestfs_blockdev_getss>."
14264 msgstr ""
14265
14266 #. type: =item
14267 #: ../src/guestfs-actions.pod:5153 ../fish/guestfish-actions.pod:3484
14268 msgid "B<part_end>"
14269 msgstr ""
14270
14271 #. type: textblock
14272 #: ../src/guestfs-actions.pod:5155 ../fish/guestfish-actions.pod:3486
14273 msgid "End of the partition in bytes."
14274 msgstr ""
14275
14276 #. type: =item
14277 #: ../src/guestfs-actions.pod:5157 ../fish/guestfish-actions.pod:3488
14278 msgid "B<part_size>"
14279 msgstr ""
14280
14281 #. type: textblock
14282 #: ../src/guestfs-actions.pod:5159 ../fish/guestfish-actions.pod:3490
14283 msgid "Size of the partition in bytes."
14284 msgstr ""
14285
14286 #. type: textblock
14287 #: ../src/guestfs-actions.pod:5163
14288 msgid ""
14289 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14290 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14291 "use>."
14292 msgstr ""
14293
14294 #. type: =head2
14295 #: ../src/guestfs-actions.pod:5169
14296 msgid "guestfs_part_set_bootable"
14297 msgstr ""
14298
14299 #. type: verbatim
14300 #: ../src/guestfs-actions.pod:5171
14301 #, no-wrap
14302 msgid ""
14303 " int\n"
14304 " guestfs_part_set_bootable (guestfs_h *g,\n"
14305 "                            const char *device,\n"
14306 "                            int partnum,\n"
14307 "                            int bootable);\n"
14308 "\n"
14309 msgstr ""
14310
14311 #. type: textblock
14312 #: ../src/guestfs-actions.pod:5177 ../fish/guestfish-actions.pod:3498
14313 msgid ""
14314 "This sets the bootable flag on partition numbered C<partnum> on device "
14315 "C<device>.  Note that partitions are numbered from 1."
14316 msgstr ""
14317
14318 #. type: textblock
14319 #: ../src/guestfs-actions.pod:5180 ../fish/guestfish-actions.pod:3501
14320 msgid ""
14321 "The bootable flag is used by some operating systems (notably Windows) to "
14322 "determine which partition to boot from.  It is by no means universally "
14323 "recognized."
14324 msgstr ""
14325
14326 #. type: =head2
14327 #: ../src/guestfs-actions.pod:5188
14328 msgid "guestfs_part_set_mbr_id"
14329 msgstr ""
14330
14331 #. type: verbatim
14332 #: ../src/guestfs-actions.pod:5190
14333 #, no-wrap
14334 msgid ""
14335 " int\n"
14336 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14337 "                          const char *device,\n"
14338 "                          int partnum,\n"
14339 "                          int idbyte);\n"
14340 "\n"
14341 msgstr ""
14342
14343 #. type: textblock
14344 #: ../src/guestfs-actions.pod:5196 ../fish/guestfish-actions.pod:3509
14345 msgid ""
14346 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14347 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14348 "documentation are in fact hexadecimal numbers, but usually documented "
14349 "without any leading \"0x\" which might be confusing."
14350 msgstr ""
14351
14352 #. type: =head2
14353 #: ../src/guestfs-actions.pod:5210
14354 msgid "guestfs_part_set_name"
14355 msgstr ""
14356
14357 #. type: verbatim
14358 #: ../src/guestfs-actions.pod:5212
14359 #, no-wrap
14360 msgid ""
14361 " int\n"
14362 " guestfs_part_set_name (guestfs_h *g,\n"
14363 "                        const char *device,\n"
14364 "                        int partnum,\n"
14365 "                        const char *name);\n"
14366 "\n"
14367 msgstr ""
14368
14369 #. type: textblock
14370 #: ../src/guestfs-actions.pod:5218 ../fish/guestfish-actions.pod:3523
14371 msgid ""
14372 "This sets the partition name on partition numbered C<partnum> on device "
14373 "C<device>.  Note that partitions are numbered from 1."
14374 msgstr ""
14375
14376 #. type: textblock
14377 #: ../src/guestfs-actions.pod:5221 ../fish/guestfish-actions.pod:3526
14378 msgid ""
14379 "The partition name can only be set on certain types of partition table.  "
14380 "This works on C<gpt> but not on C<mbr> partitions."
14381 msgstr ""
14382
14383 #. type: =head2
14384 #: ../src/guestfs-actions.pod:5228
14385 msgid "guestfs_part_to_dev"
14386 msgstr ""
14387
14388 #. type: verbatim
14389 #: ../src/guestfs-actions.pod:5230
14390 #, no-wrap
14391 msgid ""
14392 " char *\n"
14393 " guestfs_part_to_dev (guestfs_h *g,\n"
14394 "                      const char *partition);\n"
14395 "\n"
14396 msgstr ""
14397
14398 #. type: textblock
14399 #: ../src/guestfs-actions.pod:5234 ../fish/guestfish-actions.pod:3533
14400 msgid ""
14401 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14402 "partition number, returning the device name (eg. \"/dev/sdb\")."
14403 msgstr ""
14404
14405 #. type: textblock
14406 #: ../src/guestfs-actions.pod:5238
14407 msgid ""
14408 "The named partition must exist, for example as a string returned from "
14409 "C<guestfs_list_partitions>."
14410 msgstr ""
14411
14412 #. type: =head2
14413 #: ../src/guestfs-actions.pod:5246
14414 msgid "guestfs_ping_daemon"
14415 msgstr ""
14416
14417 #. type: verbatim
14418 #: ../src/guestfs-actions.pod:5248
14419 #, no-wrap
14420 msgid ""
14421 " int\n"
14422 " guestfs_ping_daemon (guestfs_h *g);\n"
14423 "\n"
14424 msgstr ""
14425
14426 #. type: textblock
14427 #: ../src/guestfs-actions.pod:5251 ../fish/guestfish-actions.pod:3544
14428 msgid ""
14429 "This is a test probe into the guestfs daemon running inside the qemu "
14430 "subprocess.  Calling this function checks that the daemon responds to the "
14431 "ping message, without affecting the daemon or attached block device(s) in "
14432 "any other way."
14433 msgstr ""
14434
14435 #. type: =head2
14436 #: ../src/guestfs-actions.pod:5260
14437 msgid "guestfs_pread"
14438 msgstr ""
14439
14440 #. type: verbatim
14441 #: ../src/guestfs-actions.pod:5262
14442 #, no-wrap
14443 msgid ""
14444 " char *\n"
14445 " guestfs_pread (guestfs_h *g,\n"
14446 "                const char *path,\n"
14447 "                int count,\n"
14448 "                int64_t offset,\n"
14449 "                size_t *size_r);\n"
14450 "\n"
14451 msgstr ""
14452
14453 #. type: textblock
14454 #: ../src/guestfs-actions.pod:5269 ../fish/guestfish-actions.pod:3553
14455 msgid ""
14456 "This command lets you read part of a file.  It reads C<count> bytes of the "
14457 "file, starting at C<offset>, from file C<path>."
14458 msgstr ""
14459
14460 #. type: textblock
14461 #: ../src/guestfs-actions.pod:5272 ../src/guestfs-actions.pod:5298 ../fish/guestfish-actions.pod:3556 ../fish/guestfish-actions.pod:3571
14462 msgid ""
14463 "This may read fewer bytes than requested.  For further details see the "
14464 "L<pread(2)> system call."
14465 msgstr ""
14466
14467 #. type: textblock
14468 #: ../src/guestfs-actions.pod:5275
14469 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14470 msgstr ""
14471
14472 #. type: =head2
14473 #: ../src/guestfs-actions.pod:5286
14474 msgid "guestfs_pread_device"
14475 msgstr ""
14476
14477 #. type: verbatim
14478 #: ../src/guestfs-actions.pod:5288
14479 #, no-wrap
14480 msgid ""
14481 " char *\n"
14482 " guestfs_pread_device (guestfs_h *g,\n"
14483 "                       const char *device,\n"
14484 "                       int count,\n"
14485 "                       int64_t offset,\n"
14486 "                       size_t *size_r);\n"
14487 "\n"
14488 msgstr ""
14489
14490 #. type: textblock
14491 #: ../src/guestfs-actions.pod:5295 ../fish/guestfish-actions.pod:3568
14492 msgid ""
14493 "This command lets you read part of a file.  It reads C<count> bytes of "
14494 "C<device>, starting at C<offset>."
14495 msgstr ""
14496
14497 #. type: textblock
14498 #: ../src/guestfs-actions.pod:5301
14499 msgid "See also C<guestfs_pread>."
14500 msgstr ""
14501
14502 #. type: textblock
14503 #: ../src/guestfs-actions.pod:5310
14504 msgid "(Added in 1.5.21)"
14505 msgstr ""
14506
14507 #. type: =head2
14508 #: ../src/guestfs-actions.pod:5312
14509 msgid "guestfs_pvcreate"
14510 msgstr ""
14511
14512 #. type: verbatim
14513 #: ../src/guestfs-actions.pod:5314
14514 #, no-wrap
14515 msgid ""
14516 " int\n"
14517 " guestfs_pvcreate (guestfs_h *g,\n"
14518 "                   const char *device);\n"
14519 "\n"
14520 msgstr ""
14521
14522 #. type: textblock
14523 #: ../src/guestfs-actions.pod:5318 ../fish/guestfish-actions.pod:3583
14524 msgid ""
14525 "This creates an LVM physical volume on the named C<device>, where C<device> "
14526 "should usually be a partition name such as C</dev/sda1>."
14527 msgstr ""
14528
14529 #. type: =head2
14530 #: ../src/guestfs-actions.pod:5326
14531 msgid "guestfs_pvremove"
14532 msgstr ""
14533
14534 #. type: verbatim
14535 #: ../src/guestfs-actions.pod:5328
14536 #, no-wrap
14537 msgid ""
14538 " int\n"
14539 " guestfs_pvremove (guestfs_h *g,\n"
14540 "                   const char *device);\n"
14541 "\n"
14542 msgstr ""
14543
14544 #. type: textblock
14545 #: ../src/guestfs-actions.pod:5332 ../fish/guestfish-actions.pod:3591
14546 msgid ""
14547 "This wipes a physical volume C<device> so that LVM will no longer recognise "
14548 "it."
14549 msgstr ""
14550
14551 #. type: textblock
14552 #: ../src/guestfs-actions.pod:5335 ../fish/guestfish-actions.pod:3594
14553 msgid ""
14554 "The implementation uses the C<pvremove> command which refuses to wipe "
14555 "physical volumes that contain any volume groups, so you have to remove those "
14556 "first."
14557 msgstr ""
14558
14559 #. type: =head2
14560 #: ../src/guestfs-actions.pod:5343
14561 msgid "guestfs_pvresize"
14562 msgstr ""
14563
14564 #. type: verbatim
14565 #: ../src/guestfs-actions.pod:5345
14566 #, no-wrap
14567 msgid ""
14568 " int\n"
14569 " guestfs_pvresize (guestfs_h *g,\n"
14570 "                   const char *device);\n"
14571 "\n"
14572 msgstr ""
14573
14574 #. type: textblock
14575 #: ../src/guestfs-actions.pod:5349 ../fish/guestfish-actions.pod:3602
14576 msgid ""
14577 "This resizes (expands or shrinks) an existing LVM physical volume to match "
14578 "the new size of the underlying device."
14579 msgstr ""
14580
14581 #. type: =head2
14582 #: ../src/guestfs-actions.pod:5356
14583 msgid "guestfs_pvresize_size"
14584 msgstr ""
14585
14586 #. type: verbatim
14587 #: ../src/guestfs-actions.pod:5358
14588 #, no-wrap
14589 msgid ""
14590 " int\n"
14591 " guestfs_pvresize_size (guestfs_h *g,\n"
14592 "                        const char *device,\n"
14593 "                        int64_t size);\n"
14594 "\n"
14595 msgstr ""
14596
14597 #. type: textblock
14598 #: ../src/guestfs-actions.pod:5363
14599 msgid ""
14600 "This command is the same as C<guestfs_pvresize> except that it allows you to "
14601 "specify the new size (in bytes) explicitly."
14602 msgstr ""
14603
14604 #. type: =head2
14605 #: ../src/guestfs-actions.pod:5370
14606 msgid "guestfs_pvs"
14607 msgstr ""
14608
14609 #. type: verbatim
14610 #: ../src/guestfs-actions.pod:5372
14611 #, no-wrap
14612 msgid ""
14613 " char **\n"
14614 " guestfs_pvs (guestfs_h *g);\n"
14615 "\n"
14616 msgstr ""
14617
14618 #. type: textblock
14619 #: ../src/guestfs-actions.pod:5375 ../fish/guestfish-actions.pod:3616
14620 msgid ""
14621 "List all the physical volumes detected.  This is the equivalent of the "
14622 "L<pvs(8)> command."
14623 msgstr ""
14624
14625 #. type: textblock
14626 #: ../src/guestfs-actions.pod:5378 ../fish/guestfish-actions.pod:3619
14627 msgid ""
14628 "This returns a list of just the device names that contain PVs "
14629 "(eg. C</dev/sda2>)."
14630 msgstr ""
14631
14632 #. type: textblock
14633 #: ../src/guestfs-actions.pod:5381
14634 msgid "See also C<guestfs_pvs_full>."
14635 msgstr ""
14636
14637 #. type: =head2
14638 #: ../src/guestfs-actions.pod:5389
14639 msgid "guestfs_pvs_full"
14640 msgstr ""
14641
14642 #. type: verbatim
14643 #: ../src/guestfs-actions.pod:5391
14644 #, no-wrap
14645 msgid ""
14646 " struct guestfs_lvm_pv_list *\n"
14647 " guestfs_pvs_full (guestfs_h *g);\n"
14648 "\n"
14649 msgstr ""
14650
14651 #. type: textblock
14652 #: ../src/guestfs-actions.pod:5394 ../fish/guestfish-actions.pod:3628
14653 msgid ""
14654 "List all the physical volumes detected.  This is the equivalent of the "
14655 "L<pvs(8)> command.  The \"full\" version includes all fields."
14656 msgstr ""
14657
14658 #. type: textblock
14659 #: ../src/guestfs-actions.pod:5397
14660 msgid ""
14661 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
14662 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
14663 "use>."
14664 msgstr ""
14665
14666 #. type: =head2
14667 #: ../src/guestfs-actions.pod:5403
14668 msgid "guestfs_pvuuid"
14669 msgstr ""
14670
14671 #. type: verbatim
14672 #: ../src/guestfs-actions.pod:5405
14673 #, no-wrap
14674 msgid ""
14675 " char *\n"
14676 " guestfs_pvuuid (guestfs_h *g,\n"
14677 "                 const char *device);\n"
14678 "\n"
14679 msgstr ""
14680
14681 #. type: textblock
14682 #: ../src/guestfs-actions.pod:5409 ../fish/guestfish-actions.pod:3635
14683 msgid "This command returns the UUID of the LVM PV C<device>."
14684 msgstr ""
14685
14686 #. type: =head2
14687 #: ../src/guestfs-actions.pod:5416
14688 msgid "guestfs_pwrite"
14689 msgstr ""
14690
14691 #. type: verbatim
14692 #: ../src/guestfs-actions.pod:5418
14693 #, no-wrap
14694 msgid ""
14695 " int\n"
14696 " guestfs_pwrite (guestfs_h *g,\n"
14697 "                 const char *path,\n"
14698 "                 const char *content,\n"
14699 "                 size_t content_size,\n"
14700 "                 int64_t offset);\n"
14701 "\n"
14702 msgstr ""
14703
14704 #. type: textblock
14705 #: ../src/guestfs-actions.pod:5425 ../fish/guestfish-actions.pod:3641
14706 msgid ""
14707 "This command writes to part of a file.  It writes the data buffer C<content> "
14708 "to the file C<path> starting at offset C<offset>."
14709 msgstr ""
14710
14711 #. type: textblock
14712 #: ../src/guestfs-actions.pod:5428 ../fish/guestfish-actions.pod:3644
14713 msgid ""
14714 "This command implements the L<pwrite(2)> system call, and like that system "
14715 "call it may not write the full data requested.  The return value is the "
14716 "number of bytes that were actually written to the file.  This could even be "
14717 "0, although short writes are unlikely for regular files in ordinary "
14718 "circumstances."
14719 msgstr ""
14720
14721 #. type: textblock
14722 #: ../src/guestfs-actions.pod:5434
14723 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
14724 msgstr ""
14725
14726 #. type: =head2
14727 #: ../src/guestfs-actions.pod:5443
14728 msgid "guestfs_pwrite_device"
14729 msgstr ""
14730
14731 #. type: verbatim
14732 #: ../src/guestfs-actions.pod:5445
14733 #, no-wrap
14734 msgid ""
14735 " int\n"
14736 " guestfs_pwrite_device (guestfs_h *g,\n"
14737 "                        const char *device,\n"
14738 "                        const char *content,\n"
14739 "                        size_t content_size,\n"
14740 "                        int64_t offset);\n"
14741 "\n"
14742 msgstr ""
14743
14744 #. type: textblock
14745 #: ../src/guestfs-actions.pod:5452 ../fish/guestfish-actions.pod:3659
14746 msgid ""
14747 "This command writes to part of a device.  It writes the data buffer "
14748 "C<content> to C<device> starting at offset C<offset>."
14749 msgstr ""
14750
14751 #. type: textblock
14752 #: ../src/guestfs-actions.pod:5455 ../fish/guestfish-actions.pod:3662
14753 msgid ""
14754 "This command implements the L<pwrite(2)> system call, and like that system "
14755 "call it may not write the full data requested (although short writes to disk "
14756 "devices and partitions are probably impossible with standard Linux kernels)."
14757 msgstr ""
14758
14759 #. type: textblock
14760 #: ../src/guestfs-actions.pod:5460
14761 msgid "See also C<guestfs_pwrite>."
14762 msgstr ""
14763
14764 #. type: textblock
14765 #: ../src/guestfs-actions.pod:5467
14766 msgid "(Added in 1.5.20)"
14767 msgstr ""
14768
14769 #. type: =head2
14770 #: ../src/guestfs-actions.pod:5469
14771 msgid "guestfs_read_file"
14772 msgstr ""
14773
14774 #. type: verbatim
14775 #: ../src/guestfs-actions.pod:5471
14776 #, no-wrap
14777 msgid ""
14778 " char *\n"
14779 " guestfs_read_file (guestfs_h *g,\n"
14780 "                    const char *path,\n"
14781 "                    size_t *size_r);\n"
14782 "\n"
14783 msgstr ""
14784
14785 #. type: textblock
14786 #: ../src/guestfs-actions.pod:5476 ../fish/guestfish-actions.pod:3676
14787 msgid "This calls returns the contents of the file C<path> as a buffer."
14788 msgstr ""
14789
14790 #. type: textblock
14791 #: ../src/guestfs-actions.pod:5479
14792 msgid ""
14793 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
14794 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
14795 "function is limited in the total size of file that can be handled."
14796 msgstr ""
14797
14798 #. type: textblock
14799 #: ../src/guestfs-actions.pod:5491
14800 msgid "(Added in 1.0.63)"
14801 msgstr ""
14802
14803 #. type: =head2
14804 #: ../src/guestfs-actions.pod:5493
14805 msgid "guestfs_read_lines"
14806 msgstr ""
14807
14808 #. type: verbatim
14809 #: ../src/guestfs-actions.pod:5495
14810 #, no-wrap
14811 msgid ""
14812 " char **\n"
14813 " guestfs_read_lines (guestfs_h *g,\n"
14814 "                     const char *path);\n"
14815 "\n"
14816 msgstr ""
14817
14818 #. type: textblock
14819 #: ../src/guestfs-actions.pod:5501 ../fish/guestfish-actions.pod:3693
14820 msgid ""
14821 "The file contents are returned as a list of lines.  Trailing C<LF> and "
14822 "C<CRLF> character sequences are I<not> returned."
14823 msgstr ""
14824
14825 #. type: textblock
14826 #: ../src/guestfs-actions.pod:5504
14827 msgid ""
14828 "Note that this function cannot correctly handle binary files (specifically, "
14829 "files containing C<\\0> character which is treated as end of line).  For "
14830 "those you need to use the C<guestfs_read_file> function which has a more "
14831 "complex interface."
14832 msgstr ""
14833
14834 #. type: =head2
14835 #: ../src/guestfs-actions.pod:5515
14836 msgid "guestfs_readdir"
14837 msgstr ""
14838
14839 #. type: verbatim
14840 #: ../src/guestfs-actions.pod:5517
14841 #, no-wrap
14842 msgid ""
14843 " struct guestfs_dirent_list *\n"
14844 " guestfs_readdir (guestfs_h *g,\n"
14845 "                  const char *dir);\n"
14846 "\n"
14847 msgstr ""
14848
14849 #. type: textblock
14850 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3705
14851 msgid "This returns the list of directory entries in directory C<dir>."
14852 msgstr ""
14853
14854 #. type: textblock
14855 #: ../src/guestfs-actions.pod:5523 ../fish/guestfish-actions.pod:3707
14856 msgid ""
14857 "All entries in the directory are returned, including C<.> and C<..>.  The "
14858 "entries are I<not> sorted, but returned in the same order as the underlying "
14859 "filesystem."
14860 msgstr ""
14861
14862 #. type: textblock
14863 #: ../src/guestfs-actions.pod:5527 ../fish/guestfish-actions.pod:3711
14864 msgid ""
14865 "Also this call returns basic file type information about each file.  The "
14866 "C<ftyp> field will contain one of the following characters:"
14867 msgstr ""
14868
14869 #. type: =item
14870 #: ../src/guestfs-actions.pod:5532 ../fish/guestfish-actions.pod:3716
14871 msgid "'b'"
14872 msgstr ""
14873
14874 #. type: textblock
14875 #: ../src/guestfs-actions.pod:5534 ../fish/guestfish-actions.pod:3718
14876 msgid "Block special"
14877 msgstr ""
14878
14879 #. type: =item
14880 #: ../src/guestfs-actions.pod:5536 ../fish/guestfish-actions.pod:3720
14881 msgid "'c'"
14882 msgstr ""
14883
14884 #. type: textblock
14885 #: ../src/guestfs-actions.pod:5538 ../fish/guestfish-actions.pod:3722
14886 msgid "Char special"
14887 msgstr ""
14888
14889 #. type: =item
14890 #: ../src/guestfs-actions.pod:5540 ../fish/guestfish-actions.pod:3724
14891 msgid "'d'"
14892 msgstr ""
14893
14894 #. type: textblock
14895 #: ../src/guestfs-actions.pod:5542 ../fish/guestfish-actions.pod:3726
14896 msgid "Directory"
14897 msgstr ""
14898
14899 #. type: =item
14900 #: ../src/guestfs-actions.pod:5544 ../fish/guestfish-actions.pod:3728
14901 msgid "'f'"
14902 msgstr ""
14903
14904 #. type: textblock
14905 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3730
14906 msgid "FIFO (named pipe)"
14907 msgstr ""
14908
14909 #. type: =item
14910 #: ../src/guestfs-actions.pod:5548 ../fish/guestfish-actions.pod:3732
14911 msgid "'l'"
14912 msgstr ""
14913
14914 #. type: textblock
14915 #: ../src/guestfs-actions.pod:5550 ../fish/guestfish-actions.pod:3734
14916 msgid "Symbolic link"
14917 msgstr ""
14918
14919 #. type: =item
14920 #: ../src/guestfs-actions.pod:5552 ../fish/guestfish-actions.pod:3736
14921 msgid "'r'"
14922 msgstr ""
14923
14924 #. type: textblock
14925 #: ../src/guestfs-actions.pod:5554 ../fish/guestfish-actions.pod:3738
14926 msgid "Regular file"
14927 msgstr ""
14928
14929 #. type: =item
14930 #: ../src/guestfs-actions.pod:5556 ../fish/guestfish-actions.pod:3740
14931 msgid "'s'"
14932 msgstr ""
14933
14934 #. type: textblock
14935 #: ../src/guestfs-actions.pod:5558 ../fish/guestfish-actions.pod:3742
14936 msgid "Socket"
14937 msgstr ""
14938
14939 #. type: =item
14940 #: ../src/guestfs-actions.pod:5560 ../fish/guestfish-actions.pod:3744
14941 msgid "'u'"
14942 msgstr ""
14943
14944 #. type: textblock
14945 #: ../src/guestfs-actions.pod:5562 ../fish/guestfish-actions.pod:3746
14946 msgid "Unknown file type"
14947 msgstr ""
14948
14949 #. type: =item
14950 #: ../src/guestfs-actions.pod:5564 ../fish/guestfish-actions.pod:3748
14951 msgid "'?'"
14952 msgstr ""
14953
14954 #. type: textblock
14955 #: ../src/guestfs-actions.pod:5566 ../fish/guestfish-actions.pod:3750
14956 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
14957 msgstr ""
14958
14959 #. type: textblock
14960 #: ../src/guestfs-actions.pod:5571
14961 msgid ""
14962 "This function is primarily intended for use by programs.  To get a simple "
14963 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
14964 "consumption, use C<guestfs_ll>."
14965 msgstr ""
14966
14967 #. type: textblock
14968 #: ../src/guestfs-actions.pod:5575
14969 msgid ""
14970 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
14971 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
14972 "use>."
14973 msgstr ""
14974
14975 #. type: =head2
14976 #: ../src/guestfs-actions.pod:5581
14977 msgid "guestfs_readlink"
14978 msgstr ""
14979
14980 #. type: verbatim
14981 #: ../src/guestfs-actions.pod:5583
14982 #, no-wrap
14983 msgid ""
14984 " char *\n"
14985 " guestfs_readlink (guestfs_h *g,\n"
14986 "                   const char *path);\n"
14987 "\n"
14988 msgstr ""
14989
14990 #. type: textblock
14991 #: ../src/guestfs-actions.pod:5587 ../fish/guestfish-actions.pod:3763
14992 msgid "This command reads the target of a symbolic link."
14993 msgstr ""
14994
14995 #. type: =head2
14996 #: ../src/guestfs-actions.pod:5594
14997 msgid "guestfs_readlinklist"
14998 msgstr ""
14999
15000 #. type: verbatim
15001 #: ../src/guestfs-actions.pod:5596
15002 #, no-wrap
15003 msgid ""
15004 " char **\n"
15005 " guestfs_readlinklist (guestfs_h *g,\n"
15006 "                       const char *path,\n"
15007 "                       char *const *names);\n"
15008 "\n"
15009 msgstr ""
15010
15011 #. type: textblock
15012 #: ../src/guestfs-actions.pod:5601 ../fish/guestfish-actions.pod:3769
15013 msgid ""
15014 "This call allows you to do a C<readlink> operation on multiple files, where "
15015 "all files are in the directory C<path>.  C<names> is the list of files from "
15016 "this directory."
15017 msgstr ""
15018
15019 #. type: textblock
15020 #: ../src/guestfs-actions.pod:5605 ../fish/guestfish-actions.pod:3773
15021 msgid ""
15022 "On return you get a list of strings, with a one-to-one correspondence to the "
15023 "C<names> list.  Each string is the value of the symbolic link."
15024 msgstr ""
15025
15026 #. type: textblock
15027 #: ../src/guestfs-actions.pod:5609 ../fish/guestfish-actions.pod:3777
15028 msgid ""
15029 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15030 "result string is the empty string C<\"\">.  However the whole operation is "
15031 "completed even if there were C<readlink(2)> errors, and so you can call this "
15032 "function with names where you don't know if they are symbolic links already "
15033 "(albeit slightly less efficient)."
15034 msgstr ""
15035
15036 #. type: textblock
15037 #: ../src/guestfs-actions.pod:5616 ../fish/guestfish-actions.pod:3784
15038 msgid ""
15039 "This call is intended for programs that want to efficiently list a directory "
15040 "contents without making many round-trips.  Very long directory listings "
15041 "might cause the protocol message size to be exceeded, causing this call to "
15042 "fail.  The caller must split up such requests into smaller groups of names."
15043 msgstr ""
15044
15045 #. type: =head2
15046 #: ../src/guestfs-actions.pod:5629
15047 msgid "guestfs_realpath"
15048 msgstr ""
15049
15050 #. type: verbatim
15051 #: ../src/guestfs-actions.pod:5631
15052 #, no-wrap
15053 msgid ""
15054 " char *\n"
15055 " guestfs_realpath (guestfs_h *g,\n"
15056 "                   const char *path);\n"
15057 "\n"
15058 msgstr ""
15059
15060 #. type: textblock
15061 #: ../src/guestfs-actions.pod:5635 ../fish/guestfish-actions.pod:3795
15062 msgid ""
15063 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15064 "has no C<.>, C<..> or symbolic link path elements."
15065 msgstr ""
15066
15067 #. type: =head2
15068 #: ../src/guestfs-actions.pod:5643
15069 msgid "guestfs_removexattr"
15070 msgstr ""
15071
15072 #. type: verbatim
15073 #: ../src/guestfs-actions.pod:5645
15074 #, no-wrap
15075 msgid ""
15076 " int\n"
15077 " guestfs_removexattr (guestfs_h *g,\n"
15078 "                      const char *xattr,\n"
15079 "                      const char *path);\n"
15080 "\n"
15081 msgstr ""
15082
15083 #. type: textblock
15084 #: ../src/guestfs-actions.pod:5650 ../fish/guestfish-actions.pod:3802
15085 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
15086 msgstr ""
15087
15088 #. type: textblock
15089 #: ../src/guestfs-actions.pod:5653
15090 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15091 msgstr ""
15092
15093 #. type: =head2
15094 #: ../src/guestfs-actions.pod:5659
15095 msgid "guestfs_resize2fs"
15096 msgstr ""
15097
15098 #. type: verbatim
15099 #: ../src/guestfs-actions.pod:5661
15100 #, no-wrap
15101 msgid ""
15102 " int\n"
15103 " guestfs_resize2fs (guestfs_h *g,\n"
15104 "                    const char *device);\n"
15105 "\n"
15106 msgstr ""
15107
15108 #. type: textblock
15109 #: ../src/guestfs-actions.pod:5665 ../fish/guestfish-actions.pod:3811
15110 msgid ""
15111 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15112 "underlying device."
15113 msgstr ""
15114
15115 #. type: textblock
15116 #: ../src/guestfs-actions.pod:5668
15117 msgid ""
15118 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15119 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15120 "sometimes gives an error about this and sometimes not.  In any case, it is "
15121 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15122 msgstr ""
15123
15124 #. type: =head2
15125 #: ../src/guestfs-actions.pod:5678
15126 msgid "guestfs_resize2fs_M"
15127 msgstr ""
15128
15129 #. type: verbatim
15130 #: ../src/guestfs-actions.pod:5680
15131 #, no-wrap
15132 msgid ""
15133 " int\n"
15134 " guestfs_resize2fs_M (guestfs_h *g,\n"
15135 "                      const char *device);\n"
15136 "\n"
15137 msgstr ""
15138
15139 #. type: textblock
15140 #: ../src/guestfs-actions.pod:5684
15141 msgid ""
15142 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15143 "resized to its minimum size.  This works like the I<-M> option to the "
15144 "C<resize2fs> command."
15145 msgstr ""
15146
15147 #. type: textblock
15148 #: ../src/guestfs-actions.pod:5688
15149 msgid ""
15150 "To get the resulting size of the filesystem you should call "
15151 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15152 "These two numbers, multiplied together, give the resulting size of the "
15153 "minimal filesystem in bytes."
15154 msgstr ""
15155
15156 #. type: =head2
15157 #: ../src/guestfs-actions.pod:5695
15158 msgid "guestfs_resize2fs_size"
15159 msgstr ""
15160
15161 #. type: verbatim
15162 #: ../src/guestfs-actions.pod:5697
15163 #, no-wrap
15164 msgid ""
15165 " int\n"
15166 " guestfs_resize2fs_size (guestfs_h *g,\n"
15167 "                         const char *device,\n"
15168 "                         int64_t size);\n"
15169 "\n"
15170 msgstr ""
15171
15172 #. type: textblock
15173 #: ../src/guestfs-actions.pod:5702
15174 msgid ""
15175 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15176 "to specify the new size (in bytes) explicitly."
15177 msgstr ""
15178
15179 #. type: =head2
15180 #: ../src/guestfs-actions.pod:5709
15181 msgid "guestfs_rm"
15182 msgstr ""
15183
15184 #. type: verbatim
15185 #: ../src/guestfs-actions.pod:5711
15186 #, no-wrap
15187 msgid ""
15188 " int\n"
15189 " guestfs_rm (guestfs_h *g,\n"
15190 "             const char *path);\n"
15191 "\n"
15192 msgstr ""
15193
15194 #. type: textblock
15195 #: ../src/guestfs-actions.pod:5715 ../fish/guestfish-actions.pod:3844
15196 msgid "Remove the single file C<path>."
15197 msgstr ""
15198
15199 #. type: =head2
15200 #: ../src/guestfs-actions.pod:5721
15201 msgid "guestfs_rm_rf"
15202 msgstr ""
15203
15204 #. type: verbatim
15205 #: ../src/guestfs-actions.pod:5723
15206 #, no-wrap
15207 msgid ""
15208 " int\n"
15209 " guestfs_rm_rf (guestfs_h *g,\n"
15210 "                const char *path);\n"
15211 "\n"
15212 msgstr ""
15213
15214 #. type: textblock
15215 #: ../src/guestfs-actions.pod:5727 ../fish/guestfish-actions.pod:3850
15216 msgid ""
15217 "Remove the file or directory C<path>, recursively removing the contents if "
15218 "its a directory.  This is like the C<rm -rf> shell command."
15219 msgstr ""
15220
15221 #. type: =head2
15222 #: ../src/guestfs-actions.pod:5735
15223 msgid "guestfs_rmdir"
15224 msgstr ""
15225
15226 #. type: verbatim
15227 #: ../src/guestfs-actions.pod:5737
15228 #, no-wrap
15229 msgid ""
15230 " int\n"
15231 " guestfs_rmdir (guestfs_h *g,\n"
15232 "                const char *path);\n"
15233 "\n"
15234 msgstr ""
15235
15236 #. type: textblock
15237 #: ../src/guestfs-actions.pod:5741 ../fish/guestfish-actions.pod:3858
15238 msgid "Remove the single directory C<path>."
15239 msgstr ""
15240
15241 #. type: =head2
15242 #: ../src/guestfs-actions.pod:5747
15243 msgid "guestfs_rmmountpoint"
15244 msgstr ""
15245
15246 #. type: verbatim
15247 #: ../src/guestfs-actions.pod:5749
15248 #, no-wrap
15249 msgid ""
15250 " int\n"
15251 " guestfs_rmmountpoint (guestfs_h *g,\n"
15252 "                       const char *exemptpath);\n"
15253 "\n"
15254 msgstr ""
15255
15256 #. type: textblock
15257 #: ../src/guestfs-actions.pod:5753
15258 msgid ""
15259 "This calls removes a mountpoint that was previously created with "
15260 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15261 msgstr ""
15262
15263 #. type: =head2
15264 #: ../src/guestfs-actions.pod:5761
15265 msgid "guestfs_scrub_device"
15266 msgstr ""
15267
15268 #. type: verbatim
15269 #: ../src/guestfs-actions.pod:5763
15270 #, no-wrap
15271 msgid ""
15272 " int\n"
15273 " guestfs_scrub_device (guestfs_h *g,\n"
15274 "                       const char *device);\n"
15275 "\n"
15276 msgstr ""
15277
15278 #. type: textblock
15279 #: ../src/guestfs-actions.pod:5767 ../fish/guestfish-actions.pod:3872
15280 msgid ""
15281 "This command writes patterns over C<device> to make data retrieval more "
15282 "difficult."
15283 msgstr ""
15284
15285 #. type: textblock
15286 #: ../src/guestfs-actions.pod:5770 ../src/guestfs-actions.pod:5791 ../src/guestfs-actions.pod:5810 ../fish/guestfish-actions.pod:3875 ../fish/guestfish-actions.pod:3890 ../fish/guestfish-actions.pod:3903
15287 msgid ""
15288 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15289 "more details."
15290 msgstr ""
15291
15292 #. type: textblock
15293 #: ../src/guestfs-actions.pod:5778 ../src/guestfs-actions.pod:5796 ../src/guestfs-actions.pod:5815
15294 msgid "(Added in 1.0.52)"
15295 msgstr ""
15296
15297 #. type: =head2
15298 #: ../src/guestfs-actions.pod:5780
15299 msgid "guestfs_scrub_file"
15300 msgstr ""
15301
15302 #. type: verbatim
15303 #: ../src/guestfs-actions.pod:5782
15304 #, no-wrap
15305 msgid ""
15306 " int\n"
15307 " guestfs_scrub_file (guestfs_h *g,\n"
15308 "                     const char *file);\n"
15309 "\n"
15310 msgstr ""
15311
15312 #. type: textblock
15313 #: ../src/guestfs-actions.pod:5786 ../fish/guestfish-actions.pod:3885
15314 msgid ""
15315 "This command writes patterns over a file to make data retrieval more "
15316 "difficult."
15317 msgstr ""
15318
15319 #. type: textblock
15320 #: ../src/guestfs-actions.pod:5789 ../fish/guestfish-actions.pod:3888
15321 msgid "The file is I<removed> after scrubbing."
15322 msgstr ""
15323
15324 #. type: =head2
15325 #: ../src/guestfs-actions.pod:5798
15326 msgid "guestfs_scrub_freespace"
15327 msgstr ""
15328
15329 #. type: verbatim
15330 #: ../src/guestfs-actions.pod:5800
15331 #, no-wrap
15332 msgid ""
15333 " int\n"
15334 " guestfs_scrub_freespace (guestfs_h *g,\n"
15335 "                          const char *dir);\n"
15336 "\n"
15337 msgstr ""
15338
15339 #. type: textblock
15340 #: ../src/guestfs-actions.pod:5804
15341 msgid ""
15342 "This command creates the directory C<dir> and then fills it with files until "
15343 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15344 "and deletes them.  The intention is to scrub any free space on the partition "
15345 "containing C<dir>."
15346 msgstr ""
15347
15348 #. type: =head2
15349 #: ../src/guestfs-actions.pod:5817
15350 msgid "guestfs_set_append"
15351 msgstr ""
15352
15353 #. type: verbatim
15354 #: ../src/guestfs-actions.pod:5819
15355 #, no-wrap
15356 msgid ""
15357 " int\n"
15358 " guestfs_set_append (guestfs_h *g,\n"
15359 "                     const char *append);\n"
15360 "\n"
15361 msgstr ""
15362
15363 #. type: textblock
15364 #: ../src/guestfs-actions.pod:5823 ../fish/guestfish-actions.pod:3912
15365 msgid ""
15366 "This function is used to add additional options to the guest kernel command "
15367 "line."
15368 msgstr ""
15369
15370 #. type: textblock
15371 #: ../src/guestfs-actions.pod:5826 ../fish/guestfish-actions.pod:3915
15372 msgid ""
15373 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15374 "environment variable."
15375 msgstr ""
15376
15377 #. type: textblock
15378 #: ../src/guestfs-actions.pod:5829 ../fish/guestfish-actions.pod:3918
15379 msgid ""
15380 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15381 "(libguestfs always adds a few of its own)."
15382 msgstr ""
15383
15384 #. type: =head2
15385 #: ../src/guestfs-actions.pod:5836
15386 msgid "guestfs_set_attach_method"
15387 msgstr ""
15388
15389 #. type: verbatim
15390 #: ../src/guestfs-actions.pod:5838
15391 #, no-wrap
15392 msgid ""
15393 " int\n"
15394 " guestfs_set_attach_method (guestfs_h *g,\n"
15395 "                            const char *attachmethod);\n"
15396 "\n"
15397 msgstr ""
15398
15399 #. type: textblock
15400 #: ../src/guestfs-actions.pod:5842 ../fish/guestfish-actions.pod:3927
15401 msgid ""
15402 "Set the method that libguestfs uses to connect to the back end guestfsd "
15403 "daemon.  Possible methods are:"
15404 msgstr ""
15405
15406 #. type: textblock
15407 #: ../src/guestfs-actions.pod:5849 ../fish/guestfish-actions.pod:3934
15408 msgid ""
15409 "Launch an appliance and connect to it.  This is the ordinary method and the "
15410 "default."
15411 msgstr ""
15412
15413 #. type: =item
15414 #: ../src/guestfs-actions.pod:5852 ../fish/guestfish-actions.pod:3937
15415 msgid "C<unix:I<path>>"
15416 msgstr ""
15417
15418 #. type: textblock
15419 #: ../src/guestfs-actions.pod:5854 ../fish/guestfish-actions.pod:3939
15420 msgid "Connect to the Unix domain socket I<path>."
15421 msgstr ""
15422
15423 #. type: textblock
15424 #: ../src/guestfs-actions.pod:5856 ../fish/guestfish-actions.pod:3941
15425 msgid ""
15426 "This method lets you connect to an existing daemon or (using virtio-serial) "
15427 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15428 "RUNNING DAEMONS>."
15429 msgstr ""
15430
15431 #. type: =head2
15432 #: ../src/guestfs-actions.pod:5864
15433 msgid "guestfs_set_autosync"
15434 msgstr ""
15435
15436 #. type: verbatim
15437 #: ../src/guestfs-actions.pod:5866
15438 #, no-wrap
15439 msgid ""
15440 " int\n"
15441 " guestfs_set_autosync (guestfs_h *g,\n"
15442 "                       int autosync);\n"
15443 "\n"
15444 msgstr ""
15445
15446 #. type: textblock
15447 #: ../src/guestfs-actions.pod:5870 ../fish/guestfish-actions.pod:3953
15448 msgid ""
15449 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15450 "effort attempt to make filesystems consistent and synchronized when the "
15451 "handle is closed (also if the program exits without closing handles)."
15452 msgstr ""
15453
15454 #. type: textblock
15455 #: ../src/guestfs-actions.pod:5875 ../fish/guestfish-actions.pod:3958
15456 msgid ""
15457 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15458 "disabled by default)."
15459 msgstr ""
15460
15461 #. type: =head2
15462 #: ../src/guestfs-actions.pod:5882
15463 msgid "guestfs_set_direct"
15464 msgstr ""
15465
15466 #. type: verbatim
15467 #: ../src/guestfs-actions.pod:5884
15468 #, no-wrap
15469 msgid ""
15470 " int\n"
15471 " guestfs_set_direct (guestfs_h *g,\n"
15472 "                     int direct);\n"
15473 "\n"
15474 msgstr ""
15475
15476 #. type: textblock
15477 #: ../src/guestfs-actions.pod:5888 ../fish/guestfish-actions.pod:3967
15478 msgid ""
15479 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15480 "passed directly through to the appliance once it is launched."
15481 msgstr ""
15482
15483 #. type: textblock
15484 #: ../src/guestfs-actions.pod:5892
15485 msgid ""
15486 "One consequence of this is that log messages aren't caught by the library "
15487 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
15488 "stdout."
15489 msgstr ""
15490
15491 #. type: textblock
15492 #: ../src/guestfs-actions.pod:5896 ../fish/guestfish-actions.pod:3975
15493 msgid "You probably don't want to use this unless you know what you are doing."
15494 msgstr ""
15495
15496 #. type: textblock
15497 #: ../src/guestfs-actions.pod:5899 ../fish/guestfish-actions.pod:3978
15498 msgid "The default is disabled."
15499 msgstr ""
15500
15501 #. type: =head2
15502 #: ../src/guestfs-actions.pod:5905
15503 msgid "guestfs_set_e2label"
15504 msgstr ""
15505
15506 #. type: verbatim
15507 #: ../src/guestfs-actions.pod:5907
15508 #, no-wrap
15509 msgid ""
15510 " int\n"
15511 " guestfs_set_e2label (guestfs_h *g,\n"
15512 "                      const char *device,\n"
15513 "                      const char *label);\n"
15514 "\n"
15515 msgstr ""
15516
15517 #. type: textblock
15518 #: ../src/guestfs-actions.pod:5912 ../fish/guestfish-actions.pod:3984
15519 msgid ""
15520 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
15521 "C<label>.  Filesystem labels are limited to 16 characters."
15522 msgstr ""
15523
15524 #. type: textblock
15525 #: ../src/guestfs-actions.pod:5916
15526 msgid ""
15527 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
15528 "the existing label on a filesystem."
15529 msgstr ""
15530
15531 #. type: =head2
15532 #: ../src/guestfs-actions.pod:5923
15533 msgid "guestfs_set_e2uuid"
15534 msgstr ""
15535
15536 #. type: verbatim
15537 #: ../src/guestfs-actions.pod:5925
15538 #, no-wrap
15539 msgid ""
15540 " int\n"
15541 " guestfs_set_e2uuid (guestfs_h *g,\n"
15542 "                     const char *device,\n"
15543 "                     const char *uuid);\n"
15544 "\n"
15545 msgstr ""
15546
15547 #. type: textblock
15548 #: ../src/guestfs-actions.pod:5930 ../fish/guestfish-actions.pod:3995
15549 msgid ""
15550 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
15551 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
15552 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
15553 msgstr ""
15554
15555 #. type: textblock
15556 #: ../src/guestfs-actions.pod:5935
15557 msgid ""
15558 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
15559 "the existing UUID of a filesystem."
15560 msgstr ""
15561
15562 #. type: =head2
15563 #: ../src/guestfs-actions.pod:5942
15564 msgid "guestfs_set_memsize"
15565 msgstr ""
15566
15567 #. type: verbatim
15568 #: ../src/guestfs-actions.pod:5944
15569 #, no-wrap
15570 msgid ""
15571 " int\n"
15572 " guestfs_set_memsize (guestfs_h *g,\n"
15573 "                      int memsize);\n"
15574 "\n"
15575 msgstr ""
15576
15577 #. type: textblock
15578 #: ../src/guestfs-actions.pod:5948
15579 msgid ""
15580 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
15581 "This only has any effect if called before C<guestfs_launch>."
15582 msgstr ""
15583
15584 #. type: textblock
15585 #: ../src/guestfs-actions.pod:5952 ../fish/guestfish-actions.pod:4013
15586 msgid ""
15587 "You can also change this by setting the environment variable "
15588 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
15589 msgstr ""
15590
15591 #. type: =head2
15592 #: ../src/guestfs-actions.pod:5963
15593 msgid "guestfs_set_network"
15594 msgstr ""
15595
15596 #. type: verbatim
15597 #: ../src/guestfs-actions.pod:5965
15598 #, no-wrap
15599 msgid ""
15600 " int\n"
15601 " guestfs_set_network (guestfs_h *g,\n"
15602 "                      int network);\n"
15603 "\n"
15604 msgstr ""
15605
15606 #. type: textblock
15607 #: ../src/guestfs-actions.pod:5969 ../fish/guestfish-actions.pod:4026
15608 msgid ""
15609 "If C<network> is true, then the network is enabled in the libguestfs "
15610 "appliance.  The default is false."
15611 msgstr ""
15612
15613 #. type: textblock
15614 #: ../src/guestfs-actions.pod:5972 ../fish/guestfish-actions.pod:4029
15615 msgid ""
15616 "This affects whether commands are able to access the network (see "
15617 "L<guestfs(3)/RUNNING COMMANDS>)."
15618 msgstr ""
15619
15620 #. type: textblock
15621 #: ../src/guestfs-actions.pod:5975
15622 msgid ""
15623 "You must call this before calling C<guestfs_launch>, otherwise it has no "
15624 "effect."
15625 msgstr ""
15626
15627 #. type: =head2
15628 #: ../src/guestfs-actions.pod:5982
15629 msgid "guestfs_set_path"
15630 msgstr ""
15631
15632 #. type: verbatim
15633 #: ../src/guestfs-actions.pod:5984
15634 #, no-wrap
15635 msgid ""
15636 " int\n"
15637 " guestfs_set_path (guestfs_h *g,\n"
15638 "                   const char *searchpath);\n"
15639 "\n"
15640 msgstr ""
15641
15642 #. type: textblock
15643 #: ../src/guestfs-actions.pod:5988 ../fish/guestfish-actions.pod:4041
15644 msgid "Set the path that libguestfs searches for kernel and initrd.img."
15645 msgstr ""
15646
15647 #. type: textblock
15648 #: ../src/guestfs-actions.pod:5990 ../fish/guestfish-actions.pod:4043
15649 msgid ""
15650 "The default is C<$libdir/guestfs> unless overridden by setting "
15651 "C<LIBGUESTFS_PATH> environment variable."
15652 msgstr ""
15653
15654 #. type: textblock
15655 #: ../src/guestfs-actions.pod:5993 ../fish/guestfish-actions.pod:4046
15656 msgid "Setting C<path> to C<NULL> restores the default path."
15657 msgstr ""
15658
15659 #. type: =head2
15660 #: ../src/guestfs-actions.pod:5999
15661 msgid "guestfs_set_qemu"
15662 msgstr ""
15663
15664 #. type: verbatim
15665 #: ../src/guestfs-actions.pod:6001
15666 #, no-wrap
15667 msgid ""
15668 " int\n"
15669 " guestfs_set_qemu (guestfs_h *g,\n"
15670 "                   const char *qemu);\n"
15671 "\n"
15672 msgstr ""
15673
15674 #. type: textblock
15675 #: ../src/guestfs-actions.pod:6005 ../fish/guestfish-actions.pod:4054
15676 msgid "Set the qemu binary that we will use."
15677 msgstr ""
15678
15679 #. type: textblock
15680 #: ../src/guestfs-actions.pod:6007 ../fish/guestfish-actions.pod:4056
15681 msgid "The default is chosen when the library was compiled by the configure script."
15682 msgstr ""
15683
15684 #. type: textblock
15685 #: ../src/guestfs-actions.pod:6010 ../fish/guestfish-actions.pod:4059
15686 msgid ""
15687 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
15688 "variable."
15689 msgstr ""
15690
15691 #. type: textblock
15692 #: ../src/guestfs-actions.pod:6013 ../fish/guestfish-actions.pod:4062
15693 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
15694 msgstr ""
15695
15696 #. type: textblock
15697 #: ../src/guestfs-actions.pod:6015 ../fish/guestfish-actions.pod:4064
15698 msgid ""
15699 "Note that you should call this function as early as possible after creating "
15700 "the handle.  This is because some pre-launch operations depend on testing "
15701 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
15702 "don't retest features, and so you might see inconsistent results.  Using the "
15703 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
15704 "the qemu binary at the same time as the handle is created."
15705 msgstr ""
15706
15707 #. type: =head2
15708 #: ../src/guestfs-actions.pod:6027
15709 msgid "guestfs_set_recovery_proc"
15710 msgstr ""
15711
15712 #. type: verbatim
15713 #: ../src/guestfs-actions.pod:6029
15714 #, no-wrap
15715 msgid ""
15716 " int\n"
15717 " guestfs_set_recovery_proc (guestfs_h *g,\n"
15718 "                            int recoveryproc);\n"
15719 "\n"
15720 msgstr ""
15721
15722 #. type: textblock
15723 #: ../src/guestfs-actions.pod:6033
15724 msgid ""
15725 "If this is called with the parameter C<false> then C<guestfs_launch> does "
15726 "not create a recovery process.  The purpose of the recovery process is to "
15727 "stop runaway qemu processes in the case where the main program aborts "
15728 "abruptly."
15729 msgstr ""
15730
15731 #. type: textblock
15732 #: ../src/guestfs-actions.pod:6038
15733 msgid ""
15734 "This only has any effect if called before C<guestfs_launch>, and the default "
15735 "is true."
15736 msgstr ""
15737
15738 #. type: textblock
15739 #: ../src/guestfs-actions.pod:6041 ../fish/guestfish-actions.pod:4086
15740 msgid ""
15741 "About the only time when you would want to disable this is if the main "
15742 "process will fork itself into the background (\"daemonize\" itself).  In "
15743 "this case the recovery process thinks that the main program has disappeared "
15744 "and so kills qemu, which is not very helpful."
15745 msgstr ""
15746
15747 #. type: =head2
15748 #: ../src/guestfs-actions.pod:6051
15749 msgid "guestfs_set_selinux"
15750 msgstr ""
15751
15752 #. type: verbatim
15753 #: ../src/guestfs-actions.pod:6053
15754 #, no-wrap
15755 msgid ""
15756 " int\n"
15757 " guestfs_set_selinux (guestfs_h *g,\n"
15758 "                      int selinux);\n"
15759 "\n"
15760 msgstr ""
15761
15762 #. type: textblock
15763 #: ../src/guestfs-actions.pod:6057 ../fish/guestfish-actions.pod:4098
15764 msgid ""
15765 "This sets the selinux flag that is passed to the appliance at boot time.  "
15766 "The default is C<selinux=0> (disabled)."
15767 msgstr ""
15768
15769 #. type: textblock
15770 #: ../src/guestfs-actions.pod:6060 ../fish/guestfish-actions.pod:4101
15771 msgid ""
15772 "Note that if SELinux is enabled, it is always in Permissive mode "
15773 "(C<enforcing=0>)."
15774 msgstr ""
15775
15776 #. type: =head2
15777 #: ../src/guestfs-actions.pod:6070
15778 msgid "guestfs_set_trace"
15779 msgstr ""
15780
15781 #. type: verbatim
15782 #: ../src/guestfs-actions.pod:6072
15783 #, no-wrap
15784 msgid ""
15785 " int\n"
15786 " guestfs_set_trace (guestfs_h *g,\n"
15787 "                    int trace);\n"
15788 "\n"
15789 msgstr ""
15790
15791 #. type: textblock
15792 #: ../src/guestfs-actions.pod:6076 ../fish/guestfish-actions.pod:4113
15793 msgid ""
15794 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
15795 "return values are traced."
15796 msgstr ""
15797
15798 #. type: textblock
15799 #: ../src/guestfs-actions.pod:6079 ../fish/guestfish-actions.pod:4116
15800 msgid ""
15801 "If you want to trace C API calls into libguestfs (and other libraries) then "
15802 "possibly a better way is to use the external ltrace(1) command."
15803 msgstr ""
15804
15805 #. type: textblock
15806 #: ../src/guestfs-actions.pod:6083 ../fish/guestfish-actions.pod:4120
15807 msgid ""
15808 "Command traces are disabled unless the environment variable "
15809 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
15810 msgstr ""
15811
15812 #. type: textblock
15813 #: ../src/guestfs-actions.pod:6086
15814 msgid ""
15815 "Trace messages are normally sent to C<stderr>, unless you register a "
15816 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
15817 msgstr ""
15818
15819 #. type: =head2
15820 #: ../src/guestfs-actions.pod:6094
15821 msgid "guestfs_set_verbose"
15822 msgstr ""
15823
15824 #. type: verbatim
15825 #: ../src/guestfs-actions.pod:6096
15826 #, no-wrap
15827 msgid ""
15828 " int\n"
15829 " guestfs_set_verbose (guestfs_h *g,\n"
15830 "                      int verbose);\n"
15831 "\n"
15832 msgstr ""
15833
15834 #. type: textblock
15835 #: ../src/guestfs-actions.pod:6100 ../fish/guestfish-actions.pod:4133
15836 msgid "If C<verbose> is true, this turns on verbose messages."
15837 msgstr ""
15838
15839 #. type: textblock
15840 #: ../src/guestfs-actions.pod:6102 ../fish/guestfish-actions.pod:4135
15841 msgid ""
15842 "Verbose messages are disabled unless the environment variable "
15843 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
15844 msgstr ""
15845
15846 #. type: textblock
15847 #: ../src/guestfs-actions.pod:6105
15848 msgid ""
15849 "Verbose messages are normally sent to C<stderr>, unless you register a "
15850 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
15851 msgstr ""
15852
15853 #. type: =head2
15854 #: ../src/guestfs-actions.pod:6113
15855 msgid "guestfs_setcon"
15856 msgstr ""
15857
15858 #. type: verbatim
15859 #: ../src/guestfs-actions.pod:6115
15860 #, no-wrap
15861 msgid ""
15862 " int\n"
15863 " guestfs_setcon (guestfs_h *g,\n"
15864 "                 const char *context);\n"
15865 "\n"
15866 msgstr ""
15867
15868 #. type: textblock
15869 #: ../src/guestfs-actions.pod:6119 ../fish/guestfish-actions.pod:4146
15870 msgid ""
15871 "This sets the SELinux security context of the daemon to the string "
15872 "C<context>."
15873 msgstr ""
15874
15875 #. type: textblock
15876 #: ../src/guestfs-actions.pod:6122 ../fish/guestfish-actions.pod:4149
15877 msgid "See the documentation about SELINUX in L<guestfs(3)>."
15878 msgstr ""
15879
15880 #. type: =head2
15881 #: ../src/guestfs-actions.pod:6128
15882 msgid "guestfs_setxattr"
15883 msgstr ""
15884
15885 #. type: verbatim
15886 #: ../src/guestfs-actions.pod:6130
15887 #, no-wrap
15888 msgid ""
15889 " int\n"
15890 " guestfs_setxattr (guestfs_h *g,\n"
15891 "                   const char *xattr,\n"
15892 "                   const char *val,\n"
15893 "                   int vallen,\n"
15894 "                   const char *path);\n"
15895 "\n"
15896 msgstr ""
15897
15898 #. type: textblock
15899 #: ../src/guestfs-actions.pod:6137 ../fish/guestfish-actions.pod:4155
15900 msgid ""
15901 "This call sets the extended attribute named C<xattr> of the file C<path> to "
15902 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
15903 msgstr ""
15904
15905 #. type: textblock
15906 #: ../src/guestfs-actions.pod:6141
15907 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
15908 msgstr ""
15909
15910 #. type: =head2
15911 #: ../src/guestfs-actions.pod:6147
15912 msgid "guestfs_sfdisk"
15913 msgstr ""
15914
15915 #. type: verbatim
15916 #: ../src/guestfs-actions.pod:6149
15917 #, no-wrap
15918 msgid ""
15919 " int\n"
15920 " guestfs_sfdisk (guestfs_h *g,\n"
15921 "                 const char *device,\n"
15922 "                 int cyls,\n"
15923 "                 int heads,\n"
15924 "                 int sectors,\n"
15925 "                 char *const *lines);\n"
15926 "\n"
15927 msgstr ""
15928
15929 #. type: textblock
15930 #: ../src/guestfs-actions.pod:6157 ../fish/guestfish-actions.pod:4165
15931 msgid ""
15932 "This is a direct interface to the L<sfdisk(8)> program for creating "
15933 "partitions on block devices."
15934 msgstr ""
15935
15936 #. type: textblock
15937 #: ../src/guestfs-actions.pod:6160 ../fish/guestfish-actions.pod:4168
15938 msgid "C<device> should be a block device, for example C</dev/sda>."
15939 msgstr ""
15940
15941 #. type: textblock
15942 #: ../src/guestfs-actions.pod:6162 ../fish/guestfish-actions.pod:4170
15943 msgid ""
15944 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
15945 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
15946 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
15947 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
15948 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
15949 "the kernel) cannot work out the right geometry and you will need to tell it."
15950 msgstr ""
15951
15952 #. type: textblock
15953 #: ../src/guestfs-actions.pod:6170 ../fish/guestfish-actions.pod:4178
15954 msgid ""
15955 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
15956 "refer to the L<sfdisk(8)> manpage."
15957 msgstr ""
15958
15959 #. type: textblock
15960 #: ../src/guestfs-actions.pod:6173 ../fish/guestfish-actions.pod:4181
15961 msgid ""
15962 "To create a single partition occupying the whole disk, you would pass "
15963 "C<lines> as a single element list, when the single element being the string "
15964 "C<,> (comma)."
15965 msgstr ""
15966
15967 #. type: textblock
15968 #: ../src/guestfs-actions.pod:6177
15969 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
15970 msgstr ""
15971
15972 #. type: textblock
15973 #: ../src/guestfs-actions.pod:6185 ../src/guestfs-actions.pod:6215 ../src/guestfs-actions.pod:6248 ../fish/guestfish-actions.pod:4191 ../fish/guestfish-actions.pod:4214 ../fish/guestfish-actions.pod:4236
15974 msgid "This function is deprecated.  In new code, use the C<part_add> call instead."
15975 msgstr ""
15976
15977 #. type: =head2
15978 #: ../src/guestfs-actions.pod:6194
15979 msgid "guestfs_sfdiskM"
15980 msgstr ""
15981
15982 #. type: verbatim
15983 #: ../src/guestfs-actions.pod:6196
15984 #, no-wrap
15985 msgid ""
15986 " int\n"
15987 " guestfs_sfdiskM (guestfs_h *g,\n"
15988 "                  const char *device,\n"
15989 "                  char *const *lines);\n"
15990 "\n"
15991 msgstr ""
15992
15993 #. type: textblock
15994 #: ../src/guestfs-actions.pod:6201
15995 msgid ""
15996 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
15997 "partition sizes are specified in megabytes only (rounded to the nearest "
15998 "cylinder) and you don't need to specify the cyls, heads and sectors "
15999 "parameters which were rarely if ever used anyway."
16000 msgstr ""
16001
16002 #. type: textblock
16003 #: ../src/guestfs-actions.pod:6207
16004 msgid ""
16005 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16006 "C<guestfs_part_disk>"
16007 msgstr ""
16008
16009 #. type: =head2
16010 #: ../src/guestfs-actions.pod:6224
16011 msgid "guestfs_sfdisk_N"
16012 msgstr ""
16013
16014 #. type: verbatim
16015 #: ../src/guestfs-actions.pod:6226
16016 #, no-wrap
16017 msgid ""
16018 " int\n"
16019 " guestfs_sfdisk_N (guestfs_h *g,\n"
16020 "                   const char *device,\n"
16021 "                   int partnum,\n"
16022 "                   int cyls,\n"
16023 "                   int heads,\n"
16024 "                   int sectors,\n"
16025 "                   const char *line);\n"
16026 "\n"
16027 msgstr ""
16028
16029 #. type: textblock
16030 #: ../src/guestfs-actions.pod:6235 ../fish/guestfish-actions.pod:4225
16031 msgid ""
16032 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16033 "(note: C<n> counts from 1)."
16034 msgstr ""
16035
16036 #. type: textblock
16037 #: ../src/guestfs-actions.pod:6238
16038 msgid ""
16039 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16040 "for the cyls/heads/sectors parameters."
16041 msgstr ""
16042
16043 #. type: textblock
16044 #: ../src/guestfs-actions.pod:6241
16045 msgid "See also: C<guestfs_part_add>"
16046 msgstr ""
16047
16048 #. type: =head2
16049 #: ../src/guestfs-actions.pod:6257
16050 msgid "guestfs_sfdisk_disk_geometry"
16051 msgstr ""
16052
16053 #. type: verbatim
16054 #: ../src/guestfs-actions.pod:6259
16055 #, no-wrap
16056 msgid ""
16057 " char *\n"
16058 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16059 "                               const char *device);\n"
16060 "\n"
16061 msgstr ""
16062
16063 #. type: textblock
16064 #: ../src/guestfs-actions.pod:6263
16065 msgid ""
16066 "This displays the disk geometry of C<device> read from the partition table.  "
16067 "Especially in the case where the underlying block device has been resized, "
16068 "this can be different from the kernel's idea of the geometry (see "
16069 "C<guestfs_sfdisk_kernel_geometry>)."
16070 msgstr ""
16071
16072 #. type: textblock
16073 #: ../src/guestfs-actions.pod:6268 ../src/guestfs-actions.pod:6284 ../fish/guestfish-actions.pod:4252 ../fish/guestfish-actions.pod:4261
16074 msgid "The result is in human-readable format, and not designed to be parsed."
16075 msgstr ""
16076
16077 #. type: =head2
16078 #: ../src/guestfs-actions.pod:6276
16079 msgid "guestfs_sfdisk_kernel_geometry"
16080 msgstr ""
16081
16082 #. type: verbatim
16083 #: ../src/guestfs-actions.pod:6278
16084 #, no-wrap
16085 msgid ""
16086 " char *\n"
16087 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16088 "                                 const char *device);\n"
16089 "\n"
16090 msgstr ""
16091
16092 #. type: textblock
16093 #: ../src/guestfs-actions.pod:6282 ../fish/guestfish-actions.pod:4259
16094 msgid "This displays the kernel's idea of the geometry of C<device>."
16095 msgstr ""
16096
16097 #. type: =head2
16098 #: ../src/guestfs-actions.pod:6292
16099 msgid "guestfs_sfdisk_l"
16100 msgstr ""
16101
16102 #. type: verbatim
16103 #: ../src/guestfs-actions.pod:6294
16104 #, no-wrap
16105 msgid ""
16106 " char *\n"
16107 " guestfs_sfdisk_l (guestfs_h *g,\n"
16108 "                   const char *device);\n"
16109 "\n"
16110 msgstr ""
16111
16112 #. type: textblock
16113 #: ../src/guestfs-actions.pod:6298 ../fish/guestfish-actions.pod:4268
16114 msgid ""
16115 "This displays the partition table on C<device>, in the human-readable output "
16116 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16117 msgstr ""
16118
16119 #. type: textblock
16120 #: ../src/guestfs-actions.pod:6302
16121 msgid "See also: C<guestfs_part_list>"
16122 msgstr ""
16123
16124 #. type: textblock
16125 #: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4274
16126 msgid ""
16127 "This function is deprecated.  In new code, use the C<part_list> call "
16128 "instead."
16129 msgstr ""
16130
16131 #. type: =head2
16132 #: ../src/guestfs-actions.pod:6316
16133 msgid "guestfs_sh"
16134 msgstr ""
16135
16136 #. type: verbatim
16137 #: ../src/guestfs-actions.pod:6318
16138 #, no-wrap
16139 msgid ""
16140 " char *\n"
16141 " guestfs_sh (guestfs_h *g,\n"
16142 "             const char *command);\n"
16143 "\n"
16144 msgstr ""
16145
16146 #. type: textblock
16147 #: ../src/guestfs-actions.pod:6322 ../fish/guestfish-actions.pod:4285
16148 msgid ""
16149 "This call runs a command from the guest filesystem via the guest's "
16150 "C</bin/sh>."
16151 msgstr ""
16152
16153 #. type: textblock
16154 #: ../src/guestfs-actions.pod:6325
16155 msgid "This is like C<guestfs_command>, but passes the command to:"
16156 msgstr ""
16157
16158 #. type: verbatim
16159 #: ../src/guestfs-actions.pod:6327 ../fish/guestfish-actions.pod:4290
16160 #, no-wrap
16161 msgid ""
16162 " /bin/sh -c \"command\"\n"
16163 "\n"
16164 msgstr ""
16165
16166 #. type: textblock
16167 #: ../src/guestfs-actions.pod:6329 ../fish/guestfish-actions.pod:4292
16168 msgid ""
16169 "Depending on the guest's shell, this usually results in wildcards being "
16170 "expanded, shell expressions being interpolated and so on."
16171 msgstr ""
16172
16173 #. type: textblock
16174 #: ../src/guestfs-actions.pod:6333
16175 msgid "All the provisos about C<guestfs_command> apply to this call."
16176 msgstr ""
16177
16178 #. type: =head2
16179 #: ../src/guestfs-actions.pod:6340
16180 msgid "guestfs_sh_lines"
16181 msgstr ""
16182
16183 #. type: verbatim
16184 #: ../src/guestfs-actions.pod:6342
16185 #, no-wrap
16186 msgid ""
16187 " char **\n"
16188 " guestfs_sh_lines (guestfs_h *g,\n"
16189 "                   const char *command);\n"
16190 "\n"
16191 msgstr ""
16192
16193 #. type: textblock
16194 #: ../src/guestfs-actions.pod:6346
16195 msgid ""
16196 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16197 "lines."
16198 msgstr ""
16199
16200 #. type: textblock
16201 #: ../src/guestfs-actions.pod:6349
16202 msgid "See also: C<guestfs_command_lines>"
16203 msgstr ""
16204
16205 #. type: =head2
16206 #: ../src/guestfs-actions.pod:6357
16207 msgid "guestfs_sleep"
16208 msgstr ""
16209
16210 #. type: verbatim
16211 #: ../src/guestfs-actions.pod:6359
16212 #, no-wrap
16213 msgid ""
16214 " int\n"
16215 " guestfs_sleep (guestfs_h *g,\n"
16216 "                int secs);\n"
16217 "\n"
16218 msgstr ""
16219
16220 #. type: textblock
16221 #: ../src/guestfs-actions.pod:6363 ../fish/guestfish-actions.pod:4311
16222 msgid "Sleep for C<secs> seconds."
16223 msgstr ""
16224
16225 #. type: textblock
16226 #: ../src/guestfs-actions.pod:6367
16227 msgid "(Added in 1.0.41)"
16228 msgstr ""
16229
16230 #. type: =head2
16231 #: ../src/guestfs-actions.pod:6369 ../src/guestfs-structs.pod:109
16232 msgid "guestfs_stat"
16233 msgstr ""
16234
16235 #. type: verbatim
16236 #: ../src/guestfs-actions.pod:6371
16237 #, no-wrap
16238 msgid ""
16239 " struct guestfs_stat *\n"
16240 " guestfs_stat (guestfs_h *g,\n"
16241 "               const char *path);\n"
16242 "\n"
16243 msgstr ""
16244
16245 #. type: textblock
16246 #: ../src/guestfs-actions.pod:6377 ../fish/guestfish-actions.pod:4319
16247 msgid "This is the same as the C<stat(2)> system call."
16248 msgstr ""
16249
16250 #. type: =head2
16251 #: ../src/guestfs-actions.pod:6385 ../src/guestfs-structs.pod:135
16252 msgid "guestfs_statvfs"
16253 msgstr ""
16254
16255 #. type: verbatim
16256 #: ../src/guestfs-actions.pod:6387
16257 #, no-wrap
16258 msgid ""
16259 " struct guestfs_statvfs *\n"
16260 " guestfs_statvfs (guestfs_h *g,\n"
16261 "                  const char *path);\n"
16262 "\n"
16263 msgstr ""
16264
16265 #. type: textblock
16266 #: ../src/guestfs-actions.pod:6391 ../fish/guestfish-actions.pod:4325
16267 msgid ""
16268 "Returns file system statistics for any mounted file system.  C<path> should "
16269 "be a file or directory in the mounted file system (typically it is the mount "
16270 "point itself, but it doesn't need to be)."
16271 msgstr ""
16272
16273 #. type: textblock
16274 #: ../src/guestfs-actions.pod:6395 ../fish/guestfish-actions.pod:4329
16275 msgid "This is the same as the C<statvfs(2)> system call."
16276 msgstr ""
16277
16278 #. type: textblock
16279 #: ../src/guestfs-actions.pod:6397
16280 msgid ""
16281 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16282 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16283 msgstr ""
16284
16285 #. type: =head2
16286 #: ../src/guestfs-actions.pod:6403
16287 msgid "guestfs_strings"
16288 msgstr ""
16289
16290 #. type: verbatim
16291 #: ../src/guestfs-actions.pod:6405
16292 #, no-wrap
16293 msgid ""
16294 " char **\n"
16295 " guestfs_strings (guestfs_h *g,\n"
16296 "                  const char *path);\n"
16297 "\n"
16298 msgstr ""
16299
16300 #. type: textblock
16301 #: ../src/guestfs-actions.pod:6409 ../fish/guestfish-actions.pod:4335
16302 msgid ""
16303 "This runs the L<strings(1)> command on a file and returns the list of "
16304 "printable strings found."
16305 msgstr ""
16306
16307 #. type: =head2
16308 #: ../src/guestfs-actions.pod:6421
16309 msgid "guestfs_strings_e"
16310 msgstr ""
16311
16312 #. type: verbatim
16313 #: ../src/guestfs-actions.pod:6423
16314 #, no-wrap
16315 msgid ""
16316 " char **\n"
16317 " guestfs_strings_e (guestfs_h *g,\n"
16318 "                    const char *encoding,\n"
16319 "                    const char *path);\n"
16320 "\n"
16321 msgstr ""
16322
16323 #. type: textblock
16324 #: ../src/guestfs-actions.pod:6428
16325 msgid ""
16326 "This is like the C<guestfs_strings> command, but allows you to specify the "
16327 "encoding of strings that are looked for in the source file C<path>."
16328 msgstr ""
16329
16330 #. type: textblock
16331 #: ../src/guestfs-actions.pod:6432 ../fish/guestfish-actions.pod:4349
16332 msgid "Allowed encodings are:"
16333 msgstr ""
16334
16335 #. type: =item
16336 #: ../src/guestfs-actions.pod:6436 ../fish/guestfish-actions.pod:4353
16337 msgid "s"
16338 msgstr ""
16339
16340 #. type: textblock
16341 #: ../src/guestfs-actions.pod:6438
16342 msgid ""
16343 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16344 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16345 msgstr ""
16346
16347 #. type: =item
16348 #: ../src/guestfs-actions.pod:6441 ../fish/guestfish-actions.pod:4358
16349 msgid "S"
16350 msgstr ""
16351
16352 #. type: textblock
16353 #: ../src/guestfs-actions.pod:6443 ../fish/guestfish-actions.pod:4360
16354 msgid "Single 8-bit-byte characters."
16355 msgstr ""
16356
16357 #. type: =item
16358 #: ../src/guestfs-actions.pod:6445 ../fish/guestfish-actions.pod:4362
16359 msgid "b"
16360 msgstr ""
16361
16362 #. type: textblock
16363 #: ../src/guestfs-actions.pod:6447 ../fish/guestfish-actions.pod:4364
16364 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16365 msgstr ""
16366
16367 #. type: =item
16368 #: ../src/guestfs-actions.pod:6450 ../fish/guestfish-actions.pod:4367
16369 msgid "l (lower case letter L)"
16370 msgstr ""
16371
16372 #. type: textblock
16373 #: ../src/guestfs-actions.pod:6452 ../fish/guestfish-actions.pod:4369
16374 msgid ""
16375 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16376 "examining binaries in Windows guests."
16377 msgstr ""
16378
16379 #. type: =item
16380 #: ../src/guestfs-actions.pod:6455 ../fish/guestfish-actions.pod:4372
16381 msgid "B"
16382 msgstr ""
16383
16384 #. type: textblock
16385 #: ../src/guestfs-actions.pod:6457 ../fish/guestfish-actions.pod:4374
16386 msgid "32-bit big endian such as UCS-4BE."
16387 msgstr ""
16388
16389 #. type: =item
16390 #: ../src/guestfs-actions.pod:6459 ../fish/guestfish-actions.pod:4376
16391 msgid "L"
16392 msgstr ""
16393
16394 #. type: textblock
16395 #: ../src/guestfs-actions.pod:6461 ../fish/guestfish-actions.pod:4378
16396 msgid "32-bit little endian such as UCS-4LE."
16397 msgstr ""
16398
16399 #. type: textblock
16400 #: ../src/guestfs-actions.pod:6465 ../fish/guestfish-actions.pod:4382
16401 msgid "The returned strings are transcoded to UTF-8."
16402 msgstr ""
16403
16404 #. type: =head2
16405 #: ../src/guestfs-actions.pod:6476
16406 msgid "guestfs_swapoff_device"
16407 msgstr ""
16408
16409 #. type: verbatim
16410 #: ../src/guestfs-actions.pod:6478
16411 #, no-wrap
16412 msgid ""
16413 " int\n"
16414 " guestfs_swapoff_device (guestfs_h *g,\n"
16415 "                         const char *device);\n"
16416 "\n"
16417 msgstr ""
16418
16419 #. type: textblock
16420 #: ../src/guestfs-actions.pod:6482
16421 msgid ""
16422 "This command disables the libguestfs appliance swap device or partition "
16423 "named C<device>.  See C<guestfs_swapon_device>."
16424 msgstr ""
16425
16426 #. type: =head2
16427 #: ../src/guestfs-actions.pod:6490
16428 msgid "guestfs_swapoff_file"
16429 msgstr ""
16430
16431 #. type: verbatim
16432 #: ../src/guestfs-actions.pod:6492
16433 #, no-wrap
16434 msgid ""
16435 " int\n"
16436 " guestfs_swapoff_file (guestfs_h *g,\n"
16437 "                       const char *file);\n"
16438 "\n"
16439 msgstr ""
16440
16441 #. type: textblock
16442 #: ../src/guestfs-actions.pod:6496 ../fish/guestfish-actions.pod:4399
16443 msgid "This command disables the libguestfs appliance swap on file."
16444 msgstr ""
16445
16446 #. type: =head2
16447 #: ../src/guestfs-actions.pod:6502
16448 msgid "guestfs_swapoff_label"
16449 msgstr ""
16450
16451 #. type: verbatim
16452 #: ../src/guestfs-actions.pod:6504
16453 #, no-wrap
16454 msgid ""
16455 " int\n"
16456 " guestfs_swapoff_label (guestfs_h *g,\n"
16457 "                        const char *label);\n"
16458 "\n"
16459 msgstr ""
16460
16461 #. type: textblock
16462 #: ../src/guestfs-actions.pod:6508 ../fish/guestfish-actions.pod:4405
16463 msgid ""
16464 "This command disables the libguestfs appliance swap on labeled swap "
16465 "partition."
16466 msgstr ""
16467
16468 #. type: =head2
16469 #: ../src/guestfs-actions.pod:6515
16470 msgid "guestfs_swapoff_uuid"
16471 msgstr ""
16472
16473 #. type: verbatim
16474 #: ../src/guestfs-actions.pod:6517
16475 #, no-wrap
16476 msgid ""
16477 " int\n"
16478 " guestfs_swapoff_uuid (guestfs_h *g,\n"
16479 "                       const char *uuid);\n"
16480 "\n"
16481 msgstr ""
16482
16483 #. type: textblock
16484 #: ../src/guestfs-actions.pod:6521 ../fish/guestfish-actions.pod:4412
16485 msgid ""
16486 "This command disables the libguestfs appliance swap partition with the given "
16487 "UUID."
16488 msgstr ""
16489
16490 #. type: =head2
16491 #: ../src/guestfs-actions.pod:6528
16492 msgid "guestfs_swapon_device"
16493 msgstr ""
16494
16495 #. type: verbatim
16496 #: ../src/guestfs-actions.pod:6530
16497 #, no-wrap
16498 msgid ""
16499 " int\n"
16500 " guestfs_swapon_device (guestfs_h *g,\n"
16501 "                        const char *device);\n"
16502 "\n"
16503 msgstr ""
16504
16505 #. type: textblock
16506 #: ../src/guestfs-actions.pod:6534
16507 msgid ""
16508 "This command enables the libguestfs appliance to use the swap device or "
16509 "partition named C<device>.  The increased memory is made available for all "
16510 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
16511 msgstr ""
16512
16513 #. type: textblock
16514 #: ../src/guestfs-actions.pod:6539 ../fish/guestfish-actions.pod:4424
16515 msgid ""
16516 "Note that you should not swap to existing guest swap partitions unless you "
16517 "know what you are doing.  They may contain hibernation information, or other "
16518 "information that the guest doesn't want you to trash.  You also risk leaking "
16519 "information about the host to the guest this way.  Instead, attach a new "
16520 "host device to the guest and swap on that."
16521 msgstr ""
16522
16523 #. type: =head2
16524 #: ../src/guestfs-actions.pod:6550
16525 msgid "guestfs_swapon_file"
16526 msgstr ""
16527
16528 #. type: verbatim
16529 #: ../src/guestfs-actions.pod:6552
16530 #, no-wrap
16531 msgid ""
16532 " int\n"
16533 " guestfs_swapon_file (guestfs_h *g,\n"
16534 "                      const char *file);\n"
16535 "\n"
16536 msgstr ""
16537
16538 #. type: textblock
16539 #: ../src/guestfs-actions.pod:6556
16540 msgid ""
16541 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
16542 "notes."
16543 msgstr ""
16544
16545 #. type: =head2
16546 #: ../src/guestfs-actions.pod:6563
16547 msgid "guestfs_swapon_label"
16548 msgstr ""
16549
16550 #. type: verbatim
16551 #: ../src/guestfs-actions.pod:6565
16552 #, no-wrap
16553 msgid ""
16554 " int\n"
16555 " guestfs_swapon_label (guestfs_h *g,\n"
16556 "                       const char *label);\n"
16557 "\n"
16558 msgstr ""
16559
16560 #. type: textblock
16561 #: ../src/guestfs-actions.pod:6569
16562 msgid ""
16563 "This command enables swap to a labeled swap partition.  See "
16564 "C<guestfs_swapon_device> for other notes."
16565 msgstr ""
16566
16567 #. type: =head2
16568 #: ../src/guestfs-actions.pod:6576
16569 msgid "guestfs_swapon_uuid"
16570 msgstr ""
16571
16572 #. type: verbatim
16573 #: ../src/guestfs-actions.pod:6578
16574 #, no-wrap
16575 msgid ""
16576 " int\n"
16577 " guestfs_swapon_uuid (guestfs_h *g,\n"
16578 "                      const char *uuid);\n"
16579 "\n"
16580 msgstr ""
16581
16582 #. type: textblock
16583 #: ../src/guestfs-actions.pod:6582
16584 msgid ""
16585 "This command enables swap to a swap partition with the given UUID.  See "
16586 "C<guestfs_swapon_device> for other notes."
16587 msgstr ""
16588
16589 #. type: =head2
16590 #: ../src/guestfs-actions.pod:6589
16591 msgid "guestfs_sync"
16592 msgstr ""
16593
16594 #. type: verbatim
16595 #: ../src/guestfs-actions.pod:6591
16596 #, no-wrap
16597 msgid ""
16598 " int\n"
16599 " guestfs_sync (guestfs_h *g);\n"
16600 "\n"
16601 msgstr ""
16602
16603 #. type: textblock
16604 #: ../src/guestfs-actions.pod:6594 ../fish/guestfish-actions.pod:4456
16605 msgid ""
16606 "This syncs the disk, so that any writes are flushed through to the "
16607 "underlying disk image."
16608 msgstr ""
16609
16610 #. type: textblock
16611 #: ../src/guestfs-actions.pod:6597 ../fish/guestfish-actions.pod:4459
16612 msgid ""
16613 "You should always call this if you have modified a disk image, before "
16614 "closing the handle."
16615 msgstr ""
16616
16617 #. type: =head2
16618 #: ../src/guestfs-actions.pod:6604
16619 msgid "guestfs_tail"
16620 msgstr ""
16621
16622 #. type: verbatim
16623 #: ../src/guestfs-actions.pod:6606
16624 #, no-wrap
16625 msgid ""
16626 " char **\n"
16627 " guestfs_tail (guestfs_h *g,\n"
16628 "               const char *path);\n"
16629 "\n"
16630 msgstr ""
16631
16632 #. type: textblock
16633 #: ../src/guestfs-actions.pod:6610 ../fish/guestfish-actions.pod:4466
16634 msgid "This command returns up to the last 10 lines of a file as a list of strings."
16635 msgstr ""
16636
16637 #. type: =head2
16638 #: ../src/guestfs-actions.pod:6622
16639 msgid "guestfs_tail_n"
16640 msgstr ""
16641
16642 #. type: verbatim
16643 #: ../src/guestfs-actions.pod:6624
16644 #, no-wrap
16645 msgid ""
16646 " char **\n"
16647 " guestfs_tail_n (guestfs_h *g,\n"
16648 "                 int nrlines,\n"
16649 "                 const char *path);\n"
16650 "\n"
16651 msgstr ""
16652
16653 #. type: textblock
16654 #: ../src/guestfs-actions.pod:6629 ../fish/guestfish-actions.pod:4476
16655 msgid ""
16656 "If the parameter C<nrlines> is a positive number, this returns the last "
16657 "C<nrlines> lines of the file C<path>."
16658 msgstr ""
16659
16660 #. type: textblock
16661 #: ../src/guestfs-actions.pod:6632 ../fish/guestfish-actions.pod:4479
16662 msgid ""
16663 "If the parameter C<nrlines> is a negative number, this returns lines from "
16664 "the file C<path>, starting with the C<-nrlines>th line."
16665 msgstr ""
16666
16667 #. type: =head2
16668 #: ../src/guestfs-actions.pod:6646
16669 msgid "guestfs_tar_in"
16670 msgstr ""
16671
16672 #. type: verbatim
16673 #: ../src/guestfs-actions.pod:6648
16674 #, no-wrap
16675 msgid ""
16676 " int\n"
16677 " guestfs_tar_in (guestfs_h *g,\n"
16678 "                 const char *tarfile,\n"
16679 "                 const char *directory);\n"
16680 "\n"
16681 msgstr ""
16682
16683 #. type: textblock
16684 #: ../src/guestfs-actions.pod:6653 ../fish/guestfish-actions.pod:4491
16685 msgid ""
16686 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
16687 "tar file) into C<directory>."
16688 msgstr ""
16689
16690 #. type: textblock
16691 #: ../src/guestfs-actions.pod:6656
16692 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
16693 msgstr ""
16694
16695 #. type: textblock
16696 #: ../src/guestfs-actions.pod:6661 ../src/guestfs-actions.pod:6678 ../src/guestfs-actions.pod:6694 ../src/guestfs-actions.pod:6710
16697 msgid "(Added in 1.0.3)"
16698 msgstr ""
16699
16700 #. type: =head2
16701 #: ../src/guestfs-actions.pod:6663
16702 msgid "guestfs_tar_out"
16703 msgstr ""
16704
16705 #. type: verbatim
16706 #: ../src/guestfs-actions.pod:6665
16707 #, no-wrap
16708 msgid ""
16709 " int\n"
16710 " guestfs_tar_out (guestfs_h *g,\n"
16711 "                  const char *directory,\n"
16712 "                  const char *tarfile);\n"
16713 "\n"
16714 msgstr ""
16715
16716 #. type: textblock
16717 #: ../src/guestfs-actions.pod:6670 ../fish/guestfish-actions.pod:4503
16718 msgid ""
16719 "This command packs the contents of C<directory> and downloads it to local "
16720 "file C<tarfile>."
16721 msgstr ""
16722
16723 #. type: textblock
16724 #: ../src/guestfs-actions.pod:6673
16725 msgid ""
16726 "To download a compressed tarball, use C<guestfs_tgz_out> or "
16727 "C<guestfs_txz_out>."
16728 msgstr ""
16729
16730 #. type: =head2
16731 #: ../src/guestfs-actions.pod:6680
16732 msgid "guestfs_tgz_in"
16733 msgstr ""
16734
16735 #. type: verbatim
16736 #: ../src/guestfs-actions.pod:6682
16737 #, no-wrap
16738 msgid ""
16739 " int\n"
16740 " guestfs_tgz_in (guestfs_h *g,\n"
16741 "                 const char *tarball,\n"
16742 "                 const char *directory);\n"
16743 "\n"
16744 msgstr ""
16745
16746 #. type: textblock
16747 #: ../src/guestfs-actions.pod:6687 ../fish/guestfish-actions.pod:4515
16748 msgid ""
16749 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
16750 "tar file) into C<directory>."
16751 msgstr ""
16752
16753 #. type: textblock
16754 #: ../src/guestfs-actions.pod:6690
16755 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
16756 msgstr ""
16757
16758 #. type: =head2
16759 #: ../src/guestfs-actions.pod:6696
16760 msgid "guestfs_tgz_out"
16761 msgstr ""
16762
16763 #. type: verbatim
16764 #: ../src/guestfs-actions.pod:6698
16765 #, no-wrap
16766 msgid ""
16767 " int\n"
16768 " guestfs_tgz_out (guestfs_h *g,\n"
16769 "                  const char *directory,\n"
16770 "                  const char *tarball);\n"
16771 "\n"
16772 msgstr ""
16773
16774 #. type: textblock
16775 #: ../src/guestfs-actions.pod:6703 ../fish/guestfish-actions.pod:4526
16776 msgid ""
16777 "This command packs the contents of C<directory> and downloads it to local "
16778 "file C<tarball>."
16779 msgstr ""
16780
16781 #. type: textblock
16782 #: ../src/guestfs-actions.pod:6706
16783 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
16784 msgstr ""
16785
16786 #. type: =head2
16787 #: ../src/guestfs-actions.pod:6712
16788 msgid "guestfs_touch"
16789 msgstr ""
16790
16791 #. type: verbatim
16792 #: ../src/guestfs-actions.pod:6714
16793 #, no-wrap
16794 msgid ""
16795 " int\n"
16796 " guestfs_touch (guestfs_h *g,\n"
16797 "                const char *path);\n"
16798 "\n"
16799 msgstr ""
16800
16801 #. type: textblock
16802 #: ../src/guestfs-actions.pod:6718 ../fish/guestfish-actions.pod:4537
16803 msgid ""
16804 "Touch acts like the L<touch(1)> command.  It can be used to update the "
16805 "timestamps on a file, or, if the file does not exist, to create a new "
16806 "zero-length file."
16807 msgstr ""
16808
16809 #. type: textblock
16810 #: ../src/guestfs-actions.pod:6722 ../fish/guestfish-actions.pod:4541
16811 msgid ""
16812 "This command only works on regular files, and will fail on other file types "
16813 "such as directories, symbolic links, block special etc."
16814 msgstr ""
16815
16816 #. type: =head2
16817 #: ../src/guestfs-actions.pod:6729
16818 msgid "guestfs_truncate"
16819 msgstr ""
16820
16821 #. type: verbatim
16822 #: ../src/guestfs-actions.pod:6731
16823 #, no-wrap
16824 msgid ""
16825 " int\n"
16826 " guestfs_truncate (guestfs_h *g,\n"
16827 "                   const char *path);\n"
16828 "\n"
16829 msgstr ""
16830
16831 #. type: textblock
16832 #: ../src/guestfs-actions.pod:6735 ../fish/guestfish-actions.pod:4548
16833 msgid ""
16834 "This command truncates C<path> to a zero-length file.  The file must exist "
16835 "already."
16836 msgstr ""
16837
16838 #. type: =head2
16839 #: ../src/guestfs-actions.pod:6742
16840 msgid "guestfs_truncate_size"
16841 msgstr ""
16842
16843 #. type: verbatim
16844 #: ../src/guestfs-actions.pod:6744
16845 #, no-wrap
16846 msgid ""
16847 " int\n"
16848 " guestfs_truncate_size (guestfs_h *g,\n"
16849 "                        const char *path,\n"
16850 "                        int64_t size);\n"
16851 "\n"
16852 msgstr ""
16853
16854 #. type: textblock
16855 #: ../src/guestfs-actions.pod:6749 ../fish/guestfish-actions.pod:4555
16856 msgid ""
16857 "This command truncates C<path> to size C<size> bytes.  The file must exist "
16858 "already."
16859 msgstr ""
16860
16861 #. type: textblock
16862 #: ../src/guestfs-actions.pod:6752
16863 msgid ""
16864 "If the current file size is less than C<size> then the file is extended to "
16865 "the required size with zero bytes.  This creates a sparse file (ie. disk "
16866 "blocks are not allocated for the file until you write to it).  To create a "
16867 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
16868 msgstr ""
16869
16870 #. type: =head2
16871 #: ../src/guestfs-actions.pod:6762
16872 msgid "guestfs_tune2fs_l"
16873 msgstr ""
16874
16875 #. type: verbatim
16876 #: ../src/guestfs-actions.pod:6764
16877 #, no-wrap
16878 msgid ""
16879 " char **\n"
16880 " guestfs_tune2fs_l (guestfs_h *g,\n"
16881 "                    const char *device);\n"
16882 "\n"
16883 msgstr ""
16884
16885 #. type: textblock
16886 #: ../src/guestfs-actions.pod:6768 ../fish/guestfish-actions.pod:4568
16887 msgid ""
16888 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
16889 "C<device>."
16890 msgstr ""
16891
16892 #. type: textblock
16893 #: ../src/guestfs-actions.pod:6771 ../fish/guestfish-actions.pod:4571
16894 msgid ""
16895 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
16896 "for more details.  The list of fields returned isn't clearly defined, and "
16897 "depends on both the version of C<tune2fs> that libguestfs was built against, "
16898 "and the filesystem itself."
16899 msgstr ""
16900
16901 #. type: =head2
16902 #: ../src/guestfs-actions.pod:6784
16903 msgid "guestfs_txz_in"
16904 msgstr ""
16905
16906 #. type: verbatim
16907 #: ../src/guestfs-actions.pod:6786
16908 #, no-wrap
16909 msgid ""
16910 " int\n"
16911 " guestfs_txz_in (guestfs_h *g,\n"
16912 "                 const char *tarball,\n"
16913 "                 const char *directory);\n"
16914 "\n"
16915 msgstr ""
16916
16917 #. type: textblock
16918 #: ../src/guestfs-actions.pod:6791 ../fish/guestfish-actions.pod:4580
16919 msgid ""
16920 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
16921 "tar file) into C<directory>."
16922 msgstr ""
16923
16924 #. type: =head2
16925 #: ../src/guestfs-actions.pod:6798
16926 msgid "guestfs_txz_out"
16927 msgstr ""
16928
16929 #. type: verbatim
16930 #: ../src/guestfs-actions.pod:6800
16931 #, no-wrap
16932 msgid ""
16933 " int\n"
16934 " guestfs_txz_out (guestfs_h *g,\n"
16935 "                  const char *directory,\n"
16936 "                  const char *tarball);\n"
16937 "\n"
16938 msgstr ""
16939
16940 #. type: textblock
16941 #: ../src/guestfs-actions.pod:6805 ../fish/guestfish-actions.pod:4589
16942 msgid ""
16943 "This command packs the contents of C<directory> and downloads it to local "
16944 "file C<tarball> (as an xz compressed tar archive)."
16945 msgstr ""
16946
16947 #. type: =head2
16948 #: ../src/guestfs-actions.pod:6812
16949 msgid "guestfs_umask"
16950 msgstr ""
16951
16952 #. type: verbatim
16953 #: ../src/guestfs-actions.pod:6814
16954 #, no-wrap
16955 msgid ""
16956 " int\n"
16957 " guestfs_umask (guestfs_h *g,\n"
16958 "                int mask);\n"
16959 "\n"
16960 msgstr ""
16961
16962 #. type: textblock
16963 #: ../src/guestfs-actions.pod:6818 ../fish/guestfish-actions.pod:4598
16964 msgid ""
16965 "This function sets the mask used for creating new files and device nodes to "
16966 "C<mask & 0777>."
16967 msgstr ""
16968
16969 #. type: textblock
16970 #: ../src/guestfs-actions.pod:6821 ../fish/guestfish-actions.pod:4601
16971 msgid ""
16972 "Typical umask values would be C<022> which creates new files with "
16973 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
16974 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
16975 msgstr ""
16976
16977 #. type: textblock
16978 #: ../src/guestfs-actions.pod:6826 ../fish/guestfish-actions.pod:4606
16979 msgid ""
16980 "The default umask is C<022>.  This is important because it means that "
16981 "directories and device nodes will be created with C<0644> or C<0755> mode "
16982 "even if you specify C<0777>."
16983 msgstr ""
16984
16985 #. type: textblock
16986 #: ../src/guestfs-actions.pod:6830
16987 msgid ""
16988 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
16989 "C<guestfs_mkdir>."
16990 msgstr ""
16991
16992 #. type: textblock
16993 #: ../src/guestfs-actions.pod:6833 ../fish/guestfish-actions.pod:4613
16994 msgid "This call returns the previous umask."
16995 msgstr ""
16996
16997 #. type: =head2
16998 #: ../src/guestfs-actions.pod:6839
16999 msgid "guestfs_umount"
17000 msgstr ""
17001
17002 #. type: verbatim
17003 #: ../src/guestfs-actions.pod:6841
17004 #, no-wrap
17005 msgid ""
17006 " int\n"
17007 " guestfs_umount (guestfs_h *g,\n"
17008 "                 const char *pathordevice);\n"
17009 "\n"
17010 msgstr ""
17011
17012 #. type: textblock
17013 #: ../src/guestfs-actions.pod:6845 ../fish/guestfish-actions.pod:4621
17014 msgid ""
17015 "This unmounts the given filesystem.  The filesystem may be specified either "
17016 "by its mountpoint (path) or the device which contains the filesystem."
17017 msgstr ""
17018
17019 #. type: =head2
17020 #: ../src/guestfs-actions.pod:6853
17021 msgid "guestfs_umount_all"
17022 msgstr ""
17023
17024 #. type: verbatim
17025 #: ../src/guestfs-actions.pod:6855
17026 #, no-wrap
17027 msgid ""
17028 " int\n"
17029 " guestfs_umount_all (guestfs_h *g);\n"
17030 "\n"
17031 msgstr ""
17032
17033 #. type: textblock
17034 #: ../src/guestfs-actions.pod:6858 ../fish/guestfish-actions.pod:4631
17035 msgid "This unmounts all mounted filesystems."
17036 msgstr ""
17037
17038 #. type: textblock
17039 #: ../src/guestfs-actions.pod:6860 ../fish/guestfish-actions.pod:4633
17040 msgid "Some internal mounts are not unmounted by this call."
17041 msgstr ""
17042
17043 #. type: =head2
17044 #: ../src/guestfs-actions.pod:6866
17045 msgid "guestfs_upload"
17046 msgstr ""
17047
17048 #. type: verbatim
17049 #: ../src/guestfs-actions.pod:6868
17050 #, no-wrap
17051 msgid ""
17052 " int\n"
17053 " guestfs_upload (guestfs_h *g,\n"
17054 "                 const char *filename,\n"
17055 "                 const char *remotefilename);\n"
17056 "\n"
17057 msgstr ""
17058
17059 #. type: textblock
17060 #: ../src/guestfs-actions.pod:6873 ../src/guestfs-actions.pod:6897 ../fish/guestfish-actions.pod:4639 ../fish/guestfish-actions.pod:4652
17061 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17062 msgstr ""
17063
17064 #. type: textblock
17065 #: ../src/guestfs-actions.pod:6878
17066 msgid "See also C<guestfs_download>."
17067 msgstr ""
17068
17069 #. type: =head2
17070 #: ../src/guestfs-actions.pod:6889
17071 msgid "guestfs_upload_offset"
17072 msgstr ""
17073
17074 #. type: verbatim
17075 #: ../src/guestfs-actions.pod:6891
17076 #, no-wrap
17077 msgid ""
17078 " int\n"
17079 " guestfs_upload_offset (guestfs_h *g,\n"
17080 "                        const char *filename,\n"
17081 "                        const char *remotefilename,\n"
17082 "                        int64_t offset);\n"
17083 "\n"
17084 msgstr ""
17085
17086 #. type: textblock
17087 #: ../src/guestfs-actions.pod:6900 ../fish/guestfish-actions.pod:4655
17088 msgid ""
17089 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17090 "The intention is to overwrite parts of existing files or devices, although "
17091 "if a non-existant file is specified then it is created with a \"hole\" "
17092 "before C<offset>.  The size of the data written is implicit in the size of "
17093 "the source C<filename>."
17094 msgstr ""
17095
17096 #. type: textblock
17097 #: ../src/guestfs-actions.pod:6907
17098 msgid ""
17099 "Note that there is no limit on the amount of data that can be uploaded with "
17100 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17101 "full amount unless an error occurs."
17102 msgstr ""
17103
17104 #. type: textblock
17105 #: ../src/guestfs-actions.pod:6912
17106 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17107 msgstr ""
17108
17109 #. type: =head2
17110 #: ../src/guestfs-actions.pod:6923
17111 msgid "guestfs_utimens"
17112 msgstr ""
17113
17114 #. type: verbatim
17115 #: ../src/guestfs-actions.pod:6925
17116 #, no-wrap
17117 msgid ""
17118 " int\n"
17119 " guestfs_utimens (guestfs_h *g,\n"
17120 "                  const char *path,\n"
17121 "                  int64_t atsecs,\n"
17122 "                  int64_t atnsecs,\n"
17123 "                  int64_t mtsecs,\n"
17124 "                  int64_t mtnsecs);\n"
17125 "\n"
17126 msgstr ""
17127
17128 #. type: textblock
17129 #: ../src/guestfs-actions.pod:6933 ../fish/guestfish-actions.pod:4675
17130 msgid "This command sets the timestamps of a file with nanosecond precision."
17131 msgstr ""
17132
17133 #. type: textblock
17134 #: ../src/guestfs-actions.pod:6936 ../fish/guestfish-actions.pod:4678
17135 msgid ""
17136 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17137 "from the epoch."
17138 msgstr ""
17139
17140 #. type: textblock
17141 #: ../src/guestfs-actions.pod:6939 ../fish/guestfish-actions.pod:4681
17142 msgid ""
17143 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17144 "nanoseconds from the epoch."
17145 msgstr ""
17146
17147 #. type: textblock
17148 #: ../src/guestfs-actions.pod:6942 ../fish/guestfish-actions.pod:4684
17149 msgid ""
17150 "If the C<*nsecs> field contains the special value C<-1> then the "
17151 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17152 "ignored in this case)."
17153 msgstr ""
17154
17155 #. type: textblock
17156 #: ../src/guestfs-actions.pod:6946 ../fish/guestfish-actions.pod:4688
17157 msgid ""
17158 "If the C<*nsecs> field contains the special value C<-2> then the "
17159 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17160 "in this case)."
17161 msgstr ""
17162
17163 #. type: =head2
17164 #: ../src/guestfs-actions.pod:6954 ../src/guestfs-structs.pod:175
17165 msgid "guestfs_version"
17166 msgstr ""
17167
17168 #. type: verbatim
17169 #: ../src/guestfs-actions.pod:6956
17170 #, no-wrap
17171 msgid ""
17172 " struct guestfs_version *\n"
17173 " guestfs_version (guestfs_h *g);\n"
17174 "\n"
17175 msgstr ""
17176
17177 #. type: textblock
17178 #: ../src/guestfs-actions.pod:6959 ../fish/guestfish-actions.pod:4696
17179 msgid "Return the libguestfs version number that the program is linked against."
17180 msgstr ""
17181
17182 #. type: textblock
17183 #: ../src/guestfs-actions.pod:6962 ../fish/guestfish-actions.pod:4699
17184 msgid ""
17185 "Note that because of dynamic linking this is not necessarily the version of "
17186 "libguestfs that you compiled against.  You can compile the program, and then "
17187 "at runtime dynamically link against a completely different C<libguestfs.so> "
17188 "library."
17189 msgstr ""
17190
17191 #. type: textblock
17192 #: ../src/guestfs-actions.pod:6967 ../fish/guestfish-actions.pod:4704
17193 msgid ""
17194 "This call was added in version C<1.0.58>.  In previous versions of "
17195 "libguestfs there was no way to get the version number.  From C code you can "
17196 "use dynamic linker functions to find out if this symbol exists (if it "
17197 "doesn't, then it's an earlier version)."
17198 msgstr ""
17199
17200 #. type: textblock
17201 #: ../src/guestfs-actions.pod:6973 ../fish/guestfish-actions.pod:4710
17202 msgid ""
17203 "The call returns a structure with four elements.  The first three (C<major>, "
17204 "C<minor> and C<release>) are numbers and correspond to the usual version "
17205 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17206 "but may be used for distro-specific information."
17207 msgstr ""
17208
17209 #. type: textblock
17210 #: ../src/guestfs-actions.pod:6979 ../fish/guestfish-actions.pod:4716
17211 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
17212 msgstr ""
17213
17214 #. type: textblock
17215 #: ../src/guestfs-actions.pod:6982 ../fish/guestfish-actions.pod:4719
17216 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17217 msgstr ""
17218
17219 #. type: textblock
17220 #: ../src/guestfs-actions.pod:6984
17221 msgid ""
17222 "I<Note:> Don't use this call to test for availability of features.  In "
17223 "enterprise distributions we backport features from later versions into "
17224 "earlier versions, making this an unreliable way to test for features.  Use "
17225 "C<guestfs_available> instead."
17226 msgstr ""
17227
17228 #. type: textblock
17229 #: ../src/guestfs-actions.pod:6990
17230 msgid ""
17231 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17232 "error.  I<The caller must call C<guestfs_free_version> after use>."
17233 msgstr ""
17234
17235 #. type: textblock
17236 #: ../src/guestfs-actions.pod:6994
17237 msgid "(Added in 1.0.58)"
17238 msgstr ""
17239
17240 #. type: =head2
17241 #: ../src/guestfs-actions.pod:6996
17242 msgid "guestfs_vfs_label"
17243 msgstr ""
17244
17245 #. type: verbatim
17246 #: ../src/guestfs-actions.pod:6998
17247 #, no-wrap
17248 msgid ""
17249 " char *\n"
17250 " guestfs_vfs_label (guestfs_h *g,\n"
17251 "                    const char *device);\n"
17252 "\n"
17253 msgstr ""
17254
17255 #. type: textblock
17256 #: ../src/guestfs-actions.pod:7002 ../fish/guestfish-actions.pod:4731
17257 msgid "This returns the filesystem label of the filesystem on C<device>."
17258 msgstr ""
17259
17260 #. type: textblock
17261 #: ../src/guestfs-actions.pod:7005 ../fish/guestfish-actions.pod:4734
17262 msgid "If the filesystem is unlabeled, this returns the empty string."
17263 msgstr ""
17264
17265 #. type: textblock
17266 #: ../src/guestfs-actions.pod:7007
17267 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17268 msgstr ""
17269
17270 #. type: textblock
17271 #: ../src/guestfs-actions.pod:7012 ../src/guestfs-actions.pod:7049
17272 msgid "(Added in 1.3.18)"
17273 msgstr ""
17274
17275 #. type: =head2
17276 #: ../src/guestfs-actions.pod:7014
17277 msgid "guestfs_vfs_type"
17278 msgstr ""
17279
17280 #. type: verbatim
17281 #: ../src/guestfs-actions.pod:7016
17282 #, no-wrap
17283 msgid ""
17284 " char *\n"
17285 " guestfs_vfs_type (guestfs_h *g,\n"
17286 "                   const char *device);\n"
17287 "\n"
17288 msgstr ""
17289
17290 #. type: textblock
17291 #: ../src/guestfs-actions.pod:7020 ../fish/guestfish-actions.pod:4742
17292 msgid ""
17293 "This command gets the filesystem type corresponding to the filesystem on "
17294 "C<device>."
17295 msgstr ""
17296
17297 #. type: textblock
17298 #: ../src/guestfs-actions.pod:7023 ../fish/guestfish-actions.pod:4745
17299 msgid ""
17300 "For most filesystems, the result is the name of the Linux VFS module which "
17301 "would be used to mount this filesystem if you mounted it without specifying "
17302 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17303 msgstr ""
17304
17305 #. type: =head2
17306 #: ../src/guestfs-actions.pod:7033
17307 msgid "guestfs_vfs_uuid"
17308 msgstr ""
17309
17310 #. type: verbatim
17311 #: ../src/guestfs-actions.pod:7035
17312 #, no-wrap
17313 msgid ""
17314 " char *\n"
17315 " guestfs_vfs_uuid (guestfs_h *g,\n"
17316 "                   const char *device);\n"
17317 "\n"
17318 msgstr ""
17319
17320 #. type: textblock
17321 #: ../src/guestfs-actions.pod:7039 ../fish/guestfish-actions.pod:4754
17322 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17323 msgstr ""
17324
17325 #. type: textblock
17326 #: ../src/guestfs-actions.pod:7042 ../fish/guestfish-actions.pod:4757
17327 msgid "If the filesystem does not have a UUID, this returns the empty string."
17328 msgstr ""
17329
17330 #. type: textblock
17331 #: ../src/guestfs-actions.pod:7044
17332 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17333 msgstr ""
17334
17335 #. type: =head2
17336 #: ../src/guestfs-actions.pod:7051
17337 msgid "guestfs_vg_activate"
17338 msgstr ""
17339
17340 #. type: verbatim
17341 #: ../src/guestfs-actions.pod:7053
17342 #, no-wrap
17343 msgid ""
17344 " int\n"
17345 " guestfs_vg_activate (guestfs_h *g,\n"
17346 "                      int activate,\n"
17347 "                      char *const *volgroups);\n"
17348 "\n"
17349 msgstr ""
17350
17351 #. type: textblock
17352 #: ../src/guestfs-actions.pod:7058 ../fish/guestfish-actions.pod:4765
17353 msgid ""
17354 "This command activates or (if C<activate> is false) deactivates all logical "
17355 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17356 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17357 "deactivated, then those devices disappear."
17358 msgstr ""
17359
17360 #. type: textblock
17361 #: ../src/guestfs-actions.pod:7064 ../fish/guestfish-actions.pod:4771
17362 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17363 msgstr ""
17364
17365 #. type: textblock
17366 #: ../src/guestfs-actions.pod:7066 ../fish/guestfish-actions.pod:4773
17367 msgid ""
17368 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17369 "activated or deactivated."
17370 msgstr ""
17371
17372 #. type: =head2
17373 #: ../src/guestfs-actions.pod:7073
17374 msgid "guestfs_vg_activate_all"
17375 msgstr ""
17376
17377 #. type: verbatim
17378 #: ../src/guestfs-actions.pod:7075
17379 #, no-wrap
17380 msgid ""
17381 " int\n"
17382 " guestfs_vg_activate_all (guestfs_h *g,\n"
17383 "                          int activate);\n"
17384 "\n"
17385 msgstr ""
17386
17387 #. type: textblock
17388 #: ../src/guestfs-actions.pod:7079 ../fish/guestfish-actions.pod:4780
17389 msgid ""
17390 "This command activates or (if C<activate> is false) deactivates all logical "
17391 "volumes in all volume groups.  If activated, then they are made known to the "
17392 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17393 "those devices disappear."
17394 msgstr ""
17395
17396 #. type: textblock
17397 #: ../src/guestfs-actions.pod:7085 ../fish/guestfish-actions.pod:4786
17398 msgid "This command is the same as running C<vgchange -a y|n>"
17399 msgstr ""
17400
17401 #. type: =head2
17402 #: ../src/guestfs-actions.pod:7091
17403 msgid "guestfs_vgcreate"
17404 msgstr ""
17405
17406 #. type: verbatim
17407 #: ../src/guestfs-actions.pod:7093
17408 #, no-wrap
17409 msgid ""
17410 " int\n"
17411 " guestfs_vgcreate (guestfs_h *g,\n"
17412 "                   const char *volgroup,\n"
17413 "                   char *const *physvols);\n"
17414 "\n"
17415 msgstr ""
17416
17417 #. type: textblock
17418 #: ../src/guestfs-actions.pod:7098 ../fish/guestfish-actions.pod:4792
17419 msgid ""
17420 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17421 "of physical volumes C<physvols>."
17422 msgstr ""
17423
17424 #. type: =head2
17425 #: ../src/guestfs-actions.pod:7105
17426 msgid "guestfs_vglvuuids"
17427 msgstr ""
17428
17429 #. type: verbatim
17430 #: ../src/guestfs-actions.pod:7107
17431 #, no-wrap
17432 msgid ""
17433 " char **\n"
17434 " guestfs_vglvuuids (guestfs_h *g,\n"
17435 "                    const char *vgname);\n"
17436 "\n"
17437 msgstr ""
17438
17439 #. type: textblock
17440 #: ../src/guestfs-actions.pod:7111 ../fish/guestfish-actions.pod:4799
17441 msgid ""
17442 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17443 "volumes created in this volume group."
17444 msgstr ""
17445
17446 #. type: textblock
17447 #: ../src/guestfs-actions.pod:7114
17448 msgid ""
17449 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17450 "associate logical volumes and volume groups."
17451 msgstr ""
17452
17453 #. type: textblock
17454 #: ../src/guestfs-actions.pod:7117
17455 msgid "See also C<guestfs_vgpvuuids>."
17456 msgstr ""
17457
17458 #. type: =head2
17459 #: ../src/guestfs-actions.pod:7125
17460 msgid "guestfs_vgpvuuids"
17461 msgstr ""
17462
17463 #. type: verbatim
17464 #: ../src/guestfs-actions.pod:7127
17465 #, no-wrap
17466 msgid ""
17467 " char **\n"
17468 " guestfs_vgpvuuids (guestfs_h *g,\n"
17469 "                    const char *vgname);\n"
17470 "\n"
17471 msgstr ""
17472
17473 #. type: textblock
17474 #: ../src/guestfs-actions.pod:7131 ../fish/guestfish-actions.pod:4811
17475 msgid ""
17476 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
17477 "volumes that this volume group resides on."
17478 msgstr ""
17479
17480 #. type: textblock
17481 #: ../src/guestfs-actions.pod:7134
17482 msgid ""
17483 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
17484 "associate physical volumes and volume groups."
17485 msgstr ""
17486
17487 #. type: textblock
17488 #: ../src/guestfs-actions.pod:7137
17489 msgid "See also C<guestfs_vglvuuids>."
17490 msgstr ""
17491
17492 #. type: =head2
17493 #: ../src/guestfs-actions.pod:7145
17494 msgid "guestfs_vgremove"
17495 msgstr ""
17496
17497 #. type: verbatim
17498 #: ../src/guestfs-actions.pod:7147
17499 #, no-wrap
17500 msgid ""
17501 " int\n"
17502 " guestfs_vgremove (guestfs_h *g,\n"
17503 "                   const char *vgname);\n"
17504 "\n"
17505 msgstr ""
17506
17507 #. type: textblock
17508 #: ../src/guestfs-actions.pod:7151 ../fish/guestfish-actions.pod:4823
17509 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
17510 msgstr ""
17511
17512 #. type: textblock
17513 #: ../src/guestfs-actions.pod:7153 ../fish/guestfish-actions.pod:4825
17514 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
17515 msgstr ""
17516
17517 #. type: =head2
17518 #: ../src/guestfs-actions.pod:7160
17519 msgid "guestfs_vgrename"
17520 msgstr ""
17521
17522 #. type: verbatim
17523 #: ../src/guestfs-actions.pod:7162
17524 #, no-wrap
17525 msgid ""
17526 " int\n"
17527 " guestfs_vgrename (guestfs_h *g,\n"
17528 "                   const char *volgroup,\n"
17529 "                   const char *newvolgroup);\n"
17530 "\n"
17531 msgstr ""
17532
17533 #. type: textblock
17534 #: ../src/guestfs-actions.pod:7167 ../fish/guestfish-actions.pod:4832
17535 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
17536 msgstr ""
17537
17538 #. type: =head2
17539 #: ../src/guestfs-actions.pod:7173
17540 msgid "guestfs_vgs"
17541 msgstr ""
17542
17543 #. type: verbatim
17544 #: ../src/guestfs-actions.pod:7175
17545 #, no-wrap
17546 msgid ""
17547 " char **\n"
17548 " guestfs_vgs (guestfs_h *g);\n"
17549 "\n"
17550 msgstr ""
17551
17552 #. type: textblock
17553 #: ../src/guestfs-actions.pod:7178 ../fish/guestfish-actions.pod:4838
17554 msgid ""
17555 "List all the volumes groups detected.  This is the equivalent of the "
17556 "L<vgs(8)> command."
17557 msgstr ""
17558
17559 #. type: textblock
17560 #: ../src/guestfs-actions.pod:7181 ../fish/guestfish-actions.pod:4841
17561 msgid ""
17562 "This returns a list of just the volume group names that were detected "
17563 "(eg. C<VolGroup00>)."
17564 msgstr ""
17565
17566 #. type: textblock
17567 #: ../src/guestfs-actions.pod:7184
17568 msgid "See also C<guestfs_vgs_full>."
17569 msgstr ""
17570
17571 #. type: =head2
17572 #: ../src/guestfs-actions.pod:7192
17573 msgid "guestfs_vgs_full"
17574 msgstr ""
17575
17576 #. type: verbatim
17577 #: ../src/guestfs-actions.pod:7194
17578 #, no-wrap
17579 msgid ""
17580 " struct guestfs_lvm_vg_list *\n"
17581 " guestfs_vgs_full (guestfs_h *g);\n"
17582 "\n"
17583 msgstr ""
17584
17585 #. type: textblock
17586 #: ../src/guestfs-actions.pod:7197 ../fish/guestfish-actions.pod:4850
17587 msgid ""
17588 "List all the volumes groups detected.  This is the equivalent of the "
17589 "L<vgs(8)> command.  The \"full\" version includes all fields."
17590 msgstr ""
17591
17592 #. type: textblock
17593 #: ../src/guestfs-actions.pod:7200
17594 msgid ""
17595 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
17596 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
17597 "use>."
17598 msgstr ""
17599
17600 #. type: =head2
17601 #: ../src/guestfs-actions.pod:7206
17602 msgid "guestfs_vgscan"
17603 msgstr ""
17604
17605 #. type: verbatim
17606 #: ../src/guestfs-actions.pod:7208
17607 #, no-wrap
17608 msgid ""
17609 " int\n"
17610 " guestfs_vgscan (guestfs_h *g);\n"
17611 "\n"
17612 msgstr ""
17613
17614 #. type: textblock
17615 #: ../src/guestfs-actions.pod:7211 ../fish/guestfish-actions.pod:4857
17616 msgid ""
17617 "This rescans all block devices and rebuilds the list of LVM physical "
17618 "volumes, volume groups and logical volumes."
17619 msgstr ""
17620
17621 #. type: =head2
17622 #: ../src/guestfs-actions.pod:7218
17623 msgid "guestfs_vguuid"
17624 msgstr ""
17625
17626 #. type: verbatim
17627 #: ../src/guestfs-actions.pod:7220
17628 #, no-wrap
17629 msgid ""
17630 " char *\n"
17631 " guestfs_vguuid (guestfs_h *g,\n"
17632 "                 const char *vgname);\n"
17633 "\n"
17634 msgstr ""
17635
17636 #. type: textblock
17637 #: ../src/guestfs-actions.pod:7224 ../fish/guestfish-actions.pod:4864
17638 msgid "This command returns the UUID of the LVM VG named C<vgname>."
17639 msgstr ""
17640
17641 #. type: =head2
17642 #: ../src/guestfs-actions.pod:7231
17643 msgid "guestfs_wait_ready"
17644 msgstr ""
17645
17646 #. type: verbatim
17647 #: ../src/guestfs-actions.pod:7233
17648 #, no-wrap
17649 msgid ""
17650 " int\n"
17651 " guestfs_wait_ready (guestfs_h *g);\n"
17652 "\n"
17653 msgstr ""
17654
17655 #. type: textblock
17656 #: ../src/guestfs-actions.pod:7236
17657 msgid "This function is a no op."
17658 msgstr ""
17659
17660 #. type: textblock
17661 #: ../src/guestfs-actions.pod:7238
17662 msgid ""
17663 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
17664 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
17665 "is no longer necessary because C<guestfs_launch> now does the waiting."
17666 msgstr ""
17667
17668 #. type: textblock
17669 #: ../src/guestfs-actions.pod:7243
17670 msgid ""
17671 "If you see any calls to this function in code then you can just remove them, "
17672 "unless you want to retain compatibility with older versions of the API."
17673 msgstr ""
17674
17675 #. type: textblock
17676 #: ../src/guestfs-actions.pod:7249
17677 msgid "This function is deprecated.  In new code, use the C<launch> call instead."
17678 msgstr ""
17679
17680 #. type: =head2
17681 #: ../src/guestfs-actions.pod:7258
17682 msgid "guestfs_wc_c"
17683 msgstr ""
17684
17685 #. type: verbatim
17686 #: ../src/guestfs-actions.pod:7260
17687 #, no-wrap
17688 msgid ""
17689 " int\n"
17690 " guestfs_wc_c (guestfs_h *g,\n"
17691 "               const char *path);\n"
17692 "\n"
17693 msgstr ""
17694
17695 #. type: textblock
17696 #: ../src/guestfs-actions.pod:7264 ../fish/guestfish-actions.pod:4870
17697 msgid ""
17698 "This command counts the characters in a file, using the C<wc -c> external "
17699 "command."
17700 msgstr ""
17701
17702 #. type: =head2
17703 #: ../src/guestfs-actions.pod:7271
17704 msgid "guestfs_wc_l"
17705 msgstr ""
17706
17707 #. type: verbatim
17708 #: ../src/guestfs-actions.pod:7273
17709 #, no-wrap
17710 msgid ""
17711 " int\n"
17712 " guestfs_wc_l (guestfs_h *g,\n"
17713 "               const char *path);\n"
17714 "\n"
17715 msgstr ""
17716
17717 #. type: textblock
17718 #: ../src/guestfs-actions.pod:7277 ../fish/guestfish-actions.pod:4877
17719 msgid ""
17720 "This command counts the lines in a file, using the C<wc -l> external "
17721 "command."
17722 msgstr ""
17723
17724 #. type: =head2
17725 #: ../src/guestfs-actions.pod:7284
17726 msgid "guestfs_wc_w"
17727 msgstr ""
17728
17729 #. type: verbatim
17730 #: ../src/guestfs-actions.pod:7286
17731 #, no-wrap
17732 msgid ""
17733 " int\n"
17734 " guestfs_wc_w (guestfs_h *g,\n"
17735 "               const char *path);\n"
17736 "\n"
17737 msgstr ""
17738
17739 #. type: textblock
17740 #: ../src/guestfs-actions.pod:7290 ../fish/guestfish-actions.pod:4884
17741 msgid ""
17742 "This command counts the words in a file, using the C<wc -w> external "
17743 "command."
17744 msgstr ""
17745
17746 #. type: =head2
17747 #: ../src/guestfs-actions.pod:7297
17748 msgid "guestfs_write"
17749 msgstr ""
17750
17751 #. type: verbatim
17752 #: ../src/guestfs-actions.pod:7299
17753 #, no-wrap
17754 msgid ""
17755 " int\n"
17756 " guestfs_write (guestfs_h *g,\n"
17757 "                const char *path,\n"
17758 "                const char *content,\n"
17759 "                size_t content_size);\n"
17760 "\n"
17761 msgstr ""
17762
17763 #. type: textblock
17764 #: ../src/guestfs-actions.pod:7305 ../fish/guestfish-actions.pod:4891
17765 msgid ""
17766 "This call creates a file called C<path>.  The content of the file is the "
17767 "string C<content> (which can contain any 8 bit data)."
17768 msgstr ""
17769
17770 #. type: =head2
17771 #: ../src/guestfs-actions.pod:7315
17772 msgid "guestfs_write_file"
17773 msgstr ""
17774
17775 #. type: verbatim
17776 #: ../src/guestfs-actions.pod:7317
17777 #, no-wrap
17778 msgid ""
17779 " int\n"
17780 " guestfs_write_file (guestfs_h *g,\n"
17781 "                     const char *path,\n"
17782 "                     const char *content,\n"
17783 "                     int size);\n"
17784 "\n"
17785 msgstr ""
17786
17787 #. type: textblock
17788 #: ../src/guestfs-actions.pod:7323 ../fish/guestfish-actions.pod:4901
17789 msgid ""
17790 "This call creates a file called C<path>.  The contents of the file is the "
17791 "string C<content> (which can contain any 8 bit data), with length C<size>."
17792 msgstr ""
17793
17794 #. type: textblock
17795 #: ../src/guestfs-actions.pod:7327 ../fish/guestfish-actions.pod:4905
17796 msgid ""
17797 "As a special case, if C<size> is C<0> then the length is calculated using "
17798 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
17799 msgstr ""
17800
17801 #. type: textblock
17802 #: ../src/guestfs-actions.pod:7331 ../fish/guestfish-actions.pod:4909
17803 msgid ""
17804 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
17805 "I<not> work, even if the length is specified."
17806 msgstr ""
17807
17808 #. type: textblock
17809 #: ../src/guestfs-actions.pod:7339 ../fish/guestfish-actions.pod:4915
17810 msgid "This function is deprecated.  In new code, use the C<write> call instead."
17811 msgstr ""
17812
17813 #. type: =head2
17814 #: ../src/guestfs-actions.pod:7348
17815 msgid "guestfs_zegrep"
17816 msgstr ""
17817
17818 #. type: verbatim
17819 #: ../src/guestfs-actions.pod:7350
17820 #, no-wrap
17821 msgid ""
17822 " char **\n"
17823 " guestfs_zegrep (guestfs_h *g,\n"
17824 "                 const char *regex,\n"
17825 "                 const char *path);\n"
17826 "\n"
17827 msgstr ""
17828
17829 #. type: textblock
17830 #: ../src/guestfs-actions.pod:7355 ../fish/guestfish-actions.pod:4926
17831 msgid "This calls the external C<zegrep> program and returns the matching lines."
17832 msgstr ""
17833
17834 #. type: =head2
17835 #: ../src/guestfs-actions.pod:7367
17836 msgid "guestfs_zegrepi"
17837 msgstr ""
17838
17839 #. type: verbatim
17840 #: ../src/guestfs-actions.pod:7369
17841 #, no-wrap
17842 msgid ""
17843 " char **\n"
17844 " guestfs_zegrepi (guestfs_h *g,\n"
17845 "                  const char *regex,\n"
17846 "                  const char *path);\n"
17847 "\n"
17848 msgstr ""
17849
17850 #. type: textblock
17851 #: ../src/guestfs-actions.pod:7374 ../fish/guestfish-actions.pod:4936
17852 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
17853 msgstr ""
17854
17855 #. type: =head2
17856 #: ../src/guestfs-actions.pod:7386
17857 msgid "guestfs_zero"
17858 msgstr ""
17859
17860 #. type: verbatim
17861 #: ../src/guestfs-actions.pod:7388
17862 #, no-wrap
17863 msgid ""
17864 " int\n"
17865 " guestfs_zero (guestfs_h *g,\n"
17866 "               const char *device);\n"
17867 "\n"
17868 msgstr ""
17869
17870 #. type: textblock
17871 #: ../src/guestfs-actions.pod:7392 ../fish/guestfish-actions.pod:4946
17872 msgid "This command writes zeroes over the first few blocks of C<device>."
17873 msgstr ""
17874
17875 #. type: textblock
17876 #: ../src/guestfs-actions.pod:7394 ../fish/guestfish-actions.pod:4948
17877 msgid ""
17878 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
17879 "securely wipe the device).  It should be sufficient to remove any partition "
17880 "tables, filesystem superblocks and so on."
17881 msgstr ""
17882
17883 #. type: textblock
17884 #: ../src/guestfs-actions.pod:7398
17885 msgid ""
17886 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
17887 "C<guestfs_is_zero_device>"
17888 msgstr ""
17889
17890 #. type: =head2
17891 #: ../src/guestfs-actions.pod:7410
17892 msgid "guestfs_zero_device"
17893 msgstr ""
17894
17895 #. type: verbatim
17896 #: ../src/guestfs-actions.pod:7412
17897 #, no-wrap
17898 msgid ""
17899 " int\n"
17900 " guestfs_zero_device (guestfs_h *g,\n"
17901 "                      const char *device);\n"
17902 "\n"
17903 msgstr ""
17904
17905 #. type: textblock
17906 #: ../src/guestfs-actions.pod:7416
17907 msgid ""
17908 "This command writes zeroes over the entire C<device>.  Compare with "
17909 "C<guestfs_zero> which just zeroes the first few blocks of a device."
17910 msgstr ""
17911
17912 #. type: textblock
17913 #: ../src/guestfs-actions.pod:7430
17914 msgid "(Added in 1.3.1)"
17915 msgstr ""
17916
17917 #. type: =head2
17918 #: ../src/guestfs-actions.pod:7432
17919 msgid "guestfs_zerofree"
17920 msgstr ""
17921
17922 #. type: verbatim
17923 #: ../src/guestfs-actions.pod:7434
17924 #, no-wrap
17925 msgid ""
17926 " int\n"
17927 " guestfs_zerofree (guestfs_h *g,\n"
17928 "                   const char *device);\n"
17929 "\n"
17930 msgstr ""
17931
17932 #. type: textblock
17933 #: ../src/guestfs-actions.pod:7438 ../fish/guestfish-actions.pod:4970
17934 msgid ""
17935 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
17936 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
17937 "possible to compress the filesystem more effectively."
17938 msgstr ""
17939
17940 #. type: textblock
17941 #: ../src/guestfs-actions.pod:7443 ../fish/guestfish-actions.pod:4975
17942 msgid "You should B<not> run this program if the filesystem is mounted."
17943 msgstr ""
17944
17945 #. type: textblock
17946 #: ../src/guestfs-actions.pod:7446 ../fish/guestfish-actions.pod:4978
17947 msgid ""
17948 "It is possible that using this program can damage the filesystem or data on "
17949 "the filesystem."
17950 msgstr ""
17951
17952 #. type: =head2
17953 #: ../src/guestfs-actions.pod:7453
17954 msgid "guestfs_zfgrep"
17955 msgstr ""
17956
17957 #. type: verbatim
17958 #: ../src/guestfs-actions.pod:7455
17959 #, no-wrap
17960 msgid ""
17961 " char **\n"
17962 " guestfs_zfgrep (guestfs_h *g,\n"
17963 "                 const char *pattern,\n"
17964 "                 const char *path);\n"
17965 "\n"
17966 msgstr ""
17967
17968 #. type: textblock
17969 #: ../src/guestfs-actions.pod:7460 ../fish/guestfish-actions.pod:4985
17970 msgid "This calls the external C<zfgrep> program and returns the matching lines."
17971 msgstr ""
17972
17973 #. type: =head2
17974 #: ../src/guestfs-actions.pod:7472
17975 msgid "guestfs_zfgrepi"
17976 msgstr ""
17977
17978 #. type: verbatim
17979 #: ../src/guestfs-actions.pod:7474
17980 #, no-wrap
17981 msgid ""
17982 " char **\n"
17983 " guestfs_zfgrepi (guestfs_h *g,\n"
17984 "                  const char *pattern,\n"
17985 "                  const char *path);\n"
17986 "\n"
17987 msgstr ""
17988
17989 #. type: textblock
17990 #: ../src/guestfs-actions.pod:7479 ../fish/guestfish-actions.pod:4995
17991 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
17992 msgstr ""
17993
17994 #. type: =head2
17995 #: ../src/guestfs-actions.pod:7491
17996 msgid "guestfs_zfile"
17997 msgstr ""
17998
17999 #. type: verbatim
18000 #: ../src/guestfs-actions.pod:7493
18001 #, no-wrap
18002 msgid ""
18003 " char *\n"
18004 " guestfs_zfile (guestfs_h *g,\n"
18005 "                const char *meth,\n"
18006 "                const char *path);\n"
18007 "\n"
18008 msgstr ""
18009
18010 #. type: textblock
18011 #: ../src/guestfs-actions.pod:7498 ../fish/guestfish-actions.pod:5005
18012 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
18013 msgstr ""
18014
18015 #. type: textblock
18016 #: ../src/guestfs-actions.pod:7501 ../fish/guestfish-actions.pod:5008
18017 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18018 msgstr ""
18019
18020 #. type: textblock
18021 #: ../src/guestfs-actions.pod:7503
18022 msgid ""
18023 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18024 "files."
18025 msgstr ""
18026
18027 #. type: textblock
18028 #: ../src/guestfs-actions.pod:7509 ../fish/guestfish-actions.pod:5013
18029 msgid "This function is deprecated.  In new code, use the C<file> call instead."
18030 msgstr ""
18031
18032 #. type: =head2
18033 #: ../src/guestfs-actions.pod:7518
18034 msgid "guestfs_zgrep"
18035 msgstr ""
18036
18037 #. type: verbatim
18038 #: ../src/guestfs-actions.pod:7520
18039 #, no-wrap
18040 msgid ""
18041 " char **\n"
18042 " guestfs_zgrep (guestfs_h *g,\n"
18043 "                const char *regex,\n"
18044 "                const char *path);\n"
18045 "\n"
18046 msgstr ""
18047
18048 #. type: textblock
18049 #: ../src/guestfs-actions.pod:7525 ../fish/guestfish-actions.pod:5024
18050 msgid "This calls the external C<zgrep> program and returns the matching lines."
18051 msgstr ""
18052
18053 #. type: =head2
18054 #: ../src/guestfs-actions.pod:7537
18055 msgid "guestfs_zgrepi"
18056 msgstr ""
18057
18058 #. type: verbatim
18059 #: ../src/guestfs-actions.pod:7539
18060 #, no-wrap
18061 msgid ""
18062 " char **\n"
18063 " guestfs_zgrepi (guestfs_h *g,\n"
18064 "                 const char *regex,\n"
18065 "                 const char *path);\n"
18066 "\n"
18067 msgstr ""
18068
18069 #. type: textblock
18070 #: ../src/guestfs-actions.pod:7544 ../fish/guestfish-actions.pod:5034
18071 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
18072 msgstr ""
18073
18074 #. type: =item
18075 #: ../src/guestfs-availability.pod:3
18076 msgid "B<augeas>"
18077 msgstr ""
18078
18079 #. type: textblock
18080 #: ../src/guestfs-availability.pod:5
18081 msgid ""
18082 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
18083 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
18084 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
18085 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
18086 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
18087 msgstr ""
18088
18089 #. type: =item
18090 #: ../src/guestfs-availability.pod:21
18091 msgid "B<inotify>"
18092 msgstr ""
18093
18094 #. type: textblock
18095 #: ../src/guestfs-availability.pod:23
18096 msgid ""
18097 "The following functions: L</guestfs_inotify_add_watch> "
18098 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
18099 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18100 msgstr ""
18101
18102 #. type: =item
18103 #: ../src/guestfs-availability.pod:31
18104 msgid "B<linuxfsuuid>"
18105 msgstr ""
18106
18107 #. type: textblock
18108 #: ../src/guestfs-availability.pod:33
18109 msgid ""
18110 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
18111 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18112 msgstr ""
18113
18114 #. type: =item
18115 #: ../src/guestfs-availability.pod:40
18116 msgid "B<linuxmodules>"
18117 msgstr ""
18118
18119 #. type: textblock
18120 #: ../src/guestfs-availability.pod:42
18121 msgid "The following functions: L</guestfs_modprobe>"
18122 msgstr ""
18123
18124 #. type: =item
18125 #: ../src/guestfs-availability.pod:45
18126 msgid "B<linuxxattrs>"
18127 msgstr ""
18128
18129 #. type: textblock
18130 #: ../src/guestfs-availability.pod:47
18131 msgid ""
18132 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
18133 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
18134 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
18135 "L</guestfs_setxattr>"
18136 msgstr ""
18137
18138 #. type: =item
18139 #: ../src/guestfs-availability.pod:58
18140 msgid "B<luks>"
18141 msgstr ""
18142
18143 #. type: textblock
18144 #: ../src/guestfs-availability.pod:60
18145 msgid ""
18146 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
18147 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
18148 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18149 msgstr ""
18150
18151 #. type: =item
18152 #: ../src/guestfs-availability.pod:69
18153 msgid "B<lvm2>"
18154 msgstr ""
18155
18156 #. type: textblock
18157 #: ../src/guestfs-availability.pod:71
18158 msgid ""
18159 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
18160 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
18161 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
18162 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
18163 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
18164 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
18165 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
18166 "L</guestfs_vgs_full>"
18167 msgstr ""
18168
18169 #. type: =item
18170 #: ../src/guestfs-availability.pod:94
18171 msgid "B<mknod>"
18172 msgstr ""
18173
18174 #. type: textblock
18175 #: ../src/guestfs-availability.pod:96
18176 msgid ""
18177 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
18178 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
18179 msgstr ""
18180
18181 #. type: =item
18182 #: ../src/guestfs-availability.pod:102
18183 msgid "B<ntfs3g>"
18184 msgstr ""
18185
18186 #. type: textblock
18187 #: ../src/guestfs-availability.pod:104
18188 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18189 msgstr ""
18190
18191 #. type: =item
18192 #: ../src/guestfs-availability.pod:107
18193 msgid "B<ntfsprogs>"
18194 msgstr ""
18195
18196 #. type: textblock
18197 #: ../src/guestfs-availability.pod:109
18198 msgid "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18199 msgstr ""
18200
18201 #. type: =item
18202 #: ../src/guestfs-availability.pod:113
18203 msgid "B<realpath>"
18204 msgstr ""
18205
18206 #. type: textblock
18207 #: ../src/guestfs-availability.pod:115
18208 msgid "The following functions: L</guestfs_realpath>"
18209 msgstr ""
18210
18211 #. type: =item
18212 #: ../src/guestfs-availability.pod:118
18213 msgid "B<scrub>"
18214 msgstr ""
18215
18216 #. type: textblock
18217 #: ../src/guestfs-availability.pod:120
18218 msgid ""
18219 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
18220 "L</guestfs_scrub_freespace>"
18221 msgstr ""
18222
18223 #. type: =item
18224 #: ../src/guestfs-availability.pod:125
18225 msgid "B<selinux>"
18226 msgstr ""
18227
18228 #. type: textblock
18229 #: ../src/guestfs-availability.pod:127
18230 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18231 msgstr ""
18232
18233 #. type: =item
18234 #: ../src/guestfs-availability.pod:131
18235 msgid "B<xz>"
18236 msgstr ""
18237
18238 #. type: textblock
18239 #: ../src/guestfs-availability.pod:133
18240 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18241 msgstr ""
18242
18243 #. type: =item
18244 #: ../src/guestfs-availability.pod:137
18245 msgid "B<zerofree>"
18246 msgstr ""
18247
18248 #. type: textblock
18249 #: ../src/guestfs-availability.pod:139
18250 msgid "The following functions: L</guestfs_zerofree>"
18251 msgstr ""
18252
18253 #. type: =head2
18254 #: ../src/guestfs-structs.pod:1
18255 msgid "guestfs_int_bool"
18256 msgstr ""
18257
18258 #. type: verbatim
18259 #: ../src/guestfs-structs.pod:3
18260 #, no-wrap
18261 msgid ""
18262 " struct guestfs_int_bool {\n"
18263 "   int32_t i;\n"
18264 "   int32_t b;\n"
18265 " };\n"
18266 " \n"
18267 msgstr ""
18268
18269 #. type: verbatim
18270 #: ../src/guestfs-structs.pod:8
18271 #, no-wrap
18272 msgid ""
18273 " struct guestfs_int_bool_list {\n"
18274 "   uint32_t len; /* Number of elements in list. */\n"
18275 "   struct guestfs_int_bool *val; /* Elements. */\n"
18276 " };\n"
18277 " \n"
18278 msgstr ""
18279
18280 #. type: verbatim
18281 #: ../src/guestfs-structs.pod:13
18282 #, no-wrap
18283 msgid ""
18284 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18285 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18286 "\n"
18287 msgstr ""
18288
18289 #. type: =head2
18290 #: ../src/guestfs-structs.pod:16
18291 msgid "guestfs_lvm_pv"
18292 msgstr ""
18293
18294 #. type: verbatim
18295 #: ../src/guestfs-structs.pod:18
18296 #, no-wrap
18297 msgid ""
18298 " struct guestfs_lvm_pv {\n"
18299 "   char *pv_name;\n"
18300 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18301 "*/\n"
18302 "   char pv_uuid[32];\n"
18303 "   char *pv_fmt;\n"
18304 "   uint64_t pv_size;\n"
18305 "   uint64_t dev_size;\n"
18306 "   uint64_t pv_free;\n"
18307 "   uint64_t pv_used;\n"
18308 "   char *pv_attr;\n"
18309 "   int64_t pv_pe_count;\n"
18310 "   int64_t pv_pe_alloc_count;\n"
18311 "   char *pv_tags;\n"
18312 "   uint64_t pe_start;\n"
18313 "   int64_t pv_mda_count;\n"
18314 "   uint64_t pv_mda_free;\n"
18315 " };\n"
18316 " \n"
18317 msgstr ""
18318
18319 #. type: verbatim
18320 #: ../src/guestfs-structs.pod:36
18321 #, no-wrap
18322 msgid ""
18323 " struct guestfs_lvm_pv_list {\n"
18324 "   uint32_t len; /* Number of elements in list. */\n"
18325 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18326 " };\n"
18327 " \n"
18328 msgstr ""
18329
18330 #. type: verbatim
18331 #: ../src/guestfs-structs.pod:41
18332 #, no-wrap
18333 msgid ""
18334 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18335 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18336 "\n"
18337 msgstr ""
18338
18339 #. type: =head2
18340 #: ../src/guestfs-structs.pod:44
18341 msgid "guestfs_lvm_vg"
18342 msgstr ""
18343
18344 #. type: verbatim
18345 #: ../src/guestfs-structs.pod:46
18346 #, no-wrap
18347 msgid ""
18348 " struct guestfs_lvm_vg {\n"
18349 "   char *vg_name;\n"
18350 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18351 "*/\n"
18352 "   char vg_uuid[32];\n"
18353 "   char *vg_fmt;\n"
18354 "   char *vg_attr;\n"
18355 "   uint64_t vg_size;\n"
18356 "   uint64_t vg_free;\n"
18357 "   char *vg_sysid;\n"
18358 "   uint64_t vg_extent_size;\n"
18359 "   int64_t vg_extent_count;\n"
18360 "   int64_t vg_free_count;\n"
18361 "   int64_t max_lv;\n"
18362 "   int64_t max_pv;\n"
18363 "   int64_t pv_count;\n"
18364 "   int64_t lv_count;\n"
18365 "   int64_t snap_count;\n"
18366 "   int64_t vg_seqno;\n"
18367 "   char *vg_tags;\n"
18368 "   int64_t vg_mda_count;\n"
18369 "   uint64_t vg_mda_free;\n"
18370 " };\n"
18371 " \n"
18372 msgstr ""
18373
18374 #. type: verbatim
18375 #: ../src/guestfs-structs.pod:69
18376 #, no-wrap
18377 msgid ""
18378 " struct guestfs_lvm_vg_list {\n"
18379 "   uint32_t len; /* Number of elements in list. */\n"
18380 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18381 " };\n"
18382 " \n"
18383 msgstr ""
18384
18385 #. type: verbatim
18386 #: ../src/guestfs-structs.pod:74
18387 #, no-wrap
18388 msgid ""
18389 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18390 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18391 "\n"
18392 msgstr ""
18393
18394 #. type: =head2
18395 #: ../src/guestfs-structs.pod:77
18396 msgid "guestfs_lvm_lv"
18397 msgstr ""
18398
18399 #. type: verbatim
18400 #: ../src/guestfs-structs.pod:79
18401 #, no-wrap
18402 msgid ""
18403 " struct guestfs_lvm_lv {\n"
18404 "   char *lv_name;\n"
18405 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18406 "*/\n"
18407 "   char lv_uuid[32];\n"
18408 "   char *lv_attr;\n"
18409 "   int64_t lv_major;\n"
18410 "   int64_t lv_minor;\n"
18411 "   int64_t lv_kernel_major;\n"
18412 "   int64_t lv_kernel_minor;\n"
18413 "   uint64_t lv_size;\n"
18414 "   int64_t seg_count;\n"
18415 "   char *origin;\n"
18416 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18417 "   float snap_percent;\n"
18418 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18419 "   float copy_percent;\n"
18420 "   char *move_pv;\n"
18421 "   char *lv_tags;\n"
18422 "   char *mirror_log;\n"
18423 "   char *modules;\n"
18424 " };\n"
18425 " \n"
18426 msgstr ""
18427
18428 #. type: verbatim
18429 #: ../src/guestfs-structs.pod:101
18430 #, no-wrap
18431 msgid ""
18432 " struct guestfs_lvm_lv_list {\n"
18433 "   uint32_t len; /* Number of elements in list. */\n"
18434 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18435 " };\n"
18436 " \n"
18437 msgstr ""
18438
18439 #. type: verbatim
18440 #: ../src/guestfs-structs.pod:106
18441 #, no-wrap
18442 msgid ""
18443 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18444 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18445 "\n"
18446 msgstr ""
18447
18448 #. type: verbatim
18449 #: ../src/guestfs-structs.pod:111
18450 #, no-wrap
18451 msgid ""
18452 " struct guestfs_stat {\n"
18453 "   int64_t dev;\n"
18454 "   int64_t ino;\n"
18455 "   int64_t mode;\n"
18456 "   int64_t nlink;\n"
18457 "   int64_t uid;\n"
18458 "   int64_t gid;\n"
18459 "   int64_t rdev;\n"
18460 "   int64_t size;\n"
18461 "   int64_t blksize;\n"
18462 "   int64_t blocks;\n"
18463 "   int64_t atime;\n"
18464 "   int64_t mtime;\n"
18465 "   int64_t ctime;\n"
18466 " };\n"
18467 " \n"
18468 msgstr ""
18469
18470 #. type: verbatim
18471 #: ../src/guestfs-structs.pod:127
18472 #, no-wrap
18473 msgid ""
18474 " struct guestfs_stat_list {\n"
18475 "   uint32_t len; /* Number of elements in list. */\n"
18476 "   struct guestfs_stat *val; /* Elements. */\n"
18477 " };\n"
18478 " \n"
18479 msgstr ""
18480
18481 #. type: verbatim
18482 #: ../src/guestfs-structs.pod:132
18483 #, no-wrap
18484 msgid ""
18485 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
18486 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
18487 "\n"
18488 msgstr ""
18489
18490 #. type: verbatim
18491 #: ../src/guestfs-structs.pod:137
18492 #, no-wrap
18493 msgid ""
18494 " struct guestfs_statvfs {\n"
18495 "   int64_t bsize;\n"
18496 "   int64_t frsize;\n"
18497 "   int64_t blocks;\n"
18498 "   int64_t bfree;\n"
18499 "   int64_t bavail;\n"
18500 "   int64_t files;\n"
18501 "   int64_t ffree;\n"
18502 "   int64_t favail;\n"
18503 "   int64_t fsid;\n"
18504 "   int64_t flag;\n"
18505 "   int64_t namemax;\n"
18506 " };\n"
18507 " \n"
18508 msgstr ""
18509
18510 #. type: verbatim
18511 #: ../src/guestfs-structs.pod:151
18512 #, no-wrap
18513 msgid ""
18514 " struct guestfs_statvfs_list {\n"
18515 "   uint32_t len; /* Number of elements in list. */\n"
18516 "   struct guestfs_statvfs *val; /* Elements. */\n"
18517 " };\n"
18518 " \n"
18519 msgstr ""
18520
18521 #. type: verbatim
18522 #: ../src/guestfs-structs.pod:156
18523 #, no-wrap
18524 msgid ""
18525 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
18526 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
18527 "\n"
18528 msgstr ""
18529
18530 #. type: =head2
18531 #: ../src/guestfs-structs.pod:159
18532 msgid "guestfs_dirent"
18533 msgstr ""
18534
18535 #. type: verbatim
18536 #: ../src/guestfs-structs.pod:161
18537 #, no-wrap
18538 msgid ""
18539 " struct guestfs_dirent {\n"
18540 "   int64_t ino;\n"
18541 "   char ftyp;\n"
18542 "   char *name;\n"
18543 " };\n"
18544 " \n"
18545 msgstr ""
18546
18547 #. type: verbatim
18548 #: ../src/guestfs-structs.pod:167
18549 #, no-wrap
18550 msgid ""
18551 " struct guestfs_dirent_list {\n"
18552 "   uint32_t len; /* Number of elements in list. */\n"
18553 "   struct guestfs_dirent *val; /* Elements. */\n"
18554 " };\n"
18555 " \n"
18556 msgstr ""
18557
18558 #. type: verbatim
18559 #: ../src/guestfs-structs.pod:172
18560 #, no-wrap
18561 msgid ""
18562 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
18563 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
18564 "\n"
18565 msgstr ""
18566
18567 #. type: verbatim
18568 #: ../src/guestfs-structs.pod:177
18569 #, no-wrap
18570 msgid ""
18571 " struct guestfs_version {\n"
18572 "   int64_t major;\n"
18573 "   int64_t minor;\n"
18574 "   int64_t release;\n"
18575 "   char *extra;\n"
18576 " };\n"
18577 " \n"
18578 msgstr ""
18579
18580 #. type: verbatim
18581 #: ../src/guestfs-structs.pod:184
18582 #, no-wrap
18583 msgid ""
18584 " struct guestfs_version_list {\n"
18585 "   uint32_t len; /* Number of elements in list. */\n"
18586 "   struct guestfs_version *val; /* Elements. */\n"
18587 " };\n"
18588 " \n"
18589 msgstr ""
18590
18591 #. type: verbatim
18592 #: ../src/guestfs-structs.pod:189
18593 #, no-wrap
18594 msgid ""
18595 " void guestfs_free_version (struct guestfs_free_version *);\n"
18596 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
18597 "\n"
18598 msgstr ""
18599
18600 #. type: =head2
18601 #: ../src/guestfs-structs.pod:192
18602 msgid "guestfs_xattr"
18603 msgstr ""
18604
18605 #. type: verbatim
18606 #: ../src/guestfs-structs.pod:194
18607 #, no-wrap
18608 msgid ""
18609 " struct guestfs_xattr {\n"
18610 "   char *attrname;\n"
18611 "   /* The next two fields describe a byte array. */\n"
18612 "   uint32_t attrval_len;\n"
18613 "   char *attrval;\n"
18614 " };\n"
18615 " \n"
18616 msgstr ""
18617
18618 #. type: verbatim
18619 #: ../src/guestfs-structs.pod:201
18620 #, no-wrap
18621 msgid ""
18622 " struct guestfs_xattr_list {\n"
18623 "   uint32_t len; /* Number of elements in list. */\n"
18624 "   struct guestfs_xattr *val; /* Elements. */\n"
18625 " };\n"
18626 " \n"
18627 msgstr ""
18628
18629 #. type: verbatim
18630 #: ../src/guestfs-structs.pod:206
18631 #, no-wrap
18632 msgid ""
18633 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
18634 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
18635 "\n"
18636 msgstr ""
18637
18638 #. type: =head2
18639 #: ../src/guestfs-structs.pod:209
18640 msgid "guestfs_inotify_event"
18641 msgstr ""
18642
18643 #. type: verbatim
18644 #: ../src/guestfs-structs.pod:211
18645 #, no-wrap
18646 msgid ""
18647 " struct guestfs_inotify_event {\n"
18648 "   int64_t in_wd;\n"
18649 "   uint32_t in_mask;\n"
18650 "   uint32_t in_cookie;\n"
18651 "   char *in_name;\n"
18652 " };\n"
18653 " \n"
18654 msgstr ""
18655
18656 #. type: verbatim
18657 #: ../src/guestfs-structs.pod:218
18658 #, no-wrap
18659 msgid ""
18660 " struct guestfs_inotify_event_list {\n"
18661 "   uint32_t len; /* Number of elements in list. */\n"
18662 "   struct guestfs_inotify_event *val; /* Elements. */\n"
18663 " };\n"
18664 " \n"
18665 msgstr ""
18666
18667 #. type: verbatim
18668 #: ../src/guestfs-structs.pod:223
18669 #, no-wrap
18670 msgid ""
18671 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
18672 " void guestfs_free_inotify_event_list (struct "
18673 "guestfs_free_inotify_event_list *);\n"
18674 "\n"
18675 msgstr ""
18676
18677 #. type: =head2
18678 #: ../src/guestfs-structs.pod:226
18679 msgid "guestfs_partition"
18680 msgstr ""
18681
18682 #. type: verbatim
18683 #: ../src/guestfs-structs.pod:228
18684 #, no-wrap
18685 msgid ""
18686 " struct guestfs_partition {\n"
18687 "   int32_t part_num;\n"
18688 "   uint64_t part_start;\n"
18689 "   uint64_t part_end;\n"
18690 "   uint64_t part_size;\n"
18691 " };\n"
18692 " \n"
18693 msgstr ""
18694
18695 #. type: verbatim
18696 #: ../src/guestfs-structs.pod:235
18697 #, no-wrap
18698 msgid ""
18699 " struct guestfs_partition_list {\n"
18700 "   uint32_t len; /* Number of elements in list. */\n"
18701 "   struct guestfs_partition *val; /* Elements. */\n"
18702 " };\n"
18703 " \n"
18704 msgstr ""
18705
18706 #. type: verbatim
18707 #: ../src/guestfs-structs.pod:240
18708 #, no-wrap
18709 msgid ""
18710 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
18711 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
18712 "\n"
18713 msgstr ""
18714
18715 #. type: =head2
18716 #: ../src/guestfs-structs.pod:243
18717 msgid "guestfs_application"
18718 msgstr ""
18719
18720 #. type: verbatim
18721 #: ../src/guestfs-structs.pod:245
18722 #, no-wrap
18723 msgid ""
18724 " struct guestfs_application {\n"
18725 "   char *app_name;\n"
18726 "   char *app_display_name;\n"
18727 "   int32_t app_epoch;\n"
18728 "   char *app_version;\n"
18729 "   char *app_release;\n"
18730 "   char *app_install_path;\n"
18731 "   char *app_trans_path;\n"
18732 "   char *app_publisher;\n"
18733 "   char *app_url;\n"
18734 "   char *app_source_package;\n"
18735 "   char *app_summary;\n"
18736 "   char *app_description;\n"
18737 " };\n"
18738 " \n"
18739 msgstr ""
18740
18741 #. type: verbatim
18742 #: ../src/guestfs-structs.pod:260
18743 #, no-wrap
18744 msgid ""
18745 " struct guestfs_application_list {\n"
18746 "   uint32_t len; /* Number of elements in list. */\n"
18747 "   struct guestfs_application *val; /* Elements. */\n"
18748 " };\n"
18749 " \n"
18750 msgstr ""
18751
18752 #. type: verbatim
18753 #: ../src/guestfs-structs.pod:265
18754 #, no-wrap
18755 msgid ""
18756 " void guestfs_free_application (struct guestfs_free_application *);\n"
18757 " void guestfs_free_application_list (struct guestfs_free_application_list "
18758 "*);\n"
18759 "\n"
18760 msgstr ""
18761
18762 #. type: textblock
18763 #: ../fish/guestfish.pod:5
18764 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
18765 msgstr ""
18766
18767 #. type: verbatim
18768 #: ../fish/guestfish.pod:9
18769 #, no-wrap
18770 msgid ""
18771 " guestfish [--options] [commands]\n"
18772 "\n"
18773 msgstr ""
18774
18775 #. type: verbatim
18776 #: ../fish/guestfish.pod:11
18777 #, no-wrap
18778 msgid ""
18779 " guestfish\n"
18780 "\n"
18781 msgstr ""
18782
18783 #. type: verbatim
18784 #: ../fish/guestfish.pod:13
18785 #, no-wrap
18786 msgid ""
18787 " guestfish [--ro|--rw] -a disk.img\n"
18788 "\n"
18789 msgstr ""
18790
18791 #. type: verbatim
18792 #: ../fish/guestfish.pod:15
18793 #, no-wrap
18794 msgid ""
18795 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
18796 "\n"
18797 msgstr ""
18798
18799 #. type: verbatim
18800 #: ../fish/guestfish.pod:17
18801 #, no-wrap
18802 msgid ""
18803 " guestfish -d libvirt-domain\n"
18804 "\n"
18805 msgstr ""
18806
18807 #. type: verbatim
18808 #: ../fish/guestfish.pod:19
18809 #, no-wrap
18810 msgid ""
18811 " guestfish [--ro|--rw] -a disk.img -i\n"
18812 "\n"
18813 msgstr ""
18814
18815 #. type: verbatim
18816 #: ../fish/guestfish.pod:21
18817 #, no-wrap
18818 msgid ""
18819 " guestfish -d libvirt-domain -i\n"
18820 "\n"
18821 msgstr ""
18822
18823 #. type: =head1
18824 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
18825 msgid "WARNING"
18826 msgstr ""
18827
18828 #. type: textblock
18829 #: ../fish/guestfish.pod:25
18830 msgid ""
18831 "Using guestfish in read/write mode on live virtual machines can be "
18832 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
18833 "option to use guestfish safely if the disk image or virtual machine might be "
18834 "live."
18835 msgstr ""
18836
18837 #. type: textblock
18838 #: ../fish/guestfish.pod:32
18839 msgid ""
18840 "Guestfish is a shell and command-line tool for examining and modifying "
18841 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
18842 "functionality of the guestfs API, see L<guestfs(3)>."
18843 msgstr ""
18844
18845 #. type: textblock
18846 #: ../fish/guestfish.pod:36
18847 msgid ""
18848 "Guestfish gives you structured access to the libguestfs API, from shell "
18849 "scripts or the command line or interactively.  If you want to rescue a "
18850 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
18851 "command."
18852 msgstr ""
18853
18854 #. type: =head1
18855 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949 ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
18856 msgid "EXAMPLES"
18857 msgstr ""
18858
18859 #. type: =head2
18860 #: ../fish/guestfish.pod:43
18861 msgid "As an interactive shell"
18862 msgstr ""
18863
18864 #. type: verbatim
18865 #: ../fish/guestfish.pod:45
18866 #, no-wrap
18867 msgid ""
18868 " $ guestfish\n"
18869 " \n"
18870 msgstr ""
18871
18872 #. type: verbatim
18873 #: ../fish/guestfish.pod:47
18874 #, no-wrap
18875 msgid ""
18876 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
18877 " editing virtual machine filesystems.\n"
18878 " \n"
18879 msgstr ""
18880
18881 #. type: verbatim
18882 #: ../fish/guestfish.pod:50
18883 #, no-wrap
18884 msgid ""
18885 " Type: 'help' for a list of commands\n"
18886 "       'man' to read the manual\n"
18887 "       'quit' to quit the shell\n"
18888 " \n"
18889 msgstr ""
18890
18891 #. type: verbatim
18892 #: ../fish/guestfish.pod:54
18893 #, no-wrap
18894 msgid ""
18895 " ><fs> add-ro disk.img\n"
18896 " ><fs> run\n"
18897 " ><fs> list-filesystems\n"
18898 " /dev/sda1: ext4\n"
18899 " /dev/vg_guest/lv_root: ext4\n"
18900 " /dev/vg_guest/lv_swap: swap\n"
18901 " ><fs> mount /dev/vg_guest/lv_root /\n"
18902 " ><fs> cat /etc/fstab\n"
18903 " # /etc/fstab\n"
18904 " # Created by anaconda\n"
18905 " [...]\n"
18906 " ><fs> exit\n"
18907 "\n"
18908 msgstr ""
18909
18910 #. type: =head2
18911 #: ../fish/guestfish.pod:67
18912 msgid "From shell scripts"
18913 msgstr ""
18914
18915 #. type: textblock
18916 #: ../fish/guestfish.pod:69
18917 msgid "Create a new C</etc/motd> file in a guest or disk image:"
18918 msgstr ""
18919
18920 #. type: verbatim
18921 #: ../fish/guestfish.pod:71
18922 #, no-wrap
18923 msgid ""
18924 " guestfish <<_EOF_\n"
18925 " add disk.img\n"
18926 " run\n"
18927 " mount /dev/vg_guest/lv_root /\n"
18928 " write /etc/motd \"Welcome, new users\"\n"
18929 " _EOF_\n"
18930 "\n"
18931 msgstr ""
18932
18933 #. type: textblock
18934 #: ../fish/guestfish.pod:78
18935 msgid "List the LVM logical volumes in a disk image:"
18936 msgstr ""
18937
18938 #. type: verbatim
18939 #: ../fish/guestfish.pod:80
18940 #, no-wrap
18941 msgid ""
18942 " guestfish -a disk.img --ro <<_EOF_\n"
18943 " run\n"
18944 " lvs\n"
18945 " _EOF_\n"
18946 "\n"
18947 msgstr ""
18948
18949 #. type: textblock
18950 #: ../fish/guestfish.pod:85
18951 msgid "List all the filesystems in a disk image:"
18952 msgstr ""
18953
18954 #. type: verbatim
18955 #: ../fish/guestfish.pod:87
18956 #, no-wrap
18957 msgid ""
18958 " guestfish -a disk.img --ro <<_EOF_\n"
18959 " run\n"
18960 " list-filesystems\n"
18961 " _EOF_\n"
18962 "\n"
18963 msgstr ""
18964
18965 #. type: =head2
18966 #: ../fish/guestfish.pod:92
18967 msgid "On one command line"
18968 msgstr ""
18969
18970 #. type: textblock
18971 #: ../fish/guestfish.pod:94
18972 msgid "Update C</etc/resolv.conf> in a guest:"
18973 msgstr ""
18974
18975 #. type: verbatim
18976 #: ../fish/guestfish.pod:96
18977 #, no-wrap
18978 msgid ""
18979 " guestfish \\\n"
18980 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
18981 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
18982 "\n"
18983 msgstr ""
18984
18985 #. type: textblock
18986 #: ../fish/guestfish.pod:100
18987 msgid "Edit C</boot/grub/grub.conf> interactively:"
18988 msgstr ""
18989
18990 #. type: verbatim
18991 #: ../fish/guestfish.pod:102
18992 #, no-wrap
18993 msgid ""
18994 " guestfish --rw --add disk.img \\\n"
18995 "   --mount /dev/vg_guest/lv_root \\\n"
18996 "   --mount /dev/sda1:/boot \\\n"
18997 "   edit /boot/grub/grub.conf\n"
18998 "\n"
18999 msgstr ""
19000
19001 #. type: =head2
19002 #: ../fish/guestfish.pod:107
19003 msgid "Mount disks automatically"
19004 msgstr ""
19005
19006 #. type: textblock
19007 #: ../fish/guestfish.pod:109
19008 msgid ""
19009 "Use the I<-i> option to automatically mount the disks from a virtual "
19010 "machine:"
19011 msgstr ""
19012
19013 #. type: verbatim
19014 #: ../fish/guestfish.pod:112
19015 #, no-wrap
19016 msgid ""
19017 " guestfish --ro -a disk.img -i cat /etc/group\n"
19018 "\n"
19019 msgstr ""
19020
19021 #. type: verbatim
19022 #: ../fish/guestfish.pod:114
19023 #, no-wrap
19024 msgid ""
19025 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19026 "\n"
19027 msgstr ""
19028
19029 #. type: textblock
19030 #: ../fish/guestfish.pod:116
19031 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19032 msgstr ""
19033
19034 #. type: verbatim
19035 #: ../fish/guestfish.pod:118
19036 #, no-wrap
19037 msgid ""
19038 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19039 "\n"
19040 msgstr ""
19041
19042 #. type: =head2
19043 #: ../fish/guestfish.pod:120
19044 msgid "As a script interpreter"
19045 msgstr ""
19046
19047 #. type: textblock
19048 #: ../fish/guestfish.pod:122
19049 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19050 msgstr ""
19051
19052 #. type: verbatim
19053 #: ../fish/guestfish.pod:124
19054 #, no-wrap
19055 msgid ""
19056 " #!/usr/bin/guestfish -f\n"
19057 " sparse test1.img 100M\n"
19058 " run\n"
19059 " part-disk /dev/sda mbr\n"
19060 " mkfs ext2 /dev/sda1\n"
19061 "\n"
19062 msgstr ""
19063
19064 #. type: =head2
19065 #: ../fish/guestfish.pod:130
19066 msgid "Start with a prepared disk"
19067 msgstr ""
19068
19069 #. type: textblock
19070 #: ../fish/guestfish.pod:132
19071 msgid ""
19072 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19073 "single ext2-formatted partition:"
19074 msgstr ""
19075
19076 #. type: verbatim
19077 #: ../fish/guestfish.pod:135
19078 #, no-wrap
19079 msgid ""
19080 " guestfish -N fs\n"
19081 "\n"
19082 msgstr ""
19083
19084 #. type: textblock
19085 #: ../fish/guestfish.pod:137
19086 msgid "To list what is available do:"
19087 msgstr ""
19088
19089 #. type: verbatim
19090 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
19091 #, no-wrap
19092 msgid ""
19093 " guestfish -N help | less\n"
19094 "\n"
19095 msgstr ""
19096
19097 #. type: =head2
19098 #: ../fish/guestfish.pod:141
19099 msgid "Remote control"
19100 msgstr ""
19101
19102 #. type: verbatim
19103 #: ../fish/guestfish.pod:143
19104 #, no-wrap
19105 msgid ""
19106 " eval \"`guestfish --listen`\"\n"
19107 " guestfish --remote add-ro disk.img\n"
19108 " guestfish --remote run\n"
19109 " guestfish --remote lvs\n"
19110 "\n"
19111 msgstr ""
19112
19113 #. type: =head1
19114 #: ../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
19115 msgid "OPTIONS"
19116 msgstr ""
19117
19118 #. type: =item
19119 #: ../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
19120 msgid "B<--help>"
19121 msgstr ""
19122
19123 #. type: textblock
19124 #: ../fish/guestfish.pod:154
19125 msgid "Displays general help on options."
19126 msgstr ""
19127
19128 #. type: =item
19129 #: ../fish/guestfish.pod:156
19130 msgid "B<-h>"
19131 msgstr ""
19132
19133 #. type: =item
19134 #: ../fish/guestfish.pod:158
19135 msgid "B<--cmd-help>"
19136 msgstr ""
19137
19138 #. type: textblock
19139 #: ../fish/guestfish.pod:160
19140 msgid "Lists all available guestfish commands."
19141 msgstr ""
19142
19143 #. type: =item
19144 #: ../fish/guestfish.pod:162
19145 msgid "B<-h cmd>"
19146 msgstr ""
19147
19148 #. type: =item
19149 #: ../fish/guestfish.pod:164
19150 msgid "B<--cmd-help cmd>"
19151 msgstr ""
19152
19153 #. type: textblock
19154 #: ../fish/guestfish.pod:166
19155 msgid "Displays detailed help on a single command C<cmd>."
19156 msgstr ""
19157
19158 #. type: =item
19159 #: ../fish/guestfish.pod:168
19160 msgid "B<-a image>"
19161 msgstr ""
19162
19163 #. type: =item
19164 #: ../fish/guestfish.pod:170
19165 msgid "B<--add image>"
19166 msgstr ""
19167
19168 #. type: textblock
19169 #: ../fish/guestfish.pod:172
19170 msgid "Add a block device or virtual machine image to the shell."
19171 msgstr ""
19172
19173 #. type: textblock
19174 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
19175 msgid ""
19176 "The format of the disk image is auto-detected.  To override this and force a "
19177 "particular format use the I<--format=..> option."
19178 msgstr ""
19179
19180 #. type: textblock
19181 #: ../fish/guestfish.pod:177
19182 msgid ""
19183 "Using this flag is mostly equivalent to using the C<add> command, with "
19184 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19185 "the I<--format=...> flag was given."
19186 msgstr ""
19187
19188 #. type: =item
19189 #: ../fish/guestfish.pod:181
19190 msgid "B<-c URI>"
19191 msgstr ""
19192
19193 #. type: =item
19194 #: ../fish/guestfish.pod:183
19195 msgid "B<--connect URI>"
19196 msgstr ""
19197
19198 #. type: textblock
19199 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
19200 msgid ""
19201 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19202 "URI to use.  The default is to use the default libvirt connection."
19203 msgstr ""
19204
19205 #. type: =item
19206 #: ../fish/guestfish.pod:189
19207 msgid "B<--csh>"
19208 msgstr ""
19209
19210 #. type: textblock
19211 #: ../fish/guestfish.pod:191
19212 msgid ""
19213 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19214 "section L</REMOTE CONTROL AND CSH> below."
19215 msgstr ""
19216
19217 #. type: =item
19218 #: ../fish/guestfish.pod:194
19219 msgid "B<-d libvirt-domain>"
19220 msgstr ""
19221
19222 #. type: =item
19223 #: ../fish/guestfish.pod:196
19224 msgid "B<--domain libvirt-domain>"
19225 msgstr ""
19226
19227 #. type: textblock
19228 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
19229 msgid ""
19230 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19231 "used, then any libvirt domain can be used.  However in write mode, only "
19232 "libvirt domains which are shut down can be named here."
19233 msgstr ""
19234
19235 #. type: textblock
19236 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
19237 msgid "Domain UUIDs can be used instead of names."
19238 msgstr ""
19239
19240 #. type: textblock
19241 #: ../fish/guestfish.pod:204
19242 msgid ""
19243 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19244 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19245 "if the I<--format:...> flag was given."
19246 msgstr ""
19247
19248 #. type: =item
19249 #: ../fish/guestfish.pod:208
19250 msgid "B<-D>"
19251 msgstr ""
19252
19253 #. type: =item
19254 #: ../fish/guestfish.pod:210
19255 msgid "B<--no-dest-paths>"
19256 msgstr ""
19257
19258 #. type: textblock
19259 #: ../fish/guestfish.pod:212
19260 msgid ""
19261 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19262 "to hit the tab key to complete paths on the guest filesystem, but this "
19263 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19264 "allow this feature to be disabled."
19265 msgstr ""
19266
19267 #. type: =item
19268 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
19269 msgid "B<--echo-keys>"
19270 msgstr ""
19271
19272 #. type: textblock
19273 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
19274 msgid ""
19275 "When prompting for keys and passphrases, guestfish normally turns echoing "
19276 "off so you cannot see what you are typing.  If you are not worried about "
19277 "Tempest attacks and there is no one else in the room you can specify this "
19278 "flag to see what you are typing."
19279 msgstr ""
19280
19281 #. type: =item
19282 #: ../fish/guestfish.pod:224
19283 msgid "B<-f file>"
19284 msgstr ""
19285
19286 #. type: =item
19287 #: ../fish/guestfish.pod:226
19288 msgid "B<--file file>"
19289 msgstr ""
19290
19291 #. type: textblock
19292 #: ../fish/guestfish.pod:228
19293 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19294 msgstr ""
19295
19296 #. type: verbatim
19297 #: ../fish/guestfish.pod:231
19298 #, no-wrap
19299 msgid ""
19300 " #!/usr/bin/guestfish -f\n"
19301 "\n"
19302 msgstr ""
19303
19304 #. type: =item
19305 #: ../fish/guestfish.pod:233
19306 msgid "B<--format=raw|qcow2|..>"
19307 msgstr ""
19308
19309 #. type: =item
19310 #: ../fish/guestfish.pod:235
19311 msgid "B<--format>"
19312 msgstr ""
19313
19314 #. type: textblock
19315 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
19316 msgid ""
19317 "The default for the I<-a> option is to auto-detect the format of the disk "
19318 "image.  Using this forces the disk format for I<-a> options which follow on "
19319 "the command line.  Using I<--format> with no argument switches back to "
19320 "auto-detection for subsequent I<-a> options."
19321 msgstr ""
19322
19323 #. type: verbatim
19324 #: ../fish/guestfish.pod:244
19325 #, no-wrap
19326 msgid ""
19327 " guestfish --format=raw -a disk.img\n"
19328 "\n"
19329 msgstr ""
19330
19331 #. type: textblock
19332 #: ../fish/guestfish.pod:246
19333 msgid "forces raw format (no auto-detection) for C<disk.img>."
19334 msgstr ""
19335
19336 #. type: verbatim
19337 #: ../fish/guestfish.pod:248
19338 #, no-wrap
19339 msgid ""
19340 " guestfish --format=raw -a disk.img --format -a another.img\n"
19341 "\n"
19342 msgstr ""
19343
19344 #. type: textblock
19345 #: ../fish/guestfish.pod:250
19346 msgid ""
19347 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
19348 "auto-detection for C<another.img>."
19349 msgstr ""
19350
19351 #. type: textblock
19352 #: ../fish/guestfish.pod:253
19353 msgid ""
19354 "If you have untrusted raw-format guest disk images, you should use this "
19355 "option to specify the disk format.  This avoids a possible security problem "
19356 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19357 msgstr ""
19358
19359 #. type: =item
19360 #: ../fish/guestfish.pod:258
19361 msgid "B<-i>"
19362 msgstr ""
19363
19364 #. type: =item
19365 #: ../fish/guestfish.pod:260
19366 msgid "B<--inspector>"
19367 msgstr ""
19368
19369 #. type: textblock
19370 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
19371 msgid ""
19372 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19373 "system and mount filesystems as they would be mounted on the real virtual "
19374 "machine."
19375 msgstr ""
19376
19377 #. type: textblock
19378 #: ../fish/guestfish.pod:266
19379 msgid "Typical usage is either:"
19380 msgstr ""
19381
19382 #. type: verbatim
19383 #: ../fish/guestfish.pod:268
19384 #, no-wrap
19385 msgid ""
19386 " guestfish -d myguest -i\n"
19387 "\n"
19388 msgstr ""
19389
19390 #. type: textblock
19391 #: ../fish/guestfish.pod:270
19392 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19393 msgstr ""
19394
19395 #. type: verbatim
19396 #: ../fish/guestfish.pod:272
19397 #, no-wrap
19398 msgid ""
19399 " guestfish --ro -d myguest -i\n"
19400 "\n"
19401 msgstr ""
19402
19403 #. type: textblock
19404 #: ../fish/guestfish.pod:274
19405 msgid "(for active domains, readonly), or specify the block device directly:"
19406 msgstr ""
19407
19408 #. type: verbatim
19409 #: ../fish/guestfish.pod:276
19410 #, no-wrap
19411 msgid ""
19412 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19413 "\n"
19414 msgstr ""
19415
19416 #. type: textblock
19417 #: ../fish/guestfish.pod:278
19418 msgid ""
19419 "Note that the command line syntax changed slightly over older versions of "
19420 "guestfish.  You can still use the old syntax:"
19421 msgstr ""
19422
19423 #. type: verbatim
19424 #: ../fish/guestfish.pod:281
19425 #, no-wrap
19426 msgid ""
19427 " guestfish [--ro] -i disk.img\n"
19428 "\n"
19429 msgstr ""
19430
19431 #. type: verbatim
19432 #: ../fish/guestfish.pod:283
19433 #, no-wrap
19434 msgid ""
19435 " guestfish [--ro] -i libvirt-domain\n"
19436 "\n"
19437 msgstr ""
19438
19439 #. type: textblock
19440 #: ../fish/guestfish.pod:285
19441 msgid ""
19442 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19443 "then using other commands to mount the filesystems that were found."
19444 msgstr ""
19445
19446 #. type: =item
19447 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
19448 msgid "B<--keys-from-stdin>"
19449 msgstr ""
19450
19451 #. type: textblock
19452 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
19453 msgid ""
19454 "Read key or passphrase parameters from stdin.  The default is to try to read "
19455 "passphrases from the user by opening C</dev/tty>."
19456 msgstr ""
19457
19458 #. type: =item
19459 #: ../fish/guestfish.pod:294
19460 msgid "B<--listen>"
19461 msgstr ""
19462
19463 #. type: textblock
19464 #: ../fish/guestfish.pod:296
19465 msgid ""
19466 "Fork into the background and listen for remote commands.  See section "
19467 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
19468 msgstr ""
19469
19470 #. type: =item
19471 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
19472 msgid "B<--live>"
19473 msgstr ""
19474
19475 #. type: textblock
19476 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
19477 msgid ""
19478 "Connect to a live virtual machine.  (Experimental, see "
19479 "L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
19480 msgstr ""
19481
19482 #. type: =item
19483 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
19484 msgid "B<-m dev[:mountpoint[:options]]>"
19485 msgstr ""
19486
19487 #. type: =item
19488 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
19489 msgid "B<--mount dev[:mountpoint[:options]]>"
19490 msgstr ""
19491
19492 #. type: textblock
19493 #: ../fish/guestfish.pod:308
19494 msgid "Mount the named partition or logical volume on the given mountpoint."
19495 msgstr ""
19496
19497 #. type: textblock
19498 #: ../fish/guestfish.pod:310
19499 msgid "If the mountpoint is omitted, it defaults to C</>."
19500 msgstr ""
19501
19502 #. type: textblock
19503 #: ../fish/guestfish.pod:312
19504 msgid "You have to mount something on C</> before most commands will work."
19505 msgstr ""
19506
19507 #. type: textblock
19508 #: ../fish/guestfish.pod:314
19509 msgid ""
19510 "If any I<-m> or I<--mount> options are given, the guest is automatically "
19511 "launched."
19512 msgstr ""
19513
19514 #. type: textblock
19515 #: ../fish/guestfish.pod:317
19516 msgid ""
19517 "If you don't know what filesystems a disk image contains, you can either run "
19518 "guestfish without this option, then list the partitions, filesystems and LVs "
19519 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
19520 "commands), or you can use the L<virt-filesystems(1)> program."
19521 msgstr ""
19522
19523 #. type: textblock
19524 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
19525 msgid ""
19526 "The third (and rarely used) part of the mount parameter is the list of mount "
19527 "options used to mount the underlying filesystem.  If this is not given, then "
19528 "the mount options are either the empty string or C<ro> (the latter if the "
19529 "I<--ro> flag is used).  By specifying the mount options, you override this "
19530 "default choice.  Probably the only time you would use this is to enable ACLs "
19531 "and/or extended attributes if the filesystem can support them:"
19532 msgstr ""
19533
19534 #. type: verbatim
19535 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
19536 #, no-wrap
19537 msgid ""
19538 " -m /dev/sda1:/:acl,user_xattr\n"
19539 "\n"
19540 msgstr ""
19541
19542 #. type: textblock
19543 #: ../fish/guestfish.pod:333
19544 msgid "Using this flag is equivalent to using the C<mount-options> command."
19545 msgstr ""
19546
19547 #. type: =item
19548 #: ../fish/guestfish.pod:335
19549 msgid "B<-n>"
19550 msgstr ""
19551
19552 #. type: =item
19553 #: ../fish/guestfish.pod:337
19554 msgid "B<--no-sync>"
19555 msgstr ""
19556
19557 #. type: textblock
19558 #: ../fish/guestfish.pod:339
19559 msgid ""
19560 "Disable autosync.  This is enabled by default.  See the discussion of "
19561 "autosync in the L<guestfs(3)> manpage."
19562 msgstr ""
19563
19564 #. type: =item
19565 #: ../fish/guestfish.pod:342
19566 msgid "B<-N type>"
19567 msgstr ""
19568
19569 #. type: =item
19570 #: ../fish/guestfish.pod:344
19571 msgid "B<--new type>"
19572 msgstr ""
19573
19574 #. type: =item
19575 #: ../fish/guestfish.pod:346
19576 msgid "B<-N help>"
19577 msgstr ""
19578
19579 #. type: textblock
19580 #: ../fish/guestfish.pod:348
19581 msgid ""
19582 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
19583 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
19584 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
19585 "IMAGES> below."
19586 msgstr ""
19587
19588 #. type: =item
19589 #: ../fish/guestfish.pod:353
19590 msgid "B<--progress-bars>"
19591 msgstr ""
19592
19593 #. type: textblock
19594 #: ../fish/guestfish.pod:355
19595 msgid "Enable progress bars, even when guestfish is used non-interactively."
19596 msgstr ""
19597
19598 #. type: textblock
19599 #: ../fish/guestfish.pod:357
19600 msgid ""
19601 "Progress bars are enabled by default when guestfish is used as an "
19602 "interactive shell."
19603 msgstr ""
19604
19605 #. type: =item
19606 #: ../fish/guestfish.pod:360
19607 msgid "B<--no-progress-bars>"
19608 msgstr ""
19609
19610 #. type: textblock
19611 #: ../fish/guestfish.pod:362
19612 msgid "Disable progress bars."
19613 msgstr ""
19614
19615 #. type: =item
19616 #: ../fish/guestfish.pod:364
19617 msgid "B<--remote[=pid]>"
19618 msgstr ""
19619
19620 #. type: textblock
19621 #: ../fish/guestfish.pod:366
19622 msgid ""
19623 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
19624 "CONTROL GUESTFISH OVER A SOCKET> below."
19625 msgstr ""
19626
19627 #. type: =item
19628 #: ../fish/guestfish.pod:369
19629 msgid "B<-r>"
19630 msgstr ""
19631
19632 #. type: =item
19633 #: ../fish/guestfish.pod:371
19634 msgid "B<--ro>"
19635 msgstr ""
19636
19637 #. type: textblock
19638 #: ../fish/guestfish.pod:373
19639 msgid ""
19640 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19641 "mounts are done read-only."
19642 msgstr ""
19643
19644 #. type: textblock
19645 #: ../fish/guestfish.pod:376
19646 msgid ""
19647 "The option must always be used if the disk image or virtual machine might be "
19648 "running, and is generally recommended in cases where you don't need write "
19649 "access to the disk."
19650 msgstr ""
19651
19652 #. type: textblock
19653 #: ../fish/guestfish.pod:380
19654 msgid ""
19655 "Note that prepared disk images created with I<-N> are not affected by this "
19656 "option.  Also commands like C<add> are not affected - you have to specify "
19657 "the C<readonly:true> option explicitly if you need it."
19658 msgstr ""
19659
19660 #. type: textblock
19661 #: ../fish/guestfish.pod:384
19662 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
19663 msgstr ""
19664
19665 #. type: =item
19666 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
19667 msgid "B<--selinux>"
19668 msgstr ""
19669
19670 #. type: textblock
19671 #: ../fish/guestfish.pod:388
19672 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
19673 msgstr ""
19674
19675 #. type: =item
19676 #: ../fish/guestfish.pod:390
19677 msgid "B<-v>"
19678 msgstr ""
19679
19680 #. type: =item
19681 #: ../fish/guestfish.pod:392
19682 msgid "B<--verbose>"
19683 msgstr ""
19684
19685 #. type: textblock
19686 #: ../fish/guestfish.pod:394
19687 msgid ""
19688 "Enable very verbose messages.  This is particularly useful if you find a "
19689 "bug."
19690 msgstr ""
19691
19692 #. type: =item
19693 #: ../fish/guestfish.pod:397
19694 msgid "B<-V>"
19695 msgstr ""
19696
19697 #. type: =item
19698 #: ../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
19699 msgid "B<--version>"
19700 msgstr ""
19701
19702 #. type: textblock
19703 #: ../fish/guestfish.pod:401
19704 msgid "Display the guestfish / libguestfs version number and exit."
19705 msgstr ""
19706
19707 #. type: =item
19708 #: ../fish/guestfish.pod:403
19709 msgid "B<-w>"
19710 msgstr ""
19711
19712 #. type: =item
19713 #: ../fish/guestfish.pod:405
19714 msgid "B<--rw>"
19715 msgstr ""
19716
19717 #. type: textblock
19718 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
19719 msgid ""
19720 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19721 "mounts are done read-write."
19722 msgstr ""
19723
19724 #. type: textblock
19725 #: ../fish/guestfish.pod:410
19726 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
19727 msgstr ""
19728
19729 #. type: =item
19730 #: ../fish/guestfish.pod:412
19731 msgid "B<-x>"
19732 msgstr ""
19733
19734 #. type: textblock
19735 #: ../fish/guestfish.pod:414
19736 msgid "Echo each command before executing it."
19737 msgstr ""
19738
19739 #. type: =head1
19740 #: ../fish/guestfish.pod:418
19741 msgid "COMMANDS ON COMMAND LINE"
19742 msgstr ""
19743
19744 #. type: textblock
19745 #: ../fish/guestfish.pod:420
19746 msgid "Any additional (non-option) arguments are treated as commands to execute."
19747 msgstr ""
19748
19749 #. type: textblock
19750 #: ../fish/guestfish.pod:423
19751 msgid ""
19752 "Commands to execute should be separated by a colon (C<:>), where the colon "
19753 "is a separate parameter.  Thus:"
19754 msgstr ""
19755
19756 #. type: verbatim
19757 #: ../fish/guestfish.pod:426
19758 #, no-wrap
19759 msgid ""
19760 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
19761 "\n"
19762 msgstr ""
19763
19764 #. type: textblock
19765 #: ../fish/guestfish.pod:428
19766 msgid ""
19767 "If there are no additional arguments, then we enter a shell, either an "
19768 "interactive shell with a prompt (if the input is a terminal) or a "
19769 "non-interactive shell."
19770 msgstr ""
19771
19772 #. type: textblock
19773 #: ../fish/guestfish.pod:432
19774 msgid ""
19775 "In either command line mode or non-interactive shell, the first command that "
19776 "gives an error causes the whole shell to exit.  In interactive mode (with a "
19777 "prompt) if a command fails, you can continue to enter commands."
19778 msgstr ""
19779
19780 #. type: =head1
19781 #: ../fish/guestfish.pod:437
19782 msgid "USING launch (OR run)"
19783 msgstr ""
19784
19785 #. type: textblock
19786 #: ../fish/guestfish.pod:439
19787 msgid ""
19788 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
19789 "then launch it, then mount any disks you need, and finally issue "
19790 "actions/commands.  So the general order of the day is:"
19791 msgstr ""
19792
19793 #. type: textblock
19794 #: ../fish/guestfish.pod:447
19795 msgid "add or -a/--add"
19796 msgstr ""
19797
19798 #. type: textblock
19799 #: ../fish/guestfish.pod:451
19800 msgid "launch (aka run)"
19801 msgstr ""
19802
19803 #. type: textblock
19804 #: ../fish/guestfish.pod:455
19805 msgid "mount or -m/--mount"
19806 msgstr ""
19807
19808 #. type: textblock
19809 #: ../fish/guestfish.pod:459
19810 msgid "any other commands"
19811 msgstr ""
19812
19813 #. type: textblock
19814 #: ../fish/guestfish.pod:463
19815 msgid ""
19816 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
19817 "guest before mounting or performing any other commands."
19818 msgstr ""
19819
19820 #. type: textblock
19821 #: ../fish/guestfish.pod:466
19822 msgid ""
19823 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
19824 "I<--new> options were given then C<run> is done automatically, simply "
19825 "because guestfish can't perform the action you asked for without doing this."
19826 msgstr ""
19827
19828 #. type: =head1
19829 #: ../fish/guestfish.pod:471
19830 msgid "OPENING DISKS FOR READ AND WRITE"
19831 msgstr ""
19832
19833 #. type: textblock
19834 #: ../fish/guestfish.pod:473
19835 msgid ""
19836 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
19837 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
19838 "I<-i> and I<-m> open disk images read-only or for writing."
19839 msgstr ""
19840
19841 #. type: textblock
19842 #: ../fish/guestfish.pod:478
19843 msgid ""
19844 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
19845 "opening disk images supplied on the command line for write.  To open a disk "
19846 "image read-only you have to do I<-a image --ro>."
19847 msgstr ""
19848
19849 #. type: textblock
19850 #: ../fish/guestfish.pod:482
19851 msgid ""
19852 "This matters: If you accidentally open a live VM disk image writable then "
19853 "you will cause irreversible disk corruption."
19854 msgstr ""
19855
19856 #. type: textblock
19857 #: ../fish/guestfish.pod:485
19858 msgid ""
19859 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
19860 "images will be opened read-only.  You will have to either specify "
19861 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
19862 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
19863 "access for disk images specified by those other command line options."
19864 msgstr ""
19865
19866 #. type: textblock
19867 #: ../fish/guestfish.pod:492
19868 msgid ""
19869 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
19870 "which does nothing (it is already the default).  However it is highly "
19871 "recommended that you use this option to indicate that you need write access, "
19872 "and prepare your scripts for the day when this option will be required for "
19873 "write access."
19874 msgstr ""
19875
19876 #. type: textblock
19877 #: ../fish/guestfish.pod:498
19878 msgid ""
19879 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
19880 "other libguestfs program apart from guestfish and guestmount."
19881 msgstr ""
19882
19883 #. type: =head1
19884 #: ../fish/guestfish.pod:501
19885 msgid "QUOTING"
19886 msgstr ""
19887
19888 #. type: textblock
19889 #: ../fish/guestfish.pod:503
19890 msgid ""
19891 "You can quote ordinary parameters using either single or double quotes.  For "
19892 "example:"
19893 msgstr ""
19894
19895 #. type: verbatim
19896 #: ../fish/guestfish.pod:506
19897 #, no-wrap
19898 msgid ""
19899 " add \"file with a space.img\"\n"
19900 "\n"
19901 msgstr ""
19902
19903 #. type: verbatim
19904 #: ../fish/guestfish.pod:508
19905 #, no-wrap
19906 msgid ""
19907 " rm '/file name'\n"
19908 "\n"
19909 msgstr ""
19910
19911 #. type: verbatim
19912 #: ../fish/guestfish.pod:510
19913 #, no-wrap
19914 msgid ""
19915 " rm '/\"'\n"
19916 "\n"
19917 msgstr ""
19918
19919 #. type: textblock
19920 #: ../fish/guestfish.pod:512
19921 msgid ""
19922 "A few commands require a list of strings to be passed.  For these, use a "
19923 "whitespace-separated list, enclosed in quotes.  Strings containing "
19924 "whitespace to be passed through must be enclosed in single quotes.  A "
19925 "literal single quote must be escaped with a backslash."
19926 msgstr ""
19927
19928 #. type: verbatim
19929 #: ../fish/guestfish.pod:517
19930 #, no-wrap
19931 msgid ""
19932 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
19933 " command \"/bin/echo 'foo      bar'\"\n"
19934 " command \"/bin/echo \\'foo\\'\"\n"
19935 "\n"
19936 msgstr ""
19937
19938 #. type: =head1
19939 #: ../fish/guestfish.pod:521
19940 msgid "OPTIONAL ARGUMENTS"
19941 msgstr ""
19942
19943 #. type: textblock
19944 #: ../fish/guestfish.pod:523
19945 msgid ""
19946 "Some commands take optional arguments.  These arguments appear in this "
19947 "documentation as C<[argname:..]>.  You can use them as in these examples:"
19948 msgstr ""
19949
19950 #. type: verbatim
19951 #: ../fish/guestfish.pod:527
19952 #, no-wrap
19953 msgid ""
19954 " add-drive-opts filename\n"
19955 "\n"
19956 msgstr ""
19957
19958 #. type: verbatim
19959 #: ../fish/guestfish.pod:529
19960 #, no-wrap
19961 msgid ""
19962 " add-drive-opts filename readonly:true\n"
19963 "\n"
19964 msgstr ""
19965
19966 #. type: verbatim
19967 #: ../fish/guestfish.pod:531
19968 #, no-wrap
19969 msgid ""
19970 " add-drive-opts filename format:qcow2 readonly:false\n"
19971 "\n"
19972 msgstr ""
19973
19974 #. type: textblock
19975 #: ../fish/guestfish.pod:533
19976 msgid ""
19977 "Each optional argument can appear at most once.  All optional arguments must "
19978 "appear after the required ones."
19979 msgstr ""
19980
19981 #. type: =head1
19982 #: ../fish/guestfish.pod:536
19983 msgid "NUMBERS"
19984 msgstr ""
19985
19986 #. type: textblock
19987 #: ../fish/guestfish.pod:538
19988 msgid "This section applies to all commands which can take integers as parameters."
19989 msgstr ""
19990
19991 #. type: =head2
19992 #: ../fish/guestfish.pod:541
19993 msgid "SIZE SUFFIX"
19994 msgstr ""
19995
19996 #. type: textblock
19997 #: ../fish/guestfish.pod:543
19998 msgid ""
19999 "When the command takes a parameter measured in bytes, you can use one of the "
20000 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20001 msgstr ""
20002
20003 #. type: =item
20004 #: ../fish/guestfish.pod:549
20005 msgid "B<k> or B<K> or B<KiB>"
20006 msgstr ""
20007
20008 #. type: textblock
20009 #: ../fish/guestfish.pod:551
20010 msgid "The size in kilobytes (multiplied by 1024)."
20011 msgstr ""
20012
20013 #. type: =item
20014 #: ../fish/guestfish.pod:553
20015 msgid "B<KB>"
20016 msgstr ""
20017
20018 #. type: textblock
20019 #: ../fish/guestfish.pod:555
20020 msgid "The size in SI 1000 byte units."
20021 msgstr ""
20022
20023 #. type: =item
20024 #: ../fish/guestfish.pod:557
20025 msgid "B<M> or B<MiB>"
20026 msgstr ""
20027
20028 #. type: textblock
20029 #: ../fish/guestfish.pod:559
20030 msgid "The size in megabytes (multiplied by 1048576)."
20031 msgstr ""
20032
20033 #. type: =item
20034 #: ../fish/guestfish.pod:561
20035 msgid "B<MB>"
20036 msgstr ""
20037
20038 #. type: textblock
20039 #: ../fish/guestfish.pod:563
20040 msgid "The size in SI 1000000 byte units."
20041 msgstr ""
20042
20043 #. type: =item
20044 #: ../fish/guestfish.pod:565
20045 msgid "B<G> or B<GiB>"
20046 msgstr ""
20047
20048 #. type: textblock
20049 #: ../fish/guestfish.pod:567
20050 msgid "The size in gigabytes (multiplied by 2**30)."
20051 msgstr ""
20052
20053 #. type: =item
20054 #: ../fish/guestfish.pod:569
20055 msgid "B<GB>"
20056 msgstr ""
20057
20058 #. type: textblock
20059 #: ../fish/guestfish.pod:571
20060 msgid "The size in SI 10**9 byte units."
20061 msgstr ""
20062
20063 #. type: =item
20064 #: ../fish/guestfish.pod:573
20065 msgid "B<T> or B<TiB>"
20066 msgstr ""
20067
20068 #. type: textblock
20069 #: ../fish/guestfish.pod:575
20070 msgid "The size in terabytes (multiplied by 2**40)."
20071 msgstr ""
20072
20073 #. type: =item
20074 #: ../fish/guestfish.pod:577
20075 msgid "B<TB>"
20076 msgstr ""
20077
20078 #. type: textblock
20079 #: ../fish/guestfish.pod:579
20080 msgid "The size in SI 10**12 byte units."
20081 msgstr ""
20082
20083 #. type: =item
20084 #: ../fish/guestfish.pod:581
20085 msgid "B<P> or B<PiB>"
20086 msgstr ""
20087
20088 #. type: textblock
20089 #: ../fish/guestfish.pod:583
20090 msgid "The size in petabytes (multiplied by 2**50)."
20091 msgstr ""
20092
20093 #. type: =item
20094 #: ../fish/guestfish.pod:585
20095 msgid "B<PB>"
20096 msgstr ""
20097
20098 #. type: textblock
20099 #: ../fish/guestfish.pod:587
20100 msgid "The size in SI 10**15 byte units."
20101 msgstr ""
20102
20103 #. type: =item
20104 #: ../fish/guestfish.pod:589
20105 msgid "B<E> or B<EiB>"
20106 msgstr ""
20107
20108 #. type: textblock
20109 #: ../fish/guestfish.pod:591
20110 msgid "The size in exabytes (multiplied by 2**60)."
20111 msgstr ""
20112
20113 #. type: =item
20114 #: ../fish/guestfish.pod:593
20115 msgid "B<EB>"
20116 msgstr ""
20117
20118 #. type: textblock
20119 #: ../fish/guestfish.pod:595
20120 msgid "The size in SI 10**18 byte units."
20121 msgstr ""
20122
20123 #. type: =item
20124 #: ../fish/guestfish.pod:597
20125 msgid "B<Z> or B<ZiB>"
20126 msgstr ""
20127
20128 #. type: textblock
20129 #: ../fish/guestfish.pod:599
20130 msgid "The size in zettabytes (multiplied by 2**70)."
20131 msgstr ""
20132
20133 #. type: =item
20134 #: ../fish/guestfish.pod:601
20135 msgid "B<ZB>"
20136 msgstr ""
20137
20138 #. type: textblock
20139 #: ../fish/guestfish.pod:603
20140 msgid "The size in SI 10**21 byte units."
20141 msgstr ""
20142
20143 #. type: =item
20144 #: ../fish/guestfish.pod:605
20145 msgid "B<Y> or B<YiB>"
20146 msgstr ""
20147
20148 #. type: textblock
20149 #: ../fish/guestfish.pod:607
20150 msgid "The size in yottabytes (multiplied by 2**80)."
20151 msgstr ""
20152
20153 #. type: =item
20154 #: ../fish/guestfish.pod:609
20155 msgid "B<YB>"
20156 msgstr ""
20157
20158 #. type: textblock
20159 #: ../fish/guestfish.pod:611
20160 msgid "The size in SI 10**24 byte units."
20161 msgstr ""
20162
20163 #. type: verbatim
20164 #: ../fish/guestfish.pod:617
20165 #, no-wrap
20166 msgid ""
20167 " truncate-size /file 1G\n"
20168 "\n"
20169 msgstr ""
20170
20171 #. type: textblock
20172 #: ../fish/guestfish.pod:619
20173 msgid "would truncate the file to 1 gigabyte."
20174 msgstr ""
20175
20176 #. type: textblock
20177 #: ../fish/guestfish.pod:621
20178 msgid ""
20179 "Be careful because a few commands take sizes in kilobytes or megabytes "
20180 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
20181 "Adding a suffix will probably not do what you expect."
20182 msgstr ""
20183
20184 #. type: =head2
20185 #: ../fish/guestfish.pod:625
20186 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20187 msgstr ""
20188
20189 #. type: textblock
20190 #: ../fish/guestfish.pod:627
20191 msgid ""
20192 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20193 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20194 msgstr ""
20195
20196 #. type: verbatim
20197 #: ../fish/guestfish.pod:630
20198 #, no-wrap
20199 msgid ""
20200 " 1234      decimal number 1234\n"
20201 " 02322     octal number, equivalent to decimal 1234\n"
20202 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20203 "\n"
20204 msgstr ""
20205
20206 #. type: textblock
20207 #: ../fish/guestfish.pod:634
20208 msgid ""
20209 "When using the C<chmod> command, you almost always want to specify an octal "
20210 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20211 "L<chmod(1)> program):"
20212 msgstr ""
20213
20214 #. type: verbatim
20215 #: ../fish/guestfish.pod:638
20216 #, no-wrap
20217 msgid ""
20218 " chmod 0777 /public  # OK\n"
20219 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20220 "\n"
20221 msgstr ""
20222
20223 #. type: textblock
20224 #: ../fish/guestfish.pod:641
20225 msgid ""
20226 "Commands that return numbers usually print them in decimal, but some "
20227 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20228 "octal, preceeded by C<0>)."
20229 msgstr ""
20230
20231 #. type: =head1
20232 #: ../fish/guestfish.pod:645
20233 msgid "WILDCARDS AND GLOBBING"
20234 msgstr ""
20235
20236 #. type: textblock
20237 #: ../fish/guestfish.pod:647
20238 msgid ""
20239 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20240 "(globbing) by default.  So for example the following will not do what you "
20241 "expect:"
20242 msgstr ""
20243
20244 #. type: verbatim
20245 #: ../fish/guestfish.pod:651
20246 #, no-wrap
20247 msgid ""
20248 " rm-rf /home/*\n"
20249 "\n"
20250 msgstr ""
20251
20252 #. type: textblock
20253 #: ../fish/guestfish.pod:653
20254 msgid ""
20255 "Assuming you don't have a directory called literally C</home/*> then the "
20256 "above command will return an error."
20257 msgstr ""
20258
20259 #. type: textblock
20260 #: ../fish/guestfish.pod:656
20261 msgid "To perform wildcard expansion, use the C<glob> command."
20262 msgstr ""
20263
20264 #. type: verbatim
20265 #: ../fish/guestfish.pod:658
20266 #, no-wrap
20267 msgid ""
20268 " glob rm-rf /home/*\n"
20269 "\n"
20270 msgstr ""
20271
20272 #. type: textblock
20273 #: ../fish/guestfish.pod:660
20274 msgid ""
20275 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20276 "many times), equivalent to:"
20277 msgstr ""
20278
20279 #. type: verbatim
20280 #: ../fish/guestfish.pod:663
20281 #, no-wrap
20282 msgid ""
20283 " rm-rf /home/jim\n"
20284 " rm-rf /home/joe\n"
20285 " rm-rf /home/mary\n"
20286 "\n"
20287 msgstr ""
20288
20289 #. type: textblock
20290 #: ../fish/guestfish.pod:667
20291 msgid "C<glob> only works on simple guest paths and not on device names."
20292 msgstr ""
20293
20294 #. type: textblock
20295 #: ../fish/guestfish.pod:669
20296 msgid ""
20297 "If you have several parameters, each containing a wildcard, then glob will "
20298 "perform a Cartesian product."
20299 msgstr ""
20300
20301 #. type: =head1
20302 #: ../fish/guestfish.pod:672
20303 msgid "COMMENTS"
20304 msgstr ""
20305
20306 #. type: textblock
20307 #: ../fish/guestfish.pod:674
20308 msgid ""
20309 "Any line which starts with a I<#> character is treated as a comment and "
20310 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20311 "a command.  For example:"
20312 msgstr ""
20313
20314 #. type: verbatim
20315 #: ../fish/guestfish.pod:678
20316 #, no-wrap
20317 msgid ""
20318 " # this is a comment\n"
20319 "         # this is a comment\n"
20320 " foo # NOT a comment\n"
20321 "\n"
20322 msgstr ""
20323
20324 #. type: textblock
20325 #: ../fish/guestfish.pod:682
20326 msgid "Blank lines are also ignored."
20327 msgstr ""
20328
20329 #. type: =head1
20330 #: ../fish/guestfish.pod:684
20331 msgid "RUNNING COMMANDS LOCALLY"
20332 msgstr ""
20333
20334 #. type: textblock
20335 #: ../fish/guestfish.pod:686
20336 msgid ""
20337 "Any line which starts with a I<!> character is treated as a command sent to "
20338 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20339 msgstr ""
20340
20341 #. type: verbatim
20342 #: ../fish/guestfish.pod:690
20343 #, no-wrap
20344 msgid ""
20345 " !mkdir local\n"
20346 " tgz-out /remote local/remote-data.tar.gz\n"
20347 "\n"
20348 msgstr ""
20349
20350 #. type: textblock
20351 #: ../fish/guestfish.pod:693
20352 msgid ""
20353 "will create a directory C<local> on the host, and then export the contents "
20354 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20355 "(See C<tgz-out>)."
20356 msgstr ""
20357
20358 #. type: textblock
20359 #: ../fish/guestfish.pod:697
20360 msgid ""
20361 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20362 "effect, due to the way that subprocesses work in Unix."
20363 msgstr ""
20364
20365 #. type: =head2
20366 #: ../fish/guestfish.pod:700
20367 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20368 msgstr ""
20369
20370 #. type: textblock
20371 #: ../fish/guestfish.pod:702
20372 msgid ""
20373 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20374 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20375 "and executed as guestfish commands."
20376 msgstr ""
20377
20378 #. type: textblock
20379 #: ../fish/guestfish.pod:706
20380 msgid ""
20381 "Thus you can use shell script to construct arbitrary guestfish commands "
20382 "which are then parsed by guestfish."
20383 msgstr ""
20384
20385 #. type: textblock
20386 #: ../fish/guestfish.pod:709
20387 msgid ""
20388 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20389 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20390 "if we use a shell script to create the guestfish commands for us:"
20391 msgstr ""
20392
20393 #. type: verbatim
20394 #: ../fish/guestfish.pod:714
20395 #, no-wrap
20396 msgid ""
20397 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20398 "\n"
20399 msgstr ""
20400
20401 #. type: textblock
20402 #: ../fish/guestfish.pod:716
20403 msgid "or with names like C</foo.001>:"
20404 msgstr ""
20405
20406 #. type: verbatim
20407 #: ../fish/guestfish.pod:718
20408 #, no-wrap
20409 msgid ""
20410 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20411 "\n"
20412 msgstr ""
20413
20414 #. type: textblock
20415 #: ../fish/guestfish.pod:720
20416 msgid ""
20417 "When using guestfish interactively it can be helpful to just run the shell "
20418 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20419 "ordinary I<!> local command), see what guestfish commands it would run, and "
20420 "when you are happy with those prepend the C<E<lt>> character to run the "
20421 "guestfish commands for real."
20422 msgstr ""
20423
20424 #. type: =head1
20425 #: ../fish/guestfish.pod:726
20426 msgid "PIPES"
20427 msgstr ""
20428
20429 #. type: textblock
20430 #: ../fish/guestfish.pod:728
20431 msgid ""
20432 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20433 "command (a guestfish command) to the second command (any host command).  For "
20434 "example:"
20435 msgstr ""
20436
20437 #. type: verbatim
20438 #: ../fish/guestfish.pod:732
20439 #, no-wrap
20440 msgid ""
20441 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20442 "\n"
20443 msgstr ""
20444
20445 #. type: textblock
20446 #: ../fish/guestfish.pod:734
20447 msgid ""
20448 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20449 "program).  The above command would list all accounts in the guest filesystem "
20450 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20451 msgstr ""
20452
20453 #. type: verbatim
20454 #: ../fish/guestfish.pod:739
20455 #, no-wrap
20456 msgid ""
20457 " hexdump /bin/ls | head\n"
20458 " list-devices | tail -1\n"
20459 " tgz-out / - | tar ztf -\n"
20460 "\n"
20461 msgstr ""
20462
20463 #. type: textblock
20464 #: ../fish/guestfish.pod:743
20465 msgid ""
20466 "The space before the pipe symbol is required, any space after the pipe "
20467 "symbol is optional.  Everything after the pipe symbol is just passed "
20468 "straight to the host shell, so it can contain redirections, globs and "
20469 "anything else that makes sense on the host side."
20470 msgstr ""
20471
20472 #. type: textblock
20473 #: ../fish/guestfish.pod:748
20474 msgid ""
20475 "To use a literal argument which begins with a pipe symbol, you have to quote "
20476 "it, eg:"
20477 msgstr ""
20478
20479 #. type: verbatim
20480 #: ../fish/guestfish.pod:751
20481 #, no-wrap
20482 msgid ""
20483 " echo \"|\"\n"
20484 "\n"
20485 msgstr ""
20486
20487 #. type: =head1
20488 #: ../fish/guestfish.pod:753
20489 msgid "HOME DIRECTORIES"
20490 msgstr ""
20491
20492 #. type: textblock
20493 #: ../fish/guestfish.pod:755
20494 msgid ""
20495 "If a parameter starts with the character C<~> then the tilde may be expanded "
20496 "as a home directory path (either C<~> for the current user's home directory, "
20497 "or C<~user> for another user)."
20498 msgstr ""
20499
20500 #. type: textblock
20501 #: ../fish/guestfish.pod:759
20502 msgid ""
20503 "Note that home directory expansion happens for users known I<on the host>, "
20504 "not in the guest filesystem."
20505 msgstr ""
20506
20507 #. type: textblock
20508 #: ../fish/guestfish.pod:762
20509 msgid ""
20510 "To use a literal argument which begins with a tilde, you have to quote it, "
20511 "eg:"
20512 msgstr ""
20513
20514 #. type: verbatim
20515 #: ../fish/guestfish.pod:765
20516 #, no-wrap
20517 msgid ""
20518 " echo \"~\"\n"
20519 "\n"
20520 msgstr ""
20521
20522 #. type: textblock
20523 #: ../fish/guestfish.pod:769
20524 msgid ""
20525 "Libguestfs has some support for Linux guests encrypted according to the "
20526 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
20527 "disk encryption systems used by modern Linux guests.  Currently only "
20528 "LVM-on-LUKS is supported."
20529 msgstr ""
20530
20531 #. type: textblock
20532 #: ../fish/guestfish.pod:774
20533 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
20534 msgstr ""
20535
20536 #. type: verbatim
20537 #: ../fish/guestfish.pod:776
20538 #, no-wrap
20539 msgid ""
20540 " ><fs> vfs-type /dev/sda2\n"
20541 " crypto_LUKS\n"
20542 "\n"
20543 msgstr ""
20544
20545 #. type: textblock
20546 #: ../fish/guestfish.pod:779
20547 msgid ""
20548 "Then open those devices using L</luks-open>.  This creates a device-mapper "
20549 "device called C</dev/mapper/luksdev>."
20550 msgstr ""
20551
20552 #. type: verbatim
20553 #: ../fish/guestfish.pod:782
20554 #, no-wrap
20555 msgid ""
20556 " ><fs> luks-open /dev/sda2 luksdev\n"
20557 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
20558 "\n"
20559 msgstr ""
20560
20561 #. type: textblock
20562 #: ../fish/guestfish.pod:785
20563 msgid ""
20564 "Finally you have to tell LVM to scan for volume groups on the newly created "
20565 "mapper device:"
20566 msgstr ""
20567
20568 #. type: verbatim
20569 #: ../fish/guestfish.pod:788
20570 #, no-wrap
20571 msgid ""
20572 " vgscan\n"
20573 " vg-activate-all true\n"
20574 "\n"
20575 msgstr ""
20576
20577 #. type: textblock
20578 #: ../fish/guestfish.pod:791
20579 msgid "The logical volume(s) can now be mounted in the usual way."
20580 msgstr ""
20581
20582 #. type: textblock
20583 #: ../fish/guestfish.pod:793
20584 msgid ""
20585 "Before closing a LUKS device you must unmount any logical volumes on it and "
20586 "deactivate the volume groups by calling C<vg-activate false VG> on each "
20587 "one.  Then you can close the mapper device:"
20588 msgstr ""
20589
20590 #. type: verbatim
20591 #: ../fish/guestfish.pod:797
20592 #, no-wrap
20593 msgid ""
20594 " vg-activate false /dev/VG\n"
20595 " luks-close /dev/mapper/luksdev\n"
20596 "\n"
20597 msgstr ""
20598
20599 #. type: =head1
20600 #: ../fish/guestfish.pod:800
20601 msgid "WINDOWS PATHS"
20602 msgstr ""
20603
20604 #. type: textblock
20605 #: ../fish/guestfish.pod:802
20606 msgid ""
20607 "If a path is prefixed with C<win:> then you can use Windows-style drive "
20608 "letters and paths (with some limitations).  The following commands are "
20609 "equivalent:"
20610 msgstr ""
20611
20612 #. type: verbatim
20613 #: ../fish/guestfish.pod:806
20614 #, no-wrap
20615 msgid ""
20616 " file /WINDOWS/system32/config/system.LOG\n"
20617 "\n"
20618 msgstr ""
20619
20620 #. type: verbatim
20621 #: ../fish/guestfish.pod:808
20622 #, no-wrap
20623 msgid ""
20624 " file win:\\windows\\system32\\config\\system.log\n"
20625 "\n"
20626 msgstr ""
20627
20628 #. type: verbatim
20629 #: ../fish/guestfish.pod:810
20630 #, no-wrap
20631 msgid ""
20632 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
20633 "\n"
20634 msgstr ""
20635
20636 #. type: textblock
20637 #: ../fish/guestfish.pod:812
20638 msgid ""
20639 "The parameter is rewritten \"behind the scenes\" by looking up the position "
20640 "where the drive is mounted, prepending that to the path, changing all "
20641 "backslash characters to forward slash, then resolving the result using "
20642 "L</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
20643 "then the parameter might be rewritten like this:"
20644 msgstr ""
20645
20646 #. type: verbatim
20647 #: ../fish/guestfish.pod:818
20648 #, no-wrap
20649 msgid ""
20650 " win:e:\\foo\\bar => /e/FOO/bar\n"
20651 "\n"
20652 msgstr ""
20653
20654 #. type: textblock
20655 #: ../fish/guestfish.pod:820
20656 msgid "This only works in argument positions that expect a path."
20657 msgstr ""
20658
20659 #. type: =head1
20660 #: ../fish/guestfish.pod:822
20661 msgid "UPLOADING AND DOWNLOADING FILES"
20662 msgstr ""
20663
20664 #. type: textblock
20665 #: ../fish/guestfish.pod:824
20666 msgid ""
20667 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
20668 "others which upload from or download to a local file, you can use the "
20669 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
20670 msgstr ""
20671
20672 #. type: verbatim
20673 #: ../fish/guestfish.pod:828
20674 #, no-wrap
20675 msgid ""
20676 " upload - /foo\n"
20677 "\n"
20678 msgstr ""
20679
20680 #. type: textblock
20681 #: ../fish/guestfish.pod:830
20682 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
20683 msgstr ""
20684
20685 #. type: verbatim
20686 #: ../fish/guestfish.pod:833
20687 #, no-wrap
20688 msgid ""
20689 " tar-out /etc - | tar tf -\n"
20690 "\n"
20691 msgstr ""
20692
20693 #. type: textblock
20694 #: ../fish/guestfish.pod:835
20695 msgid ""
20696 "writes the tarball to stdout and then pipes that into the external \"tar\" "
20697 "command (see L</PIPES>)."
20698 msgstr ""
20699
20700 #. type: textblock
20701 #: ../fish/guestfish.pod:838
20702 msgid ""
20703 "When using C<-> to read from stdin, the input is read up to the end of "
20704 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
20705 "some arbitrary end marker:"
20706 msgstr ""
20707
20708 #. type: verbatim
20709 #: ../fish/guestfish.pod:842
20710 #, no-wrap
20711 msgid ""
20712 " upload -<<END /foo\n"
20713 " input line 1\n"
20714 " input line 2\n"
20715 " input line 3\n"
20716 " END\n"
20717 "\n"
20718 msgstr ""
20719
20720 #. type: textblock
20721 #: ../fish/guestfish.pod:848
20722 msgid ""
20723 "Any string of characters can be used instead of C<END>.  The end marker must "
20724 "appear on a line of its own, without any preceeding or following characters "
20725 "(not even spaces)."
20726 msgstr ""
20727
20728 #. type: textblock
20729 #: ../fish/guestfish.pod:852
20730 msgid ""
20731 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
20732 "upload local files (so-called \"FileIn\" parameters in the generator)."
20733 msgstr ""
20734
20735 #. type: =head1
20736 #: ../fish/guestfish.pod:855
20737 msgid "EXIT ON ERROR BEHAVIOUR"
20738 msgstr ""
20739
20740 #. type: textblock
20741 #: ../fish/guestfish.pod:857
20742 msgid ""
20743 "By default, guestfish will ignore any errors when in interactive mode "
20744 "(ie. taking commands from a human over a tty), and will exit on the first "
20745 "error in non-interactive mode (scripts, commands given on the command line)."
20746 msgstr ""
20747
20748 #. type: textblock
20749 #: ../fish/guestfish.pod:862
20750 msgid ""
20751 "If you prefix a command with a I<-> character, then that command will not "
20752 "cause guestfish to exit, even if that (one) command returns an error."
20753 msgstr ""
20754
20755 #. type: =head1
20756 #: ../fish/guestfish.pod:866
20757 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
20758 msgstr ""
20759
20760 #. type: textblock
20761 #: ../fish/guestfish.pod:868
20762 msgid ""
20763 "Guestfish can be remote-controlled over a socket.  This is useful "
20764 "particularly in shell scripts where you want to make several different "
20765 "changes to a filesystem, but you don't want the overhead of starting up a "
20766 "guestfish process each time."
20767 msgstr ""
20768
20769 #. type: textblock
20770 #: ../fish/guestfish.pod:873
20771 msgid "Start a guestfish server process using:"
20772 msgstr ""
20773
20774 #. type: verbatim
20775 #: ../fish/guestfish.pod:875
20776 #, no-wrap
20777 msgid ""
20778 " eval \"`guestfish --listen`\"\n"
20779 "\n"
20780 msgstr ""
20781
20782 #. type: textblock
20783 #: ../fish/guestfish.pod:877
20784 msgid "and then send it commands by doing:"
20785 msgstr ""
20786
20787 #. type: verbatim
20788 #: ../fish/guestfish.pod:879
20789 #, no-wrap
20790 msgid ""
20791 " guestfish --remote cmd [...]\n"
20792 "\n"
20793 msgstr ""
20794
20795 #. type: textblock
20796 #: ../fish/guestfish.pod:881
20797 msgid "To cause the server to exit, send it the exit command:"
20798 msgstr ""
20799
20800 #. type: verbatim
20801 #: ../fish/guestfish.pod:883
20802 #, no-wrap
20803 msgid ""
20804 " guestfish --remote exit\n"
20805 "\n"
20806 msgstr ""
20807
20808 #. type: textblock
20809 #: ../fish/guestfish.pod:885
20810 msgid ""
20811 "Note that the server will normally exit if there is an error in a command.  "
20812 "You can change this in the usual way.  See section L</EXIT ON ERROR "
20813 "BEHAVIOUR>."
20814 msgstr ""
20815
20816 #. type: =head2
20817 #: ../fish/guestfish.pod:889
20818 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
20819 msgstr ""
20820
20821 #. type: textblock
20822 #: ../fish/guestfish.pod:891
20823 msgid ""
20824 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
20825 "is how the I<--remote> option knows where to send the commands.  You can "
20826 "have several guestfish listener processes running using:"
20827 msgstr ""
20828
20829 #. type: verbatim
20830 #: ../fish/guestfish.pod:895
20831 #, no-wrap
20832 msgid ""
20833 " eval \"`guestfish --listen`\"\n"
20834 " pid1=$GUESTFISH_PID\n"
20835 " eval \"`guestfish --listen`\"\n"
20836 " pid2=$GUESTFISH_PID\n"
20837 " ...\n"
20838 " guestfish --remote=$pid1 cmd\n"
20839 " guestfish --remote=$pid2 cmd\n"
20840 "\n"
20841 msgstr ""
20842
20843 #. type: =head2
20844 #: ../fish/guestfish.pod:903
20845 msgid "REMOTE CONTROL AND CSH"
20846 msgstr ""
20847
20848 #. type: textblock
20849 #: ../fish/guestfish.pod:905
20850 msgid ""
20851 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
20852 "option:"
20853 msgstr ""
20854
20855 #. type: verbatim
20856 #: ../fish/guestfish.pod:908
20857 #, no-wrap
20858 msgid ""
20859 " eval \"`guestfish --listen --csh`\"\n"
20860 "\n"
20861 msgstr ""
20862
20863 #. type: =head2
20864 #: ../fish/guestfish.pod:910
20865 msgid "REMOTE CONTROL DETAILS"
20866 msgstr ""
20867
20868 #. type: textblock
20869 #: ../fish/guestfish.pod:912
20870 msgid ""
20871 "Remote control happens over a Unix domain socket called "
20872 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
20873 "of the process, and C<$PID> is the process ID of the server."
20874 msgstr ""
20875
20876 #. type: textblock
20877 #: ../fish/guestfish.pod:916
20878 msgid "Guestfish client and server versions must match exactly."
20879 msgstr ""
20880
20881 #. type: =head1
20882 #: ../fish/guestfish.pod:918
20883 msgid "PREPARED DISK IMAGES"
20884 msgstr ""
20885
20886 #. type: textblock
20887 #: ../fish/guestfish.pod:920
20888 msgid ""
20889 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
20890 "preformatted disk images that guestfish can make for you to save typing.  "
20891 "This is particularly useful for testing purposes.  This option is used "
20892 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
20893 "can be mixed with I<-a>)."
20894 msgstr ""
20895
20896 #. type: textblock
20897 #: ../fish/guestfish.pod:926
20898 msgid ""
20899 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
20900 "the second and so on.  Existing files in the current directory are "
20901 "I<overwritten>."
20902 msgstr ""
20903
20904 #. type: textblock
20905 #: ../fish/guestfish.pod:930
20906 msgid ""
20907 "The type briefly describes how the disk should be sized, partitioned, how "
20908 "filesystem(s) should be created, and how content should be added.  "
20909 "Optionally the type can be followed by extra parameters, separated by C<:> "
20910 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
20911 "sparsely-allocated disk, containing a single partition, with the partition "
20912 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
20913 "on a 1GB disk instead."
20914 msgstr ""
20915
20916 #. type: textblock
20917 #: ../fish/guestfish.pod:938
20918 msgid "To list the available types and any extra parameters they take, run:"
20919 msgstr ""
20920
20921 #. type: textblock
20922 #: ../fish/guestfish.pod:942
20923 msgid ""
20924 "Note that the prepared filesystem is not mounted.  You would usually have to "
20925 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
20926 msgstr ""
20927
20928 #. type: textblock
20929 #: ../fish/guestfish.pod:946
20930 msgid ""
20931 "If any I<-N> or I<--new> options are given, the guest is automatically "
20932 "launched."
20933 msgstr ""
20934
20935 #. type: textblock
20936 #: ../fish/guestfish.pod:951
20937 msgid "Create a 100MB disk with an ext4-formatted partition:"
20938 msgstr ""
20939
20940 #. type: verbatim
20941 #: ../fish/guestfish.pod:953
20942 #, no-wrap
20943 msgid ""
20944 " guestfish -N fs:ext4\n"
20945 "\n"
20946 msgstr ""
20947
20948 #. type: textblock
20949 #: ../fish/guestfish.pod:955
20950 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
20951 msgstr ""
20952
20953 #. type: verbatim
20954 #: ../fish/guestfish.pod:957
20955 #, no-wrap
20956 msgid ""
20957 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
20958 "\n"
20959 msgstr ""
20960
20961 #. type: textblock
20962 #: ../fish/guestfish.pod:959
20963 msgid "Create a blank 200MB disk:"
20964 msgstr ""
20965
20966 #. type: verbatim
20967 #: ../fish/guestfish.pod:961
20968 #, no-wrap
20969 msgid ""
20970 " guestfish -N disk:200M\n"
20971 "\n"
20972 msgstr ""
20973
20974 #. type: =head1
20975 #: ../fish/guestfish.pod:963
20976 msgid "PROGRESS BARS"
20977 msgstr ""
20978
20979 #. type: textblock
20980 #: ../fish/guestfish.pod:965
20981 msgid ""
20982 "Some (not all) long-running commands send progress notification messages as "
20983 "they are running.  Guestfish turns these messages into progress bars."
20984 msgstr ""
20985
20986 #. type: textblock
20987 #: ../fish/guestfish.pod:969
20988 msgid ""
20989 "When a command that supports progress bars takes longer than two seconds to "
20990 "run, and if progress bars are enabled, then you will see one appearing below "
20991 "the command:"
20992 msgstr ""
20993
20994 #. type: verbatim
20995 #: ../fish/guestfish.pod:973
20996 #, no-wrap
20997 msgid ""
20998 " ><fs> copy-size /large-file /another-file 2048M\n"
20999 " / 10% [#####-----------------------------------------] 00:30\n"
21000 "\n"
21001 msgstr ""
21002
21003 #. type: textblock
21004 #: ../fish/guestfish.pod:976
21005 msgid ""
21006 "The spinner on the left hand side moves round once for every progress "
21007 "notification received from the backend.  This is a (reasonably) golden "
21008 "assurance that the command is \"doing something\" even if the progress bar "
21009 "is not moving, because the command is able to send the progress "
21010 "notifications.  When the bar reaches 100% and the command finishes, the "
21011 "spinner disappears."
21012 msgstr ""
21013
21014 #. type: textblock
21015 #: ../fish/guestfish.pod:983
21016 msgid ""
21017 "Progress bars are enabled by default when guestfish is used interactively.  "
21018 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21019 "and you can disable them completely using I<--no-progress-bars>."
21020 msgstr ""
21021
21022 #. type: =head1
21023 #: ../fish/guestfish.pod:988
21024 msgid "GUESTFISH COMMANDS"
21025 msgstr ""
21026
21027 #. type: textblock
21028 #: ../fish/guestfish.pod:990
21029 msgid ""
21030 "The commands in this section are guestfish convenience commands, in other "
21031 "words, they are not part of the L<guestfs(3)> API."
21032 msgstr ""
21033
21034 #. type: =head2
21035 #: ../fish/guestfish.pod:993
21036 msgid "help"
21037 msgstr ""
21038
21039 #. type: verbatim
21040 #: ../fish/guestfish.pod:995
21041 #, no-wrap
21042 msgid ""
21043 " help\n"
21044 " help cmd\n"
21045 "\n"
21046 msgstr ""
21047
21048 #. type: textblock
21049 #: ../fish/guestfish.pod:998
21050 msgid "Without any parameter, this provides general help."
21051 msgstr ""
21052
21053 #. type: textblock
21054 #: ../fish/guestfish.pod:1000
21055 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21056 msgstr ""
21057
21058 #. type: =head2
21059 #: ../fish/guestfish.pod:1002
21060 msgid "quit | exit"
21061 msgstr ""
21062
21063 #. type: textblock
21064 #: ../fish/guestfish.pod:1004
21065 msgid "This exits guestfish.  You can also use C<^D> key."
21066 msgstr ""
21067
21068 #. type: textblock
21069 #: ../fish/guestfish.pod:1006
21070 msgid "@FISH_COMMANDS@"
21071 msgstr ""
21072
21073 #. type: =head1
21074 #: ../fish/guestfish.pod:1008
21075 msgid "COMMANDS"
21076 msgstr ""
21077
21078 #. type: =head1
21079 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
21080 msgid "EXIT CODE"
21081 msgstr ""
21082
21083 #. type: textblock
21084 #: ../fish/guestfish.pod:1014
21085 msgid ""
21086 "guestfish returns 0 if the commands completed without error, or 1 if there "
21087 "was an error."
21088 msgstr ""
21089
21090 #. type: =item
21091 #: ../fish/guestfish.pod:1021
21092 msgid "EDITOR"
21093 msgstr ""
21094
21095 #. type: textblock
21096 #: ../fish/guestfish.pod:1023
21097 msgid ""
21098 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21099 "C<vi>."
21100 msgstr ""
21101
21102 #. type: =item
21103 #: ../fish/guestfish.pod:1026
21104 msgid "GUESTFISH_PID"
21105 msgstr ""
21106
21107 #. type: textblock
21108 #: ../fish/guestfish.pod:1028
21109 msgid ""
21110 "Used with the I<--remote> option to specify the remote guestfish process to "
21111 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21112 msgstr ""
21113
21114 #. type: =item
21115 #: ../fish/guestfish.pod:1032
21116 msgid "HEXEDITOR"
21117 msgstr ""
21118
21119 #. type: textblock
21120 #: ../fish/guestfish.pod:1034
21121 msgid ""
21122 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21123 "not specified, the external L<hexedit(1)> program is used."
21124 msgstr ""
21125
21126 #. type: =item
21127 #: ../fish/guestfish.pod:1038
21128 msgid "HOME"
21129 msgstr ""
21130
21131 #. type: textblock
21132 #: ../fish/guestfish.pod:1040
21133 msgid ""
21134 "If compiled with GNU readline support, various files in the home directory "
21135 "can be used.  See L</FILES>."
21136 msgstr ""
21137
21138 #. type: textblock
21139 #: ../fish/guestfish.pod:1049
21140 msgid ""
21141 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21142 "effect as using the B<-v> option."
21143 msgstr ""
21144
21145 #. type: textblock
21146 #: ../fish/guestfish.pod:1061
21147 msgid ""
21148 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21149 "the discussion of paths in L<guestfs(3)>."
21150 msgstr ""
21151
21152 #. type: textblock
21153 #: ../fish/guestfish.pod:1072
21154 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21155 msgstr ""
21156
21157 #. type: =item
21158 #: ../fish/guestfish.pod:1074
21159 msgid "PAGER"
21160 msgstr ""
21161
21162 #. type: textblock
21163 #: ../fish/guestfish.pod:1076
21164 msgid ""
21165 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21166 "C<more>."
21167 msgstr ""
21168
21169 #. type: =head1
21170 #: ../fish/guestfish.pod:1092 ../fuse/guestmount.pod:264
21171 msgid "FILES"
21172 msgstr ""
21173
21174 #. type: =item
21175 #: ../fish/guestfish.pod:1096 ../fuse/guestmount.pod:268
21176 msgid "$HOME/.libguestfs-tools.rc"
21177 msgstr ""
21178
21179 #. type: =item
21180 #: ../fish/guestfish.pod:1098 ../fuse/guestmount.pod:270
21181 msgid "/etc/libguestfs-tools.conf"
21182 msgstr ""
21183
21184 #. type: textblock
21185 #: ../fish/guestfish.pod:1100 ../fuse/guestmount.pod:272
21186 msgid ""
21187 "This configuration file controls the default read-only or read-write mode "
21188 "(I<--ro> or I<--rw>)."
21189 msgstr ""
21190
21191 #. type: textblock
21192 #: ../fish/guestfish.pod:1103
21193 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21194 msgstr ""
21195
21196 #. type: =item
21197 #: ../fish/guestfish.pod:1105
21198 msgid "$HOME/.guestfish"
21199 msgstr ""
21200
21201 #. type: textblock
21202 #: ../fish/guestfish.pod:1107
21203 msgid ""
21204 "If compiled with GNU readline support, then the command history is saved in "
21205 "this file."
21206 msgstr ""
21207
21208 #. type: =item
21209 #: ../fish/guestfish.pod:1110
21210 msgid "$HOME/.inputrc"
21211 msgstr ""
21212
21213 #. type: =item
21214 #: ../fish/guestfish.pod:1112
21215 msgid "/etc/inputrc"
21216 msgstr ""
21217
21218 #. type: textblock
21219 #: ../fish/guestfish.pod:1114
21220 msgid ""
21221 "If compiled with GNU readline support, then these files can be used to "
21222 "configure readline.  For further information, please see "
21223 "L<readline(3)/INITIALIZATION FILE>."
21224 msgstr ""
21225
21226 #. type: textblock
21227 #: ../fish/guestfish.pod:1118
21228 msgid "To write rules which only apply to guestfish, use:"
21229 msgstr ""
21230
21231 #. type: verbatim
21232 #: ../fish/guestfish.pod:1120
21233 #, no-wrap
21234 msgid ""
21235 " $if guestfish\n"
21236 " ...\n"
21237 " $endif\n"
21238 "\n"
21239 msgstr ""
21240
21241 #. type: textblock
21242 #: ../fish/guestfish.pod:1124
21243 msgid ""
21244 "Variables that you can set in inputrc that change the behaviour of guestfish "
21245 "in useful ways include:"
21246 msgstr ""
21247
21248 #. type: =item
21249 #: ../fish/guestfish.pod:1129
21250 msgid "completion-ignore-case (default: on)"
21251 msgstr ""
21252
21253 #. type: textblock
21254 #: ../fish/guestfish.pod:1131
21255 msgid ""
21256 "By default, guestfish will ignore case when tab-completing paths on the "
21257 "disk.  Use:"
21258 msgstr ""
21259
21260 #. type: verbatim
21261 #: ../fish/guestfish.pod:1134
21262 #, no-wrap
21263 msgid ""
21264 " set completion-ignore-case off\n"
21265 "\n"
21266 msgstr ""
21267
21268 #. type: textblock
21269 #: ../fish/guestfish.pod:1136
21270 msgid "to make guestfish case sensitive."
21271 msgstr ""
21272
21273 #. type: =item
21274 #: ../fish/guestfish.pod:1140
21275 msgid "test1.img"
21276 msgstr ""
21277
21278 #. type: =item
21279 #: ../fish/guestfish.pod:1142
21280 msgid "test2.img (etc)"
21281 msgstr ""
21282
21283 #. type: textblock
21284 #: ../fish/guestfish.pod:1144
21285 msgid ""
21286 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21287 "will be created in the file C<test1.img> in the current directory.  The "
21288 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21289 "the same name will be overwritten."
21290 msgstr ""
21291
21292 #. type: textblock
21293 #: ../fish/guestfish.pod:1153
21294 msgid ""
21295 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, "
21296 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
21297 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
21298 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
21299 "L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, "
21300 "L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<hexedit(1)>."
21301 msgstr ""
21302
21303 #. type: textblock
21304 #: ../fish/guestfish.pod:1183 ../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
21305 msgid ""
21306 "This program is free software; you can redistribute it and/or modify it "
21307 "under the terms of the GNU General Public License as published by the Free "
21308 "Software Foundation; either version 2 of the License, or (at your option) "
21309 "any later version."
21310 msgstr ""
21311
21312 #. type: textblock
21313 #: ../fish/guestfish.pod:1188 ../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
21314 msgid ""
21315 "This program is distributed in the hope that it will be useful, but WITHOUT "
21316 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21317 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21318 "more details."
21319 msgstr ""
21320
21321 #. type: textblock
21322 #: ../fish/guestfish.pod:1193 ../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
21323 msgid ""
21324 "You should have received a copy of the GNU General Public License along with "
21325 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21326 "Ave, Cambridge, MA 02139, USA."
21327 msgstr ""
21328
21329 #. type: =head2
21330 #: ../fish/guestfish-actions.pod:1
21331 msgid "add-cdrom"
21332 msgstr ""
21333
21334 #. type: verbatim
21335 #: ../fish/guestfish-actions.pod:3
21336 #, no-wrap
21337 msgid ""
21338 " add-cdrom filename\n"
21339 "\n"
21340 msgstr ""
21341
21342 #. type: textblock
21343 #: ../fish/guestfish-actions.pod:15
21344 msgid ""
21345 "This call checks for the existence of C<filename>.  This stops you from "
21346 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21347 "and C<http:> URLs.  To specify those, use the general L</config> call "
21348 "instead."
21349 msgstr ""
21350
21351 #. type: textblock
21352 #: ../fish/guestfish-actions.pod:22
21353 msgid ""
21354 "If you just want to add an ISO file (often you use this as an efficient way "
21355 "to transfer large files into the guest), then you should probably use "
21356 "L</add-drive-ro> instead."
21357 msgstr ""
21358
21359 #. type: =head2
21360 #: ../fish/guestfish-actions.pod:35
21361 msgid "add-domain"
21362 msgstr ""
21363
21364 #. type: =head2
21365 #: ../fish/guestfish-actions.pod:37
21366 msgid "domain"
21367 msgstr ""
21368
21369 #. type: verbatim
21370 #: ../fish/guestfish-actions.pod:39
21371 #, no-wrap
21372 msgid ""
21373 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] "
21374 "[allowuuid:..]\n"
21375 "\n"
21376 msgstr ""
21377
21378 #. type: textblock
21379 #: ../fish/guestfish-actions.pod:41
21380 msgid ""
21381 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21382 "It works by connecting to libvirt, requesting the domain and domain XML from "
21383 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21384 msgstr ""
21385
21386 #. type: textblock
21387 #: ../fish/guestfish-actions.pod:76
21388 msgid ""
21389 "The other optional parameters are passed directly through to "
21390 "L</add-drive-opts>."
21391 msgstr ""
21392
21393 #. type: textblock
21394 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143 ../fish/guestfish-actions.pod:3064
21395 msgid ""
21396 "This command has one or more optional arguments.  See L</OPTIONAL "
21397 "ARGUMENTS>."
21398 msgstr ""
21399
21400 #. type: =head2
21401 #: ../fish/guestfish-actions.pod:81
21402 msgid "add-drive"
21403 msgstr ""
21404
21405 #. type: verbatim
21406 #: ../fish/guestfish-actions.pod:83
21407 #, no-wrap
21408 msgid ""
21409 " add-drive filename\n"
21410 "\n"
21411 msgstr ""
21412
21413 #. type: textblock
21414 #: ../fish/guestfish-actions.pod:85
21415 msgid ""
21416 "This function is the equivalent of calling L</add-drive-opts> with no "
21417 "optional parameters, so the disk is added writable, with the format being "
21418 "detected automatically."
21419 msgstr ""
21420
21421 #. type: textblock
21422 #: ../fish/guestfish-actions.pod:89
21423 msgid ""
21424 "Automatic detection of the format opens you up to a potential security hole "
21425 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21426 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21427 "you should think about replacing calls to this function with calls to "
21428 "L</add-drive-opts>, and specifying the format."
21429 msgstr ""
21430
21431 #. type: =head2
21432 #: ../fish/guestfish-actions.pod:96
21433 msgid "add-drive-opts"
21434 msgstr ""
21435
21436 #. type: =head2
21437 #: ../fish/guestfish-actions.pod:98
21438 msgid "add"
21439 msgstr ""
21440
21441 #. type: verbatim
21442 #: ../fish/guestfish-actions.pod:100
21443 #, no-wrap
21444 msgid ""
21445 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21446 "\n"
21447 msgstr ""
21448
21449 #. type: textblock
21450 #: ../fish/guestfish-actions.pod:127
21451 msgid ""
21452 "This forces the image format.  If you omit this (or use L</add-drive> or "
21453 "L</add-drive-ro>) then the format is automatically detected.  Possible "
21454 "formats include C<raw> and C<qcow2>."
21455 msgstr ""
21456
21457 #. type: textblock
21458 #: ../fish/guestfish-actions.pod:138
21459 msgid ""
21460 "This rarely-used option lets you emulate the behaviour of the deprecated "
21461 "L</add-drive-with-if> call (q.v.)"
21462 msgstr ""
21463
21464 #. type: =head2
21465 #: ../fish/guestfish-actions.pod:145
21466 msgid "add-drive-ro"
21467 msgstr ""
21468
21469 #. type: =head2
21470 #: ../fish/guestfish-actions.pod:147
21471 msgid "add-ro"
21472 msgstr ""
21473
21474 #. type: verbatim
21475 #: ../fish/guestfish-actions.pod:149
21476 #, no-wrap
21477 msgid ""
21478 " add-drive-ro filename\n"
21479 "\n"
21480 msgstr ""
21481
21482 #. type: textblock
21483 #: ../fish/guestfish-actions.pod:151
21484 msgid ""
21485 "This function is the equivalent of calling L</add-drive-opts> with the "
21486 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
21487 "is added read-only, with the format being detected automatically."
21488 msgstr ""
21489
21490 #. type: =head2
21491 #: ../fish/guestfish-actions.pod:156
21492 msgid "add-drive-ro-with-if"
21493 msgstr ""
21494
21495 #. type: verbatim
21496 #: ../fish/guestfish-actions.pod:158
21497 #, no-wrap
21498 msgid ""
21499 " add-drive-ro-with-if filename iface\n"
21500 "\n"
21501 msgstr ""
21502
21503 #. type: textblock
21504 #: ../fish/guestfish-actions.pod:160
21505 msgid ""
21506 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
21507 "interface emulation to use at run time."
21508 msgstr ""
21509
21510 #. type: =head2
21511 #: ../fish/guestfish-actions.pod:170
21512 msgid "add-drive-with-if"
21513 msgstr ""
21514
21515 #. type: verbatim
21516 #: ../fish/guestfish-actions.pod:172
21517 #, no-wrap
21518 msgid ""
21519 " add-drive-with-if filename iface\n"
21520 "\n"
21521 msgstr ""
21522
21523 #. type: textblock
21524 #: ../fish/guestfish-actions.pod:174
21525 msgid ""
21526 "This is the same as L</add-drive> but it allows you to specify the QEMU "
21527 "interface emulation to use at run time."
21528 msgstr ""
21529
21530 #. type: =head2
21531 #: ../fish/guestfish-actions.pod:184
21532 msgid "aug-clear"
21533 msgstr ""
21534
21535 #. type: verbatim
21536 #: ../fish/guestfish-actions.pod:186
21537 #, no-wrap
21538 msgid ""
21539 " aug-clear augpath\n"
21540 "\n"
21541 msgstr ""
21542
21543 #. type: =head2
21544 #: ../fish/guestfish-actions.pod:191
21545 msgid "aug-close"
21546 msgstr ""
21547
21548 #. type: verbatim
21549 #: ../fish/guestfish-actions.pod:193
21550 #, no-wrap
21551 msgid ""
21552 " aug-close\n"
21553 "\n"
21554 msgstr ""
21555
21556 #. type: textblock
21557 #: ../fish/guestfish-actions.pod:195
21558 msgid ""
21559 "Close the current Augeas handle and free up any resources used by it.  After "
21560 "calling this, you have to call L</aug-init> again before you can use any "
21561 "other Augeas functions."
21562 msgstr ""
21563
21564 #. type: =head2
21565 #: ../fish/guestfish-actions.pod:200
21566 msgid "aug-defnode"
21567 msgstr ""
21568
21569 #. type: verbatim
21570 #: ../fish/guestfish-actions.pod:202
21571 #, no-wrap
21572 msgid ""
21573 " aug-defnode name expr val\n"
21574 "\n"
21575 msgstr ""
21576
21577 #. type: textblock
21578 #: ../fish/guestfish-actions.pod:207
21579 msgid ""
21580 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
21581 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
21582 "containing that single node."
21583 msgstr ""
21584
21585 #. type: =head2
21586 #: ../fish/guestfish-actions.pod:215
21587 msgid "aug-defvar"
21588 msgstr ""
21589
21590 #. type: verbatim
21591 #: ../fish/guestfish-actions.pod:217
21592 #, no-wrap
21593 msgid ""
21594 " aug-defvar name expr\n"
21595 "\n"
21596 msgstr ""
21597
21598 #. type: =head2
21599 #: ../fish/guestfish-actions.pod:226
21600 msgid "aug-get"
21601 msgstr ""
21602
21603 #. type: verbatim
21604 #: ../fish/guestfish-actions.pod:228
21605 #, no-wrap
21606 msgid ""
21607 " aug-get augpath\n"
21608 "\n"
21609 msgstr ""
21610
21611 #. type: =head2
21612 #: ../fish/guestfish-actions.pod:233
21613 msgid "aug-init"
21614 msgstr ""
21615
21616 #. type: verbatim
21617 #: ../fish/guestfish-actions.pod:235
21618 #, no-wrap
21619 msgid ""
21620 " aug-init root flags\n"
21621 "\n"
21622 msgstr ""
21623
21624 #. type: textblock
21625 #: ../fish/guestfish-actions.pod:241
21626 msgid "You must call this before using any other L</aug-*> commands."
21627 msgstr ""
21628
21629 #. type: textblock
21630 #: ../fish/guestfish-actions.pod:276
21631 msgid "Do not load the tree in L</aug-init>."
21632 msgstr ""
21633
21634 #. type: textblock
21635 #: ../fish/guestfish-actions.pod:280
21636 msgid "To close the handle, you can call L</aug-close>."
21637 msgstr ""
21638
21639 #. type: =head2
21640 #: ../fish/guestfish-actions.pod:284
21641 msgid "aug-insert"
21642 msgstr ""
21643
21644 #. type: verbatim
21645 #: ../fish/guestfish-actions.pod:286
21646 #, no-wrap
21647 msgid ""
21648 " aug-insert augpath label true|false\n"
21649 "\n"
21650 msgstr ""
21651
21652 #. type: =head2
21653 #: ../fish/guestfish-actions.pod:296
21654 msgid "aug-load"
21655 msgstr ""
21656
21657 #. type: verbatim
21658 #: ../fish/guestfish-actions.pod:298
21659 #, no-wrap
21660 msgid ""
21661 " aug-load\n"
21662 "\n"
21663 msgstr ""
21664
21665 #. type: =head2
21666 #: ../fish/guestfish-actions.pod:305
21667 msgid "aug-ls"
21668 msgstr ""
21669
21670 #. type: verbatim
21671 #: ../fish/guestfish-actions.pod:307
21672 #, no-wrap
21673 msgid ""
21674 " aug-ls augpath\n"
21675 "\n"
21676 msgstr ""
21677
21678 #. type: textblock
21679 #: ../fish/guestfish-actions.pod:309
21680 msgid ""
21681 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
21682 "resulting nodes into alphabetical order."
21683 msgstr ""
21684
21685 #. type: =head2
21686 #: ../fish/guestfish-actions.pod:312
21687 msgid "aug-match"
21688 msgstr ""
21689
21690 #. type: verbatim
21691 #: ../fish/guestfish-actions.pod:314
21692 #, no-wrap
21693 msgid ""
21694 " aug-match augpath\n"
21695 "\n"
21696 msgstr ""
21697
21698 #. type: =head2
21699 #: ../fish/guestfish-actions.pod:320
21700 msgid "aug-mv"
21701 msgstr ""
21702
21703 #. type: verbatim
21704 #: ../fish/guestfish-actions.pod:322
21705 #, no-wrap
21706 msgid ""
21707 " aug-mv src dest\n"
21708 "\n"
21709 msgstr ""
21710
21711 #. type: =head2
21712 #: ../fish/guestfish-actions.pod:327
21713 msgid "aug-rm"
21714 msgstr ""
21715
21716 #. type: verbatim
21717 #: ../fish/guestfish-actions.pod:329
21718 #, no-wrap
21719 msgid ""
21720 " aug-rm augpath\n"
21721 "\n"
21722 msgstr ""
21723
21724 #. type: =head2
21725 #: ../fish/guestfish-actions.pod:335
21726 msgid "aug-save"
21727 msgstr ""
21728
21729 #. type: verbatim
21730 #: ../fish/guestfish-actions.pod:337
21731 #, no-wrap
21732 msgid ""
21733 " aug-save\n"
21734 "\n"
21735 msgstr ""
21736
21737 #. type: textblock
21738 #: ../fish/guestfish-actions.pod:341
21739 msgid ""
21740 "The flags which were passed to L</aug-init> affect exactly how files are "
21741 "saved."
21742 msgstr ""
21743
21744 #. type: =head2
21745 #: ../fish/guestfish-actions.pod:344
21746 msgid "aug-set"
21747 msgstr ""
21748
21749 #. type: verbatim
21750 #: ../fish/guestfish-actions.pod:346
21751 #, no-wrap
21752 msgid ""
21753 " aug-set augpath val\n"
21754 "\n"
21755 msgstr ""
21756
21757 #. type: textblock
21758 #: ../fish/guestfish-actions.pod:350
21759 msgid ""
21760 "In the Augeas API, it is possible to clear a node by setting the value to "
21761 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
21762 "this call.  Instead you must use the L</aug-clear> call."
21763 msgstr ""
21764
21765 #. type: =head2
21766 #: ../fish/guestfish-actions.pod:355
21767 msgid "available"
21768 msgstr ""
21769
21770 #. type: verbatim
21771 #: ../fish/guestfish-actions.pod:357
21772 #, no-wrap
21773 msgid ""
21774 " available 'groups ...'\n"
21775 "\n"
21776 msgstr ""
21777
21778 #. type: textblock
21779 #: ../fish/guestfish-actions.pod:363
21780 msgid ""
21781 "The libguestfs groups, and the functions that those groups correspond to, "
21782 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
21783 "runtime by calling L</available-all-groups>."
21784 msgstr ""
21785
21786 #. type: textblock
21787 #: ../fish/guestfish-actions.pod:387
21788 msgid "You must call L</launch> before calling this function."
21789 msgstr ""
21790
21791 #. type: textblock
21792 #: ../fish/guestfish-actions.pod:409
21793 msgid ""
21794 "This call was added in version C<1.0.80>.  In previous versions of "
21795 "libguestfs all you could do would be to speculatively execute a command to "
21796 "find out if the daemon implemented it.  See also L</version>."
21797 msgstr ""
21798
21799 #. type: =head2
21800 #: ../fish/guestfish-actions.pod:416
21801 msgid "available-all-groups"
21802 msgstr ""
21803
21804 #. type: verbatim
21805 #: ../fish/guestfish-actions.pod:418
21806 #, no-wrap
21807 msgid ""
21808 " available-all-groups\n"
21809 "\n"
21810 msgstr ""
21811
21812 #. type: textblock
21813 #: ../fish/guestfish-actions.pod:420
21814 msgid ""
21815 "This command returns a list of all optional groups that this daemon knows "
21816 "about.  Note this returns both supported and unsupported groups.  To find "
21817 "out which ones the daemon can actually support you have to call "
21818 "L</available> on each member of the returned list."
21819 msgstr ""
21820
21821 #. type: textblock
21822 #: ../fish/guestfish-actions.pod:426
21823 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
21824 msgstr ""
21825
21826 #. type: =head2
21827 #: ../fish/guestfish-actions.pod:428
21828 msgid "base64-in"
21829 msgstr ""
21830
21831 #. type: verbatim
21832 #: ../fish/guestfish-actions.pod:430
21833 #, no-wrap
21834 msgid ""
21835 " base64-in (base64file|-) filename\n"
21836 "\n"
21837 msgstr ""
21838
21839 #. type: textblock
21840 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444 ../fish/guestfish-actions.pod:668 ../fish/guestfish-actions.pod:837 ../fish/guestfish-actions.pod:856 ../fish/guestfish-actions.pod:1230 ../fish/guestfish-actions.pod:4497 ../fish/guestfish-actions.pod:4509 ../fish/guestfish-actions.pod:4520 ../fish/guestfish-actions.pod:4531 ../fish/guestfish-actions.pod:4583 ../fish/guestfish-actions.pod:4592 ../fish/guestfish-actions.pod:4646 ../fish/guestfish-actions.pod:4669
21841 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
21842 msgstr ""
21843
21844 #. type: =head2
21845 #: ../fish/guestfish-actions.pod:437
21846 msgid "base64-out"
21847 msgstr ""
21848
21849 #. type: verbatim
21850 #: ../fish/guestfish-actions.pod:439
21851 #, no-wrap
21852 msgid ""
21853 " base64-out filename (base64file|-)\n"
21854 "\n"
21855 msgstr ""
21856
21857 #. type: =head2
21858 #: ../fish/guestfish-actions.pod:446
21859 msgid "blockdev-flushbufs"
21860 msgstr ""
21861
21862 #. type: verbatim
21863 #: ../fish/guestfish-actions.pod:448
21864 #, no-wrap
21865 msgid ""
21866 " blockdev-flushbufs device\n"
21867 "\n"
21868 msgstr ""
21869
21870 #. type: =head2
21871 #: ../fish/guestfish-actions.pod:455
21872 msgid "blockdev-getbsz"
21873 msgstr ""
21874
21875 #. type: verbatim
21876 #: ../fish/guestfish-actions.pod:457
21877 #, no-wrap
21878 msgid ""
21879 " blockdev-getbsz device\n"
21880 "\n"
21881 msgstr ""
21882
21883 #. type: =head2
21884 #: ../fish/guestfish-actions.pod:466
21885 msgid "blockdev-getro"
21886 msgstr ""
21887
21888 #. type: verbatim
21889 #: ../fish/guestfish-actions.pod:468
21890 #, no-wrap
21891 msgid ""
21892 " blockdev-getro device\n"
21893 "\n"
21894 msgstr ""
21895
21896 #. type: =head2
21897 #: ../fish/guestfish-actions.pod:475
21898 msgid "blockdev-getsize64"
21899 msgstr ""
21900
21901 #. type: verbatim
21902 #: ../fish/guestfish-actions.pod:477
21903 #, no-wrap
21904 msgid ""
21905 " blockdev-getsize64 device\n"
21906 "\n"
21907 msgstr ""
21908
21909 #. type: textblock
21910 #: ../fish/guestfish-actions.pod:481
21911 msgid "See also L</blockdev-getsz>."
21912 msgstr ""
21913
21914 #. type: =head2
21915 #: ../fish/guestfish-actions.pod:485
21916 msgid "blockdev-getss"
21917 msgstr ""
21918
21919 #. type: verbatim
21920 #: ../fish/guestfish-actions.pod:487
21921 #, no-wrap
21922 msgid ""
21923 " blockdev-getss device\n"
21924 "\n"
21925 msgstr ""
21926
21927 #. type: textblock
21928 #: ../fish/guestfish-actions.pod:492
21929 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
21930 msgstr ""
21931
21932 #. type: =head2
21933 #: ../fish/guestfish-actions.pod:497
21934 msgid "blockdev-getsz"
21935 msgstr ""
21936
21937 #. type: verbatim
21938 #: ../fish/guestfish-actions.pod:499
21939 #, no-wrap
21940 msgid ""
21941 " blockdev-getsz device\n"
21942 "\n"
21943 msgstr ""
21944
21945 #. type: textblock
21946 #: ../fish/guestfish-actions.pod:504
21947 msgid ""
21948 "See also L</blockdev-getss> for the real sector size of the device, and "
21949 "L</blockdev-getsize64> for the more useful I<size in bytes>."
21950 msgstr ""
21951
21952 #. type: =head2
21953 #: ../fish/guestfish-actions.pod:510
21954 msgid "blockdev-rereadpt"
21955 msgstr ""
21956
21957 #. type: verbatim
21958 #: ../fish/guestfish-actions.pod:512
21959 #, no-wrap
21960 msgid ""
21961 " blockdev-rereadpt device\n"
21962 "\n"
21963 msgstr ""
21964
21965 #. type: =head2
21966 #: ../fish/guestfish-actions.pod:518
21967 msgid "blockdev-setbsz"
21968 msgstr ""
21969
21970 #. type: verbatim
21971 #: ../fish/guestfish-actions.pod:520
21972 #, no-wrap
21973 msgid ""
21974 " blockdev-setbsz device blocksize\n"
21975 "\n"
21976 msgstr ""
21977
21978 #. type: =head2
21979 #: ../fish/guestfish-actions.pod:529
21980 msgid "blockdev-setro"
21981 msgstr ""
21982
21983 #. type: verbatim
21984 #: ../fish/guestfish-actions.pod:531
21985 #, no-wrap
21986 msgid ""
21987 " blockdev-setro device\n"
21988 "\n"
21989 msgstr ""
21990
21991 #. type: =head2
21992 #: ../fish/guestfish-actions.pod:537
21993 msgid "blockdev-setrw"
21994 msgstr ""
21995
21996 #. type: verbatim
21997 #: ../fish/guestfish-actions.pod:539
21998 #, no-wrap
21999 msgid ""
22000 " blockdev-setrw device\n"
22001 "\n"
22002 msgstr ""
22003
22004 #. type: =head2
22005 #: ../fish/guestfish-actions.pod:545
22006 msgid "case-sensitive-path"
22007 msgstr ""
22008
22009 #. type: verbatim
22010 #: ../fish/guestfish-actions.pod:547
22011 #, no-wrap
22012 msgid ""
22013 " case-sensitive-path path\n"
22014 "\n"
22015 msgstr ""
22016
22017 #. type: textblock
22018 #: ../fish/guestfish-actions.pod:571
22019 msgid ""
22020 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
22021 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
22022 "how the directories were originally created under Windows)."
22023 msgstr ""
22024
22025 #. type: textblock
22026 #: ../fish/guestfish-actions.pod:579
22027 msgid "See also L</realpath>."
22028 msgstr ""
22029
22030 #. type: =head2
22031 #: ../fish/guestfish-actions.pod:581
22032 msgid "cat"
22033 msgstr ""
22034
22035 #. type: verbatim
22036 #: ../fish/guestfish-actions.pod:583
22037 #, no-wrap
22038 msgid ""
22039 " cat path\n"
22040 "\n"
22041 msgstr ""
22042
22043 #. type: textblock
22044 #: ../fish/guestfish-actions.pod:587
22045 msgid ""
22046 "Note that this function cannot correctly handle binary files (specifically, "
22047 "files containing C<\\0> character which is treated as end of string).  For "
22048 "those you need to use the L</read-file> or L</download> functions which have "
22049 "a more complex interface."
22050 msgstr ""
22051
22052 #. type: =head2
22053 #: ../fish/guestfish-actions.pod:595
22054 msgid "checksum"
22055 msgstr ""
22056
22057 #. type: verbatim
22058 #: ../fish/guestfish-actions.pod:597
22059 #, no-wrap
22060 msgid ""
22061 " checksum csumtype path\n"
22062 "\n"
22063 msgstr ""
22064
22065 #. type: textblock
22066 #: ../fish/guestfish-actions.pod:640
22067 msgid "To get the checksum for a device, use L</checksum-device>."
22068 msgstr ""
22069
22070 #. type: textblock
22071 #: ../fish/guestfish-actions.pod:642
22072 msgid "To get the checksums for many files, use L</checksums-out>."
22073 msgstr ""
22074
22075 #. type: =head2
22076 #: ../fish/guestfish-actions.pod:644
22077 msgid "checksum-device"
22078 msgstr ""
22079
22080 #. type: verbatim
22081 #: ../fish/guestfish-actions.pod:646
22082 #, no-wrap
22083 msgid ""
22084 " checksum-device csumtype device\n"
22085 "\n"
22086 msgstr ""
22087
22088 #. type: textblock
22089 #: ../fish/guestfish-actions.pod:648
22090 msgid ""
22091 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22092 "device named C<device>.  For the types of checksums supported see the "
22093 "L</checksum> command."
22094 msgstr ""
22095
22096 #. type: =head2
22097 #: ../fish/guestfish-actions.pod:652
22098 msgid "checksums-out"
22099 msgstr ""
22100
22101 #. type: verbatim
22102 #: ../fish/guestfish-actions.pod:654
22103 #, no-wrap
22104 msgid ""
22105 " checksums-out csumtype directory (sumsfile|-)\n"
22106 "\n"
22107 msgstr ""
22108
22109 #. type: =head2
22110 #: ../fish/guestfish-actions.pod:670
22111 msgid "chmod"
22112 msgstr ""
22113
22114 #. type: verbatim
22115 #: ../fish/guestfish-actions.pod:672
22116 #, no-wrap
22117 msgid ""
22118 " chmod mode path\n"
22119 "\n"
22120 msgstr ""
22121
22122 #. type: =head2
22123 #: ../fish/guestfish-actions.pod:683
22124 msgid "chown"
22125 msgstr ""
22126
22127 #. type: verbatim
22128 #: ../fish/guestfish-actions.pod:685
22129 #, no-wrap
22130 msgid ""
22131 " chown owner group path\n"
22132 "\n"
22133 msgstr ""
22134
22135 #. type: =head2
22136 #: ../fish/guestfish-actions.pod:693
22137 msgid "command"
22138 msgstr ""
22139
22140 #. type: verbatim
22141 #: ../fish/guestfish-actions.pod:695
22142 #, no-wrap
22143 msgid ""
22144 " command 'arguments ...'\n"
22145 "\n"
22146 msgstr ""
22147
22148 #. type: textblock
22149 #: ../fish/guestfish-actions.pod:702
22150 msgid ""
22151 "The single parameter is an argv-style list of arguments.  The first element "
22152 "is the name of the program to run.  Subsequent elements are parameters.  The "
22153 "list must be non-empty (ie. must contain a program name).  Note that the "
22154 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22155 msgstr ""
22156
22157 #. type: =head2
22158 #: ../fish/guestfish-actions.pod:730
22159 msgid "command-lines"
22160 msgstr ""
22161
22162 #. type: verbatim
22163 #: ../fish/guestfish-actions.pod:732
22164 #, no-wrap
22165 msgid ""
22166 " command-lines 'arguments ...'\n"
22167 "\n"
22168 msgstr ""
22169
22170 #. type: textblock
22171 #: ../fish/guestfish-actions.pod:734
22172 msgid "This is the same as L</command>, but splits the result into a list of lines."
22173 msgstr ""
22174
22175 #. type: textblock
22176 #: ../fish/guestfish-actions.pod:737
22177 msgid "See also: L</sh-lines>"
22178 msgstr ""
22179
22180 #. type: =head2
22181 #: ../fish/guestfish-actions.pod:742
22182 msgid "config"
22183 msgstr ""
22184
22185 #. type: verbatim
22186 #: ../fish/guestfish-actions.pod:744
22187 #, no-wrap
22188 msgid ""
22189 " config qemuparam qemuvalue\n"
22190 "\n"
22191 msgstr ""
22192
22193 #. type: =head2
22194 #: ../fish/guestfish-actions.pod:755
22195 msgid "copy-size"
22196 msgstr ""
22197
22198 #. type: verbatim
22199 #: ../fish/guestfish-actions.pod:757
22200 #, no-wrap
22201 msgid ""
22202 " copy-size src dest size\n"
22203 "\n"
22204 msgstr ""
22205
22206 #. type: =head2
22207 #: ../fish/guestfish-actions.pod:765
22208 msgid "cp"
22209 msgstr ""
22210
22211 #. type: verbatim
22212 #: ../fish/guestfish-actions.pod:767
22213 #, no-wrap
22214 msgid ""
22215 " cp src dest\n"
22216 "\n"
22217 msgstr ""
22218
22219 #. type: =head2
22220 #: ../fish/guestfish-actions.pod:772
22221 msgid "cp-a"
22222 msgstr ""
22223
22224 #. type: verbatim
22225 #: ../fish/guestfish-actions.pod:774
22226 #, no-wrap
22227 msgid ""
22228 " cp-a src dest\n"
22229 "\n"
22230 msgstr ""
22231
22232 #. type: =head2
22233 #: ../fish/guestfish-actions.pod:779
22234 msgid "dd"
22235 msgstr ""
22236
22237 #. type: verbatim
22238 #: ../fish/guestfish-actions.pod:781
22239 #, no-wrap
22240 msgid ""
22241 " dd src dest\n"
22242 "\n"
22243 msgstr ""
22244
22245 #. type: textblock
22246 #: ../fish/guestfish-actions.pod:788
22247 msgid ""
22248 "If the destination is a device, it must be as large or larger than the "
22249 "source file or device, otherwise the copy will fail.  This command cannot do "
22250 "partial copies (see L</copy-size>)."
22251 msgstr ""
22252
22253 #. type: =head2
22254 #: ../fish/guestfish-actions.pod:792
22255 msgid "df"
22256 msgstr ""
22257
22258 #. type: verbatim
22259 #: ../fish/guestfish-actions.pod:794
22260 #, no-wrap
22261 msgid ""
22262 " df\n"
22263 "\n"
22264 msgstr ""
22265
22266 #. type: textblock
22267 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
22268 msgid ""
22269 "This command is mostly useful for interactive sessions.  It is I<not> "
22270 "intended that you try to parse the output string.  Use L</statvfs> from "
22271 "programs."
22272 msgstr ""
22273
22274 #. type: =head2
22275 #: ../fish/guestfish-actions.pod:802
22276 msgid "df-h"
22277 msgstr ""
22278
22279 #. type: verbatim
22280 #: ../fish/guestfish-actions.pod:804
22281 #, no-wrap
22282 msgid ""
22283 " df-h\n"
22284 "\n"
22285 msgstr ""
22286
22287 #. type: =head2
22288 #: ../fish/guestfish-actions.pod:813
22289 msgid "dmesg"
22290 msgstr ""
22291
22292 #. type: verbatim
22293 #: ../fish/guestfish-actions.pod:815
22294 #, no-wrap
22295 msgid ""
22296 " dmesg\n"
22297 "\n"
22298 msgstr ""
22299
22300 #. type: textblock
22301 #: ../fish/guestfish-actions.pod:821
22302 msgid ""
22303 "Another way to get the same information is to enable verbose messages with "
22304 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22305 "before running the program."
22306 msgstr ""
22307
22308 #. type: =head2
22309 #: ../fish/guestfish-actions.pod:826
22310 msgid "download"
22311 msgstr ""
22312
22313 #. type: verbatim
22314 #: ../fish/guestfish-actions.pod:828
22315 #, no-wrap
22316 msgid ""
22317 " download remotefilename (filename|-)\n"
22318 "\n"
22319 msgstr ""
22320
22321 #. type: textblock
22322 #: ../fish/guestfish-actions.pod:835
22323 msgid "See also L</upload>, L</cat>."
22324 msgstr ""
22325
22326 #. type: =head2
22327 #: ../fish/guestfish-actions.pod:839
22328 msgid "download-offset"
22329 msgstr ""
22330
22331 #. type: verbatim
22332 #: ../fish/guestfish-actions.pod:841
22333 #, no-wrap
22334 msgid ""
22335 " download-offset remotefilename (filename|-) offset size\n"
22336 "\n"
22337 msgstr ""
22338
22339 #. type: textblock
22340 #: ../fish/guestfish-actions.pod:849
22341 msgid ""
22342 "Note that there is no limit on the amount of data that can be downloaded "
22343 "with this call, unlike with L</pread>, and this call always reads the full "
22344 "amount unless an error occurs."
22345 msgstr ""
22346
22347 #. type: textblock
22348 #: ../fish/guestfish-actions.pod:854
22349 msgid "See also L</download>, L</pread>."
22350 msgstr ""
22351
22352 #. type: =head2
22353 #: ../fish/guestfish-actions.pod:858
22354 msgid "drop-caches"
22355 msgstr ""
22356
22357 #. type: verbatim
22358 #: ../fish/guestfish-actions.pod:860
22359 #, no-wrap
22360 msgid ""
22361 " drop-caches whattodrop\n"
22362 "\n"
22363 msgstr ""
22364
22365 #. type: =head2
22366 #: ../fish/guestfish-actions.pod:872
22367 msgid "du"
22368 msgstr ""
22369
22370 #. type: verbatim
22371 #: ../fish/guestfish-actions.pod:874
22372 #, no-wrap
22373 msgid ""
22374 " du path\n"
22375 "\n"
22376 msgstr ""
22377
22378 #. type: =head2
22379 #: ../fish/guestfish-actions.pod:886
22380 msgid "e2fsck-f"
22381 msgstr ""
22382
22383 #. type: verbatim
22384 #: ../fish/guestfish-actions.pod:888
22385 #, no-wrap
22386 msgid ""
22387 " e2fsck-f device\n"
22388 "\n"
22389 msgstr ""
22390
22391 #. type: textblock
22392 #: ../fish/guestfish-actions.pod:894
22393 msgid ""
22394 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22395 "should use L</fsck>."
22396 msgstr ""
22397
22398 #. type: =head2
22399 #: ../fish/guestfish-actions.pod:897
22400 msgid "echo-daemon"
22401 msgstr ""
22402
22403 #. type: verbatim
22404 #: ../fish/guestfish-actions.pod:899
22405 #, no-wrap
22406 msgid ""
22407 " echo-daemon 'words ...'\n"
22408 "\n"
22409 msgstr ""
22410
22411 #. type: textblock
22412 #: ../fish/guestfish-actions.pod:906
22413 msgid "See also L</ping-daemon>."
22414 msgstr ""
22415
22416 #. type: =head2
22417 #: ../fish/guestfish-actions.pod:908
22418 msgid "egrep"
22419 msgstr ""
22420
22421 #. type: verbatim
22422 #: ../fish/guestfish-actions.pod:910
22423 #, no-wrap
22424 msgid ""
22425 " egrep regex path\n"
22426 "\n"
22427 msgstr ""
22428
22429 #. type: =head2
22430 #: ../fish/guestfish-actions.pod:918
22431 msgid "egrepi"
22432 msgstr ""
22433
22434 #. type: verbatim
22435 #: ../fish/guestfish-actions.pod:920
22436 #, no-wrap
22437 msgid ""
22438 " egrepi regex path\n"
22439 "\n"
22440 msgstr ""
22441
22442 #. type: =head2
22443 #: ../fish/guestfish-actions.pod:928
22444 msgid "equal"
22445 msgstr ""
22446
22447 #. type: verbatim
22448 #: ../fish/guestfish-actions.pod:930
22449 #, no-wrap
22450 msgid ""
22451 " equal file1 file2\n"
22452 "\n"
22453 msgstr ""
22454
22455 #. type: =head2
22456 #: ../fish/guestfish-actions.pod:937
22457 msgid "exists"
22458 msgstr ""
22459
22460 #. type: verbatim
22461 #: ../fish/guestfish-actions.pod:939
22462 #, no-wrap
22463 msgid ""
22464 " exists path\n"
22465 "\n"
22466 msgstr ""
22467
22468 #. type: textblock
22469 #: ../fish/guestfish-actions.pod:944
22470 msgid "See also L</is-file>, L</is-dir>, L</stat>."
22471 msgstr ""
22472
22473 #. type: =head2
22474 #: ../fish/guestfish-actions.pod:946
22475 msgid "fallocate"
22476 msgstr ""
22477
22478 #. type: verbatim
22479 #: ../fish/guestfish-actions.pod:948
22480 #, no-wrap
22481 msgid ""
22482 " fallocate path len\n"
22483 "\n"
22484 msgstr ""
22485
22486 #. type: =head2
22487 #: ../fish/guestfish-actions.pod:965
22488 msgid "fallocate64"
22489 msgstr ""
22490
22491 #. type: verbatim
22492 #: ../fish/guestfish-actions.pod:967
22493 #, no-wrap
22494 msgid ""
22495 " fallocate64 path len\n"
22496 "\n"
22497 msgstr ""
22498
22499 #. type: textblock
22500 #: ../fish/guestfish-actions.pod:973
22501 msgid ""
22502 "Note that this call allocates disk blocks for the file.  To create a sparse "
22503 "file use L</truncate-size> instead."
22504 msgstr ""
22505
22506 #. type: textblock
22507 #: ../fish/guestfish-actions.pod:976
22508 msgid ""
22509 "The deprecated call L</fallocate> does the same, but owing to an oversight "
22510 "it only allowed 30 bit lengths to be specified, effectively limiting the "
22511 "maximum size of files created through that call to 1GB."
22512 msgstr ""
22513
22514 #. type: =head2
22515 #: ../fish/guestfish-actions.pod:985
22516 msgid "fgrep"
22517 msgstr ""
22518
22519 #. type: verbatim
22520 #: ../fish/guestfish-actions.pod:987
22521 #, no-wrap
22522 msgid ""
22523 " fgrep pattern path\n"
22524 "\n"
22525 msgstr ""
22526
22527 #. type: =head2
22528 #: ../fish/guestfish-actions.pod:995
22529 msgid "fgrepi"
22530 msgstr ""
22531
22532 #. type: verbatim
22533 #: ../fish/guestfish-actions.pod:997
22534 #, no-wrap
22535 msgid ""
22536 " fgrepi pattern path\n"
22537 "\n"
22538 msgstr ""
22539
22540 #. type: =head2
22541 #: ../fish/guestfish-actions.pod:1005
22542 msgid "file"
22543 msgstr ""
22544
22545 #. type: verbatim
22546 #: ../fish/guestfish-actions.pod:1007
22547 #, no-wrap
22548 msgid ""
22549 " file path\n"
22550 "\n"
22551 msgstr ""
22552
22553 #. type: textblock
22554 #: ../fish/guestfish-actions.pod:1023
22555 msgid ""
22556 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
22557 "(etc), L</is-zero>."
22558 msgstr ""
22559
22560 #. type: =head2
22561 #: ../fish/guestfish-actions.pod:1026
22562 msgid "file-architecture"
22563 msgstr ""
22564
22565 #. type: verbatim
22566 #: ../fish/guestfish-actions.pod:1028
22567 #, no-wrap
22568 msgid ""
22569 " file-architecture filename\n"
22570 "\n"
22571 msgstr ""
22572
22573 #. type: =head2
22574 #: ../fish/guestfish-actions.pod:1131
22575 msgid "filesize"
22576 msgstr ""
22577
22578 #. type: verbatim
22579 #: ../fish/guestfish-actions.pod:1133
22580 #, no-wrap
22581 msgid ""
22582 " filesize file\n"
22583 "\n"
22584 msgstr ""
22585
22586 #. type: textblock
22587 #: ../fish/guestfish-actions.pod:1137
22588 msgid ""
22589 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
22590 "L</is-file> etc.  To get the size of block devices, use "
22591 "L</blockdev-getsize64>."
22592 msgstr ""
22593
22594 #. type: =head2
22595 #: ../fish/guestfish-actions.pod:1141
22596 msgid "fill"
22597 msgstr ""
22598
22599 #. type: verbatim
22600 #: ../fish/guestfish-actions.pod:1143
22601 #, no-wrap
22602 msgid ""
22603 " fill c len path\n"
22604 "\n"
22605 msgstr ""
22606
22607 #. type: textblock
22608 #: ../fish/guestfish-actions.pod:1149
22609 msgid ""
22610 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
22611 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
22612 "L</fill-pattern>."
22613 msgstr ""
22614
22615 #. type: =head2
22616 #: ../fish/guestfish-actions.pod:1154
22617 msgid "fill-pattern"
22618 msgstr ""
22619
22620 #. type: verbatim
22621 #: ../fish/guestfish-actions.pod:1156
22622 #, no-wrap
22623 msgid ""
22624 " fill-pattern pattern len path\n"
22625 "\n"
22626 msgstr ""
22627
22628 #. type: textblock
22629 #: ../fish/guestfish-actions.pod:1158
22630 msgid ""
22631 "This function is like L</fill> except that it creates a new file of length "
22632 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
22633 "is truncated if necessary to ensure the length of the file is exactly C<len> "
22634 "bytes."
22635 msgstr ""
22636
22637 #. type: =head2
22638 #: ../fish/guestfish-actions.pod:1163
22639 msgid "find"
22640 msgstr ""
22641
22642 #. type: verbatim
22643 #: ../fish/guestfish-actions.pod:1165
22644 #, no-wrap
22645 msgid ""
22646 " find directory\n"
22647 "\n"
22648 msgstr ""
22649
22650 #. type: textblock
22651 #: ../fish/guestfish-actions.pod:1179
22652 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
22653 msgstr ""
22654
22655 #. type: textblock
22656 #: ../fish/guestfish-actions.pod:1192
22657 msgid "See also L</find0>."
22658 msgstr ""
22659
22660 #. type: =head2
22661 #: ../fish/guestfish-actions.pod:1197
22662 msgid "find0"
22663 msgstr ""
22664
22665 #. type: verbatim
22666 #: ../fish/guestfish-actions.pod:1199
22667 #, no-wrap
22668 msgid ""
22669 " find0 directory (files|-)\n"
22670 "\n"
22671 msgstr ""
22672
22673 #. type: textblock
22674 #: ../fish/guestfish-actions.pod:1205
22675 msgid "This command works the same way as L</find> with the following exceptions:"
22676 msgstr ""
22677
22678 #. type: =head2
22679 #: ../fish/guestfish-actions.pod:1232
22680 msgid "findfs-label"
22681 msgstr ""
22682
22683 #. type: verbatim
22684 #: ../fish/guestfish-actions.pod:1234
22685 #, no-wrap
22686 msgid ""
22687 " findfs-label label\n"
22688 "\n"
22689 msgstr ""
22690
22691 #. type: textblock
22692 #: ../fish/guestfish-actions.pod:1240
22693 msgid "To find the label of a filesystem, use L</vfs-label>."
22694 msgstr ""
22695
22696 #. type: =head2
22697 #: ../fish/guestfish-actions.pod:1242
22698 msgid "findfs-uuid"
22699 msgstr ""
22700
22701 #. type: verbatim
22702 #: ../fish/guestfish-actions.pod:1244
22703 #, no-wrap
22704 msgid ""
22705 " findfs-uuid uuid\n"
22706 "\n"
22707 msgstr ""
22708
22709 #. type: textblock
22710 #: ../fish/guestfish-actions.pod:1250
22711 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
22712 msgstr ""
22713
22714 #. type: =head2
22715 #: ../fish/guestfish-actions.pod:1252
22716 msgid "fsck"
22717 msgstr ""
22718
22719 #. type: verbatim
22720 #: ../fish/guestfish-actions.pod:1254
22721 #, no-wrap
22722 msgid ""
22723 " fsck fstype device\n"
22724 "\n"
22725 msgstr ""
22726
22727 #. type: =head2
22728 #: ../fish/guestfish-actions.pod:1284
22729 msgid "get-append"
22730 msgstr ""
22731
22732 #. type: verbatim
22733 #: ../fish/guestfish-actions.pod:1286
22734 #, no-wrap
22735 msgid ""
22736 " get-append\n"
22737 "\n"
22738 msgstr ""
22739
22740 #. type: =head2
22741 #: ../fish/guestfish-actions.pod:1293
22742 msgid "get-attach-method"
22743 msgstr ""
22744
22745 #. type: verbatim
22746 #: ../fish/guestfish-actions.pod:1295
22747 #, no-wrap
22748 msgid ""
22749 " get-attach-method\n"
22750 "\n"
22751 msgstr ""
22752
22753 #. type: textblock
22754 #: ../fish/guestfish-actions.pod:1297
22755 msgid "Return the current attach method.  See L</set-attach-method>."
22756 msgstr ""
22757
22758 #. type: =head2
22759 #: ../fish/guestfish-actions.pod:1299
22760 msgid "get-autosync"
22761 msgstr ""
22762
22763 #. type: verbatim
22764 #: ../fish/guestfish-actions.pod:1301
22765 #, no-wrap
22766 msgid ""
22767 " get-autosync\n"
22768 "\n"
22769 msgstr ""
22770
22771 #. type: =head2
22772 #: ../fish/guestfish-actions.pod:1305
22773 msgid "get-direct"
22774 msgstr ""
22775
22776 #. type: verbatim
22777 #: ../fish/guestfish-actions.pod:1307
22778 #, no-wrap
22779 msgid ""
22780 " get-direct\n"
22781 "\n"
22782 msgstr ""
22783
22784 #. type: =head2
22785 #: ../fish/guestfish-actions.pod:1311
22786 msgid "get-e2label"
22787 msgstr ""
22788
22789 #. type: verbatim
22790 #: ../fish/guestfish-actions.pod:1313
22791 #, no-wrap
22792 msgid ""
22793 " get-e2label device\n"
22794 "\n"
22795 msgstr ""
22796
22797 #. type: =head2
22798 #: ../fish/guestfish-actions.pod:1325
22799 msgid "get-e2uuid"
22800 msgstr ""
22801
22802 #. type: verbatim
22803 #: ../fish/guestfish-actions.pod:1327
22804 #, no-wrap
22805 msgid ""
22806 " get-e2uuid device\n"
22807 "\n"
22808 msgstr ""
22809
22810 #. type: =head2
22811 #: ../fish/guestfish-actions.pod:1339
22812 msgid "get-memsize"
22813 msgstr ""
22814
22815 #. type: verbatim
22816 #: ../fish/guestfish-actions.pod:1341
22817 #, no-wrap
22818 msgid ""
22819 " get-memsize\n"
22820 "\n"
22821 msgstr ""
22822
22823 #. type: textblock
22824 #: ../fish/guestfish-actions.pod:1346
22825 msgid ""
22826 "If L</set-memsize> was not called on this handle, and if "
22827 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
22828 "value for memsize."
22829 msgstr ""
22830
22831 #. type: =head2
22832 #: ../fish/guestfish-actions.pod:1353
22833 msgid "get-network"
22834 msgstr ""
22835
22836 #. type: verbatim
22837 #: ../fish/guestfish-actions.pod:1355
22838 #, no-wrap
22839 msgid ""
22840 " get-network\n"
22841 "\n"
22842 msgstr ""
22843
22844 #. type: =head2
22845 #: ../fish/guestfish-actions.pod:1359
22846 msgid "get-path"
22847 msgstr ""
22848
22849 #. type: verbatim
22850 #: ../fish/guestfish-actions.pod:1361
22851 #, no-wrap
22852 msgid ""
22853 " get-path\n"
22854 "\n"
22855 msgstr ""
22856
22857 #. type: =head2
22858 #: ../fish/guestfish-actions.pod:1368
22859 msgid "get-pid"
22860 msgstr ""
22861
22862 #. type: =head2
22863 #: ../fish/guestfish-actions.pod:1370
22864 msgid "pid"
22865 msgstr ""
22866
22867 #. type: verbatim
22868 #: ../fish/guestfish-actions.pod:1372
22869 #, no-wrap
22870 msgid ""
22871 " get-pid\n"
22872 "\n"
22873 msgstr ""
22874
22875 #. type: =head2
22876 #: ../fish/guestfish-actions.pod:1379
22877 msgid "get-qemu"
22878 msgstr ""
22879
22880 #. type: verbatim
22881 #: ../fish/guestfish-actions.pod:1381
22882 #, no-wrap
22883 msgid ""
22884 " get-qemu\n"
22885 "\n"
22886 msgstr ""
22887
22888 #. type: =head2
22889 #: ../fish/guestfish-actions.pod:1388
22890 msgid "get-recovery-proc"
22891 msgstr ""
22892
22893 #. type: verbatim
22894 #: ../fish/guestfish-actions.pod:1390
22895 #, no-wrap
22896 msgid ""
22897 " get-recovery-proc\n"
22898 "\n"
22899 msgstr ""
22900
22901 #. type: =head2
22902 #: ../fish/guestfish-actions.pod:1394
22903 msgid "get-selinux"
22904 msgstr ""
22905
22906 #. type: verbatim
22907 #: ../fish/guestfish-actions.pod:1396
22908 #, no-wrap
22909 msgid ""
22910 " get-selinux\n"
22911 "\n"
22912 msgstr ""
22913
22914 #. type: textblock
22915 #: ../fish/guestfish-actions.pod:1398
22916 msgid ""
22917 "This returns the current setting of the selinux flag which is passed to the "
22918 "appliance at boot time.  See L</set-selinux>."
22919 msgstr ""
22920
22921 #. type: =head2
22922 #: ../fish/guestfish-actions.pod:1404
22923 msgid "get-state"
22924 msgstr ""
22925
22926 #. type: verbatim
22927 #: ../fish/guestfish-actions.pod:1406
22928 #, no-wrap
22929 msgid ""
22930 " get-state\n"
22931 "\n"
22932 msgstr ""
22933
22934 #. type: =head2
22935 #: ../fish/guestfish-actions.pod:1413
22936 msgid "get-trace"
22937 msgstr ""
22938
22939 #. type: verbatim
22940 #: ../fish/guestfish-actions.pod:1415
22941 #, no-wrap
22942 msgid ""
22943 " get-trace\n"
22944 "\n"
22945 msgstr ""
22946
22947 #. type: =head2
22948 #: ../fish/guestfish-actions.pod:1419
22949 msgid "get-umask"
22950 msgstr ""
22951
22952 #. type: verbatim
22953 #: ../fish/guestfish-actions.pod:1421
22954 #, no-wrap
22955 msgid ""
22956 " get-umask\n"
22957 "\n"
22958 msgstr ""
22959
22960 #. type: textblock
22961 #: ../fish/guestfish-actions.pod:1423
22962 msgid ""
22963 "Return the current umask.  By default the umask is C<022> unless it has been "
22964 "set by calling L</umask>."
22965 msgstr ""
22966
22967 #. type: =head2
22968 #: ../fish/guestfish-actions.pod:1426
22969 msgid "get-verbose"
22970 msgstr ""
22971
22972 #. type: verbatim
22973 #: ../fish/guestfish-actions.pod:1428
22974 #, no-wrap
22975 msgid ""
22976 " get-verbose\n"
22977 "\n"
22978 msgstr ""
22979
22980 #. type: =head2
22981 #: ../fish/guestfish-actions.pod:1432
22982 msgid "getcon"
22983 msgstr ""
22984
22985 #. type: verbatim
22986 #: ../fish/guestfish-actions.pod:1434
22987 #, no-wrap
22988 msgid ""
22989 " getcon\n"
22990 "\n"
22991 msgstr ""
22992
22993 #. type: textblock
22994 #: ../fish/guestfish-actions.pod:1438
22995 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
22996 msgstr ""
22997
22998 #. type: =head2
22999 #: ../fish/guestfish-actions.pod:1441
23000 msgid "getxattr"
23001 msgstr ""
23002
23003 #. type: verbatim
23004 #: ../fish/guestfish-actions.pod:1443
23005 #, no-wrap
23006 msgid ""
23007 " getxattr path name\n"
23008 "\n"
23009 msgstr ""
23010
23011 #. type: textblock
23012 #: ../fish/guestfish-actions.pod:1445
23013 msgid ""
23014 "Get a single extended attribute from file C<path> named C<name>.  This call "
23015 "follows symlinks.  If you want to lookup an extended attribute for the "
23016 "symlink itself, use L</lgetxattr>."
23017 msgstr ""
23018
23019 #. type: textblock
23020 #: ../fish/guestfish-actions.pod:1449 ../fish/guestfish-actions.pod:2470
23021 msgid ""
23022 "Normally it is better to get all extended attributes from a file in one go "
23023 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23024 "buggy and do not provide a way to list out attributes.  For these "
23025 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23026 "attributes you want in advance and call this function."
23027 msgstr ""
23028
23029 #. type: textblock
23030 #: ../fish/guestfish-actions.pod:1459
23031 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23032 msgstr ""
23033
23034 #. type: =head2
23035 #: ../fish/guestfish-actions.pod:1461
23036 msgid "getxattrs"
23037 msgstr ""
23038
23039 #. type: verbatim
23040 #: ../fish/guestfish-actions.pod:1463
23041 #, no-wrap
23042 msgid ""
23043 " getxattrs path\n"
23044 "\n"
23045 msgstr ""
23046
23047 #. type: textblock
23048 #: ../fish/guestfish-actions.pod:1471
23049 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23050 msgstr ""
23051
23052 #. type: =head2
23053 #: ../fish/guestfish-actions.pod:1473
23054 msgid "glob-expand"
23055 msgstr ""
23056
23057 #. type: verbatim
23058 #: ../fish/guestfish-actions.pod:1475
23059 #, no-wrap
23060 msgid ""
23061 " glob-expand pattern\n"
23062 "\n"
23063 msgstr ""
23064
23065 #. type: =head2
23066 #: ../fish/guestfish-actions.pod:1488
23067 msgid "grep"
23068 msgstr ""
23069
23070 #. type: verbatim
23071 #: ../fish/guestfish-actions.pod:1490
23072 #, no-wrap
23073 msgid ""
23074 " grep regex path\n"
23075 "\n"
23076 msgstr ""
23077
23078 #. type: =head2
23079 #: ../fish/guestfish-actions.pod:1498
23080 msgid "grepi"
23081 msgstr ""
23082
23083 #. type: verbatim
23084 #: ../fish/guestfish-actions.pod:1500
23085 #, no-wrap
23086 msgid ""
23087 " grepi regex path\n"
23088 "\n"
23089 msgstr ""
23090
23091 #. type: =head2
23092 #: ../fish/guestfish-actions.pod:1508
23093 msgid "grub-install"
23094 msgstr ""
23095
23096 #. type: verbatim
23097 #: ../fish/guestfish-actions.pod:1510
23098 #, no-wrap
23099 msgid ""
23100 " grub-install root device\n"
23101 "\n"
23102 msgstr ""
23103
23104 #. type: =head2
23105 #: ../fish/guestfish-actions.pod:1526
23106 msgid "head"
23107 msgstr ""
23108
23109 #. type: verbatim
23110 #: ../fish/guestfish-actions.pod:1528
23111 #, no-wrap
23112 msgid ""
23113 " head path\n"
23114 "\n"
23115 msgstr ""
23116
23117 #. type: =head2
23118 #: ../fish/guestfish-actions.pod:1536
23119 msgid "head-n"
23120 msgstr ""
23121
23122 #. type: verbatim
23123 #: ../fish/guestfish-actions.pod:1538
23124 #, no-wrap
23125 msgid ""
23126 " head-n nrlines path\n"
23127 "\n"
23128 msgstr ""
23129
23130 #. type: =head2
23131 #: ../fish/guestfish-actions.pod:1551
23132 msgid "hexdump"
23133 msgstr ""
23134
23135 #. type: verbatim
23136 #: ../fish/guestfish-actions.pod:1553
23137 #, no-wrap
23138 msgid ""
23139 " hexdump path\n"
23140 "\n"
23141 msgstr ""
23142
23143 #. type: =head2
23144 #: ../fish/guestfish-actions.pod:1561
23145 msgid "initrd-cat"
23146 msgstr ""
23147
23148 #. type: verbatim
23149 #: ../fish/guestfish-actions.pod:1563
23150 #, no-wrap
23151 msgid ""
23152 " initrd-cat initrdpath filename\n"
23153 "\n"
23154 msgstr ""
23155
23156 #. type: textblock
23157 #: ../fish/guestfish-actions.pod:1575
23158 msgid "See also L</initrd-list>."
23159 msgstr ""
23160
23161 #. type: =head2
23162 #: ../fish/guestfish-actions.pod:1580
23163 msgid "initrd-list"
23164 msgstr ""
23165
23166 #. type: verbatim
23167 #: ../fish/guestfish-actions.pod:1582
23168 #, no-wrap
23169 msgid ""
23170 " initrd-list path\n"
23171 "\n"
23172 msgstr ""
23173
23174 #. type: =head2
23175 #: ../fish/guestfish-actions.pod:1594
23176 msgid "inotify-add-watch"
23177 msgstr ""
23178
23179 #. type: verbatim
23180 #: ../fish/guestfish-actions.pod:1596
23181 #, no-wrap
23182 msgid ""
23183 " inotify-add-watch path mask\n"
23184 "\n"
23185 msgstr ""
23186
23187 #. type: =head2
23188 #: ../fish/guestfish-actions.pod:1608
23189 msgid "inotify-close"
23190 msgstr ""
23191
23192 #. type: verbatim
23193 #: ../fish/guestfish-actions.pod:1610
23194 #, no-wrap
23195 msgid ""
23196 " inotify-close\n"
23197 "\n"
23198 msgstr ""
23199
23200 #. type: =head2
23201 #: ../fish/guestfish-actions.pod:1616
23202 msgid "inotify-files"
23203 msgstr ""
23204
23205 #. type: verbatim
23206 #: ../fish/guestfish-actions.pod:1618
23207 #, no-wrap
23208 msgid ""
23209 " inotify-files\n"
23210 "\n"
23211 msgstr ""
23212
23213 #. type: textblock
23214 #: ../fish/guestfish-actions.pod:1620
23215 msgid ""
23216 "This function is a helpful wrapper around L</inotify-read> which just "
23217 "returns a list of pathnames of objects that were touched.  The returned "
23218 "pathnames are sorted and deduplicated."
23219 msgstr ""
23220
23221 #. type: =head2
23222 #: ../fish/guestfish-actions.pod:1624
23223 msgid "inotify-init"
23224 msgstr ""
23225
23226 #. type: verbatim
23227 #: ../fish/guestfish-actions.pod:1626
23228 #, no-wrap
23229 msgid ""
23230 " inotify-init maxevents\n"
23231 "\n"
23232 msgstr ""
23233
23234 #. type: textblock
23235 #: ../fish/guestfish-actions.pod:1632
23236 msgid ""
23237 "C<maxevents> is the maximum number of events which will be queued up between "
23238 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23239 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23240 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23241 "but records the fact that it threw them away by setting a flag "
23242 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23243 msgstr ""
23244
23245 #. type: textblock
23246 #: ../fish/guestfish-actions.pod:1642
23247 msgid ""
23248 "Before any events are generated, you have to add some watches to the "
23249 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23250 "L</inotify-watch-all>."
23251 msgstr ""
23252
23253 #. type: textblock
23254 #: ../fish/guestfish-actions.pod:1648
23255 msgid ""
23256 "Queued up events should be read periodically by calling L</inotify-read> (or "
23257 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23258 "If you don't read the events out often enough then you risk the internal "
23259 "queue overflowing."
23260 msgstr ""
23261
23262 #. type: textblock
23263 #: ../fish/guestfish-actions.pod:1655
23264 msgid ""
23265 "The handle should be closed after use by calling L</inotify-close>.  This "
23266 "also removes any watches automatically."
23267 msgstr ""
23268
23269 #. type: =head2
23270 #: ../fish/guestfish-actions.pod:1664
23271 msgid "inotify-read"
23272 msgstr ""
23273
23274 #. type: verbatim
23275 #: ../fish/guestfish-actions.pod:1666
23276 #, no-wrap
23277 msgid ""
23278 " inotify-read\n"
23279 "\n"
23280 msgstr ""
23281
23282 #. type: =head2
23283 #: ../fish/guestfish-actions.pod:1679
23284 msgid "inotify-rm-watch"
23285 msgstr ""
23286
23287 #. type: verbatim
23288 #: ../fish/guestfish-actions.pod:1681
23289 #, no-wrap
23290 msgid ""
23291 " inotify-rm-watch wd\n"
23292 "\n"
23293 msgstr ""
23294
23295 #. type: textblock
23296 #: ../fish/guestfish-actions.pod:1683
23297 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23298 msgstr ""
23299
23300 #. type: =head2
23301 #: ../fish/guestfish-actions.pod:1686
23302 msgid "inspect-get-arch"
23303 msgstr ""
23304
23305 #. type: verbatim
23306 #: ../fish/guestfish-actions.pod:1688
23307 #, no-wrap
23308 msgid ""
23309 " inspect-get-arch root\n"
23310 "\n"
23311 msgstr ""
23312
23313 #. type: textblock
23314 #: ../fish/guestfish-actions.pod:1690 ../fish/guestfish-actions.pod:1706 ../fish/guestfish-actions.pod:1792 ../fish/guestfish-actions.pod:1828 ../fish/guestfish-actions.pod:1846 ../fish/guestfish-actions.pod:1880 ../fish/guestfish-actions.pod:1895 ../fish/guestfish-actions.pod:1916 ../fish/guestfish-actions.pod:1931 ../fish/guestfish-actions.pod:1964 ../fish/guestfish-actions.pod:1986 ../fish/guestfish-actions.pod:2010 ../fish/guestfish-actions.pod:2027 ../fish/guestfish-actions.pod:2070 ../fish/guestfish-actions.pod:2105 ../fish/guestfish-actions.pod:2121 ../fish/guestfish-actions.pod:2137 ../fish/guestfish-actions.pod:2150 ../fish/guestfish-actions.pod:2163 ../fish/guestfish-actions.pod:2178
23315 msgid ""
23316 "This function should only be called with a root device string as returned by "
23317 "L</inspect-os>."
23318 msgstr ""
23319
23320 #. type: textblock
23321 #: ../fish/guestfish-actions.pod:1693
23322 msgid ""
23323 "This returns the architecture of the inspected operating system.  The "
23324 "possible return values are listed under L</file-architecture>."
23325 msgstr ""
23326
23327 #. type: =head2
23328 #: ../fish/guestfish-actions.pod:1702
23329 msgid "inspect-get-distro"
23330 msgstr ""
23331
23332 #. type: verbatim
23333 #: ../fish/guestfish-actions.pod:1704
23334 #, no-wrap
23335 msgid ""
23336 " inspect-get-distro root\n"
23337 "\n"
23338 msgstr ""
23339
23340 #. type: =head2
23341 #: ../fish/guestfish-actions.pod:1788
23342 msgid "inspect-get-drive-mappings"
23343 msgstr ""
23344
23345 #. type: verbatim
23346 #: ../fish/guestfish-actions.pod:1790
23347 #, no-wrap
23348 msgid ""
23349 " inspect-get-drive-mappings root\n"
23350 "\n"
23351 msgstr ""
23352
23353 #. type: textblock
23354 #: ../fish/guestfish-actions.pod:1820
23355 msgid ""
23356 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23357 "L</inspect-get-mountpoints>, L</inspect-get-filesystems>."
23358 msgstr ""
23359
23360 #. type: =head2
23361 #: ../fish/guestfish-actions.pod:1824
23362 msgid "inspect-get-filesystems"
23363 msgstr ""
23364
23365 #. type: verbatim
23366 #: ../fish/guestfish-actions.pod:1826
23367 #, no-wrap
23368 msgid ""
23369 " inspect-get-filesystems root\n"
23370 "\n"
23371 msgstr ""
23372
23373 #. type: textblock
23374 #: ../fish/guestfish-actions.pod:1839
23375 msgid ""
23376 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23377 "L</inspect-get-mountpoints>."
23378 msgstr ""
23379
23380 #. type: =head2
23381 #: ../fish/guestfish-actions.pod:1842
23382 msgid "inspect-get-format"
23383 msgstr ""
23384
23385 #. type: verbatim
23386 #: ../fish/guestfish-actions.pod:1844
23387 #, no-wrap
23388 msgid ""
23389 " inspect-get-format root\n"
23390 "\n"
23391 msgstr ""
23392
23393 #. type: =head2
23394 #: ../fish/guestfish-actions.pod:1876
23395 msgid "inspect-get-hostname"
23396 msgstr ""
23397
23398 #. type: verbatim
23399 #: ../fish/guestfish-actions.pod:1878
23400 #, no-wrap
23401 msgid ""
23402 " inspect-get-hostname root\n"
23403 "\n"
23404 msgstr ""
23405
23406 #. type: =head2
23407 #: ../fish/guestfish-actions.pod:1891
23408 msgid "inspect-get-major-version"
23409 msgstr ""
23410
23411 #. type: verbatim
23412 #: ../fish/guestfish-actions.pod:1893
23413 #, no-wrap
23414 msgid ""
23415 " inspect-get-major-version root\n"
23416 "\n"
23417 msgstr ""
23418
23419 #. type: =head2
23420 #: ../fish/guestfish-actions.pod:1912
23421 msgid "inspect-get-minor-version"
23422 msgstr ""
23423
23424 #. type: verbatim
23425 #: ../fish/guestfish-actions.pod:1914
23426 #, no-wrap
23427 msgid ""
23428 " inspect-get-minor-version root\n"
23429 "\n"
23430 msgstr ""
23431
23432 #. type: textblock
23433 #: ../fish/guestfish-actions.pod:1924
23434 msgid ""
23435 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23436 "L</inspect-get-major-version>."
23437 msgstr ""
23438
23439 #. type: =head2
23440 #: ../fish/guestfish-actions.pod:1927
23441 msgid "inspect-get-mountpoints"
23442 msgstr ""
23443
23444 #. type: verbatim
23445 #: ../fish/guestfish-actions.pod:1929
23446 #, no-wrap
23447 msgid ""
23448 " inspect-get-mountpoints root\n"
23449 "\n"
23450 msgstr ""
23451
23452 #. type: textblock
23453 #: ../fish/guestfish-actions.pod:1951
23454 msgid ""
23455 "For operating systems like Windows which still use drive letters, this call "
23456 "will only return an entry for the first drive \"mounted on\" C</>.  For "
23457 "information about the mapping of drive letters to partitions, see "
23458 "L</inspect-get-drive-mappings>."
23459 msgstr ""
23460
23461 #. type: textblock
23462 #: ../fish/guestfish-actions.pod:1957
23463 msgid ""
23464 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23465 "L</inspect-get-filesystems>."
23466 msgstr ""
23467
23468 #. type: =head2
23469 #: ../fish/guestfish-actions.pod:1960
23470 msgid "inspect-get-package-format"
23471 msgstr ""
23472
23473 #. type: verbatim
23474 #: ../fish/guestfish-actions.pod:1962
23475 #, no-wrap
23476 msgid ""
23477 " inspect-get-package-format root\n"
23478 "\n"
23479 msgstr ""
23480
23481 #. type: textblock
23482 #: ../fish/guestfish-actions.pod:1967
23483 msgid ""
23484 "This function and L</inspect-get-package-management> return the package "
23485 "format and package management tool used by the inspected operating system.  "
23486 "For example for Fedora these functions would return C<rpm> (package format) "
23487 "and C<yum> (package management)."
23488 msgstr ""
23489
23490 #. type: =head2
23491 #: ../fish/guestfish-actions.pod:1982
23492 msgid "inspect-get-package-management"
23493 msgstr ""
23494
23495 #. type: verbatim
23496 #: ../fish/guestfish-actions.pod:1984
23497 #, no-wrap
23498 msgid ""
23499 " inspect-get-package-management root\n"
23500 "\n"
23501 msgstr ""
23502
23503 #. type: textblock
23504 #: ../fish/guestfish-actions.pod:1989
23505 msgid ""
23506 "L</inspect-get-package-format> and this function return the package format "
23507 "and package management tool used by the inspected operating system.  For "
23508 "example for Fedora these functions would return C<rpm> (package format) and "
23509 "C<yum> (package management)."
23510 msgstr ""
23511
23512 #. type: =head2
23513 #: ../fish/guestfish-actions.pod:2006
23514 msgid "inspect-get-product-name"
23515 msgstr ""
23516
23517 #. type: verbatim
23518 #: ../fish/guestfish-actions.pod:2008
23519 #, no-wrap
23520 msgid ""
23521 " inspect-get-product-name root\n"
23522 "\n"
23523 msgstr ""
23524
23525 #. type: =head2
23526 #: ../fish/guestfish-actions.pod:2023
23527 msgid "inspect-get-product-variant"
23528 msgstr ""
23529
23530 #. type: verbatim
23531 #: ../fish/guestfish-actions.pod:2025
23532 #, no-wrap
23533 msgid ""
23534 " inspect-get-product-variant root\n"
23535 "\n"
23536 msgstr ""
23537
23538 #. type: textblock
23539 #: ../fish/guestfish-actions.pod:2049
23540 msgid ""
23541 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23542 "L</inspect-get-product-name>, L</inspect-get-major-version>."
23543 msgstr ""
23544
23545 #. type: =head2
23546 #: ../fish/guestfish-actions.pod:2053
23547 msgid "inspect-get-roots"
23548 msgstr ""
23549
23550 #. type: verbatim
23551 #: ../fish/guestfish-actions.pod:2055
23552 #, no-wrap
23553 msgid ""
23554 " inspect-get-roots\n"
23555 "\n"
23556 msgstr ""
23557
23558 #. type: textblock
23559 #: ../fish/guestfish-actions.pod:2057
23560 msgid ""
23561 "This function is a convenient way to get the list of root devices, as "
23562 "returned from a previous call to L</inspect-os>, but without redoing the "
23563 "whole inspection process."
23564 msgstr ""
23565
23566 #. type: textblock
23567 #: ../fish/guestfish-actions.pod:2061
23568 msgid ""
23569 "This returns an empty list if either no root devices were found or the "
23570 "caller has not called L</inspect-os>."
23571 msgstr ""
23572
23573 #. type: =head2
23574 #: ../fish/guestfish-actions.pod:2066
23575 msgid "inspect-get-type"
23576 msgstr ""
23577
23578 #. type: verbatim
23579 #: ../fish/guestfish-actions.pod:2068
23580 #, no-wrap
23581 msgid ""
23582 " inspect-get-type root\n"
23583 "\n"
23584 msgstr ""
23585
23586 #. type: =head2
23587 #: ../fish/guestfish-actions.pod:2101
23588 msgid "inspect-get-windows-current-control-set"
23589 msgstr ""
23590
23591 #. type: verbatim
23592 #: ../fish/guestfish-actions.pod:2103
23593 #, no-wrap
23594 msgid ""
23595 " inspect-get-windows-current-control-set root\n"
23596 "\n"
23597 msgstr ""
23598
23599 #. type: =head2
23600 #: ../fish/guestfish-actions.pod:2117
23601 msgid "inspect-get-windows-systemroot"
23602 msgstr ""
23603
23604 #. type: verbatim
23605 #: ../fish/guestfish-actions.pod:2119
23606 #, no-wrap
23607 msgid ""
23608 " inspect-get-windows-systemroot root\n"
23609 "\n"
23610 msgstr ""
23611
23612 #. type: =head2
23613 #: ../fish/guestfish-actions.pod:2133
23614 msgid "inspect-is-live"
23615 msgstr ""
23616
23617 #. type: verbatim
23618 #: ../fish/guestfish-actions.pod:2135
23619 #, no-wrap
23620 msgid ""
23621 " inspect-is-live root\n"
23622 "\n"
23623 msgstr ""
23624
23625 #. type: textblock
23626 #: ../fish/guestfish-actions.pod:2140
23627 msgid ""
23628 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23629 "then this returns true if a live image was detected on the disk."
23630 msgstr ""
23631
23632 #. type: =head2
23633 #: ../fish/guestfish-actions.pod:2146
23634 msgid "inspect-is-multipart"
23635 msgstr ""
23636
23637 #. type: verbatim
23638 #: ../fish/guestfish-actions.pod:2148
23639 #, no-wrap
23640 msgid ""
23641 " inspect-is-multipart root\n"
23642 "\n"
23643 msgstr ""
23644
23645 #. type: textblock
23646 #: ../fish/guestfish-actions.pod:2153
23647 msgid ""
23648 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23649 "then this returns true if the disk is part of a set."
23650 msgstr ""
23651
23652 #. type: =head2
23653 #: ../fish/guestfish-actions.pod:2159
23654 msgid "inspect-is-netinst"
23655 msgstr ""
23656
23657 #. type: verbatim
23658 #: ../fish/guestfish-actions.pod:2161
23659 #, no-wrap
23660 msgid ""
23661 " inspect-is-netinst root\n"
23662 "\n"
23663 msgstr ""
23664
23665 #. type: textblock
23666 #: ../fish/guestfish-actions.pod:2166
23667 msgid ""
23668 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23669 "then this returns true if the disk is a network installer, ie. not a "
23670 "self-contained install CD but one which is likely to require network access "
23671 "to complete the install."
23672 msgstr ""
23673
23674 #. type: =head2
23675 #: ../fish/guestfish-actions.pod:2174
23676 msgid "inspect-list-applications"
23677 msgstr ""
23678
23679 #. type: verbatim
23680 #: ../fish/guestfish-actions.pod:2176
23681 #, no-wrap
23682 msgid ""
23683 " inspect-list-applications root\n"
23684 "\n"
23685 msgstr ""
23686
23687 #. type: textblock
23688 #: ../fish/guestfish-actions.pod:2183
23689 msgid ""
23690 "I<Note:> This call works differently from other parts of the inspection "
23691 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
23692 "then mount up the disks, before calling this.  Listing applications is a "
23693 "significantly more difficult operation which requires access to the full "
23694 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
23695 "are just returning data cached in the libguestfs handle, this call actually "
23696 "reads parts of the mounted filesystems during the call."
23697 msgstr ""
23698
23699 #. type: =head2
23700 #: ../fish/guestfish-actions.pod:2273
23701 msgid "inspect-os"
23702 msgstr ""
23703
23704 #. type: verbatim
23705 #: ../fish/guestfish-actions.pod:2275
23706 #, no-wrap
23707 msgid ""
23708 " inspect-os\n"
23709 "\n"
23710 msgstr ""
23711
23712 #. type: textblock
23713 #: ../fish/guestfish-actions.pod:2290
23714 msgid ""
23715 "You can pass the root string(s) returned to other L</inspect-get-*> "
23716 "functions in order to query further information about each operating system, "
23717 "such as the name and version."
23718 msgstr ""
23719
23720 #. type: textblock
23721 #: ../fish/guestfish-actions.pod:2295
23722 msgid ""
23723 "This function uses other libguestfs features such as L</mount-ro> and "
23724 "L</umount-all> in order to mount and unmount filesystems and look at the "
23725 "contents.  This should be called with no disks currently mounted.  The "
23726 "function may also use Augeas, so any existing Augeas handle will be closed."
23727 msgstr ""
23728
23729 #. type: textblock
23730 #: ../fish/guestfish-actions.pod:2307 ../fish/guestfish-actions.pod:2498 ../fish/guestfish-actions.pod:2544
23731 msgid "See also L</list-filesystems>."
23732 msgstr ""
23733
23734 #. type: =head2
23735 #: ../fish/guestfish-actions.pod:2309
23736 msgid "is-blockdev"
23737 msgstr ""
23738
23739 #. type: verbatim
23740 #: ../fish/guestfish-actions.pod:2311
23741 #, no-wrap
23742 msgid ""
23743 " is-blockdev path\n"
23744 "\n"
23745 msgstr ""
23746
23747 #. type: textblock
23748 #: ../fish/guestfish-actions.pod:2316 ../fish/guestfish-actions.pod:2334 ../fish/guestfish-actions.pod:2353 ../fish/guestfish-actions.pod:2362 ../fish/guestfish-actions.pod:2372 ../fish/guestfish-actions.pod:2406 ../fish/guestfish-actions.pod:2415
23749 msgid "See also L</stat>."
23750 msgstr ""
23751
23752 #. type: =head2
23753 #: ../fish/guestfish-actions.pod:2318
23754 msgid "is-busy"
23755 msgstr ""
23756
23757 #. type: verbatim
23758 #: ../fish/guestfish-actions.pod:2320
23759 #, no-wrap
23760 msgid ""
23761 " is-busy\n"
23762 "\n"
23763 msgstr ""
23764
23765 #. type: =head2
23766 #: ../fish/guestfish-actions.pod:2327
23767 msgid "is-chardev"
23768 msgstr ""
23769
23770 #. type: verbatim
23771 #: ../fish/guestfish-actions.pod:2329
23772 #, no-wrap
23773 msgid ""
23774 " is-chardev path\n"
23775 "\n"
23776 msgstr ""
23777
23778 #. type: =head2
23779 #: ../fish/guestfish-actions.pod:2336
23780 msgid "is-config"
23781 msgstr ""
23782
23783 #. type: verbatim
23784 #: ../fish/guestfish-actions.pod:2338
23785 #, no-wrap
23786 msgid ""
23787 " is-config\n"
23788 "\n"
23789 msgstr ""
23790
23791 #. type: =head2
23792 #: ../fish/guestfish-actions.pod:2345
23793 msgid "is-dir"
23794 msgstr ""
23795
23796 #. type: verbatim
23797 #: ../fish/guestfish-actions.pod:2347
23798 #, no-wrap
23799 msgid ""
23800 " is-dir path\n"
23801 "\n"
23802 msgstr ""
23803
23804 #. type: =head2
23805 #: ../fish/guestfish-actions.pod:2355
23806 msgid "is-fifo"
23807 msgstr ""
23808
23809 #. type: verbatim
23810 #: ../fish/guestfish-actions.pod:2357
23811 #, no-wrap
23812 msgid ""
23813 " is-fifo path\n"
23814 "\n"
23815 msgstr ""
23816
23817 #. type: =head2
23818 #: ../fish/guestfish-actions.pod:2364
23819 msgid "is-file"
23820 msgstr ""
23821
23822 #. type: verbatim
23823 #: ../fish/guestfish-actions.pod:2366
23824 #, no-wrap
23825 msgid ""
23826 " is-file path\n"
23827 "\n"
23828 msgstr ""
23829
23830 #. type: =head2
23831 #: ../fish/guestfish-actions.pod:2374
23832 msgid "is-launching"
23833 msgstr ""
23834
23835 #. type: verbatim
23836 #: ../fish/guestfish-actions.pod:2376
23837 #, no-wrap
23838 msgid ""
23839 " is-launching\n"
23840 "\n"
23841 msgstr ""
23842
23843 #. type: =head2
23844 #: ../fish/guestfish-actions.pod:2383
23845 msgid "is-lv"
23846 msgstr ""
23847
23848 #. type: verbatim
23849 #: ../fish/guestfish-actions.pod:2385
23850 #, no-wrap
23851 msgid ""
23852 " is-lv device\n"
23853 "\n"
23854 msgstr ""
23855
23856 #. type: =head2
23857 #: ../fish/guestfish-actions.pod:2390
23858 msgid "is-ready"
23859 msgstr ""
23860
23861 #. type: verbatim
23862 #: ../fish/guestfish-actions.pod:2392
23863 #, no-wrap
23864 msgid ""
23865 " is-ready\n"
23866 "\n"
23867 msgstr ""
23868
23869 #. type: =head2
23870 #: ../fish/guestfish-actions.pod:2399
23871 msgid "is-socket"
23872 msgstr ""
23873
23874 #. type: verbatim
23875 #: ../fish/guestfish-actions.pod:2401
23876 #, no-wrap
23877 msgid ""
23878 " is-socket path\n"
23879 "\n"
23880 msgstr ""
23881
23882 #. type: =head2
23883 #: ../fish/guestfish-actions.pod:2408
23884 msgid "is-symlink"
23885 msgstr ""
23886
23887 #. type: verbatim
23888 #: ../fish/guestfish-actions.pod:2410
23889 #, no-wrap
23890 msgid ""
23891 " is-symlink path\n"
23892 "\n"
23893 msgstr ""
23894
23895 #. type: =head2
23896 #: ../fish/guestfish-actions.pod:2417
23897 msgid "is-zero"
23898 msgstr ""
23899
23900 #. type: verbatim
23901 #: ../fish/guestfish-actions.pod:2419
23902 #, no-wrap
23903 msgid ""
23904 " is-zero path\n"
23905 "\n"
23906 msgstr ""
23907
23908 #. type: =head2
23909 #: ../fish/guestfish-actions.pod:2424
23910 msgid "is-zero-device"
23911 msgstr ""
23912
23913 #. type: verbatim
23914 #: ../fish/guestfish-actions.pod:2426
23915 #, no-wrap
23916 msgid ""
23917 " is-zero-device device\n"
23918 "\n"
23919 msgstr ""
23920
23921 #. type: =head2
23922 #: ../fish/guestfish-actions.pod:2432
23923 msgid "kill-subprocess"
23924 msgstr ""
23925
23926 #. type: verbatim
23927 #: ../fish/guestfish-actions.pod:2434
23928 #, no-wrap
23929 msgid ""
23930 " kill-subprocess\n"
23931 "\n"
23932 msgstr ""
23933
23934 #. type: =head2
23935 #: ../fish/guestfish-actions.pod:2438
23936 msgid "launch"
23937 msgstr ""
23938
23939 #. type: =head2
23940 #: ../fish/guestfish-actions.pod:2440
23941 msgid "run"
23942 msgstr ""
23943
23944 #. type: verbatim
23945 #: ../fish/guestfish-actions.pod:2442
23946 #, no-wrap
23947 msgid ""
23948 " launch\n"
23949 "\n"
23950 msgstr ""
23951
23952 #. type: =head2
23953 #: ../fish/guestfish-actions.pod:2450
23954 msgid "lchown"
23955 msgstr ""
23956
23957 #. type: verbatim
23958 #: ../fish/guestfish-actions.pod:2452
23959 #, no-wrap
23960 msgid ""
23961 " lchown owner group path\n"
23962 "\n"
23963 msgstr ""
23964
23965 #. type: textblock
23966 #: ../fish/guestfish-actions.pod:2454
23967 msgid ""
23968 "Change the file owner to C<owner> and group to C<group>.  This is like "
23969 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
23970 "the target."
23971 msgstr ""
23972
23973 #. type: =head2
23974 #: ../fish/guestfish-actions.pod:2462
23975 msgid "lgetxattr"
23976 msgstr ""
23977
23978 #. type: verbatim
23979 #: ../fish/guestfish-actions.pod:2464
23980 #, no-wrap
23981 msgid ""
23982 " lgetxattr path name\n"
23983 "\n"
23984 msgstr ""
23985
23986 #. type: textblock
23987 #: ../fish/guestfish-actions.pod:2480
23988 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
23989 msgstr ""
23990
23991 #. type: =head2
23992 #: ../fish/guestfish-actions.pod:2482
23993 msgid "lgetxattrs"
23994 msgstr ""
23995
23996 #. type: verbatim
23997 #: ../fish/guestfish-actions.pod:2484
23998 #, no-wrap
23999 msgid ""
24000 " lgetxattrs path\n"
24001 "\n"
24002 msgstr ""
24003
24004 #. type: textblock
24005 #: ../fish/guestfish-actions.pod:2486
24006 msgid ""
24007 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24008 "it returns the extended attributes of the link itself."
24009 msgstr ""
24010
24011 #. type: =head2
24012 #: ../fish/guestfish-actions.pod:2490
24013 msgid "list-devices"
24014 msgstr ""
24015
24016 #. type: verbatim
24017 #: ../fish/guestfish-actions.pod:2492
24018 #, no-wrap
24019 msgid ""
24020 " list-devices\n"
24021 "\n"
24022 msgstr ""
24023
24024 #. type: =head2
24025 #: ../fish/guestfish-actions.pod:2500
24026 msgid "list-filesystems"
24027 msgstr ""
24028
24029 #. type: verbatim
24030 #: ../fish/guestfish-actions.pod:2502
24031 #, no-wrap
24032 msgid ""
24033 " list-filesystems\n"
24034 "\n"
24035 msgstr ""
24036
24037 #. type: textblock
24038 #: ../fish/guestfish-actions.pod:2521
24039 msgid ""
24040 "This command runs other libguestfs commands, which might include L</mount> "
24041 "and L</umount>, and therefore you should use this soon after launch and only "
24042 "when nothing is mounted."
24043 msgstr ""
24044
24045 #. type: textblock
24046 #: ../fish/guestfish-actions.pod:2525
24047 msgid ""
24048 "Not all of the filesystems returned will be mountable.  In particular, swap "
24049 "partitions are returned in the list.  Also this command does not check that "
24050 "each filesystem found is valid and mountable, and some filesystems might be "
24051 "mountable but require special options.  Filesystems may not all belong to a "
24052 "single logical operating system (use L</inspect-os> to look for OSes)."
24053 msgstr ""
24054
24055 #. type: =head2
24056 #: ../fish/guestfish-actions.pod:2533
24057 msgid "list-partitions"
24058 msgstr ""
24059
24060 #. type: verbatim
24061 #: ../fish/guestfish-actions.pod:2535
24062 #, no-wrap
24063 msgid ""
24064 " list-partitions\n"
24065 "\n"
24066 msgstr ""
24067
24068 #. type: textblock
24069 #: ../fish/guestfish-actions.pod:2541
24070 msgid ""
24071 "This does not return logical volumes.  For that you will need to call "
24072 "L</lvs>."
24073 msgstr ""
24074
24075 #. type: =head2
24076 #: ../fish/guestfish-actions.pod:2546
24077 msgid "ll"
24078 msgstr ""
24079
24080 #. type: verbatim
24081 #: ../fish/guestfish-actions.pod:2548
24082 #, no-wrap
24083 msgid ""
24084 " ll directory\n"
24085 "\n"
24086 msgstr ""
24087
24088 #. type: =head2
24089 #: ../fish/guestfish-actions.pod:2556
24090 msgid "ln"
24091 msgstr ""
24092
24093 #. type: verbatim
24094 #: ../fish/guestfish-actions.pod:2558
24095 #, no-wrap
24096 msgid ""
24097 " ln target linkname\n"
24098 "\n"
24099 msgstr ""
24100
24101 #. type: =head2
24102 #: ../fish/guestfish-actions.pod:2562
24103 msgid "ln-f"
24104 msgstr ""
24105
24106 #. type: verbatim
24107 #: ../fish/guestfish-actions.pod:2564
24108 #, no-wrap
24109 msgid ""
24110 " ln-f target linkname\n"
24111 "\n"
24112 msgstr ""
24113
24114 #. type: =head2
24115 #: ../fish/guestfish-actions.pod:2569
24116 msgid "ln-s"
24117 msgstr ""
24118
24119 #. type: verbatim
24120 #: ../fish/guestfish-actions.pod:2571
24121 #, no-wrap
24122 msgid ""
24123 " ln-s target linkname\n"
24124 "\n"
24125 msgstr ""
24126
24127 #. type: =head2
24128 #: ../fish/guestfish-actions.pod:2575
24129 msgid "ln-sf"
24130 msgstr ""
24131
24132 #. type: verbatim
24133 #: ../fish/guestfish-actions.pod:2577
24134 #, no-wrap
24135 msgid ""
24136 " ln-sf target linkname\n"
24137 "\n"
24138 msgstr ""
24139
24140 #. type: =head2
24141 #: ../fish/guestfish-actions.pod:2582
24142 msgid "lremovexattr"
24143 msgstr ""
24144
24145 #. type: verbatim
24146 #: ../fish/guestfish-actions.pod:2584
24147 #, no-wrap
24148 msgid ""
24149 " lremovexattr xattr path\n"
24150 "\n"
24151 msgstr ""
24152
24153 #. type: textblock
24154 #: ../fish/guestfish-actions.pod:2586
24155 msgid ""
24156 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24157 "it removes an extended attribute of the link itself."
24158 msgstr ""
24159
24160 #. type: =head2
24161 #: ../fish/guestfish-actions.pod:2590
24162 msgid "ls"
24163 msgstr ""
24164
24165 #. type: verbatim
24166 #: ../fish/guestfish-actions.pod:2592
24167 #, no-wrap
24168 msgid ""
24169 " ls directory\n"
24170 "\n"
24171 msgstr ""
24172
24173 #. type: textblock
24174 #: ../fish/guestfish-actions.pod:2598
24175 msgid ""
24176 "This command is mostly useful for interactive sessions.  Programs should "
24177 "probably use L</readdir> instead."
24178 msgstr ""
24179
24180 #. type: =head2
24181 #: ../fish/guestfish-actions.pod:2601
24182 msgid "lsetxattr"
24183 msgstr ""
24184
24185 #. type: verbatim
24186 #: ../fish/guestfish-actions.pod:2603
24187 #, no-wrap
24188 msgid ""
24189 " lsetxattr xattr val vallen path\n"
24190 "\n"
24191 msgstr ""
24192
24193 #. type: textblock
24194 #: ../fish/guestfish-actions.pod:2605
24195 msgid ""
24196 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24197 "sets an extended attribute of the link itself."
24198 msgstr ""
24199
24200 #. type: =head2
24201 #: ../fish/guestfish-actions.pod:2609
24202 msgid "lstat"
24203 msgstr ""
24204
24205 #. type: verbatim
24206 #: ../fish/guestfish-actions.pod:2611
24207 #, no-wrap
24208 msgid ""
24209 " lstat path\n"
24210 "\n"
24211 msgstr ""
24212
24213 #. type: textblock
24214 #: ../fish/guestfish-actions.pod:2615
24215 msgid ""
24216 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24217 "the link is stat-ed, not the file it refers to."
24218 msgstr ""
24219
24220 #. type: =head2
24221 #: ../fish/guestfish-actions.pod:2621
24222 msgid "lstatlist"
24223 msgstr ""
24224
24225 #. type: verbatim
24226 #: ../fish/guestfish-actions.pod:2623
24227 #, no-wrap
24228 msgid ""
24229 " lstatlist path 'names ...'\n"
24230 "\n"
24231 msgstr ""
24232
24233 #. type: textblock
24234 #: ../fish/guestfish-actions.pod:2625
24235 msgid ""
24236 "This call allows you to perform the L</lstat> operation on multiple files, "
24237 "where all files are in the directory C<path>.  C<names> is the list of files "
24238 "from this directory."
24239 msgstr ""
24240
24241 #. type: textblock
24242 #: ../fish/guestfish-actions.pod:2634
24243 msgid ""
24244 "This call is intended for programs that want to efficiently list a directory "
24245 "contents without making many round-trips.  See also L</lxattrlist> for a "
24246 "similarly efficient call for getting extended attributes.  Very long "
24247 "directory listings might cause the protocol message size to be exceeded, "
24248 "causing this call to fail.  The caller must split up such requests into "
24249 "smaller groups of names."
24250 msgstr ""
24251
24252 #. type: =head2
24253 #: ../fish/guestfish-actions.pod:2642
24254 msgid "luks-add-key"
24255 msgstr ""
24256
24257 #. type: verbatim
24258 #: ../fish/guestfish-actions.pod:2644
24259 #, no-wrap
24260 msgid ""
24261 " luks-add-key device keyslot\n"
24262 "\n"
24263 msgstr ""
24264
24265 #. type: textblock
24266 #: ../fish/guestfish-actions.pod:2651
24267 msgid ""
24268 "Note that if C<keyslot> already contains a key, then this command will "
24269 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24270 msgstr ""
24271
24272 #. type: textblock
24273 #: ../fish/guestfish-actions.pod:2655 ../fish/guestfish-actions.pod:2677 ../fish/guestfish-actions.pod:2690 ../fish/guestfish-actions.pod:2704 ../fish/guestfish-actions.pod:2727 ../fish/guestfish-actions.pod:2737
24274 msgid ""
24275 "This command has one or more key or passphrase parameters.  Guestfish will "
24276 "prompt for these separately."
24277 msgstr ""
24278
24279 #. type: =head2
24280 #: ../fish/guestfish-actions.pod:2658
24281 msgid "luks-close"
24282 msgstr ""
24283
24284 #. type: verbatim
24285 #: ../fish/guestfish-actions.pod:2660
24286 #, no-wrap
24287 msgid ""
24288 " luks-close device\n"
24289 "\n"
24290 msgstr ""
24291
24292 #. type: textblock
24293 #: ../fish/guestfish-actions.pod:2662
24294 msgid ""
24295 "This closes a LUKS device that was created earlier by L</luks-open> or "
24296 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
24297 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
24298 "underlying block device."
24299 msgstr ""
24300
24301 #. type: =head2
24302 #: ../fish/guestfish-actions.pod:2668
24303 msgid "luks-format"
24304 msgstr ""
24305
24306 #. type: verbatim
24307 #: ../fish/guestfish-actions.pod:2670
24308 #, no-wrap
24309 msgid ""
24310 " luks-format device keyslot\n"
24311 "\n"
24312 msgstr ""
24313
24314 #. type: =head2
24315 #: ../fish/guestfish-actions.pod:2683
24316 msgid "luks-format-cipher"
24317 msgstr ""
24318
24319 #. type: verbatim
24320 #: ../fish/guestfish-actions.pod:2685
24321 #, no-wrap
24322 msgid ""
24323 " luks-format-cipher device keyslot cipher\n"
24324 "\n"
24325 msgstr ""
24326
24327 #. type: textblock
24328 #: ../fish/guestfish-actions.pod:2687
24329 msgid ""
24330 "This command is the same as L</luks-format> but it also allows you to set "
24331 "the C<cipher> used."
24332 msgstr ""
24333
24334 #. type: =head2
24335 #: ../fish/guestfish-actions.pod:2696
24336 msgid "luks-kill-slot"
24337 msgstr ""
24338
24339 #. type: verbatim
24340 #: ../fish/guestfish-actions.pod:2698
24341 #, no-wrap
24342 msgid ""
24343 " luks-kill-slot device keyslot\n"
24344 "\n"
24345 msgstr ""
24346
24347 #. type: =head2
24348 #: ../fish/guestfish-actions.pod:2707
24349 msgid "luks-open"
24350 msgstr ""
24351
24352 #. type: verbatim
24353 #: ../fish/guestfish-actions.pod:2709
24354 #, no-wrap
24355 msgid ""
24356 " luks-open device mapname\n"
24357 "\n"
24358 msgstr ""
24359
24360 #. type: textblock
24361 #: ../fish/guestfish-actions.pod:2723
24362 msgid ""
24363 "If this block device contains LVM volume groups, then calling L</vgscan> "
24364 "followed by L</vg-activate-all> will make them visible."
24365 msgstr ""
24366
24367 #. type: =head2
24368 #: ../fish/guestfish-actions.pod:2730
24369 msgid "luks-open-ro"
24370 msgstr ""
24371
24372 #. type: verbatim
24373 #: ../fish/guestfish-actions.pod:2732
24374 #, no-wrap
24375 msgid ""
24376 " luks-open-ro device mapname\n"
24377 "\n"
24378 msgstr ""
24379
24380 #. type: textblock
24381 #: ../fish/guestfish-actions.pod:2734
24382 msgid ""
24383 "This is the same as L</luks-open> except that a read-only mapping is "
24384 "created."
24385 msgstr ""
24386
24387 #. type: =head2
24388 #: ../fish/guestfish-actions.pod:2740
24389 msgid "lvcreate"
24390 msgstr ""
24391
24392 #. type: verbatim
24393 #: ../fish/guestfish-actions.pod:2742
24394 #, no-wrap
24395 msgid ""
24396 " lvcreate logvol volgroup mbytes\n"
24397 "\n"
24398 msgstr ""
24399
24400 #. type: =head2
24401 #: ../fish/guestfish-actions.pod:2747
24402 msgid "lvm-canonical-lv-name"
24403 msgstr ""
24404
24405 #. type: verbatim
24406 #: ../fish/guestfish-actions.pod:2749
24407 #, no-wrap
24408 msgid ""
24409 " lvm-canonical-lv-name lvname\n"
24410 "\n"
24411 msgstr ""
24412
24413 #. type: textblock
24414 #: ../fish/guestfish-actions.pod:2758
24415 msgid "See also L</is-lv>."
24416 msgstr ""
24417
24418 #. type: =head2
24419 #: ../fish/guestfish-actions.pod:2760
24420 msgid "lvm-clear-filter"
24421 msgstr ""
24422
24423 #. type: verbatim
24424 #: ../fish/guestfish-actions.pod:2762
24425 #, no-wrap
24426 msgid ""
24427 " lvm-clear-filter\n"
24428 "\n"
24429 msgstr ""
24430
24431 #. type: textblock
24432 #: ../fish/guestfish-actions.pod:2764
24433 msgid ""
24434 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24435 "block device."
24436 msgstr ""
24437
24438 #. type: =head2
24439 #: ../fish/guestfish-actions.pod:2770
24440 msgid "lvm-remove-all"
24441 msgstr ""
24442
24443 #. type: verbatim
24444 #: ../fish/guestfish-actions.pod:2772
24445 #, no-wrap
24446 msgid ""
24447 " lvm-remove-all\n"
24448 "\n"
24449 msgstr ""
24450
24451 #. type: =head2
24452 #: ../fish/guestfish-actions.pod:2780
24453 msgid "lvm-set-filter"
24454 msgstr ""
24455
24456 #. type: verbatim
24457 #: ../fish/guestfish-actions.pod:2782
24458 #, no-wrap
24459 msgid ""
24460 " lvm-set-filter 'devices ...'\n"
24461 "\n"
24462 msgstr ""
24463
24464 #. type: =head2
24465 #: ../fish/guestfish-actions.pod:2807
24466 msgid "lvremove"
24467 msgstr ""
24468
24469 #. type: verbatim
24470 #: ../fish/guestfish-actions.pod:2809
24471 #, no-wrap
24472 msgid ""
24473 " lvremove device\n"
24474 "\n"
24475 msgstr ""
24476
24477 #. type: =head2
24478 #: ../fish/guestfish-actions.pod:2817
24479 msgid "lvrename"
24480 msgstr ""
24481
24482 #. type: verbatim
24483 #: ../fish/guestfish-actions.pod:2819
24484 #, no-wrap
24485 msgid ""
24486 " lvrename logvol newlogvol\n"
24487 "\n"
24488 msgstr ""
24489
24490 #. type: =head2
24491 #: ../fish/guestfish-actions.pod:2823
24492 msgid "lvresize"
24493 msgstr ""
24494
24495 #. type: verbatim
24496 #: ../fish/guestfish-actions.pod:2825
24497 #, no-wrap
24498 msgid ""
24499 " lvresize device mbytes\n"
24500 "\n"
24501 msgstr ""
24502
24503 #. type: =head2
24504 #: ../fish/guestfish-actions.pod:2831
24505 msgid "lvresize-free"
24506 msgstr ""
24507
24508 #. type: verbatim
24509 #: ../fish/guestfish-actions.pod:2833
24510 #, no-wrap
24511 msgid ""
24512 " lvresize-free lv percent\n"
24513 "\n"
24514 msgstr ""
24515
24516 #. type: =head2
24517 #: ../fish/guestfish-actions.pod:2841
24518 msgid "lvs"
24519 msgstr ""
24520
24521 #. type: verbatim
24522 #: ../fish/guestfish-actions.pod:2843
24523 #, no-wrap
24524 msgid ""
24525 " lvs\n"
24526 "\n"
24527 msgstr ""
24528
24529 #. type: textblock
24530 #: ../fish/guestfish-actions.pod:2851
24531 msgid "See also L</lvs-full>, L</list-filesystems>."
24532 msgstr ""
24533
24534 #. type: =head2
24535 #: ../fish/guestfish-actions.pod:2853
24536 msgid "lvs-full"
24537 msgstr ""
24538
24539 #. type: verbatim
24540 #: ../fish/guestfish-actions.pod:2855
24541 #, no-wrap
24542 msgid ""
24543 " lvs-full\n"
24544 "\n"
24545 msgstr ""
24546
24547 #. type: =head2
24548 #: ../fish/guestfish-actions.pod:2860
24549 msgid "lvuuid"
24550 msgstr ""
24551
24552 #. type: verbatim
24553 #: ../fish/guestfish-actions.pod:2862
24554 #, no-wrap
24555 msgid ""
24556 " lvuuid device\n"
24557 "\n"
24558 msgstr ""
24559
24560 #. type: =head2
24561 #: ../fish/guestfish-actions.pod:2866
24562 msgid "lxattrlist"
24563 msgstr ""
24564
24565 #. type: verbatim
24566 #: ../fish/guestfish-actions.pod:2868
24567 #, no-wrap
24568 msgid ""
24569 " lxattrlist path 'names ...'\n"
24570 "\n"
24571 msgstr ""
24572
24573 #. type: textblock
24574 #: ../fish/guestfish-actions.pod:2884
24575 msgid ""
24576 "This call is intended for programs that want to efficiently list a directory "
24577 "contents without making many round-trips.  See also L</lstatlist> for a "
24578 "similarly efficient call for getting standard stats.  Very long directory "
24579 "listings might cause the protocol message size to be exceeded, causing this "
24580 "call to fail.  The caller must split up such requests into smaller groups of "
24581 "names."
24582 msgstr ""
24583
24584 #. type: =head2
24585 #: ../fish/guestfish-actions.pod:2892
24586 msgid "mkdir"
24587 msgstr ""
24588
24589 #. type: verbatim
24590 #: ../fish/guestfish-actions.pod:2894
24591 #, no-wrap
24592 msgid ""
24593 " mkdir path\n"
24594 "\n"
24595 msgstr ""
24596
24597 #. type: =head2
24598 #: ../fish/guestfish-actions.pod:2898
24599 msgid "mkdir-mode"
24600 msgstr ""
24601
24602 #. type: verbatim
24603 #: ../fish/guestfish-actions.pod:2900
24604 #, no-wrap
24605 msgid ""
24606 " mkdir-mode path mode\n"
24607 "\n"
24608 msgstr ""
24609
24610 #. type: textblock
24611 #: ../fish/guestfish-actions.pod:2909
24612 msgid "See also L</mkdir>, L</umask>"
24613 msgstr ""
24614
24615 #. type: =head2
24616 #: ../fish/guestfish-actions.pod:2911
24617 msgid "mkdir-p"
24618 msgstr ""
24619
24620 #. type: verbatim
24621 #: ../fish/guestfish-actions.pod:2913
24622 #, no-wrap
24623 msgid ""
24624 " mkdir-p path\n"
24625 "\n"
24626 msgstr ""
24627
24628 #. type: =head2
24629 #: ../fish/guestfish-actions.pod:2918
24630 msgid "mkdtemp"
24631 msgstr ""
24632
24633 #. type: verbatim
24634 #: ../fish/guestfish-actions.pod:2920
24635 #, no-wrap
24636 msgid ""
24637 " mkdtemp template\n"
24638 "\n"
24639 msgstr ""
24640
24641 #. type: =head2
24642 #: ../fish/guestfish-actions.pod:2941
24643 msgid "mke2fs-J"
24644 msgstr ""
24645
24646 #. type: verbatim
24647 #: ../fish/guestfish-actions.pod:2943
24648 #, no-wrap
24649 msgid ""
24650 " mke2fs-J fstype blocksize device journal\n"
24651 "\n"
24652 msgstr ""
24653
24654 #. type: textblock
24655 #: ../fish/guestfish-actions.pod:2951
24656 msgid "See also L</mke2journal>."
24657 msgstr ""
24658
24659 #. type: =head2
24660 #: ../fish/guestfish-actions.pod:2953
24661 msgid "mke2fs-JL"
24662 msgstr ""
24663
24664 #. type: verbatim
24665 #: ../fish/guestfish-actions.pod:2955
24666 #, no-wrap
24667 msgid ""
24668 " mke2fs-JL fstype blocksize device label\n"
24669 "\n"
24670 msgstr ""
24671
24672 #. type: textblock
24673 #: ../fish/guestfish-actions.pod:2960
24674 msgid "See also L</mke2journal-L>."
24675 msgstr ""
24676
24677 #. type: =head2
24678 #: ../fish/guestfish-actions.pod:2962
24679 msgid "mke2fs-JU"
24680 msgstr ""
24681
24682 #. type: verbatim
24683 #: ../fish/guestfish-actions.pod:2964
24684 #, no-wrap
24685 msgid ""
24686 " mke2fs-JU fstype blocksize device uuid\n"
24687 "\n"
24688 msgstr ""
24689
24690 #. type: textblock
24691 #: ../fish/guestfish-actions.pod:2969
24692 msgid "See also L</mke2journal-U>."
24693 msgstr ""
24694
24695 #. type: =head2
24696 #: ../fish/guestfish-actions.pod:2971
24697 msgid "mke2journal"
24698 msgstr ""
24699
24700 #. type: verbatim
24701 #: ../fish/guestfish-actions.pod:2973
24702 #, no-wrap
24703 msgid ""
24704 " mke2journal blocksize device\n"
24705 "\n"
24706 msgstr ""
24707
24708 #. type: =head2
24709 #: ../fish/guestfish-actions.pod:2980
24710 msgid "mke2journal-L"
24711 msgstr ""
24712
24713 #. type: verbatim
24714 #: ../fish/guestfish-actions.pod:2982
24715 #, no-wrap
24716 msgid ""
24717 " mke2journal-L blocksize label device\n"
24718 "\n"
24719 msgstr ""
24720
24721 #. type: =head2
24722 #: ../fish/guestfish-actions.pod:2986
24723 msgid "mke2journal-U"
24724 msgstr ""
24725
24726 #. type: verbatim
24727 #: ../fish/guestfish-actions.pod:2988
24728 #, no-wrap
24729 msgid ""
24730 " mke2journal-U blocksize uuid device\n"
24731 "\n"
24732 msgstr ""
24733
24734 #. type: =head2
24735 #: ../fish/guestfish-actions.pod:2992
24736 msgid "mkfifo"
24737 msgstr ""
24738
24739 #. type: verbatim
24740 #: ../fish/guestfish-actions.pod:2994
24741 #, no-wrap
24742 msgid ""
24743 " mkfifo mode path\n"
24744 "\n"
24745 msgstr ""
24746
24747 #. type: textblock
24748 #: ../fish/guestfish-actions.pod:2996
24749 msgid ""
24750 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
24751 "is just a convenient wrapper around L</mknod>."
24752 msgstr ""
24753
24754 #. type: =head2
24755 #: ../fish/guestfish-actions.pod:3002
24756 msgid "mkfs"
24757 msgstr ""
24758
24759 #. type: verbatim
24760 #: ../fish/guestfish-actions.pod:3004
24761 #, no-wrap
24762 msgid ""
24763 " mkfs fstype device\n"
24764 "\n"
24765 msgstr ""
24766
24767 #. type: =head2
24768 #: ../fish/guestfish-actions.pod:3010
24769 msgid "mkfs-b"
24770 msgstr ""
24771
24772 #. type: verbatim
24773 #: ../fish/guestfish-actions.pod:3012
24774 #, no-wrap
24775 msgid ""
24776 " mkfs-b fstype blocksize device\n"
24777 "\n"
24778 msgstr ""
24779
24780 #. type: textblock
24781 #: ../fish/guestfish-actions.pod:3014
24782 msgid ""
24783 "This call is similar to L</mkfs>, but it allows you to control the block "
24784 "size of the resulting filesystem.  Supported block sizes depend on the "
24785 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
24786 msgstr ""
24787
24788 #. type: =head2
24789 #: ../fish/guestfish-actions.pod:3029
24790 msgid "mkfs-opts"
24791 msgstr ""
24792
24793 #. type: verbatim
24794 #: ../fish/guestfish-actions.pod:3031
24795 #, no-wrap
24796 msgid ""
24797 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
24798 "\n"
24799 msgstr ""
24800
24801 #. type: =head2
24802 #: ../fish/guestfish-actions.pod:3066
24803 msgid "mkmountpoint"
24804 msgstr ""
24805
24806 #. type: verbatim
24807 #: ../fish/guestfish-actions.pod:3068
24808 #, no-wrap
24809 msgid ""
24810 " mkmountpoint exemptpath\n"
24811 "\n"
24812 msgstr ""
24813
24814 #. type: textblock
24815 #: ../fish/guestfish-actions.pod:3070
24816 msgid ""
24817 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
24818 "to create extra mountpoints before mounting the first filesystem."
24819 msgstr ""
24820
24821 #. type: textblock
24822 #: ../fish/guestfish-actions.pod:3094
24823 msgid ""
24824 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
24825 "unexpected errors if you try to mix these calls.  It is safest to manually "
24826 "unmount filesystems and remove mountpoints after use."
24827 msgstr ""
24828
24829 #. type: textblock
24830 #: ../fish/guestfish-actions.pod:3098
24831 msgid ""
24832 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
24833 "for this to work for manual mountpoints, you must ensure that the innermost "
24834 "mountpoints have the longest pathnames, as in the example code above."
24835 msgstr ""
24836
24837 #. type: textblock
24838 #: ../fish/guestfish-actions.pod:3105
24839 msgid ""
24840 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
24841 "L</umount-all> to be called when the handle is closed which can also trigger "
24842 "these issues."
24843 msgstr ""
24844
24845 #. type: =head2
24846 #: ../fish/guestfish-actions.pod:3109
24847 msgid "mknod"
24848 msgstr ""
24849
24850 #. type: verbatim
24851 #: ../fish/guestfish-actions.pod:3111
24852 #, no-wrap
24853 msgid ""
24854 " mknod mode devmajor devminor path\n"
24855 "\n"
24856 msgstr ""
24857
24858 #. type: textblock
24859 #: ../fish/guestfish-actions.pod:3121
24860 msgid ""
24861 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
24862 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
24863 "regular file).  These constants are available in the standard Linux header "
24864 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
24865 "wrappers around this command which bitwise OR in the appropriate constant "
24866 "for you."
24867 msgstr ""
24868
24869 #. type: =head2
24870 #: ../fish/guestfish-actions.pod:3131
24871 msgid "mknod-b"
24872 msgstr ""
24873
24874 #. type: verbatim
24875 #: ../fish/guestfish-actions.pod:3133
24876 #, no-wrap
24877 msgid ""
24878 " mknod-b mode devmajor devminor path\n"
24879 "\n"
24880 msgstr ""
24881
24882 #. type: textblock
24883 #: ../fish/guestfish-actions.pod:3135
24884 msgid ""
24885 "This call creates a block device node called C<path> with mode C<mode> and "
24886 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
24887 "wrapper around L</mknod>."
24888 msgstr ""
24889
24890 #. type: =head2
24891 #: ../fish/guestfish-actions.pod:3141
24892 msgid "mknod-c"
24893 msgstr ""
24894
24895 #. type: verbatim
24896 #: ../fish/guestfish-actions.pod:3143
24897 #, no-wrap
24898 msgid ""
24899 " mknod-c mode devmajor devminor path\n"
24900 "\n"
24901 msgstr ""
24902
24903 #. type: textblock
24904 #: ../fish/guestfish-actions.pod:3145
24905 msgid ""
24906 "This call creates a char device node called C<path> with mode C<mode> and "
24907 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
24908 "wrapper around L</mknod>."
24909 msgstr ""
24910
24911 #. type: =head2
24912 #: ../fish/guestfish-actions.pod:3151
24913 msgid "mkswap"
24914 msgstr ""
24915
24916 #. type: verbatim
24917 #: ../fish/guestfish-actions.pod:3153
24918 #, no-wrap
24919 msgid ""
24920 " mkswap device\n"
24921 "\n"
24922 msgstr ""
24923
24924 #. type: =head2
24925 #: ../fish/guestfish-actions.pod:3157
24926 msgid "mkswap-L"
24927 msgstr ""
24928
24929 #. type: verbatim
24930 #: ../fish/guestfish-actions.pod:3159
24931 #, no-wrap
24932 msgid ""
24933 " mkswap-L label device\n"
24934 "\n"
24935 msgstr ""
24936
24937 #. type: =head2
24938 #: ../fish/guestfish-actions.pod:3167
24939 msgid "mkswap-U"
24940 msgstr ""
24941
24942 #. type: verbatim
24943 #: ../fish/guestfish-actions.pod:3169
24944 #, no-wrap
24945 msgid ""
24946 " mkswap-U uuid device\n"
24947 "\n"
24948 msgstr ""
24949
24950 #. type: =head2
24951 #: ../fish/guestfish-actions.pod:3173
24952 msgid "mkswap-file"
24953 msgstr ""
24954
24955 #. type: verbatim
24956 #: ../fish/guestfish-actions.pod:3175
24957 #, no-wrap
24958 msgid ""
24959 " mkswap-file path\n"
24960 "\n"
24961 msgstr ""
24962
24963 #. type: textblock
24964 #: ../fish/guestfish-actions.pod:3179
24965 msgid ""
24966 "This command just writes a swap file signature to an existing file.  To "
24967 "create the file itself, use something like L</fallocate>."
24968 msgstr ""
24969
24970 #. type: =head2
24971 #: ../fish/guestfish-actions.pod:3182
24972 msgid "modprobe"
24973 msgstr ""
24974
24975 #. type: verbatim
24976 #: ../fish/guestfish-actions.pod:3184
24977 #, no-wrap
24978 msgid ""
24979 " modprobe modulename\n"
24980 "\n"
24981 msgstr ""
24982
24983 #. type: =head2
24984 #: ../fish/guestfish-actions.pod:3191
24985 msgid "mount"
24986 msgstr ""
24987
24988 #. type: verbatim
24989 #: ../fish/guestfish-actions.pod:3193
24990 #, no-wrap
24991 msgid ""
24992 " mount device mountpoint\n"
24993 "\n"
24994 msgstr ""
24995
24996 #. type: textblock
24997 #: ../fish/guestfish-actions.pod:3209
24998 msgid ""
24999 "B<Important note:> When you use this call, the filesystem options C<sync> "
25000 "and C<noatime> are set implicitly.  This was originally done because we "
25001 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25002 "very large negative performance impact and negligible effect on "
25003 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25004 "code that needs performance, and instead use L</mount-options> (use an empty "
25005 "string for the first parameter if you don't want any options)."
25006 msgstr ""
25007
25008 #. type: =head2
25009 #: ../fish/guestfish-actions.pod:3226
25010 msgid "mount-loop"
25011 msgstr ""
25012
25013 #. type: verbatim
25014 #: ../fish/guestfish-actions.pod:3228
25015 #, no-wrap
25016 msgid ""
25017 " mount-loop file mountpoint\n"
25018 "\n"
25019 msgstr ""
25020
25021 #. type: =head2
25022 #: ../fish/guestfish-actions.pod:3234
25023 msgid "mount-options"
25024 msgstr ""
25025
25026 #. type: verbatim
25027 #: ../fish/guestfish-actions.pod:3236
25028 #, no-wrap
25029 msgid ""
25030 " mount-options options device mountpoint\n"
25031 "\n"
25032 msgstr ""
25033
25034 #. type: textblock
25035 #: ../fish/guestfish-actions.pod:3238
25036 msgid ""
25037 "This is the same as the L</mount> command, but it allows you to set the "
25038 "mount options as for the L<mount(8)> I<-o> flag."
25039 msgstr ""
25040
25041 #. type: =head2
25042 #: ../fish/guestfish-actions.pod:3246
25043 msgid "mount-ro"
25044 msgstr ""
25045
25046 #. type: verbatim
25047 #: ../fish/guestfish-actions.pod:3248
25048 #, no-wrap
25049 msgid ""
25050 " mount-ro device mountpoint\n"
25051 "\n"
25052 msgstr ""
25053
25054 #. type: textblock
25055 #: ../fish/guestfish-actions.pod:3250
25056 msgid ""
25057 "This is the same as the L</mount> command, but it mounts the filesystem with "
25058 "the read-only (I<-o ro>) flag."
25059 msgstr ""
25060
25061 #. type: =head2
25062 #: ../fish/guestfish-actions.pod:3253
25063 msgid "mount-vfs"
25064 msgstr ""
25065
25066 #. type: verbatim
25067 #: ../fish/guestfish-actions.pod:3255
25068 #, no-wrap
25069 msgid ""
25070 " mount-vfs options vfstype device mountpoint\n"
25071 "\n"
25072 msgstr ""
25073
25074 #. type: textblock
25075 #: ../fish/guestfish-actions.pod:3257
25076 msgid ""
25077 "This is the same as the L</mount> command, but it allows you to set both the "
25078 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25079 msgstr ""
25080
25081 #. type: =head2
25082 #: ../fish/guestfish-actions.pod:3261
25083 msgid "mountpoints"
25084 msgstr ""
25085
25086 #. type: verbatim
25087 #: ../fish/guestfish-actions.pod:3263
25088 #, no-wrap
25089 msgid ""
25090 " mountpoints\n"
25091 "\n"
25092 msgstr ""
25093
25094 #. type: textblock
25095 #: ../fish/guestfish-actions.pod:3265
25096 msgid ""
25097 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25098 "This one returns a hash table (map) of device name to directory where the "
25099 "device is mounted."
25100 msgstr ""
25101
25102 #. type: =head2
25103 #: ../fish/guestfish-actions.pod:3269
25104 msgid "mounts"
25105 msgstr ""
25106
25107 #. type: verbatim
25108 #: ../fish/guestfish-actions.pod:3271
25109 #, no-wrap
25110 msgid ""
25111 " mounts\n"
25112 "\n"
25113 msgstr ""
25114
25115 #. type: textblock
25116 #: ../fish/guestfish-actions.pod:3278
25117 msgid "See also: L</mountpoints>"
25118 msgstr ""
25119
25120 #. type: =head2
25121 #: ../fish/guestfish-actions.pod:3280
25122 msgid "mv"
25123 msgstr ""
25124
25125 #. type: verbatim
25126 #: ../fish/guestfish-actions.pod:3282
25127 #, no-wrap
25128 msgid ""
25129 " mv src dest\n"
25130 "\n"
25131 msgstr ""
25132
25133 #. type: =head2
25134 #: ../fish/guestfish-actions.pod:3287
25135 msgid "ntfs-3g-probe"
25136 msgstr ""
25137
25138 #. type: verbatim
25139 #: ../fish/guestfish-actions.pod:3289
25140 #, no-wrap
25141 msgid ""
25142 " ntfs-3g-probe true|false device\n"
25143 "\n"
25144 msgstr ""
25145
25146 #. type: =head2
25147 #: ../fish/guestfish-actions.pod:3303
25148 msgid "ntfsresize"
25149 msgstr ""
25150
25151 #. type: verbatim
25152 #: ../fish/guestfish-actions.pod:3305
25153 #, no-wrap
25154 msgid ""
25155 " ntfsresize device\n"
25156 "\n"
25157 msgstr ""
25158
25159 #. type: =head2
25160 #: ../fish/guestfish-actions.pod:3311
25161 msgid "ntfsresize-size"
25162 msgstr ""
25163
25164 #. type: verbatim
25165 #: ../fish/guestfish-actions.pod:3313
25166 #, no-wrap
25167 msgid ""
25168 " ntfsresize-size device size\n"
25169 "\n"
25170 msgstr ""
25171
25172 #. type: textblock
25173 #: ../fish/guestfish-actions.pod:3315
25174 msgid ""
25175 "This command is the same as L</ntfsresize> except that it allows you to "
25176 "specify the new size (in bytes) explicitly."
25177 msgstr ""
25178
25179 #. type: =head2
25180 #: ../fish/guestfish-actions.pod:3318
25181 msgid "part-add"
25182 msgstr ""
25183
25184 #. type: verbatim
25185 #: ../fish/guestfish-actions.pod:3320
25186 #, no-wrap
25187 msgid ""
25188 " part-add device prlogex startsect endsect\n"
25189 "\n"
25190 msgstr ""
25191
25192 #. type: textblock
25193 #: ../fish/guestfish-actions.pod:3322
25194 msgid ""
25195 "This command adds a partition to C<device>.  If there is no partition table "
25196 "on the device, call L</part-init> first."
25197 msgstr ""
25198
25199 #. type: textblock
25200 #: ../fish/guestfish-actions.pod:3334
25201 msgid ""
25202 "Creating a partition which covers the whole disk is not so easy.  Use "
25203 "L</part-disk> to do that."
25204 msgstr ""
25205
25206 #. type: =head2
25207 #: ../fish/guestfish-actions.pod:3337
25208 msgid "part-del"
25209 msgstr ""
25210
25211 #. type: verbatim
25212 #: ../fish/guestfish-actions.pod:3339
25213 #, no-wrap
25214 msgid ""
25215 " part-del device partnum\n"
25216 "\n"
25217 msgstr ""
25218
25219 #. type: =head2
25220 #: ../fish/guestfish-actions.pod:3347
25221 msgid "part-disk"
25222 msgstr ""
25223
25224 #. type: verbatim
25225 #: ../fish/guestfish-actions.pod:3349
25226 #, no-wrap
25227 msgid ""
25228 " part-disk device parttype\n"
25229 "\n"
25230 msgstr ""
25231
25232 #. type: textblock
25233 #: ../fish/guestfish-actions.pod:3351
25234 msgid ""
25235 "This command is simply a combination of L</part-init> followed by "
25236 "L</part-add> to create a single primary partition covering the whole disk."
25237 msgstr ""
25238
25239 #. type: textblock
25240 #: ../fish/guestfish-actions.pod:3355
25241 msgid ""
25242 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25243 "possible values are described in L</part-init>."
25244 msgstr ""
25245
25246 #. type: =head2
25247 #: ../fish/guestfish-actions.pod:3361
25248 msgid "part-get-bootable"
25249 msgstr ""
25250
25251 #. type: verbatim
25252 #: ../fish/guestfish-actions.pod:3363
25253 #, no-wrap
25254 msgid ""
25255 " part-get-bootable device partnum\n"
25256 "\n"
25257 msgstr ""
25258
25259 #. type: textblock
25260 #: ../fish/guestfish-actions.pod:3368
25261 msgid "See also L</part-set-bootable>."
25262 msgstr ""
25263
25264 #. type: =head2
25265 #: ../fish/guestfish-actions.pod:3370
25266 msgid "part-get-mbr-id"
25267 msgstr ""
25268
25269 #. type: verbatim
25270 #: ../fish/guestfish-actions.pod:3372
25271 #, no-wrap
25272 msgid ""
25273 " part-get-mbr-id device partnum\n"
25274 "\n"
25275 msgstr ""
25276
25277 #. type: textblock
25278 #: ../fish/guestfish-actions.pod:3377 ../fish/guestfish-actions.pod:3515
25279 msgid ""
25280 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25281 "undefined results for other partition table types (see "
25282 "L</part-get-parttype>)."
25283 msgstr ""
25284
25285 #. type: =head2
25286 #: ../fish/guestfish-actions.pod:3381
25287 msgid "part-get-parttype"
25288 msgstr ""
25289
25290 #. type: verbatim
25291 #: ../fish/guestfish-actions.pod:3383
25292 #, no-wrap
25293 msgid ""
25294 " part-get-parttype device\n"
25295 "\n"
25296 msgstr ""
25297
25298 #. type: textblock
25299 #: ../fish/guestfish-actions.pod:3388
25300 msgid ""
25301 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25302 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25303 "possible, although unusual.  See L</part-init> for a full list."
25304 msgstr ""
25305
25306 #. type: =head2
25307 #: ../fish/guestfish-actions.pod:3393
25308 msgid "part-init"
25309 msgstr ""
25310
25311 #. type: verbatim
25312 #: ../fish/guestfish-actions.pod:3395
25313 #, no-wrap
25314 msgid ""
25315 " part-init device parttype\n"
25316 "\n"
25317 msgstr ""
25318
25319 #. type: textblock
25320 #: ../fish/guestfish-actions.pod:3401
25321 msgid ""
25322 "Initially there are no partitions.  Following this, you should call "
25323 "L</part-add> for each partition required."
25324 msgstr ""
25325
25326 #. type: =head2
25327 #: ../fish/guestfish-actions.pod:3464
25328 msgid "part-list"
25329 msgstr ""
25330
25331 #. type: verbatim
25332 #: ../fish/guestfish-actions.pod:3466
25333 #, no-wrap
25334 msgid ""
25335 " part-list device\n"
25336 "\n"
25337 msgstr ""
25338
25339 #. type: textblock
25340 #: ../fish/guestfish-actions.pod:3481
25341 msgid ""
25342 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25343 "the device's sector size, see L</blockdev-getss>."
25344 msgstr ""
25345
25346 #. type: =head2
25347 #: ../fish/guestfish-actions.pod:3494
25348 msgid "part-set-bootable"
25349 msgstr ""
25350
25351 #. type: verbatim
25352 #: ../fish/guestfish-actions.pod:3496
25353 #, no-wrap
25354 msgid ""
25355 " part-set-bootable device partnum true|false\n"
25356 "\n"
25357 msgstr ""
25358
25359 #. type: =head2
25360 #: ../fish/guestfish-actions.pod:3505
25361 msgid "part-set-mbr-id"
25362 msgstr ""
25363
25364 #. type: verbatim
25365 #: ../fish/guestfish-actions.pod:3507
25366 #, no-wrap
25367 msgid ""
25368 " part-set-mbr-id device partnum idbyte\n"
25369 "\n"
25370 msgstr ""
25371
25372 #. type: =head2
25373 #: ../fish/guestfish-actions.pod:3519
25374 msgid "part-set-name"
25375 msgstr ""
25376
25377 #. type: verbatim
25378 #: ../fish/guestfish-actions.pod:3521
25379 #, no-wrap
25380 msgid ""
25381 " part-set-name device partnum name\n"
25382 "\n"
25383 msgstr ""
25384
25385 #. type: =head2
25386 #: ../fish/guestfish-actions.pod:3529
25387 msgid "part-to-dev"
25388 msgstr ""
25389
25390 #. type: verbatim
25391 #: ../fish/guestfish-actions.pod:3531
25392 #, no-wrap
25393 msgid ""
25394 " part-to-dev partition\n"
25395 "\n"
25396 msgstr ""
25397
25398 #. type: textblock
25399 #: ../fish/guestfish-actions.pod:3537
25400 msgid ""
25401 "The named partition must exist, for example as a string returned from "
25402 "L</list-partitions>."
25403 msgstr ""
25404
25405 #. type: =head2
25406 #: ../fish/guestfish-actions.pod:3540
25407 msgid "ping-daemon"
25408 msgstr ""
25409
25410 #. type: verbatim
25411 #: ../fish/guestfish-actions.pod:3542
25412 #, no-wrap
25413 msgid ""
25414 " ping-daemon\n"
25415 "\n"
25416 msgstr ""
25417
25418 #. type: =head2
25419 #: ../fish/guestfish-actions.pod:3549
25420 msgid "pread"
25421 msgstr ""
25422
25423 #. type: verbatim
25424 #: ../fish/guestfish-actions.pod:3551
25425 #, no-wrap
25426 msgid ""
25427 " pread path count offset\n"
25428 "\n"
25429 msgstr ""
25430
25431 #. type: textblock
25432 #: ../fish/guestfish-actions.pod:3559
25433 msgid "See also L</pwrite>, L</pread-device>."
25434 msgstr ""
25435
25436 #. type: =head2
25437 #: ../fish/guestfish-actions.pod:3564
25438 msgid "pread-device"
25439 msgstr ""
25440
25441 #. type: verbatim
25442 #: ../fish/guestfish-actions.pod:3566
25443 #, no-wrap
25444 msgid ""
25445 " pread-device device count offset\n"
25446 "\n"
25447 msgstr ""
25448
25449 #. type: textblock
25450 #: ../fish/guestfish-actions.pod:3574
25451 msgid "See also L</pread>."
25452 msgstr ""
25453
25454 #. type: =head2
25455 #: ../fish/guestfish-actions.pod:3579
25456 msgid "pvcreate"
25457 msgstr ""
25458
25459 #. type: verbatim
25460 #: ../fish/guestfish-actions.pod:3581
25461 #, no-wrap
25462 msgid ""
25463 " pvcreate device\n"
25464 "\n"
25465 msgstr ""
25466
25467 #. type: =head2
25468 #: ../fish/guestfish-actions.pod:3587
25469 msgid "pvremove"
25470 msgstr ""
25471
25472 #. type: verbatim
25473 #: ../fish/guestfish-actions.pod:3589
25474 #, no-wrap
25475 msgid ""
25476 " pvremove device\n"
25477 "\n"
25478 msgstr ""
25479
25480 #. type: =head2
25481 #: ../fish/guestfish-actions.pod:3598
25482 msgid "pvresize"
25483 msgstr ""
25484
25485 #. type: verbatim
25486 #: ../fish/guestfish-actions.pod:3600
25487 #, no-wrap
25488 msgid ""
25489 " pvresize device\n"
25490 "\n"
25491 msgstr ""
25492
25493 #. type: =head2
25494 #: ../fish/guestfish-actions.pod:3605
25495 msgid "pvresize-size"
25496 msgstr ""
25497
25498 #. type: verbatim
25499 #: ../fish/guestfish-actions.pod:3607
25500 #, no-wrap
25501 msgid ""
25502 " pvresize-size device size\n"
25503 "\n"
25504 msgstr ""
25505
25506 #. type: textblock
25507 #: ../fish/guestfish-actions.pod:3609
25508 msgid ""
25509 "This command is the same as L</pvresize> except that it allows you to "
25510 "specify the new size (in bytes) explicitly."
25511 msgstr ""
25512
25513 #. type: =head2
25514 #: ../fish/guestfish-actions.pod:3612
25515 msgid "pvs"
25516 msgstr ""
25517
25518 #. type: verbatim
25519 #: ../fish/guestfish-actions.pod:3614
25520 #, no-wrap
25521 msgid ""
25522 " pvs\n"
25523 "\n"
25524 msgstr ""
25525
25526 #. type: textblock
25527 #: ../fish/guestfish-actions.pod:3622
25528 msgid "See also L</pvs-full>."
25529 msgstr ""
25530
25531 #. type: =head2
25532 #: ../fish/guestfish-actions.pod:3624
25533 msgid "pvs-full"
25534 msgstr ""
25535
25536 #. type: verbatim
25537 #: ../fish/guestfish-actions.pod:3626
25538 #, no-wrap
25539 msgid ""
25540 " pvs-full\n"
25541 "\n"
25542 msgstr ""
25543
25544 #. type: =head2
25545 #: ../fish/guestfish-actions.pod:3631
25546 msgid "pvuuid"
25547 msgstr ""
25548
25549 #. type: verbatim
25550 #: ../fish/guestfish-actions.pod:3633
25551 #, no-wrap
25552 msgid ""
25553 " pvuuid device\n"
25554 "\n"
25555 msgstr ""
25556
25557 #. type: =head2
25558 #: ../fish/guestfish-actions.pod:3637
25559 msgid "pwrite"
25560 msgstr ""
25561
25562 #. type: verbatim
25563 #: ../fish/guestfish-actions.pod:3639
25564 #, no-wrap
25565 msgid ""
25566 " pwrite path content offset\n"
25567 "\n"
25568 msgstr ""
25569
25570 #. type: textblock
25571 #: ../fish/guestfish-actions.pod:3650
25572 msgid "See also L</pread>, L</pwrite-device>."
25573 msgstr ""
25574
25575 #. type: =head2
25576 #: ../fish/guestfish-actions.pod:3655
25577 msgid "pwrite-device"
25578 msgstr ""
25579
25580 #. type: verbatim
25581 #: ../fish/guestfish-actions.pod:3657
25582 #, no-wrap
25583 msgid ""
25584 " pwrite-device device content offset\n"
25585 "\n"
25586 msgstr ""
25587
25588 #. type: textblock
25589 #: ../fish/guestfish-actions.pod:3667
25590 msgid "See also L</pwrite>."
25591 msgstr ""
25592
25593 #. type: =head2
25594 #: ../fish/guestfish-actions.pod:3672
25595 msgid "read-file"
25596 msgstr ""
25597
25598 #. type: verbatim
25599 #: ../fish/guestfish-actions.pod:3674
25600 #, no-wrap
25601 msgid ""
25602 " read-file path\n"
25603 "\n"
25604 msgstr ""
25605
25606 #. type: textblock
25607 #: ../fish/guestfish-actions.pod:3679
25608 msgid ""
25609 "Unlike L</cat>, this function can correctly handle files that contain "
25610 "embedded ASCII NUL characters.  However unlike L</download>, this function "
25611 "is limited in the total size of file that can be handled."
25612 msgstr ""
25613
25614 #. type: =head2
25615 #: ../fish/guestfish-actions.pod:3687
25616 msgid "read-lines"
25617 msgstr ""
25618
25619 #. type: verbatim
25620 #: ../fish/guestfish-actions.pod:3689
25621 #, no-wrap
25622 msgid ""
25623 " read-lines path\n"
25624 "\n"
25625 msgstr ""
25626
25627 #. type: textblock
25628 #: ../fish/guestfish-actions.pod:3696
25629 msgid ""
25630 "Note that this function cannot correctly handle binary files (specifically, "
25631 "files containing C<\\0> character which is treated as end of line).  For "
25632 "those you need to use the L</read-file> function which has a more complex "
25633 "interface."
25634 msgstr ""
25635
25636 #. type: =head2
25637 #: ../fish/guestfish-actions.pod:3701
25638 msgid "readdir"
25639 msgstr ""
25640
25641 #. type: verbatim
25642 #: ../fish/guestfish-actions.pod:3703
25643 #, no-wrap
25644 msgid ""
25645 " readdir dir\n"
25646 "\n"
25647 msgstr ""
25648
25649 #. type: textblock
25650 #: ../fish/guestfish-actions.pod:3755
25651 msgid ""
25652 "This function is primarily intended for use by programs.  To get a simple "
25653 "list of names, use L</ls>.  To get a printable directory for human "
25654 "consumption, use L</ll>."
25655 msgstr ""
25656
25657 #. type: =head2
25658 #: ../fish/guestfish-actions.pod:3759
25659 msgid "readlink"
25660 msgstr ""
25661
25662 #. type: verbatim
25663 #: ../fish/guestfish-actions.pod:3761
25664 #, no-wrap
25665 msgid ""
25666 " readlink path\n"
25667 "\n"
25668 msgstr ""
25669
25670 #. type: =head2
25671 #: ../fish/guestfish-actions.pod:3765
25672 msgid "readlinklist"
25673 msgstr ""
25674
25675 #. type: verbatim
25676 #: ../fish/guestfish-actions.pod:3767
25677 #, no-wrap
25678 msgid ""
25679 " readlinklist path 'names ...'\n"
25680 "\n"
25681 msgstr ""
25682
25683 #. type: =head2
25684 #: ../fish/guestfish-actions.pod:3791
25685 msgid "realpath"
25686 msgstr ""
25687
25688 #. type: verbatim
25689 #: ../fish/guestfish-actions.pod:3793
25690 #, no-wrap
25691 msgid ""
25692 " realpath path\n"
25693 "\n"
25694 msgstr ""
25695
25696 #. type: =head2
25697 #: ../fish/guestfish-actions.pod:3798
25698 msgid "removexattr"
25699 msgstr ""
25700
25701 #. type: verbatim
25702 #: ../fish/guestfish-actions.pod:3800
25703 #, no-wrap
25704 msgid ""
25705 " removexattr xattr path\n"
25706 "\n"
25707 msgstr ""
25708
25709 #. type: textblock
25710 #: ../fish/guestfish-actions.pod:3805
25711 msgid "See also: L</lremovexattr>, L<attr(5)>."
25712 msgstr ""
25713
25714 #. type: =head2
25715 #: ../fish/guestfish-actions.pod:3807
25716 msgid "resize2fs"
25717 msgstr ""
25718
25719 #. type: verbatim
25720 #: ../fish/guestfish-actions.pod:3809
25721 #, no-wrap
25722 msgid ""
25723 " resize2fs device\n"
25724 "\n"
25725 msgstr ""
25726
25727 #. type: textblock
25728 #: ../fish/guestfish-actions.pod:3814
25729 msgid ""
25730 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
25731 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
25732 "gives an error about this and sometimes not.  In any case, it is always safe "
25733 "to call L</e2fsck-f> before calling this function."
25734 msgstr ""
25735
25736 #. type: =head2
25737 #: ../fish/guestfish-actions.pod:3820
25738 msgid "resize2fs-M"
25739 msgstr ""
25740
25741 #. type: verbatim
25742 #: ../fish/guestfish-actions.pod:3822
25743 #, no-wrap
25744 msgid ""
25745 " resize2fs-M device\n"
25746 "\n"
25747 msgstr ""
25748
25749 #. type: textblock
25750 #: ../fish/guestfish-actions.pod:3824
25751 msgid ""
25752 "This command is the same as L</resize2fs>, but the filesystem is resized to "
25753 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
25754 "command."
25755 msgstr ""
25756
25757 #. type: textblock
25758 #: ../fish/guestfish-actions.pod:3828
25759 msgid ""
25760 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
25761 "and read the C<Block size> and C<Block count> values.  These two numbers, "
25762 "multiplied together, give the resulting size of the minimal filesystem in "
25763 "bytes."
25764 msgstr ""
25765
25766 #. type: =head2
25767 #: ../fish/guestfish-actions.pod:3833
25768 msgid "resize2fs-size"
25769 msgstr ""
25770
25771 #. type: verbatim
25772 #: ../fish/guestfish-actions.pod:3835
25773 #, no-wrap
25774 msgid ""
25775 " resize2fs-size device size\n"
25776 "\n"
25777 msgstr ""
25778
25779 #. type: textblock
25780 #: ../fish/guestfish-actions.pod:3837
25781 msgid ""
25782 "This command is the same as L</resize2fs> except that it allows you to "
25783 "specify the new size (in bytes) explicitly."
25784 msgstr ""
25785
25786 #. type: =head2
25787 #: ../fish/guestfish-actions.pod:3840
25788 msgid "rm"
25789 msgstr ""
25790
25791 #. type: verbatim
25792 #: ../fish/guestfish-actions.pod:3842
25793 #, no-wrap
25794 msgid ""
25795 " rm path\n"
25796 "\n"
25797 msgstr ""
25798
25799 #. type: =head2
25800 #: ../fish/guestfish-actions.pod:3846
25801 msgid "rm-rf"
25802 msgstr ""
25803
25804 #. type: verbatim
25805 #: ../fish/guestfish-actions.pod:3848
25806 #, no-wrap
25807 msgid ""
25808 " rm-rf path\n"
25809 "\n"
25810 msgstr ""
25811
25812 #. type: =head2
25813 #: ../fish/guestfish-actions.pod:3854
25814 msgid "rmdir"
25815 msgstr ""
25816
25817 #. type: verbatim
25818 #: ../fish/guestfish-actions.pod:3856
25819 #, no-wrap
25820 msgid ""
25821 " rmdir path\n"
25822 "\n"
25823 msgstr ""
25824
25825 #. type: =head2
25826 #: ../fish/guestfish-actions.pod:3860
25827 msgid "rmmountpoint"
25828 msgstr ""
25829
25830 #. type: verbatim
25831 #: ../fish/guestfish-actions.pod:3862
25832 #, no-wrap
25833 msgid ""
25834 " rmmountpoint exemptpath\n"
25835 "\n"
25836 msgstr ""
25837
25838 #. type: textblock
25839 #: ../fish/guestfish-actions.pod:3864
25840 msgid ""
25841 "This calls removes a mountpoint that was previously created with "
25842 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
25843 msgstr ""
25844
25845 #. type: =head2
25846 #: ../fish/guestfish-actions.pod:3868
25847 msgid "scrub-device"
25848 msgstr ""
25849
25850 #. type: verbatim
25851 #: ../fish/guestfish-actions.pod:3870
25852 #, no-wrap
25853 msgid ""
25854 " scrub-device device\n"
25855 "\n"
25856 msgstr ""
25857
25858 #. type: =head2
25859 #: ../fish/guestfish-actions.pod:3881
25860 msgid "scrub-file"
25861 msgstr ""
25862
25863 #. type: verbatim
25864 #: ../fish/guestfish-actions.pod:3883
25865 #, no-wrap
25866 msgid ""
25867 " scrub-file file\n"
25868 "\n"
25869 msgstr ""
25870
25871 #. type: =head2
25872 #: ../fish/guestfish-actions.pod:3893
25873 msgid "scrub-freespace"
25874 msgstr ""
25875
25876 #. type: verbatim
25877 #: ../fish/guestfish-actions.pod:3895
25878 #, no-wrap
25879 msgid ""
25880 " scrub-freespace dir\n"
25881 "\n"
25882 msgstr ""
25883
25884 #. type: textblock
25885 #: ../fish/guestfish-actions.pod:3897
25886 msgid ""
25887 "This command creates the directory C<dir> and then fills it with files until "
25888 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
25889 "deletes them.  The intention is to scrub any free space on the partition "
25890 "containing C<dir>."
25891 msgstr ""
25892
25893 #. type: =head2
25894 #: ../fish/guestfish-actions.pod:3906
25895 msgid "set-append"
25896 msgstr ""
25897
25898 #. type: =head2
25899 #: ../fish/guestfish-actions.pod:3908
25900 msgid "append"
25901 msgstr ""
25902
25903 #. type: verbatim
25904 #: ../fish/guestfish-actions.pod:3910
25905 #, no-wrap
25906 msgid ""
25907 " set-append append\n"
25908 "\n"
25909 msgstr ""
25910
25911 #. type: =head2
25912 #: ../fish/guestfish-actions.pod:3921
25913 msgid "set-attach-method"
25914 msgstr ""
25915
25916 #. type: =head2
25917 #: ../fish/guestfish-actions.pod:3923
25918 msgid "attach-method"
25919 msgstr ""
25920
25921 #. type: verbatim
25922 #: ../fish/guestfish-actions.pod:3925
25923 #, no-wrap
25924 msgid ""
25925 " set-attach-method attachmethod\n"
25926 "\n"
25927 msgstr ""
25928
25929 #. type: =head2
25930 #: ../fish/guestfish-actions.pod:3947
25931 msgid "set-autosync"
25932 msgstr ""
25933
25934 #. type: =head2
25935 #: ../fish/guestfish-actions.pod:3949
25936 msgid "autosync"
25937 msgstr ""
25938
25939 #. type: verbatim
25940 #: ../fish/guestfish-actions.pod:3951
25941 #, no-wrap
25942 msgid ""
25943 " set-autosync true|false\n"
25944 "\n"
25945 msgstr ""
25946
25947 #. type: =head2
25948 #: ../fish/guestfish-actions.pod:3961
25949 msgid "set-direct"
25950 msgstr ""
25951
25952 #. type: =head2
25953 #: ../fish/guestfish-actions.pod:3963
25954 msgid "direct"
25955 msgstr ""
25956
25957 #. type: verbatim
25958 #: ../fish/guestfish-actions.pod:3965
25959 #, no-wrap
25960 msgid ""
25961 " set-direct true|false\n"
25962 "\n"
25963 msgstr ""
25964
25965 #. type: textblock
25966 #: ../fish/guestfish-actions.pod:3971
25967 msgid ""
25968 "One consequence of this is that log messages aren't caught by the library "
25969 "and handled by L</set-log-message-callback>, but go straight to stdout."
25970 msgstr ""
25971
25972 #. type: =head2
25973 #: ../fish/guestfish-actions.pod:3980
25974 msgid "set-e2label"
25975 msgstr ""
25976
25977 #. type: verbatim
25978 #: ../fish/guestfish-actions.pod:3982
25979 #, no-wrap
25980 msgid ""
25981 " set-e2label device label\n"
25982 "\n"
25983 msgstr ""
25984
25985 #. type: textblock
25986 #: ../fish/guestfish-actions.pod:3988
25987 msgid ""
25988 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
25989 "label on a filesystem."
25990 msgstr ""
25991
25992 #. type: =head2
25993 #: ../fish/guestfish-actions.pod:3991
25994 msgid "set-e2uuid"
25995 msgstr ""
25996
25997 #. type: verbatim
25998 #: ../fish/guestfish-actions.pod:3993
25999 #, no-wrap
26000 msgid ""
26001 " set-e2uuid device uuid\n"
26002 "\n"
26003 msgstr ""
26004
26005 #. type: textblock
26006 #: ../fish/guestfish-actions.pod:4000
26007 msgid ""
26008 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26009 "UUID of a filesystem."
26010 msgstr ""
26011
26012 #. type: =head2
26013 #: ../fish/guestfish-actions.pod:4003
26014 msgid "set-memsize"
26015 msgstr ""
26016
26017 #. type: =head2
26018 #: ../fish/guestfish-actions.pod:4005
26019 msgid "memsize"
26020 msgstr ""
26021
26022 #. type: verbatim
26023 #: ../fish/guestfish-actions.pod:4007
26024 #, no-wrap
26025 msgid ""
26026 " set-memsize memsize\n"
26027 "\n"
26028 msgstr ""
26029
26030 #. type: textblock
26031 #: ../fish/guestfish-actions.pod:4009
26032 msgid ""
26033 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26034 "This only has any effect if called before L</launch>."
26035 msgstr ""
26036
26037 #. type: =head2
26038 #: ../fish/guestfish-actions.pod:4020
26039 msgid "set-network"
26040 msgstr ""
26041
26042 #. type: =head2
26043 #: ../fish/guestfish-actions.pod:4022
26044 msgid "network"
26045 msgstr ""
26046
26047 #. type: verbatim
26048 #: ../fish/guestfish-actions.pod:4024
26049 #, no-wrap
26050 msgid ""
26051 " set-network true|false\n"
26052 "\n"
26053 msgstr ""
26054
26055 #. type: textblock
26056 #: ../fish/guestfish-actions.pod:4032
26057 msgid "You must call this before calling L</launch>, otherwise it has no effect."
26058 msgstr ""
26059
26060 #. type: =head2
26061 #: ../fish/guestfish-actions.pod:4035
26062 msgid "set-path"
26063 msgstr ""
26064
26065 #. type: =head2
26066 #: ../fish/guestfish-actions.pod:4037
26067 msgid "path"
26068 msgstr ""
26069
26070 #. type: verbatim
26071 #: ../fish/guestfish-actions.pod:4039
26072 #, no-wrap
26073 msgid ""
26074 " set-path searchpath\n"
26075 "\n"
26076 msgstr ""
26077
26078 #. type: =head2
26079 #: ../fish/guestfish-actions.pod:4048
26080 msgid "set-qemu"
26081 msgstr ""
26082
26083 #. type: =head2
26084 #: ../fish/guestfish-actions.pod:4050
26085 msgid "qemu"
26086 msgstr ""
26087
26088 #. type: verbatim
26089 #: ../fish/guestfish-actions.pod:4052
26090 #, no-wrap
26091 msgid ""
26092 " set-qemu qemu\n"
26093 "\n"
26094 msgstr ""
26095
26096 #. type: =head2
26097 #: ../fish/guestfish-actions.pod:4072
26098 msgid "set-recovery-proc"
26099 msgstr ""
26100
26101 #. type: =head2
26102 #: ../fish/guestfish-actions.pod:4074
26103 msgid "recovery-proc"
26104 msgstr ""
26105
26106 #. type: verbatim
26107 #: ../fish/guestfish-actions.pod:4076
26108 #, no-wrap
26109 msgid ""
26110 " set-recovery-proc true|false\n"
26111 "\n"
26112 msgstr ""
26113
26114 #. type: textblock
26115 #: ../fish/guestfish-actions.pod:4078
26116 msgid ""
26117 "If this is called with the parameter C<false> then L</launch> does not "
26118 "create a recovery process.  The purpose of the recovery process is to stop "
26119 "runaway qemu processes in the case where the main program aborts abruptly."
26120 msgstr ""
26121
26122 #. type: textblock
26123 #: ../fish/guestfish-actions.pod:4083
26124 msgid ""
26125 "This only has any effect if called before L</launch>, and the default is "
26126 "true."
26127 msgstr ""
26128
26129 #. type: =head2
26130 #: ../fish/guestfish-actions.pod:4092
26131 msgid "set-selinux"
26132 msgstr ""
26133
26134 #. type: =head2
26135 #: ../fish/guestfish-actions.pod:4094
26136 msgid "selinux"
26137 msgstr ""
26138
26139 #. type: verbatim
26140 #: ../fish/guestfish-actions.pod:4096
26141 #, no-wrap
26142 msgid ""
26143 " set-selinux true|false\n"
26144 "\n"
26145 msgstr ""
26146
26147 #. type: =head2
26148 #: ../fish/guestfish-actions.pod:4107
26149 msgid "set-trace"
26150 msgstr ""
26151
26152 #. type: =head2
26153 #: ../fish/guestfish-actions.pod:4109
26154 msgid "trace"
26155 msgstr ""
26156
26157 #. type: verbatim
26158 #: ../fish/guestfish-actions.pod:4111
26159 #, no-wrap
26160 msgid ""
26161 " set-trace true|false\n"
26162 "\n"
26163 msgstr ""
26164
26165 #. type: textblock
26166 #: ../fish/guestfish-actions.pod:4123
26167 msgid ""
26168 "Trace messages are normally sent to C<stderr>, unless you register a "
26169 "callback to send them somewhere else (see L</set-event-callback>)."
26170 msgstr ""
26171
26172 #. type: =head2
26173 #: ../fish/guestfish-actions.pod:4127
26174 msgid "set-verbose"
26175 msgstr ""
26176
26177 #. type: =head2
26178 #: ../fish/guestfish-actions.pod:4129
26179 msgid "verbose"
26180 msgstr ""
26181
26182 #. type: verbatim
26183 #: ../fish/guestfish-actions.pod:4131
26184 #, no-wrap
26185 msgid ""
26186 " set-verbose true|false\n"
26187 "\n"
26188 msgstr ""
26189
26190 #. type: textblock
26191 #: ../fish/guestfish-actions.pod:4138
26192 msgid ""
26193 "Verbose messages are normally sent to C<stderr>, unless you register a "
26194 "callback to send them somewhere else (see L</set-event-callback>)."
26195 msgstr ""
26196
26197 #. type: =head2
26198 #: ../fish/guestfish-actions.pod:4142
26199 msgid "setcon"
26200 msgstr ""
26201
26202 #. type: verbatim
26203 #: ../fish/guestfish-actions.pod:4144
26204 #, no-wrap
26205 msgid ""
26206 " setcon context\n"
26207 "\n"
26208 msgstr ""
26209
26210 #. type: =head2
26211 #: ../fish/guestfish-actions.pod:4151
26212 msgid "setxattr"
26213 msgstr ""
26214
26215 #. type: verbatim
26216 #: ../fish/guestfish-actions.pod:4153
26217 #, no-wrap
26218 msgid ""
26219 " setxattr xattr val vallen path\n"
26220 "\n"
26221 msgstr ""
26222
26223 #. type: textblock
26224 #: ../fish/guestfish-actions.pod:4159
26225 msgid "See also: L</lsetxattr>, L<attr(5)>."
26226 msgstr ""
26227
26228 #. type: =head2
26229 #: ../fish/guestfish-actions.pod:4161
26230 msgid "sfdisk"
26231 msgstr ""
26232
26233 #. type: verbatim
26234 #: ../fish/guestfish-actions.pod:4163
26235 #, no-wrap
26236 msgid ""
26237 " sfdisk device cyls heads sectors 'lines ...'\n"
26238 "\n"
26239 msgstr ""
26240
26241 #. type: textblock
26242 #: ../fish/guestfish-actions.pod:4185
26243 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26244 msgstr ""
26245
26246 #. type: =head2
26247 #: ../fish/guestfish-actions.pod:4198
26248 msgid "sfdiskM"
26249 msgstr ""
26250
26251 #. type: verbatim
26252 #: ../fish/guestfish-actions.pod:4200
26253 #, no-wrap
26254 msgid ""
26255 " sfdiskM device 'lines ...'\n"
26256 "\n"
26257 msgstr ""
26258
26259 #. type: textblock
26260 #: ../fish/guestfish-actions.pod:4202
26261 msgid ""
26262 "This is a simplified interface to the L</sfdisk> command, where partition "
26263 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26264 "you don't need to specify the cyls, heads and sectors parameters which were "
26265 "rarely if ever used anyway."
26266 msgstr ""
26267
26268 #. type: textblock
26269 #: ../fish/guestfish-actions.pod:4208
26270 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26271 msgstr ""
26272
26273 #. type: =head2
26274 #: ../fish/guestfish-actions.pod:4221
26275 msgid "sfdisk-N"
26276 msgstr ""
26277
26278 #. type: verbatim
26279 #: ../fish/guestfish-actions.pod:4223
26280 #, no-wrap
26281 msgid ""
26282 " sfdisk-N device partnum cyls heads sectors line\n"
26283 "\n"
26284 msgstr ""
26285
26286 #. type: textblock
26287 #: ../fish/guestfish-actions.pod:4228
26288 msgid ""
26289 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26290 "cyls/heads/sectors parameters."
26291 msgstr ""
26292
26293 #. type: textblock
26294 #: ../fish/guestfish-actions.pod:4231
26295 msgid "See also: L</part-add>"
26296 msgstr ""
26297
26298 #. type: =head2
26299 #: ../fish/guestfish-actions.pod:4243
26300 msgid "sfdisk-disk-geometry"
26301 msgstr ""
26302
26303 #. type: verbatim
26304 #: ../fish/guestfish-actions.pod:4245
26305 #, no-wrap
26306 msgid ""
26307 " sfdisk-disk-geometry device\n"
26308 "\n"
26309 msgstr ""
26310
26311 #. type: textblock
26312 #: ../fish/guestfish-actions.pod:4247
26313 msgid ""
26314 "This displays the disk geometry of C<device> read from the partition table.  "
26315 "Especially in the case where the underlying block device has been resized, "
26316 "this can be different from the kernel's idea of the geometry (see "
26317 "L</sfdisk-kernel-geometry>)."
26318 msgstr ""
26319
26320 #. type: =head2
26321 #: ../fish/guestfish-actions.pod:4255
26322 msgid "sfdisk-kernel-geometry"
26323 msgstr ""
26324
26325 #. type: verbatim
26326 #: ../fish/guestfish-actions.pod:4257
26327 #, no-wrap
26328 msgid ""
26329 " sfdisk-kernel-geometry device\n"
26330 "\n"
26331 msgstr ""
26332
26333 #. type: =head2
26334 #: ../fish/guestfish-actions.pod:4264
26335 msgid "sfdisk-l"
26336 msgstr ""
26337
26338 #. type: verbatim
26339 #: ../fish/guestfish-actions.pod:4266
26340 #, no-wrap
26341 msgid ""
26342 " sfdisk-l device\n"
26343 "\n"
26344 msgstr ""
26345
26346 #. type: textblock
26347 #: ../fish/guestfish-actions.pod:4272
26348 msgid "See also: L</part-list>"
26349 msgstr ""
26350
26351 #. type: =head2
26352 #: ../fish/guestfish-actions.pod:4281
26353 msgid "sh"
26354 msgstr ""
26355
26356 #. type: verbatim
26357 #: ../fish/guestfish-actions.pod:4283
26358 #, no-wrap
26359 msgid ""
26360 " sh command\n"
26361 "\n"
26362 msgstr ""
26363
26364 #. type: textblock
26365 #: ../fish/guestfish-actions.pod:4288
26366 msgid "This is like L</command>, but passes the command to:"
26367 msgstr ""
26368
26369 #. type: textblock
26370 #: ../fish/guestfish-actions.pod:4296
26371 msgid "All the provisos about L</command> apply to this call."
26372 msgstr ""
26373
26374 #. type: =head2
26375 #: ../fish/guestfish-actions.pod:4298
26376 msgid "sh-lines"
26377 msgstr ""
26378
26379 #. type: verbatim
26380 #: ../fish/guestfish-actions.pod:4300
26381 #, no-wrap
26382 msgid ""
26383 " sh-lines command\n"
26384 "\n"
26385 msgstr ""
26386
26387 #. type: textblock
26388 #: ../fish/guestfish-actions.pod:4302
26389 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26390 msgstr ""
26391
26392 #. type: textblock
26393 #: ../fish/guestfish-actions.pod:4305
26394 msgid "See also: L</command-lines>"
26395 msgstr ""
26396
26397 #. type: =head2
26398 #: ../fish/guestfish-actions.pod:4307
26399 msgid "sleep"
26400 msgstr ""
26401
26402 #. type: verbatim
26403 #: ../fish/guestfish-actions.pod:4309
26404 #, no-wrap
26405 msgid ""
26406 " sleep secs\n"
26407 "\n"
26408 msgstr ""
26409
26410 #. type: =head2
26411 #: ../fish/guestfish-actions.pod:4313
26412 msgid "stat"
26413 msgstr ""
26414
26415 #. type: verbatim
26416 #: ../fish/guestfish-actions.pod:4315
26417 #, no-wrap
26418 msgid ""
26419 " stat path\n"
26420 "\n"
26421 msgstr ""
26422
26423 #. type: =head2
26424 #: ../fish/guestfish-actions.pod:4321
26425 msgid "statvfs"
26426 msgstr ""
26427
26428 #. type: verbatim
26429 #: ../fish/guestfish-actions.pod:4323
26430 #, no-wrap
26431 msgid ""
26432 " statvfs path\n"
26433 "\n"
26434 msgstr ""
26435
26436 #. type: =head2
26437 #: ../fish/guestfish-actions.pod:4331
26438 msgid "strings"
26439 msgstr ""
26440
26441 #. type: verbatim
26442 #: ../fish/guestfish-actions.pod:4333
26443 #, no-wrap
26444 msgid ""
26445 " strings path\n"
26446 "\n"
26447 msgstr ""
26448
26449 #. type: =head2
26450 #: ../fish/guestfish-actions.pod:4341
26451 msgid "strings-e"
26452 msgstr ""
26453
26454 #. type: verbatim
26455 #: ../fish/guestfish-actions.pod:4343
26456 #, no-wrap
26457 msgid ""
26458 " strings-e encoding path\n"
26459 "\n"
26460 msgstr ""
26461
26462 #. type: textblock
26463 #: ../fish/guestfish-actions.pod:4345
26464 msgid ""
26465 "This is like the L</strings> command, but allows you to specify the encoding "
26466 "of strings that are looked for in the source file C<path>."
26467 msgstr ""
26468
26469 #. type: textblock
26470 #: ../fish/guestfish-actions.pod:4355
26471 msgid ""
26472 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
26473 "ISO-8859-X (this is what L</strings> uses)."
26474 msgstr ""
26475
26476 #. type: =head2
26477 #: ../fish/guestfish-actions.pod:4387
26478 msgid "swapoff-device"
26479 msgstr ""
26480
26481 #. type: verbatim
26482 #: ../fish/guestfish-actions.pod:4389
26483 #, no-wrap
26484 msgid ""
26485 " swapoff-device device\n"
26486 "\n"
26487 msgstr ""
26488
26489 #. type: textblock
26490 #: ../fish/guestfish-actions.pod:4391
26491 msgid ""
26492 "This command disables the libguestfs appliance swap device or partition "
26493 "named C<device>.  See L</swapon-device>."
26494 msgstr ""
26495
26496 #. type: =head2
26497 #: ../fish/guestfish-actions.pod:4395
26498 msgid "swapoff-file"
26499 msgstr ""
26500
26501 #. type: verbatim
26502 #: ../fish/guestfish-actions.pod:4397
26503 #, no-wrap
26504 msgid ""
26505 " swapoff-file file\n"
26506 "\n"
26507 msgstr ""
26508
26509 #. type: =head2
26510 #: ../fish/guestfish-actions.pod:4401
26511 msgid "swapoff-label"
26512 msgstr ""
26513
26514 #. type: verbatim
26515 #: ../fish/guestfish-actions.pod:4403
26516 #, no-wrap
26517 msgid ""
26518 " swapoff-label label\n"
26519 "\n"
26520 msgstr ""
26521
26522 #. type: =head2
26523 #: ../fish/guestfish-actions.pod:4408
26524 msgid "swapoff-uuid"
26525 msgstr ""
26526
26527 #. type: verbatim
26528 #: ../fish/guestfish-actions.pod:4410
26529 #, no-wrap
26530 msgid ""
26531 " swapoff-uuid uuid\n"
26532 "\n"
26533 msgstr ""
26534
26535 #. type: =head2
26536 #: ../fish/guestfish-actions.pod:4415
26537 msgid "swapon-device"
26538 msgstr ""
26539
26540 #. type: verbatim
26541 #: ../fish/guestfish-actions.pod:4417
26542 #, no-wrap
26543 msgid ""
26544 " swapon-device device\n"
26545 "\n"
26546 msgstr ""
26547
26548 #. type: textblock
26549 #: ../fish/guestfish-actions.pod:4419
26550 msgid ""
26551 "This command enables the libguestfs appliance to use the swap device or "
26552 "partition named C<device>.  The increased memory is made available for all "
26553 "commands, for example those run using L</command> or L</sh>."
26554 msgstr ""
26555
26556 #. type: =head2
26557 #: ../fish/guestfish-actions.pod:4431
26558 msgid "swapon-file"
26559 msgstr ""
26560
26561 #. type: verbatim
26562 #: ../fish/guestfish-actions.pod:4433
26563 #, no-wrap
26564 msgid ""
26565 " swapon-file file\n"
26566 "\n"
26567 msgstr ""
26568
26569 #. type: textblock
26570 #: ../fish/guestfish-actions.pod:4435
26571 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
26572 msgstr ""
26573
26574 #. type: =head2
26575 #: ../fish/guestfish-actions.pod:4438
26576 msgid "swapon-label"
26577 msgstr ""
26578
26579 #. type: verbatim
26580 #: ../fish/guestfish-actions.pod:4440
26581 #, no-wrap
26582 msgid ""
26583 " swapon-label label\n"
26584 "\n"
26585 msgstr ""
26586
26587 #. type: textblock
26588 #: ../fish/guestfish-actions.pod:4442
26589 msgid ""
26590 "This command enables swap to a labeled swap partition.  See "
26591 "L</swapon-device> for other notes."
26592 msgstr ""
26593
26594 #. type: =head2
26595 #: ../fish/guestfish-actions.pod:4445
26596 msgid "swapon-uuid"
26597 msgstr ""
26598
26599 #. type: verbatim
26600 #: ../fish/guestfish-actions.pod:4447
26601 #, no-wrap
26602 msgid ""
26603 " swapon-uuid uuid\n"
26604 "\n"
26605 msgstr ""
26606
26607 #. type: textblock
26608 #: ../fish/guestfish-actions.pod:4449
26609 msgid ""
26610 "This command enables swap to a swap partition with the given UUID.  See "
26611 "L</swapon-device> for other notes."
26612 msgstr ""
26613
26614 #. type: =head2
26615 #: ../fish/guestfish-actions.pod:4452
26616 msgid "sync"
26617 msgstr ""
26618
26619 #. type: verbatim
26620 #: ../fish/guestfish-actions.pod:4454
26621 #, no-wrap
26622 msgid ""
26623 " sync\n"
26624 "\n"
26625 msgstr ""
26626
26627 #. type: =head2
26628 #: ../fish/guestfish-actions.pod:4462
26629 msgid "tail"
26630 msgstr ""
26631
26632 #. type: verbatim
26633 #: ../fish/guestfish-actions.pod:4464
26634 #, no-wrap
26635 msgid ""
26636 " tail path\n"
26637 "\n"
26638 msgstr ""
26639
26640 #. type: =head2
26641 #: ../fish/guestfish-actions.pod:4472
26642 msgid "tail-n"
26643 msgstr ""
26644
26645 #. type: verbatim
26646 #: ../fish/guestfish-actions.pod:4474
26647 #, no-wrap
26648 msgid ""
26649 " tail-n nrlines path\n"
26650 "\n"
26651 msgstr ""
26652
26653 #. type: =head2
26654 #: ../fish/guestfish-actions.pod:4487
26655 msgid "tar-in"
26656 msgstr ""
26657
26658 #. type: verbatim
26659 #: ../fish/guestfish-actions.pod:4489
26660 #, no-wrap
26661 msgid ""
26662 " tar-in (tarfile|-) directory\n"
26663 "\n"
26664 msgstr ""
26665
26666 #. type: textblock
26667 #: ../fish/guestfish-actions.pod:4494
26668 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
26669 msgstr ""
26670
26671 #. type: =head2
26672 #: ../fish/guestfish-actions.pod:4499
26673 msgid "tar-out"
26674 msgstr ""
26675
26676 #. type: verbatim
26677 #: ../fish/guestfish-actions.pod:4501
26678 #, no-wrap
26679 msgid ""
26680 " tar-out directory (tarfile|-)\n"
26681 "\n"
26682 msgstr ""
26683
26684 #. type: textblock
26685 #: ../fish/guestfish-actions.pod:4506
26686 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
26687 msgstr ""
26688
26689 #. type: =head2
26690 #: ../fish/guestfish-actions.pod:4511
26691 msgid "tgz-in"
26692 msgstr ""
26693
26694 #. type: verbatim
26695 #: ../fish/guestfish-actions.pod:4513
26696 #, no-wrap
26697 msgid ""
26698 " tgz-in (tarball|-) directory\n"
26699 "\n"
26700 msgstr ""
26701
26702 #. type: textblock
26703 #: ../fish/guestfish-actions.pod:4518
26704 msgid "To upload an uncompressed tarball, use L</tar-in>."
26705 msgstr ""
26706
26707 #. type: =head2
26708 #: ../fish/guestfish-actions.pod:4522
26709 msgid "tgz-out"
26710 msgstr ""
26711
26712 #. type: verbatim
26713 #: ../fish/guestfish-actions.pod:4524
26714 #, no-wrap
26715 msgid ""
26716 " tgz-out directory (tarball|-)\n"
26717 "\n"
26718 msgstr ""
26719
26720 #. type: textblock
26721 #: ../fish/guestfish-actions.pod:4529
26722 msgid "To download an uncompressed tarball, use L</tar-out>."
26723 msgstr ""
26724
26725 #. type: =head2
26726 #: ../fish/guestfish-actions.pod:4533
26727 msgid "touch"
26728 msgstr ""
26729
26730 #. type: verbatim
26731 #: ../fish/guestfish-actions.pod:4535
26732 #, no-wrap
26733 msgid ""
26734 " touch path\n"
26735 "\n"
26736 msgstr ""
26737
26738 #. type: =head2
26739 #: ../fish/guestfish-actions.pod:4544
26740 msgid "truncate"
26741 msgstr ""
26742
26743 #. type: verbatim
26744 #: ../fish/guestfish-actions.pod:4546
26745 #, no-wrap
26746 msgid ""
26747 " truncate path\n"
26748 "\n"
26749 msgstr ""
26750
26751 #. type: =head2
26752 #: ../fish/guestfish-actions.pod:4551
26753 msgid "truncate-size"
26754 msgstr ""
26755
26756 #. type: verbatim
26757 #: ../fish/guestfish-actions.pod:4553
26758 #, no-wrap
26759 msgid ""
26760 " truncate-size path size\n"
26761 "\n"
26762 msgstr ""
26763
26764 #. type: textblock
26765 #: ../fish/guestfish-actions.pod:4558
26766 msgid ""
26767 "If the current file size is less than C<size> then the file is extended to "
26768 "the required size with zero bytes.  This creates a sparse file (ie. disk "
26769 "blocks are not allocated for the file until you write to it).  To create a "
26770 "non-sparse file of zeroes, use L</fallocate64> instead."
26771 msgstr ""
26772
26773 #. type: =head2
26774 #: ../fish/guestfish-actions.pod:4564
26775 msgid "tune2fs-l"
26776 msgstr ""
26777
26778 #. type: verbatim
26779 #: ../fish/guestfish-actions.pod:4566
26780 #, no-wrap
26781 msgid ""
26782 " tune2fs-l device\n"
26783 "\n"
26784 msgstr ""
26785
26786 #. type: =head2
26787 #: ../fish/guestfish-actions.pod:4576
26788 msgid "txz-in"
26789 msgstr ""
26790
26791 #. type: verbatim
26792 #: ../fish/guestfish-actions.pod:4578
26793 #, no-wrap
26794 msgid ""
26795 " txz-in (tarball|-) directory\n"
26796 "\n"
26797 msgstr ""
26798
26799 #. type: =head2
26800 #: ../fish/guestfish-actions.pod:4585
26801 msgid "txz-out"
26802 msgstr ""
26803
26804 #. type: verbatim
26805 #: ../fish/guestfish-actions.pod:4587
26806 #, no-wrap
26807 msgid ""
26808 " txz-out directory (tarball|-)\n"
26809 "\n"
26810 msgstr ""
26811
26812 #. type: =head2
26813 #: ../fish/guestfish-actions.pod:4594
26814 msgid "umask"
26815 msgstr ""
26816
26817 #. type: verbatim
26818 #: ../fish/guestfish-actions.pod:4596
26819 #, no-wrap
26820 msgid ""
26821 " umask mask\n"
26822 "\n"
26823 msgstr ""
26824
26825 #. type: textblock
26826 #: ../fish/guestfish-actions.pod:4610
26827 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
26828 msgstr ""
26829
26830 #. type: =head2
26831 #: ../fish/guestfish-actions.pod:4615
26832 msgid "umount"
26833 msgstr ""
26834
26835 #. type: =head2
26836 #: ../fish/guestfish-actions.pod:4617
26837 msgid "unmount"
26838 msgstr ""
26839
26840 #. type: verbatim
26841 #: ../fish/guestfish-actions.pod:4619
26842 #, no-wrap
26843 msgid ""
26844 " umount pathordevice\n"
26845 "\n"
26846 msgstr ""
26847
26848 #. type: =head2
26849 #: ../fish/guestfish-actions.pod:4625
26850 msgid "umount-all"
26851 msgstr ""
26852
26853 #. type: =head2
26854 #: ../fish/guestfish-actions.pod:4627
26855 msgid "unmount-all"
26856 msgstr ""
26857
26858 #. type: verbatim
26859 #: ../fish/guestfish-actions.pod:4629
26860 #, no-wrap
26861 msgid ""
26862 " umount-all\n"
26863 "\n"
26864 msgstr ""
26865
26866 #. type: =head2
26867 #: ../fish/guestfish-actions.pod:4635
26868 msgid "upload"
26869 msgstr ""
26870
26871 #. type: verbatim
26872 #: ../fish/guestfish-actions.pod:4637
26873 #, no-wrap
26874 msgid ""
26875 " upload (filename|-) remotefilename\n"
26876 "\n"
26877 msgstr ""
26878
26879 #. type: textblock
26880 #: ../fish/guestfish-actions.pod:4644
26881 msgid "See also L</download>."
26882 msgstr ""
26883
26884 #. type: =head2
26885 #: ../fish/guestfish-actions.pod:4648
26886 msgid "upload-offset"
26887 msgstr ""
26888
26889 #. type: verbatim
26890 #: ../fish/guestfish-actions.pod:4650
26891 #, no-wrap
26892 msgid ""
26893 " upload-offset (filename|-) remotefilename offset\n"
26894 "\n"
26895 msgstr ""
26896
26897 #. type: textblock
26898 #: ../fish/guestfish-actions.pod:4662
26899 msgid ""
26900 "Note that there is no limit on the amount of data that can be uploaded with "
26901 "this call, unlike with L</pwrite>, and this call always writes the full "
26902 "amount unless an error occurs."
26903 msgstr ""
26904
26905 #. type: textblock
26906 #: ../fish/guestfish-actions.pod:4667
26907 msgid "See also L</upload>, L</pwrite>."
26908 msgstr ""
26909
26910 #. type: =head2
26911 #: ../fish/guestfish-actions.pod:4671
26912 msgid "utimens"
26913 msgstr ""
26914
26915 #. type: verbatim
26916 #: ../fish/guestfish-actions.pod:4673
26917 #, no-wrap
26918 msgid ""
26919 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
26920 "\n"
26921 msgstr ""
26922
26923 #. type: =head2
26924 #: ../fish/guestfish-actions.pod:4692
26925 msgid "version"
26926 msgstr ""
26927
26928 #. type: verbatim
26929 #: ../fish/guestfish-actions.pod:4694
26930 #, no-wrap
26931 msgid ""
26932 " version\n"
26933 "\n"
26934 msgstr ""
26935
26936 #. type: textblock
26937 #: ../fish/guestfish-actions.pod:4721
26938 msgid ""
26939 "I<Note:> Don't use this call to test for availability of features.  In "
26940 "enterprise distributions we backport features from later versions into "
26941 "earlier versions, making this an unreliable way to test for features.  Use "
26942 "L</available> instead."
26943 msgstr ""
26944
26945 #. type: =head2
26946 #: ../fish/guestfish-actions.pod:4727
26947 msgid "vfs-label"
26948 msgstr ""
26949
26950 #. type: verbatim
26951 #: ../fish/guestfish-actions.pod:4729
26952 #, no-wrap
26953 msgid ""
26954 " vfs-label device\n"
26955 "\n"
26956 msgstr ""
26957
26958 #. type: textblock
26959 #: ../fish/guestfish-actions.pod:4736
26960 msgid "To find a filesystem from the label, use L</findfs-label>."
26961 msgstr ""
26962
26963 #. type: =head2
26964 #: ../fish/guestfish-actions.pod:4738
26965 msgid "vfs-type"
26966 msgstr ""
26967
26968 #. type: verbatim
26969 #: ../fish/guestfish-actions.pod:4740
26970 #, no-wrap
26971 msgid ""
26972 " vfs-type device\n"
26973 "\n"
26974 msgstr ""
26975
26976 #. type: =head2
26977 #: ../fish/guestfish-actions.pod:4750
26978 msgid "vfs-uuid"
26979 msgstr ""
26980
26981 #. type: verbatim
26982 #: ../fish/guestfish-actions.pod:4752
26983 #, no-wrap
26984 msgid ""
26985 " vfs-uuid device\n"
26986 "\n"
26987 msgstr ""
26988
26989 #. type: textblock
26990 #: ../fish/guestfish-actions.pod:4759
26991 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
26992 msgstr ""
26993
26994 #. type: =head2
26995 #: ../fish/guestfish-actions.pod:4761
26996 msgid "vg-activate"
26997 msgstr ""
26998
26999 #. type: verbatim
27000 #: ../fish/guestfish-actions.pod:4763
27001 #, no-wrap
27002 msgid ""
27003 " vg-activate true|false 'volgroups ...'\n"
27004 "\n"
27005 msgstr ""
27006
27007 #. type: =head2
27008 #: ../fish/guestfish-actions.pod:4776
27009 msgid "vg-activate-all"
27010 msgstr ""
27011
27012 #. type: verbatim
27013 #: ../fish/guestfish-actions.pod:4778
27014 #, no-wrap
27015 msgid ""
27016 " vg-activate-all true|false\n"
27017 "\n"
27018 msgstr ""
27019
27020 #. type: =head2
27021 #: ../fish/guestfish-actions.pod:4788
27022 msgid "vgcreate"
27023 msgstr ""
27024
27025 #. type: verbatim
27026 #: ../fish/guestfish-actions.pod:4790
27027 #, no-wrap
27028 msgid ""
27029 " vgcreate volgroup 'physvols ...'\n"
27030 "\n"
27031 msgstr ""
27032
27033 #. type: =head2
27034 #: ../fish/guestfish-actions.pod:4795
27035 msgid "vglvuuids"
27036 msgstr ""
27037
27038 #. type: verbatim
27039 #: ../fish/guestfish-actions.pod:4797
27040 #, no-wrap
27041 msgid ""
27042 " vglvuuids vgname\n"
27043 "\n"
27044 msgstr ""
27045
27046 #. type: textblock
27047 #: ../fish/guestfish-actions.pod:4802
27048 msgid ""
27049 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27050 "logical volumes and volume groups."
27051 msgstr ""
27052
27053 #. type: textblock
27054 #: ../fish/guestfish-actions.pod:4805
27055 msgid "See also L</vgpvuuids>."
27056 msgstr ""
27057
27058 #. type: =head2
27059 #: ../fish/guestfish-actions.pod:4807
27060 msgid "vgpvuuids"
27061 msgstr ""
27062
27063 #. type: verbatim
27064 #: ../fish/guestfish-actions.pod:4809
27065 #, no-wrap
27066 msgid ""
27067 " vgpvuuids vgname\n"
27068 "\n"
27069 msgstr ""
27070
27071 #. type: textblock
27072 #: ../fish/guestfish-actions.pod:4814
27073 msgid ""
27074 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27075 "physical volumes and volume groups."
27076 msgstr ""
27077
27078 #. type: textblock
27079 #: ../fish/guestfish-actions.pod:4817
27080 msgid "See also L</vglvuuids>."
27081 msgstr ""
27082
27083 #. type: =head2
27084 #: ../fish/guestfish-actions.pod:4819
27085 msgid "vgremove"
27086 msgstr ""
27087
27088 #. type: verbatim
27089 #: ../fish/guestfish-actions.pod:4821
27090 #, no-wrap
27091 msgid ""
27092 " vgremove vgname\n"
27093 "\n"
27094 msgstr ""
27095
27096 #. type: =head2
27097 #: ../fish/guestfish-actions.pod:4828
27098 msgid "vgrename"
27099 msgstr ""
27100
27101 #. type: verbatim
27102 #: ../fish/guestfish-actions.pod:4830
27103 #, no-wrap
27104 msgid ""
27105 " vgrename volgroup newvolgroup\n"
27106 "\n"
27107 msgstr ""
27108
27109 #. type: =head2
27110 #: ../fish/guestfish-actions.pod:4834
27111 msgid "vgs"
27112 msgstr ""
27113
27114 #. type: verbatim
27115 #: ../fish/guestfish-actions.pod:4836
27116 #, no-wrap
27117 msgid ""
27118 " vgs\n"
27119 "\n"
27120 msgstr ""
27121
27122 #. type: textblock
27123 #: ../fish/guestfish-actions.pod:4844
27124 msgid "See also L</vgs-full>."
27125 msgstr ""
27126
27127 #. type: =head2
27128 #: ../fish/guestfish-actions.pod:4846
27129 msgid "vgs-full"
27130 msgstr ""
27131
27132 #. type: verbatim
27133 #: ../fish/guestfish-actions.pod:4848
27134 #, no-wrap
27135 msgid ""
27136 " vgs-full\n"
27137 "\n"
27138 msgstr ""
27139
27140 #. type: =head2
27141 #: ../fish/guestfish-actions.pod:4853
27142 msgid "vgscan"
27143 msgstr ""
27144
27145 #. type: verbatim
27146 #: ../fish/guestfish-actions.pod:4855
27147 #, no-wrap
27148 msgid ""
27149 " vgscan\n"
27150 "\n"
27151 msgstr ""
27152
27153 #. type: =head2
27154 #: ../fish/guestfish-actions.pod:4860
27155 msgid "vguuid"
27156 msgstr ""
27157
27158 #. type: verbatim
27159 #: ../fish/guestfish-actions.pod:4862
27160 #, no-wrap
27161 msgid ""
27162 " vguuid vgname\n"
27163 "\n"
27164 msgstr ""
27165
27166 #. type: =head2
27167 #: ../fish/guestfish-actions.pod:4866
27168 msgid "wc-c"
27169 msgstr ""
27170
27171 #. type: verbatim
27172 #: ../fish/guestfish-actions.pod:4868
27173 #, no-wrap
27174 msgid ""
27175 " wc-c path\n"
27176 "\n"
27177 msgstr ""
27178
27179 #. type: =head2
27180 #: ../fish/guestfish-actions.pod:4873
27181 msgid "wc-l"
27182 msgstr ""
27183
27184 #. type: verbatim
27185 #: ../fish/guestfish-actions.pod:4875
27186 #, no-wrap
27187 msgid ""
27188 " wc-l path\n"
27189 "\n"
27190 msgstr ""
27191
27192 #. type: =head2
27193 #: ../fish/guestfish-actions.pod:4880
27194 msgid "wc-w"
27195 msgstr ""
27196
27197 #. type: verbatim
27198 #: ../fish/guestfish-actions.pod:4882
27199 #, no-wrap
27200 msgid ""
27201 " wc-w path\n"
27202 "\n"
27203 msgstr ""
27204
27205 #. type: =head2
27206 #: ../fish/guestfish-actions.pod:4887
27207 msgid "write"
27208 msgstr ""
27209
27210 #. type: verbatim
27211 #: ../fish/guestfish-actions.pod:4889
27212 #, no-wrap
27213 msgid ""
27214 " write path content\n"
27215 "\n"
27216 msgstr ""
27217
27218 #. type: =head2
27219 #: ../fish/guestfish-actions.pod:4897
27220 msgid "write-file"
27221 msgstr ""
27222
27223 #. type: verbatim
27224 #: ../fish/guestfish-actions.pod:4899
27225 #, no-wrap
27226 msgid ""
27227 " write-file path content size\n"
27228 "\n"
27229 msgstr ""
27230
27231 #. type: =head2
27232 #: ../fish/guestfish-actions.pod:4922
27233 msgid "zegrep"
27234 msgstr ""
27235
27236 #. type: verbatim
27237 #: ../fish/guestfish-actions.pod:4924
27238 #, no-wrap
27239 msgid ""
27240 " zegrep regex path\n"
27241 "\n"
27242 msgstr ""
27243
27244 #. type: =head2
27245 #: ../fish/guestfish-actions.pod:4932
27246 msgid "zegrepi"
27247 msgstr ""
27248
27249 #. type: verbatim
27250 #: ../fish/guestfish-actions.pod:4934
27251 #, no-wrap
27252 msgid ""
27253 " zegrepi regex path\n"
27254 "\n"
27255 msgstr ""
27256
27257 #. type: =head2
27258 #: ../fish/guestfish-actions.pod:4942
27259 msgid "zero"
27260 msgstr ""
27261
27262 #. type: verbatim
27263 #: ../fish/guestfish-actions.pod:4944
27264 #, no-wrap
27265 msgid ""
27266 " zero device\n"
27267 "\n"
27268 msgstr ""
27269
27270 #. type: textblock
27271 #: ../fish/guestfish-actions.pod:4952
27272 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
27273 msgstr ""
27274
27275 #. type: =head2
27276 #: ../fish/guestfish-actions.pod:4955
27277 msgid "zero-device"
27278 msgstr ""
27279
27280 #. type: verbatim
27281 #: ../fish/guestfish-actions.pod:4957
27282 #, no-wrap
27283 msgid ""
27284 " zero-device device\n"
27285 "\n"
27286 msgstr ""
27287
27288 #. type: textblock
27289 #: ../fish/guestfish-actions.pod:4959
27290 msgid ""
27291 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27292 "which just zeroes the first few blocks of a device."
27293 msgstr ""
27294
27295 #. type: =head2
27296 #: ../fish/guestfish-actions.pod:4966
27297 msgid "zerofree"
27298 msgstr ""
27299
27300 #. type: verbatim
27301 #: ../fish/guestfish-actions.pod:4968
27302 #, no-wrap
27303 msgid ""
27304 " zerofree device\n"
27305 "\n"
27306 msgstr ""
27307
27308 #. type: =head2
27309 #: ../fish/guestfish-actions.pod:4981
27310 msgid "zfgrep"
27311 msgstr ""
27312
27313 #. type: verbatim
27314 #: ../fish/guestfish-actions.pod:4983
27315 #, no-wrap
27316 msgid ""
27317 " zfgrep pattern path\n"
27318 "\n"
27319 msgstr ""
27320
27321 #. type: =head2
27322 #: ../fish/guestfish-actions.pod:4991
27323 msgid "zfgrepi"
27324 msgstr ""
27325
27326 #. type: verbatim
27327 #: ../fish/guestfish-actions.pod:4993
27328 #, no-wrap
27329 msgid ""
27330 " zfgrepi pattern path\n"
27331 "\n"
27332 msgstr ""
27333
27334 #. type: =head2
27335 #: ../fish/guestfish-actions.pod:5001
27336 msgid "zfile"
27337 msgstr ""
27338
27339 #. type: verbatim
27340 #: ../fish/guestfish-actions.pod:5003
27341 #, no-wrap
27342 msgid ""
27343 " zfile meth path\n"
27344 "\n"
27345 msgstr ""
27346
27347 #. type: textblock
27348 #: ../fish/guestfish-actions.pod:5010
27349 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
27350 msgstr ""
27351
27352 #. type: =head2
27353 #: ../fish/guestfish-actions.pod:5020
27354 msgid "zgrep"
27355 msgstr ""
27356
27357 #. type: verbatim
27358 #: ../fish/guestfish-actions.pod:5022
27359 #, no-wrap
27360 msgid ""
27361 " zgrep regex path\n"
27362 "\n"
27363 msgstr ""
27364
27365 #. type: =head2
27366 #: ../fish/guestfish-actions.pod:5030
27367 msgid "zgrepi"
27368 msgstr ""
27369
27370 #. type: verbatim
27371 #: ../fish/guestfish-actions.pod:5032
27372 #, no-wrap
27373 msgid ""
27374 " zgrepi regex path\n"
27375 "\n"
27376 msgstr ""
27377
27378 #. type: =head2
27379 #: ../fish/guestfish-commands.pod:1
27380 msgid "alloc"
27381 msgstr ""
27382
27383 #. type: =head2
27384 #: ../fish/guestfish-commands.pod:3
27385 msgid "allocate"
27386 msgstr ""
27387
27388 #. type: verbatim
27389 #: ../fish/guestfish-commands.pod:5
27390 #, no-wrap
27391 msgid ""
27392 " alloc filename size\n"
27393 "\n"
27394 msgstr ""
27395
27396 #. type: textblock
27397 #: ../fish/guestfish-commands.pod:7
27398 msgid ""
27399 "This creates an empty (zeroed) file of the given size, and then adds so it "
27400 "can be further examined."
27401 msgstr ""
27402
27403 #. type: textblock
27404 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:168
27405 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27406 msgstr ""
27407
27408 #. type: textblock
27409 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:170
27410 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27411 msgstr ""
27412
27413 #. type: textblock
27414 #: ../fish/guestfish-commands.pod:14
27415 msgid ""
27416 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
27417 "image, see L</PREPARED DISK IMAGES>."
27418 msgstr ""
27419
27420 #. type: =head2
27421 #: ../fish/guestfish-commands.pod:17
27422 msgid "copy-in"
27423 msgstr ""
27424
27425 #. type: verbatim
27426 #: ../fish/guestfish-commands.pod:19
27427 #, no-wrap
27428 msgid ""
27429 " copy-in local [local ...] /remotedir\n"
27430 "\n"
27431 msgstr ""
27432
27433 #. type: textblock
27434 #: ../fish/guestfish-commands.pod:21
27435 msgid ""
27436 "C<copy-in> copies local files or directories recursively into the disk "
27437 "image, placing them in the directory called C</remotedir> (which must "
27438 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
27439 "other commands as necessary."
27440 msgstr ""
27441
27442 #. type: textblock
27443 #: ../fish/guestfish-commands.pod:26
27444 msgid ""
27445 "Multiple local files and directories can be specified, but the last "
27446 "parameter must always be a remote directory.  Wildcards cannot be used."
27447 msgstr ""
27448
27449 #. type: =head2
27450 #: ../fish/guestfish-commands.pod:30
27451 msgid "copy-out"
27452 msgstr ""
27453
27454 #. type: verbatim
27455 #: ../fish/guestfish-commands.pod:32
27456 #, no-wrap
27457 msgid ""
27458 " copy-out remote [remote ...] localdir\n"
27459 "\n"
27460 msgstr ""
27461
27462 #. type: textblock
27463 #: ../fish/guestfish-commands.pod:34
27464 msgid ""
27465 "C<copy-out> copies remote files or directories recursively out of the disk "
27466 "image, placing them on the host disk in a local directory called C<localdir> "
27467 "(which must exist).  This guestfish meta-command turns into a sequence of "
27468 "L</download>, L</tar-out> and other commands as necessary."
27469 msgstr ""
27470
27471 #. type: textblock
27472 #: ../fish/guestfish-commands.pod:40
27473 msgid ""
27474 "Multiple remote files and directories can be specified, but the last "
27475 "parameter must always be a local directory.  To download to the current "
27476 "directory, use C<.> as in:"
27477 msgstr ""
27478
27479 #. type: verbatim
27480 #: ../fish/guestfish-commands.pod:44
27481 #, no-wrap
27482 msgid ""
27483 " copy-out /home .\n"
27484 "\n"
27485 msgstr ""
27486
27487 #. type: textblock
27488 #: ../fish/guestfish-commands.pod:46
27489 msgid ""
27490 "Wildcards cannot be used in the ordinary command, but you can use them with "
27491 "the help of L</glob> like this:"
27492 msgstr ""
27493
27494 #. type: verbatim
27495 #: ../fish/guestfish-commands.pod:49
27496 #, no-wrap
27497 msgid ""
27498 " glob copy-out /home/* .\n"
27499 "\n"
27500 msgstr ""
27501
27502 #. type: =head2
27503 #: ../fish/guestfish-commands.pod:51
27504 msgid "echo"
27505 msgstr ""
27506
27507 #. type: verbatim
27508 #: ../fish/guestfish-commands.pod:53
27509 #, no-wrap
27510 msgid ""
27511 " echo [params ...]\n"
27512 "\n"
27513 msgstr ""
27514
27515 #. type: textblock
27516 #: ../fish/guestfish-commands.pod:55
27517 msgid "This echos the parameters to the terminal."
27518 msgstr ""
27519
27520 #. type: =head2
27521 #: ../fish/guestfish-commands.pod:57
27522 msgid "edit"
27523 msgstr ""
27524
27525 #. type: =head2
27526 #: ../fish/guestfish-commands.pod:59
27527 msgid "vi"
27528 msgstr ""
27529
27530 #. type: =head2
27531 #: ../fish/guestfish-commands.pod:61
27532 msgid "emacs"
27533 msgstr ""
27534
27535 #. type: verbatim
27536 #: ../fish/guestfish-commands.pod:63
27537 #, no-wrap
27538 msgid ""
27539 " edit filename\n"
27540 "\n"
27541 msgstr ""
27542
27543 #. type: textblock
27544 #: ../fish/guestfish-commands.pod:65
27545 msgid ""
27546 "This is used to edit a file.  It downloads the file, edits it locally using "
27547 "your editor, then uploads the result."
27548 msgstr ""
27549
27550 #. type: textblock
27551 #: ../fish/guestfish-commands.pod:68
27552 msgid ""
27553 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
27554 "or C<emacs> you will get those corresponding editors."
27555 msgstr ""
27556
27557 #. type: =head2
27558 #: ../fish/guestfish-commands.pod:72
27559 msgid "glob"
27560 msgstr ""
27561
27562 #. type: verbatim
27563 #: ../fish/guestfish-commands.pod:74
27564 #, no-wrap
27565 msgid ""
27566 " glob command args...\n"
27567 "\n"
27568 msgstr ""
27569
27570 #. type: textblock
27571 #: ../fish/guestfish-commands.pod:76
27572 msgid ""
27573 "Expand wildcards in any paths in the args list, and run C<command> "
27574 "repeatedly on each matching path."
27575 msgstr ""
27576
27577 #. type: textblock
27578 #: ../fish/guestfish-commands.pod:79
27579 msgid "See L</WILDCARDS AND GLOBBING>."
27580 msgstr ""
27581
27582 #. type: =head2
27583 #: ../fish/guestfish-commands.pod:81
27584 msgid "hexedit"
27585 msgstr ""
27586
27587 #. type: verbatim
27588 #: ../fish/guestfish-commands.pod:83
27589 #, no-wrap
27590 msgid ""
27591 " hexedit <filename|device>\n"
27592 " hexedit <filename|device> <max>\n"
27593 " hexedit <filename|device> <start> <max>\n"
27594 "\n"
27595 msgstr ""
27596
27597 #. type: textblock
27598 #: ../fish/guestfish-commands.pod:87
27599 msgid ""
27600 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
27601 "device."
27602 msgstr ""
27603
27604 #. type: textblock
27605 #: ../fish/guestfish-commands.pod:90
27606 msgid ""
27607 "This command works by downloading potentially the whole file or device, "
27608 "editing it locally, then uploading it.  If the file or device is large, you "
27609 "have to specify which part you wish to edit by using C<max> and/or C<start> "
27610 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
27611 "usual modifiers allowed such as C<1M> (1 megabyte)."
27612 msgstr ""
27613
27614 #. type: textblock
27615 #: ../fish/guestfish-commands.pod:97
27616 msgid "For example to edit the first few sectors of a disk you might do:"
27617 msgstr ""
27618
27619 #. type: verbatim
27620 #: ../fish/guestfish-commands.pod:100
27621 #, no-wrap
27622 msgid ""
27623 " hexedit /dev/sda 1M\n"
27624 "\n"
27625 msgstr ""
27626
27627 #. type: textblock
27628 #: ../fish/guestfish-commands.pod:102
27629 msgid ""
27630 "which would allow you to edit anywhere within the first megabyte of the "
27631 "disk."
27632 msgstr ""
27633
27634 #. type: textblock
27635 #: ../fish/guestfish-commands.pod:105
27636 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
27637 msgstr ""
27638
27639 #. type: verbatim
27640 #: ../fish/guestfish-commands.pod:107
27641 #, no-wrap
27642 msgid ""
27643 " hexedit /dev/sda1 0x400 0x400\n"
27644 "\n"
27645 msgstr ""
27646
27647 #. type: textblock
27648 #: ../fish/guestfish-commands.pod:109
27649 msgid "(assuming the superblock is in the standard location)."
27650 msgstr ""
27651
27652 #. type: textblock
27653 #: ../fish/guestfish-commands.pod:111
27654 msgid ""
27655 "This command requires the external L<hexedit(1)> program.  You can specify "
27656 "another program to use by setting the C<HEXEDITOR> environment variable."
27657 msgstr ""
27658
27659 #. type: textblock
27660 #: ../fish/guestfish-commands.pod:115
27661 msgid "See also L</hexdump>."
27662 msgstr ""
27663
27664 #. type: =head2
27665 #: ../fish/guestfish-commands.pod:117
27666 msgid "lcd"
27667 msgstr ""
27668
27669 #. type: verbatim
27670 #: ../fish/guestfish-commands.pod:119
27671 #, no-wrap
27672 msgid ""
27673 " lcd directory\n"
27674 "\n"
27675 msgstr ""
27676
27677 #. type: textblock
27678 #: ../fish/guestfish-commands.pod:121
27679 msgid "Change the local directory, ie. the current directory of guestfish itself."
27680 msgstr ""
27681
27682 #. type: textblock
27683 #: ../fish/guestfish-commands.pod:124
27684 msgid "Note that C<!cd> won't do what you might expect."
27685 msgstr ""
27686
27687 #. type: =head2
27688 #: ../fish/guestfish-commands.pod:126
27689 msgid "man"
27690 msgstr ""
27691
27692 #. type: =head2
27693 #: ../fish/guestfish-commands.pod:128
27694 msgid "manual"
27695 msgstr ""
27696
27697 #. type: verbatim
27698 #: ../fish/guestfish-commands.pod:130
27699 #, no-wrap
27700 msgid ""
27701 "  man\n"
27702 "\n"
27703 msgstr ""
27704
27705 #. type: textblock
27706 #: ../fish/guestfish-commands.pod:132
27707 msgid "Opens the manual page for guestfish."
27708 msgstr ""
27709
27710 #. type: =head2
27711 #: ../fish/guestfish-commands.pod:134
27712 msgid "more"
27713 msgstr ""
27714
27715 #. type: =head2
27716 #: ../fish/guestfish-commands.pod:136
27717 msgid "less"
27718 msgstr ""
27719
27720 #. type: verbatim
27721 #: ../fish/guestfish-commands.pod:138
27722 #, no-wrap
27723 msgid ""
27724 " more filename\n"
27725 "\n"
27726 msgstr ""
27727
27728 #. type: verbatim
27729 #: ../fish/guestfish-commands.pod:140
27730 #, no-wrap
27731 msgid ""
27732 " less filename\n"
27733 "\n"
27734 msgstr ""
27735
27736 #. type: textblock
27737 #: ../fish/guestfish-commands.pod:142
27738 msgid "This is used to view a file."
27739 msgstr ""
27740
27741 #. type: textblock
27742 #: ../fish/guestfish-commands.pod:144
27743 msgid ""
27744 "The default viewer is C<$PAGER>.  However if you use the alternate command "
27745 "C<less> you will get the C<less> command specifically."
27746 msgstr ""
27747
27748 #. type: =head2
27749 #: ../fish/guestfish-commands.pod:147
27750 msgid "reopen"
27751 msgstr ""
27752
27753 #. type: verbatim
27754 #: ../fish/guestfish-commands.pod:149
27755 #, no-wrap
27756 msgid ""
27757 "  reopen\n"
27758 "\n"
27759 msgstr ""
27760
27761 #. type: textblock
27762 #: ../fish/guestfish-commands.pod:151
27763 msgid ""
27764 "Close and reopen the libguestfs handle.  It is not necessary to use this "
27765 "normally, because the handle is closed properly when guestfish exits.  "
27766 "However this is occasionally useful for testing."
27767 msgstr ""
27768
27769 #. type: =head2
27770 #: ../fish/guestfish-commands.pod:155
27771 msgid "sparse"
27772 msgstr ""
27773
27774 #. type: verbatim
27775 #: ../fish/guestfish-commands.pod:157
27776 #, no-wrap
27777 msgid ""
27778 " sparse filename size\n"
27779 "\n"
27780 msgstr ""
27781
27782 #. type: textblock
27783 #: ../fish/guestfish-commands.pod:159
27784 msgid ""
27785 "This creates an empty sparse file of the given size, and then adds so it can "
27786 "be further examined."
27787 msgstr ""
27788
27789 #. type: textblock
27790 #: ../fish/guestfish-commands.pod:162
27791 msgid ""
27792 "In all respects it works the same as the L</alloc> command, except that the "
27793 "image file is allocated sparsely, which means that disk blocks are not "
27794 "assigned to the file until they are needed.  Sparse disk files only use "
27795 "space when written to, but they are slower and there is a danger you could "
27796 "run out of real disk space during a write operation."
27797 msgstr ""
27798
27799 #. type: =head2
27800 #: ../fish/guestfish-commands.pod:172
27801 msgid "supported"
27802 msgstr ""
27803
27804 #. type: verbatim
27805 #: ../fish/guestfish-commands.pod:174
27806 #, no-wrap
27807 msgid ""
27808 " supported\n"
27809 "\n"
27810 msgstr ""
27811
27812 #. type: textblock
27813 #: ../fish/guestfish-commands.pod:176
27814 msgid ""
27815 "This command returns a list of the optional groups known to the daemon, and "
27816 "indicates which ones are supported by this build of the libguestfs "
27817 "appliance."
27818 msgstr ""
27819
27820 #. type: textblock
27821 #: ../fish/guestfish-commands.pod:180
27822 msgid "See also L<guestfs(3)/AVAILABILITY>."
27823 msgstr ""
27824
27825 #. type: =head2
27826 #: ../fish/guestfish-commands.pod:182
27827 msgid "time"
27828 msgstr ""
27829
27830 #. type: verbatim
27831 #: ../fish/guestfish-commands.pod:184
27832 #, no-wrap
27833 msgid ""
27834 " time command args...\n"
27835 "\n"
27836 msgstr ""
27837
27838 #. type: textblock
27839 #: ../fish/guestfish-commands.pod:186
27840 msgid ""
27841 "Run the command as usual, but print the elapsed time afterwards.  This can "
27842 "be useful for benchmarking operations."
27843 msgstr ""
27844
27845 #. type: textblock
27846 #: ../test-tool/libguestfs-test-tool.pod:5
27847 msgid "libguestfs-test-tool - End user tests for libguestfs"
27848 msgstr ""
27849
27850 #. type: verbatim
27851 #: ../test-tool/libguestfs-test-tool.pod:9
27852 #, no-wrap
27853 msgid ""
27854 " libguestfs-test-tool [--options]\n"
27855 "\n"
27856 msgstr ""
27857
27858 #. type: textblock
27859 #: ../test-tool/libguestfs-test-tool.pod:13
27860 msgid ""
27861 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
27862 "and developers, to allow them to check basic libguestfs functionality is "
27863 "working.  This is needed because libguestfs occasionally breaks for reasons "
27864 "beyond our control: usually because of changes in the underlying qemu or "
27865 "kernel packages, or the host environment."
27866 msgstr ""
27867
27868 #. type: textblock
27869 #: ../test-tool/libguestfs-test-tool.pod:20
27870 msgid "If you suspect a problem in libguestfs, then just run:"
27871 msgstr ""
27872
27873 #. type: verbatim
27874 #: ../test-tool/libguestfs-test-tool.pod:22
27875 #, no-wrap
27876 msgid ""
27877 " libguestfs-test-tool\n"
27878 "\n"
27879 msgstr ""
27880
27881 #. type: textblock
27882 #: ../test-tool/libguestfs-test-tool.pod:24
27883 msgid "It will print lots of diagnostic messages."
27884 msgstr ""
27885
27886 #. type: textblock
27887 #: ../test-tool/libguestfs-test-tool.pod:26
27888 msgid "If it runs to completion successfully, you will see this near the end:"
27889 msgstr ""
27890
27891 #. type: verbatim
27892 #: ../test-tool/libguestfs-test-tool.pod:28
27893 #, no-wrap
27894 msgid ""
27895 " ===== TEST FINISHED OK =====\n"
27896 "\n"
27897 msgstr ""
27898
27899 #. type: textblock
27900 #: ../test-tool/libguestfs-test-tool.pod:30
27901 msgid "and the test tool will exit with code 0."
27902 msgstr ""
27903
27904 #. type: textblock
27905 #: ../test-tool/libguestfs-test-tool.pod:32
27906 msgid ""
27907 "If it fails (and/or exits with non-zero error code), please paste the "
27908 "B<complete, unedited> output of the test tool into a bug report.  More "
27909 "information about reporting bugs can be found on the "
27910 "L<http://libguestfs.org/> website."
27911 msgstr ""
27912
27913 #. type: =item
27914 #: ../test-tool/libguestfs-test-tool.pod:41
27915 msgid "I<--help>"
27916 msgstr ""
27917
27918 #. type: textblock
27919 #: ../test-tool/libguestfs-test-tool.pod:43
27920 msgid "Display short usage information and exit."
27921 msgstr ""
27922
27923 #. type: =item
27924 #: ../test-tool/libguestfs-test-tool.pod:45
27925 msgid "I<--qemu qemu_binary>"
27926 msgstr ""
27927
27928 #. type: textblock
27929 #: ../test-tool/libguestfs-test-tool.pod:47
27930 msgid ""
27931 "If you have downloaded another qemu binary, point this option at the full "
27932 "path of the binary to try it."
27933 msgstr ""
27934
27935 #. type: =item
27936 #: ../test-tool/libguestfs-test-tool.pod:50
27937 msgid "I<--qemudir qemu_source_dir>"
27938 msgstr ""
27939
27940 #. type: textblock
27941 #: ../test-tool/libguestfs-test-tool.pod:52
27942 msgid ""
27943 "If you have compiled qemu from source, point this option at the source "
27944 "directory to try it."
27945 msgstr ""
27946
27947 #. type: =item
27948 #: ../test-tool/libguestfs-test-tool.pod:55
27949 msgid "I<--timeout N>"
27950 msgstr ""
27951
27952 #. type: textblock
27953 #: ../test-tool/libguestfs-test-tool.pod:57
27954 msgid ""
27955 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
27956 "does not usually need to be adjusted unless your machine is very slow."
27957 msgstr ""
27958
27959 #. type: =head1
27960 #: ../test-tool/libguestfs-test-tool.pod:63
27961 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
27962 msgstr ""
27963
27964 #. type: textblock
27965 #: ../test-tool/libguestfs-test-tool.pod:65
27966 msgid ""
27967 "If you have compiled another version of qemu from source and would like to "
27968 "try that, then you can use the I<--qemudir> option to point to the qemu "
27969 "source directory."
27970 msgstr ""
27971
27972 #. type: textblock
27973 #: ../test-tool/libguestfs-test-tool.pod:69
27974 msgid ""
27975 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
27976 "option to point to the binary."
27977 msgstr ""
27978
27979 #. type: textblock
27980 #: ../test-tool/libguestfs-test-tool.pod:72
27981 msgid ""
27982 "When using an alternate qemu with libguestfs, usually you would need to "
27983 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
27984 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
27985 "when you use either of the I<--qemudir> or I<--qemu> options."
27986 msgstr ""
27987
27988 #. type: textblock
27989 #: ../test-tool/libguestfs-test-tool.pod:79
27990 msgid ""
27991 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
27992 "I<1> if there was an error."
27993 msgstr ""
27994
27995 #. type: textblock
27996 #: ../test-tool/libguestfs-test-tool.pod:84
27997 msgid ""
27998 "For the full list of environment variables which may affect libguestfs, "
27999 "please see the L<guestfs(3)> manual page."
28000 msgstr ""
28001
28002 #. type: textblock
28003 #: ../test-tool/libguestfs-test-tool.pod:89
28004 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28005 msgstr ""
28006
28007 #. type: textblock
28008 #: ../fuse/guestmount.pod:5
28009 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28010 msgstr ""
28011
28012 #. type: verbatim
28013 #: ../fuse/guestmount.pod:9
28014 #, no-wrap
28015 msgid ""
28016 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28017 "\n"
28018 msgstr ""
28019
28020 #. type: verbatim
28021 #: ../fuse/guestmount.pod:11
28022 #, no-wrap
28023 msgid ""
28024 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28025 "\n"
28026 msgstr ""
28027
28028 #. type: verbatim
28029 #: ../fuse/guestmount.pod:13
28030 #, no-wrap
28031 msgid ""
28032 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28033 "\n"
28034 msgstr ""
28035
28036 #. type: textblock
28037 #: ../fuse/guestmount.pod:17
28038 msgid ""
28039 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28040 "machines.  If you do this, you risk disk corruption in the VM."
28041 msgstr ""
28042
28043 #. type: textblock
28044 #: ../fuse/guestmount.pod:22
28045 msgid ""
28046 "The guestmount program can be used to mount virtual machine filesystems and "
28047 "other disk images on the host.  It uses libguestfs for access to the guest "
28048 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28049 "a mountable device."
28050 msgstr ""
28051
28052 #. type: textblock
28053 #: ../fuse/guestmount.pod:27
28054 msgid ""
28055 "Along with other options, you have to give at least one device (I<-a> "
28056 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28057 "option) or use the I<-i> inspection option.  How this works is better "
28058 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28059 "below."
28060 msgstr ""
28061
28062 #. type: textblock
28063 #: ../fuse/guestmount.pod:33
28064 msgid ""
28065 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28066 "by you, and the filesystem will not be visible to any other users unless you "
28067 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28068 "the filesystem, use the C<fusermount -u> command."
28069 msgstr ""
28070
28071 #. type: textblock
28072 #: ../fuse/guestmount.pod:41
28073 msgid ""
28074 "For a typical Windows guest which has its main filesystem on the first "
28075 "partition:"
28076 msgstr ""
28077
28078 #. type: verbatim
28079 #: ../fuse/guestmount.pod:44
28080 #, no-wrap
28081 msgid ""
28082 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28083 "\n"
28084 msgstr ""
28085
28086 #. type: textblock
28087 #: ../fuse/guestmount.pod:46
28088 msgid ""
28089 "For a typical Linux guest which has a /boot filesystem on the first "
28090 "partition, and the root filesystem on a logical volume:"
28091 msgstr ""
28092
28093 #. type: verbatim
28094 #: ../fuse/guestmount.pod:49
28095 #, no-wrap
28096 msgid ""
28097 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28098 "\n"
28099 msgstr ""
28100
28101 #. type: textblock
28102 #: ../fuse/guestmount.pod:51
28103 msgid "To get libguestfs to detect guest mountpoints for you:"
28104 msgstr ""
28105
28106 #. type: verbatim
28107 #: ../fuse/guestmount.pod:53
28108 #, no-wrap
28109 msgid ""
28110 " guestmount -a guest.img -i --ro /mnt\n"
28111 "\n"
28112 msgstr ""
28113
28114 #. type: textblock
28115 #: ../fuse/guestmount.pod:55
28116 msgid "For a libvirt guest called \"Guest\" you could do:"
28117 msgstr ""
28118
28119 #. type: verbatim
28120 #: ../fuse/guestmount.pod:57
28121 #, no-wrap
28122 msgid ""
28123 " guestmount -d Guest -i --ro /mnt\n"
28124 "\n"
28125 msgstr ""
28126
28127 #. type: textblock
28128 #: ../fuse/guestmount.pod:59
28129 msgid ""
28130 "If you don't know what filesystems are contained in a guest or disk image, "
28131 "use L<virt-filesystems(1)> first:"
28132 msgstr ""
28133
28134 #. type: verbatim
28135 #: ../fuse/guestmount.pod:62
28136 #, no-wrap
28137 msgid ""
28138 " virt-filesystems MyGuest\n"
28139 "\n"
28140 msgstr ""
28141
28142 #. type: textblock
28143 #: ../fuse/guestmount.pod:64
28144 msgid ""
28145 "If you want to trace the libguestfs calls but without excessive debugging "
28146 "information, we recommend:"
28147 msgstr ""
28148
28149 #. type: verbatim
28150 #: ../fuse/guestmount.pod:67
28151 #, no-wrap
28152 msgid ""
28153 " guestmount [...] --trace /mnt\n"
28154 "\n"
28155 msgstr ""
28156
28157 #. type: textblock
28158 #: ../fuse/guestmount.pod:69
28159 msgid "If you want to debug the program, we recommend:"
28160 msgstr ""
28161
28162 #. type: verbatim
28163 #: ../fuse/guestmount.pod:71
28164 #, no-wrap
28165 msgid ""
28166 " guestmount [...] --trace --verbose /mnt\n"
28167 "\n"
28168 msgstr ""
28169
28170 #. type: =head1
28171 #: ../fuse/guestmount.pod:73
28172 msgid "NOTES"
28173 msgstr ""
28174
28175 #. type: =head2
28176 #: ../fuse/guestmount.pod:75
28177 msgid "Other users cannot see the filesystem by default"
28178 msgstr ""
28179
28180 #. type: textblock
28181 #: ../fuse/guestmount.pod:77
28182 msgid ""
28183 "If you mount a filesystem as one user (eg. root), then other users will not "
28184 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
28185 "option when mounting:"
28186 msgstr ""
28187
28188 #. type: verbatim
28189 #: ../fuse/guestmount.pod:81
28190 #, no-wrap
28191 msgid ""
28192 " sudo guestmount [...] -o allow_other /mnt\n"
28193 "\n"
28194 msgstr ""
28195
28196 #. type: =item
28197 #: ../fuse/guestmount.pod:87
28198 msgid "B<-a image> | B<--add image>"
28199 msgstr ""
28200
28201 #. type: textblock
28202 #: ../fuse/guestmount.pod:89
28203 msgid "Add a block device or virtual machine image."
28204 msgstr ""
28205
28206 #. type: =item
28207 #: ../fuse/guestmount.pod:94
28208 msgid "B<-c URI> | B<--connect URI>"
28209 msgstr ""
28210
28211 #. type: =item
28212 #: ../fuse/guestmount.pod:100
28213 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28214 msgstr ""
28215
28216 #. type: =item
28217 #: ../fuse/guestmount.pod:108
28218 msgid "B<--dir-cache-timeout N>"
28219 msgstr ""
28220
28221 #. type: textblock
28222 #: ../fuse/guestmount.pod:110
28223 msgid ""
28224 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28225 "seconds.  The readdir cache [actually, there are several semi-independent "
28226 "caches] is populated after a readdir(2) call with the stat and extended "
28227 "attributes of the files in the directory, in anticipation that they will be "
28228 "requested soon after."
28229 msgstr ""
28230
28231 #. type: textblock
28232 #: ../fuse/guestmount.pod:116
28233 msgid ""
28234 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28235 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28236 "requests, only cache existing ones."
28237 msgstr ""
28238
28239 #. type: =item
28240 #: ../fuse/guestmount.pod:127
28241 msgid "B<--format=raw|qcow2|..> | B<--format>"
28242 msgstr ""
28243
28244 #. type: textblock
28245 #: ../fuse/guestmount.pod:134
28246 msgid ""
28247 "If you have untrusted raw-format guest disk images, you should use this "
28248 "option to specify the disk format.  This avoids a possible security problem "
28249 "with malicious guests (CVE-2010-3851).  See also "
28250 "L<guestfs(3)/guestfs_add_drive_opts>."
28251 msgstr ""
28252
28253 #. type: =item
28254 #: ../fuse/guestmount.pod:139
28255 msgid "B<--fuse-help>"
28256 msgstr ""
28257
28258 #. type: textblock
28259 #: ../fuse/guestmount.pod:141
28260 msgid "Display help on special FUSE options (see I<-o> below)."
28261 msgstr ""
28262
28263 #. type: textblock
28264 #: ../fuse/guestmount.pod:145
28265 msgid "Display brief help and exit."
28266 msgstr ""
28267
28268 #. type: =item
28269 #: ../fuse/guestmount.pod:147
28270 msgid "B<-i> | B<--inspector>"
28271 msgstr ""
28272
28273 #. type: textblock
28274 #: ../fuse/guestmount.pod:167
28275 msgid ""
28276 "Mount the named partition or logical volume on the given mountpoint B<in the "
28277 "guest> (this has nothing to do with mountpoints in the host)."
28278 msgstr ""
28279
28280 #. type: textblock
28281 #: ../fuse/guestmount.pod:170
28282 msgid ""
28283 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28284 "something on C</>."
28285 msgstr ""
28286
28287 #. type: =item
28288 #: ../fuse/guestmount.pod:183
28289 msgid "B<-n> | B<--no-sync>"
28290 msgstr ""
28291
28292 #. type: textblock
28293 #: ../fuse/guestmount.pod:185
28294 msgid ""
28295 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28296 "unmounted.  If you specify this option, then we don't attempt to sync the "
28297 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28298 msgstr ""
28299
28300 #. type: =item
28301 #: ../fuse/guestmount.pod:190
28302 msgid "B<-o option> | B<--option option>"
28303 msgstr ""
28304
28305 #. type: textblock
28306 #: ../fuse/guestmount.pod:192
28307 msgid "Pass extra options to FUSE."
28308 msgstr ""
28309
28310 #. type: textblock
28311 #: ../fuse/guestmount.pod:194
28312 msgid ""
28313 "To get a list of all the extra options supported by FUSE, use the command "
28314 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28315 "of them are a good idea."
28316 msgstr ""
28317
28318 #. type: verbatim
28319 #: ../fuse/guestmount.pod:198
28320 #, no-wrap
28321 msgid ""
28322 " guestmount --fuse-help\n"
28323 "\n"
28324 msgstr ""
28325
28326 #. type: textblock
28327 #: ../fuse/guestmount.pod:200
28328 msgid "Some potentially useful FUSE options:"
28329 msgstr ""
28330
28331 #. type: =item
28332 #: ../fuse/guestmount.pod:204
28333 msgid "B<-o allow_other>"
28334 msgstr ""
28335
28336 #. type: textblock
28337 #: ../fuse/guestmount.pod:206
28338 msgid "Allow other users to see the filesystem."
28339 msgstr ""
28340
28341 #. type: =item
28342 #: ../fuse/guestmount.pod:208
28343 msgid "B<-o attr_timeout=N>"
28344 msgstr ""
28345
28346 #. type: textblock
28347 #: ../fuse/guestmount.pod:210
28348 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28349 msgstr ""
28350
28351 #. type: =item
28352 #: ../fuse/guestmount.pod:212
28353 msgid "B<-o kernel_cache>"
28354 msgstr ""
28355
28356 #. type: textblock
28357 #: ../fuse/guestmount.pod:214
28358 msgid ""
28359 "Allow the kernel to cache files (reduces the number of reads that have to go "
28360 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28361 "afford the extra memory usage."
28362 msgstr ""
28363
28364 #. type: =item
28365 #: ../fuse/guestmount.pod:218
28366 msgid "B<-o uid=N> B<-o gid=N>"
28367 msgstr ""
28368
28369 #. type: textblock
28370 #: ../fuse/guestmount.pod:220
28371 msgid ""
28372 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28373 "the chosen values."
28374 msgstr ""
28375
28376 #. type: =item
28377 #: ../fuse/guestmount.pod:225
28378 msgid "B<-r> | B<--ro>"
28379 msgstr ""
28380
28381 #. type: textblock
28382 #: ../fuse/guestmount.pod:227
28383 msgid ""
28384 "Add devices and mount everything read-only.  Also disallow writes and make "
28385 "the disk appear read-only to FUSE."
28386 msgstr ""
28387
28388 #. type: textblock
28389 #: ../fuse/guestmount.pod:230
28390 msgid ""
28391 "This is highly recommended if you are not going to edit the guest disk.  If "
28392 "the guest is running and this option is I<not> supplied, then there is a "
28393 "strong risk of disk corruption in the guest.  We try to prevent this from "
28394 "happening, but it is not always possible."
28395 msgstr ""
28396
28397 #. type: textblock
28398 #: ../fuse/guestmount.pod:235
28399 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28400 msgstr ""
28401
28402 #. type: textblock
28403 #: ../fuse/guestmount.pod:239
28404 msgid "Enable SELinux support for the guest."
28405 msgstr ""
28406
28407 #. type: =item
28408 #: ../fuse/guestmount.pod:241
28409 msgid "B<-v> | B<--verbose>"
28410 msgstr ""
28411
28412 #. type: textblock
28413 #: ../fuse/guestmount.pod:243
28414 msgid "Enable verbose messages from underlying libguestfs."
28415 msgstr ""
28416
28417 #. type: =item
28418 #: ../fuse/guestmount.pod:245
28419 msgid "B<-V> | B<--version>"
28420 msgstr ""
28421
28422 #. type: textblock
28423 #: ../fuse/guestmount.pod:247
28424 msgid "Display the program version and exit."
28425 msgstr ""
28426
28427 #. type: =item
28428 #: ../fuse/guestmount.pod:249
28429 msgid "B<-w> | B<--rw>"
28430 msgstr ""
28431
28432 #. type: textblock
28433 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
28434 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28435 msgstr ""
28436
28437 #. type: =item
28438 #: ../fuse/guestmount.pod:256
28439 msgid "B<-x> | B<--trace>"
28440 msgstr ""
28441
28442 #. type: textblock
28443 #: ../fuse/guestmount.pod:258
28444 msgid "Trace libguestfs calls and entry into each FUSE function."
28445 msgstr ""
28446
28447 #. type: textblock
28448 #: ../fuse/guestmount.pod:260
28449 msgid "This also stops the daemon from forking into the background."
28450 msgstr ""
28451
28452 #. type: textblock
28453 #: ../fuse/guestmount.pod:281
28454 msgid ""
28455 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
28456 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
28457 "L<http://fuse.sf.net/>."
28458 msgstr ""
28459
28460 #. type: textblock
28461 #: ../fuse/guestmount.pod:296
28462 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
28463 msgstr ""
28464
28465 #. type: textblock
28466 #: ../tools/virt-win-reg.pl:37
28467 msgid ""
28468 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
28469 "guest"
28470 msgstr ""
28471
28472 #. type: verbatim
28473 #: ../tools/virt-win-reg.pl:41
28474 #, no-wrap
28475 msgid ""
28476 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
28477 "\n"
28478 msgstr ""
28479
28480 #. type: verbatim
28481 #: ../tools/virt-win-reg.pl:43
28482 #, no-wrap
28483 msgid ""
28484 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
28485 "\n"
28486 msgstr ""
28487
28488 #. type: verbatim
28489 #: ../tools/virt-win-reg.pl:45
28490 #, no-wrap
28491 msgid ""
28492 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
28493 "\n"
28494 msgstr ""
28495
28496 #. type: verbatim
28497 #: ../tools/virt-win-reg.pl:47
28498 #, no-wrap
28499 msgid ""
28500 " virt-win-reg --merge domname [input.reg ...]\n"
28501 "\n"
28502 msgstr ""
28503
28504 #. type: verbatim
28505 #: ../tools/virt-win-reg.pl:49
28506 #, no-wrap
28507 msgid ""
28508 " virt-win-reg [--options] disk.img ... # instead of domname\n"
28509 "\n"
28510 msgstr ""
28511
28512 #. type: textblock
28513 #: ../tools/virt-win-reg.pl:53
28514 msgid ""
28515 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
28516 "virtual machines.  If you do this, you I<will> get irreversible disk "
28517 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
28518 "but doesn't catch all cases."
28519 msgstr ""
28520
28521 #. type: textblock
28522 #: ../tools/virt-win-reg.pl:58
28523 msgid ""
28524 "Modifying the Windows Registry is an inherently risky operation.  The format "
28525 "is deliberately obscure and undocumented, and Registry changes can leave the "
28526 "system unbootable.  Therefore when using the I<--merge> option, make sure "
28527 "you have a reliable backup first."
28528 msgstr ""
28529
28530 #. type: textblock
28531 #: ../tools/virt-win-reg.pl:65
28532 msgid ""
28533 "This program can export and merge Windows Registry entries from a Windows "
28534 "guest."
28535 msgstr ""
28536
28537 #. type: textblock
28538 #: ../tools/virt-win-reg.pl:68
28539 msgid ""
28540 "The first parameter is the libvirt guest name or the raw disk image of a "
28541 "Windows guest."
28542 msgstr ""
28543
28544 #. type: textblock
28545 #: ../tools/virt-win-reg.pl:71
28546 msgid ""
28547 "If I<--merge> is I<not> specified, then the chosen registry key is "
28548 "displayed/exported (recursively).  For example:"
28549 msgstr ""
28550
28551 #. type: verbatim
28552 #: ../tools/virt-win-reg.pl:74
28553 #, no-wrap
28554 msgid ""
28555 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
28556 "\n"
28557 msgstr ""
28558
28559 #. type: textblock
28560 #: ../tools/virt-win-reg.pl:76
28561 msgid "You can also display single values from within registry keys, for example:"
28562 msgstr ""
28563
28564 #. type: verbatim
28565 #: ../tools/virt-win-reg.pl:79
28566 #, no-wrap
28567 msgid ""
28568 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
28569 " $ virt-win-reg Windows7 $cvkey ProductName\n"
28570 " Windows 7 Enterprise\n"
28571 "\n"
28572 msgstr ""
28573
28574 #. type: textblock
28575 #: ../tools/virt-win-reg.pl:83
28576 msgid ""
28577 "With I<--merge>, you can merge a textual regedit file into the Windows "
28578 "Registry:"
28579 msgstr ""
28580
28581 #. type: verbatim
28582 #: ../tools/virt-win-reg.pl:86
28583 #, no-wrap
28584 msgid ""
28585 " $ virt-win-reg --merge Windows7 changes.reg\n"
28586 "\n"
28587 msgstr ""
28588
28589 #. type: =head1
28590 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
28591 msgid "NOTE"
28592 msgstr ""
28593
28594 #. type: textblock
28595 #: ../tools/virt-win-reg.pl:90
28596 msgid ""
28597 "This program is only meant for simple access to the registry.  If you want "
28598 "to do complicated things with the registry, we suggest you download the "
28599 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
28600 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
28601 "L<hivexregedit(1)>."
28602 msgstr ""
28603
28604 #. type: textblock
28605 #: ../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
28606 msgid "Display brief help."
28607 msgstr ""
28608
28609 #. type: textblock
28610 #: ../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
28611 msgid "Display version number and exit."
28612 msgstr ""
28613
28614 #. type: =item
28615 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
28616 msgid "B<--debug>"
28617 msgstr ""
28618
28619 #. type: textblock
28620 #: ../tools/virt-win-reg.pl:122
28621 msgid "Enable debugging messages."
28622 msgstr ""
28623
28624 #. type: =item
28625 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
28626 msgid "B<--connect URI> | B<-c URI>"
28627 msgstr ""
28628
28629 #. type: textblock
28630 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
28631 msgid ""
28632 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
28633 "to the default libvirt hypervisor."
28634 msgstr ""
28635
28636 #. type: textblock
28637 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
28638 msgid ""
28639 "If you specify guest block devices directly, then libvirt is not used at "
28640 "all."
28641 msgstr ""
28642
28643 #. type: =item
28644 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
28645 msgid "B<--format> raw"
28646 msgstr ""
28647
28648 #. type: textblock
28649 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
28650 msgid ""
28651 "Specify the format of disk images given on the command line.  If this is "
28652 "omitted then the format is autodetected from the content of the disk image."
28653 msgstr ""
28654
28655 #. type: textblock
28656 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
28657 msgid ""
28658 "If disk images are requested from libvirt, then this program asks libvirt "
28659 "for this information.  In this case, the value of the format parameter is "
28660 "ignored."
28661 msgstr ""
28662
28663 #. type: textblock
28664 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
28665 msgid ""
28666 "If working with untrusted raw-format guest disk images, you should ensure "
28667 "the format is always specified."
28668 msgstr ""
28669
28670 #. type: =item
28671 #: ../tools/virt-win-reg.pl:157
28672 msgid "B<--merge>"
28673 msgstr ""
28674
28675 #. type: textblock
28676 #: ../tools/virt-win-reg.pl:159
28677 msgid ""
28678 "In merge mode, this merges a textual regedit file into the Windows Registry "
28679 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
28680 "displays or exports Registry entries instead."
28681 msgstr ""
28682
28683 #. type: textblock
28684 #: ../tools/virt-win-reg.pl:163
28685 msgid ""
28686 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
28687 "result in disk corruption.  However exporting (without this flag)  is always "
28688 "safe."
28689 msgstr ""
28690
28691 #. type: =item
28692 #: ../tools/virt-win-reg.pl:171
28693 msgid "B<--encoding> UTF-16LE|ASCII"
28694 msgstr ""
28695
28696 #. type: textblock
28697 #: ../tools/virt-win-reg.pl:173
28698 msgid ""
28699 "When merging (only), you may need to specify the encoding for strings to be "
28700 "used in the hive file.  This is explained in detail in "
28701 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
28702 msgstr ""
28703
28704 #. type: textblock
28705 #: ../tools/virt-win-reg.pl:177
28706 msgid ""
28707 "The default is to use UTF-16LE, which should work with recent versions of "
28708 "Windows."
28709 msgstr ""
28710
28711 #. type: =item
28712 #: ../tools/virt-win-reg.pl:184
28713 msgid "B<--unsafe-printable-strings>"
28714 msgstr ""
28715
28716 #. type: textblock
28717 #: ../tools/virt-win-reg.pl:186
28718 msgid ""
28719 "When exporting (only), assume strings are UTF-16LE and print them as strings "
28720 "instead of hex sequences.  Remove the final zero codepoint from strings if "
28721 "present."
28722 msgstr ""
28723
28724 #. type: textblock
28725 #: ../tools/virt-win-reg.pl:190
28726 msgid ""
28727 "This is unsafe and does not preserve the fidelity of strings in the original "
28728 "Registry for various reasons:"
28729 msgstr ""
28730
28731 #. type: textblock
28732 #: ../tools/virt-win-reg.pl:197
28733 msgid ""
28734 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
28735 "other encodings will be corrupted by this transformation."
28736 msgstr ""
28737
28738 #. type: textblock
28739 #: ../tools/virt-win-reg.pl:202
28740 msgid ""
28741 "Assumes that everything which has type 1 or 2 is really a string and that "
28742 "everything else is not a string, but the type field in real Registries is "
28743 "not reliable."
28744 msgstr ""
28745
28746 #. type: textblock
28747 #: ../tools/virt-win-reg.pl:208
28748 msgid ""
28749 "Loses information about whether a zero codepoint followed the string in the "
28750 "Registry or not."
28751 msgstr ""
28752
28753 #. type: textblock
28754 #: ../tools/virt-win-reg.pl:213
28755 msgid ""
28756 "This all happens because the Registry itself contains no information about "
28757 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
28758 msgstr ""
28759
28760 #. type: textblock
28761 #: ../tools/virt-win-reg.pl:217
28762 msgid ""
28763 "You should only use this option for quick hacking and debugging of the "
28764 "Registry contents, and I<never> use it if the output is going to be passed "
28765 "into another program or stored in another Registry."
28766 msgstr ""
28767
28768 #. type: =head1
28769 #: ../tools/virt-win-reg.pl:554
28770 msgid "SUPPORTED SYSTEMS"
28771 msgstr ""
28772
28773 #. type: textblock
28774 #: ../tools/virt-win-reg.pl:556
28775 msgid ""
28776 "The program currently supports Windows NT-derived guests starting with "
28777 "Windows XP through to at least Windows 7."
28778 msgstr ""
28779
28780 #. type: textblock
28781 #: ../tools/virt-win-reg.pl:559
28782 msgid "The following Registry keys are supported:"
28783 msgstr ""
28784
28785 #. type: =item
28786 #: ../tools/virt-win-reg.pl:563
28787 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
28788 msgstr ""
28789
28790 #. type: =item
28791 #: ../tools/virt-win-reg.pl:565
28792 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
28793 msgstr ""
28794
28795 #. type: =item
28796 #: ../tools/virt-win-reg.pl:567
28797 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
28798 msgstr ""
28799
28800 #. type: =item
28801 #: ../tools/virt-win-reg.pl:569
28802 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
28803 msgstr ""
28804
28805 #. type: =item
28806 #: ../tools/virt-win-reg.pl:571
28807 msgid "C<HKEY_USERS\\.DEFAULT>"
28808 msgstr ""
28809
28810 #. type: =item
28811 #: ../tools/virt-win-reg.pl:573
28812 msgid "C<HKEY_USERS\\I<SID>>"
28813 msgstr ""
28814
28815 #. type: textblock
28816 #: ../tools/virt-win-reg.pl:575
28817 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
28818 msgstr ""
28819
28820 #. type: =item
28821 #: ../tools/virt-win-reg.pl:577
28822 msgid "C<HKEY_USERS\\I<username>>"
28823 msgstr ""
28824
28825 #. type: textblock
28826 #: ../tools/virt-win-reg.pl:579
28827 msgid "where I<username> is a local user name (this is a libguestfs extension)."
28828 msgstr ""
28829
28830 #. type: textblock
28831 #: ../tools/virt-win-reg.pl:583
28832 msgid ""
28833 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
28834 "C<HKEY_USERS>."
28835 msgstr ""
28836
28837 #. type: textblock
28838 #: ../tools/virt-win-reg.pl:586
28839 msgid ""
28840 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
28841 "supported (there is no \"current user\")."
28842 msgstr ""
28843
28844 #. type: =head1
28845 #: ../tools/virt-win-reg.pl:589
28846 msgid "ENCODING"
28847 msgstr ""
28848
28849 #. type: textblock
28850 #: ../tools/virt-win-reg.pl:591
28851 msgid ""
28852 "C<virt-win-reg> expects that regedit files have already been reencoded in "
28853 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
28854 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
28855 "with Windows-style line endings, you may need to reencode the whole file "
28856 "before or after processing."
28857 msgstr ""
28858
28859 #. type: textblock
28860 #: ../tools/virt-win-reg.pl:597
28861 msgid ""
28862 "To reencode a file from Windows format to Linux (before processing it with "
28863 "the I<--merge> option), you would do something like this:"
28864 msgstr ""
28865
28866 #. type: verbatim
28867 #: ../tools/virt-win-reg.pl:600
28868 #, no-wrap
28869 msgid ""
28870 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
28871 "\n"
28872 msgstr ""
28873
28874 #. type: textblock
28875 #: ../tools/virt-win-reg.pl:602
28876 msgid ""
28877 "To go in the opposite direction, after exporting and before sending the file "
28878 "to a Windows user, do something like this:"
28879 msgstr ""
28880
28881 #. type: verbatim
28882 #: ../tools/virt-win-reg.pl:605
28883 #, no-wrap
28884 msgid ""
28885 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
28886 "\n"
28887 msgstr ""
28888
28889 #. type: textblock
28890 #: ../tools/virt-win-reg.pl:607
28891 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
28892 msgstr ""
28893
28894 #. type: textblock
28895 #: ../tools/virt-win-reg.pl:609
28896 msgid ""
28897 "If you are unsure about the current encoding, use the L<file(1)> command.  "
28898 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
28899 "Windows-style (CRLF) line endings, like this:"
28900 msgstr ""
28901
28902 #. type: verbatim
28903 #: ../tools/virt-win-reg.pl:613
28904 #, no-wrap
28905 msgid ""
28906 " $ file software.reg\n"
28907 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
28908 " with CRLF line terminators\n"
28909 "\n"
28910 msgstr ""
28911
28912 #. type: textblock
28913 #: ../tools/virt-win-reg.pl:617
28914 msgid "This file would need conversion before you could I<--merge> it."
28915 msgstr ""
28916
28917 #. type: =head1
28918 #: ../tools/virt-win-reg.pl:619
28919 msgid "CurrentControlSet etc."
28920 msgstr ""
28921
28922 #. type: textblock
28923 #: ../tools/virt-win-reg.pl:621
28924 msgid ""
28925 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
28926 "Registry at the level of the hive file, and therefore you cannot modify "
28927 "these."
28928 msgstr ""
28929
28930 #. type: textblock
28931 #: ../tools/virt-win-reg.pl:625
28932 msgid ""
28933 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
28934 "circumstances it might refer to another control set.  The way to find out is "
28935 "to look at the C<HKLM\\SYSTEM\\Select> key:"
28936 msgstr ""
28937
28938 #. type: verbatim
28939 #: ../tools/virt-win-reg.pl:629
28940 #, no-wrap
28941 msgid ""
28942 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
28943 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
28944 " \"Current\"=dword:00000001\n"
28945 " \"Default\"=dword:00000001\n"
28946 " \"Failed\"=dword:00000000\n"
28947 " \"LastKnownGood\"=dword:00000002\n"
28948 "\n"
28949 msgstr ""
28950
28951 #. type: textblock
28952 #: ../tools/virt-win-reg.pl:636
28953 msgid "\"Current\" is the one which Windows will choose when it boots."
28954 msgstr ""
28955
28956 #. type: textblock
28957 #: ../tools/virt-win-reg.pl:638
28958 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
28959 msgstr ""
28960
28961 #. type: =head1
28962 #: ../tools/virt-win-reg.pl:641
28963 msgid "WINDOWS TIPS"
28964 msgstr ""
28965
28966 #. type: textblock
28967 #: ../tools/virt-win-reg.pl:643
28968 msgid ""
28969 "Note that some of these tips modify the guest disk image.  The guest I<must> "
28970 "be shut off, else you will get disk corruption."
28971 msgstr ""
28972
28973 #. type: =head2
28974 #: ../tools/virt-win-reg.pl:646
28975 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
28976 msgstr ""
28977
28978 #. type: textblock
28979 #: ../tools/virt-win-reg.pl:648
28980 msgid ""
28981 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
28982 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
28983 "is uploaded into C<C:\\>:"
28984 msgstr ""
28985
28986 #. type: verbatim
28987 #: ../tools/virt-win-reg.pl:652
28988 #, no-wrap
28989 msgid ""
28990 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
28991 "\n"
28992 msgstr ""
28993
28994 #. type: textblock
28995 #: ../tools/virt-win-reg.pl:654
28996 msgid "Prepare a regedit file containing the registry change:"
28997 msgstr ""
28998
28999 #. type: verbatim
29000 #: ../tools/virt-win-reg.pl:656
29001 #, no-wrap
29002 msgid ""
29003 " cat > test.reg <<'EOF'\n"
29004 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29005 " \"Test\"=\"c:\\\\test.bat\"\n"
29006 " EOF\n"
29007 "\n"
29008 msgstr ""
29009
29010 #. type: textblock
29011 #: ../tools/virt-win-reg.pl:661
29012 msgid ""
29013 "In this example we use the key C<RunOnce> which means that the script will "
29014 "run precisely once when the first user logs in.  If you want it to run every "
29015 "time a user logs in, replace C<RunOnce> with C<Run>."
29016 msgstr ""
29017
29018 #. type: textblock
29019 #: ../tools/virt-win-reg.pl:665
29020 msgid "Now update the registry:"
29021 msgstr ""
29022
29023 #. type: verbatim
29024 #: ../tools/virt-win-reg.pl:667
29025 #, no-wrap
29026 msgid ""
29027 " virt-win-reg --merge WindowsGuest test.reg\n"
29028 "\n"
29029 msgstr ""
29030
29031 #. type: =head2
29032 #: ../tools/virt-win-reg.pl:669
29033 msgid "INSTALLING A SERVICE"
29034 msgstr ""
29035
29036 #. type: textblock
29037 #: ../tools/virt-win-reg.pl:671
29038 msgid ""
29039 "This section assumes you are familiar with Windows services, and you either "
29040 "have a program which handles the Windows Service Control Protocol directly "
29041 "or you want to run any program using a service wrapper like SrvAny or the "
29042 "free RHSrvAny."
29043 msgstr ""
29044
29045 #. type: textblock
29046 #: ../tools/virt-win-reg.pl:676
29047 msgid ""
29048 "First upload the program and optionally the service wrapper.  In this case "
29049 "the test program is called C<test.exe> and we are using the RHSrvAny "
29050 "wrapper:"
29051 msgstr ""
29052
29053 #. type: verbatim
29054 #: ../tools/virt-win-reg.pl:680
29055 #, no-wrap
29056 msgid ""
29057 " guestfish -i -d WindowsGuest <<EOF\n"
29058 "   upload rhsrvany.exe /rhsrvany.exe\n"
29059 "   upload test.exe /test.exe\n"
29060 " EOF\n"
29061 "\n"
29062 msgstr ""
29063
29064 #. type: textblock
29065 #: ../tools/virt-win-reg.pl:685
29066 msgid ""
29067 "Prepare a regedit file containing the registry changes.  In this example, "
29068 "the first registry change is needed for the service itself or the service "
29069 "wrapper (if used).  The second registry change is only needed because I am "
29070 "using the RHSrvAny service wrapper."
29071 msgstr ""
29072
29073 #. type: verbatim
29074 #: ../tools/virt-win-reg.pl:690
29075 #, no-wrap
29076 msgid ""
29077 " cat > service.reg <<'EOF'\n"
29078 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
29079 " \"Type\"=dword:00000010\n"
29080 " \"Start\"=dword:00000002\n"
29081 " \"ErrorControl\"=dword:00000001\n"
29082 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
29083 " \"DisplayName\"=\"RHSrvAny\"\n"
29084 " \"ObjectName\"=\"NetworkService\"\n"
29085 " \n"
29086 msgstr ""
29087
29088 #. type: verbatim
29089 #: ../tools/virt-win-reg.pl:699
29090 #, no-wrap
29091 msgid ""
29092 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
29093 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
29094 " \"PWD\"=\"c:\\\\Temp\"\n"
29095 " EOF\n"
29096 "\n"
29097 msgstr ""
29098
29099 #. type: textblock
29100 #: ../tools/virt-win-reg.pl:710
29101 msgid ""
29102 "For use of C<ControlSet001> see the section above in this manual page.  You "
29103 "may need to adjust this according to the control set that is in use by the "
29104 "guest."
29105 msgstr ""
29106
29107 #. type: textblock
29108 #: ../tools/virt-win-reg.pl:716
29109 msgid ""
29110 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
29111 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
29112 "privileged account."
29113 msgstr ""
29114
29115 #. type: textblock
29116 #: ../tools/virt-win-reg.pl:722
29117 msgid ""
29118 "For the meaning of the magic numbers, see this Microsoft KB article: "
29119 "L<http://support.microsoft.com/kb/103000>."
29120 msgstr ""
29121
29122 #. type: textblock
29123 #: ../tools/virt-win-reg.pl:727
29124 msgid "Update the registry:"
29125 msgstr ""
29126
29127 #. type: verbatim
29128 #: ../tools/virt-win-reg.pl:729
29129 #, no-wrap
29130 msgid ""
29131 " virt-win-reg --merge WindowsGuest service.reg\n"
29132 "\n"
29133 msgstr ""
29134
29135 #. type: =head1
29136 #: ../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
29137 msgid "SHELL QUOTING"
29138 msgstr ""
29139
29140 #. type: textblock
29141 #: ../tools/virt-win-reg.pl:733
29142 msgid ""
29143 "Be careful when passing parameters containing C<\\> (backslash) in the "
29144 "shell.  Usually you will have to use 'single quotes' or double backslashes "
29145 "(but not both) to protect them from the shell."
29146 msgstr ""
29147
29148 #. type: textblock
29149 #: ../tools/virt-win-reg.pl:737
29150 msgid "Paths and value names are case-insensitive."
29151 msgstr ""
29152
29153 #. type: textblock
29154 #: ../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
29155 msgid ""
29156 "Libvirt guest names can contain arbitrary characters, some of which have "
29157 "meaning to the shell such as C<#> and space.  You may need to quote or "
29158 "escape these characters on the command line.  See the shell manual page "
29159 "L<sh(1)> for details."
29160 msgstr ""
29161
29162 #. type: textblock
29163 #: ../tools/virt-win-reg.pl:746
29164 msgid ""
29165 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
29166 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
29167 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
29168 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29169 msgstr ""
29170
29171 #. type: textblock
29172 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
29173 msgid ""
29174 "When reporting bugs, please enable debugging and capture the I<complete> "
29175 "output:"
29176 msgstr ""
29177
29178 #. type: verbatim
29179 #: ../tools/virt-win-reg.pl:764
29180 #, no-wrap
29181 msgid ""
29182 " export LIBGUESTFS_DEBUG=1\n"
29183 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
29184 "\n"
29185 msgstr ""
29186
29187 #. type: textblock
29188 #: ../tools/virt-win-reg.pl:767
29189 msgid ""
29190 "Attach /tmp/virt-win-reg.log to a new bug report at "
29191 "L<https://bugzilla.redhat.com/>"
29192 msgstr ""
29193
29194 #. type: =head1
29195 #: ../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
29196 msgid "AUTHOR"
29197 msgstr ""
29198
29199 #. type: textblock
29200 #: ../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
29201 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29202 msgstr ""
29203
29204 #. type: textblock
29205 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
29206 msgid "Copyright (C) 2010 Red Hat Inc."
29207 msgstr ""
29208
29209 #. type: textblock
29210 #: ../tools/virt-list-filesystems.pl:32
29211 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
29212 msgstr ""
29213
29214 #. type: verbatim
29215 #: ../tools/virt-list-filesystems.pl:36
29216 #, no-wrap
29217 msgid ""
29218 " virt-list-filesystems [--options] domname\n"
29219 "\n"
29220 msgstr ""
29221
29222 #. type: verbatim
29223 #: ../tools/virt-list-filesystems.pl:38
29224 #, no-wrap
29225 msgid ""
29226 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29227 "\n"
29228 msgstr ""
29229
29230 #. type: textblock
29231 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29232 msgid ""
29233 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29234 "replacement."
29235 msgstr ""
29236
29237 #. type: textblock
29238 #: ../tools/virt-list-filesystems.pl:45
29239 msgid ""
29240 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29241 "are contained in a virtual machine or disk image."
29242 msgstr ""
29243
29244 #. type: textblock
29245 #: ../tools/virt-list-filesystems.pl:49
29246 msgid ""
29247 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29248 "functionality.  For more complex cases you should look at the "
29249 "L<guestfish(1)> tool."
29250 msgstr ""
29251
29252 #. type: =item
29253 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
29254 msgid "B<-l> | B<--long>"
29255 msgstr ""
29256
29257 #. type: textblock
29258 #: ../tools/virt-list-filesystems.pl:108
29259 msgid ""
29260 "With this option, C<virt-list-filesystems> displays the type of each "
29261 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
29262 msgstr ""
29263
29264 #. type: =item
29265 #: ../tools/virt-list-filesystems.pl:115
29266 msgid "B<-a> | B<--all>"
29267 msgstr ""
29268
29269 #. type: textblock
29270 #: ../tools/virt-list-filesystems.pl:117
29271 msgid ""
29272 "Normally we only show mountable filesystems.  If this option is given then "
29273 "swap devices are shown too."
29274 msgstr ""
29275
29276 #. type: textblock
29277 #: ../tools/virt-list-filesystems.pl:191
29278 msgid ""
29279 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
29280 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
29281 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29282 msgstr ""
29283
29284 #. type: textblock
29285 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
29286 msgid "Copyright (C) 2009 Red Hat Inc."
29287 msgstr ""
29288
29289 #. type: textblock
29290 #: ../tools/virt-tar.pl:33
29291 msgid "virt-tar - Extract or upload files to a virtual machine"
29292 msgstr ""
29293
29294 #. type: verbatim
29295 #: ../tools/virt-tar.pl:37
29296 #, no-wrap
29297 msgid ""
29298 " virt-tar [--options] -x domname directory tarball\n"
29299 "\n"
29300 msgstr ""
29301
29302 #. type: verbatim
29303 #: ../tools/virt-tar.pl:39
29304 #, no-wrap
29305 msgid ""
29306 " virt-tar [--options] -u domname tarball directory\n"
29307 "\n"
29308 msgstr ""
29309
29310 #. type: verbatim
29311 #: ../tools/virt-tar.pl:41
29312 #, no-wrap
29313 msgid ""
29314 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
29315 "\n"
29316 msgstr ""
29317
29318 #. type: verbatim
29319 #: ../tools/virt-tar.pl:43
29320 #, no-wrap
29321 msgid ""
29322 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
29323 "\n"
29324 msgstr ""
29325
29326 #. type: textblock
29327 #: ../tools/virt-tar.pl:47
29328 msgid ""
29329 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, "
29330 "L<virt-tar-in(1)>, L<virt-tar-out(1)> as replacements."
29331 msgstr ""
29332
29333 #. type: textblock
29334 #: ../tools/virt-tar.pl:52
29335 msgid "Download C</home> from the VM into a local tarball:"
29336 msgstr ""
29337
29338 #. type: verbatim
29339 #: ../tools/virt-tar.pl:54
29340 #, no-wrap
29341 msgid ""
29342 " virt-tar -x domname /home home.tar\n"
29343 "\n"
29344 msgstr ""
29345
29346 #. type: verbatim
29347 #: ../tools/virt-tar.pl:56
29348 #, no-wrap
29349 msgid ""
29350 " virt-tar -zx domname /home home.tar.gz\n"
29351 "\n"
29352 msgstr ""
29353
29354 #. type: textblock
29355 #: ../tools/virt-tar.pl:58
29356 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29357 msgstr ""
29358
29359 #. type: verbatim
29360 #: ../tools/virt-tar.pl:60
29361 #, no-wrap
29362 msgid ""
29363 " virt-tar -u domname uploadstuff.tar /tmp\n"
29364 "\n"
29365 msgstr ""
29366
29367 #. type: verbatim
29368 #: ../tools/virt-tar.pl:62
29369 #, no-wrap
29370 msgid ""
29371 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
29372 "\n"
29373 msgstr ""
29374
29375 #. type: textblock
29376 #: ../tools/virt-tar.pl:66
29377 msgid ""
29378 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
29379 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
29380 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
29381 msgstr ""
29382
29383 #. type: textblock
29384 #: ../tools/virt-tar.pl:71
29385 msgid ""
29386 "You can use I<-x> (extract) on live virtual machines, but you might get "
29387 "inconsistent results or errors if there is filesystem activity inside the "
29388 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
29389 "work, but the only way to guarantee consistent results is if the virtual "
29390 "machine is shut down."
29391 msgstr ""
29392
29393 #. type: textblock
29394 #: ../tools/virt-tar.pl:79
29395 msgid ""
29396 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
29397 "parts of a guest filesystem.  There are many possibilities: making backups, "
29398 "uploading data files, snooping on guest activity, fixing or customizing "
29399 "guests, etc."
29400 msgstr ""
29401
29402 #. type: textblock
29403 #: ../tools/virt-tar.pl:84
29404 msgid ""
29405 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
29406 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
29407 "should look at the L<guestfish(1)> tool."
29408 msgstr ""
29409
29410 #. type: textblock
29411 #: ../tools/virt-tar.pl:88
29412 msgid ""
29413 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
29414 "its contents (recursively) from the virtual machine into a local tarball.  "
29415 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
29416 "virtual machine.  You cannot use these two options together."
29417 msgstr ""
29418
29419 #. type: textblock
29420 #: ../tools/virt-tar.pl:94
29421 msgid ""
29422 "In addition, you may need to use the I<-z> (gZip) option to enable "
29423 "compression.  When uploading, you have to specify I<-z> if the upload file "
29424 "is compressed because virt-tar won't detect this on its own."
29425 msgstr ""
29426
29427 #. type: textblock
29428 #: ../tools/virt-tar.pl:98
29429 msgid ""
29430 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
29431 "example it cannot do PKZip files or bzip2 compression.  If you want that "
29432 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
29433 "the L<libguestfs(3)> API)."
29434 msgstr ""
29435
29436 #. type: =item
29437 #: ../tools/virt-tar.pl:156
29438 msgid "B<-x> | B<--extract> | B<--download>"
29439 msgstr ""
29440
29441 #. type: =item
29442 #: ../tools/virt-tar.pl:158
29443 msgid "B<-u> | B<--upload>"
29444 msgstr ""
29445
29446 #. type: textblock
29447 #: ../tools/virt-tar.pl:160
29448 msgid ""
29449 "Use I<-x> to extract (download) a directory from a virtual machine to a "
29450 "local tarball."
29451 msgstr ""
29452
29453 #. type: textblock
29454 #: ../tools/virt-tar.pl:163
29455 msgid ""
29456 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
29457 "Please read the L</WARNING> section above before using this option."
29458 msgstr ""
29459
29460 #. type: textblock
29461 #: ../tools/virt-tar.pl:167
29462 msgid "You must specify exactly one of these options."
29463 msgstr ""
29464
29465 #. type: =item
29466 #: ../tools/virt-tar.pl:173
29467 msgid "B<-z> | B<--gzip>"
29468 msgstr ""
29469
29470 #. type: textblock
29471 #: ../tools/virt-tar.pl:175
29472 msgid "Specify that the input or output tarball is gzip-compressed."
29473 msgstr ""
29474
29475 #. type: textblock
29476 #: ../tools/virt-tar.pl:288
29477 msgid ""
29478 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29479 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
29480 "L<virt-tar-out(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, "
29481 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29482 msgstr ""
29483
29484 #. type: textblock
29485 #: ../tools/virt-make-fs.pl:37
29486 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
29487 msgstr ""
29488
29489 #. type: verbatim
29490 #: ../tools/virt-make-fs.pl:41
29491 #, no-wrap
29492 msgid ""
29493 " virt-make-fs [--options] input.tar output.img\n"
29494 "\n"
29495 msgstr ""
29496
29497 #. type: verbatim
29498 #: ../tools/virt-make-fs.pl:43
29499 #, no-wrap
29500 msgid ""
29501 " virt-make-fs [--options] input.tar.gz output.img\n"
29502 "\n"
29503 msgstr ""
29504
29505 #. type: verbatim
29506 #: ../tools/virt-make-fs.pl:45
29507 #, no-wrap
29508 msgid ""
29509 " virt-make-fs [--options] directory output.img\n"
29510 "\n"
29511 msgstr ""
29512
29513 #. type: textblock
29514 #: ../tools/virt-make-fs.pl:49
29515 msgid ""
29516 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
29517 "archive or some files in a directory.  It is similar to tools like "
29518 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
29519 "it can create common filesystem types like ext2/3 or NTFS, which can be "
29520 "useful if you want to attach these filesystems to existing virtual machines "
29521 "(eg. to import large amounts of read-only data to a VM)."
29522 msgstr ""
29523
29524 #. type: textblock
29525 #: ../tools/virt-make-fs.pl:57
29526 msgid "Basic usage is:"
29527 msgstr ""
29528
29529 #. type: verbatim
29530 #: ../tools/virt-make-fs.pl:59
29531 #, no-wrap
29532 msgid ""
29533 " virt-make-fs input output\n"
29534 "\n"
29535 msgstr ""
29536
29537 #. type: textblock
29538 #: ../tools/virt-make-fs.pl:61
29539 msgid ""
29540 "where C<input> is either a directory containing files that you want to add, "
29541 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
29542 "C<output> is a disk image.  The input type is detected automatically.  The "
29543 "output disk image defaults to a raw ext2 image unless you specify extra "
29544 "flags (see L</OPTIONS> below)."
29545 msgstr ""
29546
29547 #. type: =head2
29548 #: ../tools/virt-make-fs.pl:67
29549 msgid "EXTRA SPACE"
29550 msgstr ""
29551
29552 #. type: textblock
29553 #: ../tools/virt-make-fs.pl:69
29554 msgid ""
29555 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
29556 "the files that it contains, but might have extra space.  Depending on how "
29557 "you are going to use the output, you might think this extra space is wasted "
29558 "and want to minimize it, or you might want to leave space so that more files "
29559 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
29560 "but you can use the I<--size> flag to leave space in the filesystem if you "
29561 "want it."
29562 msgstr ""
29563
29564 #. type: textblock
29565 #: ../tools/virt-make-fs.pl:77
29566 msgid ""
29567 "An alternative way to leave extra space but not make the output image any "
29568 "bigger is to use an alternative disk image format (instead of the default "
29569 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
29570 "image format (check your hypervisor supports this before using it).  This "
29571 "allows you to choose a large I<--size> but the extra space won't actually be "
29572 "allocated in the image until you try to store something in it."
29573 msgstr ""
29574
29575 #. type: textblock
29576 #: ../tools/virt-make-fs.pl:85
29577 msgid ""
29578 "Don't forget that you can also use local commands including L<resize2fs(8)> "
29579 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
29580 "to build another image from scratch."
29581 msgstr ""
29582
29583 #. type: =head3
29584 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
29585 msgid "EXAMPLE"
29586 msgstr ""
29587
29588 #. type: verbatim
29589 #: ../tools/virt-make-fs.pl:91
29590 #, no-wrap
29591 msgid ""
29592 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
29593 "\n"
29594 msgstr ""
29595
29596 #. type: =head2
29597 #: ../tools/virt-make-fs.pl:93
29598 msgid "FILESYSTEM TYPE"
29599 msgstr ""
29600
29601 #. type: textblock
29602 #: ../tools/virt-make-fs.pl:95
29603 msgid ""
29604 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
29605 "libguestfs supports can be used (but I<not> read-only formats like "
29606 "ISO9660).  Here are some of the more common choices:"
29607 msgstr ""
29608
29609 #. type: =item
29610 #: ../tools/virt-make-fs.pl:101
29611 msgid "I<ext3>"
29612 msgstr ""
29613
29614 #. type: textblock
29615 #: ../tools/virt-make-fs.pl:103
29616 msgid ""
29617 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
29618 "you are not going to use the filesystem in a way that requires the journal, "
29619 "then this is just wasted overhead."
29620 msgstr ""
29621
29622 #. type: =item
29623 #: ../tools/virt-make-fs.pl:107
29624 msgid "I<ntfs> or I<vfat>"
29625 msgstr ""
29626
29627 #. type: textblock
29628 #: ../tools/virt-make-fs.pl:109
29629 msgid "Useful if exporting data to a Windows guest."
29630 msgstr ""
29631
29632 #. type: textblock
29633 #: ../tools/virt-make-fs.pl:111
29634 msgid ""
29635 "I<Note for vfat>: The tar archive or local directory must only contain files "
29636 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
29637 "program running within libguestfs is unable to change the ownership of "
29638 "non-root files, since vfat itself does not support this."
29639 msgstr ""
29640
29641 #. type: =item
29642 #: ../tools/virt-make-fs.pl:116
29643 msgid "I<minix>"
29644 msgstr ""
29645
29646 #. type: textblock
29647 #: ../tools/virt-make-fs.pl:118
29648 msgid ""
29649 "Lower overhead than C<ext2>, but certain limitations on filename length and "
29650 "total filesystem size."
29651 msgstr ""
29652
29653 #. type: verbatim
29654 #: ../tools/virt-make-fs.pl:125
29655 #, no-wrap
29656 msgid ""
29657 " virt-make-fs --type=minix input minixfs.img\n"
29658 "\n"
29659 msgstr ""
29660
29661 #. type: =head2
29662 #: ../tools/virt-make-fs.pl:127
29663 msgid "TO PARTITION OR NOT TO PARTITION"
29664 msgstr ""
29665
29666 #. type: textblock
29667 #: ../tools/virt-make-fs.pl:129
29668 msgid "Optionally virt-make-fs can add a partition table to the output disk."
29669 msgstr ""
29670
29671 #. type: textblock
29672 #: ../tools/virt-make-fs.pl:131
29673 msgid ""
29674 "Adding a partition can make the disk image more compatible with certain "
29675 "virtualized operating systems which don't expect to see a filesystem "
29676 "directly located on a block device (Linux doesn't care and will happily "
29677 "handle both types)."
29678 msgstr ""
29679
29680 #. type: textblock
29681 #: ../tools/virt-make-fs.pl:136
29682 msgid ""
29683 "On the other hand, if you have a partition table then the output image is no "
29684 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
29685 "directly on a partitioned disk image.  (However libguestfs tools such as "
29686 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
29687 msgstr ""
29688
29689 #. type: textblock
29690 #: ../tools/virt-make-fs.pl:144
29691 msgid "Add an MBR partition:"
29692 msgstr ""
29693
29694 #. type: verbatim
29695 #: ../tools/virt-make-fs.pl:146
29696 #, no-wrap
29697 msgid ""
29698 " virt-make-fs --partition -- input disk.img\n"
29699 "\n"
29700 msgstr ""
29701
29702 #. type: textblock
29703 #: ../tools/virt-make-fs.pl:148
29704 msgid ""
29705 "If the output disk image could be terabyte-sized or larger, it's better to "
29706 "use an EFI/GPT-compatible partition table:"
29707 msgstr ""
29708
29709 #. type: verbatim
29710 #: ../tools/virt-make-fs.pl:151
29711 #, no-wrap
29712 msgid ""
29713 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
29714 "\n"
29715 msgstr ""
29716
29717 #. type: textblock
29718 #: ../tools/virt-make-fs.pl:179
29719 msgid "Enable debugging information."
29720 msgstr ""
29721
29722 #. type: =item
29723 #: ../tools/virt-make-fs.pl:185
29724 msgid "B<--size=E<lt>NE<gt>>"
29725 msgstr ""
29726
29727 #. type: =item
29728 #: ../tools/virt-make-fs.pl:187
29729 msgid "B<--size=+E<lt>NE<gt>>"
29730 msgstr ""
29731
29732 #. type: =item
29733 #: ../tools/virt-make-fs.pl:189
29734 msgid "B<-s E<lt>NE<gt>>"
29735 msgstr ""
29736
29737 #. type: =item
29738 #: ../tools/virt-make-fs.pl:191
29739 msgid "B<-s +E<lt>NE<gt>>"
29740 msgstr ""
29741
29742 #. type: textblock
29743 #: ../tools/virt-make-fs.pl:193
29744 msgid "Use the I<--size> (or I<-s>) option to choose the size of the output image."
29745 msgstr ""
29746
29747 #. type: textblock
29748 #: ../tools/virt-make-fs.pl:196
29749 msgid ""
29750 "If this option is I<not> given, then the output image will be just large "
29751 "enough to contain all the files, with not much wasted space."
29752 msgstr ""
29753
29754 #. type: textblock
29755 #: ../tools/virt-make-fs.pl:199
29756 msgid ""
29757 "To choose a fixed size output disk, specify an absolute number followed by "
29758 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29759 "Petabytes or Exabytes.  This must be large enough to contain all the input "
29760 "files, else you will get an error."
29761 msgstr ""
29762
29763 #. type: textblock
29764 #: ../tools/virt-make-fs.pl:204
29765 msgid ""
29766 "To leave extra space, specify C<+> (plus sign) and a number followed by "
29767 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
29768 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
29769 "the input files, and (approximately) an extra 200 MB free space."
29770 msgstr ""
29771
29772 #. type: textblock
29773 #: ../tools/virt-make-fs.pl:210
29774 msgid ""
29775 "Note that virt-make-fs estimates free space, and therefore will not produce "
29776 "filesystems containing precisely the free space requested.  (It is much more "
29777 "expensive and time-consuming to produce a filesystem which has precisely the "
29778 "desired free space)."
29779 msgstr ""
29780
29781 #. type: =item
29782 #: ../tools/virt-make-fs.pl:219
29783 msgid "B<--format=E<lt>fmtE<gt>>"
29784 msgstr ""
29785
29786 #. type: =item
29787 #: ../tools/virt-make-fs.pl:221
29788 msgid "B<-F E<lt>fmtE<gt>>"
29789 msgstr ""
29790
29791 #. type: textblock
29792 #: ../tools/virt-make-fs.pl:223
29793 msgid "Choose the output disk image format."
29794 msgstr ""
29795
29796 #. type: textblock
29797 #: ../tools/virt-make-fs.pl:225
29798 msgid "The default is C<raw> (raw disk image)."
29799 msgstr ""
29800
29801 #. type: textblock
29802 #: ../tools/virt-make-fs.pl:227
29803 msgid ""
29804 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
29805 "that would really make sense here is C<qcow2>."
29806 msgstr ""
29807
29808 #. type: =item
29809 #: ../tools/virt-make-fs.pl:234
29810 msgid "B<--type=E<lt>fsE<gt>>"
29811 msgstr ""
29812
29813 #. type: =item
29814 #: ../tools/virt-make-fs.pl:236
29815 msgid "B<-t E<lt>fsE<gt>>"
29816 msgstr ""
29817
29818 #. type: textblock
29819 #: ../tools/virt-make-fs.pl:238
29820 msgid "Choose the output filesystem type."
29821 msgstr ""
29822
29823 #. type: textblock
29824 #: ../tools/virt-make-fs.pl:240
29825 msgid "The default is C<ext2>."
29826 msgstr ""
29827
29828 #. type: textblock
29829 #: ../tools/virt-make-fs.pl:242
29830 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
29831 msgstr ""
29832
29833 #. type: =item
29834 #: ../tools/virt-make-fs.pl:249
29835 msgid "B<--partition>"
29836 msgstr ""
29837
29838 #. type: =item
29839 #: ../tools/virt-make-fs.pl:251
29840 msgid "B<--partition=E<lt>parttypeE<gt>>"
29841 msgstr ""
29842
29843 #. type: textblock
29844 #: ../tools/virt-make-fs.pl:253
29845 msgid ""
29846 "If specified, this flag adds an MBR partition table to the output disk "
29847 "image."
29848 msgstr ""
29849
29850 #. type: textblock
29851 #: ../tools/virt-make-fs.pl:256
29852 msgid ""
29853 "You can change the partition table type, eg. I<--partition=gpt> for large "
29854 "disks."
29855 msgstr ""
29856
29857 #. type: textblock
29858 #: ../tools/virt-make-fs.pl:259
29859 msgid ""
29860 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
29861 "might consider the next parameter to be the partition type.  For example:"
29862 msgstr ""
29863
29864 #. type: verbatim
29865 #: ../tools/virt-make-fs.pl:263
29866 #, no-wrap
29867 msgid ""
29868 " virt-make-fs --partition input.tar ...\n"
29869 "\n"
29870 msgstr ""
29871
29872 #. type: textblock
29873 #: ../tools/virt-make-fs.pl:265
29874 msgid ""
29875 "would cause virt-make-fs to think you wanted to use a partition type of "
29876 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
29877 "dash) between options and the input file argument:"
29878 msgstr ""
29879
29880 #. type: verbatim
29881 #: ../tools/virt-make-fs.pl:269
29882 #, no-wrap
29883 msgid ""
29884 " virt-make-fs --partition -- input.tar ...\n"
29885 "\n"
29886 msgstr ""
29887
29888 #. type: textblock
29889 #: ../tools/virt-make-fs.pl:541
29890 msgid ""
29891 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
29892 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
29893 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
29894 msgstr ""
29895
29896 #. type: verbatim
29897 #: ../tools/virt-make-fs.pl:558
29898 #, no-wrap
29899 msgid ""
29900 " export LIBGUESTFS_DEBUG=1\n"
29901 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
29902 "\n"
29903 msgstr ""
29904
29905 #. type: textblock
29906 #: ../tools/virt-make-fs.pl:561
29907 msgid ""
29908 "Attach /tmp/virt-make-fs.log to a new bug report at "
29909 "L<https://bugzilla.redhat.com/>"
29910 msgstr ""
29911
29912 #. type: textblock
29913 #: ../tools/virt-list-partitions.pl:32
29914 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
29915 msgstr ""
29916
29917 #. type: verbatim
29918 #: ../tools/virt-list-partitions.pl:36
29919 #, no-wrap
29920 msgid ""
29921 " virt-list-partitions [--options] domname\n"
29922 "\n"
29923 msgstr ""
29924
29925 #. type: verbatim
29926 #: ../tools/virt-list-partitions.pl:38
29927 #, no-wrap
29928 msgid ""
29929 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
29930 "\n"
29931 msgstr ""
29932
29933 #. type: textblock
29934 #: ../tools/virt-list-partitions.pl:45
29935 msgid ""
29936 "C<virt-list-partitions> is a command line tool to list the partitions that "
29937 "are contained in a virtual machine or disk image.  It is mainly useful as a "
29938 "first step to using L<virt-resize(1)>."
29939 msgstr ""
29940
29941 #. type: textblock
29942 #: ../tools/virt-list-partitions.pl:50
29943 msgid ""
29944 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
29945 "functionality.  For more complex cases you should look at the "
29946 "L<guestfish(1)> tool."
29947 msgstr ""
29948
29949 #. type: =item
29950 #: ../tools/virt-list-partitions.pl:107
29951 msgid "B<-h> | B<--human-readable>"
29952 msgstr ""
29953
29954 #. type: textblock
29955 #: ../tools/virt-list-partitions.pl:109
29956 msgid "Show sizes in human-readable form (eg. \"1G\")."
29957 msgstr ""
29958
29959 #. type: textblock
29960 #: ../tools/virt-list-partitions.pl:117
29961 msgid ""
29962 "With this option, C<virt-list-partitions> displays the type and size of each "
29963 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
29964 msgstr ""
29965
29966 #. type: =item
29967 #: ../tools/virt-list-partitions.pl:124
29968 msgid "B<-t> | B<--total>"
29969 msgstr ""
29970
29971 #. type: textblock
29972 #: ../tools/virt-list-partitions.pl:126
29973 msgid "Display the total size of each block device (as a separate row or rows)."
29974 msgstr ""
29975
29976 #. type: textblock
29977 #: ../tools/virt-list-partitions.pl:259
29978 msgid ""
29979 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
29980 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
29981 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29982 msgstr ""
29983
29984 #. type: textblock
29985 #: ../tools/virt-list-partitions.pl:275
29986 msgid "Copyright (C) 2009-2010 Red Hat Inc."
29987 msgstr ""