d2a45891eb9585d0a4cb6b6425b45f3ed9c529fa
[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.12\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-06-28 19:35+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 ../src/guestfs-actions.pod:2783 ../src/guestfs-actions.pod:2789 ../src/guestfs-actions.pod:2797 ../src/guestfs-actions.pod:2804 ../src/guestfs-actions.pod:2811 ../fish/guestfish.pod:445 ../fish/guestfish.pod:449 ../fish/guestfish.pod:453 ../fish/guestfish.pod:457 ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20 ../fish/guestfish-actions.pod:385 ../fish/guestfish-actions.pod:393 ../fish/guestfish-actions.pod:400 ../fish/guestfish-actions.pod:407 ../fish/guestfish-actions.pod:1074 ../fish/guestfish-actions.pod:1078 ../fish/guestfish-actions.pod:1082 ../fish/guestfish-actions.pod:1086 ../fish/guestfish-actions.pod:1094 ../fish/guestfish-actions.pod:1098 ../fish/guestfish-actions.pod:1102 ../fish/guestfish-actions.pod:1112 ../fish/guestfish-actions.pod:1116 ../fish/guestfish-actions.pod:1120 ../fish/guestfish-actions.pod:1210 ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219 ../fish/guestfish-actions.pod:1224 ../fish/guestfish-actions.pod:1266 ../fish/guestfish-actions.pod:1270 ../fish/guestfish-actions.pod:1275 ../fish/guestfish-actions.pod:1902 ../fish/guestfish-actions.pod:1908 ../fish/guestfish-actions.pod:1916 ../fish/guestfish-actions.pod:1923 ../fish/guestfish-actions.pod:1930 ../tools/virt-win-reg.pl:195 ../tools/virt-win-reg.pl:200 ../tools/virt-win-reg.pl:206 ../tools/virt-win-reg.pl:708 ../tools/virt-win-reg.pl:714 ../tools/virt-win-reg.pl:720
811 msgid "*"
812 msgstr ""
813
814 #. type: textblock
815 #: ../src/guestfs.pod:390
816 msgid ""
817 "The kernel version that the command runs under will be different from what "
818 "it expects."
819 msgstr ""
820
821 #. type: textblock
822 #: ../src/guestfs.pod:395
823 msgid ""
824 "If the command needs to communicate with daemons, then most likely they "
825 "won't be running."
826 msgstr ""
827
828 #. type: textblock
829 #: ../src/guestfs.pod:400
830 msgid "The command will be running in limited memory."
831 msgstr ""
832
833 #. type: textblock
834 #: ../src/guestfs.pod:404
835 msgid ""
836 "The network may not be available unless you enable it (see "
837 "L</guestfs_set_network>)."
838 msgstr ""
839
840 #. type: textblock
841 #: ../src/guestfs.pod:409
842 msgid "Only supports Linux guests (not Windows, BSD, etc)."
843 msgstr ""
844
845 #. type: textblock
846 #: ../src/guestfs.pod:413
847 msgid "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
848 msgstr ""
849
850 #. type: textblock
851 #: ../src/guestfs.pod:418
852 msgid ""
853 "For SELinux guests, you may need to enable SELinux and load policy first.  "
854 "See L</SELINUX> in this manpage."
855 msgstr ""
856
857 #. type: textblock
858 #: ../src/guestfs.pod:423
859 msgid ""
860 "I<Security:> It is not safe to run commands from untrusted, possibly "
861 "malicious guests.  These commands may attempt to exploit your program by "
862 "sending unexpected output.  They could also try to exploit the Linux kernel "
863 "or qemu provided by the libguestfs appliance.  They could use the network "
864 "provided by the libguestfs appliance to bypass ordinary network partitions "
865 "and firewalls.  They could use the elevated privileges or different SELinux "
866 "context of your program to their advantage."
867 msgstr ""
868
869 #. type: textblock
870 #: ../src/guestfs.pod:432
871 msgid ""
872 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
873 "(a script which runs when the guest next boots normally), and to have this "
874 "script run the commands you want in the normal context of the running guest, "
875 "network security and so on.  For information about other security issues, "
876 "see L</SECURITY>."
877 msgstr ""
878
879 #. type: textblock
880 #: ../src/guestfs.pod:440
881 msgid ""
882 "The two main API calls to run commands are L</guestfs_command> and "
883 "L</guestfs_sh> (there are also variations)."
884 msgstr ""
885
886 #. type: textblock
887 #: ../src/guestfs.pod:443
888 msgid ""
889 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
890 "shell globs, redirections, etc will work."
891 msgstr ""
892
893 #. type: =head2
894 #: ../src/guestfs.pod:446
895 msgid "CONFIGURATION FILES"
896 msgstr ""
897
898 #. type: textblock
899 #: ../src/guestfs.pod:448
900 msgid ""
901 "To read and write configuration files in Linux guest filesystems, we "
902 "strongly recommend using Augeas.  For example, Augeas understands how to "
903 "read and write, say, a Linux shadow password file or X.org configuration "
904 "file, and so avoids you having to write that code."
905 msgstr ""
906
907 #. type: textblock
908 #: ../src/guestfs.pod:453
909 msgid ""
910 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
911 "document Augeas itself here because there is excellent documentation on the "
912 "L<http://augeas.net/> website."
913 msgstr ""
914
915 #. type: textblock
916 #: ../src/guestfs.pod:457
917 msgid ""
918 "If you don't want to use Augeas (you fool!) then try calling "
919 "L</guestfs_read_lines> to get the file as a list of lines which you can "
920 "iterate over."
921 msgstr ""
922
923 #. type: =head2
924 #: ../src/guestfs.pod:461
925 msgid "SELINUX"
926 msgstr ""
927
928 #. type: textblock
929 #: ../src/guestfs.pod:463
930 msgid ""
931 "We support SELinux guests.  To ensure that labeling happens correctly in "
932 "SELinux guests, you need to enable SELinux and load the guest's policy:"
933 msgstr ""
934
935 #. type: =item
936 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395 ../src/guestfs.pod:2426
937 msgid "1."
938 msgstr ""
939
940 #. type: textblock
941 #: ../src/guestfs.pod:471
942 msgid "Before launching, do:"
943 msgstr ""
944
945 #. type: verbatim
946 #: ../src/guestfs.pod:473
947 #, no-wrap
948 msgid ""
949 " guestfs_set_selinux (g, 1);\n"
950 "\n"
951 msgstr ""
952
953 #. type: =item
954 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399 ../src/guestfs.pod:2451
955 msgid "2."
956 msgstr ""
957
958 #. type: textblock
959 #: ../src/guestfs.pod:477
960 msgid ""
961 "After mounting the guest's filesystem(s), load the policy.  This is best "
962 "done by running the L<load_policy(8)> command in the guest itself:"
963 msgstr ""
964
965 #. type: verbatim
966 #: ../src/guestfs.pod:481
967 #, no-wrap
968 msgid ""
969 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
970 "\n"
971 msgstr ""
972
973 #. type: textblock
974 #: ../src/guestfs.pod:483
975 msgid ""
976 "(Older versions of C<load_policy> require you to specify the name of the "
977 "policy file)."
978 msgstr ""
979
980 #. type: =item
981 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
982 msgid "3."
983 msgstr ""
984
985 #. type: textblock
986 #: ../src/guestfs.pod:488
987 msgid ""
988 "Optionally, set the security context for the API.  The correct security "
989 "context to use can only be known by inspecting the guest.  As an example:"
990 msgstr ""
991
992 #. type: verbatim
993 #: ../src/guestfs.pod:492
994 #, no-wrap
995 msgid ""
996 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
997 "\n"
998 msgstr ""
999
1000 #. type: textblock
1001 #: ../src/guestfs.pod:496
1002 msgid "This will work for running commands and editing existing files."
1003 msgstr ""
1004
1005 #. type: textblock
1006 #: ../src/guestfs.pod:498
1007 msgid ""
1008 "When new files are created, you may need to label them explicitly, for "
1009 "example by running the external command C<restorecon pathname>."
1010 msgstr ""
1011
1012 #. type: =head2
1013 #: ../src/guestfs.pod:502
1014 msgid "UMASK"
1015 msgstr ""
1016
1017 #. type: textblock
1018 #: ../src/guestfs.pod:504
1019 msgid ""
1020 "Certain calls are affected by the current file mode creation mask (the "
1021 "\"umask\").  In particular ones which create files or directories, such as "
1022 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1023 "either the default mode that the file is created with or modifies the mode "
1024 "that you supply."
1025 msgstr ""
1026
1027 #. type: textblock
1028 #: ../src/guestfs.pod:510
1029 msgid ""
1030 "The default umask is C<022>, so files are created with modes such as C<0644> "
1031 "and directories with C<0755>."
1032 msgstr ""
1033
1034 #. type: textblock
1035 #: ../src/guestfs.pod:513
1036 msgid ""
1037 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1038 "(call C<guestfs_umask (g, 0)> early after launching).  Or call "
1039 "L</guestfs_chmod> after creating each file or directory."
1040 msgstr ""
1041
1042 #. type: textblock
1043 #: ../src/guestfs.pod:517
1044 msgid "For more information about umask, see L<umask(2)>."
1045 msgstr ""
1046
1047 #. type: =head1
1048 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:767
1049 msgid "ENCRYPTED DISKS"
1050 msgstr ""
1051
1052 #. type: textblock
1053 #: ../src/guestfs.pod:521
1054 msgid ""
1055 "Libguestfs allows you to access Linux guests which have been encrypted using "
1056 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1057 "standard.  This includes nearly all whole disk encryption systems used by "
1058 "modern Linux guests."
1059 msgstr ""
1060
1061 #. type: textblock
1062 #: ../src/guestfs.pod:527
1063 msgid ""
1064 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1065 "returns the string C<crypto_LUKS>)."
1066 msgstr ""
1067
1068 #. type: textblock
1069 #: ../src/guestfs.pod:530
1070 msgid ""
1071 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1072 "will require the passphrase!"
1073 msgstr ""
1074
1075 #. type: textblock
1076 #: ../src/guestfs.pod:533
1077 msgid ""
1078 "Opening a LUKS device creates a new device mapper device called "
1079 "C</dev/mapper/mapname> (where C<mapname> is the string you supply to "
1080 "L</guestfs_luks_open>).  Reads and writes to this mapper device are "
1081 "decrypted from and encrypted to the underlying block device respectively."
1082 msgstr ""
1083
1084 #. type: textblock
1085 #: ../src/guestfs.pod:539
1086 msgid ""
1087 "LVM volume groups on the device can be made visible by calling "
1088 "L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical "
1089 "volume(s) can now be mounted in the usual way."
1090 msgstr ""
1091
1092 #. type: textblock
1093 #: ../src/guestfs.pod:543
1094 msgid ""
1095 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1096 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1097 "[\"/dev/VG\"])>.  Then close the mapper device by calling "
1098 "L</guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1099 "underlying encrypted block device)."
1100 msgstr ""
1101
1102 #. type: =head2
1103 #: ../src/guestfs.pod:550
1104 msgid "INSPECTION"
1105 msgstr ""
1106
1107 #. type: textblock
1108 #: ../src/guestfs.pod:552
1109 msgid ""
1110 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1111 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1112 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1113 "version 1.5.3 the most frequently used part of this library has been "
1114 "rewritten in C and moved into the core code)."
1115 msgstr ""
1116
1117 #. type: textblock
1118 #: ../src/guestfs.pod:559
1119 msgid ""
1120 "Add all disks belonging to the unknown virtual machine and call "
1121 "L</guestfs_launch> in the usual way."
1122 msgstr ""
1123
1124 #. type: textblock
1125 #: ../src/guestfs.pod:562
1126 msgid ""
1127 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1128 "and certain heuristics, and returns a list of operating systems that were "
1129 "found.  An empty list means none were found.  A single element is the root "
1130 "filesystem of the operating system.  For dual- or multi-boot guests, "
1131 "multiple roots can be returned, each one corresponding to a separate "
1132 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1133 "world of virtualization, but since this scenario can happen, we have built "
1134 "libguestfs to deal with it.)"
1135 msgstr ""
1136
1137 #. type: textblock
1138 #: ../src/guestfs.pod:571
1139 msgid ""
1140 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1141 "to get additional details about that operating system.  For example, call "
1142 "L</guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1143 "Windows and Linux-based operating systems respectively."
1144 msgstr ""
1145
1146 #. type: textblock
1147 #: ../src/guestfs.pod:577
1148 msgid ""
1149 "Un*x-like and Linux-based operating systems usually consist of several "
1150 "filesystems which are mounted at boot time (for example, a separate boot "
1151 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1152 "filesystems correspond to mount points.  Call "
1153 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1154 "hash table like this example:"
1155 msgstr ""
1156
1157 #. type: verbatim
1158 #: ../src/guestfs.pod:584
1159 #, no-wrap
1160 msgid ""
1161 " /boot => /dev/sda1\n"
1162 " /     => /dev/vg_guest/lv_root\n"
1163 " /usr  => /dev/vg_guest/lv_usr\n"
1164 "\n"
1165 msgstr ""
1166
1167 #. type: textblock
1168 #: ../src/guestfs.pod:588
1169 msgid ""
1170 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1171 "filesystems as suggested."
1172 msgstr ""
1173
1174 #. type: textblock
1175 #: ../src/guestfs.pod:591
1176 msgid ""
1177 "Be careful to mount filesystems in the right order (eg. C</> before "
1178 "C</usr>).  Sorting the keys of the hash by length, shortest first, should "
1179 "work."
1180 msgstr ""
1181
1182 #. type: textblock
1183 #: ../src/guestfs.pod:595
1184 msgid ""
1185 "Inspection currently only works for some common operating systems.  "
1186 "Contributors are welcome to send patches for other operating systems that we "
1187 "currently cannot detect."
1188 msgstr ""
1189
1190 #. type: textblock
1191 #: ../src/guestfs.pod:599
1192 msgid ""
1193 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1194 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1195 "encrypted devices."
1196 msgstr ""
1197
1198 #. type: textblock
1199 #: ../src/guestfs.pod:603
1200 msgid ""
1201 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1202 "inspection and caches the results in the guest handle.  Subsequent calls to "
1203 "C<guestfs_inspect_get_*> return this cached information, but I<do not> "
1204 "re-read the disks.  If you change the content of the guest disks, you can "
1205 "redo inspection by calling L</guestfs_inspect_os> again.  "
1206 "(L</guestfs_inspect_list_applications> works a little differently from the "
1207 "other calls and does read the disks.  See documentation for that function "
1208 "for details)."
1209 msgstr ""
1210
1211 #. type: =head3
1212 #: ../src/guestfs.pod:612
1213 msgid "INSPECTING INSTALL DISKS"
1214 msgstr ""
1215
1216 #. type: textblock
1217 #: ../src/guestfs.pod:614
1218 msgid ""
1219 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1220 "CDs and more."
1221 msgstr ""
1222
1223 #. type: textblock
1224 #: ../src/guestfs.pod:617
1225 msgid ""
1226 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1227 "system, which currently can be C<installed> (a regular operating system) or "
1228 "C<installer> (some sort of install disk)."
1229 msgstr ""
1230
1231 #. type: textblock
1232 #: ../src/guestfs.pod:621
1233 msgid ""
1234 "Further information is available about the operating system that can be "
1235 "installed using the regular inspection APIs like "
1236 "L</guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> "
1237 "etc."
1238 msgstr ""
1239
1240 #. type: textblock
1241 #: ../src/guestfs.pod:626
1242 msgid ""
1243 "Some additional information specific to installer disks is also available "
1244 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and "
1245 "L</guestfs_inspect_is_multipart> calls."
1246 msgstr ""
1247
1248 #. type: =head2
1249 #: ../src/guestfs.pod:631
1250 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1251 msgstr ""
1252
1253 #. type: textblock
1254 #: ../src/guestfs.pod:633
1255 msgid ""
1256 "Libguestfs can mount NTFS partitions.  It does this using the "
1257 "L<http://www.ntfs-3g.org/> driver."
1258 msgstr ""
1259
1260 #. type: =head3
1261 #: ../src/guestfs.pod:636
1262 msgid "DRIVE LETTERS AND PATHS"
1263 msgstr ""
1264
1265 #. type: textblock
1266 #: ../src/guestfs.pod:638
1267 msgid ""
1268 "DOS and Windows still use drive letters, and the filesystems are always "
1269 "treated as case insensitive by Windows itself, and therefore you might find "
1270 "a Windows configuration file referring to a path like "
1271 "C<c:\\windows\\system32>.  When the filesystem is mounted in libguestfs, "
1272 "that directory might be referred to as C</WINDOWS/System32>."
1273 msgstr ""
1274
1275 #. type: textblock
1276 #: ../src/guestfs.pod:644
1277 msgid ""
1278 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1279 "L</guestfs_inspect_get_drive_mappings>)"
1280 msgstr ""
1281
1282 #. type: textblock
1283 #: ../src/guestfs.pod:647
1284 msgid ""
1285 "Dealing with separator characters (backslash vs forward slash) is outside "
1286 "the scope of libguestfs, but usually a simple character replacement will "
1287 "work."
1288 msgstr ""
1289
1290 #. type: textblock
1291 #: ../src/guestfs.pod:651
1292 msgid ""
1293 "To resolve the case insensitivity of paths, call "
1294 "L</guestfs_case_sensitive_path>."
1295 msgstr ""
1296
1297 #. type: =head3
1298 #: ../src/guestfs.pod:654
1299 msgid "ACCESSING THE WINDOWS REGISTRY"
1300 msgstr ""
1301
1302 #. type: textblock
1303 #: ../src/guestfs.pod:656
1304 msgid ""
1305 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1306 "files, through the library C<hivex> which is part of the libguestfs project "
1307 "although ships as a separate tarball.  You have to locate and download the "
1308 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1309 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and "
1310 "L<virt-win-reg(1)> for more help on this issue."
1311 msgstr ""
1312
1313 #. type: =head3
1314 #: ../src/guestfs.pod:664
1315 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1316 msgstr ""
1317
1318 #. type: textblock
1319 #: ../src/guestfs.pod:666
1320 msgid ""
1321 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1322 "provide something which looks like a Linux symlink.  The way it tries to do "
1323 "the rewriting is described here:"
1324 msgstr ""
1325
1326 #. type: textblock
1327 #: ../src/guestfs.pod:670
1328 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-symbolic-links/>"
1329 msgstr ""
1330
1331 #. type: textblock
1332 #: ../src/guestfs.pod:672
1333 msgid ""
1334 "The essential problem is that ntfs-3g simply does not have enough "
1335 "information to do a correct job.  NTFS links can contain drive letters and "
1336 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1337 "It is almost certainly the case that libguestfs callers should ignore what "
1338 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1339 msgstr ""
1340
1341 #. type: textblock
1342 #: ../src/guestfs.pod:679
1343 msgid ""
1344 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use "
1345 "L</guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1346 "attribute, and read the raw reparse data from that (you can find the format "
1347 "documented in various places around the web)."
1348 msgstr ""
1349
1350 #. type: =head3
1351 #: ../src/guestfs.pod:684
1352 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1353 msgstr ""
1354
1355 #. type: textblock
1356 #: ../src/guestfs.pod:686
1357 msgid ""
1358 "There are other useful extended attributes that can be read from ntfs-3g "
1359 "filesystems (using L</guestfs_getxattr>).  See:"
1360 msgstr ""
1361
1362 #. type: textblock
1363 #: ../src/guestfs.pod:689
1364 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1365 msgstr ""
1366
1367 #. type: =head2
1368 #: ../src/guestfs.pod:691
1369 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1370 msgstr ""
1371
1372 #. type: textblock
1373 #: ../src/guestfs.pod:693
1374 msgid ""
1375 "Although we don't want to discourage you from using the C API, we will "
1376 "mention here that the same API is also available in other languages."
1377 msgstr ""
1378
1379 #. type: textblock
1380 #: ../src/guestfs.pod:696
1381 msgid ""
1382 "The API is broadly identical in all supported languages.  This means that "
1383 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1384 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1385 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1386 "each language."
1387 msgstr ""
1388
1389 #. type: textblock
1390 #: ../src/guestfs.pod:702
1391 msgid ""
1392 "Error messages are automatically transformed into exceptions if the language "
1393 "supports it."
1394 msgstr ""
1395
1396 #. type: textblock
1397 #: ../src/guestfs.pod:705
1398 msgid ""
1399 "We don't try to \"object orientify\" parts of the API in OO languages, "
1400 "although contributors are welcome to write higher level APIs above what we "
1401 "provide in their favourite languages if they wish."
1402 msgstr ""
1403
1404 #. type: =item
1405 #: ../src/guestfs.pod:711
1406 msgid "B<C++>"
1407 msgstr ""
1408
1409 #. type: textblock
1410 #: ../src/guestfs.pod:713
1411 msgid ""
1412 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1413 "identical to the C API.  C++ classes and exceptions are not used."
1414 msgstr ""
1415
1416 #. type: =item
1417 #: ../src/guestfs.pod:717
1418 msgid "B<C#>"
1419 msgstr ""
1420
1421 #. type: textblock
1422 #: ../src/guestfs.pod:719
1423 msgid ""
1424 "The C# bindings are highly experimental.  Please read the warnings at the "
1425 "top of C<csharp/Libguestfs.cs>."
1426 msgstr ""
1427
1428 #. type: =item
1429 #: ../src/guestfs.pod:722
1430 msgid "B<Haskell>"
1431 msgstr ""
1432
1433 #. type: textblock
1434 #: ../src/guestfs.pod:724
1435 msgid ""
1436 "This is the only language binding that is working but incomplete.  Only "
1437 "calls which return simple integers have been bound in Haskell, and we are "
1438 "looking for help to complete this binding."
1439 msgstr ""
1440
1441 #. type: =item
1442 #: ../src/guestfs.pod:728
1443 msgid "B<Java>"
1444 msgstr ""
1445
1446 #. type: textblock
1447 #: ../src/guestfs.pod:730
1448 msgid ""
1449 "Full documentation is contained in the Javadoc which is distributed with "
1450 "libguestfs."
1451 msgstr ""
1452
1453 #. type: =item
1454 #: ../src/guestfs.pod:733
1455 msgid "B<OCaml>"
1456 msgstr ""
1457
1458 #. type: textblock
1459 #: ../src/guestfs.pod:735
1460 msgid "See L<guestfs-ocaml(3)>."
1461 msgstr ""
1462
1463 #. type: =item
1464 #: ../src/guestfs.pod:737
1465 msgid "B<Perl>"
1466 msgstr ""
1467
1468 #. type: textblock
1469 #: ../src/guestfs.pod:739
1470 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1471 msgstr ""
1472
1473 #. type: =item
1474 #: ../src/guestfs.pod:741
1475 msgid "B<PHP>"
1476 msgstr ""
1477
1478 #. type: textblock
1479 #: ../src/guestfs.pod:743
1480 msgid ""
1481 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1482 "the php-libguestfs package for your distribution."
1483 msgstr ""
1484
1485 #. type: textblock
1486 #: ../src/guestfs.pod:746
1487 msgid "The PHP binding only works correctly on 64 bit machines."
1488 msgstr ""
1489
1490 #. type: =item
1491 #: ../src/guestfs.pod:748
1492 msgid "B<Python>"
1493 msgstr ""
1494
1495 #. type: textblock
1496 #: ../src/guestfs.pod:750
1497 msgid "See L<guestfs-python(3)>."
1498 msgstr ""
1499
1500 #. type: =item
1501 #: ../src/guestfs.pod:752
1502 msgid "B<Ruby>"
1503 msgstr ""
1504
1505 #. type: textblock
1506 #: ../src/guestfs.pod:754
1507 msgid "See L<guestfs-ruby(3)>."
1508 msgstr ""
1509
1510 #. type: =item
1511 #: ../src/guestfs.pod:756
1512 msgid "B<shell scripts>"
1513 msgstr ""
1514
1515 #. type: textblock
1516 #: ../src/guestfs.pod:758
1517 msgid "See L<guestfish(1)>."
1518 msgstr ""
1519
1520 #. type: =head2
1521 #: ../src/guestfs.pod:762
1522 msgid "LIBGUESTFS GOTCHAS"
1523 msgstr ""
1524
1525 #. type: textblock
1526 #: ../src/guestfs.pod:764
1527 msgid ""
1528 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1529 "system [...] that works in the way it is documented but is counterintuitive "
1530 "and almost invites mistakes.\""
1531 msgstr ""
1532
1533 #. type: textblock
1534 #: ../src/guestfs.pod:768
1535 msgid ""
1536 "Since we developed libguestfs and the associated tools, there are several "
1537 "things we would have designed differently, but are now stuck with for "
1538 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1539 "release, you can expect these to change.  Beware of them."
1540 msgstr ""
1541
1542 #. type: =item
1543 #: ../src/guestfs.pod:776
1544 msgid "Autosync / forgetting to sync."
1545 msgstr ""
1546
1547 #. type: textblock
1548 #: ../src/guestfs.pod:778
1549 msgid ""
1550 "I<Update:> Autosync is enabled by default for all API users starting from "
1551 "libguestfs 1.5.24.  This section only applies to older versions."
1552 msgstr ""
1553
1554 #. type: textblock
1555 #: ../src/guestfs.pod:781
1556 msgid ""
1557 "When modifying a filesystem from C or another language, you B<must> unmount "
1558 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1559 "libguestfs handle.  You can also call:"
1560 msgstr ""
1561
1562 #. type: verbatim
1563 #: ../src/guestfs.pod:785
1564 #, no-wrap
1565 msgid ""
1566 " guestfs_set_autosync (g, 1);\n"
1567 "\n"
1568 msgstr ""
1569
1570 #. type: textblock
1571 #: ../src/guestfs.pod:787
1572 msgid ""
1573 "to have the unmount/sync done automatically for you when the handle 'g' is "
1574 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> "
1575 "q.v.)"
1576 msgstr ""
1577
1578 #. type: textblock
1579 #: ../src/guestfs.pod:791
1580 msgid ""
1581 "If you forget to do this, then it is entirely possible that your changes "
1582 "won't be written out, or will be partially written, or (very rarely) that "
1583 "you'll get disk corruption."
1584 msgstr ""
1585
1586 #. type: textblock
1587 #: ../src/guestfs.pod:795
1588 msgid ""
1589 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1590 "guestfish scripts that forget to sync will work just fine, which can make "
1591 "this very puzzling if you are trying to debug a problem."
1592 msgstr ""
1593
1594 #. type: =item
1595 #: ../src/guestfs.pod:799
1596 msgid "Mount option C<-o sync> should not be the default."
1597 msgstr ""
1598
1599 #. type: textblock
1600 #: ../src/guestfs.pod:801
1601 msgid ""
1602 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1603 "However C<-o sync> does not add any reliability benefit, but does have a "
1604 "very large performance impact."
1605 msgstr ""
1606
1607 #. type: textblock
1608 #: ../src/guestfs.pod:805
1609 msgid ""
1610 "The work around is to use L</guestfs_mount_options> and set the mount "
1611 "options that you actually want to use."
1612 msgstr ""
1613
1614 #. type: =item
1615 #: ../src/guestfs.pod:808
1616 msgid "Read-only should be the default."
1617 msgstr ""
1618
1619 #. type: textblock
1620 #: ../src/guestfs.pod:810
1621 msgid ""
1622 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1623 "specify I<--rw> if you want to make changes to the image."
1624 msgstr ""
1625
1626 #. type: textblock
1627 #: ../src/guestfs.pod:813
1628 msgid "This would reduce the potential to corrupt live VM images."
1629 msgstr ""
1630
1631 #. type: textblock
1632 #: ../src/guestfs.pod:815
1633 msgid ""
1634 "Note that many filesystems change the disk when you just mount and unmount, "
1635 "even if you didn't perform any writes.  You need to use "
1636 "L</guestfs_add_drive_ro> to guarantee that the disk is not changed."
1637 msgstr ""
1638
1639 #. type: =item
1640 #: ../src/guestfs.pod:819
1641 msgid "guestfish command line is hard to use."
1642 msgstr ""
1643
1644 #. type: textblock
1645 #: ../src/guestfs.pod:821
1646 msgid ""
1647 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1648 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1649 "exist, so it fails.  In earlier versions of guestfish the error message was "
1650 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1651 "we should have used C<guestfish -c command> to run commands."
1652 msgstr ""
1653
1654 #. type: =item
1655 #: ../src/guestfs.pod:828
1656 msgid "guestfish megabyte modifiers don't work right on all commands"
1657 msgstr ""
1658
1659 #. type: textblock
1660 #: ../src/guestfs.pod:830
1661 msgid ""
1662 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1663 "other modifiers).  What guestfish actually does is to multiply the number "
1664 "part by the modifier part and pass the result to the C API.  However this "
1665 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1666 "expecting some other unit (eg. megabytes)."
1667 msgstr ""
1668
1669 #. type: textblock
1670 #: ../src/guestfs.pod:837
1671 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1672 msgstr ""
1673
1674 #. type: verbatim
1675 #: ../src/guestfs.pod:839
1676 #, no-wrap
1677 msgid ""
1678 " lvcreate LV VG 100M\n"
1679 "\n"
1680 msgstr ""
1681
1682 #. type: textblock
1683 #: ../src/guestfs.pod:841
1684 msgid ""
1685 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1686 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1687 "megabytes * megabytes) logical volume.  The error message you get from this "
1688 "is also a little obscure."
1689 msgstr ""
1690
1691 #. type: textblock
1692 #: ../src/guestfs.pod:846
1693 msgid ""
1694 "This could be fixed in the generator by specially marking parameters and "
1695 "return values which take bytes or other units."
1696 msgstr ""
1697
1698 #. type: =item
1699 #: ../src/guestfs.pod:849
1700 msgid "Ambiguity between devices and paths"
1701 msgstr ""
1702
1703 #. type: textblock
1704 #: ../src/guestfs.pod:851
1705 msgid ""
1706 "There is a subtle ambiguity in the API between a device name "
1707 "(eg. C</dev/sdb2>) and a similar pathname.  A file might just happen to be "
1708 "called C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1709 msgstr ""
1710
1711 #. type: textblock
1712 #: ../src/guestfs.pod:856
1713 msgid ""
1714 "In the current API we usually resolve this ambiguity by having two separate "
1715 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1716 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1717 "detecting if the path supplied begins with C</dev/>."
1718 msgstr ""
1719
1720 #. type: textblock
1721 #: ../src/guestfs.pod:862
1722 msgid ""
1723 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1724 "make paths/devices into structured names.  One way to do this would be to "
1725 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1726 "aspect of grub.  Another way would be to use a structured type, equivalent "
1727 "to this OCaml type:"
1728 msgstr ""
1729
1730 #. type: verbatim
1731 #: ../src/guestfs.pod:868
1732 #, no-wrap
1733 msgid ""
1734 " type path = Path of string | Device of int | Partition of int * int\n"
1735 "\n"
1736 msgstr ""
1737
1738 #. type: textblock
1739 #: ../src/guestfs.pod:870
1740 msgid "which would allow you to pass arguments like:"
1741 msgstr ""
1742
1743 #. type: verbatim
1744 #: ../src/guestfs.pod:872
1745 #, no-wrap
1746 msgid ""
1747 " Path \"/foo/bar\"\n"
1748 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1749 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1750 " Path \"/dev/sdb2\"    (* not a device *)\n"
1751 "\n"
1752 msgstr ""
1753
1754 #. type: textblock
1755 #: ../src/guestfs.pod:877
1756 msgid ""
1757 "As you can see there are still problems to resolve even with this "
1758 "representation.  Also consider how it might work in guestfish."
1759 msgstr ""
1760
1761 #. type: =head2
1762 #: ../src/guestfs.pod:882
1763 msgid "KEYS AND PASSPHRASES"
1764 msgstr ""
1765
1766 #. type: textblock
1767 #: ../src/guestfs.pod:884
1768 msgid ""
1769 "Certain libguestfs calls take a parameter that contains sensitive key "
1770 "material, passed in as a C string."
1771 msgstr ""
1772
1773 #. type: textblock
1774 #: ../src/guestfs.pod:887
1775 msgid ""
1776 "In the future we would hope to change the libguestfs implementation so that "
1777 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1778 "swap.  However this is I<not> done at the moment, because of the complexity "
1779 "of such an implementation."
1780 msgstr ""
1781
1782 #. type: textblock
1783 #: ../src/guestfs.pod:892
1784 msgid ""
1785 "Therefore you should be aware that any key parameter you pass to libguestfs "
1786 "might end up being written out to the swap partition.  If this is a concern, "
1787 "scrub the swap partition or don't use libguestfs on encrypted devices."
1788 msgstr ""
1789
1790 #. type: =head2
1791 #: ../src/guestfs.pod:897
1792 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1793 msgstr ""
1794
1795 #. type: textblock
1796 #: ../src/guestfs.pod:899
1797 msgid ""
1798 "All high-level libguestfs actions are synchronous.  If you want to use "
1799 "libguestfs asynchronously then you must create a thread."
1800 msgstr ""
1801
1802 #. type: textblock
1803 #: ../src/guestfs.pod:902
1804 msgid ""
1805 "Only use the handle from a single thread.  Either use the handle exclusively "
1806 "from one thread, or provide your own mutex so that two threads cannot issue "
1807 "calls on the same handle at the same time."
1808 msgstr ""
1809
1810 #. type: textblock
1811 #: ../src/guestfs.pod:906
1812 msgid ""
1813 "See the graphical program guestfs-browser for one possible architecture for "
1814 "multithreaded programs using libvirt and libguestfs."
1815 msgstr ""
1816
1817 #. type: =head2
1818 #: ../src/guestfs.pod:909
1819 msgid "PATH"
1820 msgstr ""
1821
1822 #. type: textblock
1823 #: ../src/guestfs.pod:911
1824 msgid ""
1825 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1826 "internal path."
1827 msgstr ""
1828
1829 #. type: textblock
1830 #: ../src/guestfs.pod:914
1831 msgid ""
1832 "By default it looks for these in the directory C<$libdir/guestfs> "
1833 "(eg. C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1834 msgstr ""
1835
1836 #. type: textblock
1837 #: ../src/guestfs.pod:917
1838 msgid ""
1839 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1840 "to change the directories that libguestfs will search in.  The value is a "
1841 "colon-separated list of paths.  The current directory is I<not> searched "
1842 "unless the path contains an empty element or C<.>.  For example "
1843 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1844 "then C</usr/lib/guestfs>."
1845 msgstr ""
1846
1847 #. type: =head2
1848 #: ../src/guestfs.pod:924
1849 msgid "QEMU WRAPPERS"
1850 msgstr ""
1851
1852 #. type: textblock
1853 #: ../src/guestfs.pod:926
1854 msgid ""
1855 "If you want to compile your own qemu, run qemu from a non-standard location, "
1856 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1857 "around qemu."
1858 msgstr ""
1859
1860 #. type: textblock
1861 #: ../src/guestfs.pod:930
1862 msgid ""
1863 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1864 "last command in the shell script (so that qemu replaces the shell and "
1865 "becomes the direct child of the libguestfs-using program).  If you don't do "
1866 "this, then the qemu process won't be cleaned up correctly."
1867 msgstr ""
1868
1869 #. type: textblock
1870 #: ../src/guestfs.pod:935
1871 msgid ""
1872 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1873 "source:"
1874 msgstr ""
1875
1876 #. type: verbatim
1877 #: ../src/guestfs.pod:938
1878 #, no-wrap
1879 msgid ""
1880 " #!/bin/sh -\n"
1881 " qemudir=/home/rjones/d/qemu\n"
1882 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios "
1883 "\"$@\"\n"
1884 "\n"
1885 msgstr ""
1886
1887 #. type: textblock
1888 #: ../src/guestfs.pod:942
1889 msgid ""
1890 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1891 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1892 "example:"
1893 msgstr ""
1894
1895 #. type: verbatim
1896 #: ../src/guestfs.pod:946
1897 #, no-wrap
1898 msgid ""
1899 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1900 "\n"
1901 msgstr ""
1902
1903 #. type: textblock
1904 #: ../src/guestfs.pod:948
1905 msgid ""
1906 "Note that libguestfs also calls qemu with the -help and -version options in "
1907 "order to determine features."
1908 msgstr ""
1909
1910 #. type: =head2
1911 #: ../src/guestfs.pod:951
1912 msgid "ATTACHING TO RUNNING DAEMONS"
1913 msgstr ""
1914
1915 #. type: textblock
1916 #: ../src/guestfs.pod:953
1917 msgid ""
1918 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
1919 "babies.  Use with caution."
1920 msgstr ""
1921
1922 #. type: textblock
1923 #: ../src/guestfs.pod:956
1924 msgid ""
1925 "I<Note (2):> This section explains how to attach to a running daemon from a "
1926 "low level perspective.  For most users, simply using virt tools such as "
1927 "L<guestfish(1)> with the I<--live> option will \"just work\"."
1928 msgstr ""
1929
1930 #. type: =head3
1931 #: ../src/guestfs.pod:960
1932 msgid "Using guestfs_set_attach_method"
1933 msgstr ""
1934
1935 #. type: textblock
1936 #: ../src/guestfs.pod:962
1937 msgid ""
1938 "By calling L</guestfs_set_attach_method> you can change how the library "
1939 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read "
1940 "L</ARCHITECTURE> for some background)."
1941 msgstr ""
1942
1943 #. type: textblock
1944 #: ../src/guestfs.pod:966
1945 msgid ""
1946 "The normal attach method is C<appliance>, where a small appliance is created "
1947 "containing the daemon, and then the library connects to this."
1948 msgstr ""
1949
1950 #. type: textblock
1951 #: ../src/guestfs.pod:969
1952 msgid ""
1953 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
1954 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
1955 "daemon over the Unix domain socket."
1956 msgstr ""
1957
1958 #. type: textblock
1959 #: ../src/guestfs.pod:973
1960 msgid ""
1961 "The normal use for this is to connect to a running virtual machine that "
1962 "contains a C<guestfsd> daemon, and send commands so you can read and write "
1963 "files inside the live virtual machine."
1964 msgstr ""
1965
1966 #. type: =head3
1967 #: ../src/guestfs.pod:977
1968 msgid "Using guestfs_add_domain with live flag"
1969 msgstr ""
1970
1971 #. type: textblock
1972 #: ../src/guestfs.pod:979
1973 msgid ""
1974 "L</guestfs_add_domain> provides some help for getting the correct attach "
1975 "method.  If you pass the C<live> option to this function, then (if the "
1976 "virtual machine is running) it will examine the libvirt XML looking for a "
1977 "virtio-serial channel to connect to:"
1978 msgstr ""
1979
1980 #. type: verbatim
1981 #: ../src/guestfs.pod:985
1982 #, no-wrap
1983 msgid ""
1984 " <domain>\n"
1985 "   ...\n"
1986 "   <devices>\n"
1987 "     ...\n"
1988 "     <channel type='unix'>\n"
1989 "       <source mode='bind' path='/path/to/socket'/>\n"
1990 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
1991 "     </channel>\n"
1992 "     ...\n"
1993 "   </devices>\n"
1994 " </domain>\n"
1995 "\n"
1996 msgstr ""
1997
1998 #. type: textblock
1999 #: ../src/guestfs.pod:997
2000 msgid ""
2001 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2002 "method to C<unix:/path/to/socket>."
2003 msgstr ""
2004
2005 #. type: textblock
2006 #: ../src/guestfs.pod:1000
2007 msgid ""
2008 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2009 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2010 "to attach to and modify live virtual machines."
2011 msgstr ""
2012
2013 #. type: textblock
2014 #: ../src/guestfs.pod:1004
2015 msgid ""
2016 "The virtual machine needs to have been set up beforehand so that it has the "
2017 "virtio-serial channel and so that guestfsd is running inside it."
2018 msgstr ""
2019
2020 #. type: =head2
2021 #: ../src/guestfs.pod:1008
2022 msgid "ABI GUARANTEE"
2023 msgstr ""
2024
2025 #. type: textblock
2026 #: ../src/guestfs.pod:1010
2027 msgid ""
2028 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2029 "actions as outlined in this section.  Although we will deprecate some "
2030 "actions, for example if they get replaced by newer calls, we will keep the "
2031 "old actions forever.  This allows you the developer to program in confidence "
2032 "against the libguestfs API."
2033 msgstr ""
2034
2035 #. type: =head2
2036 #: ../src/guestfs.pod:1016
2037 msgid "BLOCK DEVICE NAMING"
2038 msgstr ""
2039
2040 #. type: textblock
2041 #: ../src/guestfs.pod:1018
2042 msgid ""
2043 "In the kernel there is now quite a profusion of schemata for naming block "
2044 "devices (in this context, by I<block device> I mean a physical or virtual "
2045 "hard drive).  The original Linux IDE driver used names starting with "
2046 "C</dev/hd*>.  SCSI devices have historically used a different naming scheme, "
2047 "C</dev/sd*>.  When the Linux kernel I<libata> driver became a popular "
2048 "replacement for the old IDE driver (particularly for SATA devices) those "
2049 "devices also used the C</dev/sd*> scheme.  Additionally we now have virtual "
2050 "machines with paravirtualized drivers.  This has created several different "
2051 "naming systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for "
2052 "Xen PV disks."
2053 msgstr ""
2054
2055 #. type: textblock
2056 #: ../src/guestfs.pod:1030
2057 msgid ""
2058 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2059 "Linux kernel to access block devices.  We can run a variety of appliances "
2060 "based on a variety of Linux kernels."
2061 msgstr ""
2062
2063 #. type: textblock
2064 #: ../src/guestfs.pod:1034
2065 msgid ""
2066 "This causes a problem for libguestfs because many API calls use device or "
2067 "partition names.  Working scripts and the recipe (example) scripts that we "
2068 "make available over the internet could fail if the naming scheme changes."
2069 msgstr ""
2070
2071 #. type: textblock
2072 #: ../src/guestfs.pod:1039
2073 msgid ""
2074 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2075 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2076 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2077 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2078 msgstr ""
2079
2080 #. type: textblock
2081 #: ../src/guestfs.pod:1045
2082 msgid ""
2083 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2084 "L</guestfs_list_partitions> and similar calls return the true names of the "
2085 "devices and partitions as known to the appliance."
2086 msgstr ""
2087
2088 #. type: =head3
2089 #: ../src/guestfs.pod:1050
2090 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2091 msgstr ""
2092
2093 #. type: textblock
2094 #: ../src/guestfs.pod:1052
2095 msgid ""
2096 "Usually this translation is transparent.  However in some (very rare)  cases "
2097 "you may need to know the exact algorithm.  Such cases include where you use "
2098 "L</guestfs_config> to add a mixture of virtio and IDE devices to the "
2099 "qemu-based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> "
2100 "devices."
2101 msgstr ""
2102
2103 #. type: textblock
2104 #: ../src/guestfs.pod:1058
2105 msgid ""
2106 "The algorithm is applied only to I<parameters> which are known to be either "
2107 "device or partition names.  Return values from functions such as "
2108 "L</guestfs_list_devices> are never changed."
2109 msgstr ""
2110
2111 #. type: textblock
2112 #: ../src/guestfs.pod:1066
2113 msgid "Is the string a parameter which is a device or partition name?"
2114 msgstr ""
2115
2116 #. type: textblock
2117 #: ../src/guestfs.pod:1070
2118 msgid "Does the string begin with C</dev/sd>?"
2119 msgstr ""
2120
2121 #. type: textblock
2122 #: ../src/guestfs.pod:1074
2123 msgid ""
2124 "Does the named device exist? If so, we use that device.  However if I<not> "
2125 "then we continue with this algorithm."
2126 msgstr ""
2127
2128 #. type: textblock
2129 #: ../src/guestfs.pod:1079
2130 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2131 msgstr ""
2132
2133 #. type: textblock
2134 #: ../src/guestfs.pod:1081
2135 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2136 msgstr ""
2137
2138 #. type: textblock
2139 #: ../src/guestfs.pod:1083
2140 msgid "If that named device exists, use it.  If not, continue."
2141 msgstr ""
2142
2143 #. type: textblock
2144 #: ../src/guestfs.pod:1087
2145 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2146 msgstr ""
2147
2148 #. type: textblock
2149 #: ../src/guestfs.pod:1089
2150 msgid "If that named device exists, use it.  If not, return an error."
2151 msgstr ""
2152
2153 #. type: =head3
2154 #: ../src/guestfs.pod:1093
2155 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2156 msgstr ""
2157
2158 #. type: textblock
2159 #: ../src/guestfs.pod:1095
2160 msgid ""
2161 "Although the standard naming scheme and automatic translation is useful for "
2162 "simple programs and guestfish scripts, for larger programs it is best not to "
2163 "rely on this mechanism."
2164 msgstr ""
2165
2166 #. type: textblock
2167 #: ../src/guestfs.pod:1099
2168 msgid ""
2169 "Where possible for maximum future portability programs using libguestfs "
2170 "should use these future-proof techniques:"
2171 msgstr ""
2172
2173 #. type: textblock
2174 #: ../src/guestfs.pod:1106
2175 msgid ""
2176 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2177 "device names, and then use those names directly."
2178 msgstr ""
2179
2180 #. type: textblock
2181 #: ../src/guestfs.pod:1109
2182 msgid "Since those device names exist by definition, they will never be translated."
2183 msgstr ""
2184
2185 #. type: textblock
2186 #: ../src/guestfs.pod:1114
2187 msgid ""
2188 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2189 "filesystem labels."
2190 msgstr ""
2191
2192 #. type: =head1
2193 #: ../src/guestfs.pod:1119
2194 msgid "SECURITY"
2195 msgstr ""
2196
2197 #. type: textblock
2198 #: ../src/guestfs.pod:1121
2199 msgid ""
2200 "This section discusses security implications of using libguestfs, "
2201 "particularly with untrusted or malicious guests or disk images."
2202 msgstr ""
2203
2204 #. type: =head2
2205 #: ../src/guestfs.pod:1124
2206 msgid "GENERAL SECURITY CONSIDERATIONS"
2207 msgstr ""
2208
2209 #. type: textblock
2210 #: ../src/guestfs.pod:1126
2211 msgid ""
2212 "Be careful with any files or data that you download from a guest (by "
2213 "\"download\" we mean not just the L</guestfs_download> command but any "
2214 "command that reads files, filenames, directories or anything else from a "
2215 "disk image).  An attacker could manipulate the data to fool your program "
2216 "into doing the wrong thing.  Consider cases such as:"
2217 msgstr ""
2218
2219 #. type: textblock
2220 #: ../src/guestfs.pod:1136
2221 msgid "the data (file etc) not being present"
2222 msgstr ""
2223
2224 #. type: textblock
2225 #: ../src/guestfs.pod:1140
2226 msgid "being present but empty"
2227 msgstr ""
2228
2229 #. type: textblock
2230 #: ../src/guestfs.pod:1144
2231 msgid "being much larger than normal"
2232 msgstr ""
2233
2234 #. type: textblock
2235 #: ../src/guestfs.pod:1148
2236 msgid "containing arbitrary 8 bit data"
2237 msgstr ""
2238
2239 #. type: textblock
2240 #: ../src/guestfs.pod:1152
2241 msgid "being in an unexpected character encoding"
2242 msgstr ""
2243
2244 #. type: textblock
2245 #: ../src/guestfs.pod:1156
2246 msgid "containing homoglyphs."
2247 msgstr ""
2248
2249 #. type: =head2
2250 #: ../src/guestfs.pod:1160
2251 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2252 msgstr ""
2253
2254 #. type: textblock
2255 #: ../src/guestfs.pod:1162
2256 msgid ""
2257 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2258 "(VFS) module can sometimes be escalated into exploits by deliberately "
2259 "creating a malicious, malformed filesystem.  These exploits are very severe "
2260 "for two reasons.  Firstly there are very many filesystem drivers in the "
2261 "kernel, and many of them are infrequently used and not much developer "
2262 "attention has been paid to the code.  Linux userspace helps potential "
2263 "crackers by detecting the filesystem type and automatically choosing the "
2264 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2265 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2266 "exploit (worse in some ways), giving immediate and total access to the "
2267 "system right down to the hardware level."
2268 msgstr ""
2269
2270 #. type: textblock
2271 #: ../src/guestfs.pod:1175
2272 msgid ""
2273 "That explains why you should never mount a filesystem from an untrusted "
2274 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2275 "inside a qemu virtual machine, usually running as a non-root user.  The "
2276 "attacker would need to write a filesystem which first exploited the kernel, "
2277 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2278 "the libguestfs protocol, and finally to be as serious as the host kernel "
2279 "exploit it would need to escalate its privileges to root.  This multi-step "
2280 "escalation, performed by a static piece of data, is thought to be extremely "
2281 "hard to do, although we never say 'never' about security issues."
2282 msgstr ""
2283
2284 #. type: textblock
2285 #: ../src/guestfs.pod:1186
2286 msgid ""
2287 "In any case callers can reduce the attack surface by forcing the filesystem "
2288 "type when mounting (use L</guestfs_mount_vfs>)."
2289 msgstr ""
2290
2291 #. type: =head2
2292 #: ../src/guestfs.pod:1189
2293 msgid "PROTOCOL SECURITY"
2294 msgstr ""
2295
2296 #. type: textblock
2297 #: ../src/guestfs.pod:1191
2298 msgid ""
2299 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2300 "defined upper message size.  However a program that uses libguestfs must "
2301 "also take care - for example you can write a program that downloads a binary "
2302 "from a disk image and executes it locally, and no amount of protocol "
2303 "security will save you from the consequences."
2304 msgstr ""
2305
2306 #. type: =head2
2307 #: ../src/guestfs.pod:1197
2308 msgid "INSPECTION SECURITY"
2309 msgstr ""
2310
2311 #. type: textblock
2312 #: ../src/guestfs.pod:1199
2313 msgid ""
2314 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2315 "directly from the guest, and these could contain any 8 bit data.  Callers "
2316 "should be careful to escape these before printing them to a structured file "
2317 "(for example, use HTML escaping if creating a web page)."
2318 msgstr ""
2319
2320 #. type: textblock
2321 #: ../src/guestfs.pod:1205
2322 msgid ""
2323 "Guest configuration may be altered in unusual ways by the administrator of "
2324 "the virtual machine, and may not reflect reality (particularly for untrusted "
2325 "or actively malicious guests).  For example we parse the hostname from "
2326 "configuration files like C</etc/sysconfig/network> that we find in the "
2327 "guest, but the guest administrator can easily manipulate these files to "
2328 "provide the wrong hostname."
2329 msgstr ""
2330
2331 #. type: textblock
2332 #: ../src/guestfs.pod:1213
2333 msgid ""
2334 "The inspection API parses guest configuration using two external libraries: "
2335 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2336 "designed to be robust in the face of malicious data, although denial of "
2337 "service attacks are still possible, for example with oversized configuration "
2338 "files."
2339 msgstr ""
2340
2341 #. type: =head2
2342 #: ../src/guestfs.pod:1219
2343 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2344 msgstr ""
2345
2346 #. type: textblock
2347 #: ../src/guestfs.pod:1221
2348 msgid ""
2349 "Be very cautious about running commands from the guest.  By running a "
2350 "command in the guest, you are giving CPU time to a binary that you do not "
2351 "control, under the same user account as the library, albeit wrapped in qemu "
2352 "virtualization.  More information and alternatives can be found in the "
2353 "section L</RUNNING COMMANDS>."
2354 msgstr ""
2355
2356 #. type: =head2
2357 #: ../src/guestfs.pod:1227
2358 msgid "CVE-2010-3851"
2359 msgstr ""
2360
2361 #. type: textblock
2362 #: ../src/guestfs.pod:1229
2363 msgid "https://bugzilla.redhat.com/642934"
2364 msgstr ""
2365
2366 #. type: textblock
2367 #: ../src/guestfs.pod:1231
2368 msgid ""
2369 "This security bug concerns the automatic disk format detection that qemu "
2370 "does on disk images."
2371 msgstr ""
2372
2373 #. type: textblock
2374 #: ../src/guestfs.pod:1234
2375 msgid ""
2376 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2377 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2378 "for one of the known headers, and if none is found then assuming the disk "
2379 "image must be raw."
2380 msgstr ""
2381
2382 #. type: textblock
2383 #: ../src/guestfs.pod:1239
2384 msgid ""
2385 "This allows a guest which has been given a raw disk image to write some "
2386 "other header.  At next boot (or when the disk image is accessed by "
2387 "libguestfs) qemu would do autodetection and think the disk image format was, "
2388 "say, qcow2 based on the header written by the guest."
2389 msgstr ""
2390
2391 #. type: textblock
2392 #: ../src/guestfs.pod:1244
2393 msgid ""
2394 "This in itself would not be a problem, but qcow2 offers many features, one "
2395 "of which is to allow a disk image to refer to another image (called the "
2396 "\"backing disk\").  It does this by placing the path to the backing disk "
2397 "into the qcow2 header.  This path is not validated and could point to any "
2398 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2399 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2400 "control of the attacker."
2401 msgstr ""
2402
2403 #. type: textblock
2404 #: ../src/guestfs.pod:1252
2405 msgid "In libguestfs this is rather hard to exploit except under two circumstances:"
2406 msgstr ""
2407
2408 #. type: textblock
2409 #: ../src/guestfs.pod:1259
2410 msgid "You have enabled the network or have opened the disk in write mode."
2411 msgstr ""
2412
2413 #. type: textblock
2414 #: ../src/guestfs.pod:1263
2415 msgid ""
2416 "You are also running untrusted code from the guest (see L</RUNNING "
2417 "COMMANDS>)."
2418 msgstr ""
2419
2420 #. type: textblock
2421 #: ../src/guestfs.pod:1268
2422 msgid ""
2423 "The way to avoid this is to specify the expected disk format when adding "
2424 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2425 "should always do this if the disk is raw format, and it's a good idea for "
2426 "other cases too."
2427 msgstr ""
2428
2429 #. type: textblock
2430 #: ../src/guestfs.pod:1273
2431 msgid ""
2432 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2433 "format is fetched from libvirt and passed through."
2434 msgstr ""
2435
2436 #. type: textblock
2437 #: ../src/guestfs.pod:1276
2438 msgid ""
2439 "For libguestfs tools, use the I<--format> command line parameter as "
2440 "appropriate."
2441 msgstr ""
2442
2443 #. type: =head1
2444 #: ../src/guestfs.pod:1279
2445 msgid "CONNECTION MANAGEMENT"
2446 msgstr ""
2447
2448 #. type: =head2
2449 #: ../src/guestfs.pod:1281
2450 msgid "guestfs_h *"
2451 msgstr ""
2452
2453 #. type: textblock
2454 #: ../src/guestfs.pod:1283
2455 msgid ""
2456 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2457 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2458 "handle and release all resources used."
2459 msgstr ""
2460
2461 #. type: textblock
2462 #: ../src/guestfs.pod:1287
2463 msgid ""
2464 "For information on using multiple handles and threads, see the section "
2465 "L</MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2466 msgstr ""
2467
2468 #. type: =head2
2469 #: ../src/guestfs.pod:1290
2470 msgid "guestfs_create"
2471 msgstr ""
2472
2473 #. type: verbatim
2474 #: ../src/guestfs.pod:1292
2475 #, no-wrap
2476 msgid ""
2477 " guestfs_h *guestfs_create (void);\n"
2478 "\n"
2479 msgstr ""
2480
2481 #. type: textblock
2482 #: ../src/guestfs.pod:1294
2483 msgid "Create a connection handle."
2484 msgstr ""
2485
2486 #. type: textblock
2487 #: ../src/guestfs.pod:1296
2488 msgid ""
2489 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2490 "NULL."
2491 msgstr ""
2492
2493 #. type: textblock
2494 #: ../src/guestfs.pod:1299
2495 msgid ""
2496 "You have to \"configure\" the handle after creating it.  This includes "
2497 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2498 "handle at least once."
2499 msgstr ""
2500
2501 #. type: textblock
2502 #: ../src/guestfs.pod:1303
2503 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2504 msgstr ""
2505
2506 #. type: textblock
2507 #: ../src/guestfs.pod:1305
2508 msgid ""
2509 "You may also want to configure error handling for the handle.  See the "
2510 "L</ERROR HANDLING> section below."
2511 msgstr ""
2512
2513 #. type: =head2
2514 #: ../src/guestfs.pod:1308
2515 msgid "guestfs_close"
2516 msgstr ""
2517
2518 #. type: verbatim
2519 #: ../src/guestfs.pod:1310
2520 #, no-wrap
2521 msgid ""
2522 " void guestfs_close (guestfs_h *g);\n"
2523 "\n"
2524 msgstr ""
2525
2526 #. type: textblock
2527 #: ../src/guestfs.pod:1312
2528 msgid "This closes the connection handle and frees up all resources used."
2529 msgstr ""
2530
2531 #. type: textblock
2532 #: ../src/guestfs.pod:1314
2533 msgid ""
2534 "If autosync was set on the handle and the handle was launched, then this "
2535 "implicitly calls various functions to unmount filesystems and sync the "
2536 "disk.  See L</guestfs_set_autosync> for more details."
2537 msgstr ""
2538
2539 #. type: textblock
2540 #: ../src/guestfs.pod:1318
2541 msgid "If a close callback was set on the handle, then it is called."
2542 msgstr ""
2543
2544 #. type: =head1
2545 #: ../src/guestfs.pod:1320
2546 msgid "ERROR HANDLING"
2547 msgstr ""
2548
2549 #. type: textblock
2550 #: ../src/guestfs.pod:1322
2551 msgid ""
2552 "API functions can return errors.  For example, almost all functions that "
2553 "return C<int> will return C<-1> to indicate an error."
2554 msgstr ""
2555
2556 #. type: textblock
2557 #: ../src/guestfs.pod:1325
2558 msgid ""
2559 "Additional information is available for errors: an error message string and "
2560 "optionally an error number (errno) if the thing that failed was a system "
2561 "call."
2562 msgstr ""
2563
2564 #. type: textblock
2565 #: ../src/guestfs.pod:1329
2566 msgid ""
2567 "You can get at the additional information about the last error on the handle "
2568 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2569 "up an error handler with L</guestfs_set_error_handler>."
2570 msgstr ""
2571
2572 #. type: textblock
2573 #: ../src/guestfs.pod:1334
2574 msgid ""
2575 "When the handle is created, a default error handler is installed which "
2576 "prints the error message string to C<stderr>.  For small short-running "
2577 "command line programs it is sufficient to do:"
2578 msgstr ""
2579
2580 #. type: verbatim
2581 #: ../src/guestfs.pod:1338
2582 #, no-wrap
2583 msgid ""
2584 " if (guestfs_launch (g) == -1)\n"
2585 "   exit (EXIT_FAILURE);\n"
2586 "\n"
2587 msgstr ""
2588
2589 #. type: textblock
2590 #: ../src/guestfs.pod:1341
2591 msgid ""
2592 "since the default error handler will ensure that an error message has been "
2593 "printed to C<stderr> before the program exits."
2594 msgstr ""
2595
2596 #. type: textblock
2597 #: ../src/guestfs.pod:1344
2598 msgid ""
2599 "For other programs the caller will almost certainly want to install an "
2600 "alternate error handler or do error handling in-line like this:"
2601 msgstr ""
2602
2603 #. type: verbatim
2604 #: ../src/guestfs.pod:1347
2605 #, no-wrap
2606 msgid ""
2607 " g = guestfs_create ();\n"
2608 " \n"
2609 msgstr ""
2610
2611 #. type: verbatim
2612 #: ../src/guestfs.pod:1349
2613 #, no-wrap
2614 msgid ""
2615 " /* This disables the default behaviour of printing errors\n"
2616 "    on stderr. */\n"
2617 " guestfs_set_error_handler (g, NULL, NULL);\n"
2618 " \n"
2619 msgstr ""
2620
2621 #. type: verbatim
2622 #: ../src/guestfs.pod:1353
2623 #, no-wrap
2624 msgid ""
2625 " if (guestfs_launch (g) == -1) {\n"
2626 "   /* Examine the error message and print it etc. */\n"
2627 "   char *msg = guestfs_last_error (g);\n"
2628 "   int errnum = guestfs_last_errno (g);\n"
2629 "   fprintf (stderr, \"%s\\n\", msg);\n"
2630 "   /* ... */\n"
2631 "  }\n"
2632 "\n"
2633 msgstr ""
2634
2635 #. type: textblock
2636 #: ../src/guestfs.pod:1361
2637 msgid ""
2638 "Out of memory errors are handled differently.  The default action is to call "
2639 "L<abort(3)>.  If this is undesirable, then you can set a handler using "
2640 "L</guestfs_set_out_of_memory_handler>."
2641 msgstr ""
2642
2643 #. type: textblock
2644 #: ../src/guestfs.pod:1365
2645 msgid ""
2646 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2647 "because there is no handle if this happens there is no way to get additional "
2648 "error information.  However L</guestfs_create> is supposed to be a "
2649 "lightweight operation which can only fail because of insufficient memory (it "
2650 "returns NULL in this case)."
2651 msgstr ""
2652
2653 #. type: =head2
2654 #: ../src/guestfs.pod:1371
2655 msgid "guestfs_last_error"
2656 msgstr ""
2657
2658 #. type: verbatim
2659 #: ../src/guestfs.pod:1373
2660 #, no-wrap
2661 msgid ""
2662 " const char *guestfs_last_error (guestfs_h *g);\n"
2663 "\n"
2664 msgstr ""
2665
2666 #. type: textblock
2667 #: ../src/guestfs.pod:1375
2668 msgid ""
2669 "This returns the last error message that happened on C<g>.  If there has not "
2670 "been an error since the handle was created, then this returns C<NULL>."
2671 msgstr ""
2672
2673 #. type: textblock
2674 #: ../src/guestfs.pod:1379
2675 msgid ""
2676 "The lifetime of the returned string is until the next error occurs, or "
2677 "L</guestfs_close> is called."
2678 msgstr ""
2679
2680 #. type: =head2
2681 #: ../src/guestfs.pod:1382
2682 msgid "guestfs_last_errno"
2683 msgstr ""
2684
2685 #. type: verbatim
2686 #: ../src/guestfs.pod:1384
2687 #, no-wrap
2688 msgid ""
2689 " int guestfs_last_errno (guestfs_h *g);\n"
2690 "\n"
2691 msgstr ""
2692
2693 #. type: textblock
2694 #: ../src/guestfs.pod:1386
2695 msgid "This returns the last error number (errno) that happened on C<g>."
2696 msgstr ""
2697
2698 #. type: textblock
2699 #: ../src/guestfs.pod:1388
2700 msgid "If successful, an errno integer not equal to zero is returned."
2701 msgstr ""
2702
2703 #. type: textblock
2704 #: ../src/guestfs.pod:1390
2705 msgid "If no error, this returns 0.  This call can return 0 in three situations:"
2706 msgstr ""
2707
2708 #. type: textblock
2709 #: ../src/guestfs.pod:1397
2710 msgid "There has not been any error on the handle."
2711 msgstr ""
2712
2713 #. type: textblock
2714 #: ../src/guestfs.pod:1401
2715 msgid ""
2716 "There has been an error but the errno was meaningless.  This corresponds to "
2717 "the case where the error did not come from a failed system call, but for "
2718 "some other reason."
2719 msgstr ""
2720
2721 #. type: textblock
2722 #: ../src/guestfs.pod:1407
2723 msgid ""
2724 "There was an error from a failed system call, but for some reason the errno "
2725 "was not captured and returned.  This usually indicates a bug in libguestfs."
2726 msgstr ""
2727
2728 #. type: textblock
2729 #: ../src/guestfs.pod:1413
2730 msgid ""
2731 "Libguestfs tries to convert the errno from inside the applicance into a "
2732 "corresponding errno for the caller (not entirely trivial: the appliance "
2733 "might be running a completely different operating system from the library "
2734 "and error numbers are not standardized across Un*xen).  If this could not be "
2735 "done, then the error is translated to C<EINVAL>.  In practice this should "
2736 "only happen in very rare circumstances."
2737 msgstr ""
2738
2739 #. type: =head2
2740 #: ../src/guestfs.pod:1421
2741 msgid "guestfs_set_error_handler"
2742 msgstr ""
2743
2744 #. type: verbatim
2745 #: ../src/guestfs.pod:1423
2746 #, no-wrap
2747 msgid ""
2748 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2749 "                                           void *opaque,\n"
2750 "                                           const char *msg);\n"
2751 " void guestfs_set_error_handler (guestfs_h *g,\n"
2752 "                                 guestfs_error_handler_cb cb,\n"
2753 "                                 void *opaque);\n"
2754 "\n"
2755 msgstr ""
2756
2757 #. type: textblock
2758 #: ../src/guestfs.pod:1430
2759 msgid ""
2760 "The callback C<cb> will be called if there is an error.  The parameters "
2761 "passed to the callback are an opaque data pointer and the error message "
2762 "string."
2763 msgstr ""
2764
2765 #. type: textblock
2766 #: ../src/guestfs.pod:1434
2767 msgid ""
2768 "C<errno> is not passed to the callback.  To get that the callback must call "
2769 "L</guestfs_last_errno>."
2770 msgstr ""
2771
2772 #. type: textblock
2773 #: ../src/guestfs.pod:1437
2774 msgid ""
2775 "Note that the message string C<msg> is freed as soon as the callback "
2776 "function returns, so if you want to stash it somewhere you must make your "
2777 "own copy."
2778 msgstr ""
2779
2780 #. type: textblock
2781 #: ../src/guestfs.pod:1441
2782 msgid "The default handler prints messages on C<stderr>."
2783 msgstr ""
2784
2785 #. type: textblock
2786 #: ../src/guestfs.pod:1443
2787 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2788 msgstr ""
2789
2790 #. type: =head2
2791 #: ../src/guestfs.pod:1445
2792 msgid "guestfs_get_error_handler"
2793 msgstr ""
2794
2795 #. type: verbatim
2796 #: ../src/guestfs.pod:1447
2797 #, no-wrap
2798 msgid ""
2799 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2800 "                                                     void **opaque_rtn);\n"
2801 "\n"
2802 msgstr ""
2803
2804 #. type: textblock
2805 #: ../src/guestfs.pod:1450
2806 msgid "Returns the current error handler callback."
2807 msgstr ""
2808
2809 #. type: =head2
2810 #: ../src/guestfs.pod:1452
2811 msgid "guestfs_set_out_of_memory_handler"
2812 msgstr ""
2813
2814 #. type: verbatim
2815 #: ../src/guestfs.pod:1454
2816 #, no-wrap
2817 msgid ""
2818 " typedef void (*guestfs_abort_cb) (void);\n"
2819 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2820 "                                        guestfs_abort_cb);\n"
2821 "\n"
2822 msgstr ""
2823
2824 #. type: textblock
2825 #: ../src/guestfs.pod:1458
2826 msgid ""
2827 "The callback C<cb> will be called if there is an out of memory situation.  "
2828 "I<Note this callback must not return>."
2829 msgstr ""
2830
2831 #. type: textblock
2832 #: ../src/guestfs.pod:1461
2833 msgid "The default is to call L<abort(3)>."
2834 msgstr ""
2835
2836 #. type: textblock
2837 #: ../src/guestfs.pod:1463
2838 msgid "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2839 msgstr ""
2840
2841 #. type: =head2
2842 #: ../src/guestfs.pod:1466
2843 msgid "guestfs_get_out_of_memory_handler"
2844 msgstr ""
2845
2846 #. type: verbatim
2847 #: ../src/guestfs.pod:1468
2848 #, no-wrap
2849 msgid ""
2850 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2851 "\n"
2852 msgstr ""
2853
2854 #. type: textblock
2855 #: ../src/guestfs.pod:1470
2856 msgid "This returns the current out of memory handler."
2857 msgstr ""
2858
2859 #. type: =head1
2860 #: ../src/guestfs.pod:1472
2861 msgid "API CALLS"
2862 msgstr ""
2863
2864 #. type: textblock
2865 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1010
2866 msgid "@ACTIONS@"
2867 msgstr ""
2868
2869 #. type: =head1
2870 #: ../src/guestfs.pod:1476
2871 msgid "STRUCTURES"
2872 msgstr ""
2873
2874 #. type: textblock
2875 #: ../src/guestfs.pod:1478
2876 msgid "@STRUCTS@"
2877 msgstr ""
2878
2879 #. type: =head1
2880 #: ../src/guestfs.pod:1480
2881 msgid "AVAILABILITY"
2882 msgstr ""
2883
2884 #. type: =head2
2885 #: ../src/guestfs.pod:1482
2886 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2887 msgstr ""
2888
2889 #. type: textblock
2890 #: ../src/guestfs.pod:1484
2891 msgid ""
2892 "Using L</guestfs_available> you can test availability of the following "
2893 "groups of functions.  This test queries the appliance to see if the "
2894 "appliance you are currently using supports the functionality."
2895 msgstr ""
2896
2897 #. type: textblock
2898 #: ../src/guestfs.pod:1489
2899 msgid "@AVAILABILITY@"
2900 msgstr ""
2901
2902 #. type: =head2
2903 #: ../src/guestfs.pod:1491
2904 msgid "GUESTFISH supported COMMAND"
2905 msgstr ""
2906
2907 #. type: textblock
2908 #: ../src/guestfs.pod:1493
2909 msgid ""
2910 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
2911 "prints out the available groups and whether they are supported by this build "
2912 "of libguestfs.  Note however that you have to do C<run> first."
2913 msgstr ""
2914
2915 #. type: =head2
2916 #: ../src/guestfs.pod:1498
2917 msgid "SINGLE CALLS AT COMPILE TIME"
2918 msgstr ""
2919
2920 #. type: textblock
2921 #: ../src/guestfs.pod:1500
2922 msgid ""
2923 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
2924 "function, such as:"
2925 msgstr ""
2926
2927 #. type: verbatim
2928 #: ../src/guestfs.pod:1503
2929 #, no-wrap
2930 msgid ""
2931 " #define LIBGUESTFS_HAVE_DD 1\n"
2932 "\n"
2933 msgstr ""
2934
2935 #. type: textblock
2936 #: ../src/guestfs.pod:1505
2937 msgid "if L</guestfs_dd> is available."
2938 msgstr ""
2939
2940 #. type: textblock
2941 #: ../src/guestfs.pod:1507
2942 msgid ""
2943 "Before version 1.5.8, if you needed to test whether a single libguestfs "
2944 "function is available at compile time, we recommended using build tools such "
2945 "as autoconf or cmake.  For example in autotools you could use:"
2946 msgstr ""
2947
2948 #. type: verbatim
2949 #: ../src/guestfs.pod:1512
2950 #, no-wrap
2951 msgid ""
2952 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
2953 " AC_CHECK_FUNCS([guestfs_dd])\n"
2954 "\n"
2955 msgstr ""
2956
2957 #. type: textblock
2958 #: ../src/guestfs.pod:1515
2959 msgid ""
2960 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
2961 "in your program."
2962 msgstr ""
2963
2964 #. type: =head2
2965 #: ../src/guestfs.pod:1518
2966 msgid "SINGLE CALLS AT RUN TIME"
2967 msgstr ""
2968
2969 #. type: textblock
2970 #: ../src/guestfs.pod:1520
2971 msgid ""
2972 "Testing at compile time doesn't guarantee that a function really exists in "
2973 "the library.  The reason is that you might be dynamically linked against a "
2974 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
2975 "This situation unfortunately results in a segmentation fault, which is a "
2976 "shortcoming of the C dynamic linking system itself."
2977 msgstr ""
2978
2979 #. type: textblock
2980 #: ../src/guestfs.pod:1527
2981 msgid ""
2982 "You can use L<dlopen(3)> to test if a function is available at run time, as "
2983 "in this example program (note that you still need the compile time check as "
2984 "well):"
2985 msgstr ""
2986
2987 #. type: verbatim
2988 #: ../src/guestfs.pod:1531
2989 #, no-wrap
2990 msgid ""
2991 " #include <stdio.h>\n"
2992 " #include <stdlib.h>\n"
2993 " #include <unistd.h>\n"
2994 " #include <dlfcn.h>\n"
2995 " #include <guestfs.h>\n"
2996 " \n"
2997 msgstr ""
2998
2999 #. type: verbatim
3000 #: ../src/guestfs.pod:1537
3001 #, no-wrap
3002 msgid ""
3003 " main ()\n"
3004 " {\n"
3005 " #ifdef LIBGUESTFS_HAVE_DD\n"
3006 "   void *dl;\n"
3007 "   int has_function;\n"
3008 " \n"
3009 msgstr ""
3010
3011 #. type: verbatim
3012 #: ../src/guestfs.pod:1543
3013 #, no-wrap
3014 msgid ""
3015 "   /* Test if the function guestfs_dd is really available. */\n"
3016 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3017 "   if (!dl) {\n"
3018 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3019 "     exit (EXIT_FAILURE);\n"
3020 "   }\n"
3021 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3022 "   dlclose (dl);\n"
3023 " \n"
3024 msgstr ""
3025
3026 #. type: verbatim
3027 #: ../src/guestfs.pod:1552
3028 #, no-wrap
3029 msgid ""
3030 "   if (!has_function)\n"
3031 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3032 "   else {\n"
3033 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3034 "     /* Now it's safe to call\n"
3035 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3036 "     */\n"
3037 "   }\n"
3038 " #else\n"
3039 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3040 " #endif\n"
3041 "  }\n"
3042 "\n"
3043 msgstr ""
3044
3045 #. type: textblock
3046 #: ../src/guestfs.pod:1565
3047 msgid ""
3048 "You may think the above is an awful lot of hassle, and it is.  There are "
3049 "other ways outside of the C linking system to ensure that this kind of "
3050 "incompatibility never arises, such as using package versioning:"
3051 msgstr ""
3052
3053 #. type: verbatim
3054 #: ../src/guestfs.pod:1570
3055 #, no-wrap
3056 msgid ""
3057 " Requires: libguestfs >= 1.0.80\n"
3058 "\n"
3059 msgstr ""
3060
3061 #. type: =head1
3062 #: ../src/guestfs.pod:1572
3063 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3064 msgstr ""
3065
3066 #. type: textblock
3067 #: ../src/guestfs.pod:1574
3068 msgid ""
3069 "A recent feature of the API is the introduction of calls which take optional "
3070 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3071 "takes variable arguments (ie. C<...>), as in this example:"
3072 msgstr ""
3073
3074 #. type: verbatim
3075 #: ../src/guestfs.pod:1579
3076 #, no-wrap
3077 msgid ""
3078 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3079 "\n"
3080 msgstr ""
3081
3082 #. type: textblock
3083 #: ../src/guestfs.pod:1581
3084 msgid ""
3085 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3086 "call with no optional arguments specified:"
3087 msgstr ""
3088
3089 #. type: verbatim
3090 #: ../src/guestfs.pod:1584
3091 #, no-wrap
3092 msgid ""
3093 " guestfs_add_drive_opts (g, filename, -1);\n"
3094 "\n"
3095 msgstr ""
3096
3097 #. type: textblock
3098 #: ../src/guestfs.pod:1586
3099 msgid "With a single optional argument:"
3100 msgstr ""
3101
3102 #. type: verbatim
3103 #: ../src/guestfs.pod:1588
3104 #, no-wrap
3105 msgid ""
3106 " guestfs_add_drive_opts (g, filename,\n"
3107 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3108 "                         -1);\n"
3109 "\n"
3110 msgstr ""
3111
3112 #. type: textblock
3113 #: ../src/guestfs.pod:1592
3114 msgid "With two:"
3115 msgstr ""
3116
3117 #. type: verbatim
3118 #: ../src/guestfs.pod:1594
3119 #, no-wrap
3120 msgid ""
3121 " guestfs_add_drive_opts (g, filename,\n"
3122 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3123 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3124 "                         -1);\n"
3125 "\n"
3126 msgstr ""
3127
3128 #. type: textblock
3129 #: ../src/guestfs.pod:1599
3130 msgid ""
3131 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3132 "happen!"
3133 msgstr ""
3134
3135 #. type: =head2
3136 #: ../src/guestfs.pod:1602
3137 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3138 msgstr ""
3139
3140 #. type: textblock
3141 #: ../src/guestfs.pod:1604
3142 msgid ""
3143 "The second variant has the same name with the suffix C<_va>, which works the "
3144 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3145 "example function, this is declared:"
3146 msgstr ""
3147
3148 #. type: verbatim
3149 #: ../src/guestfs.pod:1608
3150 #, no-wrap
3151 msgid ""
3152 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3153 "                                va_list args);\n"
3154 "\n"
3155 msgstr ""
3156
3157 #. type: =head2
3158 #: ../src/guestfs.pod:1611
3159 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3160 msgstr ""
3161
3162 #. type: textblock
3163 #: ../src/guestfs.pod:1613
3164 msgid ""
3165 "The third variant is useful where you need to construct these calls.  You "
3166 "pass in a structure where you fill in the optional fields.  The structure "
3167 "has a bitmask as the first element which you must set to indicate which "
3168 "fields you have filled in.  For our example function the structure and call "
3169 "are declared:"
3170 msgstr ""
3171
3172 #. type: verbatim
3173 #: ../src/guestfs.pod:1619
3174 #, no-wrap
3175 msgid ""
3176 " struct guestfs_add_drive_opts_argv {\n"
3177 "   uint64_t bitmask;\n"
3178 "   int readonly;\n"
3179 "   const char *format;\n"
3180 "   /* ... */\n"
3181 " };\n"
3182 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3183 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3184 "\n"
3185 msgstr ""
3186
3187 #. type: textblock
3188 #: ../src/guestfs.pod:1628
3189 msgid "You could call it like this:"
3190 msgstr ""
3191
3192 #. type: verbatim
3193 #: ../src/guestfs.pod:1630
3194 #, no-wrap
3195 msgid ""
3196 " struct guestfs_add_drive_opts_argv optargs = {\n"
3197 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3198 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3199 "   .readonly = 1,\n"
3200 "   .format = \"qcow2\"\n"
3201 " };\n"
3202 " \n"
3203 msgstr ""
3204
3205 #. type: verbatim
3206 #: ../src/guestfs.pod:1637
3207 #, no-wrap
3208 msgid ""
3209 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3210 "\n"
3211 msgstr ""
3212
3213 #. type: textblock
3214 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11 ../src/guestfs-actions.pod:1858 ../src/guestfs-actions.pod:2779 ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1262 ../fish/guestfish-actions.pod:1898 ../tools/virt-win-reg.pl:704
3215 msgid "Notes:"
3216 msgstr ""
3217
3218 #. type: textblock
3219 #: ../src/guestfs.pod:1645
3220 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3221 msgstr ""
3222
3223 #. type: textblock
3224 #: ../src/guestfs.pod:1650
3225 msgid "You do not need to fill in all fields of the structure."
3226 msgstr ""
3227
3228 #. type: textblock
3229 #: ../src/guestfs.pod:1654
3230 msgid ""
3231 "There must be a one-to-one correspondence between fields of the structure "
3232 "that are filled in, and bits set in the bitmask."
3233 msgstr ""
3234
3235 #. type: =head2
3236 #: ../src/guestfs.pod:1659
3237 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3238 msgstr ""
3239
3240 #. type: textblock
3241 #: ../src/guestfs.pod:1661
3242 msgid ""
3243 "In other languages, optional arguments are expressed in the way that is "
3244 "natural for that language.  We refer you to the language-specific "
3245 "documentation for more details on that."
3246 msgstr ""
3247
3248 #. type: textblock
3249 #: ../src/guestfs.pod:1665
3250 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3251 msgstr ""
3252
3253 #. type: =head2
3254 #: ../src/guestfs.pod:1667
3255 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3256 msgstr ""
3257
3258 #. type: textblock
3259 #: ../src/guestfs.pod:1669
3260 msgid ""
3261 "B<Note:> This section documents the generic event mechanism introduced in "
3262 "libguestfs 1.10, which you should use in new code if possible.  The old "
3263 "functions C<guestfs_set_log_message_callback>, "
3264 "C<guestfs_set_subprocess_quit_callback>, "
3265 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3266 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3267 "page.  Because of the ABI guarantee, the old functions continue to work."
3268 msgstr ""
3269
3270 #. type: textblock
3271 #: ../src/guestfs.pod:1678
3272 msgid ""
3273 "Handles generate events when certain things happen, such as log messages "
3274 "being generated, progress messages during long-running operations, or the "
3275 "handle being closed.  The API calls described below let you register a "
3276 "callback to be called when events happen.  You can register multiple "
3277 "callbacks (for the same, different or overlapping sets of events), and "
3278 "individually remove callbacks.  If callbacks are not removed, then they "
3279 "remain in force until the handle is closed."
3280 msgstr ""
3281
3282 #. type: textblock
3283 #: ../src/guestfs.pod:1686
3284 msgid ""
3285 "In the current implementation, events are only generated synchronously: that "
3286 "means that events (and hence callbacks) can only happen while you are in the "
3287 "middle of making another libguestfs call.  The callback is called in the "
3288 "same thread."
3289 msgstr ""
3290
3291 #. type: textblock
3292 #: ../src/guestfs.pod:1691
3293 msgid ""
3294 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3295 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3296 msgstr ""
3297
3298 #. type: =head3
3299 #: ../src/guestfs.pod:1695
3300 msgid "CLASSES OF EVENTS"
3301 msgstr ""
3302
3303 #. type: =item
3304 #: ../src/guestfs.pod:1699
3305 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3306 msgstr ""
3307
3308 #. type: textblock
3309 #: ../src/guestfs.pod:1702
3310 msgid ""
3311 "The callback function will be called while the handle is being closed "
3312 "(synchronously from L</guestfs_close>)."
3313 msgstr ""
3314
3315 #. type: textblock
3316 #: ../src/guestfs.pod:1705
3317 msgid ""
3318 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3319 "handles that are open when the program exits.  This means that this callback "
3320 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3321 "problems in higher-level languages (eg. if your HLL interpreter has already "
3322 "been cleaned up by the time this is called, and if your callback then jumps "
3323 "into some HLL function)."
3324 msgstr ""
3325
3326 #. type: textblock
3327 #: ../src/guestfs.pod:1712
3328 msgid ""
3329 "If no callback is registered: the handle is closed without any callback "
3330 "being invoked."
3331 msgstr ""
3332
3333 #. type: =item
3334 #: ../src/guestfs.pod:1715
3335 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3336 msgstr ""
3337
3338 #. type: textblock
3339 #: ../src/guestfs.pod:1718
3340 msgid ""
3341 "The callback function will be called when the child process quits, either "
3342 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3343 "corresponds to a transition from any state to the CONFIG state)."
3344 msgstr ""
3345
3346 #. type: textblock
3347 #: ../src/guestfs.pod:1722 ../src/guestfs.pod:1731
3348 msgid "If no callback is registered: the event is ignored."
3349 msgstr ""
3350
3351 #. type: =item
3352 #: ../src/guestfs.pod:1724
3353 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3354 msgstr ""
3355
3356 #. type: textblock
3357 #: ../src/guestfs.pod:1727
3358 msgid ""
3359 "The callback function will be called when the child process becomes ready "
3360 "first time after it has been launched.  (This corresponds to a transition "
3361 "from LAUNCHING to the READY state)."
3362 msgstr ""
3363
3364 #. type: =item
3365 #: ../src/guestfs.pod:1733
3366 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3367 msgstr ""
3368
3369 #. type: textblock
3370 #: ../src/guestfs.pod:1736
3371 msgid ""
3372 "Some long-running operations can generate progress messages.  If this "
3373 "callback is registered, then it will be called each time a progress message "
3374 "is generated (usually two seconds after the operation started, and three "
3375 "times per second thereafter until it completes, although the frequency may "
3376 "change in future versions)."
3377 msgstr ""
3378
3379 #. type: textblock
3380 #: ../src/guestfs.pod:1742
3381 msgid ""
3382 "The callback receives in the payload four unsigned 64 bit numbers which are "
3383 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3384 msgstr ""
3385
3386 #. type: textblock
3387 #: ../src/guestfs.pod:1745
3388 msgid ""
3389 "The units of C<total> are not defined, although for some operations C<total> "
3390 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3391 "or megabytes), and C<position> may be the portion which has been "
3392 "transferred."
3393 msgstr ""
3394
3395 #. type: textblock
3396 #: ../src/guestfs.pod:1750
3397 msgid "The only defined and stable parts of the API are:"
3398 msgstr ""
3399
3400 #. type: textblock
3401 #: ../src/guestfs.pod:1756
3402 msgid ""
3403 "The callback can display to the user some type of progress bar or indicator "
3404 "which shows the ratio of C<position>:C<total>."
3405 msgstr ""
3406
3407 #. type: textblock
3408 #: ../src/guestfs.pod:1761
3409 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3410 msgstr ""
3411
3412 #. type: textblock
3413 #: ../src/guestfs.pod:1765
3414 msgid ""
3415 "If any progress notification is sent during a call, then a final progress "
3416 "notification is always sent when C<position> = C<total> (I<unless> the call "
3417 "fails with an error)."
3418 msgstr ""
3419
3420 #. type: textblock
3421 #: ../src/guestfs.pod:1769
3422 msgid ""
3423 "This is to simplify caller code, so callers can easily set the progress "
3424 "indicator to \"100%\" at the end of the operation, without requiring special "
3425 "code to detect this case."
3426 msgstr ""
3427
3428 #. type: textblock
3429 #: ../src/guestfs.pod:1775
3430 msgid ""
3431 "For some calls we are unable to estimate the progress of the call, but we "
3432 "can still generate progress messages to indicate activity.  This is known as "
3433 "\"pulse mode\", and is directly supported by certain progress bar "
3434 "implementations (eg. GtkProgressBar)."
3435 msgstr ""
3436
3437 #. type: textblock
3438 #: ../src/guestfs.pod:1780
3439 msgid ""
3440 "For these calls, zero or more progress messages are generated with "
3441 "C<position = 0> and C<total = 1>, followed by a final message with "
3442 "C<position = total = 1>."
3443 msgstr ""
3444
3445 #. type: textblock
3446 #: ../src/guestfs.pod:1784
3447 msgid ""
3448 "As noted above, if the call fails with an error then the final message may "
3449 "not be generated."
3450 msgstr ""
3451
3452 #. type: textblock
3453 #: ../src/guestfs.pod:1789
3454 msgid ""
3455 "The callback also receives the procedure number (C<proc_nr>) and serial "
3456 "number (C<serial>) of the call.  These are only useful for debugging "
3457 "protocol issues, and the callback can normally ignore them.  The callback "
3458 "may want to print these numbers in error messages or debugging messages."
3459 msgstr ""
3460
3461 #. type: textblock
3462 #: ../src/guestfs.pod:1795
3463 msgid "If no callback is registered: progress messages are discarded."
3464 msgstr ""
3465
3466 #. type: =item
3467 #: ../src/guestfs.pod:1797
3468 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3469 msgstr ""
3470
3471 #. type: textblock
3472 #: ../src/guestfs.pod:1800
3473 msgid ""
3474 "The callback function is called whenever a log message is generated by qemu, "
3475 "the appliance kernel, guestfsd (daemon), or utility programs."
3476 msgstr ""
3477
3478 #. type: textblock
3479 #: ../src/guestfs.pod:1803
3480 msgid ""
3481 "If the verbose flag (L</guestfs_set_verbose>) is set before launch "
3482 "(L</guestfs_launch>) then additional debug messages are generated."
3483 msgstr ""
3484
3485 #. type: textblock
3486 #: ../src/guestfs.pod:1806 ../src/guestfs.pod:1820
3487 msgid ""
3488 "If no callback is registered: the messages are discarded unless the verbose "
3489 "flag is set in which case they are sent to stderr.  You can override the "
3490 "printing of verbose messages to stderr by setting up a callback."
3491 msgstr ""
3492
3493 #. type: =item
3494 #: ../src/guestfs.pod:1811
3495 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3496 msgstr ""
3497
3498 #. type: textblock
3499 #: ../src/guestfs.pod:1814
3500 msgid ""
3501 "The callback function is called whenever a log message is generated by the "
3502 "library part of libguestfs."
3503 msgstr ""
3504
3505 #. type: textblock
3506 #: ../src/guestfs.pod:1817
3507 msgid ""
3508 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3509 "messages are generated."
3510 msgstr ""
3511
3512 #. type: =item
3513 #: ../src/guestfs.pod:1825
3514 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3515 msgstr ""
3516
3517 #. type: textblock
3518 #: ../src/guestfs.pod:1828
3519 msgid ""
3520 "The callback function is called whenever a trace message is generated.  This "
3521 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3522 msgstr ""
3523
3524 #. type: textblock
3525 #: ../src/guestfs.pod:1831
3526 msgid ""
3527 "If no callback is registered: the messages are sent to stderr.  You can "
3528 "override the printing of trace messages to stderr by setting up a callback."
3529 msgstr ""
3530
3531 #. type: =head3
3532 #: ../src/guestfs.pod:1837
3533 msgid "guestfs_set_event_callback"
3534 msgstr ""
3535
3536 #. type: verbatim
3537 #: ../src/guestfs.pod:1839
3538 #, no-wrap
3539 msgid ""
3540 " int guestfs_set_event_callback (guestfs_h *g,\n"
3541 "                                 guestfs_event_callback cb,\n"
3542 "                                 uint64_t event_bitmask,\n"
3543 "                                 int flags,\n"
3544 "                                 void *opaque);\n"
3545 "\n"
3546 msgstr ""
3547
3548 #. type: textblock
3549 #: ../src/guestfs.pod:1845
3550 msgid ""
3551 "This function registers a callback (C<cb>) for all event classes in the "
3552 "C<event_bitmask>."
3553 msgstr ""
3554
3555 #. type: textblock
3556 #: ../src/guestfs.pod:1848
3557 msgid ""
3558 "For example, to register for all log message events, you could call this "
3559 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
3560 "To register a single callback for all possible classes of events, use "
3561 "C<GUESTFS_EVENT_ALL>."
3562 msgstr ""
3563
3564 #. type: textblock
3565 #: ../src/guestfs.pod:1854
3566 msgid "C<flags> should always be passed as 0."
3567 msgstr ""
3568
3569 #. type: textblock
3570 #: ../src/guestfs.pod:1856
3571 msgid ""
3572 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
3573 "it for any purpose."
3574 msgstr ""
3575
3576 #. type: textblock
3577 #: ../src/guestfs.pod:1859
3578 msgid ""
3579 "The return value is the event handle (an integer) which you can use to "
3580 "delete the callback (see below)."
3581 msgstr ""
3582
3583 #. type: textblock
3584 #: ../src/guestfs.pod:1862
3585 msgid ""
3586 "If there is an error, this function returns C<-1>, and sets the error in the "
3587 "handle in the usual way (see L</guestfs_last_error> etc.)"
3588 msgstr ""
3589
3590 #. type: textblock
3591 #: ../src/guestfs.pod:1865
3592 msgid ""
3593 "Callbacks remain in effect until they are deleted, or until the handle is "
3594 "closed."
3595 msgstr ""
3596
3597 #. type: textblock
3598 #: ../src/guestfs.pod:1868
3599 msgid ""
3600 "In the case where multiple callbacks are registered for a particular event "
3601 "class, all of the callbacks are called.  The order in which multiple "
3602 "callbacks are called is not defined."
3603 msgstr ""
3604
3605 #. type: =head3
3606 #: ../src/guestfs.pod:1872
3607 msgid "guestfs_delete_event_callback"
3608 msgstr ""
3609
3610 #. type: verbatim
3611 #: ../src/guestfs.pod:1874
3612 #, no-wrap
3613 msgid ""
3614 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3615 "\n"
3616 msgstr ""
3617
3618 #. type: textblock
3619 #: ../src/guestfs.pod:1876
3620 msgid ""
3621 "Delete a callback that was previously registered.  C<event_handle> should be "
3622 "the integer that was returned by a previous call to "
3623 "C<guestfs_set_event_callback> on the same handle."
3624 msgstr ""
3625
3626 #. type: =head3
3627 #: ../src/guestfs.pod:1880
3628 msgid "guestfs_event_callback"
3629 msgstr ""
3630
3631 #. type: verbatim
3632 #: ../src/guestfs.pod:1882
3633 #, no-wrap
3634 msgid ""
3635 " typedef void (*guestfs_event_callback) (\n"
3636 "                  guestfs_h *g,\n"
3637 "                  void *opaque,\n"
3638 "                  uint64_t event,\n"
3639 "                  int event_handle,\n"
3640 "                  int flags,\n"
3641 "                  const char *buf, size_t buf_len,\n"
3642 "                  const uint64_t *array, size_t array_len);\n"
3643 "\n"
3644 msgstr ""
3645
3646 #. type: textblock
3647 #: ../src/guestfs.pod:1891
3648 msgid "This is the type of the event callback function that you have to provide."
3649 msgstr ""
3650
3651 #. type: textblock
3652 #: ../src/guestfs.pod:1894
3653 msgid ""
3654 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3655 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3656 "handle, and C<flags> which in the current API you should ignore."
3657 msgstr ""
3658
3659 #. type: textblock
3660 #: ../src/guestfs.pod:1898
3661 msgid ""
3662 "The remaining parameters contain the event payload (if any).  Each event may "
3663 "contain a payload, which usually relates to the event class, but for future "
3664 "proofing your code should be written to handle any payload for any event "
3665 "class."
3666 msgstr ""
3667
3668 #. type: textblock
3669 #: ../src/guestfs.pod:1903
3670 msgid ""
3671 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3672 "there is no message buffer).  Note that this message buffer can contain "
3673 "arbitrary 8 bit data, including NUL bytes."
3674 msgstr ""
3675
3676 #. type: textblock
3677 #: ../src/guestfs.pod:1907
3678 msgid ""
3679 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3680 "moment this is only used for progress messages."
3681 msgstr ""
3682
3683 #. type: =head3
3684 #: ../src/guestfs.pod:1910
3685 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3686 msgstr ""
3687
3688 #. type: textblock
3689 #: ../src/guestfs.pod:1912
3690 msgid ""
3691 "One motivation for the generic event API was to allow GUI programs to "
3692 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3693 "unconditionally to C<stderr>."
3694 msgstr ""
3695
3696 #. type: textblock
3697 #: ../src/guestfs.pod:1916
3698 msgid ""
3699 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3700 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3701 "messages are not events; you must capture error messages separately)."
3702 msgstr ""
3703
3704 #. type: textblock
3705 #: ../src/guestfs.pod:1921
3706 msgid ""
3707 "Programs have to set up a callback to capture the classes of events of "
3708 "interest:"
3709 msgstr ""
3710
3711 #. type: verbatim
3712 #: ../src/guestfs.pod:1924
3713 #, no-wrap
3714 msgid ""
3715 " int eh =\n"
3716 "   guestfs_set_event_callback\n"
3717 "     (g, message_callback,\n"
3718 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3719 "      GUESTFS_EVENT_TRACE,\n"
3720 "      0, NULL) == -1)\n"
3721 " if (eh == -1) {\n"
3722 "   // handle error in the usual way\n"
3723 " }\n"
3724 "\n"
3725 msgstr ""
3726
3727 #. type: textblock
3728 #: ../src/guestfs.pod:1934
3729 msgid ""
3730 "The callback can then direct messages to the appropriate place.  In this "
3731 "example, messages are directed to syslog:"
3732 msgstr ""
3733
3734 #. type: verbatim
3735 #: ../src/guestfs.pod:1937
3736 #, no-wrap
3737 msgid ""
3738 " static void\n"
3739 " message_callback (\n"
3740 "         guestfs_h *g,\n"
3741 "         void *opaque,\n"
3742 "         uint64_t event,\n"
3743 "         int event_handle,\n"
3744 "         int flags,\n"
3745 "         const char *buf, size_t buf_len,\n"
3746 "         const uint64_t *array, size_t array_len)\n"
3747 " {\n"
3748 "   const int priority = LOG_USER|LOG_INFO;\n"
3749 "   if (buf_len > 0)\n"
3750 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3751 " }\n"
3752 "\n"
3753 msgstr ""
3754
3755 #. type: =head1
3756 #: ../src/guestfs.pod:1952
3757 msgid "PRIVATE DATA AREA"
3758 msgstr ""
3759
3760 #. type: textblock
3761 #: ../src/guestfs.pod:1954
3762 msgid ""
3763 "You can attach named pieces of private data to the libguestfs handle, fetch "
3764 "them by name, and walk over them, for the lifetime of the handle.  This is "
3765 "called the private data area and is only available from the C API."
3766 msgstr ""
3767
3768 #. type: textblock
3769 #: ../src/guestfs.pod:1959
3770 msgid "To attach a named piece of data, use the following call:"
3771 msgstr ""
3772
3773 #. type: verbatim
3774 #: ../src/guestfs.pod:1961
3775 #, no-wrap
3776 msgid ""
3777 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3778 "\n"
3779 msgstr ""
3780
3781 #. type: textblock
3782 #: ../src/guestfs.pod:1963
3783 msgid ""
3784 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3785 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3786 "overwritten."
3787 msgstr ""
3788
3789 #. type: textblock
3790 #: ../src/guestfs.pod:1967
3791 msgid ""
3792 "You can use any C<key> you want, but your key should I<not> start with an "
3793 "underscore character.  Keys beginning with an underscore character are "
3794 "reserved for internal libguestfs purposes (eg. for implementing language "
3795 "bindings).  It is recommended that you prefix the key with some unique "
3796 "string to avoid collisions with other users."
3797 msgstr ""
3798
3799 #. type: textblock
3800 #: ../src/guestfs.pod:1973
3801 msgid "To retrieve the pointer, use:"
3802 msgstr ""
3803
3804 #. type: verbatim
3805 #: ../src/guestfs.pod:1975
3806 #, no-wrap
3807 msgid ""
3808 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3809 "\n"
3810 msgstr ""
3811
3812 #. type: textblock
3813 #: ../src/guestfs.pod:1977
3814 msgid ""
3815 "This function returns C<NULL> if either no data is found associated with "
3816 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3817 "C<NULL>."
3818 msgstr ""
3819
3820 #. type: textblock
3821 #: ../src/guestfs.pod:1981
3822 msgid ""
3823 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3824 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3825 "all.  In particular, libguestfs does I<not> try to free the data when the "
3826 "handle is closed.  If the data must be freed, then the caller must either "
3827 "free it before calling L</guestfs_close> or must set up a close callback to "
3828 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3829 msgstr ""
3830
3831 #. type: textblock
3832 #: ../src/guestfs.pod:1988
3833 msgid "To walk over all entries, use these two functions:"
3834 msgstr ""
3835
3836 #. type: verbatim
3837 #: ../src/guestfs.pod:1990
3838 #, no-wrap
3839 msgid ""
3840 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
3841 "\n"
3842 msgstr ""
3843
3844 #. type: verbatim
3845 #: ../src/guestfs.pod:1992
3846 #, no-wrap
3847 msgid ""
3848 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
3849 "\n"
3850 msgstr ""
3851
3852 #. type: textblock
3853 #: ../src/guestfs.pod:1994
3854 msgid ""
3855 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
3856 "not have any particular meaning -- keys are not returned in any defined "
3857 "order).  A pointer to the key is returned in C<*key_rtn> and the "
3858 "corresponding data pointer is returned from the function.  C<NULL> is "
3859 "returned if there are no keys stored in the handle."
3860 msgstr ""
3861
3862 #. type: textblock
3863 #: ../src/guestfs.pod:2000
3864 msgid ""
3865 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
3866 "value of this function is also C<NULL> is there are no further entries to "
3867 "return."
3868 msgstr ""
3869
3870 #. type: textblock
3871 #: ../src/guestfs.pod:2004
3872 msgid "Notes about walking over entries:"
3873 msgstr ""
3874
3875 #. type: textblock
3876 #: ../src/guestfs.pod:2010
3877 msgid "You must not call C<guestfs_set_private> while walking over the entries."
3878 msgstr ""
3879
3880 #. type: textblock
3881 #: ../src/guestfs.pod:2015
3882 msgid ""
3883 "The handle maintains an internal iterator which is reset when you call "
3884 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
3885 "call C<guestfs_set_private>."
3886 msgstr ""
3887
3888 #. type: textblock
3889 #: ../src/guestfs.pod:2021
3890 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
3891 msgstr ""
3892
3893 #. type: verbatim
3894 #: ../src/guestfs.pod:2023
3895 #, no-wrap
3896 msgid ""
3897 " guestfs_set_private (g, key, NULL);\n"
3898 "\n"
3899 msgstr ""
3900
3901 #. type: textblock
3902 #: ../src/guestfs.pod:2025
3903 msgid "then that C<key> is not returned when walking."
3904 msgstr ""
3905
3906 #. type: textblock
3907 #: ../src/guestfs.pod:2029
3908 msgid ""
3909 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
3910 "C<guestfs_next_private> or C<guestfs_set_private>."
3911 msgstr ""
3912
3913 #. type: textblock
3914 #: ../src/guestfs.pod:2035
3915 msgid ""
3916 "The following example code shows how to print all keys and data pointers "
3917 "that are associated with the handle C<g>:"
3918 msgstr ""
3919
3920 #. type: verbatim
3921 #: ../src/guestfs.pod:2038
3922 #, no-wrap
3923 msgid ""
3924 " const char *key;\n"
3925 " void *data = guestfs_first_private (g, &key);\n"
3926 " while (data != NULL)\n"
3927 "   {\n"
3928 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
3929 "     data = guestfs_next_private (g, &key);\n"
3930 "   }\n"
3931 "\n"
3932 msgstr ""
3933
3934 #. type: textblock
3935 #: ../src/guestfs.pod:2046
3936 msgid ""
3937 "More commonly you are only interested in keys that begin with an "
3938 "application-specific prefix C<foo_>.  Modify the loop like so:"
3939 msgstr ""
3940
3941 #. type: verbatim
3942 #: ../src/guestfs.pod:2049
3943 #, no-wrap
3944 msgid ""
3945 " const char *key;\n"
3946 " void *data = guestfs_first_private (g, &key);\n"
3947 " while (data != NULL)\n"
3948 "   {\n"
3949 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
3950 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
3951 "     data = guestfs_next_private (g, &key);\n"
3952 "   }\n"
3953 "\n"
3954 msgstr ""
3955
3956 #. type: textblock
3957 #: ../src/guestfs.pod:2058
3958 msgid ""
3959 "If you need to modify keys while walking, then you have to jump back to the "
3960 "beginning of the loop.  For example, to delete all keys prefixed with "
3961 "C<foo_>:"
3962 msgstr ""
3963
3964 #. type: verbatim
3965 #: ../src/guestfs.pod:2062
3966 #, no-wrap
3967 msgid ""
3968 "  const char *key;\n"
3969 "  void *data;\n"
3970 " again:\n"
3971 "  data = guestfs_first_private (g, &key);\n"
3972 "  while (data != NULL)\n"
3973 "    {\n"
3974 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
3975 "        {\n"
3976 "          guestfs_set_private (g, key, NULL);\n"
3977 "          /* note that 'key' pointer is now invalid, and so is\n"
3978 "             the internal iterator */\n"
3979 "          goto again;\n"
3980 "        }\n"
3981 "      data = guestfs_next_private (g, &key);\n"
3982 "    }\n"
3983 "\n"
3984 msgstr ""
3985
3986 #. type: textblock
3987 #: ../src/guestfs.pod:2078
3988 msgid ""
3989 "Note that the above loop is guaranteed to terminate because the keys are "
3990 "being deleted, but other manipulations of keys within the loop might not "
3991 "terminate unless you also maintain an indication of which keys have been "
3992 "visited."
3993 msgstr ""
3994
3995 #. type: =end
3996 #: ../src/guestfs.pod:2083 ../src/guestfs.pod:2088
3997 msgid "html"
3998 msgstr ""
3999
4000 #. type: textblock
4001 #: ../src/guestfs.pod:2085
4002 msgid ""
4003 "<!-- old anchor for the next section --> <a "
4004 "name=\"state_machine_and_low_level_event_api\"/>"
4005 msgstr ""
4006
4007 #. type: =head1
4008 #: ../src/guestfs.pod:2090
4009 msgid "ARCHITECTURE"
4010 msgstr ""
4011
4012 #. type: textblock
4013 #: ../src/guestfs.pod:2092
4014 msgid ""
4015 "Internally, libguestfs is implemented by running an appliance (a special "
4016 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4017 "process of the main program."
4018 msgstr ""
4019
4020 #. type: verbatim
4021 #: ../src/guestfs.pod:2096
4022 #, no-wrap
4023 msgid ""
4024 "  ___________________\n"
4025 " /                   \\\n"
4026 " | main program      |\n"
4027 " |                   |\n"
4028 " |                   |           child process / appliance\n"
4029 " |                   |           __________________________\n"
4030 " |                   |          / qemu                     \\\n"
4031 " +-------------------+   RPC    |      +-----------------+ |\n"
4032 " | libguestfs     <--------------------> guestfsd        | |\n"
4033 " |                   |          |      +-----------------+ |\n"
4034 " \\___________________/          |      | Linux kernel    | |\n"
4035 "                                |      +--^--------------+ |\n"
4036 "                                \\_________|________________/\n"
4037 "                                          |\n"
4038 "                                   _______v______\n"
4039 "                                  /              \\\n"
4040 "                                  | Device or    |\n"
4041 "                                  | disk image   |\n"
4042 "                                  \\______________/\n"
4043 "\n"
4044 msgstr ""
4045
4046 #. type: textblock
4047 #: ../src/guestfs.pod:2116
4048 msgid ""
4049 "The library, linked to the main program, creates the child process and hence "
4050 "the appliance in the L</guestfs_launch> function."
4051 msgstr ""
4052
4053 #. type: textblock
4054 #: ../src/guestfs.pod:2119
4055 msgid ""
4056 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4057 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4058 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4059 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4060 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4061 "attached to the qemu process which translates device access by the "
4062 "appliance's Linux kernel into accesses to the image."
4063 msgstr ""
4064
4065 #. type: textblock
4066 #: ../src/guestfs.pod:2128
4067 msgid ""
4068 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4069 "Although the disk image you are attached to might also be used by some "
4070 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4071 "care if both libguestfs's qemu process and your virtual machine are trying "
4072 "to update the disk image at the same time, since these usually results in "
4073 "massive disk corruption)."
4074 msgstr ""
4075
4076 #. type: =head1
4077 #: ../src/guestfs.pod:2135
4078 msgid "STATE MACHINE"
4079 msgstr ""
4080
4081 #. type: textblock
4082 #: ../src/guestfs.pod:2137
4083 msgid "libguestfs uses a state machine to model the child process:"
4084 msgstr ""
4085
4086 #. type: verbatim
4087 #: ../src/guestfs.pod:2139
4088 #, no-wrap
4089 msgid ""
4090 "                         |\n"
4091 "                    guestfs_create\n"
4092 "                         |\n"
4093 "                         |\n"
4094 "                     ____V_____\n"
4095 "                    /          \\\n"
4096 "                    |  CONFIG  |\n"
4097 "                    \\__________/\n"
4098 "                     ^ ^   ^  \\\n"
4099 "                    /  |    \\  \\ guestfs_launch\n"
4100 "                   /   |    _\\__V______\n"
4101 "                  /    |   /           \\\n"
4102 "                 /     |   | LAUNCHING |\n"
4103 "                /      |   \\___________/\n"
4104 "               /       |       /\n"
4105 "              /        |  guestfs_launch\n"
4106 "             /         |     /\n"
4107 "    ______  /        __|____V\n"
4108 "   /      \\ ------> /        \\\n"
4109 "   | BUSY |         | READY  |\n"
4110 "   \\______/ <------ \\________/\n"
4111 "\n"
4112 msgstr ""
4113
4114 #. type: textblock
4115 #: ../src/guestfs.pod:2161
4116 msgid ""
4117 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4118 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4119 "(3) alternating between READY and BUSY as commands are issued to, and "
4120 "carried out by, the child process."
4121 msgstr ""
4122
4123 #. type: textblock
4124 #: ../src/guestfs.pod:2166
4125 msgid ""
4126 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4127 "asynchronously at any time (eg. due to some internal error), and that causes "
4128 "the state to transition back to CONFIG."
4129 msgstr ""
4130
4131 #. type: textblock
4132 #: ../src/guestfs.pod:2170
4133 msgid ""
4134 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4135 "issued when in the CONFIG state."
4136 msgstr ""
4137
4138 #. type: textblock
4139 #: ../src/guestfs.pod:2173
4140 msgid ""
4141 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4142 "L</guestfs_launch> blocks until the child process is READY to accept "
4143 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4144 "moves the state from CONFIG to LAUNCHING while it is running."
4145 msgstr ""
4146
4147 #. type: textblock
4148 #: ../src/guestfs.pod:2179
4149 msgid ""
4150 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4151 "state.  These API calls block waiting for the command to be carried out "
4152 "(ie. the state to transition to BUSY and then back to READY).  There are no "
4153 "non-blocking versions, and no way to issue more than one command per handle "
4154 "at the same time."
4155 msgstr ""
4156
4157 #. type: textblock
4158 #: ../src/guestfs.pod:2185
4159 msgid ""
4160 "Finally, the child process sends asynchronous messages back to the main "
4161 "program, such as kernel log messages.  You can register a callback to "
4162 "receive these messages."
4163 msgstr ""
4164
4165 #. type: =head1
4166 #: ../src/guestfs.pod:2189
4167 msgid "INTERNALS"
4168 msgstr ""
4169
4170 #. type: =head2
4171 #: ../src/guestfs.pod:2191
4172 msgid "COMMUNICATION PROTOCOL"
4173 msgstr ""
4174
4175 #. type: textblock
4176 #: ../src/guestfs.pod:2193
4177 msgid ""
4178 "Don't rely on using this protocol directly.  This section documents how it "
4179 "currently works, but it may change at any time."
4180 msgstr ""
4181
4182 #. type: textblock
4183 #: ../src/guestfs.pod:2196
4184 msgid ""
4185 "The protocol used to talk between the library and the daemon running inside "
4186 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4187 "1014, RFC 1832, RFC 4506)."
4188 msgstr ""
4189
4190 #. type: textblock
4191 #: ../src/guestfs.pod:2200
4192 msgid ""
4193 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4194 "this file is automatically generated)."
4195 msgstr ""
4196
4197 #. type: textblock
4198 #: ../src/guestfs.pod:2203
4199 msgid ""
4200 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4201 "and C<FileOut> parameters, which are handled with very simple request/reply "
4202 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4203 "parameters, which use the same request and reply messages, but they may also "
4204 "be followed by files sent using a chunked encoding."
4205 msgstr ""
4206
4207 #. type: =head3
4208 #: ../src/guestfs.pod:2210
4209 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4210 msgstr ""
4211
4212 #. type: textblock
4213 #: ../src/guestfs.pod:2212
4214 msgid "For ordinary functions, the request message is:"
4215 msgstr ""
4216
4217 #. type: verbatim
4218 #: ../src/guestfs.pod:2214
4219 #, no-wrap
4220 msgid ""
4221 " total length (header + arguments,\n"
4222 "      but not including the length word itself)\n"
4223 " struct guestfs_message_header (encoded as XDR)\n"
4224 " struct guestfs_<foo>_args (encoded as XDR)\n"
4225 "\n"
4226 msgstr ""
4227
4228 #. type: textblock
4229 #: ../src/guestfs.pod:2219
4230 msgid ""
4231 "The total length field allows the daemon to allocate a fixed size buffer "
4232 "into which it slurps the rest of the message.  As a result, the total length "
4233 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4234 "effective size of any request is limited to somewhere under this size."
4235 msgstr ""
4236
4237 #. type: textblock
4238 #: ../src/guestfs.pod:2225
4239 msgid ""
4240 "Note also that many functions don't take any arguments, in which case the "
4241 "C<guestfs_I<foo>_args> is completely omitted."
4242 msgstr ""
4243
4244 #. type: textblock
4245 #: ../src/guestfs.pod:2228
4246 msgid ""
4247 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4248 "receiver knows what type of args structure to expect, or none at all."
4249 msgstr ""
4250
4251 #. type: textblock
4252 #: ../src/guestfs.pod:2232
4253 msgid ""
4254 "For functions that take optional arguments, the optional arguments are "
4255 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4256 "arguments.  A bitmask in the header indicates which optional arguments are "
4257 "meaningful.  The bitmask is also checked to see if it contains bits set "
4258 "which the daemon does not know about (eg. if more optional arguments were "
4259 "added in a later version of the library), and this causes the call to be "
4260 "rejected."
4261 msgstr ""
4262
4263 #. type: textblock
4264 #: ../src/guestfs.pod:2240
4265 msgid "The reply message for ordinary functions is:"
4266 msgstr ""
4267
4268 #. type: verbatim
4269 #: ../src/guestfs.pod:2242
4270 #, no-wrap
4271 msgid ""
4272 " total length (header + ret,\n"
4273 "      but not including the length word itself)\n"
4274 " struct guestfs_message_header (encoded as XDR)\n"
4275 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4276 "\n"
4277 msgstr ""
4278
4279 #. type: textblock
4280 #: ../src/guestfs.pod:2247
4281 msgid ""
4282 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4283 "functions that return no formal return values."
4284 msgstr ""
4285
4286 #. type: textblock
4287 #: ../src/guestfs.pod:2250
4288 msgid "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4289 msgstr ""
4290
4291 #. type: textblock
4292 #: ../src/guestfs.pod:2253
4293 msgid ""
4294 "In the case of an error, a flag is set in the header, and the reply message "
4295 "is slightly changed:"
4296 msgstr ""
4297
4298 #. type: verbatim
4299 #: ../src/guestfs.pod:2256
4300 #, no-wrap
4301 msgid ""
4302 " total length (header + error,\n"
4303 "      but not including the length word itself)\n"
4304 " struct guestfs_message_header (encoded as XDR)\n"
4305 " struct guestfs_message_error (encoded as XDR)\n"
4306 "\n"
4307 msgstr ""
4308
4309 #. type: textblock
4310 #: ../src/guestfs.pod:2261
4311 msgid ""
4312 "The C<guestfs_message_error> structure contains the error message as a "
4313 "string."
4314 msgstr ""
4315
4316 #. type: =head3
4317 #: ../src/guestfs.pod:2264
4318 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4319 msgstr ""
4320
4321 #. type: textblock
4322 #: ../src/guestfs.pod:2266
4323 msgid ""
4324 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4325 "The normal request message is sent (see above).  However this is followed by "
4326 "a sequence of file chunks."
4327 msgstr ""
4328
4329 #. type: verbatim
4330 #: ../src/guestfs.pod:2270
4331 #, no-wrap
4332 msgid ""
4333 " total length (header + arguments,\n"
4334 "      but not including the length word itself,\n"
4335 "      and not including the chunks)\n"
4336 " struct guestfs_message_header (encoded as XDR)\n"
4337 " struct guestfs_<foo>_args (encoded as XDR)\n"
4338 " sequence of chunks for FileIn param #0\n"
4339 " sequence of chunks for FileIn param #1 etc.\n"
4340 "\n"
4341 msgstr ""
4342
4343 #. type: textblock
4344 #: ../src/guestfs.pod:2278
4345 msgid "The \"sequence of chunks\" is:"
4346 msgstr ""
4347
4348 #. type: verbatim
4349 #: ../src/guestfs.pod:2280
4350 #, no-wrap
4351 msgid ""
4352 " length of chunk (not including length word itself)\n"
4353 " struct guestfs_chunk (encoded as XDR)\n"
4354 " length of chunk\n"
4355 " struct guestfs_chunk (encoded as XDR)\n"
4356 "   ...\n"
4357 " length of chunk\n"
4358 " struct guestfs_chunk (with data.data_len == 0)\n"
4359 "\n"
4360 msgstr ""
4361
4362 #. type: textblock
4363 #: ../src/guestfs.pod:2288
4364 msgid ""
4365 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4366 "is set in the final chunk to indicate either successful completion or early "
4367 "cancellation."
4368 msgstr ""
4369
4370 #. type: textblock
4371 #: ../src/guestfs.pod:2292
4372 msgid ""
4373 "At time of writing there are no functions that have more than one FileIn "
4374 "parameter.  However this is (theoretically) supported, by sending the "
4375 "sequence of chunks for each FileIn parameter one after another (from left to "
4376 "right)."
4377 msgstr ""
4378
4379 #. type: textblock
4380 #: ../src/guestfs.pod:2297
4381 msgid ""
4382 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4383 "transfer.  The library does this by sending a chunk with a special flag set "
4384 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4385 "RPC, does I<not> send any reply, and goes back to reading the next request."
4386 msgstr ""
4387
4388 #. type: textblock
4389 #: ../src/guestfs.pod:2303
4390 msgid ""
4391 "The daemon may also cancel.  It does this by writing a special word "
4392 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4393 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4394 "cancel chunk).  The special word is chosen so that even if cancellation "
4395 "happens right at the end of the transfer (after the library has finished "
4396 "writing and has started listening for the reply), the \"spurious\" cancel "
4397 "flag will not be confused with the reply message."
4398 msgstr ""
4399
4400 #. type: textblock
4401 #: ../src/guestfs.pod:2312
4402 msgid ""
4403 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4404 "limit), and also files where the size is not known in advance (eg. from "
4405 "pipes or sockets).  However the chunks are rather small "
4406 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4407 "to keep much in memory."
4408 msgstr ""
4409
4410 #. type: =head3
4411 #: ../src/guestfs.pod:2318
4412 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4413 msgstr ""
4414
4415 #. type: textblock
4416 #: ../src/guestfs.pod:2320
4417 msgid ""
4418 "The protocol for FileOut parameters is exactly the same as for FileIn "
4419 "parameters, but with the roles of daemon and library reversed."
4420 msgstr ""
4421
4422 #. type: verbatim
4423 #: ../src/guestfs.pod:2323
4424 #, no-wrap
4425 msgid ""
4426 " total length (header + ret,\n"
4427 "      but not including the length word itself,\n"
4428 "      and not including the chunks)\n"
4429 " struct guestfs_message_header (encoded as XDR)\n"
4430 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4431 " sequence of chunks for FileOut param #0\n"
4432 " sequence of chunks for FileOut param #1 etc.\n"
4433 "\n"
4434 msgstr ""
4435
4436 #. type: =head3
4437 #: ../src/guestfs.pod:2331
4438 msgid "INITIAL MESSAGE"
4439 msgstr ""
4440
4441 #. type: textblock
4442 #: ../src/guestfs.pod:2333
4443 msgid ""
4444 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4445 "which indicates that the guest and daemon is alive.  This is what "
4446 "L</guestfs_launch> waits for."
4447 msgstr ""
4448
4449 #. type: =head3
4450 #: ../src/guestfs.pod:2337
4451 msgid "PROGRESS NOTIFICATION MESSAGES"
4452 msgstr ""
4453
4454 #. type: textblock
4455 #: ../src/guestfs.pod:2339
4456 msgid ""
4457 "The daemon may send progress notification messages at any time.  These are "
4458 "distinguished by the normal length word being replaced by "
4459 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4460 msgstr ""
4461
4462 #. type: textblock
4463 #: ../src/guestfs.pod:2343
4464 msgid ""
4465 "The library turns them into progress callbacks (see "
4466 "L</GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards "
4467 "them if not."
4468 msgstr ""
4469
4470 #. type: textblock
4471 #: ../src/guestfs.pod:2347
4472 msgid ""
4473 "The daemon self-limits the frequency of progress messages it sends (see "
4474 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4475 "messages."
4476 msgstr ""
4477
4478 #. type: =head1
4479 #: ../src/guestfs.pod:2351
4480 msgid "LIBGUESTFS VERSION NUMBERS"
4481 msgstr ""
4482
4483 #. type: textblock
4484 #: ../src/guestfs.pod:2353
4485 msgid ""
4486 "Since April 2010, libguestfs has started to make separate development and "
4487 "stable releases, along with corresponding branches in our git repository.  "
4488 "These separate releases can be identified by version number:"
4489 msgstr ""
4490
4491 #. type: verbatim
4492 #: ../src/guestfs.pod:2358
4493 #, no-wrap
4494 msgid ""
4495 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4496 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4497 "       |\n"
4498 "       v\n"
4499 " 1  .  3  .  5\n"
4500 " ^           ^\n"
4501 " |           |\n"
4502 " |           `-------- sub-version\n"
4503 " |\n"
4504 " `------ always '1' because we don't change the ABI\n"
4505 "\n"
4506 msgstr ""
4507
4508 #. type: textblock
4509 #: ../src/guestfs.pod:2369
4510 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4511 msgstr ""
4512
4513 #. type: textblock
4514 #: ../src/guestfs.pod:2371
4515 msgid ""
4516 "As time passes we cherry pick fixes from the development branch and backport "
4517 "those into the stable branch, the effect being that the stable branch should "
4518 "get more stable and less buggy over time.  So the stable releases are ideal "
4519 "for people who don't need new features but would just like the software to "
4520 "work."
4521 msgstr ""
4522
4523 #. type: textblock
4524 #: ../src/guestfs.pod:2377
4525 msgid "Our criteria for backporting changes are:"
4526 msgstr ""
4527
4528 #. type: textblock
4529 #: ../src/guestfs.pod:2383
4530 msgid ""
4531 "Documentation changes which don't affect any code are backported unless the "
4532 "documentation refers to a future feature which is not in stable."
4533 msgstr ""
4534
4535 #. type: textblock
4536 #: ../src/guestfs.pod:2389
4537 msgid ""
4538 "Bug fixes which are not controversial, fix obvious problems, and have been "
4539 "well tested are backported."
4540 msgstr ""
4541
4542 #. type: textblock
4543 #: ../src/guestfs.pod:2394
4544 msgid ""
4545 "Simple rearrangements of code which shouldn't affect how it works get "
4546 "backported.  This is so that the code in the two branches doesn't get too "
4547 "far out of step, allowing us to backport future fixes more easily."
4548 msgstr ""
4549
4550 #. type: textblock
4551 #: ../src/guestfs.pod:2400
4552 msgid ""
4553 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4554 "exceptional case: the new feature is required in order to implement an "
4555 "important bug fix."
4556 msgstr ""
4557
4558 #. type: textblock
4559 #: ../src/guestfs.pod:2406
4560 msgid ""
4561 "A new stable branch starts when we think the new features in development are "
4562 "substantial and compelling enough over the current stable branch to warrant "
4563 "it.  When that happens we create new stable and development versions 1.N.0 "
4564 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4565 "stable at this point, but by backporting fixes from development, that branch "
4566 "will stabilize over time."
4567 msgstr ""
4568
4569 #. type: =head1
4570 #: ../src/guestfs.pod:2414
4571 msgid "EXTENDING LIBGUESTFS"
4572 msgstr ""
4573
4574 #. type: =head2
4575 #: ../src/guestfs.pod:2416
4576 msgid "ADDING A NEW API ACTION"
4577 msgstr ""
4578
4579 #. type: textblock
4580 #: ../src/guestfs.pod:2418
4581 msgid ""
4582 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4583 "documentation) are generated, and this makes it easy to extend the "
4584 "libguestfs API."
4585 msgstr ""
4586
4587 #. type: textblock
4588 #: ../src/guestfs.pod:2422
4589 msgid "To add a new API action there are two changes:"
4590 msgstr ""
4591
4592 #. type: textblock
4593 #: ../src/guestfs.pod:2428
4594 msgid ""
4595 "You need to add a description of the call (name, parameters, return type, "
4596 "tests, documentation) to C<generator/generator_actions.ml>."
4597 msgstr ""
4598
4599 #. type: textblock
4600 #: ../src/guestfs.pod:2431
4601 msgid ""
4602 "There are two sorts of API action, depending on whether the call goes "
4603 "through to the daemon in the appliance, or is serviced entirely by the "
4604 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4605 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4606 "an example of the latter, since a trace flag is maintained in the handle and "
4607 "all tracing is done on the library side."
4608 msgstr ""
4609
4610 #. type: textblock
4611 #: ../src/guestfs.pod:2439
4612 msgid ""
4613 "Most new actions are of the first type, and get added to the "
4614 "C<daemon_functions> list.  Each function has a unique procedure number used "
4615 "in the RPC protocol which is assigned to that action when we publish "
4616 "libguestfs and cannot be reused.  Take the latest procedure number and "
4617 "increment it."
4618 msgstr ""
4619
4620 #. type: textblock
4621 #: ../src/guestfs.pod:2445
4622 msgid ""
4623 "For library-only actions of the second type, add to the "
4624 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4625 "library and do not travel over the RPC mechanism to the daemon, these "
4626 "functions do not need a procedure number, and so the procedure number is set "
4627 "to C<-1>."
4628 msgstr ""
4629
4630 #. type: textblock
4631 #: ../src/guestfs.pod:2453
4632 msgid "Implement the action (in C):"
4633 msgstr ""
4634
4635 #. type: textblock
4636 #: ../src/guestfs.pod:2455
4637 msgid ""
4638 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4639 "C<daemon/> directory."
4640 msgstr ""
4641
4642 #. type: textblock
4643 #: ../src/guestfs.pod:2458
4644 msgid ""
4645 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4646 "(note: double underscore) in the C<src/> directory."
4647 msgstr ""
4648
4649 #. type: textblock
4650 #: ../src/guestfs.pod:2461
4651 msgid "In either case, use another function as an example of what to do."
4652 msgstr ""
4653
4654 #. type: textblock
4655 #: ../src/guestfs.pod:2465
4656 msgid "After making these changes, use C<make> to compile."
4657 msgstr ""
4658
4659 #. type: textblock
4660 #: ../src/guestfs.pod:2467
4661 msgid ""
4662 "Note that you don't need to implement the RPC, language bindings, manual "
4663 "pages or anything else.  It's all automatically generated from the OCaml "
4664 "description."
4665 msgstr ""
4666
4667 #. type: =head2
4668 #: ../src/guestfs.pod:2471
4669 msgid "ADDING TESTS FOR AN API ACTION"
4670 msgstr ""
4671
4672 #. type: textblock
4673 #: ../src/guestfs.pod:2473
4674 msgid ""
4675 "You can supply zero or as many tests as you want per API call.  The tests "
4676 "can either be added as part of the API description "
4677 "(C<generator/generator_actions.ml>), or in some rarer cases you may want to "
4678 "drop a script into C<regressions/>.  Note that adding a script to "
4679 "C<regressions/> is slower, so if possible use the first method."
4680 msgstr ""
4681
4682 #. type: textblock
4683 #: ../src/guestfs.pod:2479
4684 msgid ""
4685 "The following describes the test environment used when you add an API test "
4686 "in C<generator_actions.ml>."
4687 msgstr ""
4688
4689 #. type: textblock
4690 #: ../src/guestfs.pod:2482
4691 msgid "The test environment has 4 block devices:"
4692 msgstr ""
4693
4694 #. type: =item
4695 #: ../src/guestfs.pod:2486
4696 msgid "C</dev/sda> 500MB"
4697 msgstr ""
4698
4699 #. type: textblock
4700 #: ../src/guestfs.pod:2488
4701 msgid "General block device for testing."
4702 msgstr ""
4703
4704 #. type: =item
4705 #: ../src/guestfs.pod:2490
4706 msgid "C</dev/sdb> 50MB"
4707 msgstr ""
4708
4709 #. type: textblock
4710 #: ../src/guestfs.pod:2492
4711 msgid ""
4712 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4713 "operations."
4714 msgstr ""
4715
4716 #. type: =item
4717 #: ../src/guestfs.pod:2495
4718 msgid "C</dev/sdc> 10MB"
4719 msgstr ""
4720
4721 #. type: textblock
4722 #: ../src/guestfs.pod:2497
4723 msgid "Used in a few tests where two block devices are needed."
4724 msgstr ""
4725
4726 #. type: =item
4727 #: ../src/guestfs.pod:2499
4728 msgid "C</dev/sdd>"
4729 msgstr ""
4730
4731 #. type: textblock
4732 #: ../src/guestfs.pod:2501
4733 msgid "ISO with fixed content (see C<images/test.iso>)."
4734 msgstr ""
4735
4736 #. type: textblock
4737 #: ../src/guestfs.pod:2505
4738 msgid ""
4739 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4740 "appliance and block devices are reused between tests.  So don't try testing "
4741 "L</guestfs_kill_subprocess> :-x"
4742 msgstr ""
4743
4744 #. type: textblock
4745 #: ../src/guestfs.pod:2509
4746 msgid ""
4747 "Each test starts with an initial scenario, selected using one of the "
4748 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4749 "initialize the disks mentioned above in a particular way as documented in "
4750 "C<generator_types.ml>.  You should not assume anything about the previous "
4751 "contents of other disks that are not initialized."
4752 msgstr ""
4753
4754 #. type: textblock
4755 #: ../src/guestfs.pod:2515
4756 msgid ""
4757 "You can add a prerequisite clause to any individual test.  This is a "
4758 "run-time check, which, if it fails, causes the test to be skipped.  Useful "
4759 "if testing a command which might not work on all variations of libguestfs "
4760 "builds.  A test that has prerequisite of C<Always> means to run "
4761 "unconditionally."
4762 msgstr ""
4763
4764 #. type: textblock
4765 #: ../src/guestfs.pod:2521
4766 msgid ""
4767 "In addition, packagers can skip individual tests by setting environment "
4768 "variables before running C<make check>."
4769 msgstr ""
4770
4771 #. type: verbatim
4772 #: ../src/guestfs.pod:2524
4773 #, no-wrap
4774 msgid ""
4775 " SKIP_TEST_<CMD>_<NUM>=1\n"
4776 "\n"
4777 msgstr ""
4778
4779 #. type: textblock
4780 #: ../src/guestfs.pod:2526
4781 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4782 msgstr ""
4783
4784 #. type: textblock
4785 #: ../src/guestfs.pod:2528
4786 msgid "or:"
4787 msgstr ""
4788
4789 #. type: verbatim
4790 #: ../src/guestfs.pod:2530
4791 #, no-wrap
4792 msgid ""
4793 " SKIP_TEST_<CMD>=1\n"
4794 "\n"
4795 msgstr ""
4796
4797 #. type: textblock
4798 #: ../src/guestfs.pod:2532
4799 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4800 msgstr ""
4801
4802 #. type: textblock
4803 #: ../src/guestfs.pod:2534
4804 msgid "Packagers can run only certain tests by setting for example:"
4805 msgstr ""
4806
4807 #. type: verbatim
4808 #: ../src/guestfs.pod:2536
4809 #, no-wrap
4810 msgid ""
4811 " TEST_ONLY=\"vfs_type zerofree\"\n"
4812 "\n"
4813 msgstr ""
4814
4815 #. type: textblock
4816 #: ../src/guestfs.pod:2538
4817 msgid ""
4818 "See C<capitests/tests.c> for more details of how these environment variables "
4819 "work."
4820 msgstr ""
4821
4822 #. type: =head2
4823 #: ../src/guestfs.pod:2541
4824 msgid "DEBUGGING NEW API ACTIONS"
4825 msgstr ""
4826
4827 #. type: textblock
4828 #: ../src/guestfs.pod:2543
4829 msgid "Test new actions work before submitting them."
4830 msgstr ""
4831
4832 #. type: textblock
4833 #: ../src/guestfs.pod:2545
4834 msgid "You can use guestfish to try out new commands."
4835 msgstr ""
4836
4837 #. type: textblock
4838 #: ../src/guestfs.pod:2547
4839 msgid ""
4840 "Debugging the daemon is a problem because it runs inside a minimal "
4841 "environment.  However you can fprintf messages in the daemon to stderr, and "
4842 "they will show up if you use C<guestfish -v>."
4843 msgstr ""
4844
4845 #. type: =head2
4846 #: ../src/guestfs.pod:2551
4847 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4848 msgstr ""
4849
4850 #. type: textblock
4851 #: ../src/guestfs.pod:2553
4852 msgid ""
4853 "Our C source code generally adheres to some basic code-formatting "
4854 "conventions.  The existing code base is not totally consistent on this "
4855 "front, but we do prefer that contributed code be formatted similarly.  In "
4856 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4857 "indentation level, and other than that, follow the K&R style."
4858 msgstr ""
4859
4860 #. type: textblock
4861 #: ../src/guestfs.pod:2559
4862 msgid ""
4863 "If you use Emacs, add the following to one of one of your start-up files "
4864 "(e.g., ~/.emacs), to help ensure that you get indentation right:"
4865 msgstr ""
4866
4867 #. type: verbatim
4868 #: ../src/guestfs.pod:2562
4869 #, no-wrap
4870 msgid ""
4871 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4872 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4873 " (add-hook 'find-file-hook\n"
4874 "     '(lambda () (if (and buffer-file-name\n"
4875 "                          (string-match \"/libguestfs\\\\>\"\n"
4876 "                              (buffer-file-name))\n"
4877 "                          (not (string-equal mode-name \"Change Log\"))\n"
4878 "                          (not (string-equal mode-name \"Makefile\")))\n"
4879 "                     (setq indent-tabs-mode nil))))\n"
4880 " \n"
4881 msgstr ""
4882
4883 #. type: verbatim
4884 #: ../src/guestfs.pod:2572
4885 #, no-wrap
4886 msgid ""
4887 " ;;; When editing C sources in libguestfs, use this style.\n"
4888 " (defun libguestfs-c-mode ()\n"
4889 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
4890 "   (interactive)\n"
4891 "   (c-set-style \"K&R\")\n"
4892 "   (setq c-indent-level 2)\n"
4893 "   (setq c-basic-offset 2))\n"
4894 " (add-hook 'c-mode-hook\n"
4895 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
4896 "                               (buffer-file-name))\n"
4897 "                           (libguestfs-c-mode))))\n"
4898 "\n"
4899 msgstr ""
4900
4901 #. type: textblock
4902 #: ../src/guestfs.pod:2584
4903 msgid "Enable warnings when compiling (and fix any problems this finds):"
4904 msgstr ""
4905
4906 #. type: verbatim
4907 #: ../src/guestfs.pod:2587
4908 #, no-wrap
4909 msgid ""
4910 " ./configure --enable-gcc-warnings\n"
4911 "\n"
4912 msgstr ""
4913
4914 #. type: textblock
4915 #: ../src/guestfs.pod:2589
4916 msgid "Useful targets are:"
4917 msgstr ""
4918
4919 #. type: verbatim
4920 #: ../src/guestfs.pod:2591
4921 #, no-wrap
4922 msgid ""
4923 " make syntax-check  # checks the syntax of the C code\n"
4924 " make check         # runs the test suite\n"
4925 "\n"
4926 msgstr ""
4927
4928 #. type: =head2
4929 #: ../src/guestfs.pod:2594
4930 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
4931 msgstr ""
4932
4933 #. type: textblock
4934 #: ../src/guestfs.pod:2596
4935 msgid ""
4936 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
4937 "which are used to do shell quoting."
4938 msgstr ""
4939
4940 #. type: =item
4941 #: ../src/guestfs.pod:2601
4942 msgid "%Q"
4943 msgstr ""
4944
4945 #. type: textblock
4946 #: ../src/guestfs.pod:2603
4947 msgid ""
4948 "Simple shell quoted string.  Any spaces or other shell characters are "
4949 "escaped for you."
4950 msgstr ""
4951
4952 #. type: =item
4953 #: ../src/guestfs.pod:2606
4954 msgid "%R"
4955 msgstr ""
4956
4957 #. type: textblock
4958 #: ../src/guestfs.pod:2608
4959 msgid ""
4960 "Same as C<%Q> except the string is treated as a path which is prefixed by "
4961 "the sysroot."
4962 msgstr ""
4963
4964 #. type: textblock
4965 #: ../src/guestfs.pod:2613 ../fish/guestfish.pod:242 ../fish/guestfish.pod:615
4966 msgid "For example:"
4967 msgstr ""
4968
4969 #. type: verbatim
4970 #: ../src/guestfs.pod:2615
4971 #, no-wrap
4972 msgid ""
4973 " asprintf (&cmd, \"cat %R\", path);\n"
4974 "\n"
4975 msgstr ""
4976
4977 #. type: textblock
4978 #: ../src/guestfs.pod:2617
4979 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
4980 msgstr ""
4981
4982 #. type: textblock
4983 #: ../src/guestfs.pod:2619
4984 msgid ""
4985 "I<Note:> Do I<not> use these when you are passing parameters to the "
4986 "C<command{,r,v,rv}()> functions.  These parameters do NOT need to be quoted "
4987 "because they are not passed via the shell (instead, straight to exec).  You "
4988 "probably want to use the C<sysroot_path()> function however."
4989 msgstr ""
4990
4991 #. type: =head2
4992 #: ../src/guestfs.pod:2625
4993 msgid "SUBMITTING YOUR NEW API ACTIONS"
4994 msgstr ""
4995
4996 #. type: textblock
4997 #: ../src/guestfs.pod:2627
4998 msgid ""
4999 "Submit patches to the mailing list: "
5000 "L<http://www.redhat.com/mailman/listinfo/libguestfs> and CC to "
5001 "L<rjones@redhat.com>."
5002 msgstr ""
5003
5004 #. type: =head2
5005 #: ../src/guestfs.pod:2631
5006 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5007 msgstr ""
5008
5009 #. type: textblock
5010 #: ../src/guestfs.pod:2633
5011 msgid "We support i18n (gettext anyhow) in the library."
5012 msgstr ""
5013
5014 #. type: textblock
5015 #: ../src/guestfs.pod:2635
5016 msgid ""
5017 "However many messages come from the daemon, and we don't translate those at "
5018 "the moment.  One reason is that the appliance generally has all locale files "
5019 "removed from it, because they take up a lot of space.  So we'd have to readd "
5020 "some of those, as well as copying our PO files into the appliance."
5021 msgstr ""
5022
5023 #. type: textblock
5024 #: ../src/guestfs.pod:2641
5025 msgid ""
5026 "Debugging messages are never translated, since they are intended for the "
5027 "programmers."
5028 msgstr ""
5029
5030 #. type: =head2
5031 #: ../src/guestfs.pod:2644
5032 msgid "SOURCE CODE SUBDIRECTORIES"
5033 msgstr ""
5034
5035 #. type: =item
5036 #: ../src/guestfs.pod:2648 ../src/guestfs-actions.pod:5951 ../fish/guestfish-actions.pod:3958
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:1048
5526 msgid "LIBGUESTFS_APPEND"
5527 msgstr ""
5528
5529 #. type: textblock
5530 #: ../src/guestfs.pod:2872 ../fish/guestfish.pod:1050
5531 msgid "Pass additional options to the guest kernel."
5532 msgstr ""
5533
5534 #. type: =item
5535 #: ../src/guestfs.pod:2874 ../fish/guestfish.pod:1052
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:1057
5548 msgid "LIBGUESTFS_MEMSIZE"
5549 msgstr ""
5550
5551 #. type: textblock
5552 #: ../src/guestfs.pod:2881 ../fish/guestfish.pod:1059
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:1062
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:1064
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:1069
5578 msgid "LIBGUESTFS_QEMU"
5579 msgstr ""
5580
5581 #. type: textblock
5582 #: ../src/guestfs.pod:2893 ../fish/guestfish.pod:1071
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:1075
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:1084
5607 msgid "TMPDIR"
5608 msgstr ""
5609
5610 #. type: textblock
5611 #: ../src/guestfs.pod:2906 ../fish/guestfish.pod:1086
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:1089
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:1156 ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:279 ../tools/virt-win-reg.pl:744 ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
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:1180 ../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:1182 ../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:1184 ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:294 ../tools/virt-win-reg.pl:774 ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
5715 msgid "COPYRIGHT"
5716 msgstr ""
5717
5718 #. type: textblock
5719 #: ../src/guestfs.pod:2992 ../fish/guestfish.pod:1186 ../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:3529 ../src/guestfs-actions.pod:3544 ../src/guestfs-actions.pod:3569 ../src/guestfs-actions.pod:3736 ../src/guestfs-actions.pod:3750 ../src/guestfs-actions.pod:3763 ../src/guestfs-actions.pod:3777 ../src/guestfs-actions.pod:3792 ../src/guestfs-actions.pod:3828 ../src/guestfs-actions.pod:3900 ../src/guestfs-actions.pod:3920 ../src/guestfs-actions.pod:3937 ../src/guestfs-actions.pod:3960 ../src/guestfs-actions.pod:3983 ../src/guestfs-actions.pod:4015 ../src/guestfs-actions.pod:4034 ../src/guestfs-actions.pod:4053 ../src/guestfs-actions.pod:4088 ../src/guestfs-actions.pod:4100 ../src/guestfs-actions.pod:4136 ../src/guestfs-actions.pod:4152 ../src/guestfs-actions.pod:4165 ../src/guestfs-actions.pod:4180 ../src/guestfs-actions.pod:4197 ../src/guestfs-actions.pod:4290 ../src/guestfs-actions.pod:4310 ../src/guestfs-actions.pod:4323 ../src/guestfs-actions.pod:4374 ../src/guestfs-actions.pod:4392 ../src/guestfs-actions.pod:4410 ../src/guestfs-actions.pod:4426 ../src/guestfs-actions.pod:4440 ../src/guestfs-actions.pod:4454 ../src/guestfs-actions.pod:4471 ../src/guestfs-actions.pod:4486 ../src/guestfs-actions.pod:4506 ../src/guestfs-actions.pod:4564 ../src/guestfs-actions.pod:4637 ../src/guestfs-actions.pod:4668 ../src/guestfs-actions.pod:4687 ../src/guestfs-actions.pod:4706 ../src/guestfs-actions.pod:4718 ../src/guestfs-actions.pod:4735 ../src/guestfs-actions.pod:4748 ../src/guestfs-actions.pod:4763 ../src/guestfs-actions.pod:4778 ../src/guestfs-actions.pod:4813 ../src/guestfs-actions.pod:4846 ../src/guestfs-actions.pod:4883 ../src/guestfs-actions.pod:4903 ../src/guestfs-actions.pod:4917 ../src/guestfs-actions.pod:4934 ../src/guestfs-actions.pod:4983 ../src/guestfs-actions.pod:5020 ../src/guestfs-actions.pod:5034 ../src/guestfs-actions.pod:5062 ../src/guestfs-actions.pod:5079 ../src/guestfs-actions.pod:5097 ../src/guestfs-actions.pod:5231 ../src/guestfs-actions.pod:5288 ../src/guestfs-actions.pod:5310 ../src/guestfs-actions.pod:5328 ../src/guestfs-actions.pod:5360 ../src/guestfs-actions.pod:5426 ../src/guestfs-actions.pod:5443 ../src/guestfs-actions.pod:5456 ../src/guestfs-actions.pod:5470 ../src/guestfs-actions.pod:5759 ../src/guestfs-actions.pod:5778 ../src/guestfs-actions.pod:5797 ../src/guestfs-actions.pod:5809 ../src/guestfs-actions.pod:5821 ../src/guestfs-actions.pod:5835 ../src/guestfs-actions.pod:5847 ../src/guestfs-actions.pod:5861 ../src/guestfs-actions.pod:5877 ../src/guestfs-actions.pod:5898 ../src/guestfs-actions.pod:5917 ../src/guestfs-actions.pod:5936 ../src/guestfs-actions.pod:5966 ../src/guestfs-actions.pod:5982 ../src/guestfs-actions.pod:6005 ../src/guestfs-actions.pod:6023 ../src/guestfs-actions.pod:6042 ../src/guestfs-actions.pod:6063 ../src/guestfs-actions.pod:6082 ../src/guestfs-actions.pod:6099 ../src/guestfs-actions.pod:6127 ../src/guestfs-actions.pod:6151 ../src/guestfs-actions.pod:6170 ../src/guestfs-actions.pod:6194 ../src/guestfs-actions.pod:6213 ../src/guestfs-actions.pod:6228 ../src/guestfs-actions.pod:6247 ../src/guestfs-actions.pod:6284 ../src/guestfs-actions.pod:6314 ../src/guestfs-actions.pod:6347 ../src/guestfs-actions.pod:6469 ../src/guestfs-actions.pod:6590 ../src/guestfs-actions.pod:6602 ../src/guestfs-actions.pod:6615 ../src/guestfs-actions.pod:6628 ../src/guestfs-actions.pod:6650 ../src/guestfs-actions.pod:6663 ../src/guestfs-actions.pod:6676 ../src/guestfs-actions.pod:6689 ../src/guestfs-actions.pod:6704 ../src/guestfs-actions.pod:6763 ../src/guestfs-actions.pod:6780 ../src/guestfs-actions.pod:6796 ../src/guestfs-actions.pod:6812 ../src/guestfs-actions.pod:6829 ../src/guestfs-actions.pod:6842 ../src/guestfs-actions.pod:6862 ../src/guestfs-actions.pod:6898 ../src/guestfs-actions.pod:6912 ../src/guestfs-actions.pod:6953 ../src/guestfs-actions.pod:6966 ../src/guestfs-actions.pod:6984 ../src/guestfs-actions.pod:7018 ../src/guestfs-actions.pod:7054 ../src/guestfs-actions.pod:7173 ../src/guestfs-actions.pod:7191 ../src/guestfs-actions.pod:7205 ../src/guestfs-actions.pod:7260 ../src/guestfs-actions.pod:7273 ../src/guestfs-actions.pod:7318 ../src/guestfs-actions.pod:7351 ../src/guestfs-actions.pod:7412 ../src/guestfs-actions.pod:7438 ../src/guestfs-actions.pod:7505 ../src/guestfs-actions.pod:7524 ../src/guestfs-actions.pod:7553
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:4511 ../src/guestfs-actions.pod:4818 ../src/guestfs-actions.pod:6292 ../src/guestfs-actions.pod:6322 ../src/guestfs-actions.pod:6355 ../src/guestfs-actions.pod:6414 ../src/guestfs-actions.pod:7356 ../src/guestfs-actions.pod:7446 ../src/guestfs-actions.pod:7616 ../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:3038 ../fish/guestfish-actions.pod:3235 ../fish/guestfish-actions.pod:4220 ../fish/guestfish-actions.pod:4243 ../fish/guestfish-actions.pod:4265 ../fish/guestfish-actions.pod:4303 ../fish/guestfish-actions.pod:4944 ../fish/guestfish-actions.pod:5042
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:3531 ../src/guestfs-actions.pod:3551 ../src/guestfs-actions.pod:4822 ../src/guestfs-actions.pod:5984 ../src/guestfs-actions.pod:6101 ../src/guestfs-actions.pod:6215 ../src/guestfs-actions.pod:6706 ../src/guestfs-actions.pod:6831 ../src/guestfs-actions.pod:7360
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:2750 ../src/guestfs-actions.pod:4525 ../src/guestfs-actions.pod:4832
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:2866 ../src/guestfs-actions.pod:2884 ../src/guestfs-actions.pod:5006 ../src/guestfs-actions.pod:5134 ../src/guestfs-actions.pod:5540 ../src/guestfs-actions.pod:5566 ../src/guestfs-actions.pod:6939 ../src/guestfs-actions.pod:7371 ../src/guestfs-actions.pod:7384 ../src/guestfs-actions.pod:7397
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:2832 ../src/guestfs-actions.pod:2844 ../src/guestfs-actions.pod:4578 ../src/guestfs-actions.pod:4590 ../src/guestfs-actions.pod:4858 ../src/guestfs-actions.pod:4870
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:4536 ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3049
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:5617
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:2528 ../src/guestfs-actions.pod:2618 ../src/guestfs-actions.pod:2720 ../src/guestfs-actions.pod:2737 ../src/guestfs-actions.pod:2949 ../src/guestfs-actions.pod:2977 ../src/guestfs-actions.pod:2998 ../src/guestfs-actions.pod:3032 ../src/guestfs-actions.pod:3089 ../src/guestfs-actions.pod:3109 ../src/guestfs-actions.pod:3127 ../src/guestfs-actions.pod:3722 ../src/guestfs-actions.pod:4072 ../src/guestfs-actions.pod:4242 ../src/guestfs-actions.pod:4352 ../src/guestfs-actions.pod:5152 ../src/guestfs-actions.pod:5345 ../src/guestfs-actions.pod:5515 ../src/guestfs-actions.pod:5693 ../src/guestfs-actions.pod:5742 ../src/guestfs-actions.pod:6375 ../src/guestfs-actions.pod:6391 ../src/guestfs-actions.pod:6408 ../src/guestfs-actions.pod:6439 ../src/guestfs-actions.pod:7113 ../src/guestfs-actions.pod:7132 ../src/guestfs-actions.pod:7150 ../src/guestfs-actions.pod:7330 ../src/guestfs-actions.pod:7610
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:2681 ../src/guestfs-actions.pod:3049 ../src/guestfs-actions.pod:3317 ../src/guestfs-actions.pod:3627 ../src/guestfs-actions.pod:3642 ../src/guestfs-actions.pod:3704 ../src/guestfs-actions.pod:3809 ../src/guestfs-actions.pod:4214 ../src/guestfs-actions.pod:4967 ../src/guestfs-actions.pod:5487 ../src/guestfs-actions.pod:5613 ../src/guestfs-actions.pod:5727 ../src/guestfs-actions.pod:6455 ../src/guestfs-actions.pod:6516 ../src/guestfs-actions.pod:6571 ../src/guestfs-actions.pod:6717 ../src/guestfs-actions.pod:6741 ../src/guestfs-actions.pod:7223 ../src/guestfs-actions.pod:7243 ../src/guestfs-actions.pod:7290 ../src/guestfs-actions.pod:7462 ../src/guestfs-actions.pod:7481 ../src/guestfs-actions.pod:7567 ../src/guestfs-actions.pod:7586 ../src/guestfs-actions.pod:7632 ../src/guestfs-actions.pod:7651
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:3395 ../src/guestfs-actions.pod:3426 ../src/guestfs-actions.pod:4055 ../src/guestfs-actions.pod:4105 ../src/guestfs-actions.pod:4292 ../src/guestfs-actions.pod:4325 ../src/guestfs-actions.pod:4488 ../src/guestfs-actions.pod:4971 ../src/guestfs-actions.pod:5428 ../src/guestfs-actions.pod:5823 ../src/guestfs-actions.pod:5837 ../src/guestfs-actions.pod:5849 ../src/guestfs-actions.pod:6296 ../src/guestfs-actions.pod:6955 ../src/guestfs-actions.pod:6968 ../src/guestfs-actions.pod:7207 ../src/guestfs-actions.pod:7450
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:3144 ../src/guestfs-actions.pod:3158 ../src/guestfs-actions.pod:3174 ../src/guestfs-actions.pod:3334 ../src/guestfs-actions.pod:3348 ../src/guestfs-actions.pod:3363 ../src/guestfs-actions.pod:3377 ../src/guestfs-actions.pod:3393 ../src/guestfs-actions.pod:3408 ../src/guestfs-actions.pod:3424 ../src/guestfs-actions.pod:3438 ../src/guestfs-actions.pod:3451 ../src/guestfs-actions.pod:3465 ../src/guestfs-actions.pod:3480 ../src/guestfs-actions.pod:3495 ../src/guestfs-actions.pod:3508 ../src/guestfs-actions.pod:3520 ../src/guestfs-actions.pod:5116
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:7135
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:5603 ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3717
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:5385 ../src/guestfs-actions.pod:5411 ../src/guestfs-actions.pod:5542 ../src/guestfs-actions.pod:5568 ../src/guestfs-actions.pod:5592 ../src/guestfs-actions.pod:6520 ../src/guestfs-actions.pod:6575 ../src/guestfs-actions.pod:6721 ../src/guestfs-actions.pod:6745 ../src/guestfs-actions.pod:7414 ../src/guestfs-actions.pod:7440 ../src/guestfs-actions.pod:7466 ../src/guestfs-actions.pod:7485 ../src/guestfs-actions.pod:7571 ../src/guestfs-actions.pod:7590 ../src/guestfs-actions.pod:7636 ../src/guestfs-actions.pod:7655 ../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:3587 ../fish/guestfish-actions.pod:3602 ../fish/guestfish-actions.pod:3678 ../fish/guestfish-actions.pod:3695 ../fish/guestfish-actions.pod:3710 ../fish/guestfish-actions.pod:4364 ../fish/guestfish-actions.pod:4410 ../fish/guestfish-actions.pod:4495 ../fish/guestfish-actions.pod:4510 ../fish/guestfish-actions.pod:4920 ../fish/guestfish-actions.pod:4938 ../fish/guestfish-actions.pod:4955 ../fish/guestfish-actions.pod:4965 ../fish/guestfish-actions.pod:5014 ../fish/guestfish-actions.pod:5024 ../fish/guestfish-actions.pod:5053 ../fish/guestfish-actions.pod:5063
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:3646 ../src/guestfs-actions.pod:3708 ../src/guestfs-actions.pod:3725 ../src/guestfs-actions.pod:3813 ../src/guestfs-actions.pod:4218 ../src/guestfs-actions.pod:4232 ../src/guestfs-actions.pod:5491 ../src/guestfs-actions.pod:5505 ../src/guestfs-actions.pod:7294 ../src/guestfs-actions.pod:7308
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:3350 ../src/guestfs-actions.pod:3379 ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:3467 ../src/guestfs-actions.pod:6991
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:5022 ../src/guestfs-actions.pod:5081 ../src/guestfs-actions.pod:5118 ../src/guestfs-actions.pod:5136 ../src/guestfs-actions.pod:5312 ../src/guestfs-actions.pod:6900 ../src/guestfs-actions.pod:6914 ../src/guestfs-actions.pod:7320
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:4469 ../src/guestfs-actions.pod:4666 ../src/guestfs-actions.pod:4685 ../src/guestfs-actions.pod:4704 ../fish/guestfish-actions.pod:681 ../fish/guestfish-actions.pod:3013 ../fish/guestfish-actions.pod:3142 ../fish/guestfish-actions.pod:3152 ../fish/guestfish-actions.pod:3162
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:3565 ../fish/guestfish-actions.pod:689 ../fish/guestfish-actions.pod:2464
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:3546 ../src/guestfs-actions.pod:6986 ../src/guestfs-actions.pod:7020 ../src/guestfs-actions.pod:7507 ../src/guestfs-actions.pod:7526
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:4245 ../src/guestfs-actions.pod:5518 ../src/guestfs-actions.pod:7227 ../src/guestfs-actions.pod:7247 ../src/guestfs-actions.pod:7333
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:4985 ../src/guestfs-actions.pod:5362
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:4355 ../src/guestfs-actions.pod:4885 ../src/guestfs-actions.pod:6724 ../src/guestfs-actions.pod:6748 ../src/guestfs-actions.pod:7373 ../src/guestfs-actions.pod:7386 ../src/guestfs-actions.pod:7399
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:6980 ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4668
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:7025
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:6196
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:3738 ../src/guestfs-actions.pod:3752 ../src/guestfs-actions.pod:3765 ../src/guestfs-actions.pod:3779 ../src/guestfs-actions.pod:4765 ../src/guestfs-actions.pod:5696 ../src/guestfs-actions.pod:5745 ../src/guestfs-actions.pod:6592 ../src/guestfs-actions.pod:6604 ../src/guestfs-actions.pod:6617 ../src/guestfs-actions.pod:6630 ../src/guestfs-actions.pod:6652 ../src/guestfs-actions.pod:6665 ../src/guestfs-actions.pod:6678 ../src/guestfs-actions.pod:6691 ../src/guestfs-actions.pod:7469 ../src/guestfs-actions.pod:7488 ../src/guestfs-actions.pod:7574 ../src/guestfs-actions.pod:7593 ../src/guestfs-actions.pod:7639 ../src/guestfs-actions.pod:7658
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:2531 ../src/guestfs-actions.pod:2621 ../src/guestfs-actions.pod:2685 ../src/guestfs-actions.pod:2868 ../src/guestfs-actions.pod:2886 ../src/guestfs-actions.pod:2926 ../src/guestfs-actions.pod:3001 ../src/guestfs-actions.pod:3092 ../src/guestfs-actions.pod:3321 ../src/guestfs-actions.pod:3453
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:4182 ../src/guestfs-actions.pod:5780
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:7512
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:5458 ../src/guestfs-actions.pod:5938 ../src/guestfs-actions.pod:6359 ../src/guestfs-actions.pod:6378 ../src/guestfs-actions.pod:6394 ../src/guestfs-actions.pod:6418 ../src/guestfs-actions.pod:7175 ../src/guestfs-actions.pod:7193 ../src/guestfs-actions.pod:7555
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:6007
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:6025 ../src/guestfs-actions.pod:6044
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:6060 ../src/guestfs-actions.pod:6167 ../fish/guestfish-actions.pod:1350 ../fish/guestfish-actions.pod:1401 ../fish/guestfish-actions.pod:4043 ../fish/guestfish-actions.pod:4130
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:4473 ../src/guestfs-actions.pod:4670 ../src/guestfs-actions.pod:4689 ../src/guestfs-actions.pod:4708 ../src/guestfs-actions.pod:4720 ../src/guestfs-actions.pod:4737 ../src/guestfs-actions.pod:4750 ../src/guestfs-actions.pod:5683 ../src/guestfs-actions.pod:6065 ../src/guestfs-actions.pod:6326 ../src/guestfs-actions.pod:6941
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:6084
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:6129
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:3571 ../src/guestfs-actions.pod:3880 ../src/guestfs-actions.pod:4280 ../src/guestfs-actions.pod:4312 ../src/guestfs-actions.pod:5388 ../src/guestfs-actions.pod:5731 ../src/guestfs-actions.pod:6153 ../src/guestfs-actions.pod:6844 ../src/guestfs-actions.pod:6864 ../src/guestfs-actions.pod:7056
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:6172 ../src/guestfs-actions.pod:6230
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:3346 ../src/guestfs-actions.pod:3375 ../src/guestfs-actions.pod:3436 ../src/guestfs-actions.pod:3463 ../fish/guestfish-actions.pod:1411 ../fish/guestfish-actions.pod:2331 ../fish/guestfish-actions.pod:2349 ../fish/guestfish-actions.pod:2387 ../fish/guestfish-actions.pod:2403
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:3585
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:3592 ../fish/guestfish-actions.pod:1456 ../fish/guestfish-actions.pod:2483
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:2818 ../src/guestfs-actions.pod:3597 ../src/guestfs-actions.pod:5381 ../src/guestfs-actions.pod:5407 ../src/guestfs-actions.pod:5588
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:3601
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:3613 ../src/guestfs-actions.pod:4276
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:3617 ../src/guestfs-actions.pod:3794 ../src/guestfs-actions.pod:3830 ../src/guestfs-actions.pod:5761 ../src/guestfs-actions.pod:6249 ../src/guestfs-actions.pod:7620
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:6442 ../src/guestfs-actions.pod:6459
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:6739 ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:4508
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:6523 ../src/guestfs-actions.pod:6578
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
9998 msgid ""
9999 "This returns the architecture of the inspected operating system.  The "
10000 "possible return values are listed under C<guestfs_file_architecture>."
10001 msgstr ""
10002
10003 #. type: textblock
10004 #: ../src/guestfs-actions.pod:2523 ../fish/guestfish-actions.pod:1694
10005 msgid ""
10006 "If the architecture could not be determined, then the string C<unknown> is "
10007 "returned."
10008 msgstr ""
10009
10010 #. type: textblock
10011 #: ../src/guestfs-actions.pod:2526 ../src/guestfs-actions.pod:2616 ../src/guestfs-actions.pod:2718 ../src/guestfs-actions.pod:2735 ../src/guestfs-actions.pod:2864 ../src/guestfs-actions.pod:2947 ../src/guestfs-actions.pod:2975 ../src/guestfs-actions.pod:2996 ../src/guestfs-actions.pod:3047 ../src/guestfs-actions.pod:3087 ../src/guestfs-actions.pod:3107 ../src/guestfs-actions.pod:3125 ../src/guestfs-actions.pod:3142 ../src/guestfs-actions.pod:3156 ../src/guestfs-actions.pod:3172 ../src/guestfs-actions.pod:3272 ../src/guestfs-actions.pod:3313 ../fish/guestfish-actions.pod:1697 ../fish/guestfish-actions.pod:1780 ../fish/guestfish-actions.pod:1859 ../fish/guestfish-actions.pod:1871 ../fish/guestfish-actions.pod:1955 ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2037 ../fish/guestfish-actions.pod:2051 ../fish/guestfish-actions.pod:2091 ../fish/guestfish-actions.pod:2123 ../fish/guestfish-actions.pod:2136 ../fish/guestfish-actions.pod:2149 ../fish/guestfish-actions.pod:2159 ../fish/guestfish-actions.pod:2169 ../fish/guestfish-actions.pod:2181 ../fish/guestfish-actions.pod:2277 ../fish/guestfish-actions.pod:2311
10012 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10013 msgstr ""
10014
10015 #. type: =head2
10016 #: ../src/guestfs-actions.pod:2533
10017 msgid "guestfs_inspect_get_distro"
10018 msgstr ""
10019
10020 #. type: verbatim
10021 #: ../src/guestfs-actions.pod:2535
10022 #, no-wrap
10023 msgid ""
10024 " char *\n"
10025 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10026 "                             const char *root);\n"
10027 "\n"
10028 msgstr ""
10029
10030 #. type: textblock
10031 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1703
10032 msgid "This returns the distro (distribution) of the inspected operating system."
10033 msgstr ""
10034
10035 #. type: textblock
10036 #: ../src/guestfs-actions.pod:2542 ../fish/guestfish-actions.pod:1706
10037 msgid "Currently defined distros are:"
10038 msgstr ""
10039
10040 #. type: =item
10041 #: ../src/guestfs-actions.pod:2546 ../fish/guestfish-actions.pod:1710
10042 msgid "\"archlinux\""
10043 msgstr ""
10044
10045 #. type: textblock
10046 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1712
10047 msgid "Arch Linux."
10048 msgstr ""
10049
10050 #. type: =item
10051 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1714
10052 msgid "\"centos\""
10053 msgstr ""
10054
10055 #. type: textblock
10056 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1716
10057 msgid "CentOS."
10058 msgstr ""
10059
10060 #. type: =item
10061 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1718
10062 msgid "\"debian\""
10063 msgstr ""
10064
10065 #. type: textblock
10066 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1720
10067 msgid "Debian."
10068 msgstr ""
10069
10070 #. type: =item
10071 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1722
10072 msgid "\"fedora\""
10073 msgstr ""
10074
10075 #. type: textblock
10076 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1724
10077 msgid "Fedora."
10078 msgstr ""
10079
10080 #. type: =item
10081 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1726
10082 msgid "\"gentoo\""
10083 msgstr ""
10084
10085 #. type: textblock
10086 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1728
10087 msgid "Gentoo."
10088 msgstr ""
10089
10090 #. type: =item
10091 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1730
10092 msgid "\"linuxmint\""
10093 msgstr ""
10094
10095 #. type: textblock
10096 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1732
10097 msgid "Linux Mint."
10098 msgstr ""
10099
10100 #. type: =item
10101 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1734
10102 msgid "\"mandriva\""
10103 msgstr ""
10104
10105 #. type: textblock
10106 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1736
10107 msgid "Mandriva."
10108 msgstr ""
10109
10110 #. type: =item
10111 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1738
10112 msgid "\"meego\""
10113 msgstr ""
10114
10115 #. type: textblock
10116 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1740
10117 msgid "MeeGo."
10118 msgstr ""
10119
10120 #. type: =item
10121 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1742
10122 msgid "\"pardus\""
10123 msgstr ""
10124
10125 #. type: textblock
10126 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1744
10127 msgid "Pardus."
10128 msgstr ""
10129
10130 #. type: =item
10131 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1746
10132 msgid "\"redhat-based\""
10133 msgstr ""
10134
10135 #. type: textblock
10136 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1748
10137 msgid "Some Red Hat-derived distro."
10138 msgstr ""
10139
10140 #. type: =item
10141 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1750
10142 msgid "\"rhel\""
10143 msgstr ""
10144
10145 #. type: textblock
10146 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1752
10147 msgid "Red Hat Enterprise Linux."
10148 msgstr ""
10149
10150 #. type: =item
10151 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1754
10152 msgid "\"scientificlinux\""
10153 msgstr ""
10154
10155 #. type: textblock
10156 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1756
10157 msgid "Scientific Linux."
10158 msgstr ""
10159
10160 #. type: =item
10161 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1758
10162 msgid "\"slackware\""
10163 msgstr ""
10164
10165 #. type: textblock
10166 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1760
10167 msgid "Slackware."
10168 msgstr ""
10169
10170 #. type: =item
10171 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1762
10172 msgid "\"ubuntu\""
10173 msgstr ""
10174
10175 #. type: textblock
10176 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1764
10177 msgid "Ubuntu."
10178 msgstr ""
10179
10180 #. type: =item
10181 #: ../src/guestfs-actions.pod:2602 ../src/guestfs-actions.pod:2709 ../src/guestfs-actions.pod:3078 ../fish/guestfish-actions.pod:1766 ../fish/guestfish-actions.pod:1850 ../fish/guestfish-actions.pod:2114
10182 msgid "\"unknown\""
10183 msgstr ""
10184
10185 #. type: textblock
10186 #: ../src/guestfs-actions.pod:2604 ../fish/guestfish-actions.pod:1768
10187 msgid "The distro could not be determined."
10188 msgstr ""
10189
10190 #. type: =item
10191 #: ../src/guestfs-actions.pod:2606 ../src/guestfs-actions.pod:3070 ../fish/guestfish-actions.pod:1770 ../fish/guestfish-actions.pod:2106
10192 msgid "\"windows\""
10193 msgstr ""
10194
10195 #. type: textblock
10196 #: ../src/guestfs-actions.pod:2608 ../fish/guestfish-actions.pod:1772
10197 msgid ""
10198 "Windows does not have distributions.  This string is returned if the OS type "
10199 "is Windows."
10200 msgstr ""
10201
10202 #. type: textblock
10203 #: ../src/guestfs-actions.pod:2613 ../src/guestfs-actions.pod:2715 ../src/guestfs-actions.pod:3084 ../fish/guestfish-actions.pod:1777 ../fish/guestfish-actions.pod:1856 ../fish/guestfish-actions.pod:2120
10204 msgid ""
10205 "Future versions of libguestfs may return other strings here.  The caller "
10206 "should be prepared to handle any string."
10207 msgstr ""
10208
10209 #. type: =head2
10210 #: ../src/guestfs-actions.pod:2623
10211 msgid "guestfs_inspect_get_drive_mappings"
10212 msgstr ""
10213
10214 #. type: verbatim
10215 #: ../src/guestfs-actions.pod:2625
10216 #, no-wrap
10217 msgid ""
10218 " char **\n"
10219 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10220 "                                     const char *root);\n"
10221 "\n"
10222 msgstr ""
10223
10224 #. type: textblock
10225 #: ../src/guestfs-actions.pod:2629 ../fish/guestfish-actions.pod:1786
10226 msgid ""
10227 "This call is useful for Windows which uses a primitive system of assigning "
10228 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10229 "Windows Registry to find out how disks/partitions are mapped to drive "
10230 "letters, and returns a hash table as in the example below:"
10231 msgstr ""
10232
10233 #. type: verbatim
10234 #: ../src/guestfs-actions.pod:2635 ../fish/guestfish-actions.pod:1792
10235 #, no-wrap
10236 msgid ""
10237 " C      =>     /dev/vda2\n"
10238 " E      =>     /dev/vdb1\n"
10239 " F      =>     /dev/vdc1\n"
10240 "\n"
10241 msgstr ""
10242
10243 #. type: textblock
10244 #: ../src/guestfs-actions.pod:2639 ../fish/guestfish-actions.pod:1796
10245 msgid ""
10246 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10247 "and just contains the drive letter, without the customary colon separator "
10248 "character."
10249 msgstr ""
10250
10251 #. type: textblock
10252 #: ../src/guestfs-actions.pod:2643 ../fish/guestfish-actions.pod:1800
10253 msgid ""
10254 "In future we may support other operating systems that also used drive "
10255 "letters, but the keys for those might not be case insensitive and might be "
10256 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10257 "C<h1> etc."
10258 msgstr ""
10259
10260 #. type: textblock
10261 #: ../src/guestfs-actions.pod:2648 ../fish/guestfish-actions.pod:1805
10262 msgid ""
10263 "For Windows guests, currently only hard drive mappings are returned.  "
10264 "Removable disks (eg. DVD-ROMs) are ignored."
10265 msgstr ""
10266
10267 #. type: textblock
10268 #: ../src/guestfs-actions.pod:2651 ../fish/guestfish-actions.pod:1808
10269 msgid ""
10270 "For guests that do not use drive mappings, or if the drive mappings could "
10271 "not be determined, this returns an empty hash table."
10272 msgstr ""
10273
10274 #. type: textblock
10275 #: ../src/guestfs-actions.pod:2654
10276 msgid ""
10277 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10278 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10279 msgstr ""
10280
10281 #. type: textblock
10282 #: ../src/guestfs-actions.pod:2658 ../src/guestfs-actions.pod:2920 ../src/guestfs-actions.pod:3682 ../src/guestfs-actions.pod:4947 ../src/guestfs-actions.pod:6880
10283 msgid ""
10284 "This function returns a NULL-terminated array of strings, or NULL if there "
10285 "was an error.  The array of strings will always have length C<2n+1>, where "
10286 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10287 "caller must free the strings and the array after use>."
10288 msgstr ""
10289
10290 #. type: =head2
10291 #: ../src/guestfs-actions.pod:2664
10292 msgid "guestfs_inspect_get_filesystems"
10293 msgstr ""
10294
10295 #. type: verbatim
10296 #: ../src/guestfs-actions.pod:2666
10297 #, no-wrap
10298 msgid ""
10299 " char **\n"
10300 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10301 "                                  const char *root);\n"
10302 "\n"
10303 msgstr ""
10304
10305 #. type: textblock
10306 #: ../src/guestfs-actions.pod:2670 ../fish/guestfish-actions.pod:1819
10307 msgid ""
10308 "This returns a list of all the filesystems that we think are associated with "
10309 "this operating system.  This includes the root filesystem, other ordinary "
10310 "filesystems, and non-mounted devices like swap partitions."
10311 msgstr ""
10312
10313 #. type: textblock
10314 #: ../src/guestfs-actions.pod:2675 ../fish/guestfish-actions.pod:1824
10315 msgid ""
10316 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10317 "to be shared between operating systems."
10318 msgstr ""
10319
10320 #. type: textblock
10321 #: ../src/guestfs-actions.pod:2678
10322 msgid ""
10323 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10324 "C<guestfs_inspect_get_mountpoints>."
10325 msgstr ""
10326
10327 #. type: =head2
10328 #: ../src/guestfs-actions.pod:2687
10329 msgid "guestfs_inspect_get_format"
10330 msgstr ""
10331
10332 #. type: verbatim
10333 #: ../src/guestfs-actions.pod:2689
10334 #, no-wrap
10335 msgid ""
10336 " char *\n"
10337 " guestfs_inspect_get_format (guestfs_h *g,\n"
10338 "                             const char *root);\n"
10339 "\n"
10340 msgstr ""
10341
10342 #. type: textblock
10343 #: ../src/guestfs-actions.pod:2693 ../fish/guestfish-actions.pod:1834
10344 msgid ""
10345 "This returns the format of the inspected operating system.  You can use it "
10346 "to detect install images, live CDs and similar."
10347 msgstr ""
10348
10349 #. type: textblock
10350 #: ../src/guestfs-actions.pod:2696 ../fish/guestfish-actions.pod:1837
10351 msgid "Currently defined formats are:"
10352 msgstr ""
10353
10354 #. type: =item
10355 #: ../src/guestfs-actions.pod:2700 ../fish/guestfish-actions.pod:1841
10356 msgid "\"installed\""
10357 msgstr ""
10358
10359 #. type: textblock
10360 #: ../src/guestfs-actions.pod:2702 ../fish/guestfish-actions.pod:1843
10361 msgid "This is an installed operating system."
10362 msgstr ""
10363
10364 #. type: =item
10365 #: ../src/guestfs-actions.pod:2704 ../fish/guestfish-actions.pod:1845
10366 msgid "\"installer\""
10367 msgstr ""
10368
10369 #. type: textblock
10370 #: ../src/guestfs-actions.pod:2706 ../fish/guestfish-actions.pod:1847
10371 msgid ""
10372 "The disk image being inspected is not an installed operating system, but a "
10373 "I<bootable> install disk, live CD, or similar."
10374 msgstr ""
10375
10376 #. type: textblock
10377 #: ../src/guestfs-actions.pod:2711 ../fish/guestfish-actions.pod:1852
10378 msgid "The format of this disk image is not known."
10379 msgstr ""
10380
10381 #. type: =head2
10382 #: ../src/guestfs-actions.pod:2723
10383 msgid "guestfs_inspect_get_hostname"
10384 msgstr ""
10385
10386 #. type: verbatim
10387 #: ../src/guestfs-actions.pod:2725
10388 #, no-wrap
10389 msgid ""
10390 " char *\n"
10391 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10392 "                               const char *root);\n"
10393 "\n"
10394 msgstr ""
10395
10396 #. type: textblock
10397 #: ../src/guestfs-actions.pod:2729 ../fish/guestfish-actions.pod:1865
10398 msgid ""
10399 "This function returns the hostname of the operating system as found by "
10400 "inspection of the guest's configuration files."
10401 msgstr ""
10402
10403 #. type: textblock
10404 #: ../src/guestfs-actions.pod:2732 ../fish/guestfish-actions.pod:1868
10405 msgid ""
10406 "If the hostname could not be determined, then the string C<unknown> is "
10407 "returned."
10408 msgstr ""
10409
10410 #. type: textblock
10411 #: ../src/guestfs-actions.pod:2740
10412 msgid "(Added in 1.7.9)"
10413 msgstr ""
10414
10415 #. type: =head2
10416 #: ../src/guestfs-actions.pod:2742
10417 msgid "guestfs_inspect_get_icon"
10418 msgstr ""
10419
10420 #. type: verbatim
10421 #: ../src/guestfs-actions.pod:2744
10422 #, no-wrap
10423 msgid ""
10424 " char *\n"
10425 " guestfs_inspect_get_icon (guestfs_h *g,\n"
10426 "                           const char *root,\n"
10427 "                           size_t *size_r,\n"
10428 "                           ...);\n"
10429 "\n"
10430 msgstr ""
10431
10432 #. type: verbatim
10433 #: ../src/guestfs-actions.pod:2755
10434 #, no-wrap
10435 msgid ""
10436 " GUESTFS_INSPECT_GET_ICON_FAVICON, int favicon,\n"
10437 " GUESTFS_INSPECT_GET_ICON_HIGHQUALITY, int highquality,\n"
10438 "\n"
10439 msgstr ""
10440
10441 #. type: textblock
10442 #: ../src/guestfs-actions.pod:2758 ../fish/guestfish-actions.pod:1877
10443 msgid ""
10444 "This function returns an icon corresponding to the inspected operating "
10445 "system.  The icon is returned as a buffer containing a PNG image (re-encoded "
10446 "to PNG if necessary)."
10447 msgstr ""
10448
10449 #. type: textblock
10450 #: ../src/guestfs-actions.pod:2762 ../fish/guestfish-actions.pod:1881
10451 msgid ""
10452 "If it was not possible to get an icon this function returns a zero-length "
10453 "(non-NULL) buffer.  I<Callers must check for this case>."
10454 msgstr ""
10455
10456 #. type: textblock
10457 #: ../src/guestfs-actions.pod:2765 ../fish/guestfish-actions.pod:1884
10458 msgid ""
10459 "Libguestfs will start by looking for a file called C</etc/favicon.png> or "
10460 "C<C:\\etc\\favicon.png> and if it has the correct format, the contents of "
10461 "this file will be returned.  You can disable favicons by passing the "
10462 "optional C<favicon> boolean as false (default is true)."
10463 msgstr ""
10464
10465 #. type: textblock
10466 #: ../src/guestfs-actions.pod:2771 ../fish/guestfish-actions.pod:1890
10467 msgid ""
10468 "If finding the favicon fails, then we look in other places in the guest for "
10469 "a suitable icon."
10470 msgstr ""
10471
10472 #. type: textblock
10473 #: ../src/guestfs-actions.pod:2774 ../fish/guestfish-actions.pod:1893
10474 msgid ""
10475 "If the optional C<highquality> boolean is true then only high quality icons "
10476 "are returned, which means only icons of high resolution with an alpha "
10477 "channel.  The default (false) is to return any icon we can, even if it is of "
10478 "substandard quality."
10479 msgstr ""
10480
10481 #. type: textblock
10482 #: ../src/guestfs-actions.pod:2785 ../fish/guestfish-actions.pod:1904
10483 msgid ""
10484 "Unlike most other inspection API calls, the guest's disks must be mounted up "
10485 "before you call this, since it needs to read information from the guest "
10486 "filesystem during the call."
10487 msgstr ""
10488
10489 #. type: textblock
10490 #: ../src/guestfs-actions.pod:2791 ../fish/guestfish-actions.pod:1910
10491 msgid ""
10492 "B<Security:> The icon data comes from the untrusted guest, and should be "
10493 "treated with caution.  PNG files have been known to contain exploits.  "
10494 "Ensure that libpng (or other relevant libraries) are fully up to date before "
10495 "trying to process or display the icon."
10496 msgstr ""
10497
10498 #. type: textblock
10499 #: ../src/guestfs-actions.pod:2799 ../fish/guestfish-actions.pod:1918
10500 msgid ""
10501 "The PNG image returned can be any size.  It might not be square.  Libguestfs "
10502 "tries to return the largest, highest quality icon available.  The "
10503 "application must scale the icon to the required size."
10504 msgstr ""
10505
10506 #. type: textblock
10507 #: ../src/guestfs-actions.pod:2806 ../fish/guestfish-actions.pod:1925
10508 msgid ""
10509 "Extracting icons from Windows guests requires the external C<wrestool> "
10510 "program from the C<icoutils> package, and several programs (C<bmptopnm>, "
10511 "C<pnmtopng>, C<pamcut>)  from the C<netpbm> package.  These must be "
10512 "installed separately."
10513 msgstr ""
10514
10515 #. type: textblock
10516 #: ../src/guestfs-actions.pod:2813 ../fish/guestfish-actions.pod:1932
10517 msgid ""
10518 "Operating system icons are usually trademarks.  Seek legal advice before "
10519 "using trademarks in applications."
10520 msgstr ""
10521
10522 #. type: =head2
10523 #: ../src/guestfs-actions.pod:2822
10524 msgid "guestfs_inspect_get_icon_va"
10525 msgstr ""
10526
10527 #. type: verbatim
10528 #: ../src/guestfs-actions.pod:2824
10529 #, no-wrap
10530 msgid ""
10531 " char *\n"
10532 " guestfs_inspect_get_icon_va (guestfs_h *g,\n"
10533 "                              const char *root,\n"
10534 "                              size_t *size_r,\n"
10535 "                              va_list args);\n"
10536 "\n"
10537 msgstr ""
10538
10539 #. type: textblock
10540 #: ../src/guestfs-actions.pod:2830
10541 msgid "This is the \"va_list variant\" of L</guestfs_inspect_get_icon>."
10542 msgstr ""
10543
10544 #. type: =head2
10545 #: ../src/guestfs-actions.pod:2834
10546 msgid "guestfs_inspect_get_icon_argv"
10547 msgstr ""
10548
10549 #. type: verbatim
10550 #: ../src/guestfs-actions.pod:2836
10551 #, no-wrap
10552 msgid ""
10553 " char *\n"
10554 " guestfs_inspect_get_icon_argv (guestfs_h *g,\n"
10555 "                                const char *root,\n"
10556 "                                size_t *size_r,\n"
10557 "                                const struct guestfs_inspect_get_icon_argv "
10558 "*optargs);\n"
10559 "\n"
10560 msgstr ""
10561
10562 #. type: textblock
10563 #: ../src/guestfs-actions.pod:2842
10564 msgid "This is the \"argv variant\" of L</guestfs_inspect_get_icon>."
10565 msgstr ""
10566
10567 #. type: =head2
10568 #: ../src/guestfs-actions.pod:2846
10569 msgid "guestfs_inspect_get_major_version"
10570 msgstr ""
10571
10572 #. type: verbatim
10573 #: ../src/guestfs-actions.pod:2848
10574 #, no-wrap
10575 msgid ""
10576 " int\n"
10577 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10578 "                                    const char *root);\n"
10579 "\n"
10580 msgstr ""
10581
10582 #. type: textblock
10583 #: ../src/guestfs-actions.pod:2852 ../fish/guestfish-actions.pod:1943
10584 msgid "This returns the major version number of the inspected operating system."
10585 msgstr ""
10586
10587 #. type: textblock
10588 #: ../src/guestfs-actions.pod:2855 ../fish/guestfish-actions.pod:1946
10589 msgid ""
10590 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10591 "popular public names used by the operating system.  Notably the operating "
10592 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10593 "1).  You can find out the real versions corresponding to releases of Windows "
10594 "by consulting Wikipedia or MSDN."
10595 msgstr ""
10596
10597 #. type: textblock
10598 #: ../src/guestfs-actions.pod:2862 ../src/guestfs-actions.pod:2879 ../fish/guestfish-actions.pod:1953 ../fish/guestfish-actions.pod:1964
10599 msgid "If the version could not be determined, then C<0> is returned."
10600 msgstr ""
10601
10602 #. type: =head2
10603 #: ../src/guestfs-actions.pod:2870
10604 msgid "guestfs_inspect_get_minor_version"
10605 msgstr ""
10606
10607 #. type: verbatim
10608 #: ../src/guestfs-actions.pod:2872
10609 #, no-wrap
10610 msgid ""
10611 " int\n"
10612 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
10613 "                                    const char *root);\n"
10614 "\n"
10615 msgstr ""
10616
10617 #. type: textblock
10618 #: ../src/guestfs-actions.pod:2876 ../fish/guestfish-actions.pod:1961
10619 msgid "This returns the minor version number of the inspected operating system."
10620 msgstr ""
10621
10622 #. type: textblock
10623 #: ../src/guestfs-actions.pod:2881
10624 msgid ""
10625 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10626 "C<guestfs_inspect_get_major_version>."
10627 msgstr ""
10628
10629 #. type: =head2
10630 #: ../src/guestfs-actions.pod:2888
10631 msgid "guestfs_inspect_get_mountpoints"
10632 msgstr ""
10633
10634 #. type: verbatim
10635 #: ../src/guestfs-actions.pod:2890
10636 #, no-wrap
10637 msgid ""
10638 " char **\n"
10639 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
10640 "                                  const char *root);\n"
10641 "\n"
10642 msgstr ""
10643
10644 #. type: textblock
10645 #: ../src/guestfs-actions.pod:2894 ../fish/guestfish-actions.pod:1973
10646 msgid ""
10647 "This returns a hash of where we think the filesystems associated with this "
10648 "operating system should be mounted.  Callers should note that this is at "
10649 "best an educated guess made by reading configuration files such as "
10650 "C</etc/fstab>.  I<In particular note> that this may return filesystems which "
10651 "are non-existent or not mountable and callers should be prepared to handle "
10652 "or ignore failures if they try to mount them."
10653 msgstr ""
10654
10655 #. type: textblock
10656 #: ../src/guestfs-actions.pod:2903 ../fish/guestfish-actions.pod:1982
10657 msgid ""
10658 "Each element in the returned hashtable has a key which is the path of the "
10659 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
10660 "mounted there (eg. C</dev/sda1>)."
10661 msgstr ""
10662
10663 #. type: textblock
10664 #: ../src/guestfs-actions.pod:2908 ../fish/guestfish-actions.pod:1987
10665 msgid "Non-mounted devices such as swap devices are I<not> returned in this list."
10666 msgstr ""
10667
10668 #. type: textblock
10669 #: ../src/guestfs-actions.pod:2911
10670 msgid ""
10671 "For operating systems like Windows which still use drive letters, this call "
10672 "will only return an entry for the first drive \"mounted on\" C</>.  For "
10673 "information about the mapping of drive letters to partitions, see "
10674 "C<guestfs_inspect_get_drive_mappings>."
10675 msgstr ""
10676
10677 #. type: textblock
10678 #: ../src/guestfs-actions.pod:2917
10679 msgid ""
10680 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10681 "C<guestfs_inspect_get_filesystems>."
10682 msgstr ""
10683
10684 #. type: =head2
10685 #: ../src/guestfs-actions.pod:2928
10686 msgid "guestfs_inspect_get_package_format"
10687 msgstr ""
10688
10689 #. type: verbatim
10690 #: ../src/guestfs-actions.pod:2930
10691 #, no-wrap
10692 msgid ""
10693 " char *\n"
10694 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
10695 "                                     const char *root);\n"
10696 "\n"
10697 msgstr ""
10698
10699 #. type: textblock
10700 #: ../src/guestfs-actions.pod:2934
10701 msgid ""
10702 "This function and C<guestfs_inspect_get_package_management> return the "
10703 "package format and package management tool used by the inspected operating "
10704 "system.  For example for Fedora these functions would return C<rpm> (package "
10705 "format) and C<yum> (package management)."
10706 msgstr ""
10707
10708 #. type: textblock
10709 #: ../src/guestfs-actions.pod:2940 ../fish/guestfish-actions.pod:2009
10710 msgid ""
10711 "This returns the string C<unknown> if we could not determine the package "
10712 "format I<or> if the operating system does not have a real packaging system "
10713 "(eg. Windows)."
10714 msgstr ""
10715
10716 #. type: textblock
10717 #: ../src/guestfs-actions.pod:2944 ../fish/guestfish-actions.pod:2013
10718 msgid ""
10719 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
10720 "Future versions of libguestfs may return other strings."
10721 msgstr ""
10722
10723 #. type: textblock
10724 #: ../src/guestfs-actions.pod:2952 ../src/guestfs-actions.pod:2980
10725 msgid "(Added in 1.7.5)"
10726 msgstr ""
10727
10728 #. type: =head2
10729 #: ../src/guestfs-actions.pod:2954
10730 msgid "guestfs_inspect_get_package_management"
10731 msgstr ""
10732
10733 #. type: verbatim
10734 #: ../src/guestfs-actions.pod:2956
10735 #, no-wrap
10736 msgid ""
10737 " char *\n"
10738 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
10739 "                                         const char *root);\n"
10740 "\n"
10741 msgstr ""
10742
10743 #. type: textblock
10744 #: ../src/guestfs-actions.pod:2960
10745 msgid ""
10746 "C<guestfs_inspect_get_package_format> and this function return the package "
10747 "format and package management tool used by the inspected operating system.  "
10748 "For example for Fedora these functions would return C<rpm> (package format) "
10749 "and C<yum> (package management)."
10750 msgstr ""
10751
10752 #. type: textblock
10753 #: ../src/guestfs-actions.pod:2966 ../fish/guestfish-actions.pod:2028
10754 msgid ""
10755 "This returns the string C<unknown> if we could not determine the package "
10756 "management tool I<or> if the operating system does not have a real packaging "
10757 "system (eg. Windows)."
10758 msgstr ""
10759
10760 #. type: textblock
10761 #: ../src/guestfs-actions.pod:2970 ../fish/guestfish-actions.pod:2032
10762 msgid ""
10763 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
10764 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
10765 "libguestfs may return other strings."
10766 msgstr ""
10767
10768 #. type: =head2
10769 #: ../src/guestfs-actions.pod:2982
10770 msgid "guestfs_inspect_get_product_name"
10771 msgstr ""
10772
10773 #. type: verbatim
10774 #: ../src/guestfs-actions.pod:2984
10775 #, no-wrap
10776 msgid ""
10777 " char *\n"
10778 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
10779 "                                   const char *root);\n"
10780 "\n"
10781 msgstr ""
10782
10783 #. type: textblock
10784 #: ../src/guestfs-actions.pod:2988 ../fish/guestfish-actions.pod:2043
10785 msgid ""
10786 "This returns the product name of the inspected operating system.  The "
10787 "product name is generally some freeform string which can be displayed to the "
10788 "user, but should not be parsed by programs."
10789 msgstr ""
10790
10791 #. type: textblock
10792 #: ../src/guestfs-actions.pod:2993 ../fish/guestfish-actions.pod:2048
10793 msgid ""
10794 "If the product name could not be determined, then the string C<unknown> is "
10795 "returned."
10796 msgstr ""
10797
10798 #. type: =head2
10799 #: ../src/guestfs-actions.pod:3003
10800 msgid "guestfs_inspect_get_product_variant"
10801 msgstr ""
10802
10803 #. type: verbatim
10804 #: ../src/guestfs-actions.pod:3005
10805 #, no-wrap
10806 msgid ""
10807 " char *\n"
10808 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
10809 "                                      const char *root);\n"
10810 "\n"
10811 msgstr ""
10812
10813 #. type: textblock
10814 #: ../src/guestfs-actions.pod:3009 ../fish/guestfish-actions.pod:2057
10815 msgid "This returns the product variant of the inspected operating system."
10816 msgstr ""
10817
10818 #. type: textblock
10819 #: ../src/guestfs-actions.pod:3012 ../fish/guestfish-actions.pod:2060
10820 msgid ""
10821 "For Windows guests, this returns the contents of the Registry key "
10822 "C<HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> "
10823 "which is usually a string such as C<Client> or C<Server> (other values are "
10824 "possible).  This can be used to distinguish consumer and enterprise versions "
10825 "of Windows that have the same version number (for example, Windows 7 and "
10826 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
10827 "the latter is C<Server>)."
10828 msgstr ""
10829
10830 #. type: textblock
10831 #: ../src/guestfs-actions.pod:3021 ../fish/guestfish-actions.pod:2069
10832 msgid ""
10833 "For enterprise Linux guests, in future we intend this to return the product "
10834 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
10835 "implemented at present."
10836 msgstr ""
10837
10838 #. type: textblock
10839 #: ../src/guestfs-actions.pod:3025 ../fish/guestfish-actions.pod:2073
10840 msgid ""
10841 "If the product variant could not be determined, then the string C<unknown> "
10842 "is returned."
10843 msgstr ""
10844
10845 #. type: textblock
10846 #: ../src/guestfs-actions.pod:3028
10847 msgid ""
10848 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10849 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
10850 msgstr ""
10851
10852 #. type: =head2
10853 #: ../src/guestfs-actions.pod:3035
10854 msgid "guestfs_inspect_get_roots"
10855 msgstr ""
10856
10857 #. type: verbatim
10858 #: ../src/guestfs-actions.pod:3037
10859 #, no-wrap
10860 msgid ""
10861 " char **\n"
10862 " guestfs_inspect_get_roots (guestfs_h *g);\n"
10863 "\n"
10864 msgstr ""
10865
10866 #. type: textblock
10867 #: ../src/guestfs-actions.pod:3040
10868 msgid ""
10869 "This function is a convenient way to get the list of root devices, as "
10870 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
10871 "the whole inspection process."
10872 msgstr ""
10873
10874 #. type: textblock
10875 #: ../src/guestfs-actions.pod:3044
10876 msgid ""
10877 "This returns an empty list if either no root devices were found or the "
10878 "caller has not called C<guestfs_inspect_os>."
10879 msgstr ""
10880
10881 #. type: textblock
10882 #: ../src/guestfs-actions.pod:3053
10883 msgid "(Added in 1.7.3)"
10884 msgstr ""
10885
10886 #. type: =head2
10887 #: ../src/guestfs-actions.pod:3055
10888 msgid "guestfs_inspect_get_type"
10889 msgstr ""
10890
10891 #. type: verbatim
10892 #: ../src/guestfs-actions.pod:3057
10893 #, no-wrap
10894 msgid ""
10895 " char *\n"
10896 " guestfs_inspect_get_type (guestfs_h *g,\n"
10897 "                           const char *root);\n"
10898 "\n"
10899 msgstr ""
10900
10901 #. type: textblock
10902 #: ../src/guestfs-actions.pod:3061 ../fish/guestfish-actions.pod:2097
10903 msgid ""
10904 "This returns the type of the inspected operating system.  Currently defined "
10905 "types are:"
10906 msgstr ""
10907
10908 #. type: =item
10909 #: ../src/guestfs-actions.pod:3066 ../fish/guestfish-actions.pod:2102
10910 msgid "\"linux\""
10911 msgstr ""
10912
10913 #. type: textblock
10914 #: ../src/guestfs-actions.pod:3068 ../fish/guestfish-actions.pod:2104
10915 msgid "Any Linux-based operating system."
10916 msgstr ""
10917
10918 #. type: textblock
10919 #: ../src/guestfs-actions.pod:3072 ../fish/guestfish-actions.pod:2108
10920 msgid "Any Microsoft Windows operating system."
10921 msgstr ""
10922
10923 #. type: =item
10924 #: ../src/guestfs-actions.pod:3074 ../fish/guestfish-actions.pod:2110
10925 msgid "\"freebsd\""
10926 msgstr ""
10927
10928 #. type: textblock
10929 #: ../src/guestfs-actions.pod:3076 ../fish/guestfish-actions.pod:2112
10930 msgid "FreeBSD."
10931 msgstr ""
10932
10933 #. type: textblock
10934 #: ../src/guestfs-actions.pod:3080 ../fish/guestfish-actions.pod:2116
10935 msgid "The operating system type could not be determined."
10936 msgstr ""
10937
10938 #. type: =head2
10939 #: ../src/guestfs-actions.pod:3094
10940 msgid "guestfs_inspect_get_windows_current_control_set"
10941 msgstr ""
10942
10943 #. type: verbatim
10944 #: ../src/guestfs-actions.pod:3096
10945 #, no-wrap
10946 msgid ""
10947 " char *\n"
10948 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
10949 "                                                  const char *root);\n"
10950 "\n"
10951 msgstr ""
10952
10953 #. type: textblock
10954 #: ../src/guestfs-actions.pod:3100 ../fish/guestfish-actions.pod:2129
10955 msgid ""
10956 "This returns the Windows CurrentControlSet of the inspected guest.  The "
10957 "CurrentControlSet is a registry key name such as C<ControlSet001>."
10958 msgstr ""
10959
10960 #. type: textblock
10961 #: ../src/guestfs-actions.pod:3103 ../fish/guestfish-actions.pod:2132
10962 msgid ""
10963 "This call assumes that the guest is Windows and that the Registry could be "
10964 "examined by inspection.  If this is not the case then an error is returned."
10965 msgstr ""
10966
10967 #. type: =head2
10968 #: ../src/guestfs-actions.pod:3112
10969 msgid "guestfs_inspect_get_windows_systemroot"
10970 msgstr ""
10971
10972 #. type: verbatim
10973 #: ../src/guestfs-actions.pod:3114
10974 #, no-wrap
10975 msgid ""
10976 " char *\n"
10977 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
10978 "                                         const char *root);\n"
10979 "\n"
10980 msgstr ""
10981
10982 #. type: textblock
10983 #: ../src/guestfs-actions.pod:3118 ../fish/guestfish-actions.pod:2142
10984 msgid ""
10985 "This returns the Windows systemroot of the inspected guest.  The systemroot "
10986 "is a directory path such as C</WINDOWS>."
10987 msgstr ""
10988
10989 #. type: textblock
10990 #: ../src/guestfs-actions.pod:3121 ../fish/guestfish-actions.pod:2145
10991 msgid ""
10992 "This call assumes that the guest is Windows and that the systemroot could be "
10993 "determined by inspection.  If this is not the case then an error is "
10994 "returned."
10995 msgstr ""
10996
10997 #. type: textblock
10998 #: ../src/guestfs-actions.pod:3130
10999 msgid "(Added in 1.5.25)"
11000 msgstr ""
11001
11002 #. type: =head2
11003 #: ../src/guestfs-actions.pod:3132
11004 msgid "guestfs_inspect_is_live"
11005 msgstr ""
11006
11007 #. type: verbatim
11008 #: ../src/guestfs-actions.pod:3134
11009 #, no-wrap
11010 msgid ""
11011 " int\n"
11012 " guestfs_inspect_is_live (guestfs_h *g,\n"
11013 "                          const char *root);\n"
11014 "\n"
11015 msgstr ""
11016
11017 #. type: textblock
11018 #: ../src/guestfs-actions.pod:3138
11019 msgid ""
11020 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11021 "disk), then this returns true if a live image was detected on the disk."
11022 msgstr ""
11023
11024 #. type: =head2
11025 #: ../src/guestfs-actions.pod:3146
11026 msgid "guestfs_inspect_is_multipart"
11027 msgstr ""
11028
11029 #. type: verbatim
11030 #: ../src/guestfs-actions.pod:3148
11031 #, no-wrap
11032 msgid ""
11033 " int\n"
11034 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11035 "                               const char *root);\n"
11036 "\n"
11037 msgstr ""
11038
11039 #. type: textblock
11040 #: ../src/guestfs-actions.pod:3152
11041 msgid ""
11042 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11043 "disk), then this returns true if the disk is part of a set."
11044 msgstr ""
11045
11046 #. type: =head2
11047 #: ../src/guestfs-actions.pod:3160
11048 msgid "guestfs_inspect_is_netinst"
11049 msgstr ""
11050
11051 #. type: verbatim
11052 #: ../src/guestfs-actions.pod:3162
11053 #, no-wrap
11054 msgid ""
11055 " int\n"
11056 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11057 "                             const char *root);\n"
11058 "\n"
11059 msgstr ""
11060
11061 #. type: textblock
11062 #: ../src/guestfs-actions.pod:3166
11063 msgid ""
11064 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11065 "disk), then this returns true if the disk is a network installer, ie. not a "
11066 "self-contained install CD but one which is likely to require network access "
11067 "to complete the install."
11068 msgstr ""
11069
11070 #. type: =head2
11071 #: ../src/guestfs-actions.pod:3176
11072 msgid "guestfs_inspect_list_applications"
11073 msgstr ""
11074
11075 #. type: verbatim
11076 #: ../src/guestfs-actions.pod:3178
11077 #, no-wrap
11078 msgid ""
11079 " struct guestfs_application_list *\n"
11080 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11081 "                                    const char *root);\n"
11082 "\n"
11083 msgstr ""
11084
11085 #. type: textblock
11086 #: ../src/guestfs-actions.pod:3182 ../fish/guestfish-actions.pod:2187
11087 msgid "Return the list of applications installed in the operating system."
11088 msgstr ""
11089
11090 #. type: textblock
11091 #: ../src/guestfs-actions.pod:3184
11092 msgid ""
11093 "I<Note:> This call works differently from other parts of the inspection "
11094 "API.  You have to call C<guestfs_inspect_os>, then "
11095 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11096 "this.  Listing applications is a significantly more difficult operation "
11097 "which requires access to the full filesystem.  Also note that unlike the "
11098 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11099 "the libguestfs handle, this call actually reads parts of the mounted "
11100 "filesystems during the call."
11101 msgstr ""
11102
11103 #. type: textblock
11104 #: ../src/guestfs-actions.pod:3194 ../fish/guestfish-actions.pod:2199
11105 msgid ""
11106 "This returns an empty list if the inspection code was not able to determine "
11107 "the list of applications."
11108 msgstr ""
11109
11110 #. type: textblock
11111 #: ../src/guestfs-actions.pod:3197 ../fish/guestfish-actions.pod:2202
11112 msgid "The application structure contains the following fields:"
11113 msgstr ""
11114
11115 #. type: =item
11116 #: ../src/guestfs-actions.pod:3201 ../fish/guestfish-actions.pod:2206
11117 msgid "C<app_name>"
11118 msgstr ""
11119
11120 #. type: textblock
11121 #: ../src/guestfs-actions.pod:3203 ../fish/guestfish-actions.pod:2208
11122 msgid ""
11123 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11124 "guests, this is the package name."
11125 msgstr ""
11126
11127 #. type: =item
11128 #: ../src/guestfs-actions.pod:3206 ../fish/guestfish-actions.pod:2211
11129 msgid "C<app_display_name>"
11130 msgstr ""
11131
11132 #. type: textblock
11133 #: ../src/guestfs-actions.pod:3208 ../fish/guestfish-actions.pod:2213
11134 msgid ""
11135 "The display name of the application, sometimes localized to the install "
11136 "language of the guest operating system."
11137 msgstr ""
11138
11139 #. type: textblock
11140 #: ../src/guestfs-actions.pod:3211 ../fish/guestfish-actions.pod:2216
11141 msgid ""
11142 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11143 "to display something can use C<app_name> instead."
11144 msgstr ""
11145
11146 #. type: =item
11147 #: ../src/guestfs-actions.pod:3214 ../fish/guestfish-actions.pod:2219
11148 msgid "C<app_epoch>"
11149 msgstr ""
11150
11151 #. type: textblock
11152 #: ../src/guestfs-actions.pod:3216 ../fish/guestfish-actions.pod:2221
11153 msgid ""
11154 "For package managers which use epochs, this contains the epoch of the "
11155 "package (an integer).  If unavailable, this is returned as C<0>."
11156 msgstr ""
11157
11158 #. type: =item
11159 #: ../src/guestfs-actions.pod:3219 ../fish/guestfish-actions.pod:2224
11160 msgid "C<app_version>"
11161 msgstr ""
11162
11163 #. type: textblock
11164 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2226
11165 msgid ""
11166 "The version string of the application or package.  If unavailable this is "
11167 "returned as an empty string C<\"\">."
11168 msgstr ""
11169
11170 #. type: =item
11171 #: ../src/guestfs-actions.pod:3224 ../fish/guestfish-actions.pod:2229
11172 msgid "C<app_release>"
11173 msgstr ""
11174
11175 #. type: textblock
11176 #: ../src/guestfs-actions.pod:3226 ../fish/guestfish-actions.pod:2231
11177 msgid ""
11178 "The release string of the application or package, for package managers that "
11179 "use this.  If unavailable this is returned as an empty string C<\"\">."
11180 msgstr ""
11181
11182 #. type: =item
11183 #: ../src/guestfs-actions.pod:3230 ../fish/guestfish-actions.pod:2235
11184 msgid "C<app_install_path>"
11185 msgstr ""
11186
11187 #. type: textblock
11188 #: ../src/guestfs-actions.pod:3232 ../fish/guestfish-actions.pod:2237
11189 msgid ""
11190 "The installation path of the application (on operating systems such as "
11191 "Windows which use installation paths).  This path is in the format used by "
11192 "the guest operating system, it is not a libguestfs path."
11193 msgstr ""
11194
11195 #. type: textblock
11196 #: ../src/guestfs-actions.pod:3237 ../fish/guestfish-actions.pod:2242
11197 msgid "If unavailable this is returned as an empty string C<\"\">."
11198 msgstr ""
11199
11200 #. type: =item
11201 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2244
11202 msgid "C<app_trans_path>"
11203 msgstr ""
11204
11205 #. type: textblock
11206 #: ../src/guestfs-actions.pod:3241 ../fish/guestfish-actions.pod:2246
11207 msgid ""
11208 "The install path translated into a libguestfs path.  If unavailable this is "
11209 "returned as an empty string C<\"\">."
11210 msgstr ""
11211
11212 #. type: =item
11213 #: ../src/guestfs-actions.pod:3244 ../fish/guestfish-actions.pod:2249
11214 msgid "C<app_publisher>"
11215 msgstr ""
11216
11217 #. type: textblock
11218 #: ../src/guestfs-actions.pod:3246 ../fish/guestfish-actions.pod:2251
11219 msgid ""
11220 "The name of the publisher of the application, for package managers that use "
11221 "this.  If unavailable this is returned as an empty string C<\"\">."
11222 msgstr ""
11223
11224 #. type: =item
11225 #: ../src/guestfs-actions.pod:3250 ../fish/guestfish-actions.pod:2255
11226 msgid "C<app_url>"
11227 msgstr ""
11228
11229 #. type: textblock
11230 #: ../src/guestfs-actions.pod:3252 ../fish/guestfish-actions.pod:2257
11231 msgid ""
11232 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11233 "returned as an empty string C<\"\">."
11234 msgstr ""
11235
11236 #. type: =item
11237 #: ../src/guestfs-actions.pod:3255 ../fish/guestfish-actions.pod:2260
11238 msgid "C<app_source_package>"
11239 msgstr ""
11240
11241 #. type: textblock
11242 #: ../src/guestfs-actions.pod:3257 ../fish/guestfish-actions.pod:2262
11243 msgid ""
11244 "For packaging systems which support this, the name of the source package.  "
11245 "If unavailable this is returned as an empty string C<\"\">."
11246 msgstr ""
11247
11248 #. type: =item
11249 #: ../src/guestfs-actions.pod:3260 ../fish/guestfish-actions.pod:2265
11250 msgid "C<app_summary>"
11251 msgstr ""
11252
11253 #. type: textblock
11254 #: ../src/guestfs-actions.pod:3262 ../fish/guestfish-actions.pod:2267
11255 msgid ""
11256 "A short (usually one line) description of the application or package.  If "
11257 "unavailable this is returned as an empty string C<\"\">."
11258 msgstr ""
11259
11260 #. type: =item
11261 #: ../src/guestfs-actions.pod:3265 ../fish/guestfish-actions.pod:2270
11262 msgid "C<app_description>"
11263 msgstr ""
11264
11265 #. type: textblock
11266 #: ../src/guestfs-actions.pod:3267 ../fish/guestfish-actions.pod:2272
11267 msgid ""
11268 "A longer description of the application or package.  If unavailable this is "
11269 "returned as an empty string C<\"\">."
11270 msgstr ""
11271
11272 #. type: textblock
11273 #: ../src/guestfs-actions.pod:3274
11274 msgid ""
11275 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11276 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11277 "after use>."
11278 msgstr ""
11279
11280 #. type: textblock
11281 #: ../src/guestfs-actions.pod:3278
11282 msgid "(Added in 1.7.8)"
11283 msgstr ""
11284
11285 #. type: =head2
11286 #: ../src/guestfs-actions.pod:3280
11287 msgid "guestfs_inspect_os"
11288 msgstr ""
11289
11290 #. type: verbatim
11291 #: ../src/guestfs-actions.pod:3282
11292 #, no-wrap
11293 msgid ""
11294 " char **\n"
11295 " guestfs_inspect_os (guestfs_h *g);\n"
11296 "\n"
11297 msgstr ""
11298
11299 #. type: textblock
11300 #: ../src/guestfs-actions.pod:3285 ../fish/guestfish-actions.pod:2283
11301 msgid ""
11302 "This function uses other libguestfs functions and certain heuristics to "
11303 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11304 "for operating systems."
11305 msgstr ""
11306
11307 #. type: textblock
11308 #: ../src/guestfs-actions.pod:3289 ../fish/guestfish-actions.pod:2287
11309 msgid "The list returned is empty if no operating systems were found."
11310 msgstr ""
11311
11312 #. type: textblock
11313 #: ../src/guestfs-actions.pod:3291 ../fish/guestfish-actions.pod:2289
11314 msgid ""
11315 "If one operating system was found, then this returns a list with a single "
11316 "element, which is the name of the root filesystem of this operating system.  "
11317 "It is also possible for this function to return a list containing more than "
11318 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11319 "element being the root filesystem of one of the operating systems."
11320 msgstr ""
11321
11322 #. type: textblock
11323 #: ../src/guestfs-actions.pod:3298
11324 msgid ""
11325 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11326 "functions in order to query further information about each operating system, "
11327 "such as the name and version."
11328 msgstr ""
11329
11330 #. type: textblock
11331 #: ../src/guestfs-actions.pod:3303
11332 msgid ""
11333 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11334 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11335 "the contents.  This should be called with no disks currently mounted.  The "
11336 "function may also use Augeas, so any existing Augeas handle will be closed."
11337 msgstr ""
11338
11339 #. type: textblock
11340 #: ../src/guestfs-actions.pod:3309 ../fish/guestfish-actions.pod:2307
11341 msgid ""
11342 "This function cannot decrypt encrypted disks.  The caller must do that first "
11343 "(supplying the necessary keys) if the disk is encrypted."
11344 msgstr ""
11345
11346 #. type: textblock
11347 #: ../src/guestfs-actions.pod:3315 ../src/guestfs-actions.pod:3640 ../src/guestfs-actions.pod:3702
11348 msgid "See also C<guestfs_list_filesystems>."
11349 msgstr ""
11350
11351 #. type: =head2
11352 #: ../src/guestfs-actions.pod:3323
11353 msgid "guestfs_is_blockdev"
11354 msgstr ""
11355
11356 #. type: verbatim
11357 #: ../src/guestfs-actions.pod:3325
11358 #, no-wrap
11359 msgid ""
11360 " int\n"
11361 " guestfs_is_blockdev (guestfs_h *g,\n"
11362 "                      const char *path);\n"
11363 "\n"
11364 msgstr ""
11365
11366 #. type: textblock
11367 #: ../src/guestfs-actions.pod:3329 ../fish/guestfish-actions.pod:2319
11368 msgid ""
11369 "This returns C<true> if and only if there is a block device with the given "
11370 "C<path> name."
11371 msgstr ""
11372
11373 #. type: textblock
11374 #: ../src/guestfs-actions.pod:3332 ../src/guestfs-actions.pod:3361 ../src/guestfs-actions.pod:3391 ../src/guestfs-actions.pod:3406 ../src/guestfs-actions.pod:3422 ../src/guestfs-actions.pod:3478 ../src/guestfs-actions.pod:3493
11375 msgid "See also C<guestfs_stat>."
11376 msgstr ""
11377
11378 #. type: textblock
11379 #: ../src/guestfs-actions.pod:3336 ../src/guestfs-actions.pod:3365 ../src/guestfs-actions.pod:3410 ../src/guestfs-actions.pod:3482 ../src/guestfs-actions.pod:3497
11380 msgid "(Added in 1.5.10)"
11381 msgstr ""
11382
11383 #. type: =head2
11384 #: ../src/guestfs-actions.pod:3338
11385 msgid "guestfs_is_busy"
11386 msgstr ""
11387
11388 #. type: verbatim
11389 #: ../src/guestfs-actions.pod:3340
11390 #, no-wrap
11391 msgid ""
11392 " int\n"
11393 " guestfs_is_busy (guestfs_h *g);\n"
11394 "\n"
11395 msgstr ""
11396
11397 #. type: textblock
11398 #: ../src/guestfs-actions.pod:3343 ../fish/guestfish-actions.pod:2328
11399 msgid ""
11400 "This returns true iff this handle is busy processing a command (in the "
11401 "C<BUSY> state)."
11402 msgstr ""
11403
11404 #. type: =head2
11405 #: ../src/guestfs-actions.pod:3352
11406 msgid "guestfs_is_chardev"
11407 msgstr ""
11408
11409 #. type: verbatim
11410 #: ../src/guestfs-actions.pod:3354
11411 #, no-wrap
11412 msgid ""
11413 " int\n"
11414 " guestfs_is_chardev (guestfs_h *g,\n"
11415 "                     const char *path);\n"
11416 "\n"
11417 msgstr ""
11418
11419 #. type: textblock
11420 #: ../src/guestfs-actions.pod:3358 ../fish/guestfish-actions.pod:2337
11421 msgid ""
11422 "This returns C<true> if and only if there is a character device with the "
11423 "given C<path> name."
11424 msgstr ""
11425
11426 #. type: =head2
11427 #: ../src/guestfs-actions.pod:3367
11428 msgid "guestfs_is_config"
11429 msgstr ""
11430
11431 #. type: verbatim
11432 #: ../src/guestfs-actions.pod:3369
11433 #, no-wrap
11434 msgid ""
11435 " int\n"
11436 " guestfs_is_config (guestfs_h *g);\n"
11437 "\n"
11438 msgstr ""
11439
11440 #. type: textblock
11441 #: ../src/guestfs-actions.pod:3372 ../fish/guestfish-actions.pod:2346
11442 msgid ""
11443 "This returns true iff this handle is being configured (in the C<CONFIG> "
11444 "state)."
11445 msgstr ""
11446
11447 #. type: =head2
11448 #: ../src/guestfs-actions.pod:3381
11449 msgid "guestfs_is_dir"
11450 msgstr ""
11451
11452 #. type: verbatim
11453 #: ../src/guestfs-actions.pod:3383
11454 #, no-wrap
11455 msgid ""
11456 " int\n"
11457 " guestfs_is_dir (guestfs_h *g,\n"
11458 "                 const char *path);\n"
11459 "\n"
11460 msgstr ""
11461
11462 #. type: textblock
11463 #: ../src/guestfs-actions.pod:3387 ../fish/guestfish-actions.pod:2355
11464 msgid ""
11465 "This returns C<true> if and only if there is a directory with the given "
11466 "C<path> name.  Note that it returns false for other objects like files."
11467 msgstr ""
11468
11469 #. type: =head2
11470 #: ../src/guestfs-actions.pod:3397
11471 msgid "guestfs_is_fifo"
11472 msgstr ""
11473
11474 #. type: verbatim
11475 #: ../src/guestfs-actions.pod:3399
11476 #, no-wrap
11477 msgid ""
11478 " int\n"
11479 " guestfs_is_fifo (guestfs_h *g,\n"
11480 "                  const char *path);\n"
11481 "\n"
11482 msgstr ""
11483
11484 #. type: textblock
11485 #: ../src/guestfs-actions.pod:3403 ../fish/guestfish-actions.pod:2365
11486 msgid ""
11487 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11488 "given C<path> name."
11489 msgstr ""
11490
11491 #. type: =head2
11492 #: ../src/guestfs-actions.pod:3412
11493 msgid "guestfs_is_file"
11494 msgstr ""
11495
11496 #. type: verbatim
11497 #: ../src/guestfs-actions.pod:3414
11498 #, no-wrap
11499 msgid ""
11500 " int\n"
11501 " guestfs_is_file (guestfs_h *g,\n"
11502 "                  const char *path);\n"
11503 "\n"
11504 msgstr ""
11505
11506 #. type: textblock
11507 #: ../src/guestfs-actions.pod:3418 ../fish/guestfish-actions.pod:2374
11508 msgid ""
11509 "This returns C<true> if and only if there is a regular file with the given "
11510 "C<path> name.  Note that it returns false for other objects like "
11511 "directories."
11512 msgstr ""
11513
11514 #. type: =head2
11515 #: ../src/guestfs-actions.pod:3428
11516 msgid "guestfs_is_launching"
11517 msgstr ""
11518
11519 #. type: verbatim
11520 #: ../src/guestfs-actions.pod:3430
11521 #, no-wrap
11522 msgid ""
11523 " int\n"
11524 " guestfs_is_launching (guestfs_h *g);\n"
11525 "\n"
11526 msgstr ""
11527
11528 #. type: textblock
11529 #: ../src/guestfs-actions.pod:3433 ../fish/guestfish-actions.pod:2384
11530 msgid ""
11531 "This returns true iff this handle is launching the subprocess (in the "
11532 "C<LAUNCHING> state)."
11533 msgstr ""
11534
11535 #. type: =head2
11536 #: ../src/guestfs-actions.pod:3442
11537 msgid "guestfs_is_lv"
11538 msgstr ""
11539
11540 #. type: verbatim
11541 #: ../src/guestfs-actions.pod:3444
11542 #, no-wrap
11543 msgid ""
11544 " int\n"
11545 " guestfs_is_lv (guestfs_h *g,\n"
11546 "                const char *device);\n"
11547 "\n"
11548 msgstr ""
11549
11550 #. type: textblock
11551 #: ../src/guestfs-actions.pod:3448 ../fish/guestfish-actions.pod:2393
11552 msgid ""
11553 "This command tests whether C<device> is a logical volume, and returns true "
11554 "iff this is the case."
11555 msgstr ""
11556
11557 #. type: =head2
11558 #: ../src/guestfs-actions.pod:3455
11559 msgid "guestfs_is_ready"
11560 msgstr ""
11561
11562 #. type: verbatim
11563 #: ../src/guestfs-actions.pod:3457
11564 #, no-wrap
11565 msgid ""
11566 " int\n"
11567 " guestfs_is_ready (guestfs_h *g);\n"
11568 "\n"
11569 msgstr ""
11570
11571 #. type: textblock
11572 #: ../src/guestfs-actions.pod:3460 ../fish/guestfish-actions.pod:2400
11573 msgid ""
11574 "This returns true iff this handle is ready to accept commands (in the "
11575 "C<READY> state)."
11576 msgstr ""
11577
11578 #. type: =head2
11579 #: ../src/guestfs-actions.pod:3469
11580 msgid "guestfs_is_socket"
11581 msgstr ""
11582
11583 #. type: verbatim
11584 #: ../src/guestfs-actions.pod:3471
11585 #, no-wrap
11586 msgid ""
11587 " int\n"
11588 " guestfs_is_socket (guestfs_h *g,\n"
11589 "                    const char *path);\n"
11590 "\n"
11591 msgstr ""
11592
11593 #. type: textblock
11594 #: ../src/guestfs-actions.pod:3475 ../fish/guestfish-actions.pod:2409
11595 msgid ""
11596 "This returns C<true> if and only if there is a Unix domain socket with the "
11597 "given C<path> name."
11598 msgstr ""
11599
11600 #. type: =head2
11601 #: ../src/guestfs-actions.pod:3484
11602 msgid "guestfs_is_symlink"
11603 msgstr ""
11604
11605 #. type: verbatim
11606 #: ../src/guestfs-actions.pod:3486
11607 #, no-wrap
11608 msgid ""
11609 " int\n"
11610 " guestfs_is_symlink (guestfs_h *g,\n"
11611 "                     const char *path);\n"
11612 "\n"
11613 msgstr ""
11614
11615 #. type: textblock
11616 #: ../src/guestfs-actions.pod:3490 ../fish/guestfish-actions.pod:2418
11617 msgid ""
11618 "This returns C<true> if and only if there is a symbolic link with the given "
11619 "C<path> name."
11620 msgstr ""
11621
11622 #. type: =head2
11623 #: ../src/guestfs-actions.pod:3499
11624 msgid "guestfs_is_zero"
11625 msgstr ""
11626
11627 #. type: verbatim
11628 #: ../src/guestfs-actions.pod:3501
11629 #, no-wrap
11630 msgid ""
11631 " int\n"
11632 " guestfs_is_zero (guestfs_h *g,\n"
11633 "                  const char *path);\n"
11634 "\n"
11635 msgstr ""
11636
11637 #. type: textblock
11638 #: ../src/guestfs-actions.pod:3505 ../fish/guestfish-actions.pod:2427
11639 msgid ""
11640 "This returns true iff the file exists and the file is empty or it contains "
11641 "all zero bytes."
11642 msgstr ""
11643
11644 #. type: =head2
11645 #: ../src/guestfs-actions.pod:3510
11646 msgid "guestfs_is_zero_device"
11647 msgstr ""
11648
11649 #. type: verbatim
11650 #: ../src/guestfs-actions.pod:3512
11651 #, no-wrap
11652 msgid ""
11653 " int\n"
11654 " guestfs_is_zero_device (guestfs_h *g,\n"
11655 "                         const char *device);\n"
11656 "\n"
11657 msgstr ""
11658
11659 #. type: textblock
11660 #: ../src/guestfs-actions.pod:3516 ../fish/guestfish-actions.pod:2434
11661 msgid "This returns true iff the device exists and contains all zero bytes."
11662 msgstr ""
11663
11664 #. type: textblock
11665 #: ../src/guestfs-actions.pod:3518 ../fish/guestfish-actions.pod:2436
11666 msgid "Note that for large devices this can take a long time to run."
11667 msgstr ""
11668
11669 #. type: =head2
11670 #: ../src/guestfs-actions.pod:3522
11671 msgid "guestfs_kill_subprocess"
11672 msgstr ""
11673
11674 #. type: verbatim
11675 #: ../src/guestfs-actions.pod:3524
11676 #, no-wrap
11677 msgid ""
11678 " int\n"
11679 " guestfs_kill_subprocess (guestfs_h *g);\n"
11680 "\n"
11681 msgstr ""
11682
11683 #. type: textblock
11684 #: ../src/guestfs-actions.pod:3527 ../fish/guestfish-actions.pod:2442
11685 msgid "This kills the qemu subprocess.  You should never need to call this."
11686 msgstr ""
11687
11688 #. type: =head2
11689 #: ../src/guestfs-actions.pod:3533
11690 msgid "guestfs_launch"
11691 msgstr ""
11692
11693 #. type: verbatim
11694 #: ../src/guestfs-actions.pod:3535
11695 #, no-wrap
11696 msgid ""
11697 " int\n"
11698 " guestfs_launch (guestfs_h *g);\n"
11699 "\n"
11700 msgstr ""
11701
11702 #. type: textblock
11703 #: ../src/guestfs-actions.pod:3538 ../fish/guestfish-actions.pod:2450
11704 msgid ""
11705 "Internally libguestfs is implemented by running a virtual machine using "
11706 "L<qemu(1)>."
11707 msgstr ""
11708
11709 #. type: textblock
11710 #: ../src/guestfs-actions.pod:3541 ../fish/guestfish-actions.pod:2453
11711 msgid ""
11712 "You should call this after configuring the handle (eg. adding drives) but "
11713 "before performing any actions."
11714 msgstr ""
11715
11716 #. type: =head2
11717 #: ../src/guestfs-actions.pod:3553
11718 msgid "guestfs_lchown"
11719 msgstr ""
11720
11721 #. type: verbatim
11722 #: ../src/guestfs-actions.pod:3555
11723 #, no-wrap
11724 msgid ""
11725 " int\n"
11726 " guestfs_lchown (guestfs_h *g,\n"
11727 "                 int owner,\n"
11728 "                 int group,\n"
11729 "                 const char *path);\n"
11730 "\n"
11731 msgstr ""
11732
11733 #. type: textblock
11734 #: ../src/guestfs-actions.pod:3561
11735 msgid ""
11736 "Change the file owner to C<owner> and group to C<group>.  This is like "
11737 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
11738 "changed, not the target."
11739 msgstr ""
11740
11741 #. type: =head2
11742 #: ../src/guestfs-actions.pod:3573
11743 msgid "guestfs_lgetxattr"
11744 msgstr ""
11745
11746 #. type: verbatim
11747 #: ../src/guestfs-actions.pod:3575
11748 #, no-wrap
11749 msgid ""
11750 " char *\n"
11751 " guestfs_lgetxattr (guestfs_h *g,\n"
11752 "                    const char *path,\n"
11753 "                    const char *name,\n"
11754 "                    size_t *size_r);\n"
11755 "\n"
11756 msgstr ""
11757
11758 #. type: textblock
11759 #: ../src/guestfs-actions.pod:3581 ../fish/guestfish-actions.pod:2472
11760 msgid ""
11761 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
11762 "is a symlink, then this call returns an extended attribute from the symlink."
11763 msgstr ""
11764
11765 #. type: textblock
11766 #: ../src/guestfs-actions.pod:3595
11767 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
11768 msgstr ""
11769
11770 #. type: =head2
11771 #: ../src/guestfs-actions.pod:3603
11772 msgid "guestfs_lgetxattrs"
11773 msgstr ""
11774
11775 #. type: verbatim
11776 #: ../src/guestfs-actions.pod:3605
11777 #, no-wrap
11778 msgid ""
11779 " struct guestfs_xattr_list *\n"
11780 " guestfs_lgetxattrs (guestfs_h *g,\n"
11781 "                     const char *path);\n"
11782 "\n"
11783 msgstr ""
11784
11785 #. type: textblock
11786 #: ../src/guestfs-actions.pod:3609
11787 msgid ""
11788 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
11789 "then it returns the extended attributes of the link itself."
11790 msgstr ""
11791
11792 #. type: =head2
11793 #: ../src/guestfs-actions.pod:3619
11794 msgid "guestfs_list_9p"
11795 msgstr ""
11796
11797 #. type: verbatim
11798 #: ../src/guestfs-actions.pod:3621
11799 #, no-wrap
11800 msgid ""
11801 " char **\n"
11802 " guestfs_list_9p (guestfs_h *g);\n"
11803 "\n"
11804 msgstr ""
11805
11806 #. type: textblock
11807 #: ../src/guestfs-actions.pod:3624 ../fish/guestfish-actions.pod:2500
11808 msgid ""
11809 "List all 9p filesystems attached to the guest.  A list of mount tags is "
11810 "returned."
11811 msgstr ""
11812
11813 #. type: =head2
11814 #: ../src/guestfs-actions.pod:3631
11815 msgid "guestfs_list_devices"
11816 msgstr ""
11817
11818 #. type: verbatim
11819 #: ../src/guestfs-actions.pod:3633
11820 #, no-wrap
11821 msgid ""
11822 " char **\n"
11823 " guestfs_list_devices (guestfs_h *g);\n"
11824 "\n"
11825 msgstr ""
11826
11827 #. type: textblock
11828 #: ../src/guestfs-actions.pod:3636 ../fish/guestfish-actions.pod:2507
11829 msgid "List all the block devices."
11830 msgstr ""
11831
11832 #. type: textblock
11833 #: ../src/guestfs-actions.pod:3638 ../fish/guestfish-actions.pod:2509
11834 msgid "The full block device names are returned, eg. C</dev/sda>."
11835 msgstr ""
11836
11837 #. type: =head2
11838 #: ../src/guestfs-actions.pod:3648
11839 msgid "guestfs_list_filesystems"
11840 msgstr ""
11841
11842 #. type: verbatim
11843 #: ../src/guestfs-actions.pod:3650
11844 #, no-wrap
11845 msgid ""
11846 " char **\n"
11847 " guestfs_list_filesystems (guestfs_h *g);\n"
11848 "\n"
11849 msgstr ""
11850
11851 #. type: textblock
11852 #: ../src/guestfs-actions.pod:3653 ../fish/guestfish-actions.pod:2517
11853 msgid ""
11854 "This inspection command looks for filesystems on partitions, block devices "
11855 "and logical volumes, returning a list of devices containing filesystems and "
11856 "their type."
11857 msgstr ""
11858
11859 #. type: textblock
11860 #: ../src/guestfs-actions.pod:3657 ../fish/guestfish-actions.pod:2521
11861 msgid ""
11862 "The return value is a hash, where the keys are the devices containing "
11863 "filesystems, and the values are the filesystem types.  For example:"
11864 msgstr ""
11865
11866 #. type: verbatim
11867 #: ../src/guestfs-actions.pod:3661 ../fish/guestfish-actions.pod:2525
11868 #, no-wrap
11869 msgid ""
11870 " \"/dev/sda1\" => \"ntfs\"\n"
11871 " \"/dev/sda2\" => \"ext2\"\n"
11872 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
11873 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
11874 "\n"
11875 msgstr ""
11876
11877 #. type: textblock
11878 #: ../src/guestfs-actions.pod:3666 ../fish/guestfish-actions.pod:2530
11879 msgid ""
11880 "The value can have the special value \"unknown\", meaning the content of the "
11881 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
11882 msgstr ""
11883
11884 #. type: textblock
11885 #: ../src/guestfs-actions.pod:3670
11886 msgid ""
11887 "This command runs other libguestfs commands, which might include "
11888 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
11889 "soon after launch and only when nothing is mounted."
11890 msgstr ""
11891
11892 #. type: textblock
11893 #: ../src/guestfs-actions.pod:3674
11894 msgid ""
11895 "Not all of the filesystems returned will be mountable.  In particular, swap "
11896 "partitions are returned in the list.  Also this command does not check that "
11897 "each filesystem found is valid and mountable, and some filesystems might be "
11898 "mountable but require special options.  Filesystems may not all belong to a "
11899 "single logical operating system (use C<guestfs_inspect_os> to look for "
11900 "OSes)."
11901 msgstr ""
11902
11903 #. type: textblock
11904 #: ../src/guestfs-actions.pod:3688 ../src/guestfs-actions.pod:5348
11905 msgid "(Added in 1.5.15)"
11906 msgstr ""
11907
11908 #. type: =head2
11909 #: ../src/guestfs-actions.pod:3690
11910 msgid "guestfs_list_partitions"
11911 msgstr ""
11912
11913 #. type: verbatim
11914 #: ../src/guestfs-actions.pod:3692
11915 #, no-wrap
11916 msgid ""
11917 " char **\n"
11918 " guestfs_list_partitions (guestfs_h *g);\n"
11919 "\n"
11920 msgstr ""
11921
11922 #. type: textblock
11923 #: ../src/guestfs-actions.pod:3695 ../fish/guestfish-actions.pod:2550
11924 msgid "List all the partitions detected on all block devices."
11925 msgstr ""
11926
11927 #. type: textblock
11928 #: ../src/guestfs-actions.pod:3697 ../fish/guestfish-actions.pod:2552
11929 msgid "The full partition device names are returned, eg. C</dev/sda1>"
11930 msgstr ""
11931
11932 #. type: textblock
11933 #: ../src/guestfs-actions.pod:3699
11934 msgid ""
11935 "This does not return logical volumes.  For that you will need to call "
11936 "C<guestfs_lvs>."
11937 msgstr ""
11938
11939 #. type: =head2
11940 #: ../src/guestfs-actions.pod:3710
11941 msgid "guestfs_ll"
11942 msgstr ""
11943
11944 #. type: verbatim
11945 #: ../src/guestfs-actions.pod:3712
11946 #, no-wrap
11947 msgid ""
11948 " char *\n"
11949 " guestfs_ll (guestfs_h *g,\n"
11950 "             const char *directory);\n"
11951 "\n"
11952 msgstr ""
11953
11954 #. type: textblock
11955 #: ../src/guestfs-actions.pod:3716 ../fish/guestfish-actions.pod:2563
11956 msgid ""
11957 "List the files in C<directory> (relative to the root directory, there is no "
11958 "cwd) in the format of 'ls -la'."
11959 msgstr ""
11960
11961 #. type: textblock
11962 #: ../src/guestfs-actions.pod:3719 ../fish/guestfish-actions.pod:2566
11963 msgid ""
11964 "This command is mostly useful for interactive sessions.  It is I<not> "
11965 "intended that you try to parse the output string."
11966 msgstr ""
11967
11968 #. type: =head2
11969 #: ../src/guestfs-actions.pod:3727
11970 msgid "guestfs_ln"
11971 msgstr ""
11972
11973 #. type: verbatim
11974 #: ../src/guestfs-actions.pod:3729
11975 #, no-wrap
11976 msgid ""
11977 " int\n"
11978 " guestfs_ln (guestfs_h *g,\n"
11979 "             const char *target,\n"
11980 "             const char *linkname);\n"
11981 "\n"
11982 msgstr ""
11983
11984 #. type: textblock
11985 #: ../src/guestfs-actions.pod:3734 ../fish/guestfish-actions.pod:2573
11986 msgid "This command creates a hard link using the C<ln> command."
11987 msgstr ""
11988
11989 #. type: =head2
11990 #: ../src/guestfs-actions.pod:3740
11991 msgid "guestfs_ln_f"
11992 msgstr ""
11993
11994 #. type: verbatim
11995 #: ../src/guestfs-actions.pod:3742
11996 #, no-wrap
11997 msgid ""
11998 " int\n"
11999 " guestfs_ln_f (guestfs_h *g,\n"
12000 "               const char *target,\n"
12001 "               const char *linkname);\n"
12002 "\n"
12003 msgstr ""
12004
12005 #. type: textblock
12006 #: ../src/guestfs-actions.pod:3747 ../fish/guestfish-actions.pod:2579
12007 msgid ""
12008 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12009 "option removes the link (C<linkname>) if it exists already."
12010 msgstr ""
12011
12012 #. type: =head2
12013 #: ../src/guestfs-actions.pod:3754
12014 msgid "guestfs_ln_s"
12015 msgstr ""
12016
12017 #. type: verbatim
12018 #: ../src/guestfs-actions.pod:3756
12019 #, no-wrap
12020 msgid ""
12021 " int\n"
12022 " guestfs_ln_s (guestfs_h *g,\n"
12023 "               const char *target,\n"
12024 "               const char *linkname);\n"
12025 "\n"
12026 msgstr ""
12027
12028 #. type: textblock
12029 #: ../src/guestfs-actions.pod:3761 ../fish/guestfish-actions.pod:2586
12030 msgid "This command creates a symbolic link using the C<ln -s> command."
12031 msgstr ""
12032
12033 #. type: =head2
12034 #: ../src/guestfs-actions.pod:3767
12035 msgid "guestfs_ln_sf"
12036 msgstr ""
12037
12038 #. type: verbatim
12039 #: ../src/guestfs-actions.pod:3769
12040 #, no-wrap
12041 msgid ""
12042 " int\n"
12043 " guestfs_ln_sf (guestfs_h *g,\n"
12044 "                const char *target,\n"
12045 "                const char *linkname);\n"
12046 "\n"
12047 msgstr ""
12048
12049 #. type: textblock
12050 #: ../src/guestfs-actions.pod:3774 ../fish/guestfish-actions.pod:2592
12051 msgid ""
12052 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12053 "option removes the link (C<linkname>) if it exists already."
12054 msgstr ""
12055
12056 #. type: =head2
12057 #: ../src/guestfs-actions.pod:3781
12058 msgid "guestfs_lremovexattr"
12059 msgstr ""
12060
12061 #. type: verbatim
12062 #: ../src/guestfs-actions.pod:3783
12063 #, no-wrap
12064 msgid ""
12065 " int\n"
12066 " guestfs_lremovexattr (guestfs_h *g,\n"
12067 "                       const char *xattr,\n"
12068 "                       const char *path);\n"
12069 "\n"
12070 msgstr ""
12071
12072 #. type: textblock
12073 #: ../src/guestfs-actions.pod:3788
12074 msgid ""
12075 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12076 "link, then it removes an extended attribute of the link itself."
12077 msgstr ""
12078
12079 #. type: =head2
12080 #: ../src/guestfs-actions.pod:3796
12081 msgid "guestfs_ls"
12082 msgstr ""
12083
12084 #. type: verbatim
12085 #: ../src/guestfs-actions.pod:3798
12086 #, no-wrap
12087 msgid ""
12088 " char **\n"
12089 " guestfs_ls (guestfs_h *g,\n"
12090 "             const char *directory);\n"
12091 "\n"
12092 msgstr ""
12093
12094 #. type: textblock
12095 #: ../src/guestfs-actions.pod:3802 ../fish/guestfish-actions.pod:2607
12096 msgid ""
12097 "List the files in C<directory> (relative to the root directory, there is no "
12098 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
12099 "shown."
12100 msgstr ""
12101
12102 #. type: textblock
12103 #: ../src/guestfs-actions.pod:3806
12104 msgid ""
12105 "This command is mostly useful for interactive sessions.  Programs should "
12106 "probably use C<guestfs_readdir> instead."
12107 msgstr ""
12108
12109 #. type: =head2
12110 #: ../src/guestfs-actions.pod:3815
12111 msgid "guestfs_lsetxattr"
12112 msgstr ""
12113
12114 #. type: verbatim
12115 #: ../src/guestfs-actions.pod:3817
12116 #, no-wrap
12117 msgid ""
12118 " int\n"
12119 " guestfs_lsetxattr (guestfs_h *g,\n"
12120 "                    const char *xattr,\n"
12121 "                    const char *val,\n"
12122 "                    int vallen,\n"
12123 "                    const char *path);\n"
12124 "\n"
12125 msgstr ""
12126
12127 #. type: textblock
12128 #: ../src/guestfs-actions.pod:3824
12129 msgid ""
12130 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12131 "then it sets an extended attribute of the link itself."
12132 msgstr ""
12133
12134 #. type: =head2
12135 #: ../src/guestfs-actions.pod:3832
12136 msgid "guestfs_lstat"
12137 msgstr ""
12138
12139 #. type: verbatim
12140 #: ../src/guestfs-actions.pod:3834
12141 #, no-wrap
12142 msgid ""
12143 " struct guestfs_stat *\n"
12144 " guestfs_lstat (guestfs_h *g,\n"
12145 "                const char *path);\n"
12146 "\n"
12147 msgstr ""
12148
12149 #. type: textblock
12150 #: ../src/guestfs-actions.pod:3838 ../src/guestfs-actions.pod:6479 ../fish/guestfish-actions.pod:2626 ../fish/guestfish-actions.pod:4343
12151 msgid "Returns file information for the given C<path>."
12152 msgstr ""
12153
12154 #. type: textblock
12155 #: ../src/guestfs-actions.pod:3840
12156 msgid ""
12157 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12158 "link, then the link is stat-ed, not the file it refers to."
12159 msgstr ""
12160
12161 #. type: textblock
12162 #: ../src/guestfs-actions.pod:3844 ../fish/guestfish-actions.pod:2632
12163 msgid "This is the same as the C<lstat(2)> system call."
12164 msgstr ""
12165
12166 #. type: textblock
12167 #: ../src/guestfs-actions.pod:3846 ../src/guestfs-actions.pod:6483
12168 msgid ""
12169 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12170 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12171 msgstr ""
12172
12173 #. type: textblock
12174 #: ../src/guestfs-actions.pod:3850 ../src/guestfs-actions.pod:6487 ../src/guestfs-actions.pod:6505 ../src/guestfs-actions.pod:6886
12175 msgid "(Added in 0.9.2)"
12176 msgstr ""
12177
12178 #. type: =head2
12179 #: ../src/guestfs-actions.pod:3852
12180 msgid "guestfs_lstatlist"
12181 msgstr ""
12182
12183 #. type: verbatim
12184 #: ../src/guestfs-actions.pod:3854
12185 #, no-wrap
12186 msgid ""
12187 " struct guestfs_stat_list *\n"
12188 " guestfs_lstatlist (guestfs_h *g,\n"
12189 "                    const char *path,\n"
12190 "                    char *const *names);\n"
12191 "\n"
12192 msgstr ""
12193
12194 #. type: textblock
12195 #: ../src/guestfs-actions.pod:3859
12196 msgid ""
12197 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12198 "files, where all files are in the directory C<path>.  C<names> is the list "
12199 "of files from this directory."
12200 msgstr ""
12201
12202 #. type: textblock
12203 #: ../src/guestfs-actions.pod:3863 ../fish/guestfish-actions.pod:2642
12204 msgid ""
12205 "On return you get a list of stat structs, with a one-to-one correspondence "
12206 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12207 "then the C<ino> field of that structure is set to C<-1>."
12208 msgstr ""
12209
12210 #. type: textblock
12211 #: ../src/guestfs-actions.pod:3868
12212 msgid ""
12213 "This call is intended for programs that want to efficiently list a directory "
12214 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12215 "for a similarly efficient call for getting extended attributes.  Very long "
12216 "directory listings might cause the protocol message size to be exceeded, "
12217 "causing this call to fail.  The caller must split up such requests into "
12218 "smaller groups of names."
12219 msgstr ""
12220
12221 #. type: textblock
12222 #: ../src/guestfs-actions.pod:3876
12223 msgid ""
12224 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12225 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12226 msgstr ""
12227
12228 #. type: =head2
12229 #: ../src/guestfs-actions.pod:3882
12230 msgid "guestfs_luks_add_key"
12231 msgstr ""
12232
12233 #. type: verbatim
12234 #: ../src/guestfs-actions.pod:3884
12235 #, no-wrap
12236 msgid ""
12237 " int\n"
12238 " guestfs_luks_add_key (guestfs_h *g,\n"
12239 "                       const char *device,\n"
12240 "                       const char *key,\n"
12241 "                       const char *newkey,\n"
12242 "                       int keyslot);\n"
12243 "\n"
12244 msgstr ""
12245
12246 #. type: textblock
12247 #: ../src/guestfs-actions.pod:3891 ../fish/guestfish-actions.pod:2659
12248 msgid ""
12249 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12250 "existing key, and is used to access the device.  C<newkey> is the new key to "
12251 "add.  C<keyslot> is the key slot that will be replaced."
12252 msgstr ""
12253
12254 #. type: textblock
12255 #: ../src/guestfs-actions.pod:3896
12256 msgid ""
12257 "Note that if C<keyslot> already contains a key, then this command will "
12258 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12259 msgstr ""
12260
12261 #. type: textblock
12262 #: ../src/guestfs-actions.pod:3902 ../src/guestfs-actions.pod:3942 ../src/guestfs-actions.pod:3965 ../src/guestfs-actions.pod:3985 ../src/guestfs-actions.pod:4017 ../src/guestfs-actions.pod:4036
12263 msgid ""
12264 "This function takes a key or passphrase parameter which could contain "
12265 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12266 "information."
12267 msgstr ""
12268
12269 #. type: textblock
12270 #: ../src/guestfs-actions.pod:3906 ../src/guestfs-actions.pod:3946 ../src/guestfs-actions.pod:3969 ../src/guestfs-actions.pod:3989
12271 msgid "(Added in 1.5.2)"
12272 msgstr ""
12273
12274 #. type: =head2
12275 #: ../src/guestfs-actions.pod:3908
12276 msgid "guestfs_luks_close"
12277 msgstr ""
12278
12279 #. type: verbatim
12280 #: ../src/guestfs-actions.pod:3910
12281 #, no-wrap
12282 msgid ""
12283 " int\n"
12284 " guestfs_luks_close (guestfs_h *g,\n"
12285 "                     const char *device);\n"
12286 "\n"
12287 msgstr ""
12288
12289 #. type: textblock
12290 #: ../src/guestfs-actions.pod:3914
12291 msgid ""
12292 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12293 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12294 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12295 "underlying block device."
12296 msgstr ""
12297
12298 #. type: textblock
12299 #: ../src/guestfs-actions.pod:3922 ../src/guestfs-actions.pod:4021 ../src/guestfs-actions.pod:4040 ../src/guestfs-actions.pod:4090 ../src/guestfs-actions.pod:4138
12300 msgid "(Added in 1.5.1)"
12301 msgstr ""
12302
12303 #. type: =head2
12304 #: ../src/guestfs-actions.pod:3924
12305 msgid "guestfs_luks_format"
12306 msgstr ""
12307
12308 #. type: verbatim
12309 #: ../src/guestfs-actions.pod:3926
12310 #, no-wrap
12311 msgid ""
12312 " int\n"
12313 " guestfs_luks_format (guestfs_h *g,\n"
12314 "                      const char *device,\n"
12315 "                      const char *key,\n"
12316 "                      int keyslot);\n"
12317 "\n"
12318 msgstr ""
12319
12320 #. type: textblock
12321 #: ../src/guestfs-actions.pod:3932 ../fish/guestfish-actions.pod:2685
12322 msgid ""
12323 "This command erases existing data on C<device> and formats the device as a "
12324 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12325 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12326 msgstr ""
12327
12328 #. type: textblock
12329 #: ../src/guestfs-actions.pod:3939 ../src/guestfs-actions.pod:3962 ../src/guestfs-actions.pod:4102 ../src/guestfs-actions.pod:5099 ../src/guestfs-actions.pod:5879 ../src/guestfs-actions.pod:6286 ../src/guestfs-actions.pod:6316 ../src/guestfs-actions.pod:6349 ../src/guestfs-actions.pod:7531 ../fish/guestfish-actions.pod:2693 ../fish/guestfish-actions.pod:2706 ../fish/guestfish-actions.pod:2790 ../fish/guestfish-actions.pod:3384 ../fish/guestfish-actions.pod:3904 ../fish/guestfish-actions.pod:4214 ../fish/guestfish-actions.pod:4237 ../fish/guestfish-actions.pod:4259 ../fish/guestfish-actions.pod:4989
12330 msgid ""
12331 "B<This command is dangerous.  Without careful use you can easily destroy all "
12332 "your data>."
12333 msgstr ""
12334
12335 #. type: =head2
12336 #: ../src/guestfs-actions.pod:3948
12337 msgid "guestfs_luks_format_cipher"
12338 msgstr ""
12339
12340 #. type: verbatim
12341 #: ../src/guestfs-actions.pod:3950
12342 #, no-wrap
12343 msgid ""
12344 " int\n"
12345 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12346 "                             const char *device,\n"
12347 "                             const char *key,\n"
12348 "                             int keyslot,\n"
12349 "                             const char *cipher);\n"
12350 "\n"
12351 msgstr ""
12352
12353 #. type: textblock
12354 #: ../src/guestfs-actions.pod:3957
12355 msgid ""
12356 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12357 "set the C<cipher> used."
12358 msgstr ""
12359
12360 #. type: =head2
12361 #: ../src/guestfs-actions.pod:3971
12362 msgid "guestfs_luks_kill_slot"
12363 msgstr ""
12364
12365 #. type: verbatim
12366 #: ../src/guestfs-actions.pod:3973
12367 #, no-wrap
12368 msgid ""
12369 " int\n"
12370 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12371 "                         const char *device,\n"
12372 "                         const char *key,\n"
12373 "                         int keyslot);\n"
12374 "\n"
12375 msgstr ""
12376
12377 #. type: textblock
12378 #: ../src/guestfs-actions.pod:3979 ../fish/guestfish-actions.pod:2713
12379 msgid ""
12380 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12381 "device C<device>.  C<key> must be one of the I<other> keys."
12382 msgstr ""
12383
12384 #. type: =head2
12385 #: ../src/guestfs-actions.pod:3991
12386 msgid "guestfs_luks_open"
12387 msgstr ""
12388
12389 #. type: verbatim
12390 #: ../src/guestfs-actions.pod:3993
12391 #, no-wrap
12392 msgid ""
12393 " int\n"
12394 " guestfs_luks_open (guestfs_h *g,\n"
12395 "                    const char *device,\n"
12396 "                    const char *key,\n"
12397 "                    const char *mapname);\n"
12398 "\n"
12399 msgstr ""
12400
12401 #. type: textblock
12402 #: ../src/guestfs-actions.pod:3999 ../fish/guestfish-actions.pod:2724
12403 msgid ""
12404 "This command opens a block device which has been encrypted according to the "
12405 "Linux Unified Key Setup (LUKS) standard."
12406 msgstr ""
12407
12408 #. type: textblock
12409 #: ../src/guestfs-actions.pod:4002 ../fish/guestfish-actions.pod:2727
12410 msgid "C<device> is the encrypted block device or partition."
12411 msgstr ""
12412
12413 #. type: textblock
12414 #: ../src/guestfs-actions.pod:4004 ../fish/guestfish-actions.pod:2729
12415 msgid ""
12416 "The caller must supply one of the keys associated with the LUKS block "
12417 "device, in the C<key> parameter."
12418 msgstr ""
12419
12420 #. type: textblock
12421 #: ../src/guestfs-actions.pod:4007 ../fish/guestfish-actions.pod:2732
12422 msgid ""
12423 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12424 "writes to this block device are decrypted from and encrypted to the "
12425 "underlying C<device> respectively."
12426 msgstr ""
12427
12428 #. type: textblock
12429 #: ../src/guestfs-actions.pod:4011
12430 msgid ""
12431 "If this block device contains LVM volume groups, then calling "
12432 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12433 "visible."
12434 msgstr ""
12435
12436 #. type: =head2
12437 #: ../src/guestfs-actions.pod:4023
12438 msgid "guestfs_luks_open_ro"
12439 msgstr ""
12440
12441 #. type: verbatim
12442 #: ../src/guestfs-actions.pod:4025
12443 #, no-wrap
12444 msgid ""
12445 " int\n"
12446 " guestfs_luks_open_ro (guestfs_h *g,\n"
12447 "                       const char *device,\n"
12448 "                       const char *key,\n"
12449 "                       const char *mapname);\n"
12450 "\n"
12451 msgstr ""
12452
12453 #. type: textblock
12454 #: ../src/guestfs-actions.pod:4031
12455 msgid ""
12456 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12457 "created."
12458 msgstr ""
12459
12460 #. type: =head2
12461 #: ../src/guestfs-actions.pod:4042
12462 msgid "guestfs_lvcreate"
12463 msgstr ""
12464
12465 #. type: verbatim
12466 #: ../src/guestfs-actions.pod:4044
12467 #, no-wrap
12468 msgid ""
12469 " int\n"
12470 " guestfs_lvcreate (guestfs_h *g,\n"
12471 "                   const char *logvol,\n"
12472 "                   const char *volgroup,\n"
12473 "                   int mbytes);\n"
12474 "\n"
12475 msgstr ""
12476
12477 #. type: textblock
12478 #: ../src/guestfs-actions.pod:4050 ../fish/guestfish-actions.pod:2757
12479 msgid ""
12480 "This creates an LVM logical volume called C<logvol> on the volume group "
12481 "C<volgroup>, with C<size> megabytes."
12482 msgstr ""
12483
12484 #. type: =head2
12485 #: ../src/guestfs-actions.pod:4057
12486 msgid "guestfs_lvm_canonical_lv_name"
12487 msgstr ""
12488
12489 #. type: verbatim
12490 #: ../src/guestfs-actions.pod:4059
12491 #, no-wrap
12492 msgid ""
12493 " char *\n"
12494 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12495 "                                const char *lvname);\n"
12496 "\n"
12497 msgstr ""
12498
12499 #. type: textblock
12500 #: ../src/guestfs-actions.pod:4063 ../fish/guestfish-actions.pod:2764
12501 msgid ""
12502 "This converts alternative naming schemes for LVs that you might find to the "
12503 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
12504 "C</dev/VG/LV>."
12505 msgstr ""
12506
12507 #. type: textblock
12508 #: ../src/guestfs-actions.pod:4067 ../fish/guestfish-actions.pod:2768
12509 msgid ""
12510 "This command returns an error if the C<lvname> parameter does not refer to a "
12511 "logical volume."
12512 msgstr ""
12513
12514 #. type: textblock
12515 #: ../src/guestfs-actions.pod:4070
12516 msgid "See also C<guestfs_is_lv>."
12517 msgstr ""
12518
12519 #. type: textblock
12520 #: ../src/guestfs-actions.pod:4075
12521 msgid "(Added in 1.5.24)"
12522 msgstr ""
12523
12524 #. type: =head2
12525 #: ../src/guestfs-actions.pod:4077
12526 msgid "guestfs_lvm_clear_filter"
12527 msgstr ""
12528
12529 #. type: verbatim
12530 #: ../src/guestfs-actions.pod:4079
12531 #, no-wrap
12532 msgid ""
12533 " int\n"
12534 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12535 "\n"
12536 msgstr ""
12537
12538 #. type: textblock
12539 #: ../src/guestfs-actions.pod:4082
12540 msgid ""
12541 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12542 "see every block device."
12543 msgstr ""
12544
12545 #. type: textblock
12546 #: ../src/guestfs-actions.pod:4085 ../src/guestfs-actions.pod:4127 ../fish/guestfish-actions.pod:2780 ../fish/guestfish-actions.pod:2811
12547 msgid "This command also clears the LVM cache and performs a volume group scan."
12548 msgstr ""
12549
12550 #. type: =head2
12551 #: ../src/guestfs-actions.pod:4092
12552 msgid "guestfs_lvm_remove_all"
12553 msgstr ""
12554
12555 #. type: verbatim
12556 #: ../src/guestfs-actions.pod:4094
12557 #, no-wrap
12558 msgid ""
12559 " int\n"
12560 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12561 "\n"
12562 msgstr ""
12563
12564 #. type: textblock
12565 #: ../src/guestfs-actions.pod:4097 ../fish/guestfish-actions.pod:2787
12566 msgid ""
12567 "This command removes all LVM logical volumes, volume groups and physical "
12568 "volumes."
12569 msgstr ""
12570
12571 #. type: =head2
12572 #: ../src/guestfs-actions.pod:4107
12573 msgid "guestfs_lvm_set_filter"
12574 msgstr ""
12575
12576 #. type: verbatim
12577 #: ../src/guestfs-actions.pod:4109
12578 #, no-wrap
12579 msgid ""
12580 " int\n"
12581 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12582 "                         char *const *devices);\n"
12583 "\n"
12584 msgstr ""
12585
12586 #. type: textblock
12587 #: ../src/guestfs-actions.pod:4113 ../fish/guestfish-actions.pod:2797
12588 msgid ""
12589 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12590 "block devices in the list C<devices>, and will ignore all other attached "
12591 "block devices."
12592 msgstr ""
12593
12594 #. type: textblock
12595 #: ../src/guestfs-actions.pod:4117 ../fish/guestfish-actions.pod:2801
12596 msgid ""
12597 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12598 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12599 "there are two types of duplication possible: either cloned PVs/VGs which "
12600 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12601 "same name.  In normal operation you cannot create this situation, but you "
12602 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12603 "inside the LVM metadata."
12604 msgstr ""
12605
12606 #. type: textblock
12607 #: ../src/guestfs-actions.pod:4130 ../fish/guestfish-actions.pod:2814
12608 msgid "You can filter whole block devices or individual partitions."
12609 msgstr ""
12610
12611 #. type: textblock
12612 #: ../src/guestfs-actions.pod:4132 ../fish/guestfish-actions.pod:2816
12613 msgid ""
12614 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12615 "filesystem), even if you are not filtering out that VG."
12616 msgstr ""
12617
12618 #. type: =head2
12619 #: ../src/guestfs-actions.pod:4140
12620 msgid "guestfs_lvremove"
12621 msgstr ""
12622
12623 #. type: verbatim
12624 #: ../src/guestfs-actions.pod:4142
12625 #, no-wrap
12626 msgid ""
12627 " int\n"
12628 " guestfs_lvremove (guestfs_h *g,\n"
12629 "                   const char *device);\n"
12630 "\n"
12631 msgstr ""
12632
12633 #. type: textblock
12634 #: ../src/guestfs-actions.pod:4146 ../fish/guestfish-actions.pod:2824
12635 msgid ""
12636 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12637 "LV, such as C</dev/VG/LV>."
12638 msgstr ""
12639
12640 #. type: textblock
12641 #: ../src/guestfs-actions.pod:4149 ../fish/guestfish-actions.pod:2827
12642 msgid ""
12643 "You can also remove all LVs in a volume group by specifying the VG name, "
12644 "C</dev/VG>."
12645 msgstr ""
12646
12647 #. type: textblock
12648 #: ../src/guestfs-actions.pod:4154 ../src/guestfs-actions.pod:5445 ../src/guestfs-actions.pod:7262
12649 msgid "(Added in 1.0.13)"
12650 msgstr ""
12651
12652 #. type: =head2
12653 #: ../src/guestfs-actions.pod:4156
12654 msgid "guestfs_lvrename"
12655 msgstr ""
12656
12657 #. type: verbatim
12658 #: ../src/guestfs-actions.pod:4158
12659 #, no-wrap
12660 msgid ""
12661 " int\n"
12662 " guestfs_lvrename (guestfs_h *g,\n"
12663 "                   const char *logvol,\n"
12664 "                   const char *newlogvol);\n"
12665 "\n"
12666 msgstr ""
12667
12668 #. type: textblock
12669 #: ../src/guestfs-actions.pod:4163 ../fish/guestfish-actions.pod:2834
12670 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12671 msgstr ""
12672
12673 #. type: textblock
12674 #: ../src/guestfs-actions.pod:4167 ../src/guestfs-actions.pod:7275
12675 msgid "(Added in 1.0.83)"
12676 msgstr ""
12677
12678 #. type: =head2
12679 #: ../src/guestfs-actions.pod:4169
12680 msgid "guestfs_lvresize"
12681 msgstr ""
12682
12683 #. type: verbatim
12684 #: ../src/guestfs-actions.pod:4171
12685 #, no-wrap
12686 msgid ""
12687 " int\n"
12688 " guestfs_lvresize (guestfs_h *g,\n"
12689 "                   const char *device,\n"
12690 "                   int mbytes);\n"
12691 "\n"
12692 msgstr ""
12693
12694 #. type: textblock
12695 #: ../src/guestfs-actions.pod:4176 ../fish/guestfish-actions.pod:2840
12696 msgid ""
12697 "This resizes (expands or shrinks) an existing LVM logical volume to "
12698 "C<mbytes>.  When reducing, data in the reduced part is lost."
12699 msgstr ""
12700
12701 #. type: =head2
12702 #: ../src/guestfs-actions.pod:4184
12703 msgid "guestfs_lvresize_free"
12704 msgstr ""
12705
12706 #. type: verbatim
12707 #: ../src/guestfs-actions.pod:4186
12708 #, no-wrap
12709 msgid ""
12710 " int\n"
12711 " guestfs_lvresize_free (guestfs_h *g,\n"
12712 "                        const char *lv,\n"
12713 "                        int percent);\n"
12714 "\n"
12715 msgstr ""
12716
12717 #. type: textblock
12718 #: ../src/guestfs-actions.pod:4191 ../fish/guestfish-actions.pod:2848
12719 msgid ""
12720 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
12721 "remaining free space in the volume group.  Commonly you would call this with "
12722 "pc = 100 which expands the logical volume as much as possible, using all "
12723 "remaining free space in the volume group."
12724 msgstr ""
12725
12726 #. type: textblock
12727 #: ../src/guestfs-actions.pod:4199
12728 msgid "(Added in 1.3.3)"
12729 msgstr ""
12730
12731 #. type: =head2
12732 #: ../src/guestfs-actions.pod:4201
12733 msgid "guestfs_lvs"
12734 msgstr ""
12735
12736 #. type: verbatim
12737 #: ../src/guestfs-actions.pod:4203
12738 #, no-wrap
12739 msgid ""
12740 " char **\n"
12741 " guestfs_lvs (guestfs_h *g);\n"
12742 "\n"
12743 msgstr ""
12744
12745 #. type: textblock
12746 #: ../src/guestfs-actions.pod:4206 ../fish/guestfish-actions.pod:2858
12747 msgid ""
12748 "List all the logical volumes detected.  This is the equivalent of the "
12749 "L<lvs(8)> command."
12750 msgstr ""
12751
12752 #. type: textblock
12753 #: ../src/guestfs-actions.pod:4209 ../fish/guestfish-actions.pod:2861
12754 msgid ""
12755 "This returns a list of the logical volume device names "
12756 "(eg. C</dev/VolGroup00/LogVol00>)."
12757 msgstr ""
12758
12759 #. type: textblock
12760 #: ../src/guestfs-actions.pod:4212
12761 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
12762 msgstr ""
12763
12764 #. type: =head2
12765 #: ../src/guestfs-actions.pod:4220
12766 msgid "guestfs_lvs_full"
12767 msgstr ""
12768
12769 #. type: verbatim
12770 #: ../src/guestfs-actions.pod:4222
12771 #, no-wrap
12772 msgid ""
12773 " struct guestfs_lvm_lv_list *\n"
12774 " guestfs_lvs_full (guestfs_h *g);\n"
12775 "\n"
12776 msgstr ""
12777
12778 #. type: textblock
12779 #: ../src/guestfs-actions.pod:4225 ../fish/guestfish-actions.pod:2870
12780 msgid ""
12781 "List all the logical volumes detected.  This is the equivalent of the "
12782 "L<lvs(8)> command.  The \"full\" version includes all fields."
12783 msgstr ""
12784
12785 #. type: textblock
12786 #: ../src/guestfs-actions.pod:4228
12787 msgid ""
12788 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
12789 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
12790 "use>."
12791 msgstr ""
12792
12793 #. type: =head2
12794 #: ../src/guestfs-actions.pod:4234
12795 msgid "guestfs_lvuuid"
12796 msgstr ""
12797
12798 #. type: verbatim
12799 #: ../src/guestfs-actions.pod:4236
12800 #, no-wrap
12801 msgid ""
12802 " char *\n"
12803 " guestfs_lvuuid (guestfs_h *g,\n"
12804 "                 const char *device);\n"
12805 "\n"
12806 msgstr ""
12807
12808 #. type: textblock
12809 #: ../src/guestfs-actions.pod:4240 ../fish/guestfish-actions.pod:2877
12810 msgid "This command returns the UUID of the LVM LV C<device>."
12811 msgstr ""
12812
12813 #. type: =head2
12814 #: ../src/guestfs-actions.pod:4247
12815 msgid "guestfs_lxattrlist"
12816 msgstr ""
12817
12818 #. type: verbatim
12819 #: ../src/guestfs-actions.pod:4249
12820 #, no-wrap
12821 msgid ""
12822 " struct guestfs_xattr_list *\n"
12823 " guestfs_lxattrlist (guestfs_h *g,\n"
12824 "                     const char *path,\n"
12825 "                     char *const *names);\n"
12826 "\n"
12827 msgstr ""
12828
12829 #. type: textblock
12830 #: ../src/guestfs-actions.pod:4254 ../fish/guestfish-actions.pod:2883
12831 msgid ""
12832 "This call allows you to get the extended attributes of multiple files, where "
12833 "all files are in the directory C<path>.  C<names> is the list of files from "
12834 "this directory."
12835 msgstr ""
12836
12837 #. type: textblock
12838 #: ../src/guestfs-actions.pod:4258 ../fish/guestfish-actions.pod:2887
12839 msgid ""
12840 "On return you get a flat list of xattr structs which must be interpreted "
12841 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
12842 "C<attrval> in this struct is zero-length to indicate there was an error "
12843 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
12844 "number (the number of following attributes for this file, which could be "
12845 "C<\"0\">).  Then after the first xattr struct are the zero or more "
12846 "attributes for the first named file.  This repeats for the second and "
12847 "subsequent files."
12848 msgstr ""
12849
12850 #. type: textblock
12851 #: ../src/guestfs-actions.pod:4268
12852 msgid ""
12853 "This call is intended for programs that want to efficiently list a directory "
12854 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
12855 "a similarly efficient call for getting standard stats.  Very long directory "
12856 "listings might cause the protocol message size to be exceeded, causing this "
12857 "call to fail.  The caller must split up such requests into smaller groups of "
12858 "names."
12859 msgstr ""
12860
12861 #. type: =head2
12862 #: ../src/guestfs-actions.pod:4282
12863 msgid "guestfs_mkdir"
12864 msgstr ""
12865
12866 #. type: verbatim
12867 #: ../src/guestfs-actions.pod:4284
12868 #, no-wrap
12869 msgid ""
12870 " int\n"
12871 " guestfs_mkdir (guestfs_h *g,\n"
12872 "                const char *path);\n"
12873 "\n"
12874 msgstr ""
12875
12876 #. type: textblock
12877 #: ../src/guestfs-actions.pod:4288 ../fish/guestfish-actions.pod:2909
12878 msgid "Create a directory named C<path>."
12879 msgstr ""
12880
12881 #. type: =head2
12882 #: ../src/guestfs-actions.pod:4294
12883 msgid "guestfs_mkdir_mode"
12884 msgstr ""
12885
12886 #. type: verbatim
12887 #: ../src/guestfs-actions.pod:4296
12888 #, no-wrap
12889 msgid ""
12890 " int\n"
12891 " guestfs_mkdir_mode (guestfs_h *g,\n"
12892 "                     const char *path,\n"
12893 "                     int mode);\n"
12894 "\n"
12895 msgstr ""
12896
12897 #. type: textblock
12898 #: ../src/guestfs-actions.pod:4301 ../fish/guestfish-actions.pod:2915
12899 msgid ""
12900 "This command creates a directory, setting the initial permissions of the "
12901 "directory to C<mode>."
12902 msgstr ""
12903
12904 #. type: textblock
12905 #: ../src/guestfs-actions.pod:4304 ../fish/guestfish-actions.pod:2918
12906 msgid ""
12907 "For common Linux filesystems, the actual mode which is set will be C<mode & "
12908 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
12909 "other ways."
12910 msgstr ""
12911
12912 #. type: textblock
12913 #: ../src/guestfs-actions.pod:4308
12914 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
12915 msgstr ""
12916
12917 #. type: =head2
12918 #: ../src/guestfs-actions.pod:4314
12919 msgid "guestfs_mkdir_p"
12920 msgstr ""
12921
12922 #. type: verbatim
12923 #: ../src/guestfs-actions.pod:4316
12924 #, no-wrap
12925 msgid ""
12926 " int\n"
12927 " guestfs_mkdir_p (guestfs_h *g,\n"
12928 "                  const char *path);\n"
12929 "\n"
12930 msgstr ""
12931
12932 #. type: textblock
12933 #: ../src/guestfs-actions.pod:4320 ../fish/guestfish-actions.pod:2928
12934 msgid ""
12935 "Create a directory named C<path>, creating any parent directories as "
12936 "necessary.  This is like the C<mkdir -p> shell command."
12937 msgstr ""
12938
12939 #. type: =head2
12940 #: ../src/guestfs-actions.pod:4327
12941 msgid "guestfs_mkdtemp"
12942 msgstr ""
12943
12944 #. type: verbatim
12945 #: ../src/guestfs-actions.pod:4329
12946 #, no-wrap
12947 msgid ""
12948 " char *\n"
12949 " guestfs_mkdtemp (guestfs_h *g,\n"
12950 "                  const char *template);\n"
12951 "\n"
12952 msgstr ""
12953
12954 #. type: textblock
12955 #: ../src/guestfs-actions.pod:4333 ../fish/guestfish-actions.pod:2935
12956 msgid ""
12957 "This command creates a temporary directory.  The C<template> parameter "
12958 "should be a full pathname for the temporary directory name with the final "
12959 "six characters being \"XXXXXX\"."
12960 msgstr ""
12961
12962 #. type: textblock
12963 #: ../src/guestfs-actions.pod:4338 ../fish/guestfish-actions.pod:2940
12964 msgid ""
12965 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
12966 "being suitable for Windows filesystems."
12967 msgstr ""
12968
12969 #. type: textblock
12970 #: ../src/guestfs-actions.pod:4341 ../fish/guestfish-actions.pod:2943
12971 msgid "The name of the temporary directory that was created is returned."
12972 msgstr ""
12973
12974 #. type: textblock
12975 #: ../src/guestfs-actions.pod:4344 ../fish/guestfish-actions.pod:2946
12976 msgid "The temporary directory is created with mode 0700 and is owned by root."
12977 msgstr ""
12978
12979 #. type: textblock
12980 #: ../src/guestfs-actions.pod:4347 ../fish/guestfish-actions.pod:2949
12981 msgid ""
12982 "The caller is responsible for deleting the temporary directory and its "
12983 "contents after use."
12984 msgstr ""
12985
12986 #. type: textblock
12987 #: ../src/guestfs-actions.pod:4350 ../fish/guestfish-actions.pod:2952
12988 msgid "See also: L<mkdtemp(3)>"
12989 msgstr ""
12990
12991 #. type: =head2
12992 #: ../src/guestfs-actions.pod:4357
12993 msgid "guestfs_mke2fs_J"
12994 msgstr ""
12995
12996 #. type: verbatim
12997 #: ../src/guestfs-actions.pod:4359
12998 #, no-wrap
12999 msgid ""
13000 " int\n"
13001 " guestfs_mke2fs_J (guestfs_h *g,\n"
13002 "                   const char *fstype,\n"
13003 "                   int blocksize,\n"
13004 "                   const char *device,\n"
13005 "                   const char *journal);\n"
13006 "\n"
13007 msgstr ""
13008
13009 #. type: textblock
13010 #: ../src/guestfs-actions.pod:4366 ../fish/guestfish-actions.pod:2958
13011 msgid ""
13012 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13013 "C<journal>.  It is equivalent to the command:"
13014 msgstr ""
13015
13016 #. type: verbatim
13017 #: ../src/guestfs-actions.pod:4370 ../fish/guestfish-actions.pod:2962
13018 #, no-wrap
13019 msgid ""
13020 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13021 "\n"
13022 msgstr ""
13023
13024 #. type: textblock
13025 #: ../src/guestfs-actions.pod:4372
13026 msgid "See also C<guestfs_mke2journal>."
13027 msgstr ""
13028
13029 #. type: textblock
13030 #: ../src/guestfs-actions.pod:4376 ../src/guestfs-actions.pod:4394 ../src/guestfs-actions.pod:4412 ../src/guestfs-actions.pod:4428 ../src/guestfs-actions.pod:4442 ../src/guestfs-actions.pod:4456 ../src/guestfs-actions.pod:4515 ../src/guestfs-actions.pod:4780
13031 msgid "(Added in 1.0.68)"
13032 msgstr ""
13033
13034 #. type: =head2
13035 #: ../src/guestfs-actions.pod:4378
13036 msgid "guestfs_mke2fs_JL"
13037 msgstr ""
13038
13039 #. type: verbatim
13040 #: ../src/guestfs-actions.pod:4380
13041 #, no-wrap
13042 msgid ""
13043 " int\n"
13044 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13045 "                    const char *fstype,\n"
13046 "                    int blocksize,\n"
13047 "                    const char *device,\n"
13048 "                    const char *label);\n"
13049 "\n"
13050 msgstr ""
13051
13052 #. type: textblock
13053 #: ../src/guestfs-actions.pod:4387 ../fish/guestfish-actions.pod:2970
13054 msgid ""
13055 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13056 "the journal labeled C<label>."
13057 msgstr ""
13058
13059 #. type: textblock
13060 #: ../src/guestfs-actions.pod:4390
13061 msgid "See also C<guestfs_mke2journal_L>."
13062 msgstr ""
13063
13064 #. type: =head2
13065 #: ../src/guestfs-actions.pod:4396
13066 msgid "guestfs_mke2fs_JU"
13067 msgstr ""
13068
13069 #. type: verbatim
13070 #: ../src/guestfs-actions.pod:4398
13071 #, no-wrap
13072 msgid ""
13073 " int\n"
13074 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13075 "                    const char *fstype,\n"
13076 "                    int blocksize,\n"
13077 "                    const char *device,\n"
13078 "                    const char *uuid);\n"
13079 "\n"
13080 msgstr ""
13081
13082 #. type: textblock
13083 #: ../src/guestfs-actions.pod:4405 ../fish/guestfish-actions.pod:2979
13084 msgid ""
13085 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13086 "the journal with UUID C<uuid>."
13087 msgstr ""
13088
13089 #. type: textblock
13090 #: ../src/guestfs-actions.pod:4408
13091 msgid "See also C<guestfs_mke2journal_U>."
13092 msgstr ""
13093
13094 #. type: =head2
13095 #: ../src/guestfs-actions.pod:4414
13096 msgid "guestfs_mke2journal"
13097 msgstr ""
13098
13099 #. type: verbatim
13100 #: ../src/guestfs-actions.pod:4416
13101 #, no-wrap
13102 msgid ""
13103 " int\n"
13104 " guestfs_mke2journal (guestfs_h *g,\n"
13105 "                      int blocksize,\n"
13106 "                      const char *device);\n"
13107 "\n"
13108 msgstr ""
13109
13110 #. type: textblock
13111 #: ../src/guestfs-actions.pod:4421 ../fish/guestfish-actions.pod:2988
13112 msgid ""
13113 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13114 "command:"
13115 msgstr ""
13116
13117 #. type: verbatim
13118 #: ../src/guestfs-actions.pod:4424 ../fish/guestfish-actions.pod:2991
13119 #, no-wrap
13120 msgid ""
13121 " mke2fs -O journal_dev -b blocksize device\n"
13122 "\n"
13123 msgstr ""
13124
13125 #. type: =head2
13126 #: ../src/guestfs-actions.pod:4430
13127 msgid "guestfs_mke2journal_L"
13128 msgstr ""
13129
13130 #. type: verbatim
13131 #: ../src/guestfs-actions.pod:4432
13132 #, no-wrap
13133 msgid ""
13134 " int\n"
13135 " guestfs_mke2journal_L (guestfs_h *g,\n"
13136 "                        int blocksize,\n"
13137 "                        const char *label,\n"
13138 "                        const char *device);\n"
13139 "\n"
13140 msgstr ""
13141
13142 #. type: textblock
13143 #: ../src/guestfs-actions.pod:4438 ../fish/guestfish-actions.pod:2997
13144 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13145 msgstr ""
13146
13147 #. type: =head2
13148 #: ../src/guestfs-actions.pod:4444
13149 msgid "guestfs_mke2journal_U"
13150 msgstr ""
13151
13152 #. type: verbatim
13153 #: ../src/guestfs-actions.pod:4446
13154 #, no-wrap
13155 msgid ""
13156 " int\n"
13157 " guestfs_mke2journal_U (guestfs_h *g,\n"
13158 "                        int blocksize,\n"
13159 "                        const char *uuid,\n"
13160 "                        const char *device);\n"
13161 "\n"
13162 msgstr ""
13163
13164 #. type: textblock
13165 #: ../src/guestfs-actions.pod:4452 ../fish/guestfish-actions.pod:3003
13166 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13167 msgstr ""
13168
13169 #. type: =head2
13170 #: ../src/guestfs-actions.pod:4458
13171 msgid "guestfs_mkfifo"
13172 msgstr ""
13173
13174 #. type: verbatim
13175 #: ../src/guestfs-actions.pod:4460
13176 #, no-wrap
13177 msgid ""
13178 " int\n"
13179 " guestfs_mkfifo (guestfs_h *g,\n"
13180 "                 int mode,\n"
13181 "                 const char *path);\n"
13182 "\n"
13183 msgstr ""
13184
13185 #. type: textblock
13186 #: ../src/guestfs-actions.pod:4465
13187 msgid ""
13188 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13189 "is just a convenient wrapper around C<guestfs_mknod>."
13190 msgstr ""
13191
13192 #. type: =head2
13193 #: ../src/guestfs-actions.pod:4475
13194 msgid "guestfs_mkfs"
13195 msgstr ""
13196
13197 #. type: verbatim
13198 #: ../src/guestfs-actions.pod:4477
13199 #, no-wrap
13200 msgid ""
13201 " int\n"
13202 " guestfs_mkfs (guestfs_h *g,\n"
13203 "               const char *fstype,\n"
13204 "               const char *device);\n"
13205 "\n"
13206 msgstr ""
13207
13208 #. type: textblock
13209 #: ../src/guestfs-actions.pod:4482 ../fish/guestfish-actions.pod:3019
13210 msgid ""
13211 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13212 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13213 msgstr ""
13214
13215 #. type: =head2
13216 #: ../src/guestfs-actions.pod:4490
13217 msgid "guestfs_mkfs_b"
13218 msgstr ""
13219
13220 #. type: verbatim
13221 #: ../src/guestfs-actions.pod:4492
13222 #, no-wrap
13223 msgid ""
13224 " int\n"
13225 " guestfs_mkfs_b (guestfs_h *g,\n"
13226 "                 const char *fstype,\n"
13227 "                 int blocksize,\n"
13228 "                 const char *device);\n"
13229 "\n"
13230 msgstr ""
13231
13232 #. type: textblock
13233 #: ../src/guestfs-actions.pod:4498
13234 msgid ""
13235 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13236 "block size of the resulting filesystem.  Supported block sizes depend on the "
13237 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13238 msgstr ""
13239
13240 #. type: textblock
13241 #: ../src/guestfs-actions.pod:4503 ../src/guestfs-actions.pod:4546 ../fish/guestfish-actions.pod:3032 ../fish/guestfish-actions.pod:3059
13242 msgid ""
13243 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13244 "cluster size."
13245 msgstr ""
13246
13247 #. type: textblock
13248 #: ../src/guestfs-actions.pod:4508 ../fish/guestfish-actions.pod:3035
13249 msgid ""
13250 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
13251 "instead."
13252 msgstr ""
13253
13254 #. type: =head2
13255 #: ../src/guestfs-actions.pod:4517
13256 msgid "guestfs_mkfs_opts"
13257 msgstr ""
13258
13259 #. type: verbatim
13260 #: ../src/guestfs-actions.pod:4519
13261 #, no-wrap
13262 msgid ""
13263 " int\n"
13264 " guestfs_mkfs_opts (guestfs_h *g,\n"
13265 "                    const char *fstype,\n"
13266 "                    const char *device,\n"
13267 "                    ...);\n"
13268 "\n"
13269 msgstr ""
13270
13271 #. type: verbatim
13272 #: ../src/guestfs-actions.pod:4530
13273 #, no-wrap
13274 msgid ""
13275 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13276 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13277 "\n"
13278 msgstr ""
13279
13280 #. type: textblock
13281 #: ../src/guestfs-actions.pod:4533 ../fish/guestfish-actions.pod:3046
13282 msgid ""
13283 "This function creates a filesystem on C<device>.  The filesystem type is "
13284 "C<fstype>, for example C<ext3>."
13285 msgstr ""
13286
13287 #. type: =item
13288 #: ../src/guestfs-actions.pod:4540 ../fish/guestfish-actions.pod:3053
13289 msgid "C<blocksize>"
13290 msgstr ""
13291
13292 #. type: textblock
13293 #: ../src/guestfs-actions.pod:4542 ../fish/guestfish-actions.pod:3055
13294 msgid ""
13295 "The filesystem block size.  Supported block sizes depend on the filesystem "
13296 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13297 "filesystems."
13298 msgstr ""
13299
13300 #. type: textblock
13301 #: ../src/guestfs-actions.pod:4549 ../fish/guestfish-actions.pod:3062
13302 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13303 msgstr ""
13304
13305 #. type: =item
13306 #: ../src/guestfs-actions.pod:4551 ../fish/guestfish-actions.pod:3064
13307 msgid "C<features>"
13308 msgstr ""
13309
13310 #. type: textblock
13311 #: ../src/guestfs-actions.pod:4553 ../fish/guestfish-actions.pod:3066
13312 msgid "This passes the I<-O> parameter to the external mkfs program."
13313 msgstr ""
13314
13315 #. type: textblock
13316 #: ../src/guestfs-actions.pod:4555 ../fish/guestfish-actions.pod:3068
13317 msgid ""
13318 "For certain filesystem types, this allows extra filesystem features to be "
13319 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13320 msgstr ""
13321
13322 #. type: textblock
13323 #: ../src/guestfs-actions.pod:4559 ../fish/guestfish-actions.pod:3072
13324 msgid ""
13325 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13326 "type."
13327 msgstr ""
13328
13329 #. type: textblock
13330 #: ../src/guestfs-actions.pod:4566
13331 msgid "(Added in 1.7.19)"
13332 msgstr ""
13333
13334 #. type: =head2
13335 #: ../src/guestfs-actions.pod:4568
13336 msgid "guestfs_mkfs_opts_va"
13337 msgstr ""
13338
13339 #. type: verbatim
13340 #: ../src/guestfs-actions.pod:4570
13341 #, no-wrap
13342 msgid ""
13343 " int\n"
13344 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13345 "                       const char *fstype,\n"
13346 "                       const char *device,\n"
13347 "                       va_list args);\n"
13348 "\n"
13349 msgstr ""
13350
13351 #. type: textblock
13352 #: ../src/guestfs-actions.pod:4576
13353 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13354 msgstr ""
13355
13356 #. type: =head2
13357 #: ../src/guestfs-actions.pod:4580
13358 msgid "guestfs_mkfs_opts_argv"
13359 msgstr ""
13360
13361 #. type: verbatim
13362 #: ../src/guestfs-actions.pod:4582
13363 #, no-wrap
13364 msgid ""
13365 " int\n"
13366 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13367 "                         const char *fstype,\n"
13368 "                         const char *device,\n"
13369 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13370 "\n"
13371 msgstr ""
13372
13373 #. type: textblock
13374 #: ../src/guestfs-actions.pod:4588
13375 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13376 msgstr ""
13377
13378 #. type: =head2
13379 #: ../src/guestfs-actions.pod:4592
13380 msgid "guestfs_mkmountpoint"
13381 msgstr ""
13382
13383 #. type: verbatim
13384 #: ../src/guestfs-actions.pod:4594
13385 #, no-wrap
13386 msgid ""
13387 " int\n"
13388 " guestfs_mkmountpoint (guestfs_h *g,\n"
13389 "                       const char *exemptpath);\n"
13390 "\n"
13391 msgstr ""
13392
13393 #. type: textblock
13394 #: ../src/guestfs-actions.pod:4598
13395 msgid ""
13396 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13397 "that can be used to create extra mountpoints before mounting the first "
13398 "filesystem."
13399 msgstr ""
13400
13401 #. type: textblock
13402 #: ../src/guestfs-actions.pod:4602 ../fish/guestfish-actions.pod:3087
13403 msgid ""
13404 "These calls are I<only> necessary in some very limited circumstances, mainly "
13405 "the case where you want to mount a mix of unrelated and/or read-only "
13406 "filesystems together."
13407 msgstr ""
13408
13409 #. type: textblock
13410 #: ../src/guestfs-actions.pod:4606 ../fish/guestfish-actions.pod:3091
13411 msgid ""
13412 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13413 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13414 "inside that.  You can unpack this as follows in guestfish:"
13415 msgstr ""
13416
13417 #. type: verbatim
13418 #: ../src/guestfs-actions.pod:4611 ../fish/guestfish-actions.pod:3096
13419 #, no-wrap
13420 msgid ""
13421 " add-ro Fedora-11-i686-Live.iso\n"
13422 " run\n"
13423 " mkmountpoint /cd\n"
13424 " mkmountpoint /sqsh\n"
13425 " mkmountpoint /ext3fs\n"
13426 " mount /dev/sda /cd\n"
13427 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13428 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13429 "\n"
13430 msgstr ""
13431
13432 #. type: textblock
13433 #: ../src/guestfs-actions.pod:4620 ../fish/guestfish-actions.pod:3105
13434 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13435 msgstr ""
13436
13437 #. type: textblock
13438 #: ../src/guestfs-actions.pod:4622
13439 msgid ""
13440 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13441 "may get unexpected errors if you try to mix these calls.  It is safest to "
13442 "manually unmount filesystems and remove mountpoints after use."
13443 msgstr ""
13444
13445 #. type: textblock
13446 #: ../src/guestfs-actions.pod:4626
13447 msgid ""
13448 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13449 "first, so for this to work for manual mountpoints, you must ensure that the "
13450 "innermost mountpoints have the longest pathnames, as in the example code "
13451 "above."
13452 msgstr ""
13453
13454 #. type: textblock
13455 #: ../src/guestfs-actions.pod:4631 ../fish/guestfish-actions.pod:3116
13456 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13457 msgstr ""
13458
13459 #. type: textblock
13460 #: ../src/guestfs-actions.pod:4633
13461 msgid ""
13462 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13463 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13464 "can also trigger these issues."
13465 msgstr ""
13466
13467 #. type: textblock
13468 #: ../src/guestfs-actions.pod:4639 ../src/guestfs-actions.pod:4953 ../src/guestfs-actions.pod:5863
13469 msgid "(Added in 1.0.62)"
13470 msgstr ""
13471
13472 #. type: =head2
13473 #: ../src/guestfs-actions.pod:4641
13474 msgid "guestfs_mknod"
13475 msgstr ""
13476
13477 #. type: verbatim
13478 #: ../src/guestfs-actions.pod:4643
13479 #, no-wrap
13480 msgid ""
13481 " int\n"
13482 " guestfs_mknod (guestfs_h *g,\n"
13483 "                int mode,\n"
13484 "                int devmajor,\n"
13485 "                int devminor,\n"
13486 "                const char *path);\n"
13487 "\n"
13488 msgstr ""
13489
13490 #. type: textblock
13491 #: ../src/guestfs-actions.pod:4650 ../fish/guestfish-actions.pod:3126
13492 msgid ""
13493 "This call creates block or character special devices, or named pipes "
13494 "(FIFOs)."
13495 msgstr ""
13496
13497 #. type: textblock
13498 #: ../src/guestfs-actions.pod:4653 ../fish/guestfish-actions.pod:3129
13499 msgid ""
13500 "The C<mode> parameter should be the mode, using the standard constants.  "
13501 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13502 "used when creating block and character special devices."
13503 msgstr ""
13504
13505 #. type: textblock
13506 #: ../src/guestfs-actions.pod:4658
13507 msgid ""
13508 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13509 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13510 "regular file).  These constants are available in the standard Linux header "
13511 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13512 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13513 "the appropriate constant for you."
13514 msgstr ""
13515
13516 #. type: =head2
13517 #: ../src/guestfs-actions.pod:4672
13518 msgid "guestfs_mknod_b"
13519 msgstr ""
13520
13521 #. type: verbatim
13522 #: ../src/guestfs-actions.pod:4674
13523 #, no-wrap
13524 msgid ""
13525 " int\n"
13526 " guestfs_mknod_b (guestfs_h *g,\n"
13527 "                  int mode,\n"
13528 "                  int devmajor,\n"
13529 "                  int devminor,\n"
13530 "                  const char *path);\n"
13531 "\n"
13532 msgstr ""
13533
13534 #. type: textblock
13535 #: ../src/guestfs-actions.pod:4681
13536 msgid ""
13537 "This call creates a block device node called C<path> with mode C<mode> and "
13538 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13539 "wrapper around C<guestfs_mknod>."
13540 msgstr ""
13541
13542 #. type: =head2
13543 #: ../src/guestfs-actions.pod:4691
13544 msgid "guestfs_mknod_c"
13545 msgstr ""
13546
13547 #. type: verbatim
13548 #: ../src/guestfs-actions.pod:4693
13549 #, no-wrap
13550 msgid ""
13551 " int\n"
13552 " guestfs_mknod_c (guestfs_h *g,\n"
13553 "                  int mode,\n"
13554 "                  int devmajor,\n"
13555 "                  int devminor,\n"
13556 "                  const char *path);\n"
13557 "\n"
13558 msgstr ""
13559
13560 #. type: textblock
13561 #: ../src/guestfs-actions.pod:4700
13562 msgid ""
13563 "This call creates a char device node called C<path> with mode C<mode> and "
13564 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13565 "wrapper around C<guestfs_mknod>."
13566 msgstr ""
13567
13568 #. type: =head2
13569 #: ../src/guestfs-actions.pod:4710
13570 msgid "guestfs_mkswap"
13571 msgstr ""
13572
13573 #. type: verbatim
13574 #: ../src/guestfs-actions.pod:4712
13575 #, no-wrap
13576 msgid ""
13577 " int\n"
13578 " guestfs_mkswap (guestfs_h *g,\n"
13579 "                 const char *device);\n"
13580 "\n"
13581 msgstr ""
13582
13583 #. type: textblock
13584 #: ../src/guestfs-actions.pod:4716 ../fish/guestfish-actions.pod:3168
13585 msgid "Create a swap partition on C<device>."
13586 msgstr ""
13587
13588 #. type: =head2
13589 #: ../src/guestfs-actions.pod:4722
13590 msgid "guestfs_mkswap_L"
13591 msgstr ""
13592
13593 #. type: verbatim
13594 #: ../src/guestfs-actions.pod:4724
13595 #, no-wrap
13596 msgid ""
13597 " int\n"
13598 " guestfs_mkswap_L (guestfs_h *g,\n"
13599 "                   const char *label,\n"
13600 "                   const char *device);\n"
13601 "\n"
13602 msgstr ""
13603
13604 #. type: textblock
13605 #: ../src/guestfs-actions.pod:4729 ../fish/guestfish-actions.pod:3174
13606 msgid "Create a swap partition on C<device> with label C<label>."
13607 msgstr ""
13608
13609 #. type: textblock
13610 #: ../src/guestfs-actions.pod:4731 ../fish/guestfish-actions.pod:3176
13611 msgid ""
13612 "Note that you cannot attach a swap label to a block device "
13613 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
13614 "the kernel or swap tools."
13615 msgstr ""
13616
13617 #. type: =head2
13618 #: ../src/guestfs-actions.pod:4739
13619 msgid "guestfs_mkswap_U"
13620 msgstr ""
13621
13622 #. type: verbatim
13623 #: ../src/guestfs-actions.pod:4741
13624 #, no-wrap
13625 msgid ""
13626 " int\n"
13627 " guestfs_mkswap_U (guestfs_h *g,\n"
13628 "                   const char *uuid,\n"
13629 "                   const char *device);\n"
13630 "\n"
13631 msgstr ""
13632
13633 #. type: textblock
13634 #: ../src/guestfs-actions.pod:4746 ../fish/guestfish-actions.pod:3184
13635 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13636 msgstr ""
13637
13638 #. type: =head2
13639 #: ../src/guestfs-actions.pod:4752
13640 msgid "guestfs_mkswap_file"
13641 msgstr ""
13642
13643 #. type: verbatim
13644 #: ../src/guestfs-actions.pod:4754
13645 #, no-wrap
13646 msgid ""
13647 " int\n"
13648 " guestfs_mkswap_file (guestfs_h *g,\n"
13649 "                      const char *path);\n"
13650 "\n"
13651 msgstr ""
13652
13653 #. type: textblock
13654 #: ../src/guestfs-actions.pod:4758 ../fish/guestfish-actions.pod:3190
13655 msgid "Create a swap file."
13656 msgstr ""
13657
13658 #. type: textblock
13659 #: ../src/guestfs-actions.pod:4760
13660 msgid ""
13661 "This command just writes a swap file signature to an existing file.  To "
13662 "create the file itself, use something like C<guestfs_fallocate>."
13663 msgstr ""
13664
13665 #. type: =head2
13666 #: ../src/guestfs-actions.pod:4767
13667 msgid "guestfs_modprobe"
13668 msgstr ""
13669
13670 #. type: verbatim
13671 #: ../src/guestfs-actions.pod:4769
13672 #, no-wrap
13673 msgid ""
13674 " int\n"
13675 " guestfs_modprobe (guestfs_h *g,\n"
13676 "                   const char *modulename);\n"
13677 "\n"
13678 msgstr ""
13679
13680 #. type: textblock
13681 #: ../src/guestfs-actions.pod:4773 ../fish/guestfish-actions.pod:3199
13682 msgid "This loads a kernel module in the appliance."
13683 msgstr ""
13684
13685 #. type: textblock
13686 #: ../src/guestfs-actions.pod:4775 ../fish/guestfish-actions.pod:3201
13687 msgid ""
13688 "The kernel module must have been whitelisted when libguestfs was built (see "
13689 "C<appliance/kmod.whitelist.in> in the source)."
13690 msgstr ""
13691
13692 #. type: =head2
13693 #: ../src/guestfs-actions.pod:4782
13694 msgid "guestfs_mount"
13695 msgstr ""
13696
13697 #. type: verbatim
13698 #: ../src/guestfs-actions.pod:4784
13699 #, no-wrap
13700 msgid ""
13701 " int\n"
13702 " guestfs_mount (guestfs_h *g,\n"
13703 "                const char *device,\n"
13704 "                const char *mountpoint);\n"
13705 "\n"
13706 msgstr ""
13707
13708 #. type: textblock
13709 #: ../src/guestfs-actions.pod:4789 ../fish/guestfish-actions.pod:3208
13710 msgid ""
13711 "Mount a guest disk at a position in the filesystem.  Block devices are named "
13712 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
13713 "those block devices contain partitions, they will have the usual names "
13714 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
13715 msgstr ""
13716
13717 #. type: textblock
13718 #: ../src/guestfs-actions.pod:4795 ../fish/guestfish-actions.pod:3214
13719 msgid ""
13720 "The rules are the same as for L<mount(2)>: A filesystem must first be "
13721 "mounted on C</> before others can be mounted.  Other filesystems can only be "
13722 "mounted on directories which already exist."
13723 msgstr ""
13724
13725 #. type: textblock
13726 #: ../src/guestfs-actions.pod:4800 ../fish/guestfish-actions.pod:3219
13727 msgid ""
13728 "The mounted filesystem is writable, if we have sufficient permissions on the "
13729 "underlying device."
13730 msgstr ""
13731
13732 #. type: textblock
13733 #: ../src/guestfs-actions.pod:4803
13734 msgid ""
13735 "B<Important note:> When you use this call, the filesystem options C<sync> "
13736 "and C<noatime> are set implicitly.  This was originally done because we "
13737 "thought it would improve reliability, but it turns out that I<-o sync> has a "
13738 "very large negative performance impact and negligible effect on "
13739 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
13740 "in any code that needs performance, and instead use C<guestfs_mount_options> "
13741 "(use an empty string for the first parameter if you don't want any options)."
13742 msgstr ""
13743
13744 #. type: textblock
13745 #: ../src/guestfs-actions.pod:4815 ../fish/guestfish-actions.pod:3232
13746 msgid ""
13747 "This function is deprecated.  In new code, use the C<mount_options> call "
13748 "instead."
13749 msgstr ""
13750
13751 #. type: =head2
13752 #: ../src/guestfs-actions.pod:4824
13753 msgid "guestfs_mount_9p"
13754 msgstr ""
13755
13756 #. type: verbatim
13757 #: ../src/guestfs-actions.pod:4826
13758 #, no-wrap
13759 msgid ""
13760 " int\n"
13761 " guestfs_mount_9p (guestfs_h *g,\n"
13762 "                   const char *mounttag,\n"
13763 "                   const char *mountpoint,\n"
13764 "                   ...);\n"
13765 "\n"
13766 msgstr ""
13767
13768 #. type: verbatim
13769 #: ../src/guestfs-actions.pod:4837
13770 #, no-wrap
13771 msgid ""
13772 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
13773 "\n"
13774 msgstr ""
13775
13776 #. type: textblock
13777 #: ../src/guestfs-actions.pod:4839 ../fish/guestfish-actions.pod:3243
13778 msgid ""
13779 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
13780 "C<mountpoint>."
13781 msgstr ""
13782
13783 #. type: textblock
13784 #: ../src/guestfs-actions.pod:4842 ../fish/guestfish-actions.pod:3246
13785 msgid ""
13786 "If required, C<trans=virtio> will be automatically added to the options.  "
13787 "Any other options required can be passed in the optional C<options> "
13788 "parameter."
13789 msgstr ""
13790
13791 #. type: =head2
13792 #: ../src/guestfs-actions.pod:4848
13793 msgid "guestfs_mount_9p_va"
13794 msgstr ""
13795
13796 #. type: verbatim
13797 #: ../src/guestfs-actions.pod:4850
13798 #, no-wrap
13799 msgid ""
13800 " int\n"
13801 " guestfs_mount_9p_va (guestfs_h *g,\n"
13802 "                      const char *mounttag,\n"
13803 "                      const char *mountpoint,\n"
13804 "                      va_list args);\n"
13805 "\n"
13806 msgstr ""
13807
13808 #. type: textblock
13809 #: ../src/guestfs-actions.pod:4856
13810 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
13811 msgstr ""
13812
13813 #. type: =head2
13814 #: ../src/guestfs-actions.pod:4860
13815 msgid "guestfs_mount_9p_argv"
13816 msgstr ""
13817
13818 #. type: verbatim
13819 #: ../src/guestfs-actions.pod:4862
13820 #, no-wrap
13821 msgid ""
13822 " int\n"
13823 " guestfs_mount_9p_argv (guestfs_h *g,\n"
13824 "                        const char *mounttag,\n"
13825 "                        const char *mountpoint,\n"
13826 "                        const struct guestfs_mount_9p_argv *optargs);\n"
13827 "\n"
13828 msgstr ""
13829
13830 #. type: textblock
13831 #: ../src/guestfs-actions.pod:4868
13832 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
13833 msgstr ""
13834
13835 #. type: =head2
13836 #: ../src/guestfs-actions.pod:4872
13837 msgid "guestfs_mount_loop"
13838 msgstr ""
13839
13840 #. type: verbatim
13841 #: ../src/guestfs-actions.pod:4874
13842 #, no-wrap
13843 msgid ""
13844 " int\n"
13845 " guestfs_mount_loop (guestfs_h *g,\n"
13846 "                     const char *file,\n"
13847 "                     const char *mountpoint);\n"
13848 "\n"
13849 msgstr ""
13850
13851 #. type: textblock
13852 #: ../src/guestfs-actions.pod:4879 ../fish/guestfish-actions.pod:3256
13853 msgid ""
13854 "This command lets you mount C<file> (a filesystem image in a file) on a "
13855 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
13856 "mountpoint>."
13857 msgstr ""
13858
13859 #. type: =head2
13860 #: ../src/guestfs-actions.pod:4887
13861 msgid "guestfs_mount_options"
13862 msgstr ""
13863
13864 #. type: verbatim
13865 #: ../src/guestfs-actions.pod:4889
13866 #, no-wrap
13867 msgid ""
13868 " int\n"
13869 " guestfs_mount_options (guestfs_h *g,\n"
13870 "                        const char *options,\n"
13871 "                        const char *device,\n"
13872 "                        const char *mountpoint);\n"
13873 "\n"
13874 msgstr ""
13875
13876 #. type: textblock
13877 #: ../src/guestfs-actions.pod:4895
13878 msgid ""
13879 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13880 "the mount options as for the L<mount(8)> I<-o> flag."
13881 msgstr ""
13882
13883 #. type: textblock
13884 #: ../src/guestfs-actions.pod:4899 ../fish/guestfish-actions.pod:3268
13885 msgid ""
13886 "If the C<options> parameter is an empty string, then no options are passed "
13887 "(all options default to whatever the filesystem uses)."
13888 msgstr ""
13889
13890 #. type: textblock
13891 #: ../src/guestfs-actions.pod:4905 ../src/guestfs-actions.pod:4919 ../src/guestfs-actions.pod:4936
13892 msgid "(Added in 1.0.10)"
13893 msgstr ""
13894
13895 #. type: =head2
13896 #: ../src/guestfs-actions.pod:4907
13897 msgid "guestfs_mount_ro"
13898 msgstr ""
13899
13900 #. type: verbatim
13901 #: ../src/guestfs-actions.pod:4909
13902 #, no-wrap
13903 msgid ""
13904 " int\n"
13905 " guestfs_mount_ro (guestfs_h *g,\n"
13906 "                   const char *device,\n"
13907 "                   const char *mountpoint);\n"
13908 "\n"
13909 msgstr ""
13910
13911 #. type: textblock
13912 #: ../src/guestfs-actions.pod:4914
13913 msgid ""
13914 "This is the same as the C<guestfs_mount> command, but it mounts the "
13915 "filesystem with the read-only (I<-o ro>) flag."
13916 msgstr ""
13917
13918 #. type: =head2
13919 #: ../src/guestfs-actions.pod:4921
13920 msgid "guestfs_mount_vfs"
13921 msgstr ""
13922
13923 #. type: verbatim
13924 #: ../src/guestfs-actions.pod:4923
13925 #, no-wrap
13926 msgid ""
13927 " int\n"
13928 " guestfs_mount_vfs (guestfs_h *g,\n"
13929 "                    const char *options,\n"
13930 "                    const char *vfstype,\n"
13931 "                    const char *device,\n"
13932 "                    const char *mountpoint);\n"
13933 "\n"
13934 msgstr ""
13935
13936 #. type: textblock
13937 #: ../src/guestfs-actions.pod:4930
13938 msgid ""
13939 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13940 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
13941 "I<-t> flags."
13942 msgstr ""
13943
13944 #. type: =head2
13945 #: ../src/guestfs-actions.pod:4938
13946 msgid "guestfs_mountpoints"
13947 msgstr ""
13948
13949 #. type: verbatim
13950 #: ../src/guestfs-actions.pod:4940
13951 #, no-wrap
13952 msgid ""
13953 " char **\n"
13954 " guestfs_mountpoints (guestfs_h *g);\n"
13955 "\n"
13956 msgstr ""
13957
13958 #. type: textblock
13959 #: ../src/guestfs-actions.pod:4943
13960 msgid ""
13961 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
13962 "devices.  This one returns a hash table (map) of device name to directory "
13963 "where the device is mounted."
13964 msgstr ""
13965
13966 #. type: =head2
13967 #: ../src/guestfs-actions.pod:4955
13968 msgid "guestfs_mounts"
13969 msgstr ""
13970
13971 #. type: verbatim
13972 #: ../src/guestfs-actions.pod:4957
13973 #, no-wrap
13974 msgid ""
13975 " char **\n"
13976 " guestfs_mounts (guestfs_h *g);\n"
13977 "\n"
13978 msgstr ""
13979
13980 #. type: textblock
13981 #: ../src/guestfs-actions.pod:4960 ../fish/guestfish-actions.pod:3299
13982 msgid ""
13983 "This returns the list of currently mounted filesystems.  It returns the list "
13984 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
13985 msgstr ""
13986
13987 #. type: textblock
13988 #: ../src/guestfs-actions.pod:4963 ../fish/guestfish-actions.pod:3302
13989 msgid "Some internal mounts are not shown."
13990 msgstr ""
13991
13992 #. type: textblock
13993 #: ../src/guestfs-actions.pod:4965
13994 msgid "See also: C<guestfs_mountpoints>"
13995 msgstr ""
13996
13997 #. type: =head2
13998 #: ../src/guestfs-actions.pod:4973
13999 msgid "guestfs_mv"
14000 msgstr ""
14001
14002 #. type: verbatim
14003 #: ../src/guestfs-actions.pod:4975
14004 #, no-wrap
14005 msgid ""
14006 " int\n"
14007 " guestfs_mv (guestfs_h *g,\n"
14008 "             const char *src,\n"
14009 "             const char *dest);\n"
14010 "\n"
14011 msgstr ""
14012
14013 #. type: textblock
14014 #: ../src/guestfs-actions.pod:4980 ../fish/guestfish-actions.pod:3310
14015 msgid ""
14016 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14017 "destination filename or destination directory."
14018 msgstr ""
14019
14020 #. type: =head2
14021 #: ../src/guestfs-actions.pod:4987
14022 msgid "guestfs_ntfs_3g_probe"
14023 msgstr ""
14024
14025 #. type: verbatim
14026 #: ../src/guestfs-actions.pod:4989
14027 #, no-wrap
14028 msgid ""
14029 " int\n"
14030 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14031 "                        int rw,\n"
14032 "                        const char *device);\n"
14033 "\n"
14034 msgstr ""
14035
14036 #. type: textblock
14037 #: ../src/guestfs-actions.pod:4994 ../fish/guestfish-actions.pod:3317
14038 msgid ""
14039 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14040 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
14041 "read-write, and some cannot be mounted at all)."
14042 msgstr ""
14043
14044 #. type: textblock
14045 #: ../src/guestfs-actions.pod:4998 ../fish/guestfish-actions.pod:3321
14046 msgid ""
14047 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14048 "can be mounted read-write.  Set it to false if you want to test if the "
14049 "volume can be mounted read-only."
14050 msgstr ""
14051
14052 #. type: textblock
14053 #: ../src/guestfs-actions.pod:5002 ../fish/guestfish-actions.pod:3325
14054 msgid ""
14055 "The return value is an integer which C<0> if the operation would succeed, or "
14056 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14057 msgstr ""
14058
14059 #. type: textblock
14060 #: ../src/guestfs-actions.pod:5008
14061 msgid "(Added in 1.0.43)"
14062 msgstr ""
14063
14064 #. type: =head2
14065 #: ../src/guestfs-actions.pod:5010
14066 msgid "guestfs_ntfsresize"
14067 msgstr ""
14068
14069 #. type: verbatim
14070 #: ../src/guestfs-actions.pod:5012
14071 #, no-wrap
14072 msgid ""
14073 " int\n"
14074 " guestfs_ntfsresize (guestfs_h *g,\n"
14075 "                     const char *device);\n"
14076 "\n"
14077 msgstr ""
14078
14079 #. type: textblock
14080 #: ../src/guestfs-actions.pod:5016 ../fish/guestfish-actions.pod:3333
14081 msgid ""
14082 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14083 "size of the underlying device.  See also L<ntfsresize(8)>."
14084 msgstr ""
14085
14086 #. type: =head2
14087 #: ../src/guestfs-actions.pod:5024
14088 msgid "guestfs_ntfsresize_size"
14089 msgstr ""
14090
14091 #. type: verbatim
14092 #: ../src/guestfs-actions.pod:5026
14093 #, no-wrap
14094 msgid ""
14095 " int\n"
14096 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14097 "                          const char *device,\n"
14098 "                          int64_t size);\n"
14099 "\n"
14100 msgstr ""
14101
14102 #. type: textblock
14103 #: ../src/guestfs-actions.pod:5031
14104 msgid ""
14105 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14106 "to specify the new size (in bytes) explicitly."
14107 msgstr ""
14108
14109 #. type: textblock
14110 #: ../src/guestfs-actions.pod:5036 ../src/guestfs-actions.pod:5472 ../src/guestfs-actions.pod:5545 ../src/guestfs-actions.pod:5811 ../src/guestfs-actions.pod:7417
14111 msgid "(Added in 1.3.14)"
14112 msgstr ""
14113
14114 #. type: =head2
14115 #: ../src/guestfs-actions.pod:5038
14116 msgid "guestfs_part_add"
14117 msgstr ""
14118
14119 #. type: verbatim
14120 #: ../src/guestfs-actions.pod:5040
14121 #, no-wrap
14122 msgid ""
14123 " int\n"
14124 " guestfs_part_add (guestfs_h *g,\n"
14125 "                   const char *device,\n"
14126 "                   const char *prlogex,\n"
14127 "                   int64_t startsect,\n"
14128 "                   int64_t endsect);\n"
14129 "\n"
14130 msgstr ""
14131
14132 #. type: textblock
14133 #: ../src/guestfs-actions.pod:5047
14134 msgid ""
14135 "This command adds a partition to C<device>.  If there is no partition table "
14136 "on the device, call C<guestfs_part_init> first."
14137 msgstr ""
14138
14139 #. type: textblock
14140 #: ../src/guestfs-actions.pod:5050 ../fish/guestfish-actions.pod:3351
14141 msgid ""
14142 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14143 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14144 "C<logical>) and C<e> (or C<extended>) partition types."
14145 msgstr ""
14146
14147 #. type: textblock
14148 #: ../src/guestfs-actions.pod:5055 ../fish/guestfish-actions.pod:3356
14149 msgid ""
14150 "C<startsect> and C<endsect> are the start and end of the partition in "
14151 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14152 "from the end of the disk (C<-1> is the last sector)."
14153 msgstr ""
14154
14155 #. type: textblock
14156 #: ../src/guestfs-actions.pod:5059
14157 msgid ""
14158 "Creating a partition which covers the whole disk is not so easy.  Use "
14159 "C<guestfs_part_disk> to do that."
14160 msgstr ""
14161
14162 #. type: textblock
14163 #: ../src/guestfs-actions.pod:5064 ../src/guestfs-actions.pod:5102 ../src/guestfs-actions.pod:5155 ../src/guestfs-actions.pod:5233 ../src/guestfs-actions.pod:5271 ../src/guestfs-actions.pod:5290 ../src/guestfs-actions.pod:5330
14164 msgid "(Added in 1.0.78)"
14165 msgstr ""
14166
14167 #. type: =head2
14168 #: ../src/guestfs-actions.pod:5066
14169 msgid "guestfs_part_del"
14170 msgstr ""
14171
14172 #. type: verbatim
14173 #: ../src/guestfs-actions.pod:5068
14174 #, no-wrap
14175 msgid ""
14176 " int\n"
14177 " guestfs_part_del (guestfs_h *g,\n"
14178 "                   const char *device,\n"
14179 "                   int partnum);\n"
14180 "\n"
14181 msgstr ""
14182
14183 #. type: textblock
14184 #: ../src/guestfs-actions.pod:5073 ../fish/guestfish-actions.pod:3367
14185 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14186 msgstr ""
14187
14188 #. type: textblock
14189 #: ../src/guestfs-actions.pod:5075 ../fish/guestfish-actions.pod:3369
14190 msgid ""
14191 "Note that in the case of MBR partitioning, deleting an extended partition "
14192 "also deletes any logical partitions it contains."
14193 msgstr ""
14194
14195 #. type: =head2
14196 #: ../src/guestfs-actions.pod:5083
14197 msgid "guestfs_part_disk"
14198 msgstr ""
14199
14200 #. type: verbatim
14201 #: ../src/guestfs-actions.pod:5085
14202 #, no-wrap
14203 msgid ""
14204 " int\n"
14205 " guestfs_part_disk (guestfs_h *g,\n"
14206 "                    const char *device,\n"
14207 "                    const char *parttype);\n"
14208 "\n"
14209 msgstr ""
14210
14211 #. type: textblock
14212 #: ../src/guestfs-actions.pod:5090
14213 msgid ""
14214 "This command is simply a combination of C<guestfs_part_init> followed by "
14215 "C<guestfs_part_add> to create a single primary partition covering the whole "
14216 "disk."
14217 msgstr ""
14218
14219 #. type: textblock
14220 #: ../src/guestfs-actions.pod:5094
14221 msgid ""
14222 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14223 "possible values are described in C<guestfs_part_init>."
14224 msgstr ""
14225
14226 #. type: =head2
14227 #: ../src/guestfs-actions.pod:5104
14228 msgid "guestfs_part_get_bootable"
14229 msgstr ""
14230
14231 #. type: verbatim
14232 #: ../src/guestfs-actions.pod:5106
14233 #, no-wrap
14234 msgid ""
14235 " int\n"
14236 " guestfs_part_get_bootable (guestfs_h *g,\n"
14237 "                            const char *device,\n"
14238 "                            int partnum);\n"
14239 "\n"
14240 msgstr ""
14241
14242 #. type: textblock
14243 #: ../src/guestfs-actions.pod:5111 ../fish/guestfish-actions.pod:3391
14244 msgid ""
14245 "This command returns true if the partition C<partnum> on C<device> has the "
14246 "bootable flag set."
14247 msgstr ""
14248
14249 #. type: textblock
14250 #: ../src/guestfs-actions.pod:5114
14251 msgid "See also C<guestfs_part_set_bootable>."
14252 msgstr ""
14253
14254 #. type: =head2
14255 #: ../src/guestfs-actions.pod:5120
14256 msgid "guestfs_part_get_mbr_id"
14257 msgstr ""
14258
14259 #. type: verbatim
14260 #: ../src/guestfs-actions.pod:5122
14261 #, no-wrap
14262 msgid ""
14263 " int\n"
14264 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14265 "                          const char *device,\n"
14266 "                          int partnum);\n"
14267 "\n"
14268 msgstr ""
14269
14270 #. type: textblock
14271 #: ../src/guestfs-actions.pod:5127 ../fish/guestfish-actions.pod:3400
14272 msgid ""
14273 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14274 "partition C<partnum>."
14275 msgstr ""
14276
14277 #. type: textblock
14278 #: ../src/guestfs-actions.pod:5130 ../src/guestfs-actions.pod:5306
14279 msgid ""
14280 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14281 "undefined results for other partition table types (see "
14282 "C<guestfs_part_get_parttype>)."
14283 msgstr ""
14284
14285 #. type: =head2
14286 #: ../src/guestfs-actions.pod:5138
14287 msgid "guestfs_part_get_parttype"
14288 msgstr ""
14289
14290 #. type: verbatim
14291 #: ../src/guestfs-actions.pod:5140
14292 #, no-wrap
14293 msgid ""
14294 " char *\n"
14295 " guestfs_part_get_parttype (guestfs_h *g,\n"
14296 "                            const char *device);\n"
14297 "\n"
14298 msgstr ""
14299
14300 #. type: textblock
14301 #: ../src/guestfs-actions.pod:5144 ../fish/guestfish-actions.pod:3411
14302 msgid ""
14303 "This command examines the partition table on C<device> and returns the "
14304 "partition table type (format) being used."
14305 msgstr ""
14306
14307 #. type: textblock
14308 #: ../src/guestfs-actions.pod:5147
14309 msgid ""
14310 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14311 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14312 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14313 msgstr ""
14314
14315 #. type: =head2
14316 #: ../src/guestfs-actions.pod:5157
14317 msgid "guestfs_part_init"
14318 msgstr ""
14319
14320 #. type: verbatim
14321 #: ../src/guestfs-actions.pod:5159
14322 #, no-wrap
14323 msgid ""
14324 " int\n"
14325 " guestfs_part_init (guestfs_h *g,\n"
14326 "                    const char *device,\n"
14327 "                    const char *parttype);\n"
14328 "\n"
14329 msgstr ""
14330
14331 #. type: textblock
14332 #: ../src/guestfs-actions.pod:5164 ../fish/guestfish-actions.pod:3423
14333 msgid ""
14334 "This creates an empty partition table on C<device> of one of the partition "
14335 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14336 "(for large disks)."
14337 msgstr ""
14338
14339 #. type: textblock
14340 #: ../src/guestfs-actions.pod:5168
14341 msgid ""
14342 "Initially there are no partitions.  Following this, you should call "
14343 "C<guestfs_part_add> for each partition required."
14344 msgstr ""
14345
14346 #. type: textblock
14347 #: ../src/guestfs-actions.pod:5171 ../fish/guestfish-actions.pod:3430
14348 msgid "Possible values for C<parttype> are:"
14349 msgstr ""
14350
14351 #. type: =item
14352 #: ../src/guestfs-actions.pod:5175 ../fish/guestfish-actions.pod:3434
14353 msgid "B<efi> | B<gpt>"
14354 msgstr ""
14355
14356 #. type: textblock
14357 #: ../src/guestfs-actions.pod:5177 ../fish/guestfish-actions.pod:3436
14358 msgid "Intel EFI / GPT partition table."
14359 msgstr ""
14360
14361 #. type: textblock
14362 #: ../src/guestfs-actions.pod:5179 ../fish/guestfish-actions.pod:3438
14363 msgid ""
14364 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14365 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14366 "the C<mbr> format."
14367 msgstr ""
14368
14369 #. type: =item
14370 #: ../src/guestfs-actions.pod:5183 ../fish/guestfish-actions.pod:3442
14371 msgid "B<mbr> | B<msdos>"
14372 msgstr ""
14373
14374 #. type: textblock
14375 #: ../src/guestfs-actions.pod:5185 ../fish/guestfish-actions.pod:3444
14376 msgid ""
14377 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14378 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14379 "TB.  For large disks we recommend using C<gpt>."
14380 msgstr ""
14381
14382 #. type: textblock
14383 #: ../src/guestfs-actions.pod:5192 ../fish/guestfish-actions.pod:3451
14384 msgid "Other partition table types that may work but are not supported include:"
14385 msgstr ""
14386
14387 #. type: =item
14388 #: ../src/guestfs-actions.pod:5197 ../fish/guestfish-actions.pod:3456
14389 msgid "B<aix>"
14390 msgstr ""
14391
14392 #. type: textblock
14393 #: ../src/guestfs-actions.pod:5199 ../fish/guestfish-actions.pod:3458
14394 msgid "AIX disk labels."
14395 msgstr ""
14396
14397 #. type: =item
14398 #: ../src/guestfs-actions.pod:5201 ../fish/guestfish-actions.pod:3460
14399 msgid "B<amiga> | B<rdb>"
14400 msgstr ""
14401
14402 #. type: textblock
14403 #: ../src/guestfs-actions.pod:5203 ../fish/guestfish-actions.pod:3462
14404 msgid "Amiga \"Rigid Disk Block\" format."
14405 msgstr ""
14406
14407 #. type: =item
14408 #: ../src/guestfs-actions.pod:5205 ../fish/guestfish-actions.pod:3464
14409 msgid "B<bsd>"
14410 msgstr ""
14411
14412 #. type: textblock
14413 #: ../src/guestfs-actions.pod:5207 ../fish/guestfish-actions.pod:3466
14414 msgid "BSD disk labels."
14415 msgstr ""
14416
14417 #. type: =item
14418 #: ../src/guestfs-actions.pod:5209 ../fish/guestfish-actions.pod:3468
14419 msgid "B<dasd>"
14420 msgstr ""
14421
14422 #. type: textblock
14423 #: ../src/guestfs-actions.pod:5211 ../fish/guestfish-actions.pod:3470
14424 msgid "DASD, used on IBM mainframes."
14425 msgstr ""
14426
14427 #. type: =item
14428 #: ../src/guestfs-actions.pod:5213 ../fish/guestfish-actions.pod:3472
14429 msgid "B<dvh>"
14430 msgstr ""
14431
14432 #. type: textblock
14433 #: ../src/guestfs-actions.pod:5215 ../fish/guestfish-actions.pod:3474
14434 msgid "MIPS/SGI volumes."
14435 msgstr ""
14436
14437 #. type: =item
14438 #: ../src/guestfs-actions.pod:5217 ../fish/guestfish-actions.pod:3476
14439 msgid "B<mac>"
14440 msgstr ""
14441
14442 #. type: textblock
14443 #: ../src/guestfs-actions.pod:5219 ../fish/guestfish-actions.pod:3478
14444 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14445 msgstr ""
14446
14447 #. type: =item
14448 #: ../src/guestfs-actions.pod:5221 ../fish/guestfish-actions.pod:3480
14449 msgid "B<pc98>"
14450 msgstr ""
14451
14452 #. type: textblock
14453 #: ../src/guestfs-actions.pod:5223 ../fish/guestfish-actions.pod:3482
14454 msgid "NEC PC-98 format, common in Japan apparently."
14455 msgstr ""
14456
14457 #. type: =item
14458 #: ../src/guestfs-actions.pod:5225 ../fish/guestfish-actions.pod:3484
14459 msgid "B<sun>"
14460 msgstr ""
14461
14462 #. type: textblock
14463 #: ../src/guestfs-actions.pod:5227 ../fish/guestfish-actions.pod:3486
14464 msgid "Sun disk labels."
14465 msgstr ""
14466
14467 #. type: =head2
14468 #: ../src/guestfs-actions.pod:5235
14469 msgid "guestfs_part_list"
14470 msgstr ""
14471
14472 #. type: verbatim
14473 #: ../src/guestfs-actions.pod:5237
14474 #, no-wrap
14475 msgid ""
14476 " struct guestfs_partition_list *\n"
14477 " guestfs_part_list (guestfs_h *g,\n"
14478 "                    const char *device);\n"
14479 "\n"
14480 msgstr ""
14481
14482 #. type: textblock
14483 #: ../src/guestfs-actions.pod:5241 ../fish/guestfish-actions.pod:3494
14484 msgid ""
14485 "This command parses the partition table on C<device> and returns the list of "
14486 "partitions found."
14487 msgstr ""
14488
14489 #. type: textblock
14490 #: ../src/guestfs-actions.pod:5244 ../fish/guestfish-actions.pod:3497
14491 msgid "The fields in the returned structure are:"
14492 msgstr ""
14493
14494 #. type: =item
14495 #: ../src/guestfs-actions.pod:5248 ../fish/guestfish-actions.pod:3501
14496 msgid "B<part_num>"
14497 msgstr ""
14498
14499 #. type: textblock
14500 #: ../src/guestfs-actions.pod:5250 ../fish/guestfish-actions.pod:3503
14501 msgid "Partition number, counting from 1."
14502 msgstr ""
14503
14504 #. type: =item
14505 #: ../src/guestfs-actions.pod:5252 ../fish/guestfish-actions.pod:3505
14506 msgid "B<part_start>"
14507 msgstr ""
14508
14509 #. type: textblock
14510 #: ../src/guestfs-actions.pod:5254
14511 msgid ""
14512 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14513 "the device's sector size, see C<guestfs_blockdev_getss>."
14514 msgstr ""
14515
14516 #. type: =item
14517 #: ../src/guestfs-actions.pod:5257 ../fish/guestfish-actions.pod:3510
14518 msgid "B<part_end>"
14519 msgstr ""
14520
14521 #. type: textblock
14522 #: ../src/guestfs-actions.pod:5259 ../fish/guestfish-actions.pod:3512
14523 msgid "End of the partition in bytes."
14524 msgstr ""
14525
14526 #. type: =item
14527 #: ../src/guestfs-actions.pod:5261 ../fish/guestfish-actions.pod:3514
14528 msgid "B<part_size>"
14529 msgstr ""
14530
14531 #. type: textblock
14532 #: ../src/guestfs-actions.pod:5263 ../fish/guestfish-actions.pod:3516
14533 msgid "Size of the partition in bytes."
14534 msgstr ""
14535
14536 #. type: textblock
14537 #: ../src/guestfs-actions.pod:5267
14538 msgid ""
14539 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14540 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14541 "use>."
14542 msgstr ""
14543
14544 #. type: =head2
14545 #: ../src/guestfs-actions.pod:5273
14546 msgid "guestfs_part_set_bootable"
14547 msgstr ""
14548
14549 #. type: verbatim
14550 #: ../src/guestfs-actions.pod:5275
14551 #, no-wrap
14552 msgid ""
14553 " int\n"
14554 " guestfs_part_set_bootable (guestfs_h *g,\n"
14555 "                            const char *device,\n"
14556 "                            int partnum,\n"
14557 "                            int bootable);\n"
14558 "\n"
14559 msgstr ""
14560
14561 #. type: textblock
14562 #: ../src/guestfs-actions.pod:5281 ../fish/guestfish-actions.pod:3524
14563 msgid ""
14564 "This sets the bootable flag on partition numbered C<partnum> on device "
14565 "C<device>.  Note that partitions are numbered from 1."
14566 msgstr ""
14567
14568 #. type: textblock
14569 #: ../src/guestfs-actions.pod:5284 ../fish/guestfish-actions.pod:3527
14570 msgid ""
14571 "The bootable flag is used by some operating systems (notably Windows) to "
14572 "determine which partition to boot from.  It is by no means universally "
14573 "recognized."
14574 msgstr ""
14575
14576 #. type: =head2
14577 #: ../src/guestfs-actions.pod:5292
14578 msgid "guestfs_part_set_mbr_id"
14579 msgstr ""
14580
14581 #. type: verbatim
14582 #: ../src/guestfs-actions.pod:5294
14583 #, no-wrap
14584 msgid ""
14585 " int\n"
14586 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14587 "                          const char *device,\n"
14588 "                          int partnum,\n"
14589 "                          int idbyte);\n"
14590 "\n"
14591 msgstr ""
14592
14593 #. type: textblock
14594 #: ../src/guestfs-actions.pod:5300 ../fish/guestfish-actions.pod:3535
14595 msgid ""
14596 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14597 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14598 "documentation are in fact hexadecimal numbers, but usually documented "
14599 "without any leading \"0x\" which might be confusing."
14600 msgstr ""
14601
14602 #. type: =head2
14603 #: ../src/guestfs-actions.pod:5314
14604 msgid "guestfs_part_set_name"
14605 msgstr ""
14606
14607 #. type: verbatim
14608 #: ../src/guestfs-actions.pod:5316
14609 #, no-wrap
14610 msgid ""
14611 " int\n"
14612 " guestfs_part_set_name (guestfs_h *g,\n"
14613 "                        const char *device,\n"
14614 "                        int partnum,\n"
14615 "                        const char *name);\n"
14616 "\n"
14617 msgstr ""
14618
14619 #. type: textblock
14620 #: ../src/guestfs-actions.pod:5322 ../fish/guestfish-actions.pod:3549
14621 msgid ""
14622 "This sets the partition name on partition numbered C<partnum> on device "
14623 "C<device>.  Note that partitions are numbered from 1."
14624 msgstr ""
14625
14626 #. type: textblock
14627 #: ../src/guestfs-actions.pod:5325 ../fish/guestfish-actions.pod:3552
14628 msgid ""
14629 "The partition name can only be set on certain types of partition table.  "
14630 "This works on C<gpt> but not on C<mbr> partitions."
14631 msgstr ""
14632
14633 #. type: =head2
14634 #: ../src/guestfs-actions.pod:5332
14635 msgid "guestfs_part_to_dev"
14636 msgstr ""
14637
14638 #. type: verbatim
14639 #: ../src/guestfs-actions.pod:5334
14640 #, no-wrap
14641 msgid ""
14642 " char *\n"
14643 " guestfs_part_to_dev (guestfs_h *g,\n"
14644 "                      const char *partition);\n"
14645 "\n"
14646 msgstr ""
14647
14648 #. type: textblock
14649 #: ../src/guestfs-actions.pod:5338 ../fish/guestfish-actions.pod:3559
14650 msgid ""
14651 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14652 "partition number, returning the device name (eg. \"/dev/sdb\")."
14653 msgstr ""
14654
14655 #. type: textblock
14656 #: ../src/guestfs-actions.pod:5342
14657 msgid ""
14658 "The named partition must exist, for example as a string returned from "
14659 "C<guestfs_list_partitions>."
14660 msgstr ""
14661
14662 #. type: =head2
14663 #: ../src/guestfs-actions.pod:5350
14664 msgid "guestfs_ping_daemon"
14665 msgstr ""
14666
14667 #. type: verbatim
14668 #: ../src/guestfs-actions.pod:5352
14669 #, no-wrap
14670 msgid ""
14671 " int\n"
14672 " guestfs_ping_daemon (guestfs_h *g);\n"
14673 "\n"
14674 msgstr ""
14675
14676 #. type: textblock
14677 #: ../src/guestfs-actions.pod:5355 ../fish/guestfish-actions.pod:3570
14678 msgid ""
14679 "This is a test probe into the guestfs daemon running inside the qemu "
14680 "subprocess.  Calling this function checks that the daemon responds to the "
14681 "ping message, without affecting the daemon or attached block device(s) in "
14682 "any other way."
14683 msgstr ""
14684
14685 #. type: =head2
14686 #: ../src/guestfs-actions.pod:5364
14687 msgid "guestfs_pread"
14688 msgstr ""
14689
14690 #. type: verbatim
14691 #: ../src/guestfs-actions.pod:5366
14692 #, no-wrap
14693 msgid ""
14694 " char *\n"
14695 " guestfs_pread (guestfs_h *g,\n"
14696 "                const char *path,\n"
14697 "                int count,\n"
14698 "                int64_t offset,\n"
14699 "                size_t *size_r);\n"
14700 "\n"
14701 msgstr ""
14702
14703 #. type: textblock
14704 #: ../src/guestfs-actions.pod:5373 ../fish/guestfish-actions.pod:3579
14705 msgid ""
14706 "This command lets you read part of a file.  It reads C<count> bytes of the "
14707 "file, starting at C<offset>, from file C<path>."
14708 msgstr ""
14709
14710 #. type: textblock
14711 #: ../src/guestfs-actions.pod:5376 ../src/guestfs-actions.pod:5402 ../fish/guestfish-actions.pod:3582 ../fish/guestfish-actions.pod:3597
14712 msgid ""
14713 "This may read fewer bytes than requested.  For further details see the "
14714 "L<pread(2)> system call."
14715 msgstr ""
14716
14717 #. type: textblock
14718 #: ../src/guestfs-actions.pod:5379
14719 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14720 msgstr ""
14721
14722 #. type: =head2
14723 #: ../src/guestfs-actions.pod:5390
14724 msgid "guestfs_pread_device"
14725 msgstr ""
14726
14727 #. type: verbatim
14728 #: ../src/guestfs-actions.pod:5392
14729 #, no-wrap
14730 msgid ""
14731 " char *\n"
14732 " guestfs_pread_device (guestfs_h *g,\n"
14733 "                       const char *device,\n"
14734 "                       int count,\n"
14735 "                       int64_t offset,\n"
14736 "                       size_t *size_r);\n"
14737 "\n"
14738 msgstr ""
14739
14740 #. type: textblock
14741 #: ../src/guestfs-actions.pod:5399 ../fish/guestfish-actions.pod:3594
14742 msgid ""
14743 "This command lets you read part of a file.  It reads C<count> bytes of "
14744 "C<device>, starting at C<offset>."
14745 msgstr ""
14746
14747 #. type: textblock
14748 #: ../src/guestfs-actions.pod:5405
14749 msgid "See also C<guestfs_pread>."
14750 msgstr ""
14751
14752 #. type: textblock
14753 #: ../src/guestfs-actions.pod:5414
14754 msgid "(Added in 1.5.21)"
14755 msgstr ""
14756
14757 #. type: =head2
14758 #: ../src/guestfs-actions.pod:5416
14759 msgid "guestfs_pvcreate"
14760 msgstr ""
14761
14762 #. type: verbatim
14763 #: ../src/guestfs-actions.pod:5418
14764 #, no-wrap
14765 msgid ""
14766 " int\n"
14767 " guestfs_pvcreate (guestfs_h *g,\n"
14768 "                   const char *device);\n"
14769 "\n"
14770 msgstr ""
14771
14772 #. type: textblock
14773 #: ../src/guestfs-actions.pod:5422 ../fish/guestfish-actions.pod:3609
14774 msgid ""
14775 "This creates an LVM physical volume on the named C<device>, where C<device> "
14776 "should usually be a partition name such as C</dev/sda1>."
14777 msgstr ""
14778
14779 #. type: =head2
14780 #: ../src/guestfs-actions.pod:5430
14781 msgid "guestfs_pvremove"
14782 msgstr ""
14783
14784 #. type: verbatim
14785 #: ../src/guestfs-actions.pod:5432
14786 #, no-wrap
14787 msgid ""
14788 " int\n"
14789 " guestfs_pvremove (guestfs_h *g,\n"
14790 "                   const char *device);\n"
14791 "\n"
14792 msgstr ""
14793
14794 #. type: textblock
14795 #: ../src/guestfs-actions.pod:5436 ../fish/guestfish-actions.pod:3617
14796 msgid ""
14797 "This wipes a physical volume C<device> so that LVM will no longer recognise "
14798 "it."
14799 msgstr ""
14800
14801 #. type: textblock
14802 #: ../src/guestfs-actions.pod:5439 ../fish/guestfish-actions.pod:3620
14803 msgid ""
14804 "The implementation uses the C<pvremove> command which refuses to wipe "
14805 "physical volumes that contain any volume groups, so you have to remove those "
14806 "first."
14807 msgstr ""
14808
14809 #. type: =head2
14810 #: ../src/guestfs-actions.pod:5447
14811 msgid "guestfs_pvresize"
14812 msgstr ""
14813
14814 #. type: verbatim
14815 #: ../src/guestfs-actions.pod:5449
14816 #, no-wrap
14817 msgid ""
14818 " int\n"
14819 " guestfs_pvresize (guestfs_h *g,\n"
14820 "                   const char *device);\n"
14821 "\n"
14822 msgstr ""
14823
14824 #. type: textblock
14825 #: ../src/guestfs-actions.pod:5453 ../fish/guestfish-actions.pod:3628
14826 msgid ""
14827 "This resizes (expands or shrinks) an existing LVM physical volume to match "
14828 "the new size of the underlying device."
14829 msgstr ""
14830
14831 #. type: =head2
14832 #: ../src/guestfs-actions.pod:5460
14833 msgid "guestfs_pvresize_size"
14834 msgstr ""
14835
14836 #. type: verbatim
14837 #: ../src/guestfs-actions.pod:5462
14838 #, no-wrap
14839 msgid ""
14840 " int\n"
14841 " guestfs_pvresize_size (guestfs_h *g,\n"
14842 "                        const char *device,\n"
14843 "                        int64_t size);\n"
14844 "\n"
14845 msgstr ""
14846
14847 #. type: textblock
14848 #: ../src/guestfs-actions.pod:5467
14849 msgid ""
14850 "This command is the same as C<guestfs_pvresize> except that it allows you to "
14851 "specify the new size (in bytes) explicitly."
14852 msgstr ""
14853
14854 #. type: =head2
14855 #: ../src/guestfs-actions.pod:5474
14856 msgid "guestfs_pvs"
14857 msgstr ""
14858
14859 #. type: verbatim
14860 #: ../src/guestfs-actions.pod:5476
14861 #, no-wrap
14862 msgid ""
14863 " char **\n"
14864 " guestfs_pvs (guestfs_h *g);\n"
14865 "\n"
14866 msgstr ""
14867
14868 #. type: textblock
14869 #: ../src/guestfs-actions.pod:5479 ../fish/guestfish-actions.pod:3642
14870 msgid ""
14871 "List all the physical volumes detected.  This is the equivalent of the "
14872 "L<pvs(8)> command."
14873 msgstr ""
14874
14875 #. type: textblock
14876 #: ../src/guestfs-actions.pod:5482 ../fish/guestfish-actions.pod:3645
14877 msgid ""
14878 "This returns a list of just the device names that contain PVs "
14879 "(eg. C</dev/sda2>)."
14880 msgstr ""
14881
14882 #. type: textblock
14883 #: ../src/guestfs-actions.pod:5485
14884 msgid "See also C<guestfs_pvs_full>."
14885 msgstr ""
14886
14887 #. type: =head2
14888 #: ../src/guestfs-actions.pod:5493
14889 msgid "guestfs_pvs_full"
14890 msgstr ""
14891
14892 #. type: verbatim
14893 #: ../src/guestfs-actions.pod:5495
14894 #, no-wrap
14895 msgid ""
14896 " struct guestfs_lvm_pv_list *\n"
14897 " guestfs_pvs_full (guestfs_h *g);\n"
14898 "\n"
14899 msgstr ""
14900
14901 #. type: textblock
14902 #: ../src/guestfs-actions.pod:5498 ../fish/guestfish-actions.pod:3654
14903 msgid ""
14904 "List all the physical volumes detected.  This is the equivalent of the "
14905 "L<pvs(8)> command.  The \"full\" version includes all fields."
14906 msgstr ""
14907
14908 #. type: textblock
14909 #: ../src/guestfs-actions.pod:5501
14910 msgid ""
14911 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
14912 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
14913 "use>."
14914 msgstr ""
14915
14916 #. type: =head2
14917 #: ../src/guestfs-actions.pod:5507
14918 msgid "guestfs_pvuuid"
14919 msgstr ""
14920
14921 #. type: verbatim
14922 #: ../src/guestfs-actions.pod:5509
14923 #, no-wrap
14924 msgid ""
14925 " char *\n"
14926 " guestfs_pvuuid (guestfs_h *g,\n"
14927 "                 const char *device);\n"
14928 "\n"
14929 msgstr ""
14930
14931 #. type: textblock
14932 #: ../src/guestfs-actions.pod:5513 ../fish/guestfish-actions.pod:3661
14933 msgid "This command returns the UUID of the LVM PV C<device>."
14934 msgstr ""
14935
14936 #. type: =head2
14937 #: ../src/guestfs-actions.pod:5520
14938 msgid "guestfs_pwrite"
14939 msgstr ""
14940
14941 #. type: verbatim
14942 #: ../src/guestfs-actions.pod:5522
14943 #, no-wrap
14944 msgid ""
14945 " int\n"
14946 " guestfs_pwrite (guestfs_h *g,\n"
14947 "                 const char *path,\n"
14948 "                 const char *content,\n"
14949 "                 size_t content_size,\n"
14950 "                 int64_t offset);\n"
14951 "\n"
14952 msgstr ""
14953
14954 #. type: textblock
14955 #: ../src/guestfs-actions.pod:5529 ../fish/guestfish-actions.pod:3667
14956 msgid ""
14957 "This command writes to part of a file.  It writes the data buffer C<content> "
14958 "to the file C<path> starting at offset C<offset>."
14959 msgstr ""
14960
14961 #. type: textblock
14962 #: ../src/guestfs-actions.pod:5532 ../fish/guestfish-actions.pod:3670
14963 msgid ""
14964 "This command implements the L<pwrite(2)> system call, and like that system "
14965 "call it may not write the full data requested.  The return value is the "
14966 "number of bytes that were actually written to the file.  This could even be "
14967 "0, although short writes are unlikely for regular files in ordinary "
14968 "circumstances."
14969 msgstr ""
14970
14971 #. type: textblock
14972 #: ../src/guestfs-actions.pod:5538
14973 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
14974 msgstr ""
14975
14976 #. type: =head2
14977 #: ../src/guestfs-actions.pod:5547
14978 msgid "guestfs_pwrite_device"
14979 msgstr ""
14980
14981 #. type: verbatim
14982 #: ../src/guestfs-actions.pod:5549
14983 #, no-wrap
14984 msgid ""
14985 " int\n"
14986 " guestfs_pwrite_device (guestfs_h *g,\n"
14987 "                        const char *device,\n"
14988 "                        const char *content,\n"
14989 "                        size_t content_size,\n"
14990 "                        int64_t offset);\n"
14991 "\n"
14992 msgstr ""
14993
14994 #. type: textblock
14995 #: ../src/guestfs-actions.pod:5556 ../fish/guestfish-actions.pod:3685
14996 msgid ""
14997 "This command writes to part of a device.  It writes the data buffer "
14998 "C<content> to C<device> starting at offset C<offset>."
14999 msgstr ""
15000
15001 #. type: textblock
15002 #: ../src/guestfs-actions.pod:5559 ../fish/guestfish-actions.pod:3688
15003 msgid ""
15004 "This command implements the L<pwrite(2)> system call, and like that system "
15005 "call it may not write the full data requested (although short writes to disk "
15006 "devices and partitions are probably impossible with standard Linux kernels)."
15007 msgstr ""
15008
15009 #. type: textblock
15010 #: ../src/guestfs-actions.pod:5564
15011 msgid "See also C<guestfs_pwrite>."
15012 msgstr ""
15013
15014 #. type: textblock
15015 #: ../src/guestfs-actions.pod:5571
15016 msgid "(Added in 1.5.20)"
15017 msgstr ""
15018
15019 #. type: =head2
15020 #: ../src/guestfs-actions.pod:5573
15021 msgid "guestfs_read_file"
15022 msgstr ""
15023
15024 #. type: verbatim
15025 #: ../src/guestfs-actions.pod:5575
15026 #, no-wrap
15027 msgid ""
15028 " char *\n"
15029 " guestfs_read_file (guestfs_h *g,\n"
15030 "                    const char *path,\n"
15031 "                    size_t *size_r);\n"
15032 "\n"
15033 msgstr ""
15034
15035 #. type: textblock
15036 #: ../src/guestfs-actions.pod:5580 ../fish/guestfish-actions.pod:3702
15037 msgid "This calls returns the contents of the file C<path> as a buffer."
15038 msgstr ""
15039
15040 #. type: textblock
15041 #: ../src/guestfs-actions.pod:5583
15042 msgid ""
15043 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15044 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15045 "function is limited in the total size of file that can be handled."
15046 msgstr ""
15047
15048 #. type: textblock
15049 #: ../src/guestfs-actions.pod:5595
15050 msgid "(Added in 1.0.63)"
15051 msgstr ""
15052
15053 #. type: =head2
15054 #: ../src/guestfs-actions.pod:5597
15055 msgid "guestfs_read_lines"
15056 msgstr ""
15057
15058 #. type: verbatim
15059 #: ../src/guestfs-actions.pod:5599
15060 #, no-wrap
15061 msgid ""
15062 " char **\n"
15063 " guestfs_read_lines (guestfs_h *g,\n"
15064 "                     const char *path);\n"
15065 "\n"
15066 msgstr ""
15067
15068 #. type: textblock
15069 #: ../src/guestfs-actions.pod:5605 ../fish/guestfish-actions.pod:3719
15070 msgid ""
15071 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15072 "C<CRLF> character sequences are I<not> returned."
15073 msgstr ""
15074
15075 #. type: textblock
15076 #: ../src/guestfs-actions.pod:5608
15077 msgid ""
15078 "Note that this function cannot correctly handle binary files (specifically, "
15079 "files containing C<\\0> character which is treated as end of line).  For "
15080 "those you need to use the C<guestfs_read_file> function which has a more "
15081 "complex interface."
15082 msgstr ""
15083
15084 #. type: =head2
15085 #: ../src/guestfs-actions.pod:5619
15086 msgid "guestfs_readdir"
15087 msgstr ""
15088
15089 #. type: verbatim
15090 #: ../src/guestfs-actions.pod:5621
15091 #, no-wrap
15092 msgid ""
15093 " struct guestfs_dirent_list *\n"
15094 " guestfs_readdir (guestfs_h *g,\n"
15095 "                  const char *dir);\n"
15096 "\n"
15097 msgstr ""
15098
15099 #. type: textblock
15100 #: ../src/guestfs-actions.pod:5625 ../fish/guestfish-actions.pod:3731
15101 msgid "This returns the list of directory entries in directory C<dir>."
15102 msgstr ""
15103
15104 #. type: textblock
15105 #: ../src/guestfs-actions.pod:5627 ../fish/guestfish-actions.pod:3733
15106 msgid ""
15107 "All entries in the directory are returned, including C<.> and C<..>.  The "
15108 "entries are I<not> sorted, but returned in the same order as the underlying "
15109 "filesystem."
15110 msgstr ""
15111
15112 #. type: textblock
15113 #: ../src/guestfs-actions.pod:5631 ../fish/guestfish-actions.pod:3737
15114 msgid ""
15115 "Also this call returns basic file type information about each file.  The "
15116 "C<ftyp> field will contain one of the following characters:"
15117 msgstr ""
15118
15119 #. type: =item
15120 #: ../src/guestfs-actions.pod:5636 ../fish/guestfish-actions.pod:3742
15121 msgid "'b'"
15122 msgstr ""
15123
15124 #. type: textblock
15125 #: ../src/guestfs-actions.pod:5638 ../fish/guestfish-actions.pod:3744
15126 msgid "Block special"
15127 msgstr ""
15128
15129 #. type: =item
15130 #: ../src/guestfs-actions.pod:5640 ../fish/guestfish-actions.pod:3746
15131 msgid "'c'"
15132 msgstr ""
15133
15134 #. type: textblock
15135 #: ../src/guestfs-actions.pod:5642 ../fish/guestfish-actions.pod:3748
15136 msgid "Char special"
15137 msgstr ""
15138
15139 #. type: =item
15140 #: ../src/guestfs-actions.pod:5644 ../fish/guestfish-actions.pod:3750
15141 msgid "'d'"
15142 msgstr ""
15143
15144 #. type: textblock
15145 #: ../src/guestfs-actions.pod:5646 ../fish/guestfish-actions.pod:3752
15146 msgid "Directory"
15147 msgstr ""
15148
15149 #. type: =item
15150 #: ../src/guestfs-actions.pod:5648 ../fish/guestfish-actions.pod:3754
15151 msgid "'f'"
15152 msgstr ""
15153
15154 #. type: textblock
15155 #: ../src/guestfs-actions.pod:5650 ../fish/guestfish-actions.pod:3756
15156 msgid "FIFO (named pipe)"
15157 msgstr ""
15158
15159 #. type: =item
15160 #: ../src/guestfs-actions.pod:5652 ../fish/guestfish-actions.pod:3758
15161 msgid "'l'"
15162 msgstr ""
15163
15164 #. type: textblock
15165 #: ../src/guestfs-actions.pod:5654 ../fish/guestfish-actions.pod:3760
15166 msgid "Symbolic link"
15167 msgstr ""
15168
15169 #. type: =item
15170 #: ../src/guestfs-actions.pod:5656 ../fish/guestfish-actions.pod:3762
15171 msgid "'r'"
15172 msgstr ""
15173
15174 #. type: textblock
15175 #: ../src/guestfs-actions.pod:5658 ../fish/guestfish-actions.pod:3764
15176 msgid "Regular file"
15177 msgstr ""
15178
15179 #. type: =item
15180 #: ../src/guestfs-actions.pod:5660 ../fish/guestfish-actions.pod:3766
15181 msgid "'s'"
15182 msgstr ""
15183
15184 #. type: textblock
15185 #: ../src/guestfs-actions.pod:5662 ../fish/guestfish-actions.pod:3768
15186 msgid "Socket"
15187 msgstr ""
15188
15189 #. type: =item
15190 #: ../src/guestfs-actions.pod:5664 ../fish/guestfish-actions.pod:3770
15191 msgid "'u'"
15192 msgstr ""
15193
15194 #. type: textblock
15195 #: ../src/guestfs-actions.pod:5666 ../fish/guestfish-actions.pod:3772
15196 msgid "Unknown file type"
15197 msgstr ""
15198
15199 #. type: =item
15200 #: ../src/guestfs-actions.pod:5668 ../fish/guestfish-actions.pod:3774
15201 msgid "'?'"
15202 msgstr ""
15203
15204 #. type: textblock
15205 #: ../src/guestfs-actions.pod:5670 ../fish/guestfish-actions.pod:3776
15206 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15207 msgstr ""
15208
15209 #. type: textblock
15210 #: ../src/guestfs-actions.pod:5675
15211 msgid ""
15212 "This function is primarily intended for use by programs.  To get a simple "
15213 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15214 "consumption, use C<guestfs_ll>."
15215 msgstr ""
15216
15217 #. type: textblock
15218 #: ../src/guestfs-actions.pod:5679
15219 msgid ""
15220 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15221 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
15222 "use>."
15223 msgstr ""
15224
15225 #. type: =head2
15226 #: ../src/guestfs-actions.pod:5685
15227 msgid "guestfs_readlink"
15228 msgstr ""
15229
15230 #. type: verbatim
15231 #: ../src/guestfs-actions.pod:5687
15232 #, no-wrap
15233 msgid ""
15234 " char *\n"
15235 " guestfs_readlink (guestfs_h *g,\n"
15236 "                   const char *path);\n"
15237 "\n"
15238 msgstr ""
15239
15240 #. type: textblock
15241 #: ../src/guestfs-actions.pod:5691 ../fish/guestfish-actions.pod:3789
15242 msgid "This command reads the target of a symbolic link."
15243 msgstr ""
15244
15245 #. type: =head2
15246 #: ../src/guestfs-actions.pod:5698
15247 msgid "guestfs_readlinklist"
15248 msgstr ""
15249
15250 #. type: verbatim
15251 #: ../src/guestfs-actions.pod:5700
15252 #, no-wrap
15253 msgid ""
15254 " char **\n"
15255 " guestfs_readlinklist (guestfs_h *g,\n"
15256 "                       const char *path,\n"
15257 "                       char *const *names);\n"
15258 "\n"
15259 msgstr ""
15260
15261 #. type: textblock
15262 #: ../src/guestfs-actions.pod:5705 ../fish/guestfish-actions.pod:3795
15263 msgid ""
15264 "This call allows you to do a C<readlink> operation on multiple files, where "
15265 "all files are in the directory C<path>.  C<names> is the list of files from "
15266 "this directory."
15267 msgstr ""
15268
15269 #. type: textblock
15270 #: ../src/guestfs-actions.pod:5709 ../fish/guestfish-actions.pod:3799
15271 msgid ""
15272 "On return you get a list of strings, with a one-to-one correspondence to the "
15273 "C<names> list.  Each string is the value of the symbolic link."
15274 msgstr ""
15275
15276 #. type: textblock
15277 #: ../src/guestfs-actions.pod:5713 ../fish/guestfish-actions.pod:3803
15278 msgid ""
15279 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15280 "result string is the empty string C<\"\">.  However the whole operation is "
15281 "completed even if there were C<readlink(2)> errors, and so you can call this "
15282 "function with names where you don't know if they are symbolic links already "
15283 "(albeit slightly less efficient)."
15284 msgstr ""
15285
15286 #. type: textblock
15287 #: ../src/guestfs-actions.pod:5720 ../fish/guestfish-actions.pod:3810
15288 msgid ""
15289 "This call is intended for programs that want to efficiently list a directory "
15290 "contents without making many round-trips.  Very long directory listings "
15291 "might cause the protocol message size to be exceeded, causing this call to "
15292 "fail.  The caller must split up such requests into smaller groups of names."
15293 msgstr ""
15294
15295 #. type: =head2
15296 #: ../src/guestfs-actions.pod:5733
15297 msgid "guestfs_realpath"
15298 msgstr ""
15299
15300 #. type: verbatim
15301 #: ../src/guestfs-actions.pod:5735
15302 #, no-wrap
15303 msgid ""
15304 " char *\n"
15305 " guestfs_realpath (guestfs_h *g,\n"
15306 "                   const char *path);\n"
15307 "\n"
15308 msgstr ""
15309
15310 #. type: textblock
15311 #: ../src/guestfs-actions.pod:5739 ../fish/guestfish-actions.pod:3821
15312 msgid ""
15313 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15314 "has no C<.>, C<..> or symbolic link path elements."
15315 msgstr ""
15316
15317 #. type: =head2
15318 #: ../src/guestfs-actions.pod:5747
15319 msgid "guestfs_removexattr"
15320 msgstr ""
15321
15322 #. type: verbatim
15323 #: ../src/guestfs-actions.pod:5749
15324 #, no-wrap
15325 msgid ""
15326 " int\n"
15327 " guestfs_removexattr (guestfs_h *g,\n"
15328 "                      const char *xattr,\n"
15329 "                      const char *path);\n"
15330 "\n"
15331 msgstr ""
15332
15333 #. type: textblock
15334 #: ../src/guestfs-actions.pod:5754 ../fish/guestfish-actions.pod:3828
15335 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
15336 msgstr ""
15337
15338 #. type: textblock
15339 #: ../src/guestfs-actions.pod:5757
15340 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15341 msgstr ""
15342
15343 #. type: =head2
15344 #: ../src/guestfs-actions.pod:5763
15345 msgid "guestfs_resize2fs"
15346 msgstr ""
15347
15348 #. type: verbatim
15349 #: ../src/guestfs-actions.pod:5765
15350 #, no-wrap
15351 msgid ""
15352 " int\n"
15353 " guestfs_resize2fs (guestfs_h *g,\n"
15354 "                    const char *device);\n"
15355 "\n"
15356 msgstr ""
15357
15358 #. type: textblock
15359 #: ../src/guestfs-actions.pod:5769 ../fish/guestfish-actions.pod:3837
15360 msgid ""
15361 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15362 "underlying device."
15363 msgstr ""
15364
15365 #. type: textblock
15366 #: ../src/guestfs-actions.pod:5772
15367 msgid ""
15368 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15369 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15370 "sometimes gives an error about this and sometimes not.  In any case, it is "
15371 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15372 msgstr ""
15373
15374 #. type: =head2
15375 #: ../src/guestfs-actions.pod:5782
15376 msgid "guestfs_resize2fs_M"
15377 msgstr ""
15378
15379 #. type: verbatim
15380 #: ../src/guestfs-actions.pod:5784
15381 #, no-wrap
15382 msgid ""
15383 " int\n"
15384 " guestfs_resize2fs_M (guestfs_h *g,\n"
15385 "                      const char *device);\n"
15386 "\n"
15387 msgstr ""
15388
15389 #. type: textblock
15390 #: ../src/guestfs-actions.pod:5788
15391 msgid ""
15392 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15393 "resized to its minimum size.  This works like the I<-M> option to the "
15394 "C<resize2fs> command."
15395 msgstr ""
15396
15397 #. type: textblock
15398 #: ../src/guestfs-actions.pod:5792
15399 msgid ""
15400 "To get the resulting size of the filesystem you should call "
15401 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15402 "These two numbers, multiplied together, give the resulting size of the "
15403 "minimal filesystem in bytes."
15404 msgstr ""
15405
15406 #. type: =head2
15407 #: ../src/guestfs-actions.pod:5799
15408 msgid "guestfs_resize2fs_size"
15409 msgstr ""
15410
15411 #. type: verbatim
15412 #: ../src/guestfs-actions.pod:5801
15413 #, no-wrap
15414 msgid ""
15415 " int\n"
15416 " guestfs_resize2fs_size (guestfs_h *g,\n"
15417 "                         const char *device,\n"
15418 "                         int64_t size);\n"
15419 "\n"
15420 msgstr ""
15421
15422 #. type: textblock
15423 #: ../src/guestfs-actions.pod:5806
15424 msgid ""
15425 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15426 "to specify the new size (in bytes) explicitly."
15427 msgstr ""
15428
15429 #. type: =head2
15430 #: ../src/guestfs-actions.pod:5813
15431 msgid "guestfs_rm"
15432 msgstr ""
15433
15434 #. type: verbatim
15435 #: ../src/guestfs-actions.pod:5815
15436 #, no-wrap
15437 msgid ""
15438 " int\n"
15439 " guestfs_rm (guestfs_h *g,\n"
15440 "             const char *path);\n"
15441 "\n"
15442 msgstr ""
15443
15444 #. type: textblock
15445 #: ../src/guestfs-actions.pod:5819 ../fish/guestfish-actions.pod:3870
15446 msgid "Remove the single file C<path>."
15447 msgstr ""
15448
15449 #. type: =head2
15450 #: ../src/guestfs-actions.pod:5825
15451 msgid "guestfs_rm_rf"
15452 msgstr ""
15453
15454 #. type: verbatim
15455 #: ../src/guestfs-actions.pod:5827
15456 #, no-wrap
15457 msgid ""
15458 " int\n"
15459 " guestfs_rm_rf (guestfs_h *g,\n"
15460 "                const char *path);\n"
15461 "\n"
15462 msgstr ""
15463
15464 #. type: textblock
15465 #: ../src/guestfs-actions.pod:5831 ../fish/guestfish-actions.pod:3876
15466 msgid ""
15467 "Remove the file or directory C<path>, recursively removing the contents if "
15468 "its a directory.  This is like the C<rm -rf> shell command."
15469 msgstr ""
15470
15471 #. type: =head2
15472 #: ../src/guestfs-actions.pod:5839
15473 msgid "guestfs_rmdir"
15474 msgstr ""
15475
15476 #. type: verbatim
15477 #: ../src/guestfs-actions.pod:5841
15478 #, no-wrap
15479 msgid ""
15480 " int\n"
15481 " guestfs_rmdir (guestfs_h *g,\n"
15482 "                const char *path);\n"
15483 "\n"
15484 msgstr ""
15485
15486 #. type: textblock
15487 #: ../src/guestfs-actions.pod:5845 ../fish/guestfish-actions.pod:3884
15488 msgid "Remove the single directory C<path>."
15489 msgstr ""
15490
15491 #. type: =head2
15492 #: ../src/guestfs-actions.pod:5851
15493 msgid "guestfs_rmmountpoint"
15494 msgstr ""
15495
15496 #. type: verbatim
15497 #: ../src/guestfs-actions.pod:5853
15498 #, no-wrap
15499 msgid ""
15500 " int\n"
15501 " guestfs_rmmountpoint (guestfs_h *g,\n"
15502 "                       const char *exemptpath);\n"
15503 "\n"
15504 msgstr ""
15505
15506 #. type: textblock
15507 #: ../src/guestfs-actions.pod:5857
15508 msgid ""
15509 "This calls removes a mountpoint that was previously created with "
15510 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15511 msgstr ""
15512
15513 #. type: =head2
15514 #: ../src/guestfs-actions.pod:5865
15515 msgid "guestfs_scrub_device"
15516 msgstr ""
15517
15518 #. type: verbatim
15519 #: ../src/guestfs-actions.pod:5867
15520 #, no-wrap
15521 msgid ""
15522 " int\n"
15523 " guestfs_scrub_device (guestfs_h *g,\n"
15524 "                       const char *device);\n"
15525 "\n"
15526 msgstr ""
15527
15528 #. type: textblock
15529 #: ../src/guestfs-actions.pod:5871 ../fish/guestfish-actions.pod:3898
15530 msgid ""
15531 "This command writes patterns over C<device> to make data retrieval more "
15532 "difficult."
15533 msgstr ""
15534
15535 #. type: textblock
15536 #: ../src/guestfs-actions.pod:5874 ../src/guestfs-actions.pod:5895 ../src/guestfs-actions.pod:5914 ../fish/guestfish-actions.pod:3901 ../fish/guestfish-actions.pod:3916 ../fish/guestfish-actions.pod:3929
15537 msgid ""
15538 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15539 "more details."
15540 msgstr ""
15541
15542 #. type: textblock
15543 #: ../src/guestfs-actions.pod:5882 ../src/guestfs-actions.pod:5900 ../src/guestfs-actions.pod:5919
15544 msgid "(Added in 1.0.52)"
15545 msgstr ""
15546
15547 #. type: =head2
15548 #: ../src/guestfs-actions.pod:5884
15549 msgid "guestfs_scrub_file"
15550 msgstr ""
15551
15552 #. type: verbatim
15553 #: ../src/guestfs-actions.pod:5886
15554 #, no-wrap
15555 msgid ""
15556 " int\n"
15557 " guestfs_scrub_file (guestfs_h *g,\n"
15558 "                     const char *file);\n"
15559 "\n"
15560 msgstr ""
15561
15562 #. type: textblock
15563 #: ../src/guestfs-actions.pod:5890 ../fish/guestfish-actions.pod:3911
15564 msgid ""
15565 "This command writes patterns over a file to make data retrieval more "
15566 "difficult."
15567 msgstr ""
15568
15569 #. type: textblock
15570 #: ../src/guestfs-actions.pod:5893 ../fish/guestfish-actions.pod:3914
15571 msgid "The file is I<removed> after scrubbing."
15572 msgstr ""
15573
15574 #. type: =head2
15575 #: ../src/guestfs-actions.pod:5902
15576 msgid "guestfs_scrub_freespace"
15577 msgstr ""
15578
15579 #. type: verbatim
15580 #: ../src/guestfs-actions.pod:5904
15581 #, no-wrap
15582 msgid ""
15583 " int\n"
15584 " guestfs_scrub_freespace (guestfs_h *g,\n"
15585 "                          const char *dir);\n"
15586 "\n"
15587 msgstr ""
15588
15589 #. type: textblock
15590 #: ../src/guestfs-actions.pod:5908
15591 msgid ""
15592 "This command creates the directory C<dir> and then fills it with files until "
15593 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15594 "and deletes them.  The intention is to scrub any free space on the partition "
15595 "containing C<dir>."
15596 msgstr ""
15597
15598 #. type: =head2
15599 #: ../src/guestfs-actions.pod:5921
15600 msgid "guestfs_set_append"
15601 msgstr ""
15602
15603 #. type: verbatim
15604 #: ../src/guestfs-actions.pod:5923
15605 #, no-wrap
15606 msgid ""
15607 " int\n"
15608 " guestfs_set_append (guestfs_h *g,\n"
15609 "                     const char *append);\n"
15610 "\n"
15611 msgstr ""
15612
15613 #. type: textblock
15614 #: ../src/guestfs-actions.pod:5927 ../fish/guestfish-actions.pod:3938
15615 msgid ""
15616 "This function is used to add additional options to the guest kernel command "
15617 "line."
15618 msgstr ""
15619
15620 #. type: textblock
15621 #: ../src/guestfs-actions.pod:5930 ../fish/guestfish-actions.pod:3941
15622 msgid ""
15623 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15624 "environment variable."
15625 msgstr ""
15626
15627 #. type: textblock
15628 #: ../src/guestfs-actions.pod:5933 ../fish/guestfish-actions.pod:3944
15629 msgid ""
15630 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15631 "(libguestfs always adds a few of its own)."
15632 msgstr ""
15633
15634 #. type: =head2
15635 #: ../src/guestfs-actions.pod:5940
15636 msgid "guestfs_set_attach_method"
15637 msgstr ""
15638
15639 #. type: verbatim
15640 #: ../src/guestfs-actions.pod:5942
15641 #, no-wrap
15642 msgid ""
15643 " int\n"
15644 " guestfs_set_attach_method (guestfs_h *g,\n"
15645 "                            const char *attachmethod);\n"
15646 "\n"
15647 msgstr ""
15648
15649 #. type: textblock
15650 #: ../src/guestfs-actions.pod:5946 ../fish/guestfish-actions.pod:3953
15651 msgid ""
15652 "Set the method that libguestfs uses to connect to the back end guestfsd "
15653 "daemon.  Possible methods are:"
15654 msgstr ""
15655
15656 #. type: textblock
15657 #: ../src/guestfs-actions.pod:5953 ../fish/guestfish-actions.pod:3960
15658 msgid ""
15659 "Launch an appliance and connect to it.  This is the ordinary method and the "
15660 "default."
15661 msgstr ""
15662
15663 #. type: =item
15664 #: ../src/guestfs-actions.pod:5956 ../fish/guestfish-actions.pod:3963
15665 msgid "C<unix:I<path>>"
15666 msgstr ""
15667
15668 #. type: textblock
15669 #: ../src/guestfs-actions.pod:5958 ../fish/guestfish-actions.pod:3965
15670 msgid "Connect to the Unix domain socket I<path>."
15671 msgstr ""
15672
15673 #. type: textblock
15674 #: ../src/guestfs-actions.pod:5960 ../fish/guestfish-actions.pod:3967
15675 msgid ""
15676 "This method lets you connect to an existing daemon or (using virtio-serial) "
15677 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15678 "RUNNING DAEMONS>."
15679 msgstr ""
15680
15681 #. type: =head2
15682 #: ../src/guestfs-actions.pod:5968
15683 msgid "guestfs_set_autosync"
15684 msgstr ""
15685
15686 #. type: verbatim
15687 #: ../src/guestfs-actions.pod:5970
15688 #, no-wrap
15689 msgid ""
15690 " int\n"
15691 " guestfs_set_autosync (guestfs_h *g,\n"
15692 "                       int autosync);\n"
15693 "\n"
15694 msgstr ""
15695
15696 #. type: textblock
15697 #: ../src/guestfs-actions.pod:5974 ../fish/guestfish-actions.pod:3979
15698 msgid ""
15699 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15700 "effort attempt to make filesystems consistent and synchronized when the "
15701 "handle is closed (also if the program exits without closing handles)."
15702 msgstr ""
15703
15704 #. type: textblock
15705 #: ../src/guestfs-actions.pod:5979 ../fish/guestfish-actions.pod:3984
15706 msgid ""
15707 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15708 "disabled by default)."
15709 msgstr ""
15710
15711 #. type: =head2
15712 #: ../src/guestfs-actions.pod:5986
15713 msgid "guestfs_set_direct"
15714 msgstr ""
15715
15716 #. type: verbatim
15717 #: ../src/guestfs-actions.pod:5988
15718 #, no-wrap
15719 msgid ""
15720 " int\n"
15721 " guestfs_set_direct (guestfs_h *g,\n"
15722 "                     int direct);\n"
15723 "\n"
15724 msgstr ""
15725
15726 #. type: textblock
15727 #: ../src/guestfs-actions.pod:5992 ../fish/guestfish-actions.pod:3993
15728 msgid ""
15729 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15730 "passed directly through to the appliance once it is launched."
15731 msgstr ""
15732
15733 #. type: textblock
15734 #: ../src/guestfs-actions.pod:5996
15735 msgid ""
15736 "One consequence of this is that log messages aren't caught by the library "
15737 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
15738 "stdout."
15739 msgstr ""
15740
15741 #. type: textblock
15742 #: ../src/guestfs-actions.pod:6000 ../fish/guestfish-actions.pod:4001
15743 msgid "You probably don't want to use this unless you know what you are doing."
15744 msgstr ""
15745
15746 #. type: textblock
15747 #: ../src/guestfs-actions.pod:6003 ../fish/guestfish-actions.pod:4004
15748 msgid "The default is disabled."
15749 msgstr ""
15750
15751 #. type: =head2
15752 #: ../src/guestfs-actions.pod:6009
15753 msgid "guestfs_set_e2label"
15754 msgstr ""
15755
15756 #. type: verbatim
15757 #: ../src/guestfs-actions.pod:6011
15758 #, no-wrap
15759 msgid ""
15760 " int\n"
15761 " guestfs_set_e2label (guestfs_h *g,\n"
15762 "                      const char *device,\n"
15763 "                      const char *label);\n"
15764 "\n"
15765 msgstr ""
15766
15767 #. type: textblock
15768 #: ../src/guestfs-actions.pod:6016 ../fish/guestfish-actions.pod:4010
15769 msgid ""
15770 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
15771 "C<label>.  Filesystem labels are limited to 16 characters."
15772 msgstr ""
15773
15774 #. type: textblock
15775 #: ../src/guestfs-actions.pod:6020
15776 msgid ""
15777 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
15778 "the existing label on a filesystem."
15779 msgstr ""
15780
15781 #. type: =head2
15782 #: ../src/guestfs-actions.pod:6027
15783 msgid "guestfs_set_e2uuid"
15784 msgstr ""
15785
15786 #. type: verbatim
15787 #: ../src/guestfs-actions.pod:6029
15788 #, no-wrap
15789 msgid ""
15790 " int\n"
15791 " guestfs_set_e2uuid (guestfs_h *g,\n"
15792 "                     const char *device,\n"
15793 "                     const char *uuid);\n"
15794 "\n"
15795 msgstr ""
15796
15797 #. type: textblock
15798 #: ../src/guestfs-actions.pod:6034 ../fish/guestfish-actions.pod:4021
15799 msgid ""
15800 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
15801 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
15802 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
15803 msgstr ""
15804
15805 #. type: textblock
15806 #: ../src/guestfs-actions.pod:6039
15807 msgid ""
15808 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
15809 "the existing UUID of a filesystem."
15810 msgstr ""
15811
15812 #. type: =head2
15813 #: ../src/guestfs-actions.pod:6046
15814 msgid "guestfs_set_memsize"
15815 msgstr ""
15816
15817 #. type: verbatim
15818 #: ../src/guestfs-actions.pod:6048
15819 #, no-wrap
15820 msgid ""
15821 " int\n"
15822 " guestfs_set_memsize (guestfs_h *g,\n"
15823 "                      int memsize);\n"
15824 "\n"
15825 msgstr ""
15826
15827 #. type: textblock
15828 #: ../src/guestfs-actions.pod:6052
15829 msgid ""
15830 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
15831 "This only has any effect if called before C<guestfs_launch>."
15832 msgstr ""
15833
15834 #. type: textblock
15835 #: ../src/guestfs-actions.pod:6056 ../fish/guestfish-actions.pod:4039
15836 msgid ""
15837 "You can also change this by setting the environment variable "
15838 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
15839 msgstr ""
15840
15841 #. type: =head2
15842 #: ../src/guestfs-actions.pod:6067
15843 msgid "guestfs_set_network"
15844 msgstr ""
15845
15846 #. type: verbatim
15847 #: ../src/guestfs-actions.pod:6069
15848 #, no-wrap
15849 msgid ""
15850 " int\n"
15851 " guestfs_set_network (guestfs_h *g,\n"
15852 "                      int network);\n"
15853 "\n"
15854 msgstr ""
15855
15856 #. type: textblock
15857 #: ../src/guestfs-actions.pod:6073 ../fish/guestfish-actions.pod:4052
15858 msgid ""
15859 "If C<network> is true, then the network is enabled in the libguestfs "
15860 "appliance.  The default is false."
15861 msgstr ""
15862
15863 #. type: textblock
15864 #: ../src/guestfs-actions.pod:6076 ../fish/guestfish-actions.pod:4055
15865 msgid ""
15866 "This affects whether commands are able to access the network (see "
15867 "L<guestfs(3)/RUNNING COMMANDS>)."
15868 msgstr ""
15869
15870 #. type: textblock
15871 #: ../src/guestfs-actions.pod:6079
15872 msgid ""
15873 "You must call this before calling C<guestfs_launch>, otherwise it has no "
15874 "effect."
15875 msgstr ""
15876
15877 #. type: =head2
15878 #: ../src/guestfs-actions.pod:6086
15879 msgid "guestfs_set_path"
15880 msgstr ""
15881
15882 #. type: verbatim
15883 #: ../src/guestfs-actions.pod:6088
15884 #, no-wrap
15885 msgid ""
15886 " int\n"
15887 " guestfs_set_path (guestfs_h *g,\n"
15888 "                   const char *searchpath);\n"
15889 "\n"
15890 msgstr ""
15891
15892 #. type: textblock
15893 #: ../src/guestfs-actions.pod:6092 ../fish/guestfish-actions.pod:4067
15894 msgid "Set the path that libguestfs searches for kernel and initrd.img."
15895 msgstr ""
15896
15897 #. type: textblock
15898 #: ../src/guestfs-actions.pod:6094 ../fish/guestfish-actions.pod:4069
15899 msgid ""
15900 "The default is C<$libdir/guestfs> unless overridden by setting "
15901 "C<LIBGUESTFS_PATH> environment variable."
15902 msgstr ""
15903
15904 #. type: textblock
15905 #: ../src/guestfs-actions.pod:6097 ../fish/guestfish-actions.pod:4072
15906 msgid "Setting C<path> to C<NULL> restores the default path."
15907 msgstr ""
15908
15909 #. type: =head2
15910 #: ../src/guestfs-actions.pod:6103
15911 msgid "guestfs_set_qemu"
15912 msgstr ""
15913
15914 #. type: verbatim
15915 #: ../src/guestfs-actions.pod:6105
15916 #, no-wrap
15917 msgid ""
15918 " int\n"
15919 " guestfs_set_qemu (guestfs_h *g,\n"
15920 "                   const char *qemu);\n"
15921 "\n"
15922 msgstr ""
15923
15924 #. type: textblock
15925 #: ../src/guestfs-actions.pod:6109 ../fish/guestfish-actions.pod:4080
15926 msgid "Set the qemu binary that we will use."
15927 msgstr ""
15928
15929 #. type: textblock
15930 #: ../src/guestfs-actions.pod:6111 ../fish/guestfish-actions.pod:4082
15931 msgid "The default is chosen when the library was compiled by the configure script."
15932 msgstr ""
15933
15934 #. type: textblock
15935 #: ../src/guestfs-actions.pod:6114 ../fish/guestfish-actions.pod:4085
15936 msgid ""
15937 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
15938 "variable."
15939 msgstr ""
15940
15941 #. type: textblock
15942 #: ../src/guestfs-actions.pod:6117 ../fish/guestfish-actions.pod:4088
15943 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
15944 msgstr ""
15945
15946 #. type: textblock
15947 #: ../src/guestfs-actions.pod:6119 ../fish/guestfish-actions.pod:4090
15948 msgid ""
15949 "Note that you should call this function as early as possible after creating "
15950 "the handle.  This is because some pre-launch operations depend on testing "
15951 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
15952 "don't retest features, and so you might see inconsistent results.  Using the "
15953 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
15954 "the qemu binary at the same time as the handle is created."
15955 msgstr ""
15956
15957 #. type: =head2
15958 #: ../src/guestfs-actions.pod:6131
15959 msgid "guestfs_set_recovery_proc"
15960 msgstr ""
15961
15962 #. type: verbatim
15963 #: ../src/guestfs-actions.pod:6133
15964 #, no-wrap
15965 msgid ""
15966 " int\n"
15967 " guestfs_set_recovery_proc (guestfs_h *g,\n"
15968 "                            int recoveryproc);\n"
15969 "\n"
15970 msgstr ""
15971
15972 #. type: textblock
15973 #: ../src/guestfs-actions.pod:6137
15974 msgid ""
15975 "If this is called with the parameter C<false> then C<guestfs_launch> does "
15976 "not create a recovery process.  The purpose of the recovery process is to "
15977 "stop runaway qemu processes in the case where the main program aborts "
15978 "abruptly."
15979 msgstr ""
15980
15981 #. type: textblock
15982 #: ../src/guestfs-actions.pod:6142
15983 msgid ""
15984 "This only has any effect if called before C<guestfs_launch>, and the default "
15985 "is true."
15986 msgstr ""
15987
15988 #. type: textblock
15989 #: ../src/guestfs-actions.pod:6145 ../fish/guestfish-actions.pod:4112
15990 msgid ""
15991 "About the only time when you would want to disable this is if the main "
15992 "process will fork itself into the background (\"daemonize\" itself).  In "
15993 "this case the recovery process thinks that the main program has disappeared "
15994 "and so kills qemu, which is not very helpful."
15995 msgstr ""
15996
15997 #. type: =head2
15998 #: ../src/guestfs-actions.pod:6155
15999 msgid "guestfs_set_selinux"
16000 msgstr ""
16001
16002 #. type: verbatim
16003 #: ../src/guestfs-actions.pod:6157
16004 #, no-wrap
16005 msgid ""
16006 " int\n"
16007 " guestfs_set_selinux (guestfs_h *g,\n"
16008 "                      int selinux);\n"
16009 "\n"
16010 msgstr ""
16011
16012 #. type: textblock
16013 #: ../src/guestfs-actions.pod:6161 ../fish/guestfish-actions.pod:4124
16014 msgid ""
16015 "This sets the selinux flag that is passed to the appliance at boot time.  "
16016 "The default is C<selinux=0> (disabled)."
16017 msgstr ""
16018
16019 #. type: textblock
16020 #: ../src/guestfs-actions.pod:6164 ../fish/guestfish-actions.pod:4127
16021 msgid ""
16022 "Note that if SELinux is enabled, it is always in Permissive mode "
16023 "(C<enforcing=0>)."
16024 msgstr ""
16025
16026 #. type: =head2
16027 #: ../src/guestfs-actions.pod:6174
16028 msgid "guestfs_set_trace"
16029 msgstr ""
16030
16031 #. type: verbatim
16032 #: ../src/guestfs-actions.pod:6176
16033 #, no-wrap
16034 msgid ""
16035 " int\n"
16036 " guestfs_set_trace (guestfs_h *g,\n"
16037 "                    int trace);\n"
16038 "\n"
16039 msgstr ""
16040
16041 #. type: textblock
16042 #: ../src/guestfs-actions.pod:6180 ../fish/guestfish-actions.pod:4139
16043 msgid ""
16044 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16045 "return values are traced."
16046 msgstr ""
16047
16048 #. type: textblock
16049 #: ../src/guestfs-actions.pod:6183 ../fish/guestfish-actions.pod:4142
16050 msgid ""
16051 "If you want to trace C API calls into libguestfs (and other libraries) then "
16052 "possibly a better way is to use the external ltrace(1) command."
16053 msgstr ""
16054
16055 #. type: textblock
16056 #: ../src/guestfs-actions.pod:6187 ../fish/guestfish-actions.pod:4146
16057 msgid ""
16058 "Command traces are disabled unless the environment variable "
16059 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16060 msgstr ""
16061
16062 #. type: textblock
16063 #: ../src/guestfs-actions.pod:6190
16064 msgid ""
16065 "Trace messages are normally sent to C<stderr>, unless you register a "
16066 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16067 msgstr ""
16068
16069 #. type: =head2
16070 #: ../src/guestfs-actions.pod:6198
16071 msgid "guestfs_set_verbose"
16072 msgstr ""
16073
16074 #. type: verbatim
16075 #: ../src/guestfs-actions.pod:6200
16076 #, no-wrap
16077 msgid ""
16078 " int\n"
16079 " guestfs_set_verbose (guestfs_h *g,\n"
16080 "                      int verbose);\n"
16081 "\n"
16082 msgstr ""
16083
16084 #. type: textblock
16085 #: ../src/guestfs-actions.pod:6204 ../fish/guestfish-actions.pod:4159
16086 msgid "If C<verbose> is true, this turns on verbose messages."
16087 msgstr ""
16088
16089 #. type: textblock
16090 #: ../src/guestfs-actions.pod:6206 ../fish/guestfish-actions.pod:4161
16091 msgid ""
16092 "Verbose messages are disabled unless the environment variable "
16093 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16094 msgstr ""
16095
16096 #. type: textblock
16097 #: ../src/guestfs-actions.pod:6209
16098 msgid ""
16099 "Verbose messages are normally sent to C<stderr>, unless you register a "
16100 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16101 msgstr ""
16102
16103 #. type: =head2
16104 #: ../src/guestfs-actions.pod:6217
16105 msgid "guestfs_setcon"
16106 msgstr ""
16107
16108 #. type: verbatim
16109 #: ../src/guestfs-actions.pod:6219
16110 #, no-wrap
16111 msgid ""
16112 " int\n"
16113 " guestfs_setcon (guestfs_h *g,\n"
16114 "                 const char *context);\n"
16115 "\n"
16116 msgstr ""
16117
16118 #. type: textblock
16119 #: ../src/guestfs-actions.pod:6223 ../fish/guestfish-actions.pod:4172
16120 msgid ""
16121 "This sets the SELinux security context of the daemon to the string "
16122 "C<context>."
16123 msgstr ""
16124
16125 #. type: textblock
16126 #: ../src/guestfs-actions.pod:6226 ../fish/guestfish-actions.pod:4175
16127 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16128 msgstr ""
16129
16130 #. type: =head2
16131 #: ../src/guestfs-actions.pod:6232
16132 msgid "guestfs_setxattr"
16133 msgstr ""
16134
16135 #. type: verbatim
16136 #: ../src/guestfs-actions.pod:6234
16137 #, no-wrap
16138 msgid ""
16139 " int\n"
16140 " guestfs_setxattr (guestfs_h *g,\n"
16141 "                   const char *xattr,\n"
16142 "                   const char *val,\n"
16143 "                   int vallen,\n"
16144 "                   const char *path);\n"
16145 "\n"
16146 msgstr ""
16147
16148 #. type: textblock
16149 #: ../src/guestfs-actions.pod:6241 ../fish/guestfish-actions.pod:4181
16150 msgid ""
16151 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16152 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16153 msgstr ""
16154
16155 #. type: textblock
16156 #: ../src/guestfs-actions.pod:6245
16157 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16158 msgstr ""
16159
16160 #. type: =head2
16161 #: ../src/guestfs-actions.pod:6251
16162 msgid "guestfs_sfdisk"
16163 msgstr ""
16164
16165 #. type: verbatim
16166 #: ../src/guestfs-actions.pod:6253
16167 #, no-wrap
16168 msgid ""
16169 " int\n"
16170 " guestfs_sfdisk (guestfs_h *g,\n"
16171 "                 const char *device,\n"
16172 "                 int cyls,\n"
16173 "                 int heads,\n"
16174 "                 int sectors,\n"
16175 "                 char *const *lines);\n"
16176 "\n"
16177 msgstr ""
16178
16179 #. type: textblock
16180 #: ../src/guestfs-actions.pod:6261 ../fish/guestfish-actions.pod:4191
16181 msgid ""
16182 "This is a direct interface to the L<sfdisk(8)> program for creating "
16183 "partitions on block devices."
16184 msgstr ""
16185
16186 #. type: textblock
16187 #: ../src/guestfs-actions.pod:6264 ../fish/guestfish-actions.pod:4194
16188 msgid "C<device> should be a block device, for example C</dev/sda>."
16189 msgstr ""
16190
16191 #. type: textblock
16192 #: ../src/guestfs-actions.pod:6266 ../fish/guestfish-actions.pod:4196
16193 msgid ""
16194 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16195 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
16196 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16197 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16198 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16199 "the kernel) cannot work out the right geometry and you will need to tell it."
16200 msgstr ""
16201
16202 #. type: textblock
16203 #: ../src/guestfs-actions.pod:6274 ../fish/guestfish-actions.pod:4204
16204 msgid ""
16205 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16206 "refer to the L<sfdisk(8)> manpage."
16207 msgstr ""
16208
16209 #. type: textblock
16210 #: ../src/guestfs-actions.pod:6277 ../fish/guestfish-actions.pod:4207
16211 msgid ""
16212 "To create a single partition occupying the whole disk, you would pass "
16213 "C<lines> as a single element list, when the single element being the string "
16214 "C<,> (comma)."
16215 msgstr ""
16216
16217 #. type: textblock
16218 #: ../src/guestfs-actions.pod:6281
16219 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16220 msgstr ""
16221
16222 #. type: textblock
16223 #: ../src/guestfs-actions.pod:6289 ../src/guestfs-actions.pod:6319 ../src/guestfs-actions.pod:6352 ../fish/guestfish-actions.pod:4217 ../fish/guestfish-actions.pod:4240 ../fish/guestfish-actions.pod:4262
16224 msgid "This function is deprecated.  In new code, use the C<part_add> call instead."
16225 msgstr ""
16226
16227 #. type: =head2
16228 #: ../src/guestfs-actions.pod:6298
16229 msgid "guestfs_sfdiskM"
16230 msgstr ""
16231
16232 #. type: verbatim
16233 #: ../src/guestfs-actions.pod:6300
16234 #, no-wrap
16235 msgid ""
16236 " int\n"
16237 " guestfs_sfdiskM (guestfs_h *g,\n"
16238 "                  const char *device,\n"
16239 "                  char *const *lines);\n"
16240 "\n"
16241 msgstr ""
16242
16243 #. type: textblock
16244 #: ../src/guestfs-actions.pod:6305
16245 msgid ""
16246 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16247 "partition sizes are specified in megabytes only (rounded to the nearest "
16248 "cylinder) and you don't need to specify the cyls, heads and sectors "
16249 "parameters which were rarely if ever used anyway."
16250 msgstr ""
16251
16252 #. type: textblock
16253 #: ../src/guestfs-actions.pod:6311
16254 msgid ""
16255 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16256 "C<guestfs_part_disk>"
16257 msgstr ""
16258
16259 #. type: =head2
16260 #: ../src/guestfs-actions.pod:6328
16261 msgid "guestfs_sfdisk_N"
16262 msgstr ""
16263
16264 #. type: verbatim
16265 #: ../src/guestfs-actions.pod:6330
16266 #, no-wrap
16267 msgid ""
16268 " int\n"
16269 " guestfs_sfdisk_N (guestfs_h *g,\n"
16270 "                   const char *device,\n"
16271 "                   int partnum,\n"
16272 "                   int cyls,\n"
16273 "                   int heads,\n"
16274 "                   int sectors,\n"
16275 "                   const char *line);\n"
16276 "\n"
16277 msgstr ""
16278
16279 #. type: textblock
16280 #: ../src/guestfs-actions.pod:6339 ../fish/guestfish-actions.pod:4251
16281 msgid ""
16282 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16283 "(note: C<n> counts from 1)."
16284 msgstr ""
16285
16286 #. type: textblock
16287 #: ../src/guestfs-actions.pod:6342
16288 msgid ""
16289 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16290 "for the cyls/heads/sectors parameters."
16291 msgstr ""
16292
16293 #. type: textblock
16294 #: ../src/guestfs-actions.pod:6345
16295 msgid "See also: C<guestfs_part_add>"
16296 msgstr ""
16297
16298 #. type: =head2
16299 #: ../src/guestfs-actions.pod:6361
16300 msgid "guestfs_sfdisk_disk_geometry"
16301 msgstr ""
16302
16303 #. type: verbatim
16304 #: ../src/guestfs-actions.pod:6363
16305 #, no-wrap
16306 msgid ""
16307 " char *\n"
16308 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16309 "                               const char *device);\n"
16310 "\n"
16311 msgstr ""
16312
16313 #. type: textblock
16314 #: ../src/guestfs-actions.pod:6367
16315 msgid ""
16316 "This displays the disk geometry of C<device> read from the partition table.  "
16317 "Especially in the case where the underlying block device has been resized, "
16318 "this can be different from the kernel's idea of the geometry (see "
16319 "C<guestfs_sfdisk_kernel_geometry>)."
16320 msgstr ""
16321
16322 #. type: textblock
16323 #: ../src/guestfs-actions.pod:6372 ../src/guestfs-actions.pod:6388 ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:4287
16324 msgid "The result is in human-readable format, and not designed to be parsed."
16325 msgstr ""
16326
16327 #. type: =head2
16328 #: ../src/guestfs-actions.pod:6380
16329 msgid "guestfs_sfdisk_kernel_geometry"
16330 msgstr ""
16331
16332 #. type: verbatim
16333 #: ../src/guestfs-actions.pod:6382
16334 #, no-wrap
16335 msgid ""
16336 " char *\n"
16337 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16338 "                                 const char *device);\n"
16339 "\n"
16340 msgstr ""
16341
16342 #. type: textblock
16343 #: ../src/guestfs-actions.pod:6386 ../fish/guestfish-actions.pod:4285
16344 msgid "This displays the kernel's idea of the geometry of C<device>."
16345 msgstr ""
16346
16347 #. type: =head2
16348 #: ../src/guestfs-actions.pod:6396
16349 msgid "guestfs_sfdisk_l"
16350 msgstr ""
16351
16352 #. type: verbatim
16353 #: ../src/guestfs-actions.pod:6398
16354 #, no-wrap
16355 msgid ""
16356 " char *\n"
16357 " guestfs_sfdisk_l (guestfs_h *g,\n"
16358 "                   const char *device);\n"
16359 "\n"
16360 msgstr ""
16361
16362 #. type: textblock
16363 #: ../src/guestfs-actions.pod:6402 ../fish/guestfish-actions.pod:4294
16364 msgid ""
16365 "This displays the partition table on C<device>, in the human-readable output "
16366 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16367 msgstr ""
16368
16369 #. type: textblock
16370 #: ../src/guestfs-actions.pod:6406
16371 msgid "See also: C<guestfs_part_list>"
16372 msgstr ""
16373
16374 #. type: textblock
16375 #: ../src/guestfs-actions.pod:6411 ../fish/guestfish-actions.pod:4300
16376 msgid ""
16377 "This function is deprecated.  In new code, use the C<part_list> call "
16378 "instead."
16379 msgstr ""
16380
16381 #. type: =head2
16382 #: ../src/guestfs-actions.pod:6420
16383 msgid "guestfs_sh"
16384 msgstr ""
16385
16386 #. type: verbatim
16387 #: ../src/guestfs-actions.pod:6422
16388 #, no-wrap
16389 msgid ""
16390 " char *\n"
16391 " guestfs_sh (guestfs_h *g,\n"
16392 "             const char *command);\n"
16393 "\n"
16394 msgstr ""
16395
16396 #. type: textblock
16397 #: ../src/guestfs-actions.pod:6426 ../fish/guestfish-actions.pod:4311
16398 msgid ""
16399 "This call runs a command from the guest filesystem via the guest's "
16400 "C</bin/sh>."
16401 msgstr ""
16402
16403 #. type: textblock
16404 #: ../src/guestfs-actions.pod:6429
16405 msgid "This is like C<guestfs_command>, but passes the command to:"
16406 msgstr ""
16407
16408 #. type: verbatim
16409 #: ../src/guestfs-actions.pod:6431 ../fish/guestfish-actions.pod:4316
16410 #, no-wrap
16411 msgid ""
16412 " /bin/sh -c \"command\"\n"
16413 "\n"
16414 msgstr ""
16415
16416 #. type: textblock
16417 #: ../src/guestfs-actions.pod:6433 ../fish/guestfish-actions.pod:4318
16418 msgid ""
16419 "Depending on the guest's shell, this usually results in wildcards being "
16420 "expanded, shell expressions being interpolated and so on."
16421 msgstr ""
16422
16423 #. type: textblock
16424 #: ../src/guestfs-actions.pod:6437
16425 msgid "All the provisos about C<guestfs_command> apply to this call."
16426 msgstr ""
16427
16428 #. type: =head2
16429 #: ../src/guestfs-actions.pod:6444
16430 msgid "guestfs_sh_lines"
16431 msgstr ""
16432
16433 #. type: verbatim
16434 #: ../src/guestfs-actions.pod:6446
16435 #, no-wrap
16436 msgid ""
16437 " char **\n"
16438 " guestfs_sh_lines (guestfs_h *g,\n"
16439 "                   const char *command);\n"
16440 "\n"
16441 msgstr ""
16442
16443 #. type: textblock
16444 #: ../src/guestfs-actions.pod:6450
16445 msgid ""
16446 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16447 "lines."
16448 msgstr ""
16449
16450 #. type: textblock
16451 #: ../src/guestfs-actions.pod:6453
16452 msgid "See also: C<guestfs_command_lines>"
16453 msgstr ""
16454
16455 #. type: =head2
16456 #: ../src/guestfs-actions.pod:6461
16457 msgid "guestfs_sleep"
16458 msgstr ""
16459
16460 #. type: verbatim
16461 #: ../src/guestfs-actions.pod:6463
16462 #, no-wrap
16463 msgid ""
16464 " int\n"
16465 " guestfs_sleep (guestfs_h *g,\n"
16466 "                int secs);\n"
16467 "\n"
16468 msgstr ""
16469
16470 #. type: textblock
16471 #: ../src/guestfs-actions.pod:6467 ../fish/guestfish-actions.pod:4337
16472 msgid "Sleep for C<secs> seconds."
16473 msgstr ""
16474
16475 #. type: textblock
16476 #: ../src/guestfs-actions.pod:6471
16477 msgid "(Added in 1.0.41)"
16478 msgstr ""
16479
16480 #. type: =head2
16481 #: ../src/guestfs-actions.pod:6473 ../src/guestfs-structs.pod:109
16482 msgid "guestfs_stat"
16483 msgstr ""
16484
16485 #. type: verbatim
16486 #: ../src/guestfs-actions.pod:6475
16487 #, no-wrap
16488 msgid ""
16489 " struct guestfs_stat *\n"
16490 " guestfs_stat (guestfs_h *g,\n"
16491 "               const char *path);\n"
16492 "\n"
16493 msgstr ""
16494
16495 #. type: textblock
16496 #: ../src/guestfs-actions.pod:6481 ../fish/guestfish-actions.pod:4345
16497 msgid "This is the same as the C<stat(2)> system call."
16498 msgstr ""
16499
16500 #. type: =head2
16501 #: ../src/guestfs-actions.pod:6489 ../src/guestfs-structs.pod:135
16502 msgid "guestfs_statvfs"
16503 msgstr ""
16504
16505 #. type: verbatim
16506 #: ../src/guestfs-actions.pod:6491
16507 #, no-wrap
16508 msgid ""
16509 " struct guestfs_statvfs *\n"
16510 " guestfs_statvfs (guestfs_h *g,\n"
16511 "                  const char *path);\n"
16512 "\n"
16513 msgstr ""
16514
16515 #. type: textblock
16516 #: ../src/guestfs-actions.pod:6495 ../fish/guestfish-actions.pod:4351
16517 msgid ""
16518 "Returns file system statistics for any mounted file system.  C<path> should "
16519 "be a file or directory in the mounted file system (typically it is the mount "
16520 "point itself, but it doesn't need to be)."
16521 msgstr ""
16522
16523 #. type: textblock
16524 #: ../src/guestfs-actions.pod:6499 ../fish/guestfish-actions.pod:4355
16525 msgid "This is the same as the C<statvfs(2)> system call."
16526 msgstr ""
16527
16528 #. type: textblock
16529 #: ../src/guestfs-actions.pod:6501
16530 msgid ""
16531 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16532 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16533 msgstr ""
16534
16535 #. type: =head2
16536 #: ../src/guestfs-actions.pod:6507
16537 msgid "guestfs_strings"
16538 msgstr ""
16539
16540 #. type: verbatim
16541 #: ../src/guestfs-actions.pod:6509
16542 #, no-wrap
16543 msgid ""
16544 " char **\n"
16545 " guestfs_strings (guestfs_h *g,\n"
16546 "                  const char *path);\n"
16547 "\n"
16548 msgstr ""
16549
16550 #. type: textblock
16551 #: ../src/guestfs-actions.pod:6513 ../fish/guestfish-actions.pod:4361
16552 msgid ""
16553 "This runs the L<strings(1)> command on a file and returns the list of "
16554 "printable strings found."
16555 msgstr ""
16556
16557 #. type: =head2
16558 #: ../src/guestfs-actions.pod:6525
16559 msgid "guestfs_strings_e"
16560 msgstr ""
16561
16562 #. type: verbatim
16563 #: ../src/guestfs-actions.pod:6527
16564 #, no-wrap
16565 msgid ""
16566 " char **\n"
16567 " guestfs_strings_e (guestfs_h *g,\n"
16568 "                    const char *encoding,\n"
16569 "                    const char *path);\n"
16570 "\n"
16571 msgstr ""
16572
16573 #. type: textblock
16574 #: ../src/guestfs-actions.pod:6532
16575 msgid ""
16576 "This is like the C<guestfs_strings> command, but allows you to specify the "
16577 "encoding of strings that are looked for in the source file C<path>."
16578 msgstr ""
16579
16580 #. type: textblock
16581 #: ../src/guestfs-actions.pod:6536 ../fish/guestfish-actions.pod:4375
16582 msgid "Allowed encodings are:"
16583 msgstr ""
16584
16585 #. type: =item
16586 #: ../src/guestfs-actions.pod:6540 ../fish/guestfish-actions.pod:4379
16587 msgid "s"
16588 msgstr ""
16589
16590 #. type: textblock
16591 #: ../src/guestfs-actions.pod:6542
16592 msgid ""
16593 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16594 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16595 msgstr ""
16596
16597 #. type: =item
16598 #: ../src/guestfs-actions.pod:6545 ../fish/guestfish-actions.pod:4384
16599 msgid "S"
16600 msgstr ""
16601
16602 #. type: textblock
16603 #: ../src/guestfs-actions.pod:6547 ../fish/guestfish-actions.pod:4386
16604 msgid "Single 8-bit-byte characters."
16605 msgstr ""
16606
16607 #. type: =item
16608 #: ../src/guestfs-actions.pod:6549 ../fish/guestfish-actions.pod:4388
16609 msgid "b"
16610 msgstr ""
16611
16612 #. type: textblock
16613 #: ../src/guestfs-actions.pod:6551 ../fish/guestfish-actions.pod:4390
16614 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16615 msgstr ""
16616
16617 #. type: =item
16618 #: ../src/guestfs-actions.pod:6554 ../fish/guestfish-actions.pod:4393
16619 msgid "l (lower case letter L)"
16620 msgstr ""
16621
16622 #. type: textblock
16623 #: ../src/guestfs-actions.pod:6556 ../fish/guestfish-actions.pod:4395
16624 msgid ""
16625 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16626 "examining binaries in Windows guests."
16627 msgstr ""
16628
16629 #. type: =item
16630 #: ../src/guestfs-actions.pod:6559 ../fish/guestfish-actions.pod:4398
16631 msgid "B"
16632 msgstr ""
16633
16634 #. type: textblock
16635 #: ../src/guestfs-actions.pod:6561 ../fish/guestfish-actions.pod:4400
16636 msgid "32-bit big endian such as UCS-4BE."
16637 msgstr ""
16638
16639 #. type: =item
16640 #: ../src/guestfs-actions.pod:6563 ../fish/guestfish-actions.pod:4402
16641 msgid "L"
16642 msgstr ""
16643
16644 #. type: textblock
16645 #: ../src/guestfs-actions.pod:6565 ../fish/guestfish-actions.pod:4404
16646 msgid "32-bit little endian such as UCS-4LE."
16647 msgstr ""
16648
16649 #. type: textblock
16650 #: ../src/guestfs-actions.pod:6569 ../fish/guestfish-actions.pod:4408
16651 msgid "The returned strings are transcoded to UTF-8."
16652 msgstr ""
16653
16654 #. type: =head2
16655 #: ../src/guestfs-actions.pod:6580
16656 msgid "guestfs_swapoff_device"
16657 msgstr ""
16658
16659 #. type: verbatim
16660 #: ../src/guestfs-actions.pod:6582
16661 #, no-wrap
16662 msgid ""
16663 " int\n"
16664 " guestfs_swapoff_device (guestfs_h *g,\n"
16665 "                         const char *device);\n"
16666 "\n"
16667 msgstr ""
16668
16669 #. type: textblock
16670 #: ../src/guestfs-actions.pod:6586
16671 msgid ""
16672 "This command disables the libguestfs appliance swap device or partition "
16673 "named C<device>.  See C<guestfs_swapon_device>."
16674 msgstr ""
16675
16676 #. type: =head2
16677 #: ../src/guestfs-actions.pod:6594
16678 msgid "guestfs_swapoff_file"
16679 msgstr ""
16680
16681 #. type: verbatim
16682 #: ../src/guestfs-actions.pod:6596
16683 #, no-wrap
16684 msgid ""
16685 " int\n"
16686 " guestfs_swapoff_file (guestfs_h *g,\n"
16687 "                       const char *file);\n"
16688 "\n"
16689 msgstr ""
16690
16691 #. type: textblock
16692 #: ../src/guestfs-actions.pod:6600 ../fish/guestfish-actions.pod:4425
16693 msgid "This command disables the libguestfs appliance swap on file."
16694 msgstr ""
16695
16696 #. type: =head2
16697 #: ../src/guestfs-actions.pod:6606
16698 msgid "guestfs_swapoff_label"
16699 msgstr ""
16700
16701 #. type: verbatim
16702 #: ../src/guestfs-actions.pod:6608
16703 #, no-wrap
16704 msgid ""
16705 " int\n"
16706 " guestfs_swapoff_label (guestfs_h *g,\n"
16707 "                        const char *label);\n"
16708 "\n"
16709 msgstr ""
16710
16711 #. type: textblock
16712 #: ../src/guestfs-actions.pod:6612 ../fish/guestfish-actions.pod:4431
16713 msgid ""
16714 "This command disables the libguestfs appliance swap on labeled swap "
16715 "partition."
16716 msgstr ""
16717
16718 #. type: =head2
16719 #: ../src/guestfs-actions.pod:6619
16720 msgid "guestfs_swapoff_uuid"
16721 msgstr ""
16722
16723 #. type: verbatim
16724 #: ../src/guestfs-actions.pod:6621
16725 #, no-wrap
16726 msgid ""
16727 " int\n"
16728 " guestfs_swapoff_uuid (guestfs_h *g,\n"
16729 "                       const char *uuid);\n"
16730 "\n"
16731 msgstr ""
16732
16733 #. type: textblock
16734 #: ../src/guestfs-actions.pod:6625 ../fish/guestfish-actions.pod:4438
16735 msgid ""
16736 "This command disables the libguestfs appliance swap partition with the given "
16737 "UUID."
16738 msgstr ""
16739
16740 #. type: =head2
16741 #: ../src/guestfs-actions.pod:6632
16742 msgid "guestfs_swapon_device"
16743 msgstr ""
16744
16745 #. type: verbatim
16746 #: ../src/guestfs-actions.pod:6634
16747 #, no-wrap
16748 msgid ""
16749 " int\n"
16750 " guestfs_swapon_device (guestfs_h *g,\n"
16751 "                        const char *device);\n"
16752 "\n"
16753 msgstr ""
16754
16755 #. type: textblock
16756 #: ../src/guestfs-actions.pod:6638
16757 msgid ""
16758 "This command enables the libguestfs appliance to use the swap device or "
16759 "partition named C<device>.  The increased memory is made available for all "
16760 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
16761 msgstr ""
16762
16763 #. type: textblock
16764 #: ../src/guestfs-actions.pod:6643 ../fish/guestfish-actions.pod:4450
16765 msgid ""
16766 "Note that you should not swap to existing guest swap partitions unless you "
16767 "know what you are doing.  They may contain hibernation information, or other "
16768 "information that the guest doesn't want you to trash.  You also risk leaking "
16769 "information about the host to the guest this way.  Instead, attach a new "
16770 "host device to the guest and swap on that."
16771 msgstr ""
16772
16773 #. type: =head2
16774 #: ../src/guestfs-actions.pod:6654
16775 msgid "guestfs_swapon_file"
16776 msgstr ""
16777
16778 #. type: verbatim
16779 #: ../src/guestfs-actions.pod:6656
16780 #, no-wrap
16781 msgid ""
16782 " int\n"
16783 " guestfs_swapon_file (guestfs_h *g,\n"
16784 "                      const char *file);\n"
16785 "\n"
16786 msgstr ""
16787
16788 #. type: textblock
16789 #: ../src/guestfs-actions.pod:6660
16790 msgid ""
16791 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
16792 "notes."
16793 msgstr ""
16794
16795 #. type: =head2
16796 #: ../src/guestfs-actions.pod:6667
16797 msgid "guestfs_swapon_label"
16798 msgstr ""
16799
16800 #. type: verbatim
16801 #: ../src/guestfs-actions.pod:6669
16802 #, no-wrap
16803 msgid ""
16804 " int\n"
16805 " guestfs_swapon_label (guestfs_h *g,\n"
16806 "                       const char *label);\n"
16807 "\n"
16808 msgstr ""
16809
16810 #. type: textblock
16811 #: ../src/guestfs-actions.pod:6673
16812 msgid ""
16813 "This command enables swap to a labeled swap partition.  See "
16814 "C<guestfs_swapon_device> for other notes."
16815 msgstr ""
16816
16817 #. type: =head2
16818 #: ../src/guestfs-actions.pod:6680
16819 msgid "guestfs_swapon_uuid"
16820 msgstr ""
16821
16822 #. type: verbatim
16823 #: ../src/guestfs-actions.pod:6682
16824 #, no-wrap
16825 msgid ""
16826 " int\n"
16827 " guestfs_swapon_uuid (guestfs_h *g,\n"
16828 "                      const char *uuid);\n"
16829 "\n"
16830 msgstr ""
16831
16832 #. type: textblock
16833 #: ../src/guestfs-actions.pod:6686
16834 msgid ""
16835 "This command enables swap to a swap partition with the given UUID.  See "
16836 "C<guestfs_swapon_device> for other notes."
16837 msgstr ""
16838
16839 #. type: =head2
16840 #: ../src/guestfs-actions.pod:6693
16841 msgid "guestfs_sync"
16842 msgstr ""
16843
16844 #. type: verbatim
16845 #: ../src/guestfs-actions.pod:6695
16846 #, no-wrap
16847 msgid ""
16848 " int\n"
16849 " guestfs_sync (guestfs_h *g);\n"
16850 "\n"
16851 msgstr ""
16852
16853 #. type: textblock
16854 #: ../src/guestfs-actions.pod:6698 ../fish/guestfish-actions.pod:4482
16855 msgid ""
16856 "This syncs the disk, so that any writes are flushed through to the "
16857 "underlying disk image."
16858 msgstr ""
16859
16860 #. type: textblock
16861 #: ../src/guestfs-actions.pod:6701 ../fish/guestfish-actions.pod:4485
16862 msgid ""
16863 "You should always call this if you have modified a disk image, before "
16864 "closing the handle."
16865 msgstr ""
16866
16867 #. type: =head2
16868 #: ../src/guestfs-actions.pod:6708
16869 msgid "guestfs_tail"
16870 msgstr ""
16871
16872 #. type: verbatim
16873 #: ../src/guestfs-actions.pod:6710
16874 #, no-wrap
16875 msgid ""
16876 " char **\n"
16877 " guestfs_tail (guestfs_h *g,\n"
16878 "               const char *path);\n"
16879 "\n"
16880 msgstr ""
16881
16882 #. type: textblock
16883 #: ../src/guestfs-actions.pod:6714 ../fish/guestfish-actions.pod:4492
16884 msgid "This command returns up to the last 10 lines of a file as a list of strings."
16885 msgstr ""
16886
16887 #. type: =head2
16888 #: ../src/guestfs-actions.pod:6726
16889 msgid "guestfs_tail_n"
16890 msgstr ""
16891
16892 #. type: verbatim
16893 #: ../src/guestfs-actions.pod:6728
16894 #, no-wrap
16895 msgid ""
16896 " char **\n"
16897 " guestfs_tail_n (guestfs_h *g,\n"
16898 "                 int nrlines,\n"
16899 "                 const char *path);\n"
16900 "\n"
16901 msgstr ""
16902
16903 #. type: textblock
16904 #: ../src/guestfs-actions.pod:6733 ../fish/guestfish-actions.pod:4502
16905 msgid ""
16906 "If the parameter C<nrlines> is a positive number, this returns the last "
16907 "C<nrlines> lines of the file C<path>."
16908 msgstr ""
16909
16910 #. type: textblock
16911 #: ../src/guestfs-actions.pod:6736 ../fish/guestfish-actions.pod:4505
16912 msgid ""
16913 "If the parameter C<nrlines> is a negative number, this returns lines from "
16914 "the file C<path>, starting with the C<-nrlines>th line."
16915 msgstr ""
16916
16917 #. type: =head2
16918 #: ../src/guestfs-actions.pod:6750
16919 msgid "guestfs_tar_in"
16920 msgstr ""
16921
16922 #. type: verbatim
16923 #: ../src/guestfs-actions.pod:6752
16924 #, no-wrap
16925 msgid ""
16926 " int\n"
16927 " guestfs_tar_in (guestfs_h *g,\n"
16928 "                 const char *tarfile,\n"
16929 "                 const char *directory);\n"
16930 "\n"
16931 msgstr ""
16932
16933 #. type: textblock
16934 #: ../src/guestfs-actions.pod:6757 ../fish/guestfish-actions.pod:4517
16935 msgid ""
16936 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
16937 "tar file) into C<directory>."
16938 msgstr ""
16939
16940 #. type: textblock
16941 #: ../src/guestfs-actions.pod:6760
16942 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
16943 msgstr ""
16944
16945 #. type: textblock
16946 #: ../src/guestfs-actions.pod:6765 ../src/guestfs-actions.pod:6782 ../src/guestfs-actions.pod:6798 ../src/guestfs-actions.pod:6814
16947 msgid "(Added in 1.0.3)"
16948 msgstr ""
16949
16950 #. type: =head2
16951 #: ../src/guestfs-actions.pod:6767
16952 msgid "guestfs_tar_out"
16953 msgstr ""
16954
16955 #. type: verbatim
16956 #: ../src/guestfs-actions.pod:6769
16957 #, no-wrap
16958 msgid ""
16959 " int\n"
16960 " guestfs_tar_out (guestfs_h *g,\n"
16961 "                  const char *directory,\n"
16962 "                  const char *tarfile);\n"
16963 "\n"
16964 msgstr ""
16965
16966 #. type: textblock
16967 #: ../src/guestfs-actions.pod:6774 ../fish/guestfish-actions.pod:4529
16968 msgid ""
16969 "This command packs the contents of C<directory> and downloads it to local "
16970 "file C<tarfile>."
16971 msgstr ""
16972
16973 #. type: textblock
16974 #: ../src/guestfs-actions.pod:6777
16975 msgid ""
16976 "To download a compressed tarball, use C<guestfs_tgz_out> or "
16977 "C<guestfs_txz_out>."
16978 msgstr ""
16979
16980 #. type: =head2
16981 #: ../src/guestfs-actions.pod:6784
16982 msgid "guestfs_tgz_in"
16983 msgstr ""
16984
16985 #. type: verbatim
16986 #: ../src/guestfs-actions.pod:6786
16987 #, no-wrap
16988 msgid ""
16989 " int\n"
16990 " guestfs_tgz_in (guestfs_h *g,\n"
16991 "                 const char *tarball,\n"
16992 "                 const char *directory);\n"
16993 "\n"
16994 msgstr ""
16995
16996 #. type: textblock
16997 #: ../src/guestfs-actions.pod:6791 ../fish/guestfish-actions.pod:4541
16998 msgid ""
16999 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17000 "tar file) into C<directory>."
17001 msgstr ""
17002
17003 #. type: textblock
17004 #: ../src/guestfs-actions.pod:6794
17005 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17006 msgstr ""
17007
17008 #. type: =head2
17009 #: ../src/guestfs-actions.pod:6800
17010 msgid "guestfs_tgz_out"
17011 msgstr ""
17012
17013 #. type: verbatim
17014 #: ../src/guestfs-actions.pod:6802
17015 #, no-wrap
17016 msgid ""
17017 " int\n"
17018 " guestfs_tgz_out (guestfs_h *g,\n"
17019 "                  const char *directory,\n"
17020 "                  const char *tarball);\n"
17021 "\n"
17022 msgstr ""
17023
17024 #. type: textblock
17025 #: ../src/guestfs-actions.pod:6807 ../fish/guestfish-actions.pod:4552
17026 msgid ""
17027 "This command packs the contents of C<directory> and downloads it to local "
17028 "file C<tarball>."
17029 msgstr ""
17030
17031 #. type: textblock
17032 #: ../src/guestfs-actions.pod:6810
17033 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17034 msgstr ""
17035
17036 #. type: =head2
17037 #: ../src/guestfs-actions.pod:6816
17038 msgid "guestfs_touch"
17039 msgstr ""
17040
17041 #. type: verbatim
17042 #: ../src/guestfs-actions.pod:6818
17043 #, no-wrap
17044 msgid ""
17045 " int\n"
17046 " guestfs_touch (guestfs_h *g,\n"
17047 "                const char *path);\n"
17048 "\n"
17049 msgstr ""
17050
17051 #. type: textblock
17052 #: ../src/guestfs-actions.pod:6822 ../fish/guestfish-actions.pod:4563
17053 msgid ""
17054 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17055 "timestamps on a file, or, if the file does not exist, to create a new "
17056 "zero-length file."
17057 msgstr ""
17058
17059 #. type: textblock
17060 #: ../src/guestfs-actions.pod:6826 ../fish/guestfish-actions.pod:4567
17061 msgid ""
17062 "This command only works on regular files, and will fail on other file types "
17063 "such as directories, symbolic links, block special etc."
17064 msgstr ""
17065
17066 #. type: =head2
17067 #: ../src/guestfs-actions.pod:6833
17068 msgid "guestfs_truncate"
17069 msgstr ""
17070
17071 #. type: verbatim
17072 #: ../src/guestfs-actions.pod:6835
17073 #, no-wrap
17074 msgid ""
17075 " int\n"
17076 " guestfs_truncate (guestfs_h *g,\n"
17077 "                   const char *path);\n"
17078 "\n"
17079 msgstr ""
17080
17081 #. type: textblock
17082 #: ../src/guestfs-actions.pod:6839 ../fish/guestfish-actions.pod:4574
17083 msgid ""
17084 "This command truncates C<path> to a zero-length file.  The file must exist "
17085 "already."
17086 msgstr ""
17087
17088 #. type: =head2
17089 #: ../src/guestfs-actions.pod:6846
17090 msgid "guestfs_truncate_size"
17091 msgstr ""
17092
17093 #. type: verbatim
17094 #: ../src/guestfs-actions.pod:6848
17095 #, no-wrap
17096 msgid ""
17097 " int\n"
17098 " guestfs_truncate_size (guestfs_h *g,\n"
17099 "                        const char *path,\n"
17100 "                        int64_t size);\n"
17101 "\n"
17102 msgstr ""
17103
17104 #. type: textblock
17105 #: ../src/guestfs-actions.pod:6853 ../fish/guestfish-actions.pod:4581
17106 msgid ""
17107 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17108 "already."
17109 msgstr ""
17110
17111 #. type: textblock
17112 #: ../src/guestfs-actions.pod:6856
17113 msgid ""
17114 "If the current file size is less than C<size> then the file is extended to "
17115 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17116 "blocks are not allocated for the file until you write to it).  To create a "
17117 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17118 msgstr ""
17119
17120 #. type: =head2
17121 #: ../src/guestfs-actions.pod:6866
17122 msgid "guestfs_tune2fs_l"
17123 msgstr ""
17124
17125 #. type: verbatim
17126 #: ../src/guestfs-actions.pod:6868
17127 #, no-wrap
17128 msgid ""
17129 " char **\n"
17130 " guestfs_tune2fs_l (guestfs_h *g,\n"
17131 "                    const char *device);\n"
17132 "\n"
17133 msgstr ""
17134
17135 #. type: textblock
17136 #: ../src/guestfs-actions.pod:6872 ../fish/guestfish-actions.pod:4594
17137 msgid ""
17138 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17139 "C<device>."
17140 msgstr ""
17141
17142 #. type: textblock
17143 #: ../src/guestfs-actions.pod:6875 ../fish/guestfish-actions.pod:4597
17144 msgid ""
17145 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17146 "for more details.  The list of fields returned isn't clearly defined, and "
17147 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17148 "and the filesystem itself."
17149 msgstr ""
17150
17151 #. type: =head2
17152 #: ../src/guestfs-actions.pod:6888
17153 msgid "guestfs_txz_in"
17154 msgstr ""
17155
17156 #. type: verbatim
17157 #: ../src/guestfs-actions.pod:6890
17158 #, no-wrap
17159 msgid ""
17160 " int\n"
17161 " guestfs_txz_in (guestfs_h *g,\n"
17162 "                 const char *tarball,\n"
17163 "                 const char *directory);\n"
17164 "\n"
17165 msgstr ""
17166
17167 #. type: textblock
17168 #: ../src/guestfs-actions.pod:6895 ../fish/guestfish-actions.pod:4606
17169 msgid ""
17170 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17171 "tar file) into C<directory>."
17172 msgstr ""
17173
17174 #. type: =head2
17175 #: ../src/guestfs-actions.pod:6902
17176 msgid "guestfs_txz_out"
17177 msgstr ""
17178
17179 #. type: verbatim
17180 #: ../src/guestfs-actions.pod:6904
17181 #, no-wrap
17182 msgid ""
17183 " int\n"
17184 " guestfs_txz_out (guestfs_h *g,\n"
17185 "                  const char *directory,\n"
17186 "                  const char *tarball);\n"
17187 "\n"
17188 msgstr ""
17189
17190 #. type: textblock
17191 #: ../src/guestfs-actions.pod:6909 ../fish/guestfish-actions.pod:4615
17192 msgid ""
17193 "This command packs the contents of C<directory> and downloads it to local "
17194 "file C<tarball> (as an xz compressed tar archive)."
17195 msgstr ""
17196
17197 #. type: =head2
17198 #: ../src/guestfs-actions.pod:6916
17199 msgid "guestfs_umask"
17200 msgstr ""
17201
17202 #. type: verbatim
17203 #: ../src/guestfs-actions.pod:6918
17204 #, no-wrap
17205 msgid ""
17206 " int\n"
17207 " guestfs_umask (guestfs_h *g,\n"
17208 "                int mask);\n"
17209 "\n"
17210 msgstr ""
17211
17212 #. type: textblock
17213 #: ../src/guestfs-actions.pod:6922 ../fish/guestfish-actions.pod:4624
17214 msgid ""
17215 "This function sets the mask used for creating new files and device nodes to "
17216 "C<mask & 0777>."
17217 msgstr ""
17218
17219 #. type: textblock
17220 #: ../src/guestfs-actions.pod:6925 ../fish/guestfish-actions.pod:4627
17221 msgid ""
17222 "Typical umask values would be C<022> which creates new files with "
17223 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17224 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17225 msgstr ""
17226
17227 #. type: textblock
17228 #: ../src/guestfs-actions.pod:6930 ../fish/guestfish-actions.pod:4632
17229 msgid ""
17230 "The default umask is C<022>.  This is important because it means that "
17231 "directories and device nodes will be created with C<0644> or C<0755> mode "
17232 "even if you specify C<0777>."
17233 msgstr ""
17234
17235 #. type: textblock
17236 #: ../src/guestfs-actions.pod:6934
17237 msgid ""
17238 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17239 "C<guestfs_mkdir>."
17240 msgstr ""
17241
17242 #. type: textblock
17243 #: ../src/guestfs-actions.pod:6937 ../fish/guestfish-actions.pod:4639
17244 msgid "This call returns the previous umask."
17245 msgstr ""
17246
17247 #. type: =head2
17248 #: ../src/guestfs-actions.pod:6943
17249 msgid "guestfs_umount"
17250 msgstr ""
17251
17252 #. type: verbatim
17253 #: ../src/guestfs-actions.pod:6945
17254 #, no-wrap
17255 msgid ""
17256 " int\n"
17257 " guestfs_umount (guestfs_h *g,\n"
17258 "                 const char *pathordevice);\n"
17259 "\n"
17260 msgstr ""
17261
17262 #. type: textblock
17263 #: ../src/guestfs-actions.pod:6949 ../fish/guestfish-actions.pod:4647
17264 msgid ""
17265 "This unmounts the given filesystem.  The filesystem may be specified either "
17266 "by its mountpoint (path) or the device which contains the filesystem."
17267 msgstr ""
17268
17269 #. type: =head2
17270 #: ../src/guestfs-actions.pod:6957
17271 msgid "guestfs_umount_all"
17272 msgstr ""
17273
17274 #. type: verbatim
17275 #: ../src/guestfs-actions.pod:6959
17276 #, no-wrap
17277 msgid ""
17278 " int\n"
17279 " guestfs_umount_all (guestfs_h *g);\n"
17280 "\n"
17281 msgstr ""
17282
17283 #. type: textblock
17284 #: ../src/guestfs-actions.pod:6962 ../fish/guestfish-actions.pod:4657
17285 msgid "This unmounts all mounted filesystems."
17286 msgstr ""
17287
17288 #. type: textblock
17289 #: ../src/guestfs-actions.pod:6964 ../fish/guestfish-actions.pod:4659
17290 msgid "Some internal mounts are not unmounted by this call."
17291 msgstr ""
17292
17293 #. type: =head2
17294 #: ../src/guestfs-actions.pod:6970
17295 msgid "guestfs_upload"
17296 msgstr ""
17297
17298 #. type: verbatim
17299 #: ../src/guestfs-actions.pod:6972
17300 #, no-wrap
17301 msgid ""
17302 " int\n"
17303 " guestfs_upload (guestfs_h *g,\n"
17304 "                 const char *filename,\n"
17305 "                 const char *remotefilename);\n"
17306 "\n"
17307 msgstr ""
17308
17309 #. type: textblock
17310 #: ../src/guestfs-actions.pod:6977 ../src/guestfs-actions.pod:7001 ../fish/guestfish-actions.pod:4665 ../fish/guestfish-actions.pod:4678
17311 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17312 msgstr ""
17313
17314 #. type: textblock
17315 #: ../src/guestfs-actions.pod:6982
17316 msgid "See also C<guestfs_download>."
17317 msgstr ""
17318
17319 #. type: =head2
17320 #: ../src/guestfs-actions.pod:6993
17321 msgid "guestfs_upload_offset"
17322 msgstr ""
17323
17324 #. type: verbatim
17325 #: ../src/guestfs-actions.pod:6995
17326 #, no-wrap
17327 msgid ""
17328 " int\n"
17329 " guestfs_upload_offset (guestfs_h *g,\n"
17330 "                        const char *filename,\n"
17331 "                        const char *remotefilename,\n"
17332 "                        int64_t offset);\n"
17333 "\n"
17334 msgstr ""
17335
17336 #. type: textblock
17337 #: ../src/guestfs-actions.pod:7004 ../fish/guestfish-actions.pod:4681
17338 msgid ""
17339 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17340 "The intention is to overwrite parts of existing files or devices, although "
17341 "if a non-existant file is specified then it is created with a \"hole\" "
17342 "before C<offset>.  The size of the data written is implicit in the size of "
17343 "the source C<filename>."
17344 msgstr ""
17345
17346 #. type: textblock
17347 #: ../src/guestfs-actions.pod:7011
17348 msgid ""
17349 "Note that there is no limit on the amount of data that can be uploaded with "
17350 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17351 "full amount unless an error occurs."
17352 msgstr ""
17353
17354 #. type: textblock
17355 #: ../src/guestfs-actions.pod:7016
17356 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17357 msgstr ""
17358
17359 #. type: =head2
17360 #: ../src/guestfs-actions.pod:7027
17361 msgid "guestfs_utimens"
17362 msgstr ""
17363
17364 #. type: verbatim
17365 #: ../src/guestfs-actions.pod:7029
17366 #, no-wrap
17367 msgid ""
17368 " int\n"
17369 " guestfs_utimens (guestfs_h *g,\n"
17370 "                  const char *path,\n"
17371 "                  int64_t atsecs,\n"
17372 "                  int64_t atnsecs,\n"
17373 "                  int64_t mtsecs,\n"
17374 "                  int64_t mtnsecs);\n"
17375 "\n"
17376 msgstr ""
17377
17378 #. type: textblock
17379 #: ../src/guestfs-actions.pod:7037 ../fish/guestfish-actions.pod:4701
17380 msgid "This command sets the timestamps of a file with nanosecond precision."
17381 msgstr ""
17382
17383 #. type: textblock
17384 #: ../src/guestfs-actions.pod:7040 ../fish/guestfish-actions.pod:4704
17385 msgid ""
17386 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17387 "from the epoch."
17388 msgstr ""
17389
17390 #. type: textblock
17391 #: ../src/guestfs-actions.pod:7043 ../fish/guestfish-actions.pod:4707
17392 msgid ""
17393 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17394 "nanoseconds from the epoch."
17395 msgstr ""
17396
17397 #. type: textblock
17398 #: ../src/guestfs-actions.pod:7046 ../fish/guestfish-actions.pod:4710
17399 msgid ""
17400 "If the C<*nsecs> field contains the special value C<-1> then the "
17401 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17402 "ignored in this case)."
17403 msgstr ""
17404
17405 #. type: textblock
17406 #: ../src/guestfs-actions.pod:7050 ../fish/guestfish-actions.pod:4714
17407 msgid ""
17408 "If the C<*nsecs> field contains the special value C<-2> then the "
17409 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17410 "in this case)."
17411 msgstr ""
17412
17413 #. type: =head2
17414 #: ../src/guestfs-actions.pod:7058 ../src/guestfs-structs.pod:175
17415 msgid "guestfs_version"
17416 msgstr ""
17417
17418 #. type: verbatim
17419 #: ../src/guestfs-actions.pod:7060
17420 #, no-wrap
17421 msgid ""
17422 " struct guestfs_version *\n"
17423 " guestfs_version (guestfs_h *g);\n"
17424 "\n"
17425 msgstr ""
17426
17427 #. type: textblock
17428 #: ../src/guestfs-actions.pod:7063 ../fish/guestfish-actions.pod:4722
17429 msgid "Return the libguestfs version number that the program is linked against."
17430 msgstr ""
17431
17432 #. type: textblock
17433 #: ../src/guestfs-actions.pod:7066 ../fish/guestfish-actions.pod:4725
17434 msgid ""
17435 "Note that because of dynamic linking this is not necessarily the version of "
17436 "libguestfs that you compiled against.  You can compile the program, and then "
17437 "at runtime dynamically link against a completely different C<libguestfs.so> "
17438 "library."
17439 msgstr ""
17440
17441 #. type: textblock
17442 #: ../src/guestfs-actions.pod:7071 ../fish/guestfish-actions.pod:4730
17443 msgid ""
17444 "This call was added in version C<1.0.58>.  In previous versions of "
17445 "libguestfs there was no way to get the version number.  From C code you can "
17446 "use dynamic linker functions to find out if this symbol exists (if it "
17447 "doesn't, then it's an earlier version)."
17448 msgstr ""
17449
17450 #. type: textblock
17451 #: ../src/guestfs-actions.pod:7077 ../fish/guestfish-actions.pod:4736
17452 msgid ""
17453 "The call returns a structure with four elements.  The first three (C<major>, "
17454 "C<minor> and C<release>) are numbers and correspond to the usual version "
17455 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17456 "but may be used for distro-specific information."
17457 msgstr ""
17458
17459 #. type: textblock
17460 #: ../src/guestfs-actions.pod:7083 ../fish/guestfish-actions.pod:4742
17461 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
17462 msgstr ""
17463
17464 #. type: textblock
17465 #: ../src/guestfs-actions.pod:7086 ../fish/guestfish-actions.pod:4745
17466 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17467 msgstr ""
17468
17469 #. type: textblock
17470 #: ../src/guestfs-actions.pod:7088
17471 msgid ""
17472 "I<Note:> Don't use this call to test for availability of features.  In "
17473 "enterprise distributions we backport features from later versions into "
17474 "earlier versions, making this an unreliable way to test for features.  Use "
17475 "C<guestfs_available> instead."
17476 msgstr ""
17477
17478 #. type: textblock
17479 #: ../src/guestfs-actions.pod:7094
17480 msgid ""
17481 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17482 "error.  I<The caller must call C<guestfs_free_version> after use>."
17483 msgstr ""
17484
17485 #. type: textblock
17486 #: ../src/guestfs-actions.pod:7098
17487 msgid "(Added in 1.0.58)"
17488 msgstr ""
17489
17490 #. type: =head2
17491 #: ../src/guestfs-actions.pod:7100
17492 msgid "guestfs_vfs_label"
17493 msgstr ""
17494
17495 #. type: verbatim
17496 #: ../src/guestfs-actions.pod:7102
17497 #, no-wrap
17498 msgid ""
17499 " char *\n"
17500 " guestfs_vfs_label (guestfs_h *g,\n"
17501 "                    const char *device);\n"
17502 "\n"
17503 msgstr ""
17504
17505 #. type: textblock
17506 #: ../src/guestfs-actions.pod:7106 ../fish/guestfish-actions.pod:4757
17507 msgid "This returns the filesystem label of the filesystem on C<device>."
17508 msgstr ""
17509
17510 #. type: textblock
17511 #: ../src/guestfs-actions.pod:7109 ../fish/guestfish-actions.pod:4760
17512 msgid "If the filesystem is unlabeled, this returns the empty string."
17513 msgstr ""
17514
17515 #. type: textblock
17516 #: ../src/guestfs-actions.pod:7111
17517 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17518 msgstr ""
17519
17520 #. type: textblock
17521 #: ../src/guestfs-actions.pod:7116 ../src/guestfs-actions.pod:7153
17522 msgid "(Added in 1.3.18)"
17523 msgstr ""
17524
17525 #. type: =head2
17526 #: ../src/guestfs-actions.pod:7118
17527 msgid "guestfs_vfs_type"
17528 msgstr ""
17529
17530 #. type: verbatim
17531 #: ../src/guestfs-actions.pod:7120
17532 #, no-wrap
17533 msgid ""
17534 " char *\n"
17535 " guestfs_vfs_type (guestfs_h *g,\n"
17536 "                   const char *device);\n"
17537 "\n"
17538 msgstr ""
17539
17540 #. type: textblock
17541 #: ../src/guestfs-actions.pod:7124 ../fish/guestfish-actions.pod:4768
17542 msgid ""
17543 "This command gets the filesystem type corresponding to the filesystem on "
17544 "C<device>."
17545 msgstr ""
17546
17547 #. type: textblock
17548 #: ../src/guestfs-actions.pod:7127 ../fish/guestfish-actions.pod:4771
17549 msgid ""
17550 "For most filesystems, the result is the name of the Linux VFS module which "
17551 "would be used to mount this filesystem if you mounted it without specifying "
17552 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17553 msgstr ""
17554
17555 #. type: =head2
17556 #: ../src/guestfs-actions.pod:7137
17557 msgid "guestfs_vfs_uuid"
17558 msgstr ""
17559
17560 #. type: verbatim
17561 #: ../src/guestfs-actions.pod:7139
17562 #, no-wrap
17563 msgid ""
17564 " char *\n"
17565 " guestfs_vfs_uuid (guestfs_h *g,\n"
17566 "                   const char *device);\n"
17567 "\n"
17568 msgstr ""
17569
17570 #. type: textblock
17571 #: ../src/guestfs-actions.pod:7143 ../fish/guestfish-actions.pod:4780
17572 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17573 msgstr ""
17574
17575 #. type: textblock
17576 #: ../src/guestfs-actions.pod:7146 ../fish/guestfish-actions.pod:4783
17577 msgid "If the filesystem does not have a UUID, this returns the empty string."
17578 msgstr ""
17579
17580 #. type: textblock
17581 #: ../src/guestfs-actions.pod:7148
17582 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17583 msgstr ""
17584
17585 #. type: =head2
17586 #: ../src/guestfs-actions.pod:7155
17587 msgid "guestfs_vg_activate"
17588 msgstr ""
17589
17590 #. type: verbatim
17591 #: ../src/guestfs-actions.pod:7157
17592 #, no-wrap
17593 msgid ""
17594 " int\n"
17595 " guestfs_vg_activate (guestfs_h *g,\n"
17596 "                      int activate,\n"
17597 "                      char *const *volgroups);\n"
17598 "\n"
17599 msgstr ""
17600
17601 #. type: textblock
17602 #: ../src/guestfs-actions.pod:7162 ../fish/guestfish-actions.pod:4791
17603 msgid ""
17604 "This command activates or (if C<activate> is false) deactivates all logical "
17605 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17606 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17607 "deactivated, then those devices disappear."
17608 msgstr ""
17609
17610 #. type: textblock
17611 #: ../src/guestfs-actions.pod:7168 ../fish/guestfish-actions.pod:4797
17612 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17613 msgstr ""
17614
17615 #. type: textblock
17616 #: ../src/guestfs-actions.pod:7170 ../fish/guestfish-actions.pod:4799
17617 msgid ""
17618 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17619 "activated or deactivated."
17620 msgstr ""
17621
17622 #. type: =head2
17623 #: ../src/guestfs-actions.pod:7177
17624 msgid "guestfs_vg_activate_all"
17625 msgstr ""
17626
17627 #. type: verbatim
17628 #: ../src/guestfs-actions.pod:7179
17629 #, no-wrap
17630 msgid ""
17631 " int\n"
17632 " guestfs_vg_activate_all (guestfs_h *g,\n"
17633 "                          int activate);\n"
17634 "\n"
17635 msgstr ""
17636
17637 #. type: textblock
17638 #: ../src/guestfs-actions.pod:7183 ../fish/guestfish-actions.pod:4806
17639 msgid ""
17640 "This command activates or (if C<activate> is false) deactivates all logical "
17641 "volumes in all volume groups.  If activated, then they are made known to the "
17642 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17643 "those devices disappear."
17644 msgstr ""
17645
17646 #. type: textblock
17647 #: ../src/guestfs-actions.pod:7189 ../fish/guestfish-actions.pod:4812
17648 msgid "This command is the same as running C<vgchange -a y|n>"
17649 msgstr ""
17650
17651 #. type: =head2
17652 #: ../src/guestfs-actions.pod:7195
17653 msgid "guestfs_vgcreate"
17654 msgstr ""
17655
17656 #. type: verbatim
17657 #: ../src/guestfs-actions.pod:7197
17658 #, no-wrap
17659 msgid ""
17660 " int\n"
17661 " guestfs_vgcreate (guestfs_h *g,\n"
17662 "                   const char *volgroup,\n"
17663 "                   char *const *physvols);\n"
17664 "\n"
17665 msgstr ""
17666
17667 #. type: textblock
17668 #: ../src/guestfs-actions.pod:7202 ../fish/guestfish-actions.pod:4818
17669 msgid ""
17670 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17671 "of physical volumes C<physvols>."
17672 msgstr ""
17673
17674 #. type: =head2
17675 #: ../src/guestfs-actions.pod:7209
17676 msgid "guestfs_vglvuuids"
17677 msgstr ""
17678
17679 #. type: verbatim
17680 #: ../src/guestfs-actions.pod:7211
17681 #, no-wrap
17682 msgid ""
17683 " char **\n"
17684 " guestfs_vglvuuids (guestfs_h *g,\n"
17685 "                    const char *vgname);\n"
17686 "\n"
17687 msgstr ""
17688
17689 #. type: textblock
17690 #: ../src/guestfs-actions.pod:7215 ../fish/guestfish-actions.pod:4825
17691 msgid ""
17692 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17693 "volumes created in this volume group."
17694 msgstr ""
17695
17696 #. type: textblock
17697 #: ../src/guestfs-actions.pod:7218
17698 msgid ""
17699 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17700 "associate logical volumes and volume groups."
17701 msgstr ""
17702
17703 #. type: textblock
17704 #: ../src/guestfs-actions.pod:7221
17705 msgid "See also C<guestfs_vgpvuuids>."
17706 msgstr ""
17707
17708 #. type: =head2
17709 #: ../src/guestfs-actions.pod:7229
17710 msgid "guestfs_vgpvuuids"
17711 msgstr ""
17712
17713 #. type: verbatim
17714 #: ../src/guestfs-actions.pod:7231
17715 #, no-wrap
17716 msgid ""
17717 " char **\n"
17718 " guestfs_vgpvuuids (guestfs_h *g,\n"
17719 "                    const char *vgname);\n"
17720 "\n"
17721 msgstr ""
17722
17723 #. type: textblock
17724 #: ../src/guestfs-actions.pod:7235 ../fish/guestfish-actions.pod:4837
17725 msgid ""
17726 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
17727 "volumes that this volume group resides on."
17728 msgstr ""
17729
17730 #. type: textblock
17731 #: ../src/guestfs-actions.pod:7238
17732 msgid ""
17733 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
17734 "associate physical volumes and volume groups."
17735 msgstr ""
17736
17737 #. type: textblock
17738 #: ../src/guestfs-actions.pod:7241
17739 msgid "See also C<guestfs_vglvuuids>."
17740 msgstr ""
17741
17742 #. type: =head2
17743 #: ../src/guestfs-actions.pod:7249
17744 msgid "guestfs_vgremove"
17745 msgstr ""
17746
17747 #. type: verbatim
17748 #: ../src/guestfs-actions.pod:7251
17749 #, no-wrap
17750 msgid ""
17751 " int\n"
17752 " guestfs_vgremove (guestfs_h *g,\n"
17753 "                   const char *vgname);\n"
17754 "\n"
17755 msgstr ""
17756
17757 #. type: textblock
17758 #: ../src/guestfs-actions.pod:7255 ../fish/guestfish-actions.pod:4849
17759 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
17760 msgstr ""
17761
17762 #. type: textblock
17763 #: ../src/guestfs-actions.pod:7257 ../fish/guestfish-actions.pod:4851
17764 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
17765 msgstr ""
17766
17767 #. type: =head2
17768 #: ../src/guestfs-actions.pod:7264
17769 msgid "guestfs_vgrename"
17770 msgstr ""
17771
17772 #. type: verbatim
17773 #: ../src/guestfs-actions.pod:7266
17774 #, no-wrap
17775 msgid ""
17776 " int\n"
17777 " guestfs_vgrename (guestfs_h *g,\n"
17778 "                   const char *volgroup,\n"
17779 "                   const char *newvolgroup);\n"
17780 "\n"
17781 msgstr ""
17782
17783 #. type: textblock
17784 #: ../src/guestfs-actions.pod:7271 ../fish/guestfish-actions.pod:4858
17785 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
17786 msgstr ""
17787
17788 #. type: =head2
17789 #: ../src/guestfs-actions.pod:7277
17790 msgid "guestfs_vgs"
17791 msgstr ""
17792
17793 #. type: verbatim
17794 #: ../src/guestfs-actions.pod:7279
17795 #, no-wrap
17796 msgid ""
17797 " char **\n"
17798 " guestfs_vgs (guestfs_h *g);\n"
17799 "\n"
17800 msgstr ""
17801
17802 #. type: textblock
17803 #: ../src/guestfs-actions.pod:7282 ../fish/guestfish-actions.pod:4864
17804 msgid ""
17805 "List all the volumes groups detected.  This is the equivalent of the "
17806 "L<vgs(8)> command."
17807 msgstr ""
17808
17809 #. type: textblock
17810 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4867
17811 msgid ""
17812 "This returns a list of just the volume group names that were detected "
17813 "(eg. C<VolGroup00>)."
17814 msgstr ""
17815
17816 #. type: textblock
17817 #: ../src/guestfs-actions.pod:7288
17818 msgid "See also C<guestfs_vgs_full>."
17819 msgstr ""
17820
17821 #. type: =head2
17822 #: ../src/guestfs-actions.pod:7296
17823 msgid "guestfs_vgs_full"
17824 msgstr ""
17825
17826 #. type: verbatim
17827 #: ../src/guestfs-actions.pod:7298
17828 #, no-wrap
17829 msgid ""
17830 " struct guestfs_lvm_vg_list *\n"
17831 " guestfs_vgs_full (guestfs_h *g);\n"
17832 "\n"
17833 msgstr ""
17834
17835 #. type: textblock
17836 #: ../src/guestfs-actions.pod:7301 ../fish/guestfish-actions.pod:4876
17837 msgid ""
17838 "List all the volumes groups detected.  This is the equivalent of the "
17839 "L<vgs(8)> command.  The \"full\" version includes all fields."
17840 msgstr ""
17841
17842 #. type: textblock
17843 #: ../src/guestfs-actions.pod:7304
17844 msgid ""
17845 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
17846 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
17847 "use>."
17848 msgstr ""
17849
17850 #. type: =head2
17851 #: ../src/guestfs-actions.pod:7310
17852 msgid "guestfs_vgscan"
17853 msgstr ""
17854
17855 #. type: verbatim
17856 #: ../src/guestfs-actions.pod:7312
17857 #, no-wrap
17858 msgid ""
17859 " int\n"
17860 " guestfs_vgscan (guestfs_h *g);\n"
17861 "\n"
17862 msgstr ""
17863
17864 #. type: textblock
17865 #: ../src/guestfs-actions.pod:7315 ../fish/guestfish-actions.pod:4883
17866 msgid ""
17867 "This rescans all block devices and rebuilds the list of LVM physical "
17868 "volumes, volume groups and logical volumes."
17869 msgstr ""
17870
17871 #. type: =head2
17872 #: ../src/guestfs-actions.pod:7322
17873 msgid "guestfs_vguuid"
17874 msgstr ""
17875
17876 #. type: verbatim
17877 #: ../src/guestfs-actions.pod:7324
17878 #, no-wrap
17879 msgid ""
17880 " char *\n"
17881 " guestfs_vguuid (guestfs_h *g,\n"
17882 "                 const char *vgname);\n"
17883 "\n"
17884 msgstr ""
17885
17886 #. type: textblock
17887 #: ../src/guestfs-actions.pod:7328 ../fish/guestfish-actions.pod:4890
17888 msgid "This command returns the UUID of the LVM VG named C<vgname>."
17889 msgstr ""
17890
17891 #. type: =head2
17892 #: ../src/guestfs-actions.pod:7335
17893 msgid "guestfs_wait_ready"
17894 msgstr ""
17895
17896 #. type: verbatim
17897 #: ../src/guestfs-actions.pod:7337
17898 #, no-wrap
17899 msgid ""
17900 " int\n"
17901 " guestfs_wait_ready (guestfs_h *g);\n"
17902 "\n"
17903 msgstr ""
17904
17905 #. type: textblock
17906 #: ../src/guestfs-actions.pod:7340
17907 msgid "This function is a no op."
17908 msgstr ""
17909
17910 #. type: textblock
17911 #: ../src/guestfs-actions.pod:7342
17912 msgid ""
17913 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
17914 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
17915 "is no longer necessary because C<guestfs_launch> now does the waiting."
17916 msgstr ""
17917
17918 #. type: textblock
17919 #: ../src/guestfs-actions.pod:7347
17920 msgid ""
17921 "If you see any calls to this function in code then you can just remove them, "
17922 "unless you want to retain compatibility with older versions of the API."
17923 msgstr ""
17924
17925 #. type: textblock
17926 #: ../src/guestfs-actions.pod:7353
17927 msgid "This function is deprecated.  In new code, use the C<launch> call instead."
17928 msgstr ""
17929
17930 #. type: =head2
17931 #: ../src/guestfs-actions.pod:7362
17932 msgid "guestfs_wc_c"
17933 msgstr ""
17934
17935 #. type: verbatim
17936 #: ../src/guestfs-actions.pod:7364
17937 #, no-wrap
17938 msgid ""
17939 " int\n"
17940 " guestfs_wc_c (guestfs_h *g,\n"
17941 "               const char *path);\n"
17942 "\n"
17943 msgstr ""
17944
17945 #. type: textblock
17946 #: ../src/guestfs-actions.pod:7368 ../fish/guestfish-actions.pod:4896
17947 msgid ""
17948 "This command counts the characters in a file, using the C<wc -c> external "
17949 "command."
17950 msgstr ""
17951
17952 #. type: =head2
17953 #: ../src/guestfs-actions.pod:7375
17954 msgid "guestfs_wc_l"
17955 msgstr ""
17956
17957 #. type: verbatim
17958 #: ../src/guestfs-actions.pod:7377
17959 #, no-wrap
17960 msgid ""
17961 " int\n"
17962 " guestfs_wc_l (guestfs_h *g,\n"
17963 "               const char *path);\n"
17964 "\n"
17965 msgstr ""
17966
17967 #. type: textblock
17968 #: ../src/guestfs-actions.pod:7381 ../fish/guestfish-actions.pod:4903
17969 msgid ""
17970 "This command counts the lines in a file, using the C<wc -l> external "
17971 "command."
17972 msgstr ""
17973
17974 #. type: =head2
17975 #: ../src/guestfs-actions.pod:7388
17976 msgid "guestfs_wc_w"
17977 msgstr ""
17978
17979 #. type: verbatim
17980 #: ../src/guestfs-actions.pod:7390
17981 #, no-wrap
17982 msgid ""
17983 " int\n"
17984 " guestfs_wc_w (guestfs_h *g,\n"
17985 "               const char *path);\n"
17986 "\n"
17987 msgstr ""
17988
17989 #. type: textblock
17990 #: ../src/guestfs-actions.pod:7394 ../fish/guestfish-actions.pod:4910
17991 msgid ""
17992 "This command counts the words in a file, using the C<wc -w> external "
17993 "command."
17994 msgstr ""
17995
17996 #. type: =head2
17997 #: ../src/guestfs-actions.pod:7401
17998 msgid "guestfs_write"
17999 msgstr ""
18000
18001 #. type: verbatim
18002 #: ../src/guestfs-actions.pod:7403
18003 #, no-wrap
18004 msgid ""
18005 " int\n"
18006 " guestfs_write (guestfs_h *g,\n"
18007 "                const char *path,\n"
18008 "                const char *content,\n"
18009 "                size_t content_size);\n"
18010 "\n"
18011 msgstr ""
18012
18013 #. type: textblock
18014 #: ../src/guestfs-actions.pod:7409 ../fish/guestfish-actions.pod:4917
18015 msgid ""
18016 "This call creates a file called C<path>.  The content of the file is the "
18017 "string C<content> (which can contain any 8 bit data)."
18018 msgstr ""
18019
18020 #. type: =head2
18021 #: ../src/guestfs-actions.pod:7419
18022 msgid "guestfs_write_file"
18023 msgstr ""
18024
18025 #. type: verbatim
18026 #: ../src/guestfs-actions.pod:7421
18027 #, no-wrap
18028 msgid ""
18029 " int\n"
18030 " guestfs_write_file (guestfs_h *g,\n"
18031 "                     const char *path,\n"
18032 "                     const char *content,\n"
18033 "                     int size);\n"
18034 "\n"
18035 msgstr ""
18036
18037 #. type: textblock
18038 #: ../src/guestfs-actions.pod:7427 ../fish/guestfish-actions.pod:4927
18039 msgid ""
18040 "This call creates a file called C<path>.  The contents of the file is the "
18041 "string C<content> (which can contain any 8 bit data), with length C<size>."
18042 msgstr ""
18043
18044 #. type: textblock
18045 #: ../src/guestfs-actions.pod:7431 ../fish/guestfish-actions.pod:4931
18046 msgid ""
18047 "As a special case, if C<size> is C<0> then the length is calculated using "
18048 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18049 msgstr ""
18050
18051 #. type: textblock
18052 #: ../src/guestfs-actions.pod:7435 ../fish/guestfish-actions.pod:4935
18053 msgid ""
18054 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18055 "I<not> work, even if the length is specified."
18056 msgstr ""
18057
18058 #. type: textblock
18059 #: ../src/guestfs-actions.pod:7443 ../fish/guestfish-actions.pod:4941
18060 msgid "This function is deprecated.  In new code, use the C<write> call instead."
18061 msgstr ""
18062
18063 #. type: =head2
18064 #: ../src/guestfs-actions.pod:7452
18065 msgid "guestfs_zegrep"
18066 msgstr ""
18067
18068 #. type: verbatim
18069 #: ../src/guestfs-actions.pod:7454
18070 #, no-wrap
18071 msgid ""
18072 " char **\n"
18073 " guestfs_zegrep (guestfs_h *g,\n"
18074 "                 const char *regex,\n"
18075 "                 const char *path);\n"
18076 "\n"
18077 msgstr ""
18078
18079 #. type: textblock
18080 #: ../src/guestfs-actions.pod:7459 ../fish/guestfish-actions.pod:4952
18081 msgid "This calls the external C<zegrep> program and returns the matching lines."
18082 msgstr ""
18083
18084 #. type: =head2
18085 #: ../src/guestfs-actions.pod:7471
18086 msgid "guestfs_zegrepi"
18087 msgstr ""
18088
18089 #. type: verbatim
18090 #: ../src/guestfs-actions.pod:7473
18091 #, no-wrap
18092 msgid ""
18093 " char **\n"
18094 " guestfs_zegrepi (guestfs_h *g,\n"
18095 "                  const char *regex,\n"
18096 "                  const char *path);\n"
18097 "\n"
18098 msgstr ""
18099
18100 #. type: textblock
18101 #: ../src/guestfs-actions.pod:7478 ../fish/guestfish-actions.pod:4962
18102 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
18103 msgstr ""
18104
18105 #. type: =head2
18106 #: ../src/guestfs-actions.pod:7490
18107 msgid "guestfs_zero"
18108 msgstr ""
18109
18110 #. type: verbatim
18111 #: ../src/guestfs-actions.pod:7492
18112 #, no-wrap
18113 msgid ""
18114 " int\n"
18115 " guestfs_zero (guestfs_h *g,\n"
18116 "               const char *device);\n"
18117 "\n"
18118 msgstr ""
18119
18120 #. type: textblock
18121 #: ../src/guestfs-actions.pod:7496 ../fish/guestfish-actions.pod:4972
18122 msgid "This command writes zeroes over the first few blocks of C<device>."
18123 msgstr ""
18124
18125 #. type: textblock
18126 #: ../src/guestfs-actions.pod:7498 ../fish/guestfish-actions.pod:4974
18127 msgid ""
18128 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18129 "securely wipe the device).  It should be sufficient to remove any partition "
18130 "tables, filesystem superblocks and so on."
18131 msgstr ""
18132
18133 #. type: textblock
18134 #: ../src/guestfs-actions.pod:7502
18135 msgid ""
18136 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
18137 "C<guestfs_is_zero_device>"
18138 msgstr ""
18139
18140 #. type: =head2
18141 #: ../src/guestfs-actions.pod:7514
18142 msgid "guestfs_zero_device"
18143 msgstr ""
18144
18145 #. type: verbatim
18146 #: ../src/guestfs-actions.pod:7516
18147 #, no-wrap
18148 msgid ""
18149 " int\n"
18150 " guestfs_zero_device (guestfs_h *g,\n"
18151 "                      const char *device);\n"
18152 "\n"
18153 msgstr ""
18154
18155 #. type: textblock
18156 #: ../src/guestfs-actions.pod:7520
18157 msgid ""
18158 "This command writes zeroes over the entire C<device>.  Compare with "
18159 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18160 msgstr ""
18161
18162 #. type: textblock
18163 #: ../src/guestfs-actions.pod:7534
18164 msgid "(Added in 1.3.1)"
18165 msgstr ""
18166
18167 #. type: =head2
18168 #: ../src/guestfs-actions.pod:7536
18169 msgid "guestfs_zerofree"
18170 msgstr ""
18171
18172 #. type: verbatim
18173 #: ../src/guestfs-actions.pod:7538
18174 #, no-wrap
18175 msgid ""
18176 " int\n"
18177 " guestfs_zerofree (guestfs_h *g,\n"
18178 "                   const char *device);\n"
18179 "\n"
18180 msgstr ""
18181
18182 #. type: textblock
18183 #: ../src/guestfs-actions.pod:7542 ../fish/guestfish-actions.pod:4996
18184 msgid ""
18185 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18186 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18187 "possible to compress the filesystem more effectively."
18188 msgstr ""
18189
18190 #. type: textblock
18191 #: ../src/guestfs-actions.pod:7547 ../fish/guestfish-actions.pod:5001
18192 msgid "You should B<not> run this program if the filesystem is mounted."
18193 msgstr ""
18194
18195 #. type: textblock
18196 #: ../src/guestfs-actions.pod:7550 ../fish/guestfish-actions.pod:5004
18197 msgid ""
18198 "It is possible that using this program can damage the filesystem or data on "
18199 "the filesystem."
18200 msgstr ""
18201
18202 #. type: =head2
18203 #: ../src/guestfs-actions.pod:7557
18204 msgid "guestfs_zfgrep"
18205 msgstr ""
18206
18207 #. type: verbatim
18208 #: ../src/guestfs-actions.pod:7559
18209 #, no-wrap
18210 msgid ""
18211 " char **\n"
18212 " guestfs_zfgrep (guestfs_h *g,\n"
18213 "                 const char *pattern,\n"
18214 "                 const char *path);\n"
18215 "\n"
18216 msgstr ""
18217
18218 #. type: textblock
18219 #: ../src/guestfs-actions.pod:7564 ../fish/guestfish-actions.pod:5011
18220 msgid "This calls the external C<zfgrep> program and returns the matching lines."
18221 msgstr ""
18222
18223 #. type: =head2
18224 #: ../src/guestfs-actions.pod:7576
18225 msgid "guestfs_zfgrepi"
18226 msgstr ""
18227
18228 #. type: verbatim
18229 #: ../src/guestfs-actions.pod:7578
18230 #, no-wrap
18231 msgid ""
18232 " char **\n"
18233 " guestfs_zfgrepi (guestfs_h *g,\n"
18234 "                  const char *pattern,\n"
18235 "                  const char *path);\n"
18236 "\n"
18237 msgstr ""
18238
18239 #. type: textblock
18240 #: ../src/guestfs-actions.pod:7583 ../fish/guestfish-actions.pod:5021
18241 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
18242 msgstr ""
18243
18244 #. type: =head2
18245 #: ../src/guestfs-actions.pod:7595
18246 msgid "guestfs_zfile"
18247 msgstr ""
18248
18249 #. type: verbatim
18250 #: ../src/guestfs-actions.pod:7597
18251 #, no-wrap
18252 msgid ""
18253 " char *\n"
18254 " guestfs_zfile (guestfs_h *g,\n"
18255 "                const char *meth,\n"
18256 "                const char *path);\n"
18257 "\n"
18258 msgstr ""
18259
18260 #. type: textblock
18261 #: ../src/guestfs-actions.pod:7602 ../fish/guestfish-actions.pod:5031
18262 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
18263 msgstr ""
18264
18265 #. type: textblock
18266 #: ../src/guestfs-actions.pod:7605 ../fish/guestfish-actions.pod:5034
18267 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18268 msgstr ""
18269
18270 #. type: textblock
18271 #: ../src/guestfs-actions.pod:7607
18272 msgid ""
18273 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18274 "files."
18275 msgstr ""
18276
18277 #. type: textblock
18278 #: ../src/guestfs-actions.pod:7613 ../fish/guestfish-actions.pod:5039
18279 msgid "This function is deprecated.  In new code, use the C<file> call instead."
18280 msgstr ""
18281
18282 #. type: =head2
18283 #: ../src/guestfs-actions.pod:7622
18284 msgid "guestfs_zgrep"
18285 msgstr ""
18286
18287 #. type: verbatim
18288 #: ../src/guestfs-actions.pod:7624
18289 #, no-wrap
18290 msgid ""
18291 " char **\n"
18292 " guestfs_zgrep (guestfs_h *g,\n"
18293 "                const char *regex,\n"
18294 "                const char *path);\n"
18295 "\n"
18296 msgstr ""
18297
18298 #. type: textblock
18299 #: ../src/guestfs-actions.pod:7629 ../fish/guestfish-actions.pod:5050
18300 msgid "This calls the external C<zgrep> program and returns the matching lines."
18301 msgstr ""
18302
18303 #. type: =head2
18304 #: ../src/guestfs-actions.pod:7641
18305 msgid "guestfs_zgrepi"
18306 msgstr ""
18307
18308 #. type: verbatim
18309 #: ../src/guestfs-actions.pod:7643
18310 #, no-wrap
18311 msgid ""
18312 " char **\n"
18313 " guestfs_zgrepi (guestfs_h *g,\n"
18314 "                 const char *regex,\n"
18315 "                 const char *path);\n"
18316 "\n"
18317 msgstr ""
18318
18319 #. type: textblock
18320 #: ../src/guestfs-actions.pod:7648 ../fish/guestfish-actions.pod:5060
18321 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
18322 msgstr ""
18323
18324 #. type: =item
18325 #: ../src/guestfs-availability.pod:3
18326 msgid "B<augeas>"
18327 msgstr ""
18328
18329 #. type: textblock
18330 #: ../src/guestfs-availability.pod:5
18331 msgid ""
18332 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
18333 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
18334 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
18335 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
18336 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
18337 msgstr ""
18338
18339 #. type: =item
18340 #: ../src/guestfs-availability.pod:21
18341 msgid "B<inotify>"
18342 msgstr ""
18343
18344 #. type: textblock
18345 #: ../src/guestfs-availability.pod:23
18346 msgid ""
18347 "The following functions: L</guestfs_inotify_add_watch> "
18348 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
18349 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18350 msgstr ""
18351
18352 #. type: =item
18353 #: ../src/guestfs-availability.pod:31
18354 msgid "B<linuxfsuuid>"
18355 msgstr ""
18356
18357 #. type: textblock
18358 #: ../src/guestfs-availability.pod:33
18359 msgid ""
18360 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
18361 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18362 msgstr ""
18363
18364 #. type: =item
18365 #: ../src/guestfs-availability.pod:40
18366 msgid "B<linuxmodules>"
18367 msgstr ""
18368
18369 #. type: textblock
18370 #: ../src/guestfs-availability.pod:42
18371 msgid "The following functions: L</guestfs_modprobe>"
18372 msgstr ""
18373
18374 #. type: =item
18375 #: ../src/guestfs-availability.pod:45
18376 msgid "B<linuxxattrs>"
18377 msgstr ""
18378
18379 #. type: textblock
18380 #: ../src/guestfs-availability.pod:47
18381 msgid ""
18382 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
18383 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
18384 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
18385 "L</guestfs_setxattr>"
18386 msgstr ""
18387
18388 #. type: =item
18389 #: ../src/guestfs-availability.pod:58
18390 msgid "B<luks>"
18391 msgstr ""
18392
18393 #. type: textblock
18394 #: ../src/guestfs-availability.pod:60
18395 msgid ""
18396 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
18397 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
18398 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18399 msgstr ""
18400
18401 #. type: =item
18402 #: ../src/guestfs-availability.pod:69
18403 msgid "B<lvm2>"
18404 msgstr ""
18405
18406 #. type: textblock
18407 #: ../src/guestfs-availability.pod:71
18408 msgid ""
18409 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
18410 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
18411 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
18412 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
18413 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
18414 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
18415 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
18416 "L</guestfs_vgs_full>"
18417 msgstr ""
18418
18419 #. type: =item
18420 #: ../src/guestfs-availability.pod:94
18421 msgid "B<mknod>"
18422 msgstr ""
18423
18424 #. type: textblock
18425 #: ../src/guestfs-availability.pod:96
18426 msgid ""
18427 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
18428 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
18429 msgstr ""
18430
18431 #. type: =item
18432 #: ../src/guestfs-availability.pod:102
18433 msgid "B<ntfs3g>"
18434 msgstr ""
18435
18436 #. type: textblock
18437 #: ../src/guestfs-availability.pod:104
18438 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18439 msgstr ""
18440
18441 #. type: =item
18442 #: ../src/guestfs-availability.pod:107
18443 msgid "B<ntfsprogs>"
18444 msgstr ""
18445
18446 #. type: textblock
18447 #: ../src/guestfs-availability.pod:109
18448 msgid "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18449 msgstr ""
18450
18451 #. type: =item
18452 #: ../src/guestfs-availability.pod:113
18453 msgid "B<realpath>"
18454 msgstr ""
18455
18456 #. type: textblock
18457 #: ../src/guestfs-availability.pod:115
18458 msgid "The following functions: L</guestfs_realpath>"
18459 msgstr ""
18460
18461 #. type: =item
18462 #: ../src/guestfs-availability.pod:118
18463 msgid "B<scrub>"
18464 msgstr ""
18465
18466 #. type: textblock
18467 #: ../src/guestfs-availability.pod:120
18468 msgid ""
18469 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
18470 "L</guestfs_scrub_freespace>"
18471 msgstr ""
18472
18473 #. type: =item
18474 #: ../src/guestfs-availability.pod:125
18475 msgid "B<selinux>"
18476 msgstr ""
18477
18478 #. type: textblock
18479 #: ../src/guestfs-availability.pod:127
18480 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18481 msgstr ""
18482
18483 #. type: =item
18484 #: ../src/guestfs-availability.pod:131
18485 msgid "B<xz>"
18486 msgstr ""
18487
18488 #. type: textblock
18489 #: ../src/guestfs-availability.pod:133
18490 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18491 msgstr ""
18492
18493 #. type: =item
18494 #: ../src/guestfs-availability.pod:137
18495 msgid "B<zerofree>"
18496 msgstr ""
18497
18498 #. type: textblock
18499 #: ../src/guestfs-availability.pod:139
18500 msgid "The following functions: L</guestfs_zerofree>"
18501 msgstr ""
18502
18503 #. type: =head2
18504 #: ../src/guestfs-structs.pod:1
18505 msgid "guestfs_int_bool"
18506 msgstr ""
18507
18508 #. type: verbatim
18509 #: ../src/guestfs-structs.pod:3
18510 #, no-wrap
18511 msgid ""
18512 " struct guestfs_int_bool {\n"
18513 "   int32_t i;\n"
18514 "   int32_t b;\n"
18515 " };\n"
18516 " \n"
18517 msgstr ""
18518
18519 #. type: verbatim
18520 #: ../src/guestfs-structs.pod:8
18521 #, no-wrap
18522 msgid ""
18523 " struct guestfs_int_bool_list {\n"
18524 "   uint32_t len; /* Number of elements in list. */\n"
18525 "   struct guestfs_int_bool *val; /* Elements. */\n"
18526 " };\n"
18527 " \n"
18528 msgstr ""
18529
18530 #. type: verbatim
18531 #: ../src/guestfs-structs.pod:13
18532 #, no-wrap
18533 msgid ""
18534 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18535 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18536 "\n"
18537 msgstr ""
18538
18539 #. type: =head2
18540 #: ../src/guestfs-structs.pod:16
18541 msgid "guestfs_lvm_pv"
18542 msgstr ""
18543
18544 #. type: verbatim
18545 #: ../src/guestfs-structs.pod:18
18546 #, no-wrap
18547 msgid ""
18548 " struct guestfs_lvm_pv {\n"
18549 "   char *pv_name;\n"
18550 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18551 "*/\n"
18552 "   char pv_uuid[32];\n"
18553 "   char *pv_fmt;\n"
18554 "   uint64_t pv_size;\n"
18555 "   uint64_t dev_size;\n"
18556 "   uint64_t pv_free;\n"
18557 "   uint64_t pv_used;\n"
18558 "   char *pv_attr;\n"
18559 "   int64_t pv_pe_count;\n"
18560 "   int64_t pv_pe_alloc_count;\n"
18561 "   char *pv_tags;\n"
18562 "   uint64_t pe_start;\n"
18563 "   int64_t pv_mda_count;\n"
18564 "   uint64_t pv_mda_free;\n"
18565 " };\n"
18566 " \n"
18567 msgstr ""
18568
18569 #. type: verbatim
18570 #: ../src/guestfs-structs.pod:36
18571 #, no-wrap
18572 msgid ""
18573 " struct guestfs_lvm_pv_list {\n"
18574 "   uint32_t len; /* Number of elements in list. */\n"
18575 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18576 " };\n"
18577 " \n"
18578 msgstr ""
18579
18580 #. type: verbatim
18581 #: ../src/guestfs-structs.pod:41
18582 #, no-wrap
18583 msgid ""
18584 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18585 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18586 "\n"
18587 msgstr ""
18588
18589 #. type: =head2
18590 #: ../src/guestfs-structs.pod:44
18591 msgid "guestfs_lvm_vg"
18592 msgstr ""
18593
18594 #. type: verbatim
18595 #: ../src/guestfs-structs.pod:46
18596 #, no-wrap
18597 msgid ""
18598 " struct guestfs_lvm_vg {\n"
18599 "   char *vg_name;\n"
18600 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18601 "*/\n"
18602 "   char vg_uuid[32];\n"
18603 "   char *vg_fmt;\n"
18604 "   char *vg_attr;\n"
18605 "   uint64_t vg_size;\n"
18606 "   uint64_t vg_free;\n"
18607 "   char *vg_sysid;\n"
18608 "   uint64_t vg_extent_size;\n"
18609 "   int64_t vg_extent_count;\n"
18610 "   int64_t vg_free_count;\n"
18611 "   int64_t max_lv;\n"
18612 "   int64_t max_pv;\n"
18613 "   int64_t pv_count;\n"
18614 "   int64_t lv_count;\n"
18615 "   int64_t snap_count;\n"
18616 "   int64_t vg_seqno;\n"
18617 "   char *vg_tags;\n"
18618 "   int64_t vg_mda_count;\n"
18619 "   uint64_t vg_mda_free;\n"
18620 " };\n"
18621 " \n"
18622 msgstr ""
18623
18624 #. type: verbatim
18625 #: ../src/guestfs-structs.pod:69
18626 #, no-wrap
18627 msgid ""
18628 " struct guestfs_lvm_vg_list {\n"
18629 "   uint32_t len; /* Number of elements in list. */\n"
18630 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18631 " };\n"
18632 " \n"
18633 msgstr ""
18634
18635 #. type: verbatim
18636 #: ../src/guestfs-structs.pod:74
18637 #, no-wrap
18638 msgid ""
18639 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18640 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18641 "\n"
18642 msgstr ""
18643
18644 #. type: =head2
18645 #: ../src/guestfs-structs.pod:77
18646 msgid "guestfs_lvm_lv"
18647 msgstr ""
18648
18649 #. type: verbatim
18650 #: ../src/guestfs-structs.pod:79
18651 #, no-wrap
18652 msgid ""
18653 " struct guestfs_lvm_lv {\n"
18654 "   char *lv_name;\n"
18655 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18656 "*/\n"
18657 "   char lv_uuid[32];\n"
18658 "   char *lv_attr;\n"
18659 "   int64_t lv_major;\n"
18660 "   int64_t lv_minor;\n"
18661 "   int64_t lv_kernel_major;\n"
18662 "   int64_t lv_kernel_minor;\n"
18663 "   uint64_t lv_size;\n"
18664 "   int64_t seg_count;\n"
18665 "   char *origin;\n"
18666 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18667 "   float snap_percent;\n"
18668 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18669 "   float copy_percent;\n"
18670 "   char *move_pv;\n"
18671 "   char *lv_tags;\n"
18672 "   char *mirror_log;\n"
18673 "   char *modules;\n"
18674 " };\n"
18675 " \n"
18676 msgstr ""
18677
18678 #. type: verbatim
18679 #: ../src/guestfs-structs.pod:101
18680 #, no-wrap
18681 msgid ""
18682 " struct guestfs_lvm_lv_list {\n"
18683 "   uint32_t len; /* Number of elements in list. */\n"
18684 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18685 " };\n"
18686 " \n"
18687 msgstr ""
18688
18689 #. type: verbatim
18690 #: ../src/guestfs-structs.pod:106
18691 #, no-wrap
18692 msgid ""
18693 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18694 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18695 "\n"
18696 msgstr ""
18697
18698 #. type: verbatim
18699 #: ../src/guestfs-structs.pod:111
18700 #, no-wrap
18701 msgid ""
18702 " struct guestfs_stat {\n"
18703 "   int64_t dev;\n"
18704 "   int64_t ino;\n"
18705 "   int64_t mode;\n"
18706 "   int64_t nlink;\n"
18707 "   int64_t uid;\n"
18708 "   int64_t gid;\n"
18709 "   int64_t rdev;\n"
18710 "   int64_t size;\n"
18711 "   int64_t blksize;\n"
18712 "   int64_t blocks;\n"
18713 "   int64_t atime;\n"
18714 "   int64_t mtime;\n"
18715 "   int64_t ctime;\n"
18716 " };\n"
18717 " \n"
18718 msgstr ""
18719
18720 #. type: verbatim
18721 #: ../src/guestfs-structs.pod:127
18722 #, no-wrap
18723 msgid ""
18724 " struct guestfs_stat_list {\n"
18725 "   uint32_t len; /* Number of elements in list. */\n"
18726 "   struct guestfs_stat *val; /* Elements. */\n"
18727 " };\n"
18728 " \n"
18729 msgstr ""
18730
18731 #. type: verbatim
18732 #: ../src/guestfs-structs.pod:132
18733 #, no-wrap
18734 msgid ""
18735 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
18736 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
18737 "\n"
18738 msgstr ""
18739
18740 #. type: verbatim
18741 #: ../src/guestfs-structs.pod:137
18742 #, no-wrap
18743 msgid ""
18744 " struct guestfs_statvfs {\n"
18745 "   int64_t bsize;\n"
18746 "   int64_t frsize;\n"
18747 "   int64_t blocks;\n"
18748 "   int64_t bfree;\n"
18749 "   int64_t bavail;\n"
18750 "   int64_t files;\n"
18751 "   int64_t ffree;\n"
18752 "   int64_t favail;\n"
18753 "   int64_t fsid;\n"
18754 "   int64_t flag;\n"
18755 "   int64_t namemax;\n"
18756 " };\n"
18757 " \n"
18758 msgstr ""
18759
18760 #. type: verbatim
18761 #: ../src/guestfs-structs.pod:151
18762 #, no-wrap
18763 msgid ""
18764 " struct guestfs_statvfs_list {\n"
18765 "   uint32_t len; /* Number of elements in list. */\n"
18766 "   struct guestfs_statvfs *val; /* Elements. */\n"
18767 " };\n"
18768 " \n"
18769 msgstr ""
18770
18771 #. type: verbatim
18772 #: ../src/guestfs-structs.pod:156
18773 #, no-wrap
18774 msgid ""
18775 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
18776 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
18777 "\n"
18778 msgstr ""
18779
18780 #. type: =head2
18781 #: ../src/guestfs-structs.pod:159
18782 msgid "guestfs_dirent"
18783 msgstr ""
18784
18785 #. type: verbatim
18786 #: ../src/guestfs-structs.pod:161
18787 #, no-wrap
18788 msgid ""
18789 " struct guestfs_dirent {\n"
18790 "   int64_t ino;\n"
18791 "   char ftyp;\n"
18792 "   char *name;\n"
18793 " };\n"
18794 " \n"
18795 msgstr ""
18796
18797 #. type: verbatim
18798 #: ../src/guestfs-structs.pod:167
18799 #, no-wrap
18800 msgid ""
18801 " struct guestfs_dirent_list {\n"
18802 "   uint32_t len; /* Number of elements in list. */\n"
18803 "   struct guestfs_dirent *val; /* Elements. */\n"
18804 " };\n"
18805 " \n"
18806 msgstr ""
18807
18808 #. type: verbatim
18809 #: ../src/guestfs-structs.pod:172
18810 #, no-wrap
18811 msgid ""
18812 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
18813 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
18814 "\n"
18815 msgstr ""
18816
18817 #. type: verbatim
18818 #: ../src/guestfs-structs.pod:177
18819 #, no-wrap
18820 msgid ""
18821 " struct guestfs_version {\n"
18822 "   int64_t major;\n"
18823 "   int64_t minor;\n"
18824 "   int64_t release;\n"
18825 "   char *extra;\n"
18826 " };\n"
18827 " \n"
18828 msgstr ""
18829
18830 #. type: verbatim
18831 #: ../src/guestfs-structs.pod:184
18832 #, no-wrap
18833 msgid ""
18834 " struct guestfs_version_list {\n"
18835 "   uint32_t len; /* Number of elements in list. */\n"
18836 "   struct guestfs_version *val; /* Elements. */\n"
18837 " };\n"
18838 " \n"
18839 msgstr ""
18840
18841 #. type: verbatim
18842 #: ../src/guestfs-structs.pod:189
18843 #, no-wrap
18844 msgid ""
18845 " void guestfs_free_version (struct guestfs_free_version *);\n"
18846 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
18847 "\n"
18848 msgstr ""
18849
18850 #. type: =head2
18851 #: ../src/guestfs-structs.pod:192
18852 msgid "guestfs_xattr"
18853 msgstr ""
18854
18855 #. type: verbatim
18856 #: ../src/guestfs-structs.pod:194
18857 #, no-wrap
18858 msgid ""
18859 " struct guestfs_xattr {\n"
18860 "   char *attrname;\n"
18861 "   /* The next two fields describe a byte array. */\n"
18862 "   uint32_t attrval_len;\n"
18863 "   char *attrval;\n"
18864 " };\n"
18865 " \n"
18866 msgstr ""
18867
18868 #. type: verbatim
18869 #: ../src/guestfs-structs.pod:201
18870 #, no-wrap
18871 msgid ""
18872 " struct guestfs_xattr_list {\n"
18873 "   uint32_t len; /* Number of elements in list. */\n"
18874 "   struct guestfs_xattr *val; /* Elements. */\n"
18875 " };\n"
18876 " \n"
18877 msgstr ""
18878
18879 #. type: verbatim
18880 #: ../src/guestfs-structs.pod:206
18881 #, no-wrap
18882 msgid ""
18883 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
18884 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
18885 "\n"
18886 msgstr ""
18887
18888 #. type: =head2
18889 #: ../src/guestfs-structs.pod:209
18890 msgid "guestfs_inotify_event"
18891 msgstr ""
18892
18893 #. type: verbatim
18894 #: ../src/guestfs-structs.pod:211
18895 #, no-wrap
18896 msgid ""
18897 " struct guestfs_inotify_event {\n"
18898 "   int64_t in_wd;\n"
18899 "   uint32_t in_mask;\n"
18900 "   uint32_t in_cookie;\n"
18901 "   char *in_name;\n"
18902 " };\n"
18903 " \n"
18904 msgstr ""
18905
18906 #. type: verbatim
18907 #: ../src/guestfs-structs.pod:218
18908 #, no-wrap
18909 msgid ""
18910 " struct guestfs_inotify_event_list {\n"
18911 "   uint32_t len; /* Number of elements in list. */\n"
18912 "   struct guestfs_inotify_event *val; /* Elements. */\n"
18913 " };\n"
18914 " \n"
18915 msgstr ""
18916
18917 #. type: verbatim
18918 #: ../src/guestfs-structs.pod:223
18919 #, no-wrap
18920 msgid ""
18921 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
18922 " void guestfs_free_inotify_event_list (struct "
18923 "guestfs_free_inotify_event_list *);\n"
18924 "\n"
18925 msgstr ""
18926
18927 #. type: =head2
18928 #: ../src/guestfs-structs.pod:226
18929 msgid "guestfs_partition"
18930 msgstr ""
18931
18932 #. type: verbatim
18933 #: ../src/guestfs-structs.pod:228
18934 #, no-wrap
18935 msgid ""
18936 " struct guestfs_partition {\n"
18937 "   int32_t part_num;\n"
18938 "   uint64_t part_start;\n"
18939 "   uint64_t part_end;\n"
18940 "   uint64_t part_size;\n"
18941 " };\n"
18942 " \n"
18943 msgstr ""
18944
18945 #. type: verbatim
18946 #: ../src/guestfs-structs.pod:235
18947 #, no-wrap
18948 msgid ""
18949 " struct guestfs_partition_list {\n"
18950 "   uint32_t len; /* Number of elements in list. */\n"
18951 "   struct guestfs_partition *val; /* Elements. */\n"
18952 " };\n"
18953 " \n"
18954 msgstr ""
18955
18956 #. type: verbatim
18957 #: ../src/guestfs-structs.pod:240
18958 #, no-wrap
18959 msgid ""
18960 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
18961 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
18962 "\n"
18963 msgstr ""
18964
18965 #. type: =head2
18966 #: ../src/guestfs-structs.pod:243
18967 msgid "guestfs_application"
18968 msgstr ""
18969
18970 #. type: verbatim
18971 #: ../src/guestfs-structs.pod:245
18972 #, no-wrap
18973 msgid ""
18974 " struct guestfs_application {\n"
18975 "   char *app_name;\n"
18976 "   char *app_display_name;\n"
18977 "   int32_t app_epoch;\n"
18978 "   char *app_version;\n"
18979 "   char *app_release;\n"
18980 "   char *app_install_path;\n"
18981 "   char *app_trans_path;\n"
18982 "   char *app_publisher;\n"
18983 "   char *app_url;\n"
18984 "   char *app_source_package;\n"
18985 "   char *app_summary;\n"
18986 "   char *app_description;\n"
18987 " };\n"
18988 " \n"
18989 msgstr ""
18990
18991 #. type: verbatim
18992 #: ../src/guestfs-structs.pod:260
18993 #, no-wrap
18994 msgid ""
18995 " struct guestfs_application_list {\n"
18996 "   uint32_t len; /* Number of elements in list. */\n"
18997 "   struct guestfs_application *val; /* Elements. */\n"
18998 " };\n"
18999 " \n"
19000 msgstr ""
19001
19002 #. type: verbatim
19003 #: ../src/guestfs-structs.pod:265
19004 #, no-wrap
19005 msgid ""
19006 " void guestfs_free_application (struct guestfs_free_application *);\n"
19007 " void guestfs_free_application_list (struct guestfs_free_application_list "
19008 "*);\n"
19009 "\n"
19010 msgstr ""
19011
19012 #. type: textblock
19013 #: ../fish/guestfish.pod:5
19014 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19015 msgstr ""
19016
19017 #. type: verbatim
19018 #: ../fish/guestfish.pod:9
19019 #, no-wrap
19020 msgid ""
19021 " guestfish [--options] [commands]\n"
19022 "\n"
19023 msgstr ""
19024
19025 #. type: verbatim
19026 #: ../fish/guestfish.pod:11
19027 #, no-wrap
19028 msgid ""
19029 " guestfish\n"
19030 "\n"
19031 msgstr ""
19032
19033 #. type: verbatim
19034 #: ../fish/guestfish.pod:13
19035 #, no-wrap
19036 msgid ""
19037 " guestfish [--ro|--rw] -a disk.img\n"
19038 "\n"
19039 msgstr ""
19040
19041 #. type: verbatim
19042 #: ../fish/guestfish.pod:15
19043 #, no-wrap
19044 msgid ""
19045 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19046 "\n"
19047 msgstr ""
19048
19049 #. type: verbatim
19050 #: ../fish/guestfish.pod:17
19051 #, no-wrap
19052 msgid ""
19053 " guestfish -d libvirt-domain\n"
19054 "\n"
19055 msgstr ""
19056
19057 #. type: verbatim
19058 #: ../fish/guestfish.pod:19
19059 #, no-wrap
19060 msgid ""
19061 " guestfish [--ro|--rw] -a disk.img -i\n"
19062 "\n"
19063 msgstr ""
19064
19065 #. type: verbatim
19066 #: ../fish/guestfish.pod:21
19067 #, no-wrap
19068 msgid ""
19069 " guestfish -d libvirt-domain -i\n"
19070 "\n"
19071 msgstr ""
19072
19073 #. type: =head1
19074 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19075 msgid "WARNING"
19076 msgstr ""
19077
19078 #. type: textblock
19079 #: ../fish/guestfish.pod:25
19080 msgid ""
19081 "Using guestfish in read/write mode on live virtual machines can be "
19082 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19083 "option to use guestfish safely if the disk image or virtual machine might be "
19084 "live."
19085 msgstr ""
19086
19087 #. type: textblock
19088 #: ../fish/guestfish.pod:32
19089 msgid ""
19090 "Guestfish is a shell and command-line tool for examining and modifying "
19091 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19092 "functionality of the guestfs API, see L<guestfs(3)>."
19093 msgstr ""
19094
19095 #. type: textblock
19096 #: ../fish/guestfish.pod:36
19097 msgid ""
19098 "Guestfish gives you structured access to the libguestfs API, from shell "
19099 "scripts or the command line or interactively.  If you want to rescue a "
19100 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19101 "command."
19102 msgstr ""
19103
19104 #. type: =head1
19105 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949 ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
19106 msgid "EXAMPLES"
19107 msgstr ""
19108
19109 #. type: =head2
19110 #: ../fish/guestfish.pod:43
19111 msgid "As an interactive shell"
19112 msgstr ""
19113
19114 #. type: verbatim
19115 #: ../fish/guestfish.pod:45
19116 #, no-wrap
19117 msgid ""
19118 " $ guestfish\n"
19119 " \n"
19120 msgstr ""
19121
19122 #. type: verbatim
19123 #: ../fish/guestfish.pod:47
19124 #, no-wrap
19125 msgid ""
19126 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19127 " editing virtual machine filesystems.\n"
19128 " \n"
19129 msgstr ""
19130
19131 #. type: verbatim
19132 #: ../fish/guestfish.pod:50
19133 #, no-wrap
19134 msgid ""
19135 " Type: 'help' for a list of commands\n"
19136 "       'man' to read the manual\n"
19137 "       'quit' to quit the shell\n"
19138 " \n"
19139 msgstr ""
19140
19141 #. type: verbatim
19142 #: ../fish/guestfish.pod:54
19143 #, no-wrap
19144 msgid ""
19145 " ><fs> add-ro disk.img\n"
19146 " ><fs> run\n"
19147 " ><fs> list-filesystems\n"
19148 " /dev/sda1: ext4\n"
19149 " /dev/vg_guest/lv_root: ext4\n"
19150 " /dev/vg_guest/lv_swap: swap\n"
19151 " ><fs> mount /dev/vg_guest/lv_root /\n"
19152 " ><fs> cat /etc/fstab\n"
19153 " # /etc/fstab\n"
19154 " # Created by anaconda\n"
19155 " [...]\n"
19156 " ><fs> exit\n"
19157 "\n"
19158 msgstr ""
19159
19160 #. type: =head2
19161 #: ../fish/guestfish.pod:67
19162 msgid "From shell scripts"
19163 msgstr ""
19164
19165 #. type: textblock
19166 #: ../fish/guestfish.pod:69
19167 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19168 msgstr ""
19169
19170 #. type: verbatim
19171 #: ../fish/guestfish.pod:71
19172 #, no-wrap
19173 msgid ""
19174 " guestfish <<_EOF_\n"
19175 " add disk.img\n"
19176 " run\n"
19177 " mount /dev/vg_guest/lv_root /\n"
19178 " write /etc/motd \"Welcome, new users\"\n"
19179 " _EOF_\n"
19180 "\n"
19181 msgstr ""
19182
19183 #. type: textblock
19184 #: ../fish/guestfish.pod:78
19185 msgid "List the LVM logical volumes in a disk image:"
19186 msgstr ""
19187
19188 #. type: verbatim
19189 #: ../fish/guestfish.pod:80
19190 #, no-wrap
19191 msgid ""
19192 " guestfish -a disk.img --ro <<_EOF_\n"
19193 " run\n"
19194 " lvs\n"
19195 " _EOF_\n"
19196 "\n"
19197 msgstr ""
19198
19199 #. type: textblock
19200 #: ../fish/guestfish.pod:85
19201 msgid "List all the filesystems in a disk image:"
19202 msgstr ""
19203
19204 #. type: verbatim
19205 #: ../fish/guestfish.pod:87
19206 #, no-wrap
19207 msgid ""
19208 " guestfish -a disk.img --ro <<_EOF_\n"
19209 " run\n"
19210 " list-filesystems\n"
19211 " _EOF_\n"
19212 "\n"
19213 msgstr ""
19214
19215 #. type: =head2
19216 #: ../fish/guestfish.pod:92
19217 msgid "On one command line"
19218 msgstr ""
19219
19220 #. type: textblock
19221 #: ../fish/guestfish.pod:94
19222 msgid "Update C</etc/resolv.conf> in a guest:"
19223 msgstr ""
19224
19225 #. type: verbatim
19226 #: ../fish/guestfish.pod:96
19227 #, no-wrap
19228 msgid ""
19229 " guestfish \\\n"
19230 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19231 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19232 "\n"
19233 msgstr ""
19234
19235 #. type: textblock
19236 #: ../fish/guestfish.pod:100
19237 msgid "Edit C</boot/grub/grub.conf> interactively:"
19238 msgstr ""
19239
19240 #. type: verbatim
19241 #: ../fish/guestfish.pod:102
19242 #, no-wrap
19243 msgid ""
19244 " guestfish --rw --add disk.img \\\n"
19245 "   --mount /dev/vg_guest/lv_root \\\n"
19246 "   --mount /dev/sda1:/boot \\\n"
19247 "   edit /boot/grub/grub.conf\n"
19248 "\n"
19249 msgstr ""
19250
19251 #. type: =head2
19252 #: ../fish/guestfish.pod:107
19253 msgid "Mount disks automatically"
19254 msgstr ""
19255
19256 #. type: textblock
19257 #: ../fish/guestfish.pod:109
19258 msgid ""
19259 "Use the I<-i> option to automatically mount the disks from a virtual "
19260 "machine:"
19261 msgstr ""
19262
19263 #. type: verbatim
19264 #: ../fish/guestfish.pod:112
19265 #, no-wrap
19266 msgid ""
19267 " guestfish --ro -a disk.img -i cat /etc/group\n"
19268 "\n"
19269 msgstr ""
19270
19271 #. type: verbatim
19272 #: ../fish/guestfish.pod:114
19273 #, no-wrap
19274 msgid ""
19275 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19276 "\n"
19277 msgstr ""
19278
19279 #. type: textblock
19280 #: ../fish/guestfish.pod:116
19281 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19282 msgstr ""
19283
19284 #. type: verbatim
19285 #: ../fish/guestfish.pod:118
19286 #, no-wrap
19287 msgid ""
19288 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19289 "\n"
19290 msgstr ""
19291
19292 #. type: =head2
19293 #: ../fish/guestfish.pod:120
19294 msgid "As a script interpreter"
19295 msgstr ""
19296
19297 #. type: textblock
19298 #: ../fish/guestfish.pod:122
19299 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19300 msgstr ""
19301
19302 #. type: verbatim
19303 #: ../fish/guestfish.pod:124
19304 #, no-wrap
19305 msgid ""
19306 " #!/usr/bin/guestfish -f\n"
19307 " sparse test1.img 100M\n"
19308 " run\n"
19309 " part-disk /dev/sda mbr\n"
19310 " mkfs ext2 /dev/sda1\n"
19311 "\n"
19312 msgstr ""
19313
19314 #. type: =head2
19315 #: ../fish/guestfish.pod:130
19316 msgid "Start with a prepared disk"
19317 msgstr ""
19318
19319 #. type: textblock
19320 #: ../fish/guestfish.pod:132
19321 msgid ""
19322 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19323 "single ext2-formatted partition:"
19324 msgstr ""
19325
19326 #. type: verbatim
19327 #: ../fish/guestfish.pod:135
19328 #, no-wrap
19329 msgid ""
19330 " guestfish -N fs\n"
19331 "\n"
19332 msgstr ""
19333
19334 #. type: textblock
19335 #: ../fish/guestfish.pod:137
19336 msgid "To list what is available do:"
19337 msgstr ""
19338
19339 #. type: verbatim
19340 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
19341 #, no-wrap
19342 msgid ""
19343 " guestfish -N help | less\n"
19344 "\n"
19345 msgstr ""
19346
19347 #. type: =head2
19348 #: ../fish/guestfish.pod:141
19349 msgid "Remote control"
19350 msgstr ""
19351
19352 #. type: verbatim
19353 #: ../fish/guestfish.pod:143
19354 #, no-wrap
19355 msgid ""
19356 " eval \"`guestfish --listen`\"\n"
19357 " guestfish --remote add-ro disk.img\n"
19358 " guestfish --remote run\n"
19359 " guestfish --remote lvs\n"
19360 "\n"
19361 msgstr ""
19362
19363 #. type: =head1
19364 #: ../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
19365 msgid "OPTIONS"
19366 msgstr ""
19367
19368 #. type: =item
19369 #: ../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
19370 msgid "B<--help>"
19371 msgstr ""
19372
19373 #. type: textblock
19374 #: ../fish/guestfish.pod:154
19375 msgid "Displays general help on options."
19376 msgstr ""
19377
19378 #. type: =item
19379 #: ../fish/guestfish.pod:156
19380 msgid "B<-h>"
19381 msgstr ""
19382
19383 #. type: =item
19384 #: ../fish/guestfish.pod:158
19385 msgid "B<--cmd-help>"
19386 msgstr ""
19387
19388 #. type: textblock
19389 #: ../fish/guestfish.pod:160
19390 msgid "Lists all available guestfish commands."
19391 msgstr ""
19392
19393 #. type: =item
19394 #: ../fish/guestfish.pod:162
19395 msgid "B<-h cmd>"
19396 msgstr ""
19397
19398 #. type: =item
19399 #: ../fish/guestfish.pod:164
19400 msgid "B<--cmd-help cmd>"
19401 msgstr ""
19402
19403 #. type: textblock
19404 #: ../fish/guestfish.pod:166
19405 msgid "Displays detailed help on a single command C<cmd>."
19406 msgstr ""
19407
19408 #. type: =item
19409 #: ../fish/guestfish.pod:168
19410 msgid "B<-a image>"
19411 msgstr ""
19412
19413 #. type: =item
19414 #: ../fish/guestfish.pod:170
19415 msgid "B<--add image>"
19416 msgstr ""
19417
19418 #. type: textblock
19419 #: ../fish/guestfish.pod:172
19420 msgid "Add a block device or virtual machine image to the shell."
19421 msgstr ""
19422
19423 #. type: textblock
19424 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
19425 msgid ""
19426 "The format of the disk image is auto-detected.  To override this and force a "
19427 "particular format use the I<--format=..> option."
19428 msgstr ""
19429
19430 #. type: textblock
19431 #: ../fish/guestfish.pod:177
19432 msgid ""
19433 "Using this flag is mostly equivalent to using the C<add> command, with "
19434 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19435 "the I<--format=...> flag was given."
19436 msgstr ""
19437
19438 #. type: =item
19439 #: ../fish/guestfish.pod:181
19440 msgid "B<-c URI>"
19441 msgstr ""
19442
19443 #. type: =item
19444 #: ../fish/guestfish.pod:183
19445 msgid "B<--connect URI>"
19446 msgstr ""
19447
19448 #. type: textblock
19449 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
19450 msgid ""
19451 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19452 "URI to use.  The default is to use the default libvirt connection."
19453 msgstr ""
19454
19455 #. type: =item
19456 #: ../fish/guestfish.pod:189
19457 msgid "B<--csh>"
19458 msgstr ""
19459
19460 #. type: textblock
19461 #: ../fish/guestfish.pod:191
19462 msgid ""
19463 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19464 "section L</REMOTE CONTROL AND CSH> below."
19465 msgstr ""
19466
19467 #. type: =item
19468 #: ../fish/guestfish.pod:194
19469 msgid "B<-d libvirt-domain>"
19470 msgstr ""
19471
19472 #. type: =item
19473 #: ../fish/guestfish.pod:196
19474 msgid "B<--domain libvirt-domain>"
19475 msgstr ""
19476
19477 #. type: textblock
19478 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
19479 msgid ""
19480 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19481 "used, then any libvirt domain can be used.  However in write mode, only "
19482 "libvirt domains which are shut down can be named here."
19483 msgstr ""
19484
19485 #. type: textblock
19486 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
19487 msgid "Domain UUIDs can be used instead of names."
19488 msgstr ""
19489
19490 #. type: textblock
19491 #: ../fish/guestfish.pod:204
19492 msgid ""
19493 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19494 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19495 "if the I<--format:...> flag was given."
19496 msgstr ""
19497
19498 #. type: =item
19499 #: ../fish/guestfish.pod:208
19500 msgid "B<-D>"
19501 msgstr ""
19502
19503 #. type: =item
19504 #: ../fish/guestfish.pod:210
19505 msgid "B<--no-dest-paths>"
19506 msgstr ""
19507
19508 #. type: textblock
19509 #: ../fish/guestfish.pod:212
19510 msgid ""
19511 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19512 "to hit the tab key to complete paths on the guest filesystem, but this "
19513 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19514 "allow this feature to be disabled."
19515 msgstr ""
19516
19517 #. type: =item
19518 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
19519 msgid "B<--echo-keys>"
19520 msgstr ""
19521
19522 #. type: textblock
19523 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
19524 msgid ""
19525 "When prompting for keys and passphrases, guestfish normally turns echoing "
19526 "off so you cannot see what you are typing.  If you are not worried about "
19527 "Tempest attacks and there is no one else in the room you can specify this "
19528 "flag to see what you are typing."
19529 msgstr ""
19530
19531 #. type: =item
19532 #: ../fish/guestfish.pod:224
19533 msgid "B<-f file>"
19534 msgstr ""
19535
19536 #. type: =item
19537 #: ../fish/guestfish.pod:226
19538 msgid "B<--file file>"
19539 msgstr ""
19540
19541 #. type: textblock
19542 #: ../fish/guestfish.pod:228
19543 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19544 msgstr ""
19545
19546 #. type: verbatim
19547 #: ../fish/guestfish.pod:231
19548 #, no-wrap
19549 msgid ""
19550 " #!/usr/bin/guestfish -f\n"
19551 "\n"
19552 msgstr ""
19553
19554 #. type: =item
19555 #: ../fish/guestfish.pod:233
19556 msgid "B<--format=raw|qcow2|..>"
19557 msgstr ""
19558
19559 #. type: =item
19560 #: ../fish/guestfish.pod:235
19561 msgid "B<--format>"
19562 msgstr ""
19563
19564 #. type: textblock
19565 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
19566 msgid ""
19567 "The default for the I<-a> option is to auto-detect the format of the disk "
19568 "image.  Using this forces the disk format for I<-a> options which follow on "
19569 "the command line.  Using I<--format> with no argument switches back to "
19570 "auto-detection for subsequent I<-a> options."
19571 msgstr ""
19572
19573 #. type: verbatim
19574 #: ../fish/guestfish.pod:244
19575 #, no-wrap
19576 msgid ""
19577 " guestfish --format=raw -a disk.img\n"
19578 "\n"
19579 msgstr ""
19580
19581 #. type: textblock
19582 #: ../fish/guestfish.pod:246
19583 msgid "forces raw format (no auto-detection) for C<disk.img>."
19584 msgstr ""
19585
19586 #. type: verbatim
19587 #: ../fish/guestfish.pod:248
19588 #, no-wrap
19589 msgid ""
19590 " guestfish --format=raw -a disk.img --format -a another.img\n"
19591 "\n"
19592 msgstr ""
19593
19594 #. type: textblock
19595 #: ../fish/guestfish.pod:250
19596 msgid ""
19597 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
19598 "auto-detection for C<another.img>."
19599 msgstr ""
19600
19601 #. type: textblock
19602 #: ../fish/guestfish.pod:253
19603 msgid ""
19604 "If you have untrusted raw-format guest disk images, you should use this "
19605 "option to specify the disk format.  This avoids a possible security problem "
19606 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19607 msgstr ""
19608
19609 #. type: =item
19610 #: ../fish/guestfish.pod:258
19611 msgid "B<-i>"
19612 msgstr ""
19613
19614 #. type: =item
19615 #: ../fish/guestfish.pod:260
19616 msgid "B<--inspector>"
19617 msgstr ""
19618
19619 #. type: textblock
19620 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
19621 msgid ""
19622 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19623 "system and mount filesystems as they would be mounted on the real virtual "
19624 "machine."
19625 msgstr ""
19626
19627 #. type: textblock
19628 #: ../fish/guestfish.pod:266
19629 msgid "Typical usage is either:"
19630 msgstr ""
19631
19632 #. type: verbatim
19633 #: ../fish/guestfish.pod:268
19634 #, no-wrap
19635 msgid ""
19636 " guestfish -d myguest -i\n"
19637 "\n"
19638 msgstr ""
19639
19640 #. type: textblock
19641 #: ../fish/guestfish.pod:270
19642 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19643 msgstr ""
19644
19645 #. type: verbatim
19646 #: ../fish/guestfish.pod:272
19647 #, no-wrap
19648 msgid ""
19649 " guestfish --ro -d myguest -i\n"
19650 "\n"
19651 msgstr ""
19652
19653 #. type: textblock
19654 #: ../fish/guestfish.pod:274
19655 msgid "(for active domains, readonly), or specify the block device directly:"
19656 msgstr ""
19657
19658 #. type: verbatim
19659 #: ../fish/guestfish.pod:276
19660 #, no-wrap
19661 msgid ""
19662 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19663 "\n"
19664 msgstr ""
19665
19666 #. type: textblock
19667 #: ../fish/guestfish.pod:278
19668 msgid ""
19669 "Note that the command line syntax changed slightly over older versions of "
19670 "guestfish.  You can still use the old syntax:"
19671 msgstr ""
19672
19673 #. type: verbatim
19674 #: ../fish/guestfish.pod:281
19675 #, no-wrap
19676 msgid ""
19677 " guestfish [--ro] -i disk.img\n"
19678 "\n"
19679 msgstr ""
19680
19681 #. type: verbatim
19682 #: ../fish/guestfish.pod:283
19683 #, no-wrap
19684 msgid ""
19685 " guestfish [--ro] -i libvirt-domain\n"
19686 "\n"
19687 msgstr ""
19688
19689 #. type: textblock
19690 #: ../fish/guestfish.pod:285
19691 msgid ""
19692 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19693 "then using other commands to mount the filesystems that were found."
19694 msgstr ""
19695
19696 #. type: =item
19697 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
19698 msgid "B<--keys-from-stdin>"
19699 msgstr ""
19700
19701 #. type: textblock
19702 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
19703 msgid ""
19704 "Read key or passphrase parameters from stdin.  The default is to try to read "
19705 "passphrases from the user by opening C</dev/tty>."
19706 msgstr ""
19707
19708 #. type: =item
19709 #: ../fish/guestfish.pod:294
19710 msgid "B<--listen>"
19711 msgstr ""
19712
19713 #. type: textblock
19714 #: ../fish/guestfish.pod:296
19715 msgid ""
19716 "Fork into the background and listen for remote commands.  See section "
19717 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
19718 msgstr ""
19719
19720 #. type: =item
19721 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
19722 msgid "B<--live>"
19723 msgstr ""
19724
19725 #. type: textblock
19726 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
19727 msgid ""
19728 "Connect to a live virtual machine.  (Experimental, see "
19729 "L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
19730 msgstr ""
19731
19732 #. type: =item
19733 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
19734 msgid "B<-m dev[:mountpoint[:options]]>"
19735 msgstr ""
19736
19737 #. type: =item
19738 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
19739 msgid "B<--mount dev[:mountpoint[:options]]>"
19740 msgstr ""
19741
19742 #. type: textblock
19743 #: ../fish/guestfish.pod:308
19744 msgid "Mount the named partition or logical volume on the given mountpoint."
19745 msgstr ""
19746
19747 #. type: textblock
19748 #: ../fish/guestfish.pod:310
19749 msgid "If the mountpoint is omitted, it defaults to C</>."
19750 msgstr ""
19751
19752 #. type: textblock
19753 #: ../fish/guestfish.pod:312
19754 msgid "You have to mount something on C</> before most commands will work."
19755 msgstr ""
19756
19757 #. type: textblock
19758 #: ../fish/guestfish.pod:314
19759 msgid ""
19760 "If any I<-m> or I<--mount> options are given, the guest is automatically "
19761 "launched."
19762 msgstr ""
19763
19764 #. type: textblock
19765 #: ../fish/guestfish.pod:317
19766 msgid ""
19767 "If you don't know what filesystems a disk image contains, you can either run "
19768 "guestfish without this option, then list the partitions, filesystems and LVs "
19769 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
19770 "commands), or you can use the L<virt-filesystems(1)> program."
19771 msgstr ""
19772
19773 #. type: textblock
19774 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
19775 msgid ""
19776 "The third (and rarely used) part of the mount parameter is the list of mount "
19777 "options used to mount the underlying filesystem.  If this is not given, then "
19778 "the mount options are either the empty string or C<ro> (the latter if the "
19779 "I<--ro> flag is used).  By specifying the mount options, you override this "
19780 "default choice.  Probably the only time you would use this is to enable ACLs "
19781 "and/or extended attributes if the filesystem can support them:"
19782 msgstr ""
19783
19784 #. type: verbatim
19785 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
19786 #, no-wrap
19787 msgid ""
19788 " -m /dev/sda1:/:acl,user_xattr\n"
19789 "\n"
19790 msgstr ""
19791
19792 #. type: textblock
19793 #: ../fish/guestfish.pod:333
19794 msgid "Using this flag is equivalent to using the C<mount-options> command."
19795 msgstr ""
19796
19797 #. type: =item
19798 #: ../fish/guestfish.pod:335
19799 msgid "B<-n>"
19800 msgstr ""
19801
19802 #. type: =item
19803 #: ../fish/guestfish.pod:337
19804 msgid "B<--no-sync>"
19805 msgstr ""
19806
19807 #. type: textblock
19808 #: ../fish/guestfish.pod:339
19809 msgid ""
19810 "Disable autosync.  This is enabled by default.  See the discussion of "
19811 "autosync in the L<guestfs(3)> manpage."
19812 msgstr ""
19813
19814 #. type: =item
19815 #: ../fish/guestfish.pod:342
19816 msgid "B<-N type>"
19817 msgstr ""
19818
19819 #. type: =item
19820 #: ../fish/guestfish.pod:344
19821 msgid "B<--new type>"
19822 msgstr ""
19823
19824 #. type: =item
19825 #: ../fish/guestfish.pod:346
19826 msgid "B<-N help>"
19827 msgstr ""
19828
19829 #. type: textblock
19830 #: ../fish/guestfish.pod:348
19831 msgid ""
19832 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
19833 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
19834 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
19835 "IMAGES> below."
19836 msgstr ""
19837
19838 #. type: =item
19839 #: ../fish/guestfish.pod:353
19840 msgid "B<--progress-bars>"
19841 msgstr ""
19842
19843 #. type: textblock
19844 #: ../fish/guestfish.pod:355
19845 msgid "Enable progress bars, even when guestfish is used non-interactively."
19846 msgstr ""
19847
19848 #. type: textblock
19849 #: ../fish/guestfish.pod:357
19850 msgid ""
19851 "Progress bars are enabled by default when guestfish is used as an "
19852 "interactive shell."
19853 msgstr ""
19854
19855 #. type: =item
19856 #: ../fish/guestfish.pod:360
19857 msgid "B<--no-progress-bars>"
19858 msgstr ""
19859
19860 #. type: textblock
19861 #: ../fish/guestfish.pod:362
19862 msgid "Disable progress bars."
19863 msgstr ""
19864
19865 #. type: =item
19866 #: ../fish/guestfish.pod:364
19867 msgid "B<--remote[=pid]>"
19868 msgstr ""
19869
19870 #. type: textblock
19871 #: ../fish/guestfish.pod:366
19872 msgid ""
19873 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
19874 "CONTROL GUESTFISH OVER A SOCKET> below."
19875 msgstr ""
19876
19877 #. type: =item
19878 #: ../fish/guestfish.pod:369
19879 msgid "B<-r>"
19880 msgstr ""
19881
19882 #. type: =item
19883 #: ../fish/guestfish.pod:371
19884 msgid "B<--ro>"
19885 msgstr ""
19886
19887 #. type: textblock
19888 #: ../fish/guestfish.pod:373
19889 msgid ""
19890 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19891 "mounts are done read-only."
19892 msgstr ""
19893
19894 #. type: textblock
19895 #: ../fish/guestfish.pod:376
19896 msgid ""
19897 "The option must always be used if the disk image or virtual machine might be "
19898 "running, and is generally recommended in cases where you don't need write "
19899 "access to the disk."
19900 msgstr ""
19901
19902 #. type: textblock
19903 #: ../fish/guestfish.pod:380
19904 msgid ""
19905 "Note that prepared disk images created with I<-N> are not affected by this "
19906 "option.  Also commands like C<add> are not affected - you have to specify "
19907 "the C<readonly:true> option explicitly if you need it."
19908 msgstr ""
19909
19910 #. type: textblock
19911 #: ../fish/guestfish.pod:384
19912 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
19913 msgstr ""
19914
19915 #. type: =item
19916 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
19917 msgid "B<--selinux>"
19918 msgstr ""
19919
19920 #. type: textblock
19921 #: ../fish/guestfish.pod:388
19922 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
19923 msgstr ""
19924
19925 #. type: =item
19926 #: ../fish/guestfish.pod:390
19927 msgid "B<-v>"
19928 msgstr ""
19929
19930 #. type: =item
19931 #: ../fish/guestfish.pod:392
19932 msgid "B<--verbose>"
19933 msgstr ""
19934
19935 #. type: textblock
19936 #: ../fish/guestfish.pod:394
19937 msgid ""
19938 "Enable very verbose messages.  This is particularly useful if you find a "
19939 "bug."
19940 msgstr ""
19941
19942 #. type: =item
19943 #: ../fish/guestfish.pod:397
19944 msgid "B<-V>"
19945 msgstr ""
19946
19947 #. type: =item
19948 #: ../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
19949 msgid "B<--version>"
19950 msgstr ""
19951
19952 #. type: textblock
19953 #: ../fish/guestfish.pod:401
19954 msgid "Display the guestfish / libguestfs version number and exit."
19955 msgstr ""
19956
19957 #. type: =item
19958 #: ../fish/guestfish.pod:403
19959 msgid "B<-w>"
19960 msgstr ""
19961
19962 #. type: =item
19963 #: ../fish/guestfish.pod:405
19964 msgid "B<--rw>"
19965 msgstr ""
19966
19967 #. type: textblock
19968 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
19969 msgid ""
19970 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19971 "mounts are done read-write."
19972 msgstr ""
19973
19974 #. type: textblock
19975 #: ../fish/guestfish.pod:410
19976 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
19977 msgstr ""
19978
19979 #. type: =item
19980 #: ../fish/guestfish.pod:412
19981 msgid "B<-x>"
19982 msgstr ""
19983
19984 #. type: textblock
19985 #: ../fish/guestfish.pod:414
19986 msgid "Echo each command before executing it."
19987 msgstr ""
19988
19989 #. type: =head1
19990 #: ../fish/guestfish.pod:418
19991 msgid "COMMANDS ON COMMAND LINE"
19992 msgstr ""
19993
19994 #. type: textblock
19995 #: ../fish/guestfish.pod:420
19996 msgid "Any additional (non-option) arguments are treated as commands to execute."
19997 msgstr ""
19998
19999 #. type: textblock
20000 #: ../fish/guestfish.pod:423
20001 msgid ""
20002 "Commands to execute should be separated by a colon (C<:>), where the colon "
20003 "is a separate parameter.  Thus:"
20004 msgstr ""
20005
20006 #. type: verbatim
20007 #: ../fish/guestfish.pod:426
20008 #, no-wrap
20009 msgid ""
20010 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20011 "\n"
20012 msgstr ""
20013
20014 #. type: textblock
20015 #: ../fish/guestfish.pod:428
20016 msgid ""
20017 "If there are no additional arguments, then we enter a shell, either an "
20018 "interactive shell with a prompt (if the input is a terminal) or a "
20019 "non-interactive shell."
20020 msgstr ""
20021
20022 #. type: textblock
20023 #: ../fish/guestfish.pod:432
20024 msgid ""
20025 "In either command line mode or non-interactive shell, the first command that "
20026 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20027 "prompt) if a command fails, you can continue to enter commands."
20028 msgstr ""
20029
20030 #. type: =head1
20031 #: ../fish/guestfish.pod:437
20032 msgid "USING launch (OR run)"
20033 msgstr ""
20034
20035 #. type: textblock
20036 #: ../fish/guestfish.pod:439
20037 msgid ""
20038 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20039 "then launch it, then mount any disks you need, and finally issue "
20040 "actions/commands.  So the general order of the day is:"
20041 msgstr ""
20042
20043 #. type: textblock
20044 #: ../fish/guestfish.pod:447
20045 msgid "add or -a/--add"
20046 msgstr ""
20047
20048 #. type: textblock
20049 #: ../fish/guestfish.pod:451
20050 msgid "launch (aka run)"
20051 msgstr ""
20052
20053 #. type: textblock
20054 #: ../fish/guestfish.pod:455
20055 msgid "mount or -m/--mount"
20056 msgstr ""
20057
20058 #. type: textblock
20059 #: ../fish/guestfish.pod:459
20060 msgid "any other commands"
20061 msgstr ""
20062
20063 #. type: textblock
20064 #: ../fish/guestfish.pod:463
20065 msgid ""
20066 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20067 "guest before mounting or performing any other commands."
20068 msgstr ""
20069
20070 #. type: textblock
20071 #: ../fish/guestfish.pod:466
20072 msgid ""
20073 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20074 "I<--new> options were given then C<run> is done automatically, simply "
20075 "because guestfish can't perform the action you asked for without doing this."
20076 msgstr ""
20077
20078 #. type: =head1
20079 #: ../fish/guestfish.pod:471
20080 msgid "OPENING DISKS FOR READ AND WRITE"
20081 msgstr ""
20082
20083 #. type: textblock
20084 #: ../fish/guestfish.pod:473
20085 msgid ""
20086 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20087 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20088 "I<-i> and I<-m> open disk images read-only or for writing."
20089 msgstr ""
20090
20091 #. type: textblock
20092 #: ../fish/guestfish.pod:478
20093 msgid ""
20094 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20095 "opening disk images supplied on the command line for write.  To open a disk "
20096 "image read-only you have to do I<-a image --ro>."
20097 msgstr ""
20098
20099 #. type: textblock
20100 #: ../fish/guestfish.pod:482
20101 msgid ""
20102 "This matters: If you accidentally open a live VM disk image writable then "
20103 "you will cause irreversible disk corruption."
20104 msgstr ""
20105
20106 #. type: textblock
20107 #: ../fish/guestfish.pod:485
20108 msgid ""
20109 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20110 "images will be opened read-only.  You will have to either specify "
20111 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20112 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20113 "access for disk images specified by those other command line options."
20114 msgstr ""
20115
20116 #. type: textblock
20117 #: ../fish/guestfish.pod:492
20118 msgid ""
20119 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20120 "which does nothing (it is already the default).  However it is highly "
20121 "recommended that you use this option to indicate that you need write access, "
20122 "and prepare your scripts for the day when this option will be required for "
20123 "write access."
20124 msgstr ""
20125
20126 #. type: textblock
20127 #: ../fish/guestfish.pod:498
20128 msgid ""
20129 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20130 "other libguestfs program apart from guestfish and guestmount."
20131 msgstr ""
20132
20133 #. type: =head1
20134 #: ../fish/guestfish.pod:501
20135 msgid "QUOTING"
20136 msgstr ""
20137
20138 #. type: textblock
20139 #: ../fish/guestfish.pod:503
20140 msgid ""
20141 "You can quote ordinary parameters using either single or double quotes.  For "
20142 "example:"
20143 msgstr ""
20144
20145 #. type: verbatim
20146 #: ../fish/guestfish.pod:506
20147 #, no-wrap
20148 msgid ""
20149 " add \"file with a space.img\"\n"
20150 "\n"
20151 msgstr ""
20152
20153 #. type: verbatim
20154 #: ../fish/guestfish.pod:508
20155 #, no-wrap
20156 msgid ""
20157 " rm '/file name'\n"
20158 "\n"
20159 msgstr ""
20160
20161 #. type: verbatim
20162 #: ../fish/guestfish.pod:510
20163 #, no-wrap
20164 msgid ""
20165 " rm '/\"'\n"
20166 "\n"
20167 msgstr ""
20168
20169 #. type: textblock
20170 #: ../fish/guestfish.pod:512
20171 msgid ""
20172 "A few commands require a list of strings to be passed.  For these, use a "
20173 "whitespace-separated list, enclosed in quotes.  Strings containing "
20174 "whitespace to be passed through must be enclosed in single quotes.  A "
20175 "literal single quote must be escaped with a backslash."
20176 msgstr ""
20177
20178 #. type: verbatim
20179 #: ../fish/guestfish.pod:517
20180 #, no-wrap
20181 msgid ""
20182 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20183 " command \"/bin/echo 'foo      bar'\"\n"
20184 " command \"/bin/echo \\'foo\\'\"\n"
20185 "\n"
20186 msgstr ""
20187
20188 #. type: =head1
20189 #: ../fish/guestfish.pod:521
20190 msgid "OPTIONAL ARGUMENTS"
20191 msgstr ""
20192
20193 #. type: textblock
20194 #: ../fish/guestfish.pod:523
20195 msgid ""
20196 "Some commands take optional arguments.  These arguments appear in this "
20197 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20198 msgstr ""
20199
20200 #. type: verbatim
20201 #: ../fish/guestfish.pod:527
20202 #, no-wrap
20203 msgid ""
20204 " add-drive-opts filename\n"
20205 "\n"
20206 msgstr ""
20207
20208 #. type: verbatim
20209 #: ../fish/guestfish.pod:529
20210 #, no-wrap
20211 msgid ""
20212 " add-drive-opts filename readonly:true\n"
20213 "\n"
20214 msgstr ""
20215
20216 #. type: verbatim
20217 #: ../fish/guestfish.pod:531
20218 #, no-wrap
20219 msgid ""
20220 " add-drive-opts filename format:qcow2 readonly:false\n"
20221 "\n"
20222 msgstr ""
20223
20224 #. type: textblock
20225 #: ../fish/guestfish.pod:533
20226 msgid ""
20227 "Each optional argument can appear at most once.  All optional arguments must "
20228 "appear after the required ones."
20229 msgstr ""
20230
20231 #. type: =head1
20232 #: ../fish/guestfish.pod:536
20233 msgid "NUMBERS"
20234 msgstr ""
20235
20236 #. type: textblock
20237 #: ../fish/guestfish.pod:538
20238 msgid "This section applies to all commands which can take integers as parameters."
20239 msgstr ""
20240
20241 #. type: =head2
20242 #: ../fish/guestfish.pod:541
20243 msgid "SIZE SUFFIX"
20244 msgstr ""
20245
20246 #. type: textblock
20247 #: ../fish/guestfish.pod:543
20248 msgid ""
20249 "When the command takes a parameter measured in bytes, you can use one of the "
20250 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20251 msgstr ""
20252
20253 #. type: =item
20254 #: ../fish/guestfish.pod:549
20255 msgid "B<k> or B<K> or B<KiB>"
20256 msgstr ""
20257
20258 #. type: textblock
20259 #: ../fish/guestfish.pod:551
20260 msgid "The size in kilobytes (multiplied by 1024)."
20261 msgstr ""
20262
20263 #. type: =item
20264 #: ../fish/guestfish.pod:553
20265 msgid "B<KB>"
20266 msgstr ""
20267
20268 #. type: textblock
20269 #: ../fish/guestfish.pod:555
20270 msgid "The size in SI 1000 byte units."
20271 msgstr ""
20272
20273 #. type: =item
20274 #: ../fish/guestfish.pod:557
20275 msgid "B<M> or B<MiB>"
20276 msgstr ""
20277
20278 #. type: textblock
20279 #: ../fish/guestfish.pod:559
20280 msgid "The size in megabytes (multiplied by 1048576)."
20281 msgstr ""
20282
20283 #. type: =item
20284 #: ../fish/guestfish.pod:561
20285 msgid "B<MB>"
20286 msgstr ""
20287
20288 #. type: textblock
20289 #: ../fish/guestfish.pod:563
20290 msgid "The size in SI 1000000 byte units."
20291 msgstr ""
20292
20293 #. type: =item
20294 #: ../fish/guestfish.pod:565
20295 msgid "B<G> or B<GiB>"
20296 msgstr ""
20297
20298 #. type: textblock
20299 #: ../fish/guestfish.pod:567
20300 msgid "The size in gigabytes (multiplied by 2**30)."
20301 msgstr ""
20302
20303 #. type: =item
20304 #: ../fish/guestfish.pod:569
20305 msgid "B<GB>"
20306 msgstr ""
20307
20308 #. type: textblock
20309 #: ../fish/guestfish.pod:571
20310 msgid "The size in SI 10**9 byte units."
20311 msgstr ""
20312
20313 #. type: =item
20314 #: ../fish/guestfish.pod:573
20315 msgid "B<T> or B<TiB>"
20316 msgstr ""
20317
20318 #. type: textblock
20319 #: ../fish/guestfish.pod:575
20320 msgid "The size in terabytes (multiplied by 2**40)."
20321 msgstr ""
20322
20323 #. type: =item
20324 #: ../fish/guestfish.pod:577
20325 msgid "B<TB>"
20326 msgstr ""
20327
20328 #. type: textblock
20329 #: ../fish/guestfish.pod:579
20330 msgid "The size in SI 10**12 byte units."
20331 msgstr ""
20332
20333 #. type: =item
20334 #: ../fish/guestfish.pod:581
20335 msgid "B<P> or B<PiB>"
20336 msgstr ""
20337
20338 #. type: textblock
20339 #: ../fish/guestfish.pod:583
20340 msgid "The size in petabytes (multiplied by 2**50)."
20341 msgstr ""
20342
20343 #. type: =item
20344 #: ../fish/guestfish.pod:585
20345 msgid "B<PB>"
20346 msgstr ""
20347
20348 #. type: textblock
20349 #: ../fish/guestfish.pod:587
20350 msgid "The size in SI 10**15 byte units."
20351 msgstr ""
20352
20353 #. type: =item
20354 #: ../fish/guestfish.pod:589
20355 msgid "B<E> or B<EiB>"
20356 msgstr ""
20357
20358 #. type: textblock
20359 #: ../fish/guestfish.pod:591
20360 msgid "The size in exabytes (multiplied by 2**60)."
20361 msgstr ""
20362
20363 #. type: =item
20364 #: ../fish/guestfish.pod:593
20365 msgid "B<EB>"
20366 msgstr ""
20367
20368 #. type: textblock
20369 #: ../fish/guestfish.pod:595
20370 msgid "The size in SI 10**18 byte units."
20371 msgstr ""
20372
20373 #. type: =item
20374 #: ../fish/guestfish.pod:597
20375 msgid "B<Z> or B<ZiB>"
20376 msgstr ""
20377
20378 #. type: textblock
20379 #: ../fish/guestfish.pod:599
20380 msgid "The size in zettabytes (multiplied by 2**70)."
20381 msgstr ""
20382
20383 #. type: =item
20384 #: ../fish/guestfish.pod:601
20385 msgid "B<ZB>"
20386 msgstr ""
20387
20388 #. type: textblock
20389 #: ../fish/guestfish.pod:603
20390 msgid "The size in SI 10**21 byte units."
20391 msgstr ""
20392
20393 #. type: =item
20394 #: ../fish/guestfish.pod:605
20395 msgid "B<Y> or B<YiB>"
20396 msgstr ""
20397
20398 #. type: textblock
20399 #: ../fish/guestfish.pod:607
20400 msgid "The size in yottabytes (multiplied by 2**80)."
20401 msgstr ""
20402
20403 #. type: =item
20404 #: ../fish/guestfish.pod:609
20405 msgid "B<YB>"
20406 msgstr ""
20407
20408 #. type: textblock
20409 #: ../fish/guestfish.pod:611
20410 msgid "The size in SI 10**24 byte units."
20411 msgstr ""
20412
20413 #. type: verbatim
20414 #: ../fish/guestfish.pod:617
20415 #, no-wrap
20416 msgid ""
20417 " truncate-size /file 1G\n"
20418 "\n"
20419 msgstr ""
20420
20421 #. type: textblock
20422 #: ../fish/guestfish.pod:619
20423 msgid "would truncate the file to 1 gigabyte."
20424 msgstr ""
20425
20426 #. type: textblock
20427 #: ../fish/guestfish.pod:621
20428 msgid ""
20429 "Be careful because a few commands take sizes in kilobytes or megabytes "
20430 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
20431 "Adding a suffix will probably not do what you expect."
20432 msgstr ""
20433
20434 #. type: =head2
20435 #: ../fish/guestfish.pod:625
20436 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20437 msgstr ""
20438
20439 #. type: textblock
20440 #: ../fish/guestfish.pod:627
20441 msgid ""
20442 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20443 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20444 msgstr ""
20445
20446 #. type: verbatim
20447 #: ../fish/guestfish.pod:630
20448 #, no-wrap
20449 msgid ""
20450 " 1234      decimal number 1234\n"
20451 " 02322     octal number, equivalent to decimal 1234\n"
20452 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20453 "\n"
20454 msgstr ""
20455
20456 #. type: textblock
20457 #: ../fish/guestfish.pod:634
20458 msgid ""
20459 "When using the C<chmod> command, you almost always want to specify an octal "
20460 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20461 "L<chmod(1)> program):"
20462 msgstr ""
20463
20464 #. type: verbatim
20465 #: ../fish/guestfish.pod:638
20466 #, no-wrap
20467 msgid ""
20468 " chmod 0777 /public  # OK\n"
20469 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20470 "\n"
20471 msgstr ""
20472
20473 #. type: textblock
20474 #: ../fish/guestfish.pod:641
20475 msgid ""
20476 "Commands that return numbers usually print them in decimal, but some "
20477 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20478 "octal, preceeded by C<0>)."
20479 msgstr ""
20480
20481 #. type: =head1
20482 #: ../fish/guestfish.pod:645
20483 msgid "WILDCARDS AND GLOBBING"
20484 msgstr ""
20485
20486 #. type: textblock
20487 #: ../fish/guestfish.pod:647
20488 msgid ""
20489 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20490 "(globbing) by default.  So for example the following will not do what you "
20491 "expect:"
20492 msgstr ""
20493
20494 #. type: verbatim
20495 #: ../fish/guestfish.pod:651
20496 #, no-wrap
20497 msgid ""
20498 " rm-rf /home/*\n"
20499 "\n"
20500 msgstr ""
20501
20502 #. type: textblock
20503 #: ../fish/guestfish.pod:653
20504 msgid ""
20505 "Assuming you don't have a directory called literally C</home/*> then the "
20506 "above command will return an error."
20507 msgstr ""
20508
20509 #. type: textblock
20510 #: ../fish/guestfish.pod:656
20511 msgid "To perform wildcard expansion, use the C<glob> command."
20512 msgstr ""
20513
20514 #. type: verbatim
20515 #: ../fish/guestfish.pod:658
20516 #, no-wrap
20517 msgid ""
20518 " glob rm-rf /home/*\n"
20519 "\n"
20520 msgstr ""
20521
20522 #. type: textblock
20523 #: ../fish/guestfish.pod:660
20524 msgid ""
20525 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20526 "many times), equivalent to:"
20527 msgstr ""
20528
20529 #. type: verbatim
20530 #: ../fish/guestfish.pod:663
20531 #, no-wrap
20532 msgid ""
20533 " rm-rf /home/jim\n"
20534 " rm-rf /home/joe\n"
20535 " rm-rf /home/mary\n"
20536 "\n"
20537 msgstr ""
20538
20539 #. type: textblock
20540 #: ../fish/guestfish.pod:667
20541 msgid "C<glob> only works on simple guest paths and not on device names."
20542 msgstr ""
20543
20544 #. type: textblock
20545 #: ../fish/guestfish.pod:669
20546 msgid ""
20547 "If you have several parameters, each containing a wildcard, then glob will "
20548 "perform a Cartesian product."
20549 msgstr ""
20550
20551 #. type: =head1
20552 #: ../fish/guestfish.pod:672
20553 msgid "COMMENTS"
20554 msgstr ""
20555
20556 #. type: textblock
20557 #: ../fish/guestfish.pod:674
20558 msgid ""
20559 "Any line which starts with a I<#> character is treated as a comment and "
20560 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20561 "a command.  For example:"
20562 msgstr ""
20563
20564 #. type: verbatim
20565 #: ../fish/guestfish.pod:678
20566 #, no-wrap
20567 msgid ""
20568 " # this is a comment\n"
20569 "         # this is a comment\n"
20570 " foo # NOT a comment\n"
20571 "\n"
20572 msgstr ""
20573
20574 #. type: textblock
20575 #: ../fish/guestfish.pod:682
20576 msgid "Blank lines are also ignored."
20577 msgstr ""
20578
20579 #. type: =head1
20580 #: ../fish/guestfish.pod:684
20581 msgid "RUNNING COMMANDS LOCALLY"
20582 msgstr ""
20583
20584 #. type: textblock
20585 #: ../fish/guestfish.pod:686
20586 msgid ""
20587 "Any line which starts with a I<!> character is treated as a command sent to "
20588 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20589 msgstr ""
20590
20591 #. type: verbatim
20592 #: ../fish/guestfish.pod:690
20593 #, no-wrap
20594 msgid ""
20595 " !mkdir local\n"
20596 " tgz-out /remote local/remote-data.tar.gz\n"
20597 "\n"
20598 msgstr ""
20599
20600 #. type: textblock
20601 #: ../fish/guestfish.pod:693
20602 msgid ""
20603 "will create a directory C<local> on the host, and then export the contents "
20604 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20605 "(See C<tgz-out>)."
20606 msgstr ""
20607
20608 #. type: textblock
20609 #: ../fish/guestfish.pod:697
20610 msgid ""
20611 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20612 "effect, due to the way that subprocesses work in Unix."
20613 msgstr ""
20614
20615 #. type: =head2
20616 #: ../fish/guestfish.pod:700
20617 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20618 msgstr ""
20619
20620 #. type: textblock
20621 #: ../fish/guestfish.pod:702
20622 msgid ""
20623 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20624 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20625 "and executed as guestfish commands."
20626 msgstr ""
20627
20628 #. type: textblock
20629 #: ../fish/guestfish.pod:706
20630 msgid ""
20631 "Thus you can use shell script to construct arbitrary guestfish commands "
20632 "which are then parsed by guestfish."
20633 msgstr ""
20634
20635 #. type: textblock
20636 #: ../fish/guestfish.pod:709
20637 msgid ""
20638 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20639 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20640 "if we use a shell script to create the guestfish commands for us:"
20641 msgstr ""
20642
20643 #. type: verbatim
20644 #: ../fish/guestfish.pod:714
20645 #, no-wrap
20646 msgid ""
20647 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20648 "\n"
20649 msgstr ""
20650
20651 #. type: textblock
20652 #: ../fish/guestfish.pod:716
20653 msgid "or with names like C</foo.001>:"
20654 msgstr ""
20655
20656 #. type: verbatim
20657 #: ../fish/guestfish.pod:718
20658 #, no-wrap
20659 msgid ""
20660 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20661 "\n"
20662 msgstr ""
20663
20664 #. type: textblock
20665 #: ../fish/guestfish.pod:720
20666 msgid ""
20667 "When using guestfish interactively it can be helpful to just run the shell "
20668 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20669 "ordinary I<!> local command), see what guestfish commands it would run, and "
20670 "when you are happy with those prepend the C<E<lt>> character to run the "
20671 "guestfish commands for real."
20672 msgstr ""
20673
20674 #. type: =head1
20675 #: ../fish/guestfish.pod:726
20676 msgid "PIPES"
20677 msgstr ""
20678
20679 #. type: textblock
20680 #: ../fish/guestfish.pod:728
20681 msgid ""
20682 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20683 "command (a guestfish command) to the second command (any host command).  For "
20684 "example:"
20685 msgstr ""
20686
20687 #. type: verbatim
20688 #: ../fish/guestfish.pod:732
20689 #, no-wrap
20690 msgid ""
20691 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20692 "\n"
20693 msgstr ""
20694
20695 #. type: textblock
20696 #: ../fish/guestfish.pod:734
20697 msgid ""
20698 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20699 "program).  The above command would list all accounts in the guest filesystem "
20700 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20701 msgstr ""
20702
20703 #. type: verbatim
20704 #: ../fish/guestfish.pod:739
20705 #, no-wrap
20706 msgid ""
20707 " hexdump /bin/ls | head\n"
20708 " list-devices | tail -1\n"
20709 " tgz-out / - | tar ztf -\n"
20710 "\n"
20711 msgstr ""
20712
20713 #. type: textblock
20714 #: ../fish/guestfish.pod:743
20715 msgid ""
20716 "The space before the pipe symbol is required, any space after the pipe "
20717 "symbol is optional.  Everything after the pipe symbol is just passed "
20718 "straight to the host shell, so it can contain redirections, globs and "
20719 "anything else that makes sense on the host side."
20720 msgstr ""
20721
20722 #. type: textblock
20723 #: ../fish/guestfish.pod:748
20724 msgid ""
20725 "To use a literal argument which begins with a pipe symbol, you have to quote "
20726 "it, eg:"
20727 msgstr ""
20728
20729 #. type: verbatim
20730 #: ../fish/guestfish.pod:751
20731 #, no-wrap
20732 msgid ""
20733 " echo \"|\"\n"
20734 "\n"
20735 msgstr ""
20736
20737 #. type: =head1
20738 #: ../fish/guestfish.pod:753
20739 msgid "HOME DIRECTORIES"
20740 msgstr ""
20741
20742 #. type: textblock
20743 #: ../fish/guestfish.pod:755
20744 msgid ""
20745 "If a parameter starts with the character C<~> then the tilde may be expanded "
20746 "as a home directory path (either C<~> for the current user's home directory, "
20747 "or C<~user> for another user)."
20748 msgstr ""
20749
20750 #. type: textblock
20751 #: ../fish/guestfish.pod:759
20752 msgid ""
20753 "Note that home directory expansion happens for users known I<on the host>, "
20754 "not in the guest filesystem."
20755 msgstr ""
20756
20757 #. type: textblock
20758 #: ../fish/guestfish.pod:762
20759 msgid ""
20760 "To use a literal argument which begins with a tilde, you have to quote it, "
20761 "eg:"
20762 msgstr ""
20763
20764 #. type: verbatim
20765 #: ../fish/guestfish.pod:765
20766 #, no-wrap
20767 msgid ""
20768 " echo \"~\"\n"
20769 "\n"
20770 msgstr ""
20771
20772 #. type: textblock
20773 #: ../fish/guestfish.pod:769
20774 msgid ""
20775 "Libguestfs has some support for Linux guests encrypted according to the "
20776 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
20777 "disk encryption systems used by modern Linux guests.  Currently only "
20778 "LVM-on-LUKS is supported."
20779 msgstr ""
20780
20781 #. type: textblock
20782 #: ../fish/guestfish.pod:774
20783 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
20784 msgstr ""
20785
20786 #. type: verbatim
20787 #: ../fish/guestfish.pod:776
20788 #, no-wrap
20789 msgid ""
20790 " ><fs> vfs-type /dev/sda2\n"
20791 " crypto_LUKS\n"
20792 "\n"
20793 msgstr ""
20794
20795 #. type: textblock
20796 #: ../fish/guestfish.pod:779
20797 msgid ""
20798 "Then open those devices using L</luks-open>.  This creates a device-mapper "
20799 "device called C</dev/mapper/luksdev>."
20800 msgstr ""
20801
20802 #. type: verbatim
20803 #: ../fish/guestfish.pod:782
20804 #, no-wrap
20805 msgid ""
20806 " ><fs> luks-open /dev/sda2 luksdev\n"
20807 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
20808 "\n"
20809 msgstr ""
20810
20811 #. type: textblock
20812 #: ../fish/guestfish.pod:785
20813 msgid ""
20814 "Finally you have to tell LVM to scan for volume groups on the newly created "
20815 "mapper device:"
20816 msgstr ""
20817
20818 #. type: verbatim
20819 #: ../fish/guestfish.pod:788
20820 #, no-wrap
20821 msgid ""
20822 " vgscan\n"
20823 " vg-activate-all true\n"
20824 "\n"
20825 msgstr ""
20826
20827 #. type: textblock
20828 #: ../fish/guestfish.pod:791
20829 msgid "The logical volume(s) can now be mounted in the usual way."
20830 msgstr ""
20831
20832 #. type: textblock
20833 #: ../fish/guestfish.pod:793
20834 msgid ""
20835 "Before closing a LUKS device you must unmount any logical volumes on it and "
20836 "deactivate the volume groups by calling C<vg-activate false VG> on each "
20837 "one.  Then you can close the mapper device:"
20838 msgstr ""
20839
20840 #. type: verbatim
20841 #: ../fish/guestfish.pod:797
20842 #, no-wrap
20843 msgid ""
20844 " vg-activate false /dev/VG\n"
20845 " luks-close /dev/mapper/luksdev\n"
20846 "\n"
20847 msgstr ""
20848
20849 #. type: =head1
20850 #: ../fish/guestfish.pod:800
20851 msgid "WINDOWS PATHS"
20852 msgstr ""
20853
20854 #. type: textblock
20855 #: ../fish/guestfish.pod:802
20856 msgid ""
20857 "If a path is prefixed with C<win:> then you can use Windows-style drive "
20858 "letters and paths (with some limitations).  The following commands are "
20859 "equivalent:"
20860 msgstr ""
20861
20862 #. type: verbatim
20863 #: ../fish/guestfish.pod:806
20864 #, no-wrap
20865 msgid ""
20866 " file /WINDOWS/system32/config/system.LOG\n"
20867 "\n"
20868 msgstr ""
20869
20870 #. type: verbatim
20871 #: ../fish/guestfish.pod:808
20872 #, no-wrap
20873 msgid ""
20874 " file win:\\windows\\system32\\config\\system.log\n"
20875 "\n"
20876 msgstr ""
20877
20878 #. type: verbatim
20879 #: ../fish/guestfish.pod:810
20880 #, no-wrap
20881 msgid ""
20882 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
20883 "\n"
20884 msgstr ""
20885
20886 #. type: textblock
20887 #: ../fish/guestfish.pod:812
20888 msgid ""
20889 "The parameter is rewritten \"behind the scenes\" by looking up the position "
20890 "where the drive is mounted, prepending that to the path, changing all "
20891 "backslash characters to forward slash, then resolving the result using "
20892 "L</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
20893 "then the parameter might be rewritten like this:"
20894 msgstr ""
20895
20896 #. type: verbatim
20897 #: ../fish/guestfish.pod:818
20898 #, no-wrap
20899 msgid ""
20900 " win:e:\\foo\\bar => /e/FOO/bar\n"
20901 "\n"
20902 msgstr ""
20903
20904 #. type: textblock
20905 #: ../fish/guestfish.pod:820
20906 msgid "This only works in argument positions that expect a path."
20907 msgstr ""
20908
20909 #. type: =head1
20910 #: ../fish/guestfish.pod:822
20911 msgid "UPLOADING AND DOWNLOADING FILES"
20912 msgstr ""
20913
20914 #. type: textblock
20915 #: ../fish/guestfish.pod:824
20916 msgid ""
20917 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
20918 "others which upload from or download to a local file, you can use the "
20919 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
20920 msgstr ""
20921
20922 #. type: verbatim
20923 #: ../fish/guestfish.pod:828
20924 #, no-wrap
20925 msgid ""
20926 " upload - /foo\n"
20927 "\n"
20928 msgstr ""
20929
20930 #. type: textblock
20931 #: ../fish/guestfish.pod:830
20932 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
20933 msgstr ""
20934
20935 #. type: verbatim
20936 #: ../fish/guestfish.pod:833
20937 #, no-wrap
20938 msgid ""
20939 " tar-out /etc - | tar tf -\n"
20940 "\n"
20941 msgstr ""
20942
20943 #. type: textblock
20944 #: ../fish/guestfish.pod:835
20945 msgid ""
20946 "writes the tarball to stdout and then pipes that into the external \"tar\" "
20947 "command (see L</PIPES>)."
20948 msgstr ""
20949
20950 #. type: textblock
20951 #: ../fish/guestfish.pod:838
20952 msgid ""
20953 "When using C<-> to read from stdin, the input is read up to the end of "
20954 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
20955 "some arbitrary end marker:"
20956 msgstr ""
20957
20958 #. type: verbatim
20959 #: ../fish/guestfish.pod:842
20960 #, no-wrap
20961 msgid ""
20962 " upload -<<END /foo\n"
20963 " input line 1\n"
20964 " input line 2\n"
20965 " input line 3\n"
20966 " END\n"
20967 "\n"
20968 msgstr ""
20969
20970 #. type: textblock
20971 #: ../fish/guestfish.pod:848
20972 msgid ""
20973 "Any string of characters can be used instead of C<END>.  The end marker must "
20974 "appear on a line of its own, without any preceeding or following characters "
20975 "(not even spaces)."
20976 msgstr ""
20977
20978 #. type: textblock
20979 #: ../fish/guestfish.pod:852
20980 msgid ""
20981 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
20982 "upload local files (so-called \"FileIn\" parameters in the generator)."
20983 msgstr ""
20984
20985 #. type: =head1
20986 #: ../fish/guestfish.pod:855
20987 msgid "EXIT ON ERROR BEHAVIOUR"
20988 msgstr ""
20989
20990 #. type: textblock
20991 #: ../fish/guestfish.pod:857
20992 msgid ""
20993 "By default, guestfish will ignore any errors when in interactive mode "
20994 "(ie. taking commands from a human over a tty), and will exit on the first "
20995 "error in non-interactive mode (scripts, commands given on the command line)."
20996 msgstr ""
20997
20998 #. type: textblock
20999 #: ../fish/guestfish.pod:862
21000 msgid ""
21001 "If you prefix a command with a I<-> character, then that command will not "
21002 "cause guestfish to exit, even if that (one) command returns an error."
21003 msgstr ""
21004
21005 #. type: =head1
21006 #: ../fish/guestfish.pod:866
21007 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21008 msgstr ""
21009
21010 #. type: textblock
21011 #: ../fish/guestfish.pod:868
21012 msgid ""
21013 "Guestfish can be remote-controlled over a socket.  This is useful "
21014 "particularly in shell scripts where you want to make several different "
21015 "changes to a filesystem, but you don't want the overhead of starting up a "
21016 "guestfish process each time."
21017 msgstr ""
21018
21019 #. type: textblock
21020 #: ../fish/guestfish.pod:873
21021 msgid "Start a guestfish server process using:"
21022 msgstr ""
21023
21024 #. type: verbatim
21025 #: ../fish/guestfish.pod:875
21026 #, no-wrap
21027 msgid ""
21028 " eval \"`guestfish --listen`\"\n"
21029 "\n"
21030 msgstr ""
21031
21032 #. type: textblock
21033 #: ../fish/guestfish.pod:877
21034 msgid "and then send it commands by doing:"
21035 msgstr ""
21036
21037 #. type: verbatim
21038 #: ../fish/guestfish.pod:879
21039 #, no-wrap
21040 msgid ""
21041 " guestfish --remote cmd [...]\n"
21042 "\n"
21043 msgstr ""
21044
21045 #. type: textblock
21046 #: ../fish/guestfish.pod:881
21047 msgid "To cause the server to exit, send it the exit command:"
21048 msgstr ""
21049
21050 #. type: verbatim
21051 #: ../fish/guestfish.pod:883
21052 #, no-wrap
21053 msgid ""
21054 " guestfish --remote exit\n"
21055 "\n"
21056 msgstr ""
21057
21058 #. type: textblock
21059 #: ../fish/guestfish.pod:885
21060 msgid ""
21061 "Note that the server will normally exit if there is an error in a command.  "
21062 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21063 "BEHAVIOUR>."
21064 msgstr ""
21065
21066 #. type: =head2
21067 #: ../fish/guestfish.pod:889
21068 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21069 msgstr ""
21070
21071 #. type: textblock
21072 #: ../fish/guestfish.pod:891
21073 msgid ""
21074 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21075 "is how the I<--remote> option knows where to send the commands.  You can "
21076 "have several guestfish listener processes running using:"
21077 msgstr ""
21078
21079 #. type: verbatim
21080 #: ../fish/guestfish.pod:895
21081 #, no-wrap
21082 msgid ""
21083 " eval \"`guestfish --listen`\"\n"
21084 " pid1=$GUESTFISH_PID\n"
21085 " eval \"`guestfish --listen`\"\n"
21086 " pid2=$GUESTFISH_PID\n"
21087 " ...\n"
21088 " guestfish --remote=$pid1 cmd\n"
21089 " guestfish --remote=$pid2 cmd\n"
21090 "\n"
21091 msgstr ""
21092
21093 #. type: =head2
21094 #: ../fish/guestfish.pod:903
21095 msgid "REMOTE CONTROL AND CSH"
21096 msgstr ""
21097
21098 #. type: textblock
21099 #: ../fish/guestfish.pod:905
21100 msgid ""
21101 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21102 "option:"
21103 msgstr ""
21104
21105 #. type: verbatim
21106 #: ../fish/guestfish.pod:908
21107 #, no-wrap
21108 msgid ""
21109 " eval \"`guestfish --listen --csh`\"\n"
21110 "\n"
21111 msgstr ""
21112
21113 #. type: =head2
21114 #: ../fish/guestfish.pod:910
21115 msgid "REMOTE CONTROL DETAILS"
21116 msgstr ""
21117
21118 #. type: textblock
21119 #: ../fish/guestfish.pod:912
21120 msgid ""
21121 "Remote control happens over a Unix domain socket called "
21122 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
21123 "of the process, and C<$PID> is the process ID of the server."
21124 msgstr ""
21125
21126 #. type: textblock
21127 #: ../fish/guestfish.pod:916
21128 msgid "Guestfish client and server versions must match exactly."
21129 msgstr ""
21130
21131 #. type: =head1
21132 #: ../fish/guestfish.pod:918
21133 msgid "PREPARED DISK IMAGES"
21134 msgstr ""
21135
21136 #. type: textblock
21137 #: ../fish/guestfish.pod:920
21138 msgid ""
21139 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21140 "preformatted disk images that guestfish can make for you to save typing.  "
21141 "This is particularly useful for testing purposes.  This option is used "
21142 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21143 "can be mixed with I<-a>)."
21144 msgstr ""
21145
21146 #. type: textblock
21147 #: ../fish/guestfish.pod:926
21148 msgid ""
21149 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21150 "the second and so on.  Existing files in the current directory are "
21151 "I<overwritten>."
21152 msgstr ""
21153
21154 #. type: textblock
21155 #: ../fish/guestfish.pod:930
21156 msgid ""
21157 "The type briefly describes how the disk should be sized, partitioned, how "
21158 "filesystem(s) should be created, and how content should be added.  "
21159 "Optionally the type can be followed by extra parameters, separated by C<:> "
21160 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
21161 "sparsely-allocated disk, containing a single partition, with the partition "
21162 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
21163 "on a 1GB disk instead."
21164 msgstr ""
21165
21166 #. type: textblock
21167 #: ../fish/guestfish.pod:938
21168 msgid "To list the available types and any extra parameters they take, run:"
21169 msgstr ""
21170
21171 #. type: textblock
21172 #: ../fish/guestfish.pod:942
21173 msgid ""
21174 "Note that the prepared filesystem is not mounted.  You would usually have to "
21175 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21176 msgstr ""
21177
21178 #. type: textblock
21179 #: ../fish/guestfish.pod:946
21180 msgid ""
21181 "If any I<-N> or I<--new> options are given, the guest is automatically "
21182 "launched."
21183 msgstr ""
21184
21185 #. type: textblock
21186 #: ../fish/guestfish.pod:951
21187 msgid "Create a 100MB disk with an ext4-formatted partition:"
21188 msgstr ""
21189
21190 #. type: verbatim
21191 #: ../fish/guestfish.pod:953
21192 #, no-wrap
21193 msgid ""
21194 " guestfish -N fs:ext4\n"
21195 "\n"
21196 msgstr ""
21197
21198 #. type: textblock
21199 #: ../fish/guestfish.pod:955
21200 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21201 msgstr ""
21202
21203 #. type: verbatim
21204 #: ../fish/guestfish.pod:957
21205 #, no-wrap
21206 msgid ""
21207 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21208 "\n"
21209 msgstr ""
21210
21211 #. type: textblock
21212 #: ../fish/guestfish.pod:959
21213 msgid "Create a blank 200MB disk:"
21214 msgstr ""
21215
21216 #. type: verbatim
21217 #: ../fish/guestfish.pod:961
21218 #, no-wrap
21219 msgid ""
21220 " guestfish -N disk:200M\n"
21221 "\n"
21222 msgstr ""
21223
21224 #. type: =head1
21225 #: ../fish/guestfish.pod:963
21226 msgid "PROGRESS BARS"
21227 msgstr ""
21228
21229 #. type: textblock
21230 #: ../fish/guestfish.pod:965
21231 msgid ""
21232 "Some (not all) long-running commands send progress notification messages as "
21233 "they are running.  Guestfish turns these messages into progress bars."
21234 msgstr ""
21235
21236 #. type: textblock
21237 #: ../fish/guestfish.pod:969
21238 msgid ""
21239 "When a command that supports progress bars takes longer than two seconds to "
21240 "run, and if progress bars are enabled, then you will see one appearing below "
21241 "the command:"
21242 msgstr ""
21243
21244 #. type: verbatim
21245 #: ../fish/guestfish.pod:973
21246 #, no-wrap
21247 msgid ""
21248 " ><fs> copy-size /large-file /another-file 2048M\n"
21249 " / 10% [#####-----------------------------------------] 00:30\n"
21250 "\n"
21251 msgstr ""
21252
21253 #. type: textblock
21254 #: ../fish/guestfish.pod:976
21255 msgid ""
21256 "The spinner on the left hand side moves round once for every progress "
21257 "notification received from the backend.  This is a (reasonably) golden "
21258 "assurance that the command is \"doing something\" even if the progress bar "
21259 "is not moving, because the command is able to send the progress "
21260 "notifications.  When the bar reaches 100% and the command finishes, the "
21261 "spinner disappears."
21262 msgstr ""
21263
21264 #. type: textblock
21265 #: ../fish/guestfish.pod:983
21266 msgid ""
21267 "Progress bars are enabled by default when guestfish is used interactively.  "
21268 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21269 "and you can disable them completely using I<--no-progress-bars>."
21270 msgstr ""
21271
21272 #. type: =head1
21273 #: ../fish/guestfish.pod:988
21274 msgid "GUESTFISH COMMANDS"
21275 msgstr ""
21276
21277 #. type: textblock
21278 #: ../fish/guestfish.pod:990
21279 msgid ""
21280 "The commands in this section are guestfish convenience commands, in other "
21281 "words, they are not part of the L<guestfs(3)> API."
21282 msgstr ""
21283
21284 #. type: =head2
21285 #: ../fish/guestfish.pod:993
21286 msgid "help"
21287 msgstr ""
21288
21289 #. type: verbatim
21290 #: ../fish/guestfish.pod:995
21291 #, no-wrap
21292 msgid ""
21293 " help\n"
21294 " help cmd\n"
21295 "\n"
21296 msgstr ""
21297
21298 #. type: textblock
21299 #: ../fish/guestfish.pod:998
21300 msgid "Without any parameter, this provides general help."
21301 msgstr ""
21302
21303 #. type: textblock
21304 #: ../fish/guestfish.pod:1000
21305 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21306 msgstr ""
21307
21308 #. type: =head2
21309 #: ../fish/guestfish.pod:1002
21310 msgid "quit | exit"
21311 msgstr ""
21312
21313 #. type: textblock
21314 #: ../fish/guestfish.pod:1004
21315 msgid "This exits guestfish.  You can also use C<^D> key."
21316 msgstr ""
21317
21318 #. type: textblock
21319 #: ../fish/guestfish.pod:1006
21320 msgid "@FISH_COMMANDS@"
21321 msgstr ""
21322
21323 #. type: =head1
21324 #: ../fish/guestfish.pod:1008
21325 msgid "COMMANDS"
21326 msgstr ""
21327
21328 #. type: =head1
21329 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
21330 msgid "EXIT CODE"
21331 msgstr ""
21332
21333 #. type: textblock
21334 #: ../fish/guestfish.pod:1014
21335 msgid ""
21336 "guestfish returns 0 if the commands completed without error, or 1 if there "
21337 "was an error."
21338 msgstr ""
21339
21340 #. type: =item
21341 #: ../fish/guestfish.pod:1021
21342 msgid "EDITOR"
21343 msgstr ""
21344
21345 #. type: textblock
21346 #: ../fish/guestfish.pod:1023
21347 msgid ""
21348 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21349 "C<vi>."
21350 msgstr ""
21351
21352 #. type: =item
21353 #: ../fish/guestfish.pod:1026
21354 msgid "GUESTFISH_DISPLAY_IMAGE"
21355 msgstr ""
21356
21357 #. type: textblock
21358 #: ../fish/guestfish.pod:1028
21359 msgid ""
21360 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
21361 "If not set, it uses L<display(1)>."
21362 msgstr ""
21363
21364 #. type: =item
21365 #: ../fish/guestfish.pod:1031
21366 msgid "GUESTFISH_PID"
21367 msgstr ""
21368
21369 #. type: textblock
21370 #: ../fish/guestfish.pod:1033
21371 msgid ""
21372 "Used with the I<--remote> option to specify the remote guestfish process to "
21373 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21374 msgstr ""
21375
21376 #. type: =item
21377 #: ../fish/guestfish.pod:1037
21378 msgid "HEXEDITOR"
21379 msgstr ""
21380
21381 #. type: textblock
21382 #: ../fish/guestfish.pod:1039
21383 msgid ""
21384 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21385 "not specified, the external L<hexedit(1)> program is used."
21386 msgstr ""
21387
21388 #. type: =item
21389 #: ../fish/guestfish.pod:1043
21390 msgid "HOME"
21391 msgstr ""
21392
21393 #. type: textblock
21394 #: ../fish/guestfish.pod:1045
21395 msgid ""
21396 "If compiled with GNU readline support, various files in the home directory "
21397 "can be used.  See L</FILES>."
21398 msgstr ""
21399
21400 #. type: textblock
21401 #: ../fish/guestfish.pod:1054
21402 msgid ""
21403 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21404 "effect as using the B<-v> option."
21405 msgstr ""
21406
21407 #. type: textblock
21408 #: ../fish/guestfish.pod:1066
21409 msgid ""
21410 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21411 "the discussion of paths in L<guestfs(3)>."
21412 msgstr ""
21413
21414 #. type: textblock
21415 #: ../fish/guestfish.pod:1077
21416 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21417 msgstr ""
21418
21419 #. type: =item
21420 #: ../fish/guestfish.pod:1079
21421 msgid "PAGER"
21422 msgstr ""
21423
21424 #. type: textblock
21425 #: ../fish/guestfish.pod:1081
21426 msgid ""
21427 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21428 "C<more>."
21429 msgstr ""
21430
21431 #. type: =head1
21432 #: ../fish/guestfish.pod:1097 ../fuse/guestmount.pod:264
21433 msgid "FILES"
21434 msgstr ""
21435
21436 #. type: =item
21437 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:268
21438 msgid "$HOME/.libguestfs-tools.rc"
21439 msgstr ""
21440
21441 #. type: =item
21442 #: ../fish/guestfish.pod:1103 ../fuse/guestmount.pod:270
21443 msgid "/etc/libguestfs-tools.conf"
21444 msgstr ""
21445
21446 #. type: textblock
21447 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:272
21448 msgid ""
21449 "This configuration file controls the default read-only or read-write mode "
21450 "(I<--ro> or I<--rw>)."
21451 msgstr ""
21452
21453 #. type: textblock
21454 #: ../fish/guestfish.pod:1108
21455 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21456 msgstr ""
21457
21458 #. type: =item
21459 #: ../fish/guestfish.pod:1110
21460 msgid "$HOME/.guestfish"
21461 msgstr ""
21462
21463 #. type: textblock
21464 #: ../fish/guestfish.pod:1112
21465 msgid ""
21466 "If compiled with GNU readline support, then the command history is saved in "
21467 "this file."
21468 msgstr ""
21469
21470 #. type: =item
21471 #: ../fish/guestfish.pod:1115
21472 msgid "$HOME/.inputrc"
21473 msgstr ""
21474
21475 #. type: =item
21476 #: ../fish/guestfish.pod:1117
21477 msgid "/etc/inputrc"
21478 msgstr ""
21479
21480 #. type: textblock
21481 #: ../fish/guestfish.pod:1119
21482 msgid ""
21483 "If compiled with GNU readline support, then these files can be used to "
21484 "configure readline.  For further information, please see "
21485 "L<readline(3)/INITIALIZATION FILE>."
21486 msgstr ""
21487
21488 #. type: textblock
21489 #: ../fish/guestfish.pod:1123
21490 msgid "To write rules which only apply to guestfish, use:"
21491 msgstr ""
21492
21493 #. type: verbatim
21494 #: ../fish/guestfish.pod:1125
21495 #, no-wrap
21496 msgid ""
21497 " $if guestfish\n"
21498 " ...\n"
21499 " $endif\n"
21500 "\n"
21501 msgstr ""
21502
21503 #. type: textblock
21504 #: ../fish/guestfish.pod:1129
21505 msgid ""
21506 "Variables that you can set in inputrc that change the behaviour of guestfish "
21507 "in useful ways include:"
21508 msgstr ""
21509
21510 #. type: =item
21511 #: ../fish/guestfish.pod:1134
21512 msgid "completion-ignore-case (default: on)"
21513 msgstr ""
21514
21515 #. type: textblock
21516 #: ../fish/guestfish.pod:1136
21517 msgid ""
21518 "By default, guestfish will ignore case when tab-completing paths on the "
21519 "disk.  Use:"
21520 msgstr ""
21521
21522 #. type: verbatim
21523 #: ../fish/guestfish.pod:1139
21524 #, no-wrap
21525 msgid ""
21526 " set completion-ignore-case off\n"
21527 "\n"
21528 msgstr ""
21529
21530 #. type: textblock
21531 #: ../fish/guestfish.pod:1141
21532 msgid "to make guestfish case sensitive."
21533 msgstr ""
21534
21535 #. type: =item
21536 #: ../fish/guestfish.pod:1145
21537 msgid "test1.img"
21538 msgstr ""
21539
21540 #. type: =item
21541 #: ../fish/guestfish.pod:1147
21542 msgid "test2.img (etc)"
21543 msgstr ""
21544
21545 #. type: textblock
21546 #: ../fish/guestfish.pod:1149
21547 msgid ""
21548 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21549 "will be created in the file C<test1.img> in the current directory.  The "
21550 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21551 "the same name will be overwritten."
21552 msgstr ""
21553
21554 #. type: textblock
21555 #: ../fish/guestfish.pod:1158
21556 msgid ""
21557 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, "
21558 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
21559 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
21560 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
21561 "L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, "
21562 "L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<display(1)>, L<hexedit(1)>."
21563 msgstr ""
21564
21565 #. type: textblock
21566 #: ../fish/guestfish.pod:1189 ../test-tool/libguestfs-test-tool.pod:102 ../fuse/guestmount.pod:299 ../tools/virt-win-reg.pl:778 ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309 ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
21567 msgid ""
21568 "This program is free software; you can redistribute it and/or modify it "
21569 "under the terms of the GNU General Public License as published by the Free "
21570 "Software Foundation; either version 2 of the License, or (at your option) "
21571 "any later version."
21572 msgstr ""
21573
21574 #. type: textblock
21575 #: ../fish/guestfish.pod:1194 ../test-tool/libguestfs-test-tool.pod:107 ../fuse/guestmount.pod:304 ../tools/virt-win-reg.pl:783 ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314 ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
21576 msgid ""
21577 "This program is distributed in the hope that it will be useful, but WITHOUT "
21578 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21579 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21580 "more details."
21581 msgstr ""
21582
21583 #. type: textblock
21584 #: ../fish/guestfish.pod:1199 ../test-tool/libguestfs-test-tool.pod:112 ../fuse/guestmount.pod:309 ../tools/virt-win-reg.pl:788 ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319 ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
21585 msgid ""
21586 "You should have received a copy of the GNU General Public License along with "
21587 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21588 "Ave, Cambridge, MA 02139, USA."
21589 msgstr ""
21590
21591 #. type: =head2
21592 #: ../fish/guestfish-actions.pod:1
21593 msgid "add-cdrom"
21594 msgstr ""
21595
21596 #. type: verbatim
21597 #: ../fish/guestfish-actions.pod:3
21598 #, no-wrap
21599 msgid ""
21600 " add-cdrom filename\n"
21601 "\n"
21602 msgstr ""
21603
21604 #. type: textblock
21605 #: ../fish/guestfish-actions.pod:15
21606 msgid ""
21607 "This call checks for the existence of C<filename>.  This stops you from "
21608 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21609 "and C<http:> URLs.  To specify those, use the general L</config> call "
21610 "instead."
21611 msgstr ""
21612
21613 #. type: textblock
21614 #: ../fish/guestfish-actions.pod:22
21615 msgid ""
21616 "If you just want to add an ISO file (often you use this as an efficient way "
21617 "to transfer large files into the guest), then you should probably use "
21618 "L</add-drive-ro> instead."
21619 msgstr ""
21620
21621 #. type: =head2
21622 #: ../fish/guestfish-actions.pod:35
21623 msgid "add-domain"
21624 msgstr ""
21625
21626 #. type: =head2
21627 #: ../fish/guestfish-actions.pod:37
21628 msgid "domain"
21629 msgstr ""
21630
21631 #. type: verbatim
21632 #: ../fish/guestfish-actions.pod:39
21633 #, no-wrap
21634 msgid ""
21635 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] "
21636 "[allowuuid:..]\n"
21637 "\n"
21638 msgstr ""
21639
21640 #. type: textblock
21641 #: ../fish/guestfish-actions.pod:41
21642 msgid ""
21643 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21644 "It works by connecting to libvirt, requesting the domain and domain XML from "
21645 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21646 msgstr ""
21647
21648 #. type: textblock
21649 #: ../fish/guestfish-actions.pod:76
21650 msgid ""
21651 "The other optional parameters are passed directly through to "
21652 "L</add-drive-opts>."
21653 msgstr ""
21654
21655 #. type: textblock
21656 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143 ../fish/guestfish-actions.pod:1937 ../fish/guestfish-actions.pod:3077 ../fish/guestfish-actions.pod:3250
21657 msgid ""
21658 "This command has one or more optional arguments.  See L</OPTIONAL "
21659 "ARGUMENTS>."
21660 msgstr ""
21661
21662 #. type: =head2
21663 #: ../fish/guestfish-actions.pod:81
21664 msgid "add-drive"
21665 msgstr ""
21666
21667 #. type: verbatim
21668 #: ../fish/guestfish-actions.pod:83
21669 #, no-wrap
21670 msgid ""
21671 " add-drive filename\n"
21672 "\n"
21673 msgstr ""
21674
21675 #. type: textblock
21676 #: ../fish/guestfish-actions.pod:85
21677 msgid ""
21678 "This function is the equivalent of calling L</add-drive-opts> with no "
21679 "optional parameters, so the disk is added writable, with the format being "
21680 "detected automatically."
21681 msgstr ""
21682
21683 #. type: textblock
21684 #: ../fish/guestfish-actions.pod:89
21685 msgid ""
21686 "Automatic detection of the format opens you up to a potential security hole "
21687 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21688 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21689 "you should think about replacing calls to this function with calls to "
21690 "L</add-drive-opts>, and specifying the format."
21691 msgstr ""
21692
21693 #. type: =head2
21694 #: ../fish/guestfish-actions.pod:96
21695 msgid "add-drive-opts"
21696 msgstr ""
21697
21698 #. type: =head2
21699 #: ../fish/guestfish-actions.pod:98
21700 msgid "add"
21701 msgstr ""
21702
21703 #. type: verbatim
21704 #: ../fish/guestfish-actions.pod:100
21705 #, no-wrap
21706 msgid ""
21707 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21708 "\n"
21709 msgstr ""
21710
21711 #. type: textblock
21712 #: ../fish/guestfish-actions.pod:127
21713 msgid ""
21714 "This forces the image format.  If you omit this (or use L</add-drive> or "
21715 "L</add-drive-ro>) then the format is automatically detected.  Possible "
21716 "formats include C<raw> and C<qcow2>."
21717 msgstr ""
21718
21719 #. type: textblock
21720 #: ../fish/guestfish-actions.pod:138
21721 msgid ""
21722 "This rarely-used option lets you emulate the behaviour of the deprecated "
21723 "L</add-drive-with-if> call (q.v.)"
21724 msgstr ""
21725
21726 #. type: =head2
21727 #: ../fish/guestfish-actions.pod:145
21728 msgid "add-drive-ro"
21729 msgstr ""
21730
21731 #. type: =head2
21732 #: ../fish/guestfish-actions.pod:147
21733 msgid "add-ro"
21734 msgstr ""
21735
21736 #. type: verbatim
21737 #: ../fish/guestfish-actions.pod:149
21738 #, no-wrap
21739 msgid ""
21740 " add-drive-ro filename\n"
21741 "\n"
21742 msgstr ""
21743
21744 #. type: textblock
21745 #: ../fish/guestfish-actions.pod:151
21746 msgid ""
21747 "This function is the equivalent of calling L</add-drive-opts> with the "
21748 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
21749 "is added read-only, with the format being detected automatically."
21750 msgstr ""
21751
21752 #. type: =head2
21753 #: ../fish/guestfish-actions.pod:156
21754 msgid "add-drive-ro-with-if"
21755 msgstr ""
21756
21757 #. type: verbatim
21758 #: ../fish/guestfish-actions.pod:158
21759 #, no-wrap
21760 msgid ""
21761 " add-drive-ro-with-if filename iface\n"
21762 "\n"
21763 msgstr ""
21764
21765 #. type: textblock
21766 #: ../fish/guestfish-actions.pod:160
21767 msgid ""
21768 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
21769 "interface emulation to use at run time."
21770 msgstr ""
21771
21772 #. type: =head2
21773 #: ../fish/guestfish-actions.pod:170
21774 msgid "add-drive-with-if"
21775 msgstr ""
21776
21777 #. type: verbatim
21778 #: ../fish/guestfish-actions.pod:172
21779 #, no-wrap
21780 msgid ""
21781 " add-drive-with-if filename iface\n"
21782 "\n"
21783 msgstr ""
21784
21785 #. type: textblock
21786 #: ../fish/guestfish-actions.pod:174
21787 msgid ""
21788 "This is the same as L</add-drive> but it allows you to specify the QEMU "
21789 "interface emulation to use at run time."
21790 msgstr ""
21791
21792 #. type: =head2
21793 #: ../fish/guestfish-actions.pod:184
21794 msgid "aug-clear"
21795 msgstr ""
21796
21797 #. type: verbatim
21798 #: ../fish/guestfish-actions.pod:186
21799 #, no-wrap
21800 msgid ""
21801 " aug-clear augpath\n"
21802 "\n"
21803 msgstr ""
21804
21805 #. type: =head2
21806 #: ../fish/guestfish-actions.pod:191
21807 msgid "aug-close"
21808 msgstr ""
21809
21810 #. type: verbatim
21811 #: ../fish/guestfish-actions.pod:193
21812 #, no-wrap
21813 msgid ""
21814 " aug-close\n"
21815 "\n"
21816 msgstr ""
21817
21818 #. type: textblock
21819 #: ../fish/guestfish-actions.pod:195
21820 msgid ""
21821 "Close the current Augeas handle and free up any resources used by it.  After "
21822 "calling this, you have to call L</aug-init> again before you can use any "
21823 "other Augeas functions."
21824 msgstr ""
21825
21826 #. type: =head2
21827 #: ../fish/guestfish-actions.pod:200
21828 msgid "aug-defnode"
21829 msgstr ""
21830
21831 #. type: verbatim
21832 #: ../fish/guestfish-actions.pod:202
21833 #, no-wrap
21834 msgid ""
21835 " aug-defnode name expr val\n"
21836 "\n"
21837 msgstr ""
21838
21839 #. type: textblock
21840 #: ../fish/guestfish-actions.pod:207
21841 msgid ""
21842 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
21843 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
21844 "containing that single node."
21845 msgstr ""
21846
21847 #. type: =head2
21848 #: ../fish/guestfish-actions.pod:215
21849 msgid "aug-defvar"
21850 msgstr ""
21851
21852 #. type: verbatim
21853 #: ../fish/guestfish-actions.pod:217
21854 #, no-wrap
21855 msgid ""
21856 " aug-defvar name expr\n"
21857 "\n"
21858 msgstr ""
21859
21860 #. type: =head2
21861 #: ../fish/guestfish-actions.pod:226
21862 msgid "aug-get"
21863 msgstr ""
21864
21865 #. type: verbatim
21866 #: ../fish/guestfish-actions.pod:228
21867 #, no-wrap
21868 msgid ""
21869 " aug-get augpath\n"
21870 "\n"
21871 msgstr ""
21872
21873 #. type: =head2
21874 #: ../fish/guestfish-actions.pod:233
21875 msgid "aug-init"
21876 msgstr ""
21877
21878 #. type: verbatim
21879 #: ../fish/guestfish-actions.pod:235
21880 #, no-wrap
21881 msgid ""
21882 " aug-init root flags\n"
21883 "\n"
21884 msgstr ""
21885
21886 #. type: textblock
21887 #: ../fish/guestfish-actions.pod:241
21888 msgid "You must call this before using any other L</aug-*> commands."
21889 msgstr ""
21890
21891 #. type: textblock
21892 #: ../fish/guestfish-actions.pod:276
21893 msgid "Do not load the tree in L</aug-init>."
21894 msgstr ""
21895
21896 #. type: textblock
21897 #: ../fish/guestfish-actions.pod:280
21898 msgid "To close the handle, you can call L</aug-close>."
21899 msgstr ""
21900
21901 #. type: =head2
21902 #: ../fish/guestfish-actions.pod:284
21903 msgid "aug-insert"
21904 msgstr ""
21905
21906 #. type: verbatim
21907 #: ../fish/guestfish-actions.pod:286
21908 #, no-wrap
21909 msgid ""
21910 " aug-insert augpath label true|false\n"
21911 "\n"
21912 msgstr ""
21913
21914 #. type: =head2
21915 #: ../fish/guestfish-actions.pod:296
21916 msgid "aug-load"
21917 msgstr ""
21918
21919 #. type: verbatim
21920 #: ../fish/guestfish-actions.pod:298
21921 #, no-wrap
21922 msgid ""
21923 " aug-load\n"
21924 "\n"
21925 msgstr ""
21926
21927 #. type: =head2
21928 #: ../fish/guestfish-actions.pod:305
21929 msgid "aug-ls"
21930 msgstr ""
21931
21932 #. type: verbatim
21933 #: ../fish/guestfish-actions.pod:307
21934 #, no-wrap
21935 msgid ""
21936 " aug-ls augpath\n"
21937 "\n"
21938 msgstr ""
21939
21940 #. type: textblock
21941 #: ../fish/guestfish-actions.pod:309
21942 msgid ""
21943 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
21944 "resulting nodes into alphabetical order."
21945 msgstr ""
21946
21947 #. type: =head2
21948 #: ../fish/guestfish-actions.pod:312
21949 msgid "aug-match"
21950 msgstr ""
21951
21952 #. type: verbatim
21953 #: ../fish/guestfish-actions.pod:314
21954 #, no-wrap
21955 msgid ""
21956 " aug-match augpath\n"
21957 "\n"
21958 msgstr ""
21959
21960 #. type: =head2
21961 #: ../fish/guestfish-actions.pod:320
21962 msgid "aug-mv"
21963 msgstr ""
21964
21965 #. type: verbatim
21966 #: ../fish/guestfish-actions.pod:322
21967 #, no-wrap
21968 msgid ""
21969 " aug-mv src dest\n"
21970 "\n"
21971 msgstr ""
21972
21973 #. type: =head2
21974 #: ../fish/guestfish-actions.pod:327
21975 msgid "aug-rm"
21976 msgstr ""
21977
21978 #. type: verbatim
21979 #: ../fish/guestfish-actions.pod:329
21980 #, no-wrap
21981 msgid ""
21982 " aug-rm augpath\n"
21983 "\n"
21984 msgstr ""
21985
21986 #. type: =head2
21987 #: ../fish/guestfish-actions.pod:335
21988 msgid "aug-save"
21989 msgstr ""
21990
21991 #. type: verbatim
21992 #: ../fish/guestfish-actions.pod:337
21993 #, no-wrap
21994 msgid ""
21995 " aug-save\n"
21996 "\n"
21997 msgstr ""
21998
21999 #. type: textblock
22000 #: ../fish/guestfish-actions.pod:341
22001 msgid ""
22002 "The flags which were passed to L</aug-init> affect exactly how files are "
22003 "saved."
22004 msgstr ""
22005
22006 #. type: =head2
22007 #: ../fish/guestfish-actions.pod:344
22008 msgid "aug-set"
22009 msgstr ""
22010
22011 #. type: verbatim
22012 #: ../fish/guestfish-actions.pod:346
22013 #, no-wrap
22014 msgid ""
22015 " aug-set augpath val\n"
22016 "\n"
22017 msgstr ""
22018
22019 #. type: textblock
22020 #: ../fish/guestfish-actions.pod:350
22021 msgid ""
22022 "In the Augeas API, it is possible to clear a node by setting the value to "
22023 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22024 "this call.  Instead you must use the L</aug-clear> call."
22025 msgstr ""
22026
22027 #. type: =head2
22028 #: ../fish/guestfish-actions.pod:355
22029 msgid "available"
22030 msgstr ""
22031
22032 #. type: verbatim
22033 #: ../fish/guestfish-actions.pod:357
22034 #, no-wrap
22035 msgid ""
22036 " available 'groups ...'\n"
22037 "\n"
22038 msgstr ""
22039
22040 #. type: textblock
22041 #: ../fish/guestfish-actions.pod:363
22042 msgid ""
22043 "The libguestfs groups, and the functions that those groups correspond to, "
22044 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22045 "runtime by calling L</available-all-groups>."
22046 msgstr ""
22047
22048 #. type: textblock
22049 #: ../fish/guestfish-actions.pod:387
22050 msgid "You must call L</launch> before calling this function."
22051 msgstr ""
22052
22053 #. type: textblock
22054 #: ../fish/guestfish-actions.pod:409
22055 msgid ""
22056 "This call was added in version C<1.0.80>.  In previous versions of "
22057 "libguestfs all you could do would be to speculatively execute a command to "
22058 "find out if the daemon implemented it.  See also L</version>."
22059 msgstr ""
22060
22061 #. type: =head2
22062 #: ../fish/guestfish-actions.pod:416
22063 msgid "available-all-groups"
22064 msgstr ""
22065
22066 #. type: verbatim
22067 #: ../fish/guestfish-actions.pod:418
22068 #, no-wrap
22069 msgid ""
22070 " available-all-groups\n"
22071 "\n"
22072 msgstr ""
22073
22074 #. type: textblock
22075 #: ../fish/guestfish-actions.pod:420
22076 msgid ""
22077 "This command returns a list of all optional groups that this daemon knows "
22078 "about.  Note this returns both supported and unsupported groups.  To find "
22079 "out which ones the daemon can actually support you have to call "
22080 "L</available> on each member of the returned list."
22081 msgstr ""
22082
22083 #. type: textblock
22084 #: ../fish/guestfish-actions.pod:426
22085 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22086 msgstr ""
22087
22088 #. type: =head2
22089 #: ../fish/guestfish-actions.pod:428
22090 msgid "base64-in"
22091 msgstr ""
22092
22093 #. type: verbatim
22094 #: ../fish/guestfish-actions.pod:430
22095 #, no-wrap
22096 msgid ""
22097 " base64-in (base64file|-) filename\n"
22098 "\n"
22099 msgstr ""
22100
22101 #. type: textblock
22102 #: ../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:4523 ../fish/guestfish-actions.pod:4535 ../fish/guestfish-actions.pod:4546 ../fish/guestfish-actions.pod:4557 ../fish/guestfish-actions.pod:4609 ../fish/guestfish-actions.pod:4618 ../fish/guestfish-actions.pod:4672 ../fish/guestfish-actions.pod:4695
22103 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22104 msgstr ""
22105
22106 #. type: =head2
22107 #: ../fish/guestfish-actions.pod:437
22108 msgid "base64-out"
22109 msgstr ""
22110
22111 #. type: verbatim
22112 #: ../fish/guestfish-actions.pod:439
22113 #, no-wrap
22114 msgid ""
22115 " base64-out filename (base64file|-)\n"
22116 "\n"
22117 msgstr ""
22118
22119 #. type: =head2
22120 #: ../fish/guestfish-actions.pod:446
22121 msgid "blockdev-flushbufs"
22122 msgstr ""
22123
22124 #. type: verbatim
22125 #: ../fish/guestfish-actions.pod:448
22126 #, no-wrap
22127 msgid ""
22128 " blockdev-flushbufs device\n"
22129 "\n"
22130 msgstr ""
22131
22132 #. type: =head2
22133 #: ../fish/guestfish-actions.pod:455
22134 msgid "blockdev-getbsz"
22135 msgstr ""
22136
22137 #. type: verbatim
22138 #: ../fish/guestfish-actions.pod:457
22139 #, no-wrap
22140 msgid ""
22141 " blockdev-getbsz device\n"
22142 "\n"
22143 msgstr ""
22144
22145 #. type: =head2
22146 #: ../fish/guestfish-actions.pod:466
22147 msgid "blockdev-getro"
22148 msgstr ""
22149
22150 #. type: verbatim
22151 #: ../fish/guestfish-actions.pod:468
22152 #, no-wrap
22153 msgid ""
22154 " blockdev-getro device\n"
22155 "\n"
22156 msgstr ""
22157
22158 #. type: =head2
22159 #: ../fish/guestfish-actions.pod:475
22160 msgid "blockdev-getsize64"
22161 msgstr ""
22162
22163 #. type: verbatim
22164 #: ../fish/guestfish-actions.pod:477
22165 #, no-wrap
22166 msgid ""
22167 " blockdev-getsize64 device\n"
22168 "\n"
22169 msgstr ""
22170
22171 #. type: textblock
22172 #: ../fish/guestfish-actions.pod:481
22173 msgid "See also L</blockdev-getsz>."
22174 msgstr ""
22175
22176 #. type: =head2
22177 #: ../fish/guestfish-actions.pod:485
22178 msgid "blockdev-getss"
22179 msgstr ""
22180
22181 #. type: verbatim
22182 #: ../fish/guestfish-actions.pod:487
22183 #, no-wrap
22184 msgid ""
22185 " blockdev-getss device\n"
22186 "\n"
22187 msgstr ""
22188
22189 #. type: textblock
22190 #: ../fish/guestfish-actions.pod:492
22191 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22192 msgstr ""
22193
22194 #. type: =head2
22195 #: ../fish/guestfish-actions.pod:497
22196 msgid "blockdev-getsz"
22197 msgstr ""
22198
22199 #. type: verbatim
22200 #: ../fish/guestfish-actions.pod:499
22201 #, no-wrap
22202 msgid ""
22203 " blockdev-getsz device\n"
22204 "\n"
22205 msgstr ""
22206
22207 #. type: textblock
22208 #: ../fish/guestfish-actions.pod:504
22209 msgid ""
22210 "See also L</blockdev-getss> for the real sector size of the device, and "
22211 "L</blockdev-getsize64> for the more useful I<size in bytes>."
22212 msgstr ""
22213
22214 #. type: =head2
22215 #: ../fish/guestfish-actions.pod:510
22216 msgid "blockdev-rereadpt"
22217 msgstr ""
22218
22219 #. type: verbatim
22220 #: ../fish/guestfish-actions.pod:512
22221 #, no-wrap
22222 msgid ""
22223 " blockdev-rereadpt device\n"
22224 "\n"
22225 msgstr ""
22226
22227 #. type: =head2
22228 #: ../fish/guestfish-actions.pod:518
22229 msgid "blockdev-setbsz"
22230 msgstr ""
22231
22232 #. type: verbatim
22233 #: ../fish/guestfish-actions.pod:520
22234 #, no-wrap
22235 msgid ""
22236 " blockdev-setbsz device blocksize\n"
22237 "\n"
22238 msgstr ""
22239
22240 #. type: =head2
22241 #: ../fish/guestfish-actions.pod:529
22242 msgid "blockdev-setro"
22243 msgstr ""
22244
22245 #. type: verbatim
22246 #: ../fish/guestfish-actions.pod:531
22247 #, no-wrap
22248 msgid ""
22249 " blockdev-setro device\n"
22250 "\n"
22251 msgstr ""
22252
22253 #. type: =head2
22254 #: ../fish/guestfish-actions.pod:537
22255 msgid "blockdev-setrw"
22256 msgstr ""
22257
22258 #. type: verbatim
22259 #: ../fish/guestfish-actions.pod:539
22260 #, no-wrap
22261 msgid ""
22262 " blockdev-setrw device\n"
22263 "\n"
22264 msgstr ""
22265
22266 #. type: =head2
22267 #: ../fish/guestfish-actions.pod:545
22268 msgid "case-sensitive-path"
22269 msgstr ""
22270
22271 #. type: verbatim
22272 #: ../fish/guestfish-actions.pod:547
22273 #, no-wrap
22274 msgid ""
22275 " case-sensitive-path path\n"
22276 "\n"
22277 msgstr ""
22278
22279 #. type: textblock
22280 #: ../fish/guestfish-actions.pod:571
22281 msgid ""
22282 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
22283 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
22284 "how the directories were originally created under Windows)."
22285 msgstr ""
22286
22287 #. type: textblock
22288 #: ../fish/guestfish-actions.pod:579
22289 msgid "See also L</realpath>."
22290 msgstr ""
22291
22292 #. type: =head2
22293 #: ../fish/guestfish-actions.pod:581
22294 msgid "cat"
22295 msgstr ""
22296
22297 #. type: verbatim
22298 #: ../fish/guestfish-actions.pod:583
22299 #, no-wrap
22300 msgid ""
22301 " cat path\n"
22302 "\n"
22303 msgstr ""
22304
22305 #. type: textblock
22306 #: ../fish/guestfish-actions.pod:587
22307 msgid ""
22308 "Note that this function cannot correctly handle binary files (specifically, "
22309 "files containing C<\\0> character which is treated as end of string).  For "
22310 "those you need to use the L</read-file> or L</download> functions which have "
22311 "a more complex interface."
22312 msgstr ""
22313
22314 #. type: =head2
22315 #: ../fish/guestfish-actions.pod:595
22316 msgid "checksum"
22317 msgstr ""
22318
22319 #. type: verbatim
22320 #: ../fish/guestfish-actions.pod:597
22321 #, no-wrap
22322 msgid ""
22323 " checksum csumtype path\n"
22324 "\n"
22325 msgstr ""
22326
22327 #. type: textblock
22328 #: ../fish/guestfish-actions.pod:640
22329 msgid "To get the checksum for a device, use L</checksum-device>."
22330 msgstr ""
22331
22332 #. type: textblock
22333 #: ../fish/guestfish-actions.pod:642
22334 msgid "To get the checksums for many files, use L</checksums-out>."
22335 msgstr ""
22336
22337 #. type: =head2
22338 #: ../fish/guestfish-actions.pod:644
22339 msgid "checksum-device"
22340 msgstr ""
22341
22342 #. type: verbatim
22343 #: ../fish/guestfish-actions.pod:646
22344 #, no-wrap
22345 msgid ""
22346 " checksum-device csumtype device\n"
22347 "\n"
22348 msgstr ""
22349
22350 #. type: textblock
22351 #: ../fish/guestfish-actions.pod:648
22352 msgid ""
22353 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22354 "device named C<device>.  For the types of checksums supported see the "
22355 "L</checksum> command."
22356 msgstr ""
22357
22358 #. type: =head2
22359 #: ../fish/guestfish-actions.pod:652
22360 msgid "checksums-out"
22361 msgstr ""
22362
22363 #. type: verbatim
22364 #: ../fish/guestfish-actions.pod:654
22365 #, no-wrap
22366 msgid ""
22367 " checksums-out csumtype directory (sumsfile|-)\n"
22368 "\n"
22369 msgstr ""
22370
22371 #. type: =head2
22372 #: ../fish/guestfish-actions.pod:670
22373 msgid "chmod"
22374 msgstr ""
22375
22376 #. type: verbatim
22377 #: ../fish/guestfish-actions.pod:672
22378 #, no-wrap
22379 msgid ""
22380 " chmod mode path\n"
22381 "\n"
22382 msgstr ""
22383
22384 #. type: =head2
22385 #: ../fish/guestfish-actions.pod:683
22386 msgid "chown"
22387 msgstr ""
22388
22389 #. type: verbatim
22390 #: ../fish/guestfish-actions.pod:685
22391 #, no-wrap
22392 msgid ""
22393 " chown owner group path\n"
22394 "\n"
22395 msgstr ""
22396
22397 #. type: =head2
22398 #: ../fish/guestfish-actions.pod:693
22399 msgid "command"
22400 msgstr ""
22401
22402 #. type: verbatim
22403 #: ../fish/guestfish-actions.pod:695
22404 #, no-wrap
22405 msgid ""
22406 " command 'arguments ...'\n"
22407 "\n"
22408 msgstr ""
22409
22410 #. type: textblock
22411 #: ../fish/guestfish-actions.pod:702
22412 msgid ""
22413 "The single parameter is an argv-style list of arguments.  The first element "
22414 "is the name of the program to run.  Subsequent elements are parameters.  The "
22415 "list must be non-empty (ie. must contain a program name).  Note that the "
22416 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22417 msgstr ""
22418
22419 #. type: =head2
22420 #: ../fish/guestfish-actions.pod:730
22421 msgid "command-lines"
22422 msgstr ""
22423
22424 #. type: verbatim
22425 #: ../fish/guestfish-actions.pod:732
22426 #, no-wrap
22427 msgid ""
22428 " command-lines 'arguments ...'\n"
22429 "\n"
22430 msgstr ""
22431
22432 #. type: textblock
22433 #: ../fish/guestfish-actions.pod:734
22434 msgid "This is the same as L</command>, but splits the result into a list of lines."
22435 msgstr ""
22436
22437 #. type: textblock
22438 #: ../fish/guestfish-actions.pod:737
22439 msgid "See also: L</sh-lines>"
22440 msgstr ""
22441
22442 #. type: =head2
22443 #: ../fish/guestfish-actions.pod:742
22444 msgid "config"
22445 msgstr ""
22446
22447 #. type: verbatim
22448 #: ../fish/guestfish-actions.pod:744
22449 #, no-wrap
22450 msgid ""
22451 " config qemuparam qemuvalue\n"
22452 "\n"
22453 msgstr ""
22454
22455 #. type: =head2
22456 #: ../fish/guestfish-actions.pod:755
22457 msgid "copy-size"
22458 msgstr ""
22459
22460 #. type: verbatim
22461 #: ../fish/guestfish-actions.pod:757
22462 #, no-wrap
22463 msgid ""
22464 " copy-size src dest size\n"
22465 "\n"
22466 msgstr ""
22467
22468 #. type: =head2
22469 #: ../fish/guestfish-actions.pod:765
22470 msgid "cp"
22471 msgstr ""
22472
22473 #. type: verbatim
22474 #: ../fish/guestfish-actions.pod:767
22475 #, no-wrap
22476 msgid ""
22477 " cp src dest\n"
22478 "\n"
22479 msgstr ""
22480
22481 #. type: =head2
22482 #: ../fish/guestfish-actions.pod:772
22483 msgid "cp-a"
22484 msgstr ""
22485
22486 #. type: verbatim
22487 #: ../fish/guestfish-actions.pod:774
22488 #, no-wrap
22489 msgid ""
22490 " cp-a src dest\n"
22491 "\n"
22492 msgstr ""
22493
22494 #. type: =head2
22495 #: ../fish/guestfish-actions.pod:779
22496 msgid "dd"
22497 msgstr ""
22498
22499 #. type: verbatim
22500 #: ../fish/guestfish-actions.pod:781
22501 #, no-wrap
22502 msgid ""
22503 " dd src dest\n"
22504 "\n"
22505 msgstr ""
22506
22507 #. type: textblock
22508 #: ../fish/guestfish-actions.pod:788
22509 msgid ""
22510 "If the destination is a device, it must be as large or larger than the "
22511 "source file or device, otherwise the copy will fail.  This command cannot do "
22512 "partial copies (see L</copy-size>)."
22513 msgstr ""
22514
22515 #. type: =head2
22516 #: ../fish/guestfish-actions.pod:792
22517 msgid "df"
22518 msgstr ""
22519
22520 #. type: verbatim
22521 #: ../fish/guestfish-actions.pod:794
22522 #, no-wrap
22523 msgid ""
22524 " df\n"
22525 "\n"
22526 msgstr ""
22527
22528 #. type: textblock
22529 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
22530 msgid ""
22531 "This command is mostly useful for interactive sessions.  It is I<not> "
22532 "intended that you try to parse the output string.  Use L</statvfs> from "
22533 "programs."
22534 msgstr ""
22535
22536 #. type: =head2
22537 #: ../fish/guestfish-actions.pod:802
22538 msgid "df-h"
22539 msgstr ""
22540
22541 #. type: verbatim
22542 #: ../fish/guestfish-actions.pod:804
22543 #, no-wrap
22544 msgid ""
22545 " df-h\n"
22546 "\n"
22547 msgstr ""
22548
22549 #. type: =head2
22550 #: ../fish/guestfish-actions.pod:813
22551 msgid "dmesg"
22552 msgstr ""
22553
22554 #. type: verbatim
22555 #: ../fish/guestfish-actions.pod:815
22556 #, no-wrap
22557 msgid ""
22558 " dmesg\n"
22559 "\n"
22560 msgstr ""
22561
22562 #. type: textblock
22563 #: ../fish/guestfish-actions.pod:821
22564 msgid ""
22565 "Another way to get the same information is to enable verbose messages with "
22566 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22567 "before running the program."
22568 msgstr ""
22569
22570 #. type: =head2
22571 #: ../fish/guestfish-actions.pod:826
22572 msgid "download"
22573 msgstr ""
22574
22575 #. type: verbatim
22576 #: ../fish/guestfish-actions.pod:828
22577 #, no-wrap
22578 msgid ""
22579 " download remotefilename (filename|-)\n"
22580 "\n"
22581 msgstr ""
22582
22583 #. type: textblock
22584 #: ../fish/guestfish-actions.pod:835
22585 msgid "See also L</upload>, L</cat>."
22586 msgstr ""
22587
22588 #. type: =head2
22589 #: ../fish/guestfish-actions.pod:839
22590 msgid "download-offset"
22591 msgstr ""
22592
22593 #. type: verbatim
22594 #: ../fish/guestfish-actions.pod:841
22595 #, no-wrap
22596 msgid ""
22597 " download-offset remotefilename (filename|-) offset size\n"
22598 "\n"
22599 msgstr ""
22600
22601 #. type: textblock
22602 #: ../fish/guestfish-actions.pod:849
22603 msgid ""
22604 "Note that there is no limit on the amount of data that can be downloaded "
22605 "with this call, unlike with L</pread>, and this call always reads the full "
22606 "amount unless an error occurs."
22607 msgstr ""
22608
22609 #. type: textblock
22610 #: ../fish/guestfish-actions.pod:854
22611 msgid "See also L</download>, L</pread>."
22612 msgstr ""
22613
22614 #. type: =head2
22615 #: ../fish/guestfish-actions.pod:858
22616 msgid "drop-caches"
22617 msgstr ""
22618
22619 #. type: verbatim
22620 #: ../fish/guestfish-actions.pod:860
22621 #, no-wrap
22622 msgid ""
22623 " drop-caches whattodrop\n"
22624 "\n"
22625 msgstr ""
22626
22627 #. type: =head2
22628 #: ../fish/guestfish-actions.pod:872
22629 msgid "du"
22630 msgstr ""
22631
22632 #. type: verbatim
22633 #: ../fish/guestfish-actions.pod:874
22634 #, no-wrap
22635 msgid ""
22636 " du path\n"
22637 "\n"
22638 msgstr ""
22639
22640 #. type: =head2
22641 #: ../fish/guestfish-actions.pod:886
22642 msgid "e2fsck-f"
22643 msgstr ""
22644
22645 #. type: verbatim
22646 #: ../fish/guestfish-actions.pod:888
22647 #, no-wrap
22648 msgid ""
22649 " e2fsck-f device\n"
22650 "\n"
22651 msgstr ""
22652
22653 #. type: textblock
22654 #: ../fish/guestfish-actions.pod:894
22655 msgid ""
22656 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22657 "should use L</fsck>."
22658 msgstr ""
22659
22660 #. type: =head2
22661 #: ../fish/guestfish-actions.pod:897
22662 msgid "echo-daemon"
22663 msgstr ""
22664
22665 #. type: verbatim
22666 #: ../fish/guestfish-actions.pod:899
22667 #, no-wrap
22668 msgid ""
22669 " echo-daemon 'words ...'\n"
22670 "\n"
22671 msgstr ""
22672
22673 #. type: textblock
22674 #: ../fish/guestfish-actions.pod:906
22675 msgid "See also L</ping-daemon>."
22676 msgstr ""
22677
22678 #. type: =head2
22679 #: ../fish/guestfish-actions.pod:908
22680 msgid "egrep"
22681 msgstr ""
22682
22683 #. type: verbatim
22684 #: ../fish/guestfish-actions.pod:910
22685 #, no-wrap
22686 msgid ""
22687 " egrep regex path\n"
22688 "\n"
22689 msgstr ""
22690
22691 #. type: =head2
22692 #: ../fish/guestfish-actions.pod:918
22693 msgid "egrepi"
22694 msgstr ""
22695
22696 #. type: verbatim
22697 #: ../fish/guestfish-actions.pod:920
22698 #, no-wrap
22699 msgid ""
22700 " egrepi regex path\n"
22701 "\n"
22702 msgstr ""
22703
22704 #. type: =head2
22705 #: ../fish/guestfish-actions.pod:928
22706 msgid "equal"
22707 msgstr ""
22708
22709 #. type: verbatim
22710 #: ../fish/guestfish-actions.pod:930
22711 #, no-wrap
22712 msgid ""
22713 " equal file1 file2\n"
22714 "\n"
22715 msgstr ""
22716
22717 #. type: =head2
22718 #: ../fish/guestfish-actions.pod:937
22719 msgid "exists"
22720 msgstr ""
22721
22722 #. type: verbatim
22723 #: ../fish/guestfish-actions.pod:939
22724 #, no-wrap
22725 msgid ""
22726 " exists path\n"
22727 "\n"
22728 msgstr ""
22729
22730 #. type: textblock
22731 #: ../fish/guestfish-actions.pod:944
22732 msgid "See also L</is-file>, L</is-dir>, L</stat>."
22733 msgstr ""
22734
22735 #. type: =head2
22736 #: ../fish/guestfish-actions.pod:946
22737 msgid "fallocate"
22738 msgstr ""
22739
22740 #. type: verbatim
22741 #: ../fish/guestfish-actions.pod:948
22742 #, no-wrap
22743 msgid ""
22744 " fallocate path len\n"
22745 "\n"
22746 msgstr ""
22747
22748 #. type: =head2
22749 #: ../fish/guestfish-actions.pod:965
22750 msgid "fallocate64"
22751 msgstr ""
22752
22753 #. type: verbatim
22754 #: ../fish/guestfish-actions.pod:967
22755 #, no-wrap
22756 msgid ""
22757 " fallocate64 path len\n"
22758 "\n"
22759 msgstr ""
22760
22761 #. type: textblock
22762 #: ../fish/guestfish-actions.pod:973
22763 msgid ""
22764 "Note that this call allocates disk blocks for the file.  To create a sparse "
22765 "file use L</truncate-size> instead."
22766 msgstr ""
22767
22768 #. type: textblock
22769 #: ../fish/guestfish-actions.pod:976
22770 msgid ""
22771 "The deprecated call L</fallocate> does the same, but owing to an oversight "
22772 "it only allowed 30 bit lengths to be specified, effectively limiting the "
22773 "maximum size of files created through that call to 1GB."
22774 msgstr ""
22775
22776 #. type: =head2
22777 #: ../fish/guestfish-actions.pod:985
22778 msgid "fgrep"
22779 msgstr ""
22780
22781 #. type: verbatim
22782 #: ../fish/guestfish-actions.pod:987
22783 #, no-wrap
22784 msgid ""
22785 " fgrep pattern path\n"
22786 "\n"
22787 msgstr ""
22788
22789 #. type: =head2
22790 #: ../fish/guestfish-actions.pod:995
22791 msgid "fgrepi"
22792 msgstr ""
22793
22794 #. type: verbatim
22795 #: ../fish/guestfish-actions.pod:997
22796 #, no-wrap
22797 msgid ""
22798 " fgrepi pattern path\n"
22799 "\n"
22800 msgstr ""
22801
22802 #. type: =head2
22803 #: ../fish/guestfish-actions.pod:1005
22804 msgid "file"
22805 msgstr ""
22806
22807 #. type: verbatim
22808 #: ../fish/guestfish-actions.pod:1007
22809 #, no-wrap
22810 msgid ""
22811 " file path\n"
22812 "\n"
22813 msgstr ""
22814
22815 #. type: textblock
22816 #: ../fish/guestfish-actions.pod:1023
22817 msgid ""
22818 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
22819 "(etc), L</is-zero>."
22820 msgstr ""
22821
22822 #. type: =head2
22823 #: ../fish/guestfish-actions.pod:1026
22824 msgid "file-architecture"
22825 msgstr ""
22826
22827 #. type: verbatim
22828 #: ../fish/guestfish-actions.pod:1028
22829 #, no-wrap
22830 msgid ""
22831 " file-architecture filename\n"
22832 "\n"
22833 msgstr ""
22834
22835 #. type: =head2
22836 #: ../fish/guestfish-actions.pod:1131
22837 msgid "filesize"
22838 msgstr ""
22839
22840 #. type: verbatim
22841 #: ../fish/guestfish-actions.pod:1133
22842 #, no-wrap
22843 msgid ""
22844 " filesize file\n"
22845 "\n"
22846 msgstr ""
22847
22848 #. type: textblock
22849 #: ../fish/guestfish-actions.pod:1137
22850 msgid ""
22851 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
22852 "L</is-file> etc.  To get the size of block devices, use "
22853 "L</blockdev-getsize64>."
22854 msgstr ""
22855
22856 #. type: =head2
22857 #: ../fish/guestfish-actions.pod:1141
22858 msgid "fill"
22859 msgstr ""
22860
22861 #. type: verbatim
22862 #: ../fish/guestfish-actions.pod:1143
22863 #, no-wrap
22864 msgid ""
22865 " fill c len path\n"
22866 "\n"
22867 msgstr ""
22868
22869 #. type: textblock
22870 #: ../fish/guestfish-actions.pod:1149
22871 msgid ""
22872 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
22873 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
22874 "L</fill-pattern>."
22875 msgstr ""
22876
22877 #. type: =head2
22878 #: ../fish/guestfish-actions.pod:1154
22879 msgid "fill-pattern"
22880 msgstr ""
22881
22882 #. type: verbatim
22883 #: ../fish/guestfish-actions.pod:1156
22884 #, no-wrap
22885 msgid ""
22886 " fill-pattern pattern len path\n"
22887 "\n"
22888 msgstr ""
22889
22890 #. type: textblock
22891 #: ../fish/guestfish-actions.pod:1158
22892 msgid ""
22893 "This function is like L</fill> except that it creates a new file of length "
22894 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
22895 "is truncated if necessary to ensure the length of the file is exactly C<len> "
22896 "bytes."
22897 msgstr ""
22898
22899 #. type: =head2
22900 #: ../fish/guestfish-actions.pod:1163
22901 msgid "find"
22902 msgstr ""
22903
22904 #. type: verbatim
22905 #: ../fish/guestfish-actions.pod:1165
22906 #, no-wrap
22907 msgid ""
22908 " find directory\n"
22909 "\n"
22910 msgstr ""
22911
22912 #. type: textblock
22913 #: ../fish/guestfish-actions.pod:1179
22914 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
22915 msgstr ""
22916
22917 #. type: textblock
22918 #: ../fish/guestfish-actions.pod:1192
22919 msgid "See also L</find0>."
22920 msgstr ""
22921
22922 #. type: =head2
22923 #: ../fish/guestfish-actions.pod:1197
22924 msgid "find0"
22925 msgstr ""
22926
22927 #. type: verbatim
22928 #: ../fish/guestfish-actions.pod:1199
22929 #, no-wrap
22930 msgid ""
22931 " find0 directory (files|-)\n"
22932 "\n"
22933 msgstr ""
22934
22935 #. type: textblock
22936 #: ../fish/guestfish-actions.pod:1205
22937 msgid "This command works the same way as L</find> with the following exceptions:"
22938 msgstr ""
22939
22940 #. type: =head2
22941 #: ../fish/guestfish-actions.pod:1232
22942 msgid "findfs-label"
22943 msgstr ""
22944
22945 #. type: verbatim
22946 #: ../fish/guestfish-actions.pod:1234
22947 #, no-wrap
22948 msgid ""
22949 " findfs-label label\n"
22950 "\n"
22951 msgstr ""
22952
22953 #. type: textblock
22954 #: ../fish/guestfish-actions.pod:1240
22955 msgid "To find the label of a filesystem, use L</vfs-label>."
22956 msgstr ""
22957
22958 #. type: =head2
22959 #: ../fish/guestfish-actions.pod:1242
22960 msgid "findfs-uuid"
22961 msgstr ""
22962
22963 #. type: verbatim
22964 #: ../fish/guestfish-actions.pod:1244
22965 #, no-wrap
22966 msgid ""
22967 " findfs-uuid uuid\n"
22968 "\n"
22969 msgstr ""
22970
22971 #. type: textblock
22972 #: ../fish/guestfish-actions.pod:1250
22973 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
22974 msgstr ""
22975
22976 #. type: =head2
22977 #: ../fish/guestfish-actions.pod:1252
22978 msgid "fsck"
22979 msgstr ""
22980
22981 #. type: verbatim
22982 #: ../fish/guestfish-actions.pod:1254
22983 #, no-wrap
22984 msgid ""
22985 " fsck fstype device\n"
22986 "\n"
22987 msgstr ""
22988
22989 #. type: =head2
22990 #: ../fish/guestfish-actions.pod:1284
22991 msgid "get-append"
22992 msgstr ""
22993
22994 #. type: verbatim
22995 #: ../fish/guestfish-actions.pod:1286
22996 #, no-wrap
22997 msgid ""
22998 " get-append\n"
22999 "\n"
23000 msgstr ""
23001
23002 #. type: =head2
23003 #: ../fish/guestfish-actions.pod:1293
23004 msgid "get-attach-method"
23005 msgstr ""
23006
23007 #. type: verbatim
23008 #: ../fish/guestfish-actions.pod:1295
23009 #, no-wrap
23010 msgid ""
23011 " get-attach-method\n"
23012 "\n"
23013 msgstr ""
23014
23015 #. type: textblock
23016 #: ../fish/guestfish-actions.pod:1297
23017 msgid "Return the current attach method.  See L</set-attach-method>."
23018 msgstr ""
23019
23020 #. type: =head2
23021 #: ../fish/guestfish-actions.pod:1299
23022 msgid "get-autosync"
23023 msgstr ""
23024
23025 #. type: verbatim
23026 #: ../fish/guestfish-actions.pod:1301
23027 #, no-wrap
23028 msgid ""
23029 " get-autosync\n"
23030 "\n"
23031 msgstr ""
23032
23033 #. type: =head2
23034 #: ../fish/guestfish-actions.pod:1305
23035 msgid "get-direct"
23036 msgstr ""
23037
23038 #. type: verbatim
23039 #: ../fish/guestfish-actions.pod:1307
23040 #, no-wrap
23041 msgid ""
23042 " get-direct\n"
23043 "\n"
23044 msgstr ""
23045
23046 #. type: =head2
23047 #: ../fish/guestfish-actions.pod:1311
23048 msgid "get-e2label"
23049 msgstr ""
23050
23051 #. type: verbatim
23052 #: ../fish/guestfish-actions.pod:1313
23053 #, no-wrap
23054 msgid ""
23055 " get-e2label device\n"
23056 "\n"
23057 msgstr ""
23058
23059 #. type: =head2
23060 #: ../fish/guestfish-actions.pod:1325
23061 msgid "get-e2uuid"
23062 msgstr ""
23063
23064 #. type: verbatim
23065 #: ../fish/guestfish-actions.pod:1327
23066 #, no-wrap
23067 msgid ""
23068 " get-e2uuid device\n"
23069 "\n"
23070 msgstr ""
23071
23072 #. type: =head2
23073 #: ../fish/guestfish-actions.pod:1339
23074 msgid "get-memsize"
23075 msgstr ""
23076
23077 #. type: verbatim
23078 #: ../fish/guestfish-actions.pod:1341
23079 #, no-wrap
23080 msgid ""
23081 " get-memsize\n"
23082 "\n"
23083 msgstr ""
23084
23085 #. type: textblock
23086 #: ../fish/guestfish-actions.pod:1346
23087 msgid ""
23088 "If L</set-memsize> was not called on this handle, and if "
23089 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23090 "value for memsize."
23091 msgstr ""
23092
23093 #. type: =head2
23094 #: ../fish/guestfish-actions.pod:1353
23095 msgid "get-network"
23096 msgstr ""
23097
23098 #. type: verbatim
23099 #: ../fish/guestfish-actions.pod:1355
23100 #, no-wrap
23101 msgid ""
23102 " get-network\n"
23103 "\n"
23104 msgstr ""
23105
23106 #. type: =head2
23107 #: ../fish/guestfish-actions.pod:1359
23108 msgid "get-path"
23109 msgstr ""
23110
23111 #. type: verbatim
23112 #: ../fish/guestfish-actions.pod:1361
23113 #, no-wrap
23114 msgid ""
23115 " get-path\n"
23116 "\n"
23117 msgstr ""
23118
23119 #. type: =head2
23120 #: ../fish/guestfish-actions.pod:1368
23121 msgid "get-pid"
23122 msgstr ""
23123
23124 #. type: =head2
23125 #: ../fish/guestfish-actions.pod:1370
23126 msgid "pid"
23127 msgstr ""
23128
23129 #. type: verbatim
23130 #: ../fish/guestfish-actions.pod:1372
23131 #, no-wrap
23132 msgid ""
23133 " get-pid\n"
23134 "\n"
23135 msgstr ""
23136
23137 #. type: =head2
23138 #: ../fish/guestfish-actions.pod:1379
23139 msgid "get-qemu"
23140 msgstr ""
23141
23142 #. type: verbatim
23143 #: ../fish/guestfish-actions.pod:1381
23144 #, no-wrap
23145 msgid ""
23146 " get-qemu\n"
23147 "\n"
23148 msgstr ""
23149
23150 #. type: =head2
23151 #: ../fish/guestfish-actions.pod:1388
23152 msgid "get-recovery-proc"
23153 msgstr ""
23154
23155 #. type: verbatim
23156 #: ../fish/guestfish-actions.pod:1390
23157 #, no-wrap
23158 msgid ""
23159 " get-recovery-proc\n"
23160 "\n"
23161 msgstr ""
23162
23163 #. type: =head2
23164 #: ../fish/guestfish-actions.pod:1394
23165 msgid "get-selinux"
23166 msgstr ""
23167
23168 #. type: verbatim
23169 #: ../fish/guestfish-actions.pod:1396
23170 #, no-wrap
23171 msgid ""
23172 " get-selinux\n"
23173 "\n"
23174 msgstr ""
23175
23176 #. type: textblock
23177 #: ../fish/guestfish-actions.pod:1398
23178 msgid ""
23179 "This returns the current setting of the selinux flag which is passed to the "
23180 "appliance at boot time.  See L</set-selinux>."
23181 msgstr ""
23182
23183 #. type: =head2
23184 #: ../fish/guestfish-actions.pod:1404
23185 msgid "get-state"
23186 msgstr ""
23187
23188 #. type: verbatim
23189 #: ../fish/guestfish-actions.pod:1406
23190 #, no-wrap
23191 msgid ""
23192 " get-state\n"
23193 "\n"
23194 msgstr ""
23195
23196 #. type: =head2
23197 #: ../fish/guestfish-actions.pod:1413
23198 msgid "get-trace"
23199 msgstr ""
23200
23201 #. type: verbatim
23202 #: ../fish/guestfish-actions.pod:1415
23203 #, no-wrap
23204 msgid ""
23205 " get-trace\n"
23206 "\n"
23207 msgstr ""
23208
23209 #. type: =head2
23210 #: ../fish/guestfish-actions.pod:1419
23211 msgid "get-umask"
23212 msgstr ""
23213
23214 #. type: verbatim
23215 #: ../fish/guestfish-actions.pod:1421
23216 #, no-wrap
23217 msgid ""
23218 " get-umask\n"
23219 "\n"
23220 msgstr ""
23221
23222 #. type: textblock
23223 #: ../fish/guestfish-actions.pod:1423
23224 msgid ""
23225 "Return the current umask.  By default the umask is C<022> unless it has been "
23226 "set by calling L</umask>."
23227 msgstr ""
23228
23229 #. type: =head2
23230 #: ../fish/guestfish-actions.pod:1426
23231 msgid "get-verbose"
23232 msgstr ""
23233
23234 #. type: verbatim
23235 #: ../fish/guestfish-actions.pod:1428
23236 #, no-wrap
23237 msgid ""
23238 " get-verbose\n"
23239 "\n"
23240 msgstr ""
23241
23242 #. type: =head2
23243 #: ../fish/guestfish-actions.pod:1432
23244 msgid "getcon"
23245 msgstr ""
23246
23247 #. type: verbatim
23248 #: ../fish/guestfish-actions.pod:1434
23249 #, no-wrap
23250 msgid ""
23251 " getcon\n"
23252 "\n"
23253 msgstr ""
23254
23255 #. type: textblock
23256 #: ../fish/guestfish-actions.pod:1438
23257 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23258 msgstr ""
23259
23260 #. type: =head2
23261 #: ../fish/guestfish-actions.pod:1441
23262 msgid "getxattr"
23263 msgstr ""
23264
23265 #. type: verbatim
23266 #: ../fish/guestfish-actions.pod:1443
23267 #, no-wrap
23268 msgid ""
23269 " getxattr path name\n"
23270 "\n"
23271 msgstr ""
23272
23273 #. type: textblock
23274 #: ../fish/guestfish-actions.pod:1445
23275 msgid ""
23276 "Get a single extended attribute from file C<path> named C<name>.  This call "
23277 "follows symlinks.  If you want to lookup an extended attribute for the "
23278 "symlink itself, use L</lgetxattr>."
23279 msgstr ""
23280
23281 #. type: textblock
23282 #: ../fish/guestfish-actions.pod:1449 ../fish/guestfish-actions.pod:2476
23283 msgid ""
23284 "Normally it is better to get all extended attributes from a file in one go "
23285 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23286 "buggy and do not provide a way to list out attributes.  For these "
23287 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23288 "attributes you want in advance and call this function."
23289 msgstr ""
23290
23291 #. type: textblock
23292 #: ../fish/guestfish-actions.pod:1459
23293 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23294 msgstr ""
23295
23296 #. type: =head2
23297 #: ../fish/guestfish-actions.pod:1461
23298 msgid "getxattrs"
23299 msgstr ""
23300
23301 #. type: verbatim
23302 #: ../fish/guestfish-actions.pod:1463
23303 #, no-wrap
23304 msgid ""
23305 " getxattrs path\n"
23306 "\n"
23307 msgstr ""
23308
23309 #. type: textblock
23310 #: ../fish/guestfish-actions.pod:1471
23311 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23312 msgstr ""
23313
23314 #. type: =head2
23315 #: ../fish/guestfish-actions.pod:1473
23316 msgid "glob-expand"
23317 msgstr ""
23318
23319 #. type: verbatim
23320 #: ../fish/guestfish-actions.pod:1475
23321 #, no-wrap
23322 msgid ""
23323 " glob-expand pattern\n"
23324 "\n"
23325 msgstr ""
23326
23327 #. type: =head2
23328 #: ../fish/guestfish-actions.pod:1488
23329 msgid "grep"
23330 msgstr ""
23331
23332 #. type: verbatim
23333 #: ../fish/guestfish-actions.pod:1490
23334 #, no-wrap
23335 msgid ""
23336 " grep regex path\n"
23337 "\n"
23338 msgstr ""
23339
23340 #. type: =head2
23341 #: ../fish/guestfish-actions.pod:1498
23342 msgid "grepi"
23343 msgstr ""
23344
23345 #. type: verbatim
23346 #: ../fish/guestfish-actions.pod:1500
23347 #, no-wrap
23348 msgid ""
23349 " grepi regex path\n"
23350 "\n"
23351 msgstr ""
23352
23353 #. type: =head2
23354 #: ../fish/guestfish-actions.pod:1508
23355 msgid "grub-install"
23356 msgstr ""
23357
23358 #. type: verbatim
23359 #: ../fish/guestfish-actions.pod:1510
23360 #, no-wrap
23361 msgid ""
23362 " grub-install root device\n"
23363 "\n"
23364 msgstr ""
23365
23366 #. type: =head2
23367 #: ../fish/guestfish-actions.pod:1526
23368 msgid "head"
23369 msgstr ""
23370
23371 #. type: verbatim
23372 #: ../fish/guestfish-actions.pod:1528
23373 #, no-wrap
23374 msgid ""
23375 " head path\n"
23376 "\n"
23377 msgstr ""
23378
23379 #. type: =head2
23380 #: ../fish/guestfish-actions.pod:1536
23381 msgid "head-n"
23382 msgstr ""
23383
23384 #. type: verbatim
23385 #: ../fish/guestfish-actions.pod:1538
23386 #, no-wrap
23387 msgid ""
23388 " head-n nrlines path\n"
23389 "\n"
23390 msgstr ""
23391
23392 #. type: =head2
23393 #: ../fish/guestfish-actions.pod:1551
23394 msgid "hexdump"
23395 msgstr ""
23396
23397 #. type: verbatim
23398 #: ../fish/guestfish-actions.pod:1553
23399 #, no-wrap
23400 msgid ""
23401 " hexdump path\n"
23402 "\n"
23403 msgstr ""
23404
23405 #. type: =head2
23406 #: ../fish/guestfish-actions.pod:1561
23407 msgid "initrd-cat"
23408 msgstr ""
23409
23410 #. type: verbatim
23411 #: ../fish/guestfish-actions.pod:1563
23412 #, no-wrap
23413 msgid ""
23414 " initrd-cat initrdpath filename\n"
23415 "\n"
23416 msgstr ""
23417
23418 #. type: textblock
23419 #: ../fish/guestfish-actions.pod:1575
23420 msgid "See also L</initrd-list>."
23421 msgstr ""
23422
23423 #. type: =head2
23424 #: ../fish/guestfish-actions.pod:1580
23425 msgid "initrd-list"
23426 msgstr ""
23427
23428 #. type: verbatim
23429 #: ../fish/guestfish-actions.pod:1582
23430 #, no-wrap
23431 msgid ""
23432 " initrd-list path\n"
23433 "\n"
23434 msgstr ""
23435
23436 #. type: =head2
23437 #: ../fish/guestfish-actions.pod:1594
23438 msgid "inotify-add-watch"
23439 msgstr ""
23440
23441 #. type: verbatim
23442 #: ../fish/guestfish-actions.pod:1596
23443 #, no-wrap
23444 msgid ""
23445 " inotify-add-watch path mask\n"
23446 "\n"
23447 msgstr ""
23448
23449 #. type: =head2
23450 #: ../fish/guestfish-actions.pod:1608
23451 msgid "inotify-close"
23452 msgstr ""
23453
23454 #. type: verbatim
23455 #: ../fish/guestfish-actions.pod:1610
23456 #, no-wrap
23457 msgid ""
23458 " inotify-close\n"
23459 "\n"
23460 msgstr ""
23461
23462 #. type: =head2
23463 #: ../fish/guestfish-actions.pod:1616
23464 msgid "inotify-files"
23465 msgstr ""
23466
23467 #. type: verbatim
23468 #: ../fish/guestfish-actions.pod:1618
23469 #, no-wrap
23470 msgid ""
23471 " inotify-files\n"
23472 "\n"
23473 msgstr ""
23474
23475 #. type: textblock
23476 #: ../fish/guestfish-actions.pod:1620
23477 msgid ""
23478 "This function is a helpful wrapper around L</inotify-read> which just "
23479 "returns a list of pathnames of objects that were touched.  The returned "
23480 "pathnames are sorted and deduplicated."
23481 msgstr ""
23482
23483 #. type: =head2
23484 #: ../fish/guestfish-actions.pod:1624
23485 msgid "inotify-init"
23486 msgstr ""
23487
23488 #. type: verbatim
23489 #: ../fish/guestfish-actions.pod:1626
23490 #, no-wrap
23491 msgid ""
23492 " inotify-init maxevents\n"
23493 "\n"
23494 msgstr ""
23495
23496 #. type: textblock
23497 #: ../fish/guestfish-actions.pod:1632
23498 msgid ""
23499 "C<maxevents> is the maximum number of events which will be queued up between "
23500 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23501 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23502 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23503 "but records the fact that it threw them away by setting a flag "
23504 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23505 msgstr ""
23506
23507 #. type: textblock
23508 #: ../fish/guestfish-actions.pod:1642
23509 msgid ""
23510 "Before any events are generated, you have to add some watches to the "
23511 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23512 "L</inotify-watch-all>."
23513 msgstr ""
23514
23515 #. type: textblock
23516 #: ../fish/guestfish-actions.pod:1648
23517 msgid ""
23518 "Queued up events should be read periodically by calling L</inotify-read> (or "
23519 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23520 "If you don't read the events out often enough then you risk the internal "
23521 "queue overflowing."
23522 msgstr ""
23523
23524 #. type: textblock
23525 #: ../fish/guestfish-actions.pod:1655
23526 msgid ""
23527 "The handle should be closed after use by calling L</inotify-close>.  This "
23528 "also removes any watches automatically."
23529 msgstr ""
23530
23531 #. type: =head2
23532 #: ../fish/guestfish-actions.pod:1664
23533 msgid "inotify-read"
23534 msgstr ""
23535
23536 #. type: verbatim
23537 #: ../fish/guestfish-actions.pod:1666
23538 #, no-wrap
23539 msgid ""
23540 " inotify-read\n"
23541 "\n"
23542 msgstr ""
23543
23544 #. type: =head2
23545 #: ../fish/guestfish-actions.pod:1679
23546 msgid "inotify-rm-watch"
23547 msgstr ""
23548
23549 #. type: verbatim
23550 #: ../fish/guestfish-actions.pod:1681
23551 #, no-wrap
23552 msgid ""
23553 " inotify-rm-watch wd\n"
23554 "\n"
23555 msgstr ""
23556
23557 #. type: textblock
23558 #: ../fish/guestfish-actions.pod:1683
23559 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23560 msgstr ""
23561
23562 #. type: =head2
23563 #: ../fish/guestfish-actions.pod:1686
23564 msgid "inspect-get-arch"
23565 msgstr ""
23566
23567 #. type: verbatim
23568 #: ../fish/guestfish-actions.pod:1688
23569 #, no-wrap
23570 msgid ""
23571 " inspect-get-arch root\n"
23572 "\n"
23573 msgstr ""
23574
23575 #. type: textblock
23576 #: ../fish/guestfish-actions.pod:1690
23577 msgid ""
23578 "This returns the architecture of the inspected operating system.  The "
23579 "possible return values are listed under L</file-architecture>."
23580 msgstr ""
23581
23582 #. type: =head2
23583 #: ../fish/guestfish-actions.pod:1699
23584 msgid "inspect-get-distro"
23585 msgstr ""
23586
23587 #. type: verbatim
23588 #: ../fish/guestfish-actions.pod:1701
23589 #, no-wrap
23590 msgid ""
23591 " inspect-get-distro root\n"
23592 "\n"
23593 msgstr ""
23594
23595 #. type: =head2
23596 #: ../fish/guestfish-actions.pod:1782
23597 msgid "inspect-get-drive-mappings"
23598 msgstr ""
23599
23600 #. type: verbatim
23601 #: ../fish/guestfish-actions.pod:1784
23602 #, no-wrap
23603 msgid ""
23604 " inspect-get-drive-mappings root\n"
23605 "\n"
23606 msgstr ""
23607
23608 #. type: textblock
23609 #: ../fish/guestfish-actions.pod:1811
23610 msgid ""
23611 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23612 "L</inspect-get-mountpoints>, L</inspect-get-filesystems>."
23613 msgstr ""
23614
23615 #. type: =head2
23616 #: ../fish/guestfish-actions.pod:1815
23617 msgid "inspect-get-filesystems"
23618 msgstr ""
23619
23620 #. type: verbatim
23621 #: ../fish/guestfish-actions.pod:1817
23622 #, no-wrap
23623 msgid ""
23624 " inspect-get-filesystems root\n"
23625 "\n"
23626 msgstr ""
23627
23628 #. type: textblock
23629 #: ../fish/guestfish-actions.pod:1827
23630 msgid ""
23631 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23632 "L</inspect-get-mountpoints>."
23633 msgstr ""
23634
23635 #. type: =head2
23636 #: ../fish/guestfish-actions.pod:1830
23637 msgid "inspect-get-format"
23638 msgstr ""
23639
23640 #. type: verbatim
23641 #: ../fish/guestfish-actions.pod:1832
23642 #, no-wrap
23643 msgid ""
23644 " inspect-get-format root\n"
23645 "\n"
23646 msgstr ""
23647
23648 #. type: =head2
23649 #: ../fish/guestfish-actions.pod:1861
23650 msgid "inspect-get-hostname"
23651 msgstr ""
23652
23653 #. type: verbatim
23654 #: ../fish/guestfish-actions.pod:1863
23655 #, no-wrap
23656 msgid ""
23657 " inspect-get-hostname root\n"
23658 "\n"
23659 msgstr ""
23660
23661 #. type: =head2
23662 #: ../fish/guestfish-actions.pod:1873
23663 msgid "inspect-get-icon"
23664 msgstr ""
23665
23666 #. type: verbatim
23667 #: ../fish/guestfish-actions.pod:1875
23668 #, no-wrap
23669 msgid ""
23670 " inspect-get-icon root [favicon:..] [highquality:..]\n"
23671 "\n"
23672 msgstr ""
23673
23674 #. type: =head2
23675 #: ../fish/guestfish-actions.pod:1939
23676 msgid "inspect-get-major-version"
23677 msgstr ""
23678
23679 #. type: verbatim
23680 #: ../fish/guestfish-actions.pod:1941
23681 #, no-wrap
23682 msgid ""
23683 " inspect-get-major-version root\n"
23684 "\n"
23685 msgstr ""
23686
23687 #. type: =head2
23688 #: ../fish/guestfish-actions.pod:1957
23689 msgid "inspect-get-minor-version"
23690 msgstr ""
23691
23692 #. type: verbatim
23693 #: ../fish/guestfish-actions.pod:1959
23694 #, no-wrap
23695 msgid ""
23696 " inspect-get-minor-version root\n"
23697 "\n"
23698 msgstr ""
23699
23700 #. type: textblock
23701 #: ../fish/guestfish-actions.pod:1966
23702 msgid ""
23703 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23704 "L</inspect-get-major-version>."
23705 msgstr ""
23706
23707 #. type: =head2
23708 #: ../fish/guestfish-actions.pod:1969
23709 msgid "inspect-get-mountpoints"
23710 msgstr ""
23711
23712 #. type: verbatim
23713 #: ../fish/guestfish-actions.pod:1971
23714 #, no-wrap
23715 msgid ""
23716 " inspect-get-mountpoints root\n"
23717 "\n"
23718 msgstr ""
23719
23720 #. type: textblock
23721 #: ../fish/guestfish-actions.pod:1990
23722 msgid ""
23723 "For operating systems like Windows which still use drive letters, this call "
23724 "will only return an entry for the first drive \"mounted on\" C</>.  For "
23725 "information about the mapping of drive letters to partitions, see "
23726 "L</inspect-get-drive-mappings>."
23727 msgstr ""
23728
23729 #. type: textblock
23730 #: ../fish/guestfish-actions.pod:1996
23731 msgid ""
23732 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23733 "L</inspect-get-filesystems>."
23734 msgstr ""
23735
23736 #. type: =head2
23737 #: ../fish/guestfish-actions.pod:1999
23738 msgid "inspect-get-package-format"
23739 msgstr ""
23740
23741 #. type: verbatim
23742 #: ../fish/guestfish-actions.pod:2001
23743 #, no-wrap
23744 msgid ""
23745 " inspect-get-package-format root\n"
23746 "\n"
23747 msgstr ""
23748
23749 #. type: textblock
23750 #: ../fish/guestfish-actions.pod:2003
23751 msgid ""
23752 "This function and L</inspect-get-package-management> return the package "
23753 "format and package management tool used by the inspected operating system.  "
23754 "For example for Fedora these functions would return C<rpm> (package format) "
23755 "and C<yum> (package management)."
23756 msgstr ""
23757
23758 #. type: =head2
23759 #: ../fish/guestfish-actions.pod:2018
23760 msgid "inspect-get-package-management"
23761 msgstr ""
23762
23763 #. type: verbatim
23764 #: ../fish/guestfish-actions.pod:2020
23765 #, no-wrap
23766 msgid ""
23767 " inspect-get-package-management root\n"
23768 "\n"
23769 msgstr ""
23770
23771 #. type: textblock
23772 #: ../fish/guestfish-actions.pod:2022
23773 msgid ""
23774 "L</inspect-get-package-format> and this function return the package format "
23775 "and package management tool used by the inspected operating system.  For "
23776 "example for Fedora these functions would return C<rpm> (package format) and "
23777 "C<yum> (package management)."
23778 msgstr ""
23779
23780 #. type: =head2
23781 #: ../fish/guestfish-actions.pod:2039
23782 msgid "inspect-get-product-name"
23783 msgstr ""
23784
23785 #. type: verbatim
23786 #: ../fish/guestfish-actions.pod:2041
23787 #, no-wrap
23788 msgid ""
23789 " inspect-get-product-name root\n"
23790 "\n"
23791 msgstr ""
23792
23793 #. type: =head2
23794 #: ../fish/guestfish-actions.pod:2053
23795 msgid "inspect-get-product-variant"
23796 msgstr ""
23797
23798 #. type: verbatim
23799 #: ../fish/guestfish-actions.pod:2055
23800 #, no-wrap
23801 msgid ""
23802 " inspect-get-product-variant root\n"
23803 "\n"
23804 msgstr ""
23805
23806 #. type: textblock
23807 #: ../fish/guestfish-actions.pod:2076
23808 msgid ""
23809 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23810 "L</inspect-get-product-name>, L</inspect-get-major-version>."
23811 msgstr ""
23812
23813 #. type: =head2
23814 #: ../fish/guestfish-actions.pod:2080
23815 msgid "inspect-get-roots"
23816 msgstr ""
23817
23818 #. type: verbatim
23819 #: ../fish/guestfish-actions.pod:2082
23820 #, no-wrap
23821 msgid ""
23822 " inspect-get-roots\n"
23823 "\n"
23824 msgstr ""
23825
23826 #. type: textblock
23827 #: ../fish/guestfish-actions.pod:2084
23828 msgid ""
23829 "This function is a convenient way to get the list of root devices, as "
23830 "returned from a previous call to L</inspect-os>, but without redoing the "
23831 "whole inspection process."
23832 msgstr ""
23833
23834 #. type: textblock
23835 #: ../fish/guestfish-actions.pod:2088
23836 msgid ""
23837 "This returns an empty list if either no root devices were found or the "
23838 "caller has not called L</inspect-os>."
23839 msgstr ""
23840
23841 #. type: =head2
23842 #: ../fish/guestfish-actions.pod:2093
23843 msgid "inspect-get-type"
23844 msgstr ""
23845
23846 #. type: verbatim
23847 #: ../fish/guestfish-actions.pod:2095
23848 #, no-wrap
23849 msgid ""
23850 " inspect-get-type root\n"
23851 "\n"
23852 msgstr ""
23853
23854 #. type: =head2
23855 #: ../fish/guestfish-actions.pod:2125
23856 msgid "inspect-get-windows-current-control-set"
23857 msgstr ""
23858
23859 #. type: verbatim
23860 #: ../fish/guestfish-actions.pod:2127
23861 #, no-wrap
23862 msgid ""
23863 " inspect-get-windows-current-control-set root\n"
23864 "\n"
23865 msgstr ""
23866
23867 #. type: =head2
23868 #: ../fish/guestfish-actions.pod:2138
23869 msgid "inspect-get-windows-systemroot"
23870 msgstr ""
23871
23872 #. type: verbatim
23873 #: ../fish/guestfish-actions.pod:2140
23874 #, no-wrap
23875 msgid ""
23876 " inspect-get-windows-systemroot root\n"
23877 "\n"
23878 msgstr ""
23879
23880 #. type: =head2
23881 #: ../fish/guestfish-actions.pod:2151
23882 msgid "inspect-is-live"
23883 msgstr ""
23884
23885 #. type: verbatim
23886 #: ../fish/guestfish-actions.pod:2153
23887 #, no-wrap
23888 msgid ""
23889 " inspect-is-live root\n"
23890 "\n"
23891 msgstr ""
23892
23893 #. type: textblock
23894 #: ../fish/guestfish-actions.pod:2155
23895 msgid ""
23896 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23897 "then this returns true if a live image was detected on the disk."
23898 msgstr ""
23899
23900 #. type: =head2
23901 #: ../fish/guestfish-actions.pod:2161
23902 msgid "inspect-is-multipart"
23903 msgstr ""
23904
23905 #. type: verbatim
23906 #: ../fish/guestfish-actions.pod:2163
23907 #, no-wrap
23908 msgid ""
23909 " inspect-is-multipart root\n"
23910 "\n"
23911 msgstr ""
23912
23913 #. type: textblock
23914 #: ../fish/guestfish-actions.pod:2165
23915 msgid ""
23916 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23917 "then this returns true if the disk is part of a set."
23918 msgstr ""
23919
23920 #. type: =head2
23921 #: ../fish/guestfish-actions.pod:2171
23922 msgid "inspect-is-netinst"
23923 msgstr ""
23924
23925 #. type: verbatim
23926 #: ../fish/guestfish-actions.pod:2173
23927 #, no-wrap
23928 msgid ""
23929 " inspect-is-netinst root\n"
23930 "\n"
23931 msgstr ""
23932
23933 #. type: textblock
23934 #: ../fish/guestfish-actions.pod:2175
23935 msgid ""
23936 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23937 "then this returns true if the disk is a network installer, ie. not a "
23938 "self-contained install CD but one which is likely to require network access "
23939 "to complete the install."
23940 msgstr ""
23941
23942 #. type: =head2
23943 #: ../fish/guestfish-actions.pod:2183
23944 msgid "inspect-list-applications"
23945 msgstr ""
23946
23947 #. type: verbatim
23948 #: ../fish/guestfish-actions.pod:2185
23949 #, no-wrap
23950 msgid ""
23951 " inspect-list-applications root\n"
23952 "\n"
23953 msgstr ""
23954
23955 #. type: textblock
23956 #: ../fish/guestfish-actions.pod:2189
23957 msgid ""
23958 "I<Note:> This call works differently from other parts of the inspection "
23959 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
23960 "then mount up the disks, before calling this.  Listing applications is a "
23961 "significantly more difficult operation which requires access to the full "
23962 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
23963 "are just returning data cached in the libguestfs handle, this call actually "
23964 "reads parts of the mounted filesystems during the call."
23965 msgstr ""
23966
23967 #. type: =head2
23968 #: ../fish/guestfish-actions.pod:2279
23969 msgid "inspect-os"
23970 msgstr ""
23971
23972 #. type: verbatim
23973 #: ../fish/guestfish-actions.pod:2281
23974 #, no-wrap
23975 msgid ""
23976 " inspect-os\n"
23977 "\n"
23978 msgstr ""
23979
23980 #. type: textblock
23981 #: ../fish/guestfish-actions.pod:2296
23982 msgid ""
23983 "You can pass the root string(s) returned to other L</inspect-get-*> "
23984 "functions in order to query further information about each operating system, "
23985 "such as the name and version."
23986 msgstr ""
23987
23988 #. type: textblock
23989 #: ../fish/guestfish-actions.pod:2301
23990 msgid ""
23991 "This function uses other libguestfs features such as L</mount-ro> and "
23992 "L</umount-all> in order to mount and unmount filesystems and look at the "
23993 "contents.  This should be called with no disks currently mounted.  The "
23994 "function may also use Augeas, so any existing Augeas handle will be closed."
23995 msgstr ""
23996
23997 #. type: textblock
23998 #: ../fish/guestfish-actions.pod:2313 ../fish/guestfish-actions.pod:2511 ../fish/guestfish-actions.pod:2557
23999 msgid "See also L</list-filesystems>."
24000 msgstr ""
24001
24002 #. type: =head2
24003 #: ../fish/guestfish-actions.pod:2315
24004 msgid "is-blockdev"
24005 msgstr ""
24006
24007 #. type: verbatim
24008 #: ../fish/guestfish-actions.pod:2317
24009 #, no-wrap
24010 msgid ""
24011 " is-blockdev path\n"
24012 "\n"
24013 msgstr ""
24014
24015 #. type: textblock
24016 #: ../fish/guestfish-actions.pod:2322 ../fish/guestfish-actions.pod:2340 ../fish/guestfish-actions.pod:2359 ../fish/guestfish-actions.pod:2368 ../fish/guestfish-actions.pod:2378 ../fish/guestfish-actions.pod:2412 ../fish/guestfish-actions.pod:2421
24017 msgid "See also L</stat>."
24018 msgstr ""
24019
24020 #. type: =head2
24021 #: ../fish/guestfish-actions.pod:2324
24022 msgid "is-busy"
24023 msgstr ""
24024
24025 #. type: verbatim
24026 #: ../fish/guestfish-actions.pod:2326
24027 #, no-wrap
24028 msgid ""
24029 " is-busy\n"
24030 "\n"
24031 msgstr ""
24032
24033 #. type: =head2
24034 #: ../fish/guestfish-actions.pod:2333
24035 msgid "is-chardev"
24036 msgstr ""
24037
24038 #. type: verbatim
24039 #: ../fish/guestfish-actions.pod:2335
24040 #, no-wrap
24041 msgid ""
24042 " is-chardev path\n"
24043 "\n"
24044 msgstr ""
24045
24046 #. type: =head2
24047 #: ../fish/guestfish-actions.pod:2342
24048 msgid "is-config"
24049 msgstr ""
24050
24051 #. type: verbatim
24052 #: ../fish/guestfish-actions.pod:2344
24053 #, no-wrap
24054 msgid ""
24055 " is-config\n"
24056 "\n"
24057 msgstr ""
24058
24059 #. type: =head2
24060 #: ../fish/guestfish-actions.pod:2351
24061 msgid "is-dir"
24062 msgstr ""
24063
24064 #. type: verbatim
24065 #: ../fish/guestfish-actions.pod:2353
24066 #, no-wrap
24067 msgid ""
24068 " is-dir path\n"
24069 "\n"
24070 msgstr ""
24071
24072 #. type: =head2
24073 #: ../fish/guestfish-actions.pod:2361
24074 msgid "is-fifo"
24075 msgstr ""
24076
24077 #. type: verbatim
24078 #: ../fish/guestfish-actions.pod:2363
24079 #, no-wrap
24080 msgid ""
24081 " is-fifo path\n"
24082 "\n"
24083 msgstr ""
24084
24085 #. type: =head2
24086 #: ../fish/guestfish-actions.pod:2370
24087 msgid "is-file"
24088 msgstr ""
24089
24090 #. type: verbatim
24091 #: ../fish/guestfish-actions.pod:2372
24092 #, no-wrap
24093 msgid ""
24094 " is-file path\n"
24095 "\n"
24096 msgstr ""
24097
24098 #. type: =head2
24099 #: ../fish/guestfish-actions.pod:2380
24100 msgid "is-launching"
24101 msgstr ""
24102
24103 #. type: verbatim
24104 #: ../fish/guestfish-actions.pod:2382
24105 #, no-wrap
24106 msgid ""
24107 " is-launching\n"
24108 "\n"
24109 msgstr ""
24110
24111 #. type: =head2
24112 #: ../fish/guestfish-actions.pod:2389
24113 msgid "is-lv"
24114 msgstr ""
24115
24116 #. type: verbatim
24117 #: ../fish/guestfish-actions.pod:2391
24118 #, no-wrap
24119 msgid ""
24120 " is-lv device\n"
24121 "\n"
24122 msgstr ""
24123
24124 #. type: =head2
24125 #: ../fish/guestfish-actions.pod:2396
24126 msgid "is-ready"
24127 msgstr ""
24128
24129 #. type: verbatim
24130 #: ../fish/guestfish-actions.pod:2398
24131 #, no-wrap
24132 msgid ""
24133 " is-ready\n"
24134 "\n"
24135 msgstr ""
24136
24137 #. type: =head2
24138 #: ../fish/guestfish-actions.pod:2405
24139 msgid "is-socket"
24140 msgstr ""
24141
24142 #. type: verbatim
24143 #: ../fish/guestfish-actions.pod:2407
24144 #, no-wrap
24145 msgid ""
24146 " is-socket path\n"
24147 "\n"
24148 msgstr ""
24149
24150 #. type: =head2
24151 #: ../fish/guestfish-actions.pod:2414
24152 msgid "is-symlink"
24153 msgstr ""
24154
24155 #. type: verbatim
24156 #: ../fish/guestfish-actions.pod:2416
24157 #, no-wrap
24158 msgid ""
24159 " is-symlink path\n"
24160 "\n"
24161 msgstr ""
24162
24163 #. type: =head2
24164 #: ../fish/guestfish-actions.pod:2423
24165 msgid "is-zero"
24166 msgstr ""
24167
24168 #. type: verbatim
24169 #: ../fish/guestfish-actions.pod:2425
24170 #, no-wrap
24171 msgid ""
24172 " is-zero path\n"
24173 "\n"
24174 msgstr ""
24175
24176 #. type: =head2
24177 #: ../fish/guestfish-actions.pod:2430
24178 msgid "is-zero-device"
24179 msgstr ""
24180
24181 #. type: verbatim
24182 #: ../fish/guestfish-actions.pod:2432
24183 #, no-wrap
24184 msgid ""
24185 " is-zero-device device\n"
24186 "\n"
24187 msgstr ""
24188
24189 #. type: =head2
24190 #: ../fish/guestfish-actions.pod:2438
24191 msgid "kill-subprocess"
24192 msgstr ""
24193
24194 #. type: verbatim
24195 #: ../fish/guestfish-actions.pod:2440
24196 #, no-wrap
24197 msgid ""
24198 " kill-subprocess\n"
24199 "\n"
24200 msgstr ""
24201
24202 #. type: =head2
24203 #: ../fish/guestfish-actions.pod:2444
24204 msgid "launch"
24205 msgstr ""
24206
24207 #. type: =head2
24208 #: ../fish/guestfish-actions.pod:2446
24209 msgid "run"
24210 msgstr ""
24211
24212 #. type: verbatim
24213 #: ../fish/guestfish-actions.pod:2448
24214 #, no-wrap
24215 msgid ""
24216 " launch\n"
24217 "\n"
24218 msgstr ""
24219
24220 #. type: =head2
24221 #: ../fish/guestfish-actions.pod:2456
24222 msgid "lchown"
24223 msgstr ""
24224
24225 #. type: verbatim
24226 #: ../fish/guestfish-actions.pod:2458
24227 #, no-wrap
24228 msgid ""
24229 " lchown owner group path\n"
24230 "\n"
24231 msgstr ""
24232
24233 #. type: textblock
24234 #: ../fish/guestfish-actions.pod:2460
24235 msgid ""
24236 "Change the file owner to C<owner> and group to C<group>.  This is like "
24237 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
24238 "the target."
24239 msgstr ""
24240
24241 #. type: =head2
24242 #: ../fish/guestfish-actions.pod:2468
24243 msgid "lgetxattr"
24244 msgstr ""
24245
24246 #. type: verbatim
24247 #: ../fish/guestfish-actions.pod:2470
24248 #, no-wrap
24249 msgid ""
24250 " lgetxattr path name\n"
24251 "\n"
24252 msgstr ""
24253
24254 #. type: textblock
24255 #: ../fish/guestfish-actions.pod:2486
24256 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24257 msgstr ""
24258
24259 #. type: =head2
24260 #: ../fish/guestfish-actions.pod:2488
24261 msgid "lgetxattrs"
24262 msgstr ""
24263
24264 #. type: verbatim
24265 #: ../fish/guestfish-actions.pod:2490
24266 #, no-wrap
24267 msgid ""
24268 " lgetxattrs path\n"
24269 "\n"
24270 msgstr ""
24271
24272 #. type: textblock
24273 #: ../fish/guestfish-actions.pod:2492
24274 msgid ""
24275 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24276 "it returns the extended attributes of the link itself."
24277 msgstr ""
24278
24279 #. type: =head2
24280 #: ../fish/guestfish-actions.pod:2496
24281 msgid "list-9p"
24282 msgstr ""
24283
24284 #. type: verbatim
24285 #: ../fish/guestfish-actions.pod:2498
24286 #, no-wrap
24287 msgid ""
24288 " list-9p\n"
24289 "\n"
24290 msgstr ""
24291
24292 #. type: =head2
24293 #: ../fish/guestfish-actions.pod:2503
24294 msgid "list-devices"
24295 msgstr ""
24296
24297 #. type: verbatim
24298 #: ../fish/guestfish-actions.pod:2505
24299 #, no-wrap
24300 msgid ""
24301 " list-devices\n"
24302 "\n"
24303 msgstr ""
24304
24305 #. type: =head2
24306 #: ../fish/guestfish-actions.pod:2513
24307 msgid "list-filesystems"
24308 msgstr ""
24309
24310 #. type: verbatim
24311 #: ../fish/guestfish-actions.pod:2515
24312 #, no-wrap
24313 msgid ""
24314 " list-filesystems\n"
24315 "\n"
24316 msgstr ""
24317
24318 #. type: textblock
24319 #: ../fish/guestfish-actions.pod:2534
24320 msgid ""
24321 "This command runs other libguestfs commands, which might include L</mount> "
24322 "and L</umount>, and therefore you should use this soon after launch and only "
24323 "when nothing is mounted."
24324 msgstr ""
24325
24326 #. type: textblock
24327 #: ../fish/guestfish-actions.pod:2538
24328 msgid ""
24329 "Not all of the filesystems returned will be mountable.  In particular, swap "
24330 "partitions are returned in the list.  Also this command does not check that "
24331 "each filesystem found is valid and mountable, and some filesystems might be "
24332 "mountable but require special options.  Filesystems may not all belong to a "
24333 "single logical operating system (use L</inspect-os> to look for OSes)."
24334 msgstr ""
24335
24336 #. type: =head2
24337 #: ../fish/guestfish-actions.pod:2546
24338 msgid "list-partitions"
24339 msgstr ""
24340
24341 #. type: verbatim
24342 #: ../fish/guestfish-actions.pod:2548
24343 #, no-wrap
24344 msgid ""
24345 " list-partitions\n"
24346 "\n"
24347 msgstr ""
24348
24349 #. type: textblock
24350 #: ../fish/guestfish-actions.pod:2554
24351 msgid ""
24352 "This does not return logical volumes.  For that you will need to call "
24353 "L</lvs>."
24354 msgstr ""
24355
24356 #. type: =head2
24357 #: ../fish/guestfish-actions.pod:2559
24358 msgid "ll"
24359 msgstr ""
24360
24361 #. type: verbatim
24362 #: ../fish/guestfish-actions.pod:2561
24363 #, no-wrap
24364 msgid ""
24365 " ll directory\n"
24366 "\n"
24367 msgstr ""
24368
24369 #. type: =head2
24370 #: ../fish/guestfish-actions.pod:2569
24371 msgid "ln"
24372 msgstr ""
24373
24374 #. type: verbatim
24375 #: ../fish/guestfish-actions.pod:2571
24376 #, no-wrap
24377 msgid ""
24378 " ln target linkname\n"
24379 "\n"
24380 msgstr ""
24381
24382 #. type: =head2
24383 #: ../fish/guestfish-actions.pod:2575
24384 msgid "ln-f"
24385 msgstr ""
24386
24387 #. type: verbatim
24388 #: ../fish/guestfish-actions.pod:2577
24389 #, no-wrap
24390 msgid ""
24391 " ln-f target linkname\n"
24392 "\n"
24393 msgstr ""
24394
24395 #. type: =head2
24396 #: ../fish/guestfish-actions.pod:2582
24397 msgid "ln-s"
24398 msgstr ""
24399
24400 #. type: verbatim
24401 #: ../fish/guestfish-actions.pod:2584
24402 #, no-wrap
24403 msgid ""
24404 " ln-s target linkname\n"
24405 "\n"
24406 msgstr ""
24407
24408 #. type: =head2
24409 #: ../fish/guestfish-actions.pod:2588
24410 msgid "ln-sf"
24411 msgstr ""
24412
24413 #. type: verbatim
24414 #: ../fish/guestfish-actions.pod:2590
24415 #, no-wrap
24416 msgid ""
24417 " ln-sf target linkname\n"
24418 "\n"
24419 msgstr ""
24420
24421 #. type: =head2
24422 #: ../fish/guestfish-actions.pod:2595
24423 msgid "lremovexattr"
24424 msgstr ""
24425
24426 #. type: verbatim
24427 #: ../fish/guestfish-actions.pod:2597
24428 #, no-wrap
24429 msgid ""
24430 " lremovexattr xattr path\n"
24431 "\n"
24432 msgstr ""
24433
24434 #. type: textblock
24435 #: ../fish/guestfish-actions.pod:2599
24436 msgid ""
24437 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24438 "it removes an extended attribute of the link itself."
24439 msgstr ""
24440
24441 #. type: =head2
24442 #: ../fish/guestfish-actions.pod:2603
24443 msgid "ls"
24444 msgstr ""
24445
24446 #. type: verbatim
24447 #: ../fish/guestfish-actions.pod:2605
24448 #, no-wrap
24449 msgid ""
24450 " ls directory\n"
24451 "\n"
24452 msgstr ""
24453
24454 #. type: textblock
24455 #: ../fish/guestfish-actions.pod:2611
24456 msgid ""
24457 "This command is mostly useful for interactive sessions.  Programs should "
24458 "probably use L</readdir> instead."
24459 msgstr ""
24460
24461 #. type: =head2
24462 #: ../fish/guestfish-actions.pod:2614
24463 msgid "lsetxattr"
24464 msgstr ""
24465
24466 #. type: verbatim
24467 #: ../fish/guestfish-actions.pod:2616
24468 #, no-wrap
24469 msgid ""
24470 " lsetxattr xattr val vallen path\n"
24471 "\n"
24472 msgstr ""
24473
24474 #. type: textblock
24475 #: ../fish/guestfish-actions.pod:2618
24476 msgid ""
24477 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24478 "sets an extended attribute of the link itself."
24479 msgstr ""
24480
24481 #. type: =head2
24482 #: ../fish/guestfish-actions.pod:2622
24483 msgid "lstat"
24484 msgstr ""
24485
24486 #. type: verbatim
24487 #: ../fish/guestfish-actions.pod:2624
24488 #, no-wrap
24489 msgid ""
24490 " lstat path\n"
24491 "\n"
24492 msgstr ""
24493
24494 #. type: textblock
24495 #: ../fish/guestfish-actions.pod:2628
24496 msgid ""
24497 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24498 "the link is stat-ed, not the file it refers to."
24499 msgstr ""
24500
24501 #. type: =head2
24502 #: ../fish/guestfish-actions.pod:2634
24503 msgid "lstatlist"
24504 msgstr ""
24505
24506 #. type: verbatim
24507 #: ../fish/guestfish-actions.pod:2636
24508 #, no-wrap
24509 msgid ""
24510 " lstatlist path 'names ...'\n"
24511 "\n"
24512 msgstr ""
24513
24514 #. type: textblock
24515 #: ../fish/guestfish-actions.pod:2638
24516 msgid ""
24517 "This call allows you to perform the L</lstat> operation on multiple files, "
24518 "where all files are in the directory C<path>.  C<names> is the list of files "
24519 "from this directory."
24520 msgstr ""
24521
24522 #. type: textblock
24523 #: ../fish/guestfish-actions.pod:2647
24524 msgid ""
24525 "This call is intended for programs that want to efficiently list a directory "
24526 "contents without making many round-trips.  See also L</lxattrlist> for a "
24527 "similarly efficient call for getting extended attributes.  Very long "
24528 "directory listings might cause the protocol message size to be exceeded, "
24529 "causing this call to fail.  The caller must split up such requests into "
24530 "smaller groups of names."
24531 msgstr ""
24532
24533 #. type: =head2
24534 #: ../fish/guestfish-actions.pod:2655
24535 msgid "luks-add-key"
24536 msgstr ""
24537
24538 #. type: verbatim
24539 #: ../fish/guestfish-actions.pod:2657
24540 #, no-wrap
24541 msgid ""
24542 " luks-add-key device keyslot\n"
24543 "\n"
24544 msgstr ""
24545
24546 #. type: textblock
24547 #: ../fish/guestfish-actions.pod:2664
24548 msgid ""
24549 "Note that if C<keyslot> already contains a key, then this command will "
24550 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24551 msgstr ""
24552
24553 #. type: textblock
24554 #: ../fish/guestfish-actions.pod:2668 ../fish/guestfish-actions.pod:2690 ../fish/guestfish-actions.pod:2703 ../fish/guestfish-actions.pod:2717 ../fish/guestfish-actions.pod:2740 ../fish/guestfish-actions.pod:2750
24555 msgid ""
24556 "This command has one or more key or passphrase parameters.  Guestfish will "
24557 "prompt for these separately."
24558 msgstr ""
24559
24560 #. type: =head2
24561 #: ../fish/guestfish-actions.pod:2671
24562 msgid "luks-close"
24563 msgstr ""
24564
24565 #. type: verbatim
24566 #: ../fish/guestfish-actions.pod:2673
24567 #, no-wrap
24568 msgid ""
24569 " luks-close device\n"
24570 "\n"
24571 msgstr ""
24572
24573 #. type: textblock
24574 #: ../fish/guestfish-actions.pod:2675
24575 msgid ""
24576 "This closes a LUKS device that was created earlier by L</luks-open> or "
24577 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
24578 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
24579 "underlying block device."
24580 msgstr ""
24581
24582 #. type: =head2
24583 #: ../fish/guestfish-actions.pod:2681
24584 msgid "luks-format"
24585 msgstr ""
24586
24587 #. type: verbatim
24588 #: ../fish/guestfish-actions.pod:2683
24589 #, no-wrap
24590 msgid ""
24591 " luks-format device keyslot\n"
24592 "\n"
24593 msgstr ""
24594
24595 #. type: =head2
24596 #: ../fish/guestfish-actions.pod:2696
24597 msgid "luks-format-cipher"
24598 msgstr ""
24599
24600 #. type: verbatim
24601 #: ../fish/guestfish-actions.pod:2698
24602 #, no-wrap
24603 msgid ""
24604 " luks-format-cipher device keyslot cipher\n"
24605 "\n"
24606 msgstr ""
24607
24608 #. type: textblock
24609 #: ../fish/guestfish-actions.pod:2700
24610 msgid ""
24611 "This command is the same as L</luks-format> but it also allows you to set "
24612 "the C<cipher> used."
24613 msgstr ""
24614
24615 #. type: =head2
24616 #: ../fish/guestfish-actions.pod:2709
24617 msgid "luks-kill-slot"
24618 msgstr ""
24619
24620 #. type: verbatim
24621 #: ../fish/guestfish-actions.pod:2711
24622 #, no-wrap
24623 msgid ""
24624 " luks-kill-slot device keyslot\n"
24625 "\n"
24626 msgstr ""
24627
24628 #. type: =head2
24629 #: ../fish/guestfish-actions.pod:2720
24630 msgid "luks-open"
24631 msgstr ""
24632
24633 #. type: verbatim
24634 #: ../fish/guestfish-actions.pod:2722
24635 #, no-wrap
24636 msgid ""
24637 " luks-open device mapname\n"
24638 "\n"
24639 msgstr ""
24640
24641 #. type: textblock
24642 #: ../fish/guestfish-actions.pod:2736
24643 msgid ""
24644 "If this block device contains LVM volume groups, then calling L</vgscan> "
24645 "followed by L</vg-activate-all> will make them visible."
24646 msgstr ""
24647
24648 #. type: =head2
24649 #: ../fish/guestfish-actions.pod:2743
24650 msgid "luks-open-ro"
24651 msgstr ""
24652
24653 #. type: verbatim
24654 #: ../fish/guestfish-actions.pod:2745
24655 #, no-wrap
24656 msgid ""
24657 " luks-open-ro device mapname\n"
24658 "\n"
24659 msgstr ""
24660
24661 #. type: textblock
24662 #: ../fish/guestfish-actions.pod:2747
24663 msgid ""
24664 "This is the same as L</luks-open> except that a read-only mapping is "
24665 "created."
24666 msgstr ""
24667
24668 #. type: =head2
24669 #: ../fish/guestfish-actions.pod:2753
24670 msgid "lvcreate"
24671 msgstr ""
24672
24673 #. type: verbatim
24674 #: ../fish/guestfish-actions.pod:2755
24675 #, no-wrap
24676 msgid ""
24677 " lvcreate logvol volgroup mbytes\n"
24678 "\n"
24679 msgstr ""
24680
24681 #. type: =head2
24682 #: ../fish/guestfish-actions.pod:2760
24683 msgid "lvm-canonical-lv-name"
24684 msgstr ""
24685
24686 #. type: verbatim
24687 #: ../fish/guestfish-actions.pod:2762
24688 #, no-wrap
24689 msgid ""
24690 " lvm-canonical-lv-name lvname\n"
24691 "\n"
24692 msgstr ""
24693
24694 #. type: textblock
24695 #: ../fish/guestfish-actions.pod:2771
24696 msgid "See also L</is-lv>."
24697 msgstr ""
24698
24699 #. type: =head2
24700 #: ../fish/guestfish-actions.pod:2773
24701 msgid "lvm-clear-filter"
24702 msgstr ""
24703
24704 #. type: verbatim
24705 #: ../fish/guestfish-actions.pod:2775
24706 #, no-wrap
24707 msgid ""
24708 " lvm-clear-filter\n"
24709 "\n"
24710 msgstr ""
24711
24712 #. type: textblock
24713 #: ../fish/guestfish-actions.pod:2777
24714 msgid ""
24715 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24716 "block device."
24717 msgstr ""
24718
24719 #. type: =head2
24720 #: ../fish/guestfish-actions.pod:2783
24721 msgid "lvm-remove-all"
24722 msgstr ""
24723
24724 #. type: verbatim
24725 #: ../fish/guestfish-actions.pod:2785
24726 #, no-wrap
24727 msgid ""
24728 " lvm-remove-all\n"
24729 "\n"
24730 msgstr ""
24731
24732 #. type: =head2
24733 #: ../fish/guestfish-actions.pod:2793
24734 msgid "lvm-set-filter"
24735 msgstr ""
24736
24737 #. type: verbatim
24738 #: ../fish/guestfish-actions.pod:2795
24739 #, no-wrap
24740 msgid ""
24741 " lvm-set-filter 'devices ...'\n"
24742 "\n"
24743 msgstr ""
24744
24745 #. type: =head2
24746 #: ../fish/guestfish-actions.pod:2820
24747 msgid "lvremove"
24748 msgstr ""
24749
24750 #. type: verbatim
24751 #: ../fish/guestfish-actions.pod:2822
24752 #, no-wrap
24753 msgid ""
24754 " lvremove device\n"
24755 "\n"
24756 msgstr ""
24757
24758 #. type: =head2
24759 #: ../fish/guestfish-actions.pod:2830
24760 msgid "lvrename"
24761 msgstr ""
24762
24763 #. type: verbatim
24764 #: ../fish/guestfish-actions.pod:2832
24765 #, no-wrap
24766 msgid ""
24767 " lvrename logvol newlogvol\n"
24768 "\n"
24769 msgstr ""
24770
24771 #. type: =head2
24772 #: ../fish/guestfish-actions.pod:2836
24773 msgid "lvresize"
24774 msgstr ""
24775
24776 #. type: verbatim
24777 #: ../fish/guestfish-actions.pod:2838
24778 #, no-wrap
24779 msgid ""
24780 " lvresize device mbytes\n"
24781 "\n"
24782 msgstr ""
24783
24784 #. type: =head2
24785 #: ../fish/guestfish-actions.pod:2844
24786 msgid "lvresize-free"
24787 msgstr ""
24788
24789 #. type: verbatim
24790 #: ../fish/guestfish-actions.pod:2846
24791 #, no-wrap
24792 msgid ""
24793 " lvresize-free lv percent\n"
24794 "\n"
24795 msgstr ""
24796
24797 #. type: =head2
24798 #: ../fish/guestfish-actions.pod:2854
24799 msgid "lvs"
24800 msgstr ""
24801
24802 #. type: verbatim
24803 #: ../fish/guestfish-actions.pod:2856
24804 #, no-wrap
24805 msgid ""
24806 " lvs\n"
24807 "\n"
24808 msgstr ""
24809
24810 #. type: textblock
24811 #: ../fish/guestfish-actions.pod:2864
24812 msgid "See also L</lvs-full>, L</list-filesystems>."
24813 msgstr ""
24814
24815 #. type: =head2
24816 #: ../fish/guestfish-actions.pod:2866
24817 msgid "lvs-full"
24818 msgstr ""
24819
24820 #. type: verbatim
24821 #: ../fish/guestfish-actions.pod:2868
24822 #, no-wrap
24823 msgid ""
24824 " lvs-full\n"
24825 "\n"
24826 msgstr ""
24827
24828 #. type: =head2
24829 #: ../fish/guestfish-actions.pod:2873
24830 msgid "lvuuid"
24831 msgstr ""
24832
24833 #. type: verbatim
24834 #: ../fish/guestfish-actions.pod:2875
24835 #, no-wrap
24836 msgid ""
24837 " lvuuid device\n"
24838 "\n"
24839 msgstr ""
24840
24841 #. type: =head2
24842 #: ../fish/guestfish-actions.pod:2879
24843 msgid "lxattrlist"
24844 msgstr ""
24845
24846 #. type: verbatim
24847 #: ../fish/guestfish-actions.pod:2881
24848 #, no-wrap
24849 msgid ""
24850 " lxattrlist path 'names ...'\n"
24851 "\n"
24852 msgstr ""
24853
24854 #. type: textblock
24855 #: ../fish/guestfish-actions.pod:2897
24856 msgid ""
24857 "This call is intended for programs that want to efficiently list a directory "
24858 "contents without making many round-trips.  See also L</lstatlist> for a "
24859 "similarly efficient call for getting standard stats.  Very long directory "
24860 "listings might cause the protocol message size to be exceeded, causing this "
24861 "call to fail.  The caller must split up such requests into smaller groups of "
24862 "names."
24863 msgstr ""
24864
24865 #. type: =head2
24866 #: ../fish/guestfish-actions.pod:2905
24867 msgid "mkdir"
24868 msgstr ""
24869
24870 #. type: verbatim
24871 #: ../fish/guestfish-actions.pod:2907
24872 #, no-wrap
24873 msgid ""
24874 " mkdir path\n"
24875 "\n"
24876 msgstr ""
24877
24878 #. type: =head2
24879 #: ../fish/guestfish-actions.pod:2911
24880 msgid "mkdir-mode"
24881 msgstr ""
24882
24883 #. type: verbatim
24884 #: ../fish/guestfish-actions.pod:2913
24885 #, no-wrap
24886 msgid ""
24887 " mkdir-mode path mode\n"
24888 "\n"
24889 msgstr ""
24890
24891 #. type: textblock
24892 #: ../fish/guestfish-actions.pod:2922
24893 msgid "See also L</mkdir>, L</umask>"
24894 msgstr ""
24895
24896 #. type: =head2
24897 #: ../fish/guestfish-actions.pod:2924
24898 msgid "mkdir-p"
24899 msgstr ""
24900
24901 #. type: verbatim
24902 #: ../fish/guestfish-actions.pod:2926
24903 #, no-wrap
24904 msgid ""
24905 " mkdir-p path\n"
24906 "\n"
24907 msgstr ""
24908
24909 #. type: =head2
24910 #: ../fish/guestfish-actions.pod:2931
24911 msgid "mkdtemp"
24912 msgstr ""
24913
24914 #. type: verbatim
24915 #: ../fish/guestfish-actions.pod:2933
24916 #, no-wrap
24917 msgid ""
24918 " mkdtemp template\n"
24919 "\n"
24920 msgstr ""
24921
24922 #. type: =head2
24923 #: ../fish/guestfish-actions.pod:2954
24924 msgid "mke2fs-J"
24925 msgstr ""
24926
24927 #. type: verbatim
24928 #: ../fish/guestfish-actions.pod:2956
24929 #, no-wrap
24930 msgid ""
24931 " mke2fs-J fstype blocksize device journal\n"
24932 "\n"
24933 msgstr ""
24934
24935 #. type: textblock
24936 #: ../fish/guestfish-actions.pod:2964
24937 msgid "See also L</mke2journal>."
24938 msgstr ""
24939
24940 #. type: =head2
24941 #: ../fish/guestfish-actions.pod:2966
24942 msgid "mke2fs-JL"
24943 msgstr ""
24944
24945 #. type: verbatim
24946 #: ../fish/guestfish-actions.pod:2968
24947 #, no-wrap
24948 msgid ""
24949 " mke2fs-JL fstype blocksize device label\n"
24950 "\n"
24951 msgstr ""
24952
24953 #. type: textblock
24954 #: ../fish/guestfish-actions.pod:2973
24955 msgid "See also L</mke2journal-L>."
24956 msgstr ""
24957
24958 #. type: =head2
24959 #: ../fish/guestfish-actions.pod:2975
24960 msgid "mke2fs-JU"
24961 msgstr ""
24962
24963 #. type: verbatim
24964 #: ../fish/guestfish-actions.pod:2977
24965 #, no-wrap
24966 msgid ""
24967 " mke2fs-JU fstype blocksize device uuid\n"
24968 "\n"
24969 msgstr ""
24970
24971 #. type: textblock
24972 #: ../fish/guestfish-actions.pod:2982
24973 msgid "See also L</mke2journal-U>."
24974 msgstr ""
24975
24976 #. type: =head2
24977 #: ../fish/guestfish-actions.pod:2984
24978 msgid "mke2journal"
24979 msgstr ""
24980
24981 #. type: verbatim
24982 #: ../fish/guestfish-actions.pod:2986
24983 #, no-wrap
24984 msgid ""
24985 " mke2journal blocksize device\n"
24986 "\n"
24987 msgstr ""
24988
24989 #. type: =head2
24990 #: ../fish/guestfish-actions.pod:2993
24991 msgid "mke2journal-L"
24992 msgstr ""
24993
24994 #. type: verbatim
24995 #: ../fish/guestfish-actions.pod:2995
24996 #, no-wrap
24997 msgid ""
24998 " mke2journal-L blocksize label device\n"
24999 "\n"
25000 msgstr ""
25001
25002 #. type: =head2
25003 #: ../fish/guestfish-actions.pod:2999
25004 msgid "mke2journal-U"
25005 msgstr ""
25006
25007 #. type: verbatim
25008 #: ../fish/guestfish-actions.pod:3001
25009 #, no-wrap
25010 msgid ""
25011 " mke2journal-U blocksize uuid device\n"
25012 "\n"
25013 msgstr ""
25014
25015 #. type: =head2
25016 #: ../fish/guestfish-actions.pod:3005
25017 msgid "mkfifo"
25018 msgstr ""
25019
25020 #. type: verbatim
25021 #: ../fish/guestfish-actions.pod:3007
25022 #, no-wrap
25023 msgid ""
25024 " mkfifo mode path\n"
25025 "\n"
25026 msgstr ""
25027
25028 #. type: textblock
25029 #: ../fish/guestfish-actions.pod:3009
25030 msgid ""
25031 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25032 "is just a convenient wrapper around L</mknod>."
25033 msgstr ""
25034
25035 #. type: =head2
25036 #: ../fish/guestfish-actions.pod:3015
25037 msgid "mkfs"
25038 msgstr ""
25039
25040 #. type: verbatim
25041 #: ../fish/guestfish-actions.pod:3017
25042 #, no-wrap
25043 msgid ""
25044 " mkfs fstype device\n"
25045 "\n"
25046 msgstr ""
25047
25048 #. type: =head2
25049 #: ../fish/guestfish-actions.pod:3023
25050 msgid "mkfs-b"
25051 msgstr ""
25052
25053 #. type: verbatim
25054 #: ../fish/guestfish-actions.pod:3025
25055 #, no-wrap
25056 msgid ""
25057 " mkfs-b fstype blocksize device\n"
25058 "\n"
25059 msgstr ""
25060
25061 #. type: textblock
25062 #: ../fish/guestfish-actions.pod:3027
25063 msgid ""
25064 "This call is similar to L</mkfs>, but it allows you to control the block "
25065 "size of the resulting filesystem.  Supported block sizes depend on the "
25066 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25067 msgstr ""
25068
25069 #. type: =head2
25070 #: ../fish/guestfish-actions.pod:3042
25071 msgid "mkfs-opts"
25072 msgstr ""
25073
25074 #. type: verbatim
25075 #: ../fish/guestfish-actions.pod:3044
25076 #, no-wrap
25077 msgid ""
25078 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
25079 "\n"
25080 msgstr ""
25081
25082 #. type: =head2
25083 #: ../fish/guestfish-actions.pod:3079
25084 msgid "mkmountpoint"
25085 msgstr ""
25086
25087 #. type: verbatim
25088 #: ../fish/guestfish-actions.pod:3081
25089 #, no-wrap
25090 msgid ""
25091 " mkmountpoint exemptpath\n"
25092 "\n"
25093 msgstr ""
25094
25095 #. type: textblock
25096 #: ../fish/guestfish-actions.pod:3083
25097 msgid ""
25098 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25099 "to create extra mountpoints before mounting the first filesystem."
25100 msgstr ""
25101
25102 #. type: textblock
25103 #: ../fish/guestfish-actions.pod:3107
25104 msgid ""
25105 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25106 "unexpected errors if you try to mix these calls.  It is safest to manually "
25107 "unmount filesystems and remove mountpoints after use."
25108 msgstr ""
25109
25110 #. type: textblock
25111 #: ../fish/guestfish-actions.pod:3111
25112 msgid ""
25113 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25114 "for this to work for manual mountpoints, you must ensure that the innermost "
25115 "mountpoints have the longest pathnames, as in the example code above."
25116 msgstr ""
25117
25118 #. type: textblock
25119 #: ../fish/guestfish-actions.pod:3118
25120 msgid ""
25121 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25122 "L</umount-all> to be called when the handle is closed which can also trigger "
25123 "these issues."
25124 msgstr ""
25125
25126 #. type: =head2
25127 #: ../fish/guestfish-actions.pod:3122
25128 msgid "mknod"
25129 msgstr ""
25130
25131 #. type: verbatim
25132 #: ../fish/guestfish-actions.pod:3124
25133 #, no-wrap
25134 msgid ""
25135 " mknod mode devmajor devminor path\n"
25136 "\n"
25137 msgstr ""
25138
25139 #. type: textblock
25140 #: ../fish/guestfish-actions.pod:3134
25141 msgid ""
25142 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25143 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25144 "regular file).  These constants are available in the standard Linux header "
25145 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25146 "wrappers around this command which bitwise OR in the appropriate constant "
25147 "for you."
25148 msgstr ""
25149
25150 #. type: =head2
25151 #: ../fish/guestfish-actions.pod:3144
25152 msgid "mknod-b"
25153 msgstr ""
25154
25155 #. type: verbatim
25156 #: ../fish/guestfish-actions.pod:3146
25157 #, no-wrap
25158 msgid ""
25159 " mknod-b mode devmajor devminor path\n"
25160 "\n"
25161 msgstr ""
25162
25163 #. type: textblock
25164 #: ../fish/guestfish-actions.pod:3148
25165 msgid ""
25166 "This call creates a block device node called C<path> with mode C<mode> and "
25167 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25168 "wrapper around L</mknod>."
25169 msgstr ""
25170
25171 #. type: =head2
25172 #: ../fish/guestfish-actions.pod:3154
25173 msgid "mknod-c"
25174 msgstr ""
25175
25176 #. type: verbatim
25177 #: ../fish/guestfish-actions.pod:3156
25178 #, no-wrap
25179 msgid ""
25180 " mknod-c mode devmajor devminor path\n"
25181 "\n"
25182 msgstr ""
25183
25184 #. type: textblock
25185 #: ../fish/guestfish-actions.pod:3158
25186 msgid ""
25187 "This call creates a char device node called C<path> with mode C<mode> and "
25188 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25189 "wrapper around L</mknod>."
25190 msgstr ""
25191
25192 #. type: =head2
25193 #: ../fish/guestfish-actions.pod:3164
25194 msgid "mkswap"
25195 msgstr ""
25196
25197 #. type: verbatim
25198 #: ../fish/guestfish-actions.pod:3166
25199 #, no-wrap
25200 msgid ""
25201 " mkswap device\n"
25202 "\n"
25203 msgstr ""
25204
25205 #. type: =head2
25206 #: ../fish/guestfish-actions.pod:3170
25207 msgid "mkswap-L"
25208 msgstr ""
25209
25210 #. type: verbatim
25211 #: ../fish/guestfish-actions.pod:3172
25212 #, no-wrap
25213 msgid ""
25214 " mkswap-L label device\n"
25215 "\n"
25216 msgstr ""
25217
25218 #. type: =head2
25219 #: ../fish/guestfish-actions.pod:3180
25220 msgid "mkswap-U"
25221 msgstr ""
25222
25223 #. type: verbatim
25224 #: ../fish/guestfish-actions.pod:3182
25225 #, no-wrap
25226 msgid ""
25227 " mkswap-U uuid device\n"
25228 "\n"
25229 msgstr ""
25230
25231 #. type: =head2
25232 #: ../fish/guestfish-actions.pod:3186
25233 msgid "mkswap-file"
25234 msgstr ""
25235
25236 #. type: verbatim
25237 #: ../fish/guestfish-actions.pod:3188
25238 #, no-wrap
25239 msgid ""
25240 " mkswap-file path\n"
25241 "\n"
25242 msgstr ""
25243
25244 #. type: textblock
25245 #: ../fish/guestfish-actions.pod:3192
25246 msgid ""
25247 "This command just writes a swap file signature to an existing file.  To "
25248 "create the file itself, use something like L</fallocate>."
25249 msgstr ""
25250
25251 #. type: =head2
25252 #: ../fish/guestfish-actions.pod:3195
25253 msgid "modprobe"
25254 msgstr ""
25255
25256 #. type: verbatim
25257 #: ../fish/guestfish-actions.pod:3197
25258 #, no-wrap
25259 msgid ""
25260 " modprobe modulename\n"
25261 "\n"
25262 msgstr ""
25263
25264 #. type: =head2
25265 #: ../fish/guestfish-actions.pod:3204
25266 msgid "mount"
25267 msgstr ""
25268
25269 #. type: verbatim
25270 #: ../fish/guestfish-actions.pod:3206
25271 #, no-wrap
25272 msgid ""
25273 " mount device mountpoint\n"
25274 "\n"
25275 msgstr ""
25276
25277 #. type: textblock
25278 #: ../fish/guestfish-actions.pod:3222
25279 msgid ""
25280 "B<Important note:> When you use this call, the filesystem options C<sync> "
25281 "and C<noatime> are set implicitly.  This was originally done because we "
25282 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25283 "very large negative performance impact and negligible effect on "
25284 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25285 "code that needs performance, and instead use L</mount-options> (use an empty "
25286 "string for the first parameter if you don't want any options)."
25287 msgstr ""
25288
25289 #. type: =head2
25290 #: ../fish/guestfish-actions.pod:3239
25291 msgid "mount-9p"
25292 msgstr ""
25293
25294 #. type: verbatim
25295 #: ../fish/guestfish-actions.pod:3241
25296 #, no-wrap
25297 msgid ""
25298 " mount-9p mounttag mountpoint [options:..]\n"
25299 "\n"
25300 msgstr ""
25301
25302 #. type: =head2
25303 #: ../fish/guestfish-actions.pod:3252
25304 msgid "mount-loop"
25305 msgstr ""
25306
25307 #. type: verbatim
25308 #: ../fish/guestfish-actions.pod:3254
25309 #, no-wrap
25310 msgid ""
25311 " mount-loop file mountpoint\n"
25312 "\n"
25313 msgstr ""
25314
25315 #. type: =head2
25316 #: ../fish/guestfish-actions.pod:3260
25317 msgid "mount-options"
25318 msgstr ""
25319
25320 #. type: verbatim
25321 #: ../fish/guestfish-actions.pod:3262
25322 #, no-wrap
25323 msgid ""
25324 " mount-options options device mountpoint\n"
25325 "\n"
25326 msgstr ""
25327
25328 #. type: textblock
25329 #: ../fish/guestfish-actions.pod:3264
25330 msgid ""
25331 "This is the same as the L</mount> command, but it allows you to set the "
25332 "mount options as for the L<mount(8)> I<-o> flag."
25333 msgstr ""
25334
25335 #. type: =head2
25336 #: ../fish/guestfish-actions.pod:3272
25337 msgid "mount-ro"
25338 msgstr ""
25339
25340 #. type: verbatim
25341 #: ../fish/guestfish-actions.pod:3274
25342 #, no-wrap
25343 msgid ""
25344 " mount-ro device mountpoint\n"
25345 "\n"
25346 msgstr ""
25347
25348 #. type: textblock
25349 #: ../fish/guestfish-actions.pod:3276
25350 msgid ""
25351 "This is the same as the L</mount> command, but it mounts the filesystem with "
25352 "the read-only (I<-o ro>) flag."
25353 msgstr ""
25354
25355 #. type: =head2
25356 #: ../fish/guestfish-actions.pod:3279
25357 msgid "mount-vfs"
25358 msgstr ""
25359
25360 #. type: verbatim
25361 #: ../fish/guestfish-actions.pod:3281
25362 #, no-wrap
25363 msgid ""
25364 " mount-vfs options vfstype device mountpoint\n"
25365 "\n"
25366 msgstr ""
25367
25368 #. type: textblock
25369 #: ../fish/guestfish-actions.pod:3283
25370 msgid ""
25371 "This is the same as the L</mount> command, but it allows you to set both the "
25372 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25373 msgstr ""
25374
25375 #. type: =head2
25376 #: ../fish/guestfish-actions.pod:3287
25377 msgid "mountpoints"
25378 msgstr ""
25379
25380 #. type: verbatim
25381 #: ../fish/guestfish-actions.pod:3289
25382 #, no-wrap
25383 msgid ""
25384 " mountpoints\n"
25385 "\n"
25386 msgstr ""
25387
25388 #. type: textblock
25389 #: ../fish/guestfish-actions.pod:3291
25390 msgid ""
25391 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25392 "This one returns a hash table (map) of device name to directory where the "
25393 "device is mounted."
25394 msgstr ""
25395
25396 #. type: =head2
25397 #: ../fish/guestfish-actions.pod:3295
25398 msgid "mounts"
25399 msgstr ""
25400
25401 #. type: verbatim
25402 #: ../fish/guestfish-actions.pod:3297
25403 #, no-wrap
25404 msgid ""
25405 " mounts\n"
25406 "\n"
25407 msgstr ""
25408
25409 #. type: textblock
25410 #: ../fish/guestfish-actions.pod:3304
25411 msgid "See also: L</mountpoints>"
25412 msgstr ""
25413
25414 #. type: =head2
25415 #: ../fish/guestfish-actions.pod:3306
25416 msgid "mv"
25417 msgstr ""
25418
25419 #. type: verbatim
25420 #: ../fish/guestfish-actions.pod:3308
25421 #, no-wrap
25422 msgid ""
25423 " mv src dest\n"
25424 "\n"
25425 msgstr ""
25426
25427 #. type: =head2
25428 #: ../fish/guestfish-actions.pod:3313
25429 msgid "ntfs-3g-probe"
25430 msgstr ""
25431
25432 #. type: verbatim
25433 #: ../fish/guestfish-actions.pod:3315
25434 #, no-wrap
25435 msgid ""
25436 " ntfs-3g-probe true|false device\n"
25437 "\n"
25438 msgstr ""
25439
25440 #. type: =head2
25441 #: ../fish/guestfish-actions.pod:3329
25442 msgid "ntfsresize"
25443 msgstr ""
25444
25445 #. type: verbatim
25446 #: ../fish/guestfish-actions.pod:3331
25447 #, no-wrap
25448 msgid ""
25449 " ntfsresize device\n"
25450 "\n"
25451 msgstr ""
25452
25453 #. type: =head2
25454 #: ../fish/guestfish-actions.pod:3337
25455 msgid "ntfsresize-size"
25456 msgstr ""
25457
25458 #. type: verbatim
25459 #: ../fish/guestfish-actions.pod:3339
25460 #, no-wrap
25461 msgid ""
25462 " ntfsresize-size device size\n"
25463 "\n"
25464 msgstr ""
25465
25466 #. type: textblock
25467 #: ../fish/guestfish-actions.pod:3341
25468 msgid ""
25469 "This command is the same as L</ntfsresize> except that it allows you to "
25470 "specify the new size (in bytes) explicitly."
25471 msgstr ""
25472
25473 #. type: =head2
25474 #: ../fish/guestfish-actions.pod:3344
25475 msgid "part-add"
25476 msgstr ""
25477
25478 #. type: verbatim
25479 #: ../fish/guestfish-actions.pod:3346
25480 #, no-wrap
25481 msgid ""
25482 " part-add device prlogex startsect endsect\n"
25483 "\n"
25484 msgstr ""
25485
25486 #. type: textblock
25487 #: ../fish/guestfish-actions.pod:3348
25488 msgid ""
25489 "This command adds a partition to C<device>.  If there is no partition table "
25490 "on the device, call L</part-init> first."
25491 msgstr ""
25492
25493 #. type: textblock
25494 #: ../fish/guestfish-actions.pod:3360
25495 msgid ""
25496 "Creating a partition which covers the whole disk is not so easy.  Use "
25497 "L</part-disk> to do that."
25498 msgstr ""
25499
25500 #. type: =head2
25501 #: ../fish/guestfish-actions.pod:3363
25502 msgid "part-del"
25503 msgstr ""
25504
25505 #. type: verbatim
25506 #: ../fish/guestfish-actions.pod:3365
25507 #, no-wrap
25508 msgid ""
25509 " part-del device partnum\n"
25510 "\n"
25511 msgstr ""
25512
25513 #. type: =head2
25514 #: ../fish/guestfish-actions.pod:3373
25515 msgid "part-disk"
25516 msgstr ""
25517
25518 #. type: verbatim
25519 #: ../fish/guestfish-actions.pod:3375
25520 #, no-wrap
25521 msgid ""
25522 " part-disk device parttype\n"
25523 "\n"
25524 msgstr ""
25525
25526 #. type: textblock
25527 #: ../fish/guestfish-actions.pod:3377
25528 msgid ""
25529 "This command is simply a combination of L</part-init> followed by "
25530 "L</part-add> to create a single primary partition covering the whole disk."
25531 msgstr ""
25532
25533 #. type: textblock
25534 #: ../fish/guestfish-actions.pod:3381
25535 msgid ""
25536 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25537 "possible values are described in L</part-init>."
25538 msgstr ""
25539
25540 #. type: =head2
25541 #: ../fish/guestfish-actions.pod:3387
25542 msgid "part-get-bootable"
25543 msgstr ""
25544
25545 #. type: verbatim
25546 #: ../fish/guestfish-actions.pod:3389
25547 #, no-wrap
25548 msgid ""
25549 " part-get-bootable device partnum\n"
25550 "\n"
25551 msgstr ""
25552
25553 #. type: textblock
25554 #: ../fish/guestfish-actions.pod:3394
25555 msgid "See also L</part-set-bootable>."
25556 msgstr ""
25557
25558 #. type: =head2
25559 #: ../fish/guestfish-actions.pod:3396
25560 msgid "part-get-mbr-id"
25561 msgstr ""
25562
25563 #. type: verbatim
25564 #: ../fish/guestfish-actions.pod:3398
25565 #, no-wrap
25566 msgid ""
25567 " part-get-mbr-id device partnum\n"
25568 "\n"
25569 msgstr ""
25570
25571 #. type: textblock
25572 #: ../fish/guestfish-actions.pod:3403 ../fish/guestfish-actions.pod:3541
25573 msgid ""
25574 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25575 "undefined results for other partition table types (see "
25576 "L</part-get-parttype>)."
25577 msgstr ""
25578
25579 #. type: =head2
25580 #: ../fish/guestfish-actions.pod:3407
25581 msgid "part-get-parttype"
25582 msgstr ""
25583
25584 #. type: verbatim
25585 #: ../fish/guestfish-actions.pod:3409
25586 #, no-wrap
25587 msgid ""
25588 " part-get-parttype device\n"
25589 "\n"
25590 msgstr ""
25591
25592 #. type: textblock
25593 #: ../fish/guestfish-actions.pod:3414
25594 msgid ""
25595 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25596 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25597 "possible, although unusual.  See L</part-init> for a full list."
25598 msgstr ""
25599
25600 #. type: =head2
25601 #: ../fish/guestfish-actions.pod:3419
25602 msgid "part-init"
25603 msgstr ""
25604
25605 #. type: verbatim
25606 #: ../fish/guestfish-actions.pod:3421
25607 #, no-wrap
25608 msgid ""
25609 " part-init device parttype\n"
25610 "\n"
25611 msgstr ""
25612
25613 #. type: textblock
25614 #: ../fish/guestfish-actions.pod:3427
25615 msgid ""
25616 "Initially there are no partitions.  Following this, you should call "
25617 "L</part-add> for each partition required."
25618 msgstr ""
25619
25620 #. type: =head2
25621 #: ../fish/guestfish-actions.pod:3490
25622 msgid "part-list"
25623 msgstr ""
25624
25625 #. type: verbatim
25626 #: ../fish/guestfish-actions.pod:3492
25627 #, no-wrap
25628 msgid ""
25629 " part-list device\n"
25630 "\n"
25631 msgstr ""
25632
25633 #. type: textblock
25634 #: ../fish/guestfish-actions.pod:3507
25635 msgid ""
25636 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25637 "the device's sector size, see L</blockdev-getss>."
25638 msgstr ""
25639
25640 #. type: =head2
25641 #: ../fish/guestfish-actions.pod:3520
25642 msgid "part-set-bootable"
25643 msgstr ""
25644
25645 #. type: verbatim
25646 #: ../fish/guestfish-actions.pod:3522
25647 #, no-wrap
25648 msgid ""
25649 " part-set-bootable device partnum true|false\n"
25650 "\n"
25651 msgstr ""
25652
25653 #. type: =head2
25654 #: ../fish/guestfish-actions.pod:3531
25655 msgid "part-set-mbr-id"
25656 msgstr ""
25657
25658 #. type: verbatim
25659 #: ../fish/guestfish-actions.pod:3533
25660 #, no-wrap
25661 msgid ""
25662 " part-set-mbr-id device partnum idbyte\n"
25663 "\n"
25664 msgstr ""
25665
25666 #. type: =head2
25667 #: ../fish/guestfish-actions.pod:3545
25668 msgid "part-set-name"
25669 msgstr ""
25670
25671 #. type: verbatim
25672 #: ../fish/guestfish-actions.pod:3547
25673 #, no-wrap
25674 msgid ""
25675 " part-set-name device partnum name\n"
25676 "\n"
25677 msgstr ""
25678
25679 #. type: =head2
25680 #: ../fish/guestfish-actions.pod:3555
25681 msgid "part-to-dev"
25682 msgstr ""
25683
25684 #. type: verbatim
25685 #: ../fish/guestfish-actions.pod:3557
25686 #, no-wrap
25687 msgid ""
25688 " part-to-dev partition\n"
25689 "\n"
25690 msgstr ""
25691
25692 #. type: textblock
25693 #: ../fish/guestfish-actions.pod:3563
25694 msgid ""
25695 "The named partition must exist, for example as a string returned from "
25696 "L</list-partitions>."
25697 msgstr ""
25698
25699 #. type: =head2
25700 #: ../fish/guestfish-actions.pod:3566
25701 msgid "ping-daemon"
25702 msgstr ""
25703
25704 #. type: verbatim
25705 #: ../fish/guestfish-actions.pod:3568
25706 #, no-wrap
25707 msgid ""
25708 " ping-daemon\n"
25709 "\n"
25710 msgstr ""
25711
25712 #. type: =head2
25713 #: ../fish/guestfish-actions.pod:3575
25714 msgid "pread"
25715 msgstr ""
25716
25717 #. type: verbatim
25718 #: ../fish/guestfish-actions.pod:3577
25719 #, no-wrap
25720 msgid ""
25721 " pread path count offset\n"
25722 "\n"
25723 msgstr ""
25724
25725 #. type: textblock
25726 #: ../fish/guestfish-actions.pod:3585
25727 msgid "See also L</pwrite>, L</pread-device>."
25728 msgstr ""
25729
25730 #. type: =head2
25731 #: ../fish/guestfish-actions.pod:3590
25732 msgid "pread-device"
25733 msgstr ""
25734
25735 #. type: verbatim
25736 #: ../fish/guestfish-actions.pod:3592
25737 #, no-wrap
25738 msgid ""
25739 " pread-device device count offset\n"
25740 "\n"
25741 msgstr ""
25742
25743 #. type: textblock
25744 #: ../fish/guestfish-actions.pod:3600
25745 msgid "See also L</pread>."
25746 msgstr ""
25747
25748 #. type: =head2
25749 #: ../fish/guestfish-actions.pod:3605
25750 msgid "pvcreate"
25751 msgstr ""
25752
25753 #. type: verbatim
25754 #: ../fish/guestfish-actions.pod:3607
25755 #, no-wrap
25756 msgid ""
25757 " pvcreate device\n"
25758 "\n"
25759 msgstr ""
25760
25761 #. type: =head2
25762 #: ../fish/guestfish-actions.pod:3613
25763 msgid "pvremove"
25764 msgstr ""
25765
25766 #. type: verbatim
25767 #: ../fish/guestfish-actions.pod:3615
25768 #, no-wrap
25769 msgid ""
25770 " pvremove device\n"
25771 "\n"
25772 msgstr ""
25773
25774 #. type: =head2
25775 #: ../fish/guestfish-actions.pod:3624
25776 msgid "pvresize"
25777 msgstr ""
25778
25779 #. type: verbatim
25780 #: ../fish/guestfish-actions.pod:3626
25781 #, no-wrap
25782 msgid ""
25783 " pvresize device\n"
25784 "\n"
25785 msgstr ""
25786
25787 #. type: =head2
25788 #: ../fish/guestfish-actions.pod:3631
25789 msgid "pvresize-size"
25790 msgstr ""
25791
25792 #. type: verbatim
25793 #: ../fish/guestfish-actions.pod:3633
25794 #, no-wrap
25795 msgid ""
25796 " pvresize-size device size\n"
25797 "\n"
25798 msgstr ""
25799
25800 #. type: textblock
25801 #: ../fish/guestfish-actions.pod:3635
25802 msgid ""
25803 "This command is the same as L</pvresize> except that it allows you to "
25804 "specify the new size (in bytes) explicitly."
25805 msgstr ""
25806
25807 #. type: =head2
25808 #: ../fish/guestfish-actions.pod:3638
25809 msgid "pvs"
25810 msgstr ""
25811
25812 #. type: verbatim
25813 #: ../fish/guestfish-actions.pod:3640
25814 #, no-wrap
25815 msgid ""
25816 " pvs\n"
25817 "\n"
25818 msgstr ""
25819
25820 #. type: textblock
25821 #: ../fish/guestfish-actions.pod:3648
25822 msgid "See also L</pvs-full>."
25823 msgstr ""
25824
25825 #. type: =head2
25826 #: ../fish/guestfish-actions.pod:3650
25827 msgid "pvs-full"
25828 msgstr ""
25829
25830 #. type: verbatim
25831 #: ../fish/guestfish-actions.pod:3652
25832 #, no-wrap
25833 msgid ""
25834 " pvs-full\n"
25835 "\n"
25836 msgstr ""
25837
25838 #. type: =head2
25839 #: ../fish/guestfish-actions.pod:3657
25840 msgid "pvuuid"
25841 msgstr ""
25842
25843 #. type: verbatim
25844 #: ../fish/guestfish-actions.pod:3659
25845 #, no-wrap
25846 msgid ""
25847 " pvuuid device\n"
25848 "\n"
25849 msgstr ""
25850
25851 #. type: =head2
25852 #: ../fish/guestfish-actions.pod:3663
25853 msgid "pwrite"
25854 msgstr ""
25855
25856 #. type: verbatim
25857 #: ../fish/guestfish-actions.pod:3665
25858 #, no-wrap
25859 msgid ""
25860 " pwrite path content offset\n"
25861 "\n"
25862 msgstr ""
25863
25864 #. type: textblock
25865 #: ../fish/guestfish-actions.pod:3676
25866 msgid "See also L</pread>, L</pwrite-device>."
25867 msgstr ""
25868
25869 #. type: =head2
25870 #: ../fish/guestfish-actions.pod:3681
25871 msgid "pwrite-device"
25872 msgstr ""
25873
25874 #. type: verbatim
25875 #: ../fish/guestfish-actions.pod:3683
25876 #, no-wrap
25877 msgid ""
25878 " pwrite-device device content offset\n"
25879 "\n"
25880 msgstr ""
25881
25882 #. type: textblock
25883 #: ../fish/guestfish-actions.pod:3693
25884 msgid "See also L</pwrite>."
25885 msgstr ""
25886
25887 #. type: =head2
25888 #: ../fish/guestfish-actions.pod:3698
25889 msgid "read-file"
25890 msgstr ""
25891
25892 #. type: verbatim
25893 #: ../fish/guestfish-actions.pod:3700
25894 #, no-wrap
25895 msgid ""
25896 " read-file path\n"
25897 "\n"
25898 msgstr ""
25899
25900 #. type: textblock
25901 #: ../fish/guestfish-actions.pod:3705
25902 msgid ""
25903 "Unlike L</cat>, this function can correctly handle files that contain "
25904 "embedded ASCII NUL characters.  However unlike L</download>, this function "
25905 "is limited in the total size of file that can be handled."
25906 msgstr ""
25907
25908 #. type: =head2
25909 #: ../fish/guestfish-actions.pod:3713
25910 msgid "read-lines"
25911 msgstr ""
25912
25913 #. type: verbatim
25914 #: ../fish/guestfish-actions.pod:3715
25915 #, no-wrap
25916 msgid ""
25917 " read-lines path\n"
25918 "\n"
25919 msgstr ""
25920
25921 #. type: textblock
25922 #: ../fish/guestfish-actions.pod:3722
25923 msgid ""
25924 "Note that this function cannot correctly handle binary files (specifically, "
25925 "files containing C<\\0> character which is treated as end of line).  For "
25926 "those you need to use the L</read-file> function which has a more complex "
25927 "interface."
25928 msgstr ""
25929
25930 #. type: =head2
25931 #: ../fish/guestfish-actions.pod:3727
25932 msgid "readdir"
25933 msgstr ""
25934
25935 #. type: verbatim
25936 #: ../fish/guestfish-actions.pod:3729
25937 #, no-wrap
25938 msgid ""
25939 " readdir dir\n"
25940 "\n"
25941 msgstr ""
25942
25943 #. type: textblock
25944 #: ../fish/guestfish-actions.pod:3781
25945 msgid ""
25946 "This function is primarily intended for use by programs.  To get a simple "
25947 "list of names, use L</ls>.  To get a printable directory for human "
25948 "consumption, use L</ll>."
25949 msgstr ""
25950
25951 #. type: =head2
25952 #: ../fish/guestfish-actions.pod:3785
25953 msgid "readlink"
25954 msgstr ""
25955
25956 #. type: verbatim
25957 #: ../fish/guestfish-actions.pod:3787
25958 #, no-wrap
25959 msgid ""
25960 " readlink path\n"
25961 "\n"
25962 msgstr ""
25963
25964 #. type: =head2
25965 #: ../fish/guestfish-actions.pod:3791
25966 msgid "readlinklist"
25967 msgstr ""
25968
25969 #. type: verbatim
25970 #: ../fish/guestfish-actions.pod:3793
25971 #, no-wrap
25972 msgid ""
25973 " readlinklist path 'names ...'\n"
25974 "\n"
25975 msgstr ""
25976
25977 #. type: =head2
25978 #: ../fish/guestfish-actions.pod:3817
25979 msgid "realpath"
25980 msgstr ""
25981
25982 #. type: verbatim
25983 #: ../fish/guestfish-actions.pod:3819
25984 #, no-wrap
25985 msgid ""
25986 " realpath path\n"
25987 "\n"
25988 msgstr ""
25989
25990 #. type: =head2
25991 #: ../fish/guestfish-actions.pod:3824
25992 msgid "removexattr"
25993 msgstr ""
25994
25995 #. type: verbatim
25996 #: ../fish/guestfish-actions.pod:3826
25997 #, no-wrap
25998 msgid ""
25999 " removexattr xattr path\n"
26000 "\n"
26001 msgstr ""
26002
26003 #. type: textblock
26004 #: ../fish/guestfish-actions.pod:3831
26005 msgid "See also: L</lremovexattr>, L<attr(5)>."
26006 msgstr ""
26007
26008 #. type: =head2
26009 #: ../fish/guestfish-actions.pod:3833
26010 msgid "resize2fs"
26011 msgstr ""
26012
26013 #. type: verbatim
26014 #: ../fish/guestfish-actions.pod:3835
26015 #, no-wrap
26016 msgid ""
26017 " resize2fs device\n"
26018 "\n"
26019 msgstr ""
26020
26021 #. type: textblock
26022 #: ../fish/guestfish-actions.pod:3840
26023 msgid ""
26024 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26025 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26026 "gives an error about this and sometimes not.  In any case, it is always safe "
26027 "to call L</e2fsck-f> before calling this function."
26028 msgstr ""
26029
26030 #. type: =head2
26031 #: ../fish/guestfish-actions.pod:3846
26032 msgid "resize2fs-M"
26033 msgstr ""
26034
26035 #. type: verbatim
26036 #: ../fish/guestfish-actions.pod:3848
26037 #, no-wrap
26038 msgid ""
26039 " resize2fs-M device\n"
26040 "\n"
26041 msgstr ""
26042
26043 #. type: textblock
26044 #: ../fish/guestfish-actions.pod:3850
26045 msgid ""
26046 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26047 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26048 "command."
26049 msgstr ""
26050
26051 #. type: textblock
26052 #: ../fish/guestfish-actions.pod:3854
26053 msgid ""
26054 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26055 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26056 "multiplied together, give the resulting size of the minimal filesystem in "
26057 "bytes."
26058 msgstr ""
26059
26060 #. type: =head2
26061 #: ../fish/guestfish-actions.pod:3859
26062 msgid "resize2fs-size"
26063 msgstr ""
26064
26065 #. type: verbatim
26066 #: ../fish/guestfish-actions.pod:3861
26067 #, no-wrap
26068 msgid ""
26069 " resize2fs-size device size\n"
26070 "\n"
26071 msgstr ""
26072
26073 #. type: textblock
26074 #: ../fish/guestfish-actions.pod:3863
26075 msgid ""
26076 "This command is the same as L</resize2fs> except that it allows you to "
26077 "specify the new size (in bytes) explicitly."
26078 msgstr ""
26079
26080 #. type: =head2
26081 #: ../fish/guestfish-actions.pod:3866
26082 msgid "rm"
26083 msgstr ""
26084
26085 #. type: verbatim
26086 #: ../fish/guestfish-actions.pod:3868
26087 #, no-wrap
26088 msgid ""
26089 " rm path\n"
26090 "\n"
26091 msgstr ""
26092
26093 #. type: =head2
26094 #: ../fish/guestfish-actions.pod:3872
26095 msgid "rm-rf"
26096 msgstr ""
26097
26098 #. type: verbatim
26099 #: ../fish/guestfish-actions.pod:3874
26100 #, no-wrap
26101 msgid ""
26102 " rm-rf path\n"
26103 "\n"
26104 msgstr ""
26105
26106 #. type: =head2
26107 #: ../fish/guestfish-actions.pod:3880
26108 msgid "rmdir"
26109 msgstr ""
26110
26111 #. type: verbatim
26112 #: ../fish/guestfish-actions.pod:3882
26113 #, no-wrap
26114 msgid ""
26115 " rmdir path\n"
26116 "\n"
26117 msgstr ""
26118
26119 #. type: =head2
26120 #: ../fish/guestfish-actions.pod:3886
26121 msgid "rmmountpoint"
26122 msgstr ""
26123
26124 #. type: verbatim
26125 #: ../fish/guestfish-actions.pod:3888
26126 #, no-wrap
26127 msgid ""
26128 " rmmountpoint exemptpath\n"
26129 "\n"
26130 msgstr ""
26131
26132 #. type: textblock
26133 #: ../fish/guestfish-actions.pod:3890
26134 msgid ""
26135 "This calls removes a mountpoint that was previously created with "
26136 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
26137 msgstr ""
26138
26139 #. type: =head2
26140 #: ../fish/guestfish-actions.pod:3894
26141 msgid "scrub-device"
26142 msgstr ""
26143
26144 #. type: verbatim
26145 #: ../fish/guestfish-actions.pod:3896
26146 #, no-wrap
26147 msgid ""
26148 " scrub-device device\n"
26149 "\n"
26150 msgstr ""
26151
26152 #. type: =head2
26153 #: ../fish/guestfish-actions.pod:3907
26154 msgid "scrub-file"
26155 msgstr ""
26156
26157 #. type: verbatim
26158 #: ../fish/guestfish-actions.pod:3909
26159 #, no-wrap
26160 msgid ""
26161 " scrub-file file\n"
26162 "\n"
26163 msgstr ""
26164
26165 #. type: =head2
26166 #: ../fish/guestfish-actions.pod:3919
26167 msgid "scrub-freespace"
26168 msgstr ""
26169
26170 #. type: verbatim
26171 #: ../fish/guestfish-actions.pod:3921
26172 #, no-wrap
26173 msgid ""
26174 " scrub-freespace dir\n"
26175 "\n"
26176 msgstr ""
26177
26178 #. type: textblock
26179 #: ../fish/guestfish-actions.pod:3923
26180 msgid ""
26181 "This command creates the directory C<dir> and then fills it with files until "
26182 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26183 "deletes them.  The intention is to scrub any free space on the partition "
26184 "containing C<dir>."
26185 msgstr ""
26186
26187 #. type: =head2
26188 #: ../fish/guestfish-actions.pod:3932
26189 msgid "set-append"
26190 msgstr ""
26191
26192 #. type: =head2
26193 #: ../fish/guestfish-actions.pod:3934
26194 msgid "append"
26195 msgstr ""
26196
26197 #. type: verbatim
26198 #: ../fish/guestfish-actions.pod:3936
26199 #, no-wrap
26200 msgid ""
26201 " set-append append\n"
26202 "\n"
26203 msgstr ""
26204
26205 #. type: =head2
26206 #: ../fish/guestfish-actions.pod:3947
26207 msgid "set-attach-method"
26208 msgstr ""
26209
26210 #. type: =head2
26211 #: ../fish/guestfish-actions.pod:3949
26212 msgid "attach-method"
26213 msgstr ""
26214
26215 #. type: verbatim
26216 #: ../fish/guestfish-actions.pod:3951
26217 #, no-wrap
26218 msgid ""
26219 " set-attach-method attachmethod\n"
26220 "\n"
26221 msgstr ""
26222
26223 #. type: =head2
26224 #: ../fish/guestfish-actions.pod:3973
26225 msgid "set-autosync"
26226 msgstr ""
26227
26228 #. type: =head2
26229 #: ../fish/guestfish-actions.pod:3975
26230 msgid "autosync"
26231 msgstr ""
26232
26233 #. type: verbatim
26234 #: ../fish/guestfish-actions.pod:3977
26235 #, no-wrap
26236 msgid ""
26237 " set-autosync true|false\n"
26238 "\n"
26239 msgstr ""
26240
26241 #. type: =head2
26242 #: ../fish/guestfish-actions.pod:3987
26243 msgid "set-direct"
26244 msgstr ""
26245
26246 #. type: =head2
26247 #: ../fish/guestfish-actions.pod:3989
26248 msgid "direct"
26249 msgstr ""
26250
26251 #. type: verbatim
26252 #: ../fish/guestfish-actions.pod:3991
26253 #, no-wrap
26254 msgid ""
26255 " set-direct true|false\n"
26256 "\n"
26257 msgstr ""
26258
26259 #. type: textblock
26260 #: ../fish/guestfish-actions.pod:3997
26261 msgid ""
26262 "One consequence of this is that log messages aren't caught by the library "
26263 "and handled by L</set-log-message-callback>, but go straight to stdout."
26264 msgstr ""
26265
26266 #. type: =head2
26267 #: ../fish/guestfish-actions.pod:4006
26268 msgid "set-e2label"
26269 msgstr ""
26270
26271 #. type: verbatim
26272 #: ../fish/guestfish-actions.pod:4008
26273 #, no-wrap
26274 msgid ""
26275 " set-e2label device label\n"
26276 "\n"
26277 msgstr ""
26278
26279 #. type: textblock
26280 #: ../fish/guestfish-actions.pod:4014
26281 msgid ""
26282 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26283 "label on a filesystem."
26284 msgstr ""
26285
26286 #. type: =head2
26287 #: ../fish/guestfish-actions.pod:4017
26288 msgid "set-e2uuid"
26289 msgstr ""
26290
26291 #. type: verbatim
26292 #: ../fish/guestfish-actions.pod:4019
26293 #, no-wrap
26294 msgid ""
26295 " set-e2uuid device uuid\n"
26296 "\n"
26297 msgstr ""
26298
26299 #. type: textblock
26300 #: ../fish/guestfish-actions.pod:4026
26301 msgid ""
26302 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26303 "UUID of a filesystem."
26304 msgstr ""
26305
26306 #. type: =head2
26307 #: ../fish/guestfish-actions.pod:4029
26308 msgid "set-memsize"
26309 msgstr ""
26310
26311 #. type: =head2
26312 #: ../fish/guestfish-actions.pod:4031
26313 msgid "memsize"
26314 msgstr ""
26315
26316 #. type: verbatim
26317 #: ../fish/guestfish-actions.pod:4033
26318 #, no-wrap
26319 msgid ""
26320 " set-memsize memsize\n"
26321 "\n"
26322 msgstr ""
26323
26324 #. type: textblock
26325 #: ../fish/guestfish-actions.pod:4035
26326 msgid ""
26327 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26328 "This only has any effect if called before L</launch>."
26329 msgstr ""
26330
26331 #. type: =head2
26332 #: ../fish/guestfish-actions.pod:4046
26333 msgid "set-network"
26334 msgstr ""
26335
26336 #. type: =head2
26337 #: ../fish/guestfish-actions.pod:4048
26338 msgid "network"
26339 msgstr ""
26340
26341 #. type: verbatim
26342 #: ../fish/guestfish-actions.pod:4050
26343 #, no-wrap
26344 msgid ""
26345 " set-network true|false\n"
26346 "\n"
26347 msgstr ""
26348
26349 #. type: textblock
26350 #: ../fish/guestfish-actions.pod:4058
26351 msgid "You must call this before calling L</launch>, otherwise it has no effect."
26352 msgstr ""
26353
26354 #. type: =head2
26355 #: ../fish/guestfish-actions.pod:4061
26356 msgid "set-path"
26357 msgstr ""
26358
26359 #. type: =head2
26360 #: ../fish/guestfish-actions.pod:4063
26361 msgid "path"
26362 msgstr ""
26363
26364 #. type: verbatim
26365 #: ../fish/guestfish-actions.pod:4065
26366 #, no-wrap
26367 msgid ""
26368 " set-path searchpath\n"
26369 "\n"
26370 msgstr ""
26371
26372 #. type: =head2
26373 #: ../fish/guestfish-actions.pod:4074
26374 msgid "set-qemu"
26375 msgstr ""
26376
26377 #. type: =head2
26378 #: ../fish/guestfish-actions.pod:4076
26379 msgid "qemu"
26380 msgstr ""
26381
26382 #. type: verbatim
26383 #: ../fish/guestfish-actions.pod:4078
26384 #, no-wrap
26385 msgid ""
26386 " set-qemu qemu\n"
26387 "\n"
26388 msgstr ""
26389
26390 #. type: =head2
26391 #: ../fish/guestfish-actions.pod:4098
26392 msgid "set-recovery-proc"
26393 msgstr ""
26394
26395 #. type: =head2
26396 #: ../fish/guestfish-actions.pod:4100
26397 msgid "recovery-proc"
26398 msgstr ""
26399
26400 #. type: verbatim
26401 #: ../fish/guestfish-actions.pod:4102
26402 #, no-wrap
26403 msgid ""
26404 " set-recovery-proc true|false\n"
26405 "\n"
26406 msgstr ""
26407
26408 #. type: textblock
26409 #: ../fish/guestfish-actions.pod:4104
26410 msgid ""
26411 "If this is called with the parameter C<false> then L</launch> does not "
26412 "create a recovery process.  The purpose of the recovery process is to stop "
26413 "runaway qemu processes in the case where the main program aborts abruptly."
26414 msgstr ""
26415
26416 #. type: textblock
26417 #: ../fish/guestfish-actions.pod:4109
26418 msgid ""
26419 "This only has any effect if called before L</launch>, and the default is "
26420 "true."
26421 msgstr ""
26422
26423 #. type: =head2
26424 #: ../fish/guestfish-actions.pod:4118
26425 msgid "set-selinux"
26426 msgstr ""
26427
26428 #. type: =head2
26429 #: ../fish/guestfish-actions.pod:4120
26430 msgid "selinux"
26431 msgstr ""
26432
26433 #. type: verbatim
26434 #: ../fish/guestfish-actions.pod:4122
26435 #, no-wrap
26436 msgid ""
26437 " set-selinux true|false\n"
26438 "\n"
26439 msgstr ""
26440
26441 #. type: =head2
26442 #: ../fish/guestfish-actions.pod:4133
26443 msgid "set-trace"
26444 msgstr ""
26445
26446 #. type: =head2
26447 #: ../fish/guestfish-actions.pod:4135
26448 msgid "trace"
26449 msgstr ""
26450
26451 #. type: verbatim
26452 #: ../fish/guestfish-actions.pod:4137
26453 #, no-wrap
26454 msgid ""
26455 " set-trace true|false\n"
26456 "\n"
26457 msgstr ""
26458
26459 #. type: textblock
26460 #: ../fish/guestfish-actions.pod:4149
26461 msgid ""
26462 "Trace messages are normally sent to C<stderr>, unless you register a "
26463 "callback to send them somewhere else (see L</set-event-callback>)."
26464 msgstr ""
26465
26466 #. type: =head2
26467 #: ../fish/guestfish-actions.pod:4153
26468 msgid "set-verbose"
26469 msgstr ""
26470
26471 #. type: =head2
26472 #: ../fish/guestfish-actions.pod:4155
26473 msgid "verbose"
26474 msgstr ""
26475
26476 #. type: verbatim
26477 #: ../fish/guestfish-actions.pod:4157
26478 #, no-wrap
26479 msgid ""
26480 " set-verbose true|false\n"
26481 "\n"
26482 msgstr ""
26483
26484 #. type: textblock
26485 #: ../fish/guestfish-actions.pod:4164
26486 msgid ""
26487 "Verbose messages are normally sent to C<stderr>, unless you register a "
26488 "callback to send them somewhere else (see L</set-event-callback>)."
26489 msgstr ""
26490
26491 #. type: =head2
26492 #: ../fish/guestfish-actions.pod:4168
26493 msgid "setcon"
26494 msgstr ""
26495
26496 #. type: verbatim
26497 #: ../fish/guestfish-actions.pod:4170
26498 #, no-wrap
26499 msgid ""
26500 " setcon context\n"
26501 "\n"
26502 msgstr ""
26503
26504 #. type: =head2
26505 #: ../fish/guestfish-actions.pod:4177
26506 msgid "setxattr"
26507 msgstr ""
26508
26509 #. type: verbatim
26510 #: ../fish/guestfish-actions.pod:4179
26511 #, no-wrap
26512 msgid ""
26513 " setxattr xattr val vallen path\n"
26514 "\n"
26515 msgstr ""
26516
26517 #. type: textblock
26518 #: ../fish/guestfish-actions.pod:4185
26519 msgid "See also: L</lsetxattr>, L<attr(5)>."
26520 msgstr ""
26521
26522 #. type: =head2
26523 #: ../fish/guestfish-actions.pod:4187
26524 msgid "sfdisk"
26525 msgstr ""
26526
26527 #. type: verbatim
26528 #: ../fish/guestfish-actions.pod:4189
26529 #, no-wrap
26530 msgid ""
26531 " sfdisk device cyls heads sectors 'lines ...'\n"
26532 "\n"
26533 msgstr ""
26534
26535 #. type: textblock
26536 #: ../fish/guestfish-actions.pod:4211
26537 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26538 msgstr ""
26539
26540 #. type: =head2
26541 #: ../fish/guestfish-actions.pod:4224
26542 msgid "sfdiskM"
26543 msgstr ""
26544
26545 #. type: verbatim
26546 #: ../fish/guestfish-actions.pod:4226
26547 #, no-wrap
26548 msgid ""
26549 " sfdiskM device 'lines ...'\n"
26550 "\n"
26551 msgstr ""
26552
26553 #. type: textblock
26554 #: ../fish/guestfish-actions.pod:4228
26555 msgid ""
26556 "This is a simplified interface to the L</sfdisk> command, where partition "
26557 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26558 "you don't need to specify the cyls, heads and sectors parameters which were "
26559 "rarely if ever used anyway."
26560 msgstr ""
26561
26562 #. type: textblock
26563 #: ../fish/guestfish-actions.pod:4234
26564 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26565 msgstr ""
26566
26567 #. type: =head2
26568 #: ../fish/guestfish-actions.pod:4247
26569 msgid "sfdisk-N"
26570 msgstr ""
26571
26572 #. type: verbatim
26573 #: ../fish/guestfish-actions.pod:4249
26574 #, no-wrap
26575 msgid ""
26576 " sfdisk-N device partnum cyls heads sectors line\n"
26577 "\n"
26578 msgstr ""
26579
26580 #. type: textblock
26581 #: ../fish/guestfish-actions.pod:4254
26582 msgid ""
26583 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26584 "cyls/heads/sectors parameters."
26585 msgstr ""
26586
26587 #. type: textblock
26588 #: ../fish/guestfish-actions.pod:4257
26589 msgid "See also: L</part-add>"
26590 msgstr ""
26591
26592 #. type: =head2
26593 #: ../fish/guestfish-actions.pod:4269
26594 msgid "sfdisk-disk-geometry"
26595 msgstr ""
26596
26597 #. type: verbatim
26598 #: ../fish/guestfish-actions.pod:4271
26599 #, no-wrap
26600 msgid ""
26601 " sfdisk-disk-geometry device\n"
26602 "\n"
26603 msgstr ""
26604
26605 #. type: textblock
26606 #: ../fish/guestfish-actions.pod:4273
26607 msgid ""
26608 "This displays the disk geometry of C<device> read from the partition table.  "
26609 "Especially in the case where the underlying block device has been resized, "
26610 "this can be different from the kernel's idea of the geometry (see "
26611 "L</sfdisk-kernel-geometry>)."
26612 msgstr ""
26613
26614 #. type: =head2
26615 #: ../fish/guestfish-actions.pod:4281
26616 msgid "sfdisk-kernel-geometry"
26617 msgstr ""
26618
26619 #. type: verbatim
26620 #: ../fish/guestfish-actions.pod:4283
26621 #, no-wrap
26622 msgid ""
26623 " sfdisk-kernel-geometry device\n"
26624 "\n"
26625 msgstr ""
26626
26627 #. type: =head2
26628 #: ../fish/guestfish-actions.pod:4290
26629 msgid "sfdisk-l"
26630 msgstr ""
26631
26632 #. type: verbatim
26633 #: ../fish/guestfish-actions.pod:4292
26634 #, no-wrap
26635 msgid ""
26636 " sfdisk-l device\n"
26637 "\n"
26638 msgstr ""
26639
26640 #. type: textblock
26641 #: ../fish/guestfish-actions.pod:4298
26642 msgid "See also: L</part-list>"
26643 msgstr ""
26644
26645 #. type: =head2
26646 #: ../fish/guestfish-actions.pod:4307
26647 msgid "sh"
26648 msgstr ""
26649
26650 #. type: verbatim
26651 #: ../fish/guestfish-actions.pod:4309
26652 #, no-wrap
26653 msgid ""
26654 " sh command\n"
26655 "\n"
26656 msgstr ""
26657
26658 #. type: textblock
26659 #: ../fish/guestfish-actions.pod:4314
26660 msgid "This is like L</command>, but passes the command to:"
26661 msgstr ""
26662
26663 #. type: textblock
26664 #: ../fish/guestfish-actions.pod:4322
26665 msgid "All the provisos about L</command> apply to this call."
26666 msgstr ""
26667
26668 #. type: =head2
26669 #: ../fish/guestfish-actions.pod:4324
26670 msgid "sh-lines"
26671 msgstr ""
26672
26673 #. type: verbatim
26674 #: ../fish/guestfish-actions.pod:4326
26675 #, no-wrap
26676 msgid ""
26677 " sh-lines command\n"
26678 "\n"
26679 msgstr ""
26680
26681 #. type: textblock
26682 #: ../fish/guestfish-actions.pod:4328
26683 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26684 msgstr ""
26685
26686 #. type: textblock
26687 #: ../fish/guestfish-actions.pod:4331
26688 msgid "See also: L</command-lines>"
26689 msgstr ""
26690
26691 #. type: =head2
26692 #: ../fish/guestfish-actions.pod:4333
26693 msgid "sleep"
26694 msgstr ""
26695
26696 #. type: verbatim
26697 #: ../fish/guestfish-actions.pod:4335
26698 #, no-wrap
26699 msgid ""
26700 " sleep secs\n"
26701 "\n"
26702 msgstr ""
26703
26704 #. type: =head2
26705 #: ../fish/guestfish-actions.pod:4339
26706 msgid "stat"
26707 msgstr ""
26708
26709 #. type: verbatim
26710 #: ../fish/guestfish-actions.pod:4341
26711 #, no-wrap
26712 msgid ""
26713 " stat path\n"
26714 "\n"
26715 msgstr ""
26716
26717 #. type: =head2
26718 #: ../fish/guestfish-actions.pod:4347
26719 msgid "statvfs"
26720 msgstr ""
26721
26722 #. type: verbatim
26723 #: ../fish/guestfish-actions.pod:4349
26724 #, no-wrap
26725 msgid ""
26726 " statvfs path\n"
26727 "\n"
26728 msgstr ""
26729
26730 #. type: =head2
26731 #: ../fish/guestfish-actions.pod:4357
26732 msgid "strings"
26733 msgstr ""
26734
26735 #. type: verbatim
26736 #: ../fish/guestfish-actions.pod:4359
26737 #, no-wrap
26738 msgid ""
26739 " strings path\n"
26740 "\n"
26741 msgstr ""
26742
26743 #. type: =head2
26744 #: ../fish/guestfish-actions.pod:4367
26745 msgid "strings-e"
26746 msgstr ""
26747
26748 #. type: verbatim
26749 #: ../fish/guestfish-actions.pod:4369
26750 #, no-wrap
26751 msgid ""
26752 " strings-e encoding path\n"
26753 "\n"
26754 msgstr ""
26755
26756 #. type: textblock
26757 #: ../fish/guestfish-actions.pod:4371
26758 msgid ""
26759 "This is like the L</strings> command, but allows you to specify the encoding "
26760 "of strings that are looked for in the source file C<path>."
26761 msgstr ""
26762
26763 #. type: textblock
26764 #: ../fish/guestfish-actions.pod:4381
26765 msgid ""
26766 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
26767 "ISO-8859-X (this is what L</strings> uses)."
26768 msgstr ""
26769
26770 #. type: =head2
26771 #: ../fish/guestfish-actions.pod:4413
26772 msgid "swapoff-device"
26773 msgstr ""
26774
26775 #. type: verbatim
26776 #: ../fish/guestfish-actions.pod:4415
26777 #, no-wrap
26778 msgid ""
26779 " swapoff-device device\n"
26780 "\n"
26781 msgstr ""
26782
26783 #. type: textblock
26784 #: ../fish/guestfish-actions.pod:4417
26785 msgid ""
26786 "This command disables the libguestfs appliance swap device or partition "
26787 "named C<device>.  See L</swapon-device>."
26788 msgstr ""
26789
26790 #. type: =head2
26791 #: ../fish/guestfish-actions.pod:4421
26792 msgid "swapoff-file"
26793 msgstr ""
26794
26795 #. type: verbatim
26796 #: ../fish/guestfish-actions.pod:4423
26797 #, no-wrap
26798 msgid ""
26799 " swapoff-file file\n"
26800 "\n"
26801 msgstr ""
26802
26803 #. type: =head2
26804 #: ../fish/guestfish-actions.pod:4427
26805 msgid "swapoff-label"
26806 msgstr ""
26807
26808 #. type: verbatim
26809 #: ../fish/guestfish-actions.pod:4429
26810 #, no-wrap
26811 msgid ""
26812 " swapoff-label label\n"
26813 "\n"
26814 msgstr ""
26815
26816 #. type: =head2
26817 #: ../fish/guestfish-actions.pod:4434
26818 msgid "swapoff-uuid"
26819 msgstr ""
26820
26821 #. type: verbatim
26822 #: ../fish/guestfish-actions.pod:4436
26823 #, no-wrap
26824 msgid ""
26825 " swapoff-uuid uuid\n"
26826 "\n"
26827 msgstr ""
26828
26829 #. type: =head2
26830 #: ../fish/guestfish-actions.pod:4441
26831 msgid "swapon-device"
26832 msgstr ""
26833
26834 #. type: verbatim
26835 #: ../fish/guestfish-actions.pod:4443
26836 #, no-wrap
26837 msgid ""
26838 " swapon-device device\n"
26839 "\n"
26840 msgstr ""
26841
26842 #. type: textblock
26843 #: ../fish/guestfish-actions.pod:4445
26844 msgid ""
26845 "This command enables the libguestfs appliance to use the swap device or "
26846 "partition named C<device>.  The increased memory is made available for all "
26847 "commands, for example those run using L</command> or L</sh>."
26848 msgstr ""
26849
26850 #. type: =head2
26851 #: ../fish/guestfish-actions.pod:4457
26852 msgid "swapon-file"
26853 msgstr ""
26854
26855 #. type: verbatim
26856 #: ../fish/guestfish-actions.pod:4459
26857 #, no-wrap
26858 msgid ""
26859 " swapon-file file\n"
26860 "\n"
26861 msgstr ""
26862
26863 #. type: textblock
26864 #: ../fish/guestfish-actions.pod:4461
26865 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
26866 msgstr ""
26867
26868 #. type: =head2
26869 #: ../fish/guestfish-actions.pod:4464
26870 msgid "swapon-label"
26871 msgstr ""
26872
26873 #. type: verbatim
26874 #: ../fish/guestfish-actions.pod:4466
26875 #, no-wrap
26876 msgid ""
26877 " swapon-label label\n"
26878 "\n"
26879 msgstr ""
26880
26881 #. type: textblock
26882 #: ../fish/guestfish-actions.pod:4468
26883 msgid ""
26884 "This command enables swap to a labeled swap partition.  See "
26885 "L</swapon-device> for other notes."
26886 msgstr ""
26887
26888 #. type: =head2
26889 #: ../fish/guestfish-actions.pod:4471
26890 msgid "swapon-uuid"
26891 msgstr ""
26892
26893 #. type: verbatim
26894 #: ../fish/guestfish-actions.pod:4473
26895 #, no-wrap
26896 msgid ""
26897 " swapon-uuid uuid\n"
26898 "\n"
26899 msgstr ""
26900
26901 #. type: textblock
26902 #: ../fish/guestfish-actions.pod:4475
26903 msgid ""
26904 "This command enables swap to a swap partition with the given UUID.  See "
26905 "L</swapon-device> for other notes."
26906 msgstr ""
26907
26908 #. type: =head2
26909 #: ../fish/guestfish-actions.pod:4478
26910 msgid "sync"
26911 msgstr ""
26912
26913 #. type: verbatim
26914 #: ../fish/guestfish-actions.pod:4480
26915 #, no-wrap
26916 msgid ""
26917 " sync\n"
26918 "\n"
26919 msgstr ""
26920
26921 #. type: =head2
26922 #: ../fish/guestfish-actions.pod:4488
26923 msgid "tail"
26924 msgstr ""
26925
26926 #. type: verbatim
26927 #: ../fish/guestfish-actions.pod:4490
26928 #, no-wrap
26929 msgid ""
26930 " tail path\n"
26931 "\n"
26932 msgstr ""
26933
26934 #. type: =head2
26935 #: ../fish/guestfish-actions.pod:4498
26936 msgid "tail-n"
26937 msgstr ""
26938
26939 #. type: verbatim
26940 #: ../fish/guestfish-actions.pod:4500
26941 #, no-wrap
26942 msgid ""
26943 " tail-n nrlines path\n"
26944 "\n"
26945 msgstr ""
26946
26947 #. type: =head2
26948 #: ../fish/guestfish-actions.pod:4513
26949 msgid "tar-in"
26950 msgstr ""
26951
26952 #. type: verbatim
26953 #: ../fish/guestfish-actions.pod:4515
26954 #, no-wrap
26955 msgid ""
26956 " tar-in (tarfile|-) directory\n"
26957 "\n"
26958 msgstr ""
26959
26960 #. type: textblock
26961 #: ../fish/guestfish-actions.pod:4520
26962 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
26963 msgstr ""
26964
26965 #. type: =head2
26966 #: ../fish/guestfish-actions.pod:4525
26967 msgid "tar-out"
26968 msgstr ""
26969
26970 #. type: verbatim
26971 #: ../fish/guestfish-actions.pod:4527
26972 #, no-wrap
26973 msgid ""
26974 " tar-out directory (tarfile|-)\n"
26975 "\n"
26976 msgstr ""
26977
26978 #. type: textblock
26979 #: ../fish/guestfish-actions.pod:4532
26980 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
26981 msgstr ""
26982
26983 #. type: =head2
26984 #: ../fish/guestfish-actions.pod:4537
26985 msgid "tgz-in"
26986 msgstr ""
26987
26988 #. type: verbatim
26989 #: ../fish/guestfish-actions.pod:4539
26990 #, no-wrap
26991 msgid ""
26992 " tgz-in (tarball|-) directory\n"
26993 "\n"
26994 msgstr ""
26995
26996 #. type: textblock
26997 #: ../fish/guestfish-actions.pod:4544
26998 msgid "To upload an uncompressed tarball, use L</tar-in>."
26999 msgstr ""
27000
27001 #. type: =head2
27002 #: ../fish/guestfish-actions.pod:4548
27003 msgid "tgz-out"
27004 msgstr ""
27005
27006 #. type: verbatim
27007 #: ../fish/guestfish-actions.pod:4550
27008 #, no-wrap
27009 msgid ""
27010 " tgz-out directory (tarball|-)\n"
27011 "\n"
27012 msgstr ""
27013
27014 #. type: textblock
27015 #: ../fish/guestfish-actions.pod:4555
27016 msgid "To download an uncompressed tarball, use L</tar-out>."
27017 msgstr ""
27018
27019 #. type: =head2
27020 #: ../fish/guestfish-actions.pod:4559
27021 msgid "touch"
27022 msgstr ""
27023
27024 #. type: verbatim
27025 #: ../fish/guestfish-actions.pod:4561
27026 #, no-wrap
27027 msgid ""
27028 " touch path\n"
27029 "\n"
27030 msgstr ""
27031
27032 #. type: =head2
27033 #: ../fish/guestfish-actions.pod:4570
27034 msgid "truncate"
27035 msgstr ""
27036
27037 #. type: verbatim
27038 #: ../fish/guestfish-actions.pod:4572
27039 #, no-wrap
27040 msgid ""
27041 " truncate path\n"
27042 "\n"
27043 msgstr ""
27044
27045 #. type: =head2
27046 #: ../fish/guestfish-actions.pod:4577
27047 msgid "truncate-size"
27048 msgstr ""
27049
27050 #. type: verbatim
27051 #: ../fish/guestfish-actions.pod:4579
27052 #, no-wrap
27053 msgid ""
27054 " truncate-size path size\n"
27055 "\n"
27056 msgstr ""
27057
27058 #. type: textblock
27059 #: ../fish/guestfish-actions.pod:4584
27060 msgid ""
27061 "If the current file size is less than C<size> then the file is extended to "
27062 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27063 "blocks are not allocated for the file until you write to it).  To create a "
27064 "non-sparse file of zeroes, use L</fallocate64> instead."
27065 msgstr ""
27066
27067 #. type: =head2
27068 #: ../fish/guestfish-actions.pod:4590
27069 msgid "tune2fs-l"
27070 msgstr ""
27071
27072 #. type: verbatim
27073 #: ../fish/guestfish-actions.pod:4592
27074 #, no-wrap
27075 msgid ""
27076 " tune2fs-l device\n"
27077 "\n"
27078 msgstr ""
27079
27080 #. type: =head2
27081 #: ../fish/guestfish-actions.pod:4602
27082 msgid "txz-in"
27083 msgstr ""
27084
27085 #. type: verbatim
27086 #: ../fish/guestfish-actions.pod:4604
27087 #, no-wrap
27088 msgid ""
27089 " txz-in (tarball|-) directory\n"
27090 "\n"
27091 msgstr ""
27092
27093 #. type: =head2
27094 #: ../fish/guestfish-actions.pod:4611
27095 msgid "txz-out"
27096 msgstr ""
27097
27098 #. type: verbatim
27099 #: ../fish/guestfish-actions.pod:4613
27100 #, no-wrap
27101 msgid ""
27102 " txz-out directory (tarball|-)\n"
27103 "\n"
27104 msgstr ""
27105
27106 #. type: =head2
27107 #: ../fish/guestfish-actions.pod:4620
27108 msgid "umask"
27109 msgstr ""
27110
27111 #. type: verbatim
27112 #: ../fish/guestfish-actions.pod:4622
27113 #, no-wrap
27114 msgid ""
27115 " umask mask\n"
27116 "\n"
27117 msgstr ""
27118
27119 #. type: textblock
27120 #: ../fish/guestfish-actions.pod:4636
27121 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27122 msgstr ""
27123
27124 #. type: =head2
27125 #: ../fish/guestfish-actions.pod:4641
27126 msgid "umount"
27127 msgstr ""
27128
27129 #. type: =head2
27130 #: ../fish/guestfish-actions.pod:4643
27131 msgid "unmount"
27132 msgstr ""
27133
27134 #. type: verbatim
27135 #: ../fish/guestfish-actions.pod:4645
27136 #, no-wrap
27137 msgid ""
27138 " umount pathordevice\n"
27139 "\n"
27140 msgstr ""
27141
27142 #. type: =head2
27143 #: ../fish/guestfish-actions.pod:4651
27144 msgid "umount-all"
27145 msgstr ""
27146
27147 #. type: =head2
27148 #: ../fish/guestfish-actions.pod:4653
27149 msgid "unmount-all"
27150 msgstr ""
27151
27152 #. type: verbatim
27153 #: ../fish/guestfish-actions.pod:4655
27154 #, no-wrap
27155 msgid ""
27156 " umount-all\n"
27157 "\n"
27158 msgstr ""
27159
27160 #. type: =head2
27161 #: ../fish/guestfish-actions.pod:4661
27162 msgid "upload"
27163 msgstr ""
27164
27165 #. type: verbatim
27166 #: ../fish/guestfish-actions.pod:4663
27167 #, no-wrap
27168 msgid ""
27169 " upload (filename|-) remotefilename\n"
27170 "\n"
27171 msgstr ""
27172
27173 #. type: textblock
27174 #: ../fish/guestfish-actions.pod:4670
27175 msgid "See also L</download>."
27176 msgstr ""
27177
27178 #. type: =head2
27179 #: ../fish/guestfish-actions.pod:4674
27180 msgid "upload-offset"
27181 msgstr ""
27182
27183 #. type: verbatim
27184 #: ../fish/guestfish-actions.pod:4676
27185 #, no-wrap
27186 msgid ""
27187 " upload-offset (filename|-) remotefilename offset\n"
27188 "\n"
27189 msgstr ""
27190
27191 #. type: textblock
27192 #: ../fish/guestfish-actions.pod:4688
27193 msgid ""
27194 "Note that there is no limit on the amount of data that can be uploaded with "
27195 "this call, unlike with L</pwrite>, and this call always writes the full "
27196 "amount unless an error occurs."
27197 msgstr ""
27198
27199 #. type: textblock
27200 #: ../fish/guestfish-actions.pod:4693
27201 msgid "See also L</upload>, L</pwrite>."
27202 msgstr ""
27203
27204 #. type: =head2
27205 #: ../fish/guestfish-actions.pod:4697
27206 msgid "utimens"
27207 msgstr ""
27208
27209 #. type: verbatim
27210 #: ../fish/guestfish-actions.pod:4699
27211 #, no-wrap
27212 msgid ""
27213 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27214 "\n"
27215 msgstr ""
27216
27217 #. type: =head2
27218 #: ../fish/guestfish-actions.pod:4718
27219 msgid "version"
27220 msgstr ""
27221
27222 #. type: verbatim
27223 #: ../fish/guestfish-actions.pod:4720
27224 #, no-wrap
27225 msgid ""
27226 " version\n"
27227 "\n"
27228 msgstr ""
27229
27230 #. type: textblock
27231 #: ../fish/guestfish-actions.pod:4747
27232 msgid ""
27233 "I<Note:> Don't use this call to test for availability of features.  In "
27234 "enterprise distributions we backport features from later versions into "
27235 "earlier versions, making this an unreliable way to test for features.  Use "
27236 "L</available> instead."
27237 msgstr ""
27238
27239 #. type: =head2
27240 #: ../fish/guestfish-actions.pod:4753
27241 msgid "vfs-label"
27242 msgstr ""
27243
27244 #. type: verbatim
27245 #: ../fish/guestfish-actions.pod:4755
27246 #, no-wrap
27247 msgid ""
27248 " vfs-label device\n"
27249 "\n"
27250 msgstr ""
27251
27252 #. type: textblock
27253 #: ../fish/guestfish-actions.pod:4762
27254 msgid "To find a filesystem from the label, use L</findfs-label>."
27255 msgstr ""
27256
27257 #. type: =head2
27258 #: ../fish/guestfish-actions.pod:4764
27259 msgid "vfs-type"
27260 msgstr ""
27261
27262 #. type: verbatim
27263 #: ../fish/guestfish-actions.pod:4766
27264 #, no-wrap
27265 msgid ""
27266 " vfs-type device\n"
27267 "\n"
27268 msgstr ""
27269
27270 #. type: =head2
27271 #: ../fish/guestfish-actions.pod:4776
27272 msgid "vfs-uuid"
27273 msgstr ""
27274
27275 #. type: verbatim
27276 #: ../fish/guestfish-actions.pod:4778
27277 #, no-wrap
27278 msgid ""
27279 " vfs-uuid device\n"
27280 "\n"
27281 msgstr ""
27282
27283 #. type: textblock
27284 #: ../fish/guestfish-actions.pod:4785
27285 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27286 msgstr ""
27287
27288 #. type: =head2
27289 #: ../fish/guestfish-actions.pod:4787
27290 msgid "vg-activate"
27291 msgstr ""
27292
27293 #. type: verbatim
27294 #: ../fish/guestfish-actions.pod:4789
27295 #, no-wrap
27296 msgid ""
27297 " vg-activate true|false 'volgroups ...'\n"
27298 "\n"
27299 msgstr ""
27300
27301 #. type: =head2
27302 #: ../fish/guestfish-actions.pod:4802
27303 msgid "vg-activate-all"
27304 msgstr ""
27305
27306 #. type: verbatim
27307 #: ../fish/guestfish-actions.pod:4804
27308 #, no-wrap
27309 msgid ""
27310 " vg-activate-all true|false\n"
27311 "\n"
27312 msgstr ""
27313
27314 #. type: =head2
27315 #: ../fish/guestfish-actions.pod:4814
27316 msgid "vgcreate"
27317 msgstr ""
27318
27319 #. type: verbatim
27320 #: ../fish/guestfish-actions.pod:4816
27321 #, no-wrap
27322 msgid ""
27323 " vgcreate volgroup 'physvols ...'\n"
27324 "\n"
27325 msgstr ""
27326
27327 #. type: =head2
27328 #: ../fish/guestfish-actions.pod:4821
27329 msgid "vglvuuids"
27330 msgstr ""
27331
27332 #. type: verbatim
27333 #: ../fish/guestfish-actions.pod:4823
27334 #, no-wrap
27335 msgid ""
27336 " vglvuuids vgname\n"
27337 "\n"
27338 msgstr ""
27339
27340 #. type: textblock
27341 #: ../fish/guestfish-actions.pod:4828
27342 msgid ""
27343 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27344 "logical volumes and volume groups."
27345 msgstr ""
27346
27347 #. type: textblock
27348 #: ../fish/guestfish-actions.pod:4831
27349 msgid "See also L</vgpvuuids>."
27350 msgstr ""
27351
27352 #. type: =head2
27353 #: ../fish/guestfish-actions.pod:4833
27354 msgid "vgpvuuids"
27355 msgstr ""
27356
27357 #. type: verbatim
27358 #: ../fish/guestfish-actions.pod:4835
27359 #, no-wrap
27360 msgid ""
27361 " vgpvuuids vgname\n"
27362 "\n"
27363 msgstr ""
27364
27365 #. type: textblock
27366 #: ../fish/guestfish-actions.pod:4840
27367 msgid ""
27368 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27369 "physical volumes and volume groups."
27370 msgstr ""
27371
27372 #. type: textblock
27373 #: ../fish/guestfish-actions.pod:4843
27374 msgid "See also L</vglvuuids>."
27375 msgstr ""
27376
27377 #. type: =head2
27378 #: ../fish/guestfish-actions.pod:4845
27379 msgid "vgremove"
27380 msgstr ""
27381
27382 #. type: verbatim
27383 #: ../fish/guestfish-actions.pod:4847
27384 #, no-wrap
27385 msgid ""
27386 " vgremove vgname\n"
27387 "\n"
27388 msgstr ""
27389
27390 #. type: =head2
27391 #: ../fish/guestfish-actions.pod:4854
27392 msgid "vgrename"
27393 msgstr ""
27394
27395 #. type: verbatim
27396 #: ../fish/guestfish-actions.pod:4856
27397 #, no-wrap
27398 msgid ""
27399 " vgrename volgroup newvolgroup\n"
27400 "\n"
27401 msgstr ""
27402
27403 #. type: =head2
27404 #: ../fish/guestfish-actions.pod:4860
27405 msgid "vgs"
27406 msgstr ""
27407
27408 #. type: verbatim
27409 #: ../fish/guestfish-actions.pod:4862
27410 #, no-wrap
27411 msgid ""
27412 " vgs\n"
27413 "\n"
27414 msgstr ""
27415
27416 #. type: textblock
27417 #: ../fish/guestfish-actions.pod:4870
27418 msgid "See also L</vgs-full>."
27419 msgstr ""
27420
27421 #. type: =head2
27422 #: ../fish/guestfish-actions.pod:4872
27423 msgid "vgs-full"
27424 msgstr ""
27425
27426 #. type: verbatim
27427 #: ../fish/guestfish-actions.pod:4874
27428 #, no-wrap
27429 msgid ""
27430 " vgs-full\n"
27431 "\n"
27432 msgstr ""
27433
27434 #. type: =head2
27435 #: ../fish/guestfish-actions.pod:4879
27436 msgid "vgscan"
27437 msgstr ""
27438
27439 #. type: verbatim
27440 #: ../fish/guestfish-actions.pod:4881
27441 #, no-wrap
27442 msgid ""
27443 " vgscan\n"
27444 "\n"
27445 msgstr ""
27446
27447 #. type: =head2
27448 #: ../fish/guestfish-actions.pod:4886
27449 msgid "vguuid"
27450 msgstr ""
27451
27452 #. type: verbatim
27453 #: ../fish/guestfish-actions.pod:4888
27454 #, no-wrap
27455 msgid ""
27456 " vguuid vgname\n"
27457 "\n"
27458 msgstr ""
27459
27460 #. type: =head2
27461 #: ../fish/guestfish-actions.pod:4892
27462 msgid "wc-c"
27463 msgstr ""
27464
27465 #. type: verbatim
27466 #: ../fish/guestfish-actions.pod:4894
27467 #, no-wrap
27468 msgid ""
27469 " wc-c path\n"
27470 "\n"
27471 msgstr ""
27472
27473 #. type: =head2
27474 #: ../fish/guestfish-actions.pod:4899
27475 msgid "wc-l"
27476 msgstr ""
27477
27478 #. type: verbatim
27479 #: ../fish/guestfish-actions.pod:4901
27480 #, no-wrap
27481 msgid ""
27482 " wc-l path\n"
27483 "\n"
27484 msgstr ""
27485
27486 #. type: =head2
27487 #: ../fish/guestfish-actions.pod:4906
27488 msgid "wc-w"
27489 msgstr ""
27490
27491 #. type: verbatim
27492 #: ../fish/guestfish-actions.pod:4908
27493 #, no-wrap
27494 msgid ""
27495 " wc-w path\n"
27496 "\n"
27497 msgstr ""
27498
27499 #. type: =head2
27500 #: ../fish/guestfish-actions.pod:4913
27501 msgid "write"
27502 msgstr ""
27503
27504 #. type: verbatim
27505 #: ../fish/guestfish-actions.pod:4915
27506 #, no-wrap
27507 msgid ""
27508 " write path content\n"
27509 "\n"
27510 msgstr ""
27511
27512 #. type: =head2
27513 #: ../fish/guestfish-actions.pod:4923
27514 msgid "write-file"
27515 msgstr ""
27516
27517 #. type: verbatim
27518 #: ../fish/guestfish-actions.pod:4925
27519 #, no-wrap
27520 msgid ""
27521 " write-file path content size\n"
27522 "\n"
27523 msgstr ""
27524
27525 #. type: =head2
27526 #: ../fish/guestfish-actions.pod:4948
27527 msgid "zegrep"
27528 msgstr ""
27529
27530 #. type: verbatim
27531 #: ../fish/guestfish-actions.pod:4950
27532 #, no-wrap
27533 msgid ""
27534 " zegrep regex path\n"
27535 "\n"
27536 msgstr ""
27537
27538 #. type: =head2
27539 #: ../fish/guestfish-actions.pod:4958
27540 msgid "zegrepi"
27541 msgstr ""
27542
27543 #. type: verbatim
27544 #: ../fish/guestfish-actions.pod:4960
27545 #, no-wrap
27546 msgid ""
27547 " zegrepi regex path\n"
27548 "\n"
27549 msgstr ""
27550
27551 #. type: =head2
27552 #: ../fish/guestfish-actions.pod:4968
27553 msgid "zero"
27554 msgstr ""
27555
27556 #. type: verbatim
27557 #: ../fish/guestfish-actions.pod:4970
27558 #, no-wrap
27559 msgid ""
27560 " zero device\n"
27561 "\n"
27562 msgstr ""
27563
27564 #. type: textblock
27565 #: ../fish/guestfish-actions.pod:4978
27566 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
27567 msgstr ""
27568
27569 #. type: =head2
27570 #: ../fish/guestfish-actions.pod:4981
27571 msgid "zero-device"
27572 msgstr ""
27573
27574 #. type: verbatim
27575 #: ../fish/guestfish-actions.pod:4983
27576 #, no-wrap
27577 msgid ""
27578 " zero-device device\n"
27579 "\n"
27580 msgstr ""
27581
27582 #. type: textblock
27583 #: ../fish/guestfish-actions.pod:4985
27584 msgid ""
27585 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27586 "which just zeroes the first few blocks of a device."
27587 msgstr ""
27588
27589 #. type: =head2
27590 #: ../fish/guestfish-actions.pod:4992
27591 msgid "zerofree"
27592 msgstr ""
27593
27594 #. type: verbatim
27595 #: ../fish/guestfish-actions.pod:4994
27596 #, no-wrap
27597 msgid ""
27598 " zerofree device\n"
27599 "\n"
27600 msgstr ""
27601
27602 #. type: =head2
27603 #: ../fish/guestfish-actions.pod:5007
27604 msgid "zfgrep"
27605 msgstr ""
27606
27607 #. type: verbatim
27608 #: ../fish/guestfish-actions.pod:5009
27609 #, no-wrap
27610 msgid ""
27611 " zfgrep pattern path\n"
27612 "\n"
27613 msgstr ""
27614
27615 #. type: =head2
27616 #: ../fish/guestfish-actions.pod:5017
27617 msgid "zfgrepi"
27618 msgstr ""
27619
27620 #. type: verbatim
27621 #: ../fish/guestfish-actions.pod:5019
27622 #, no-wrap
27623 msgid ""
27624 " zfgrepi pattern path\n"
27625 "\n"
27626 msgstr ""
27627
27628 #. type: =head2
27629 #: ../fish/guestfish-actions.pod:5027
27630 msgid "zfile"
27631 msgstr ""
27632
27633 #. type: verbatim
27634 #: ../fish/guestfish-actions.pod:5029
27635 #, no-wrap
27636 msgid ""
27637 " zfile meth path\n"
27638 "\n"
27639 msgstr ""
27640
27641 #. type: textblock
27642 #: ../fish/guestfish-actions.pod:5036
27643 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
27644 msgstr ""
27645
27646 #. type: =head2
27647 #: ../fish/guestfish-actions.pod:5046
27648 msgid "zgrep"
27649 msgstr ""
27650
27651 #. type: verbatim
27652 #: ../fish/guestfish-actions.pod:5048
27653 #, no-wrap
27654 msgid ""
27655 " zgrep regex path\n"
27656 "\n"
27657 msgstr ""
27658
27659 #. type: =head2
27660 #: ../fish/guestfish-actions.pod:5056
27661 msgid "zgrepi"
27662 msgstr ""
27663
27664 #. type: verbatim
27665 #: ../fish/guestfish-actions.pod:5058
27666 #, no-wrap
27667 msgid ""
27668 " zgrepi regex path\n"
27669 "\n"
27670 msgstr ""
27671
27672 #. type: =head2
27673 #: ../fish/guestfish-commands.pod:1
27674 msgid "alloc"
27675 msgstr ""
27676
27677 #. type: =head2
27678 #: ../fish/guestfish-commands.pod:3
27679 msgid "allocate"
27680 msgstr ""
27681
27682 #. type: verbatim
27683 #: ../fish/guestfish-commands.pod:5
27684 #, no-wrap
27685 msgid ""
27686 " alloc filename size\n"
27687 "\n"
27688 msgstr ""
27689
27690 #. type: textblock
27691 #: ../fish/guestfish-commands.pod:7
27692 msgid ""
27693 "This creates an empty (zeroed) file of the given size, and then adds so it "
27694 "can be further examined."
27695 msgstr ""
27696
27697 #. type: textblock
27698 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
27699 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27700 msgstr ""
27701
27702 #. type: textblock
27703 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
27704 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27705 msgstr ""
27706
27707 #. type: textblock
27708 #: ../fish/guestfish-commands.pod:14
27709 msgid ""
27710 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
27711 "image, see L</PREPARED DISK IMAGES>."
27712 msgstr ""
27713
27714 #. type: =head2
27715 #: ../fish/guestfish-commands.pod:17
27716 msgid "copy-in"
27717 msgstr ""
27718
27719 #. type: verbatim
27720 #: ../fish/guestfish-commands.pod:19
27721 #, no-wrap
27722 msgid ""
27723 " copy-in local [local ...] /remotedir\n"
27724 "\n"
27725 msgstr ""
27726
27727 #. type: textblock
27728 #: ../fish/guestfish-commands.pod:21
27729 msgid ""
27730 "C<copy-in> copies local files or directories recursively into the disk "
27731 "image, placing them in the directory called C</remotedir> (which must "
27732 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
27733 "other commands as necessary."
27734 msgstr ""
27735
27736 #. type: textblock
27737 #: ../fish/guestfish-commands.pod:26
27738 msgid ""
27739 "Multiple local files and directories can be specified, but the last "
27740 "parameter must always be a remote directory.  Wildcards cannot be used."
27741 msgstr ""
27742
27743 #. type: =head2
27744 #: ../fish/guestfish-commands.pod:30
27745 msgid "copy-out"
27746 msgstr ""
27747
27748 #. type: verbatim
27749 #: ../fish/guestfish-commands.pod:32
27750 #, no-wrap
27751 msgid ""
27752 " copy-out remote [remote ...] localdir\n"
27753 "\n"
27754 msgstr ""
27755
27756 #. type: textblock
27757 #: ../fish/guestfish-commands.pod:34
27758 msgid ""
27759 "C<copy-out> copies remote files or directories recursively out of the disk "
27760 "image, placing them on the host disk in a local directory called C<localdir> "
27761 "(which must exist).  This guestfish meta-command turns into a sequence of "
27762 "L</download>, L</tar-out> and other commands as necessary."
27763 msgstr ""
27764
27765 #. type: textblock
27766 #: ../fish/guestfish-commands.pod:40
27767 msgid ""
27768 "Multiple remote files and directories can be specified, but the last "
27769 "parameter must always be a local directory.  To download to the current "
27770 "directory, use C<.> as in:"
27771 msgstr ""
27772
27773 #. type: verbatim
27774 #: ../fish/guestfish-commands.pod:44
27775 #, no-wrap
27776 msgid ""
27777 " copy-out /home .\n"
27778 "\n"
27779 msgstr ""
27780
27781 #. type: textblock
27782 #: ../fish/guestfish-commands.pod:46
27783 msgid ""
27784 "Wildcards cannot be used in the ordinary command, but you can use them with "
27785 "the help of L</glob> like this:"
27786 msgstr ""
27787
27788 #. type: verbatim
27789 #: ../fish/guestfish-commands.pod:49
27790 #, no-wrap
27791 msgid ""
27792 " glob copy-out /home/* .\n"
27793 "\n"
27794 msgstr ""
27795
27796 #. type: =head2
27797 #: ../fish/guestfish-commands.pod:51
27798 msgid "display"
27799 msgstr ""
27800
27801 #. type: verbatim
27802 #: ../fish/guestfish-commands.pod:53
27803 #, no-wrap
27804 msgid ""
27805 " display filename\n"
27806 "\n"
27807 msgstr ""
27808
27809 #. type: textblock
27810 #: ../fish/guestfish-commands.pod:55
27811 msgid ""
27812 "Use C<display> (a graphical display program) to display an image file.  It "
27813 "downloads the file, and runs C<display> on it."
27814 msgstr ""
27815
27816 #. type: textblock
27817 #: ../fish/guestfish-commands.pod:58
27818 msgid ""
27819 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
27820 "environment variable.  For example to use the GNOME display program:"
27821 msgstr ""
27822
27823 #. type: verbatim
27824 #: ../fish/guestfish-commands.pod:61
27825 #, no-wrap
27826 msgid ""
27827 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
27828 "\n"
27829 msgstr ""
27830
27831 #. type: textblock
27832 #: ../fish/guestfish-commands.pod:63
27833 msgid "See also L<display(1)>."
27834 msgstr ""
27835
27836 #. type: =head2
27837 #: ../fish/guestfish-commands.pod:65
27838 msgid "echo"
27839 msgstr ""
27840
27841 #. type: verbatim
27842 #: ../fish/guestfish-commands.pod:67
27843 #, no-wrap
27844 msgid ""
27845 " echo [params ...]\n"
27846 "\n"
27847 msgstr ""
27848
27849 #. type: textblock
27850 #: ../fish/guestfish-commands.pod:69
27851 msgid "This echos the parameters to the terminal."
27852 msgstr ""
27853
27854 #. type: =head2
27855 #: ../fish/guestfish-commands.pod:71
27856 msgid "edit"
27857 msgstr ""
27858
27859 #. type: =head2
27860 #: ../fish/guestfish-commands.pod:73
27861 msgid "vi"
27862 msgstr ""
27863
27864 #. type: =head2
27865 #: ../fish/guestfish-commands.pod:75
27866 msgid "emacs"
27867 msgstr ""
27868
27869 #. type: verbatim
27870 #: ../fish/guestfish-commands.pod:77
27871 #, no-wrap
27872 msgid ""
27873 " edit filename\n"
27874 "\n"
27875 msgstr ""
27876
27877 #. type: textblock
27878 #: ../fish/guestfish-commands.pod:79
27879 msgid ""
27880 "This is used to edit a file.  It downloads the file, edits it locally using "
27881 "your editor, then uploads the result."
27882 msgstr ""
27883
27884 #. type: textblock
27885 #: ../fish/guestfish-commands.pod:82
27886 msgid ""
27887 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
27888 "or C<emacs> you will get those corresponding editors."
27889 msgstr ""
27890
27891 #. type: =head2
27892 #: ../fish/guestfish-commands.pod:86
27893 msgid "glob"
27894 msgstr ""
27895
27896 #. type: verbatim
27897 #: ../fish/guestfish-commands.pod:88
27898 #, no-wrap
27899 msgid ""
27900 " glob command args...\n"
27901 "\n"
27902 msgstr ""
27903
27904 #. type: textblock
27905 #: ../fish/guestfish-commands.pod:90
27906 msgid ""
27907 "Expand wildcards in any paths in the args list, and run C<command> "
27908 "repeatedly on each matching path."
27909 msgstr ""
27910
27911 #. type: textblock
27912 #: ../fish/guestfish-commands.pod:93
27913 msgid "See L</WILDCARDS AND GLOBBING>."
27914 msgstr ""
27915
27916 #. type: =head2
27917 #: ../fish/guestfish-commands.pod:95
27918 msgid "hexedit"
27919 msgstr ""
27920
27921 #. type: verbatim
27922 #: ../fish/guestfish-commands.pod:97
27923 #, no-wrap
27924 msgid ""
27925 " hexedit <filename|device>\n"
27926 " hexedit <filename|device> <max>\n"
27927 " hexedit <filename|device> <start> <max>\n"
27928 "\n"
27929 msgstr ""
27930
27931 #. type: textblock
27932 #: ../fish/guestfish-commands.pod:101
27933 msgid ""
27934 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
27935 "device."
27936 msgstr ""
27937
27938 #. type: textblock
27939 #: ../fish/guestfish-commands.pod:104
27940 msgid ""
27941 "This command works by downloading potentially the whole file or device, "
27942 "editing it locally, then uploading it.  If the file or device is large, you "
27943 "have to specify which part you wish to edit by using C<max> and/or C<start> "
27944 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
27945 "usual modifiers allowed such as C<1M> (1 megabyte)."
27946 msgstr ""
27947
27948 #. type: textblock
27949 #: ../fish/guestfish-commands.pod:111
27950 msgid "For example to edit the first few sectors of a disk you might do:"
27951 msgstr ""
27952
27953 #. type: verbatim
27954 #: ../fish/guestfish-commands.pod:114
27955 #, no-wrap
27956 msgid ""
27957 " hexedit /dev/sda 1M\n"
27958 "\n"
27959 msgstr ""
27960
27961 #. type: textblock
27962 #: ../fish/guestfish-commands.pod:116
27963 msgid ""
27964 "which would allow you to edit anywhere within the first megabyte of the "
27965 "disk."
27966 msgstr ""
27967
27968 #. type: textblock
27969 #: ../fish/guestfish-commands.pod:119
27970 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
27971 msgstr ""
27972
27973 #. type: verbatim
27974 #: ../fish/guestfish-commands.pod:121
27975 #, no-wrap
27976 msgid ""
27977 " hexedit /dev/sda1 0x400 0x400\n"
27978 "\n"
27979 msgstr ""
27980
27981 #. type: textblock
27982 #: ../fish/guestfish-commands.pod:123
27983 msgid "(assuming the superblock is in the standard location)."
27984 msgstr ""
27985
27986 #. type: textblock
27987 #: ../fish/guestfish-commands.pod:125
27988 msgid ""
27989 "This command requires the external L<hexedit(1)> program.  You can specify "
27990 "another program to use by setting the C<HEXEDITOR> environment variable."
27991 msgstr ""
27992
27993 #. type: textblock
27994 #: ../fish/guestfish-commands.pod:129
27995 msgid "See also L</hexdump>."
27996 msgstr ""
27997
27998 #. type: =head2
27999 #: ../fish/guestfish-commands.pod:131
28000 msgid "lcd"
28001 msgstr ""
28002
28003 #. type: verbatim
28004 #: ../fish/guestfish-commands.pod:133
28005 #, no-wrap
28006 msgid ""
28007 " lcd directory\n"
28008 "\n"
28009 msgstr ""
28010
28011 #. type: textblock
28012 #: ../fish/guestfish-commands.pod:135
28013 msgid "Change the local directory, ie. the current directory of guestfish itself."
28014 msgstr ""
28015
28016 #. type: textblock
28017 #: ../fish/guestfish-commands.pod:138
28018 msgid "Note that C<!cd> won't do what you might expect."
28019 msgstr ""
28020
28021 #. type: =head2
28022 #: ../fish/guestfish-commands.pod:140
28023 msgid "man"
28024 msgstr ""
28025
28026 #. type: =head2
28027 #: ../fish/guestfish-commands.pod:142
28028 msgid "manual"
28029 msgstr ""
28030
28031 #. type: verbatim
28032 #: ../fish/guestfish-commands.pod:144
28033 #, no-wrap
28034 msgid ""
28035 "  man\n"
28036 "\n"
28037 msgstr ""
28038
28039 #. type: textblock
28040 #: ../fish/guestfish-commands.pod:146
28041 msgid "Opens the manual page for guestfish."
28042 msgstr ""
28043
28044 #. type: =head2
28045 #: ../fish/guestfish-commands.pod:148
28046 msgid "more"
28047 msgstr ""
28048
28049 #. type: =head2
28050 #: ../fish/guestfish-commands.pod:150
28051 msgid "less"
28052 msgstr ""
28053
28054 #. type: verbatim
28055 #: ../fish/guestfish-commands.pod:152
28056 #, no-wrap
28057 msgid ""
28058 " more filename\n"
28059 "\n"
28060 msgstr ""
28061
28062 #. type: verbatim
28063 #: ../fish/guestfish-commands.pod:154
28064 #, no-wrap
28065 msgid ""
28066 " less filename\n"
28067 "\n"
28068 msgstr ""
28069
28070 #. type: textblock
28071 #: ../fish/guestfish-commands.pod:156
28072 msgid "This is used to view a file."
28073 msgstr ""
28074
28075 #. type: textblock
28076 #: ../fish/guestfish-commands.pod:158
28077 msgid ""
28078 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28079 "C<less> you will get the C<less> command specifically."
28080 msgstr ""
28081
28082 #. type: =head2
28083 #: ../fish/guestfish-commands.pod:161
28084 msgid "reopen"
28085 msgstr ""
28086
28087 #. type: verbatim
28088 #: ../fish/guestfish-commands.pod:163
28089 #, no-wrap
28090 msgid ""
28091 "  reopen\n"
28092 "\n"
28093 msgstr ""
28094
28095 #. type: textblock
28096 #: ../fish/guestfish-commands.pod:165
28097 msgid ""
28098 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28099 "normally, because the handle is closed properly when guestfish exits.  "
28100 "However this is occasionally useful for testing."
28101 msgstr ""
28102
28103 #. type: =head2
28104 #: ../fish/guestfish-commands.pod:169
28105 msgid "sparse"
28106 msgstr ""
28107
28108 #. type: verbatim
28109 #: ../fish/guestfish-commands.pod:171
28110 #, no-wrap
28111 msgid ""
28112 " sparse filename size\n"
28113 "\n"
28114 msgstr ""
28115
28116 #. type: textblock
28117 #: ../fish/guestfish-commands.pod:173
28118 msgid ""
28119 "This creates an empty sparse file of the given size, and then adds so it can "
28120 "be further examined."
28121 msgstr ""
28122
28123 #. type: textblock
28124 #: ../fish/guestfish-commands.pod:176
28125 msgid ""
28126 "In all respects it works the same as the L</alloc> command, except that the "
28127 "image file is allocated sparsely, which means that disk blocks are not "
28128 "assigned to the file until they are needed.  Sparse disk files only use "
28129 "space when written to, but they are slower and there is a danger you could "
28130 "run out of real disk space during a write operation."
28131 msgstr ""
28132
28133 #. type: =head2
28134 #: ../fish/guestfish-commands.pod:186
28135 msgid "supported"
28136 msgstr ""
28137
28138 #. type: verbatim
28139 #: ../fish/guestfish-commands.pod:188
28140 #, no-wrap
28141 msgid ""
28142 " supported\n"
28143 "\n"
28144 msgstr ""
28145
28146 #. type: textblock
28147 #: ../fish/guestfish-commands.pod:190
28148 msgid ""
28149 "This command returns a list of the optional groups known to the daemon, and "
28150 "indicates which ones are supported by this build of the libguestfs "
28151 "appliance."
28152 msgstr ""
28153
28154 #. type: textblock
28155 #: ../fish/guestfish-commands.pod:194
28156 msgid "See also L<guestfs(3)/AVAILABILITY>."
28157 msgstr ""
28158
28159 #. type: =head2
28160 #: ../fish/guestfish-commands.pod:196
28161 msgid "time"
28162 msgstr ""
28163
28164 #. type: verbatim
28165 #: ../fish/guestfish-commands.pod:198
28166 #, no-wrap
28167 msgid ""
28168 " time command args...\n"
28169 "\n"
28170 msgstr ""
28171
28172 #. type: textblock
28173 #: ../fish/guestfish-commands.pod:200
28174 msgid ""
28175 "Run the command as usual, but print the elapsed time afterwards.  This can "
28176 "be useful for benchmarking operations."
28177 msgstr ""
28178
28179 #. type: textblock
28180 #: ../test-tool/libguestfs-test-tool.pod:5
28181 msgid "libguestfs-test-tool - End user tests for libguestfs"
28182 msgstr ""
28183
28184 #. type: verbatim
28185 #: ../test-tool/libguestfs-test-tool.pod:9
28186 #, no-wrap
28187 msgid ""
28188 " libguestfs-test-tool [--options]\n"
28189 "\n"
28190 msgstr ""
28191
28192 #. type: textblock
28193 #: ../test-tool/libguestfs-test-tool.pod:13
28194 msgid ""
28195 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28196 "and developers, to allow them to check basic libguestfs functionality is "
28197 "working.  This is needed because libguestfs occasionally breaks for reasons "
28198 "beyond our control: usually because of changes in the underlying qemu or "
28199 "kernel packages, or the host environment."
28200 msgstr ""
28201
28202 #. type: textblock
28203 #: ../test-tool/libguestfs-test-tool.pod:20
28204 msgid "If you suspect a problem in libguestfs, then just run:"
28205 msgstr ""
28206
28207 #. type: verbatim
28208 #: ../test-tool/libguestfs-test-tool.pod:22
28209 #, no-wrap
28210 msgid ""
28211 " libguestfs-test-tool\n"
28212 "\n"
28213 msgstr ""
28214
28215 #. type: textblock
28216 #: ../test-tool/libguestfs-test-tool.pod:24
28217 msgid "It will print lots of diagnostic messages."
28218 msgstr ""
28219
28220 #. type: textblock
28221 #: ../test-tool/libguestfs-test-tool.pod:26
28222 msgid "If it runs to completion successfully, you will see this near the end:"
28223 msgstr ""
28224
28225 #. type: verbatim
28226 #: ../test-tool/libguestfs-test-tool.pod:28
28227 #, no-wrap
28228 msgid ""
28229 " ===== TEST FINISHED OK =====\n"
28230 "\n"
28231 msgstr ""
28232
28233 #. type: textblock
28234 #: ../test-tool/libguestfs-test-tool.pod:30
28235 msgid "and the test tool will exit with code 0."
28236 msgstr ""
28237
28238 #. type: textblock
28239 #: ../test-tool/libguestfs-test-tool.pod:32
28240 msgid ""
28241 "If it fails (and/or exits with non-zero error code), please paste the "
28242 "B<complete, unedited> output of the test tool into a bug report.  More "
28243 "information about reporting bugs can be found on the "
28244 "L<http://libguestfs.org/> website."
28245 msgstr ""
28246
28247 #. type: =item
28248 #: ../test-tool/libguestfs-test-tool.pod:41
28249 msgid "I<--help>"
28250 msgstr ""
28251
28252 #. type: textblock
28253 #: ../test-tool/libguestfs-test-tool.pod:43
28254 msgid "Display short usage information and exit."
28255 msgstr ""
28256
28257 #. type: =item
28258 #: ../test-tool/libguestfs-test-tool.pod:45
28259 msgid "I<--qemu qemu_binary>"
28260 msgstr ""
28261
28262 #. type: textblock
28263 #: ../test-tool/libguestfs-test-tool.pod:47
28264 msgid ""
28265 "If you have downloaded another qemu binary, point this option at the full "
28266 "path of the binary to try it."
28267 msgstr ""
28268
28269 #. type: =item
28270 #: ../test-tool/libguestfs-test-tool.pod:50
28271 msgid "I<--qemudir qemu_source_dir>"
28272 msgstr ""
28273
28274 #. type: textblock
28275 #: ../test-tool/libguestfs-test-tool.pod:52
28276 msgid ""
28277 "If you have compiled qemu from source, point this option at the source "
28278 "directory to try it."
28279 msgstr ""
28280
28281 #. type: =item
28282 #: ../test-tool/libguestfs-test-tool.pod:55
28283 msgid "I<--timeout N>"
28284 msgstr ""
28285
28286 #. type: textblock
28287 #: ../test-tool/libguestfs-test-tool.pod:57
28288 msgid ""
28289 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28290 "does not usually need to be adjusted unless your machine is very slow."
28291 msgstr ""
28292
28293 #. type: =head1
28294 #: ../test-tool/libguestfs-test-tool.pod:63
28295 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28296 msgstr ""
28297
28298 #. type: textblock
28299 #: ../test-tool/libguestfs-test-tool.pod:65
28300 msgid ""
28301 "If you have compiled another version of qemu from source and would like to "
28302 "try that, then you can use the I<--qemudir> option to point to the qemu "
28303 "source directory."
28304 msgstr ""
28305
28306 #. type: textblock
28307 #: ../test-tool/libguestfs-test-tool.pod:69
28308 msgid ""
28309 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28310 "option to point to the binary."
28311 msgstr ""
28312
28313 #. type: textblock
28314 #: ../test-tool/libguestfs-test-tool.pod:72
28315 msgid ""
28316 "When using an alternate qemu with libguestfs, usually you would need to "
28317 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
28318 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
28319 "when you use either of the I<--qemudir> or I<--qemu> options."
28320 msgstr ""
28321
28322 #. type: textblock
28323 #: ../test-tool/libguestfs-test-tool.pod:79
28324 msgid ""
28325 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28326 "I<1> if there was an error."
28327 msgstr ""
28328
28329 #. type: textblock
28330 #: ../test-tool/libguestfs-test-tool.pod:84
28331 msgid ""
28332 "For the full list of environment variables which may affect libguestfs, "
28333 "please see the L<guestfs(3)> manual page."
28334 msgstr ""
28335
28336 #. type: textblock
28337 #: ../test-tool/libguestfs-test-tool.pod:89
28338 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28339 msgstr ""
28340
28341 #. type: textblock
28342 #: ../fuse/guestmount.pod:5
28343 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28344 msgstr ""
28345
28346 #. type: verbatim
28347 #: ../fuse/guestmount.pod:9
28348 #, no-wrap
28349 msgid ""
28350 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28351 "\n"
28352 msgstr ""
28353
28354 #. type: verbatim
28355 #: ../fuse/guestmount.pod:11
28356 #, no-wrap
28357 msgid ""
28358 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28359 "\n"
28360 msgstr ""
28361
28362 #. type: verbatim
28363 #: ../fuse/guestmount.pod:13
28364 #, no-wrap
28365 msgid ""
28366 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28367 "\n"
28368 msgstr ""
28369
28370 #. type: textblock
28371 #: ../fuse/guestmount.pod:17
28372 msgid ""
28373 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28374 "machines.  If you do this, you risk disk corruption in the VM."
28375 msgstr ""
28376
28377 #. type: textblock
28378 #: ../fuse/guestmount.pod:22
28379 msgid ""
28380 "The guestmount program can be used to mount virtual machine filesystems and "
28381 "other disk images on the host.  It uses libguestfs for access to the guest "
28382 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28383 "a mountable device."
28384 msgstr ""
28385
28386 #. type: textblock
28387 #: ../fuse/guestmount.pod:27
28388 msgid ""
28389 "Along with other options, you have to give at least one device (I<-a> "
28390 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28391 "option) or use the I<-i> inspection option.  How this works is better "
28392 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28393 "below."
28394 msgstr ""
28395
28396 #. type: textblock
28397 #: ../fuse/guestmount.pod:33
28398 msgid ""
28399 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28400 "by you, and the filesystem will not be visible to any other users unless you "
28401 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28402 "the filesystem, use the C<fusermount -u> command."
28403 msgstr ""
28404
28405 #. type: textblock
28406 #: ../fuse/guestmount.pod:41
28407 msgid ""
28408 "For a typical Windows guest which has its main filesystem on the first "
28409 "partition:"
28410 msgstr ""
28411
28412 #. type: verbatim
28413 #: ../fuse/guestmount.pod:44
28414 #, no-wrap
28415 msgid ""
28416 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28417 "\n"
28418 msgstr ""
28419
28420 #. type: textblock
28421 #: ../fuse/guestmount.pod:46
28422 msgid ""
28423 "For a typical Linux guest which has a /boot filesystem on the first "
28424 "partition, and the root filesystem on a logical volume:"
28425 msgstr ""
28426
28427 #. type: verbatim
28428 #: ../fuse/guestmount.pod:49
28429 #, no-wrap
28430 msgid ""
28431 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28432 "\n"
28433 msgstr ""
28434
28435 #. type: textblock
28436 #: ../fuse/guestmount.pod:51
28437 msgid "To get libguestfs to detect guest mountpoints for you:"
28438 msgstr ""
28439
28440 #. type: verbatim
28441 #: ../fuse/guestmount.pod:53
28442 #, no-wrap
28443 msgid ""
28444 " guestmount -a guest.img -i --ro /mnt\n"
28445 "\n"
28446 msgstr ""
28447
28448 #. type: textblock
28449 #: ../fuse/guestmount.pod:55
28450 msgid "For a libvirt guest called \"Guest\" you could do:"
28451 msgstr ""
28452
28453 #. type: verbatim
28454 #: ../fuse/guestmount.pod:57
28455 #, no-wrap
28456 msgid ""
28457 " guestmount -d Guest -i --ro /mnt\n"
28458 "\n"
28459 msgstr ""
28460
28461 #. type: textblock
28462 #: ../fuse/guestmount.pod:59
28463 msgid ""
28464 "If you don't know what filesystems are contained in a guest or disk image, "
28465 "use L<virt-filesystems(1)> first:"
28466 msgstr ""
28467
28468 #. type: verbatim
28469 #: ../fuse/guestmount.pod:62
28470 #, no-wrap
28471 msgid ""
28472 " virt-filesystems MyGuest\n"
28473 "\n"
28474 msgstr ""
28475
28476 #. type: textblock
28477 #: ../fuse/guestmount.pod:64
28478 msgid ""
28479 "If you want to trace the libguestfs calls but without excessive debugging "
28480 "information, we recommend:"
28481 msgstr ""
28482
28483 #. type: verbatim
28484 #: ../fuse/guestmount.pod:67
28485 #, no-wrap
28486 msgid ""
28487 " guestmount [...] --trace /mnt\n"
28488 "\n"
28489 msgstr ""
28490
28491 #. type: textblock
28492 #: ../fuse/guestmount.pod:69
28493 msgid "If you want to debug the program, we recommend:"
28494 msgstr ""
28495
28496 #. type: verbatim
28497 #: ../fuse/guestmount.pod:71
28498 #, no-wrap
28499 msgid ""
28500 " guestmount [...] --trace --verbose /mnt\n"
28501 "\n"
28502 msgstr ""
28503
28504 #. type: =head1
28505 #: ../fuse/guestmount.pod:73
28506 msgid "NOTES"
28507 msgstr ""
28508
28509 #. type: =head2
28510 #: ../fuse/guestmount.pod:75
28511 msgid "Other users cannot see the filesystem by default"
28512 msgstr ""
28513
28514 #. type: textblock
28515 #: ../fuse/guestmount.pod:77
28516 msgid ""
28517 "If you mount a filesystem as one user (eg. root), then other users will not "
28518 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
28519 "option when mounting:"
28520 msgstr ""
28521
28522 #. type: verbatim
28523 #: ../fuse/guestmount.pod:81
28524 #, no-wrap
28525 msgid ""
28526 " sudo guestmount [...] -o allow_other /mnt\n"
28527 "\n"
28528 msgstr ""
28529
28530 #. type: =item
28531 #: ../fuse/guestmount.pod:87
28532 msgid "B<-a image> | B<--add image>"
28533 msgstr ""
28534
28535 #. type: textblock
28536 #: ../fuse/guestmount.pod:89
28537 msgid "Add a block device or virtual machine image."
28538 msgstr ""
28539
28540 #. type: =item
28541 #: ../fuse/guestmount.pod:94
28542 msgid "B<-c URI> | B<--connect URI>"
28543 msgstr ""
28544
28545 #. type: =item
28546 #: ../fuse/guestmount.pod:100
28547 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28548 msgstr ""
28549
28550 #. type: =item
28551 #: ../fuse/guestmount.pod:108
28552 msgid "B<--dir-cache-timeout N>"
28553 msgstr ""
28554
28555 #. type: textblock
28556 #: ../fuse/guestmount.pod:110
28557 msgid ""
28558 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28559 "seconds.  The readdir cache [actually, there are several semi-independent "
28560 "caches] is populated after a readdir(2) call with the stat and extended "
28561 "attributes of the files in the directory, in anticipation that they will be "
28562 "requested soon after."
28563 msgstr ""
28564
28565 #. type: textblock
28566 #: ../fuse/guestmount.pod:116
28567 msgid ""
28568 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28569 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28570 "requests, only cache existing ones."
28571 msgstr ""
28572
28573 #. type: =item
28574 #: ../fuse/guestmount.pod:127
28575 msgid "B<--format=raw|qcow2|..> | B<--format>"
28576 msgstr ""
28577
28578 #. type: textblock
28579 #: ../fuse/guestmount.pod:134
28580 msgid ""
28581 "If you have untrusted raw-format guest disk images, you should use this "
28582 "option to specify the disk format.  This avoids a possible security problem "
28583 "with malicious guests (CVE-2010-3851).  See also "
28584 "L<guestfs(3)/guestfs_add_drive_opts>."
28585 msgstr ""
28586
28587 #. type: =item
28588 #: ../fuse/guestmount.pod:139
28589 msgid "B<--fuse-help>"
28590 msgstr ""
28591
28592 #. type: textblock
28593 #: ../fuse/guestmount.pod:141
28594 msgid "Display help on special FUSE options (see I<-o> below)."
28595 msgstr ""
28596
28597 #. type: textblock
28598 #: ../fuse/guestmount.pod:145
28599 msgid "Display brief help and exit."
28600 msgstr ""
28601
28602 #. type: =item
28603 #: ../fuse/guestmount.pod:147
28604 msgid "B<-i> | B<--inspector>"
28605 msgstr ""
28606
28607 #. type: textblock
28608 #: ../fuse/guestmount.pod:167
28609 msgid ""
28610 "Mount the named partition or logical volume on the given mountpoint B<in the "
28611 "guest> (this has nothing to do with mountpoints in the host)."
28612 msgstr ""
28613
28614 #. type: textblock
28615 #: ../fuse/guestmount.pod:170
28616 msgid ""
28617 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28618 "something on C</>."
28619 msgstr ""
28620
28621 #. type: =item
28622 #: ../fuse/guestmount.pod:183
28623 msgid "B<-n> | B<--no-sync>"
28624 msgstr ""
28625
28626 #. type: textblock
28627 #: ../fuse/guestmount.pod:185
28628 msgid ""
28629 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28630 "unmounted.  If you specify this option, then we don't attempt to sync the "
28631 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28632 msgstr ""
28633
28634 #. type: =item
28635 #: ../fuse/guestmount.pod:190
28636 msgid "B<-o option> | B<--option option>"
28637 msgstr ""
28638
28639 #. type: textblock
28640 #: ../fuse/guestmount.pod:192
28641 msgid "Pass extra options to FUSE."
28642 msgstr ""
28643
28644 #. type: textblock
28645 #: ../fuse/guestmount.pod:194
28646 msgid ""
28647 "To get a list of all the extra options supported by FUSE, use the command "
28648 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28649 "of them are a good idea."
28650 msgstr ""
28651
28652 #. type: verbatim
28653 #: ../fuse/guestmount.pod:198
28654 #, no-wrap
28655 msgid ""
28656 " guestmount --fuse-help\n"
28657 "\n"
28658 msgstr ""
28659
28660 #. type: textblock
28661 #: ../fuse/guestmount.pod:200
28662 msgid "Some potentially useful FUSE options:"
28663 msgstr ""
28664
28665 #. type: =item
28666 #: ../fuse/guestmount.pod:204
28667 msgid "B<-o allow_other>"
28668 msgstr ""
28669
28670 #. type: textblock
28671 #: ../fuse/guestmount.pod:206
28672 msgid "Allow other users to see the filesystem."
28673 msgstr ""
28674
28675 #. type: =item
28676 #: ../fuse/guestmount.pod:208
28677 msgid "B<-o attr_timeout=N>"
28678 msgstr ""
28679
28680 #. type: textblock
28681 #: ../fuse/guestmount.pod:210
28682 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28683 msgstr ""
28684
28685 #. type: =item
28686 #: ../fuse/guestmount.pod:212
28687 msgid "B<-o kernel_cache>"
28688 msgstr ""
28689
28690 #. type: textblock
28691 #: ../fuse/guestmount.pod:214
28692 msgid ""
28693 "Allow the kernel to cache files (reduces the number of reads that have to go "
28694 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28695 "afford the extra memory usage."
28696 msgstr ""
28697
28698 #. type: =item
28699 #: ../fuse/guestmount.pod:218
28700 msgid "B<-o uid=N> B<-o gid=N>"
28701 msgstr ""
28702
28703 #. type: textblock
28704 #: ../fuse/guestmount.pod:220
28705 msgid ""
28706 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28707 "the chosen values."
28708 msgstr ""
28709
28710 #. type: =item
28711 #: ../fuse/guestmount.pod:225
28712 msgid "B<-r> | B<--ro>"
28713 msgstr ""
28714
28715 #. type: textblock
28716 #: ../fuse/guestmount.pod:227
28717 msgid ""
28718 "Add devices and mount everything read-only.  Also disallow writes and make "
28719 "the disk appear read-only to FUSE."
28720 msgstr ""
28721
28722 #. type: textblock
28723 #: ../fuse/guestmount.pod:230
28724 msgid ""
28725 "This is highly recommended if you are not going to edit the guest disk.  If "
28726 "the guest is running and this option is I<not> supplied, then there is a "
28727 "strong risk of disk corruption in the guest.  We try to prevent this from "
28728 "happening, but it is not always possible."
28729 msgstr ""
28730
28731 #. type: textblock
28732 #: ../fuse/guestmount.pod:235
28733 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28734 msgstr ""
28735
28736 #. type: textblock
28737 #: ../fuse/guestmount.pod:239
28738 msgid "Enable SELinux support for the guest."
28739 msgstr ""
28740
28741 #. type: =item
28742 #: ../fuse/guestmount.pod:241
28743 msgid "B<-v> | B<--verbose>"
28744 msgstr ""
28745
28746 #. type: textblock
28747 #: ../fuse/guestmount.pod:243
28748 msgid "Enable verbose messages from underlying libguestfs."
28749 msgstr ""
28750
28751 #. type: =item
28752 #: ../fuse/guestmount.pod:245
28753 msgid "B<-V> | B<--version>"
28754 msgstr ""
28755
28756 #. type: textblock
28757 #: ../fuse/guestmount.pod:247
28758 msgid "Display the program version and exit."
28759 msgstr ""
28760
28761 #. type: =item
28762 #: ../fuse/guestmount.pod:249
28763 msgid "B<-w> | B<--rw>"
28764 msgstr ""
28765
28766 #. type: textblock
28767 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
28768 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28769 msgstr ""
28770
28771 #. type: =item
28772 #: ../fuse/guestmount.pod:256
28773 msgid "B<-x> | B<--trace>"
28774 msgstr ""
28775
28776 #. type: textblock
28777 #: ../fuse/guestmount.pod:258
28778 msgid "Trace libguestfs calls and entry into each FUSE function."
28779 msgstr ""
28780
28781 #. type: textblock
28782 #: ../fuse/guestmount.pod:260
28783 msgid "This also stops the daemon from forking into the background."
28784 msgstr ""
28785
28786 #. type: textblock
28787 #: ../fuse/guestmount.pod:281
28788 msgid ""
28789 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
28790 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
28791 "L<http://fuse.sf.net/>."
28792 msgstr ""
28793
28794 #. type: textblock
28795 #: ../fuse/guestmount.pod:296
28796 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
28797 msgstr ""
28798
28799 #. type: textblock
28800 #: ../tools/virt-win-reg.pl:37
28801 msgid ""
28802 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
28803 "guest"
28804 msgstr ""
28805
28806 #. type: verbatim
28807 #: ../tools/virt-win-reg.pl:41
28808 #, no-wrap
28809 msgid ""
28810 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
28811 "\n"
28812 msgstr ""
28813
28814 #. type: verbatim
28815 #: ../tools/virt-win-reg.pl:43
28816 #, no-wrap
28817 msgid ""
28818 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
28819 "\n"
28820 msgstr ""
28821
28822 #. type: verbatim
28823 #: ../tools/virt-win-reg.pl:45
28824 #, no-wrap
28825 msgid ""
28826 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
28827 "\n"
28828 msgstr ""
28829
28830 #. type: verbatim
28831 #: ../tools/virt-win-reg.pl:47
28832 #, no-wrap
28833 msgid ""
28834 " virt-win-reg --merge domname [input.reg ...]\n"
28835 "\n"
28836 msgstr ""
28837
28838 #. type: verbatim
28839 #: ../tools/virt-win-reg.pl:49
28840 #, no-wrap
28841 msgid ""
28842 " virt-win-reg [--options] disk.img ... # instead of domname\n"
28843 "\n"
28844 msgstr ""
28845
28846 #. type: textblock
28847 #: ../tools/virt-win-reg.pl:53
28848 msgid ""
28849 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
28850 "virtual machines.  If you do this, you I<will> get irreversible disk "
28851 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
28852 "but doesn't catch all cases."
28853 msgstr ""
28854
28855 #. type: textblock
28856 #: ../tools/virt-win-reg.pl:58
28857 msgid ""
28858 "Modifying the Windows Registry is an inherently risky operation.  The format "
28859 "is deliberately obscure and undocumented, and Registry changes can leave the "
28860 "system unbootable.  Therefore when using the I<--merge> option, make sure "
28861 "you have a reliable backup first."
28862 msgstr ""
28863
28864 #. type: textblock
28865 #: ../tools/virt-win-reg.pl:65
28866 msgid ""
28867 "This program can export and merge Windows Registry entries from a Windows "
28868 "guest."
28869 msgstr ""
28870
28871 #. type: textblock
28872 #: ../tools/virt-win-reg.pl:68
28873 msgid ""
28874 "The first parameter is the libvirt guest name or the raw disk image of a "
28875 "Windows guest."
28876 msgstr ""
28877
28878 #. type: textblock
28879 #: ../tools/virt-win-reg.pl:71
28880 msgid ""
28881 "If I<--merge> is I<not> specified, then the chosen registry key is "
28882 "displayed/exported (recursively).  For example:"
28883 msgstr ""
28884
28885 #. type: verbatim
28886 #: ../tools/virt-win-reg.pl:74
28887 #, no-wrap
28888 msgid ""
28889 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
28890 "\n"
28891 msgstr ""
28892
28893 #. type: textblock
28894 #: ../tools/virt-win-reg.pl:76
28895 msgid "You can also display single values from within registry keys, for example:"
28896 msgstr ""
28897
28898 #. type: verbatim
28899 #: ../tools/virt-win-reg.pl:79
28900 #, no-wrap
28901 msgid ""
28902 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
28903 " $ virt-win-reg Windows7 $cvkey ProductName\n"
28904 " Windows 7 Enterprise\n"
28905 "\n"
28906 msgstr ""
28907
28908 #. type: textblock
28909 #: ../tools/virt-win-reg.pl:83
28910 msgid ""
28911 "With I<--merge>, you can merge a textual regedit file into the Windows "
28912 "Registry:"
28913 msgstr ""
28914
28915 #. type: verbatim
28916 #: ../tools/virt-win-reg.pl:86
28917 #, no-wrap
28918 msgid ""
28919 " $ virt-win-reg --merge Windows7 changes.reg\n"
28920 "\n"
28921 msgstr ""
28922
28923 #. type: =head1
28924 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
28925 msgid "NOTE"
28926 msgstr ""
28927
28928 #. type: textblock
28929 #: ../tools/virt-win-reg.pl:90
28930 msgid ""
28931 "This program is only meant for simple access to the registry.  If you want "
28932 "to do complicated things with the registry, we suggest you download the "
28933 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
28934 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
28935 "L<hivexregedit(1)>."
28936 msgstr ""
28937
28938 #. type: textblock
28939 #: ../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
28940 msgid "Display brief help."
28941 msgstr ""
28942
28943 #. type: textblock
28944 #: ../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
28945 msgid "Display version number and exit."
28946 msgstr ""
28947
28948 #. type: =item
28949 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
28950 msgid "B<--debug>"
28951 msgstr ""
28952
28953 #. type: textblock
28954 #: ../tools/virt-win-reg.pl:122
28955 msgid "Enable debugging messages."
28956 msgstr ""
28957
28958 #. type: =item
28959 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
28960 msgid "B<--connect URI> | B<-c URI>"
28961 msgstr ""
28962
28963 #. type: textblock
28964 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
28965 msgid ""
28966 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
28967 "to the default libvirt hypervisor."
28968 msgstr ""
28969
28970 #. type: textblock
28971 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
28972 msgid ""
28973 "If you specify guest block devices directly, then libvirt is not used at "
28974 "all."
28975 msgstr ""
28976
28977 #. type: =item
28978 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
28979 msgid "B<--format> raw"
28980 msgstr ""
28981
28982 #. type: textblock
28983 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
28984 msgid ""
28985 "Specify the format of disk images given on the command line.  If this is "
28986 "omitted then the format is autodetected from the content of the disk image."
28987 msgstr ""
28988
28989 #. type: textblock
28990 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
28991 msgid ""
28992 "If disk images are requested from libvirt, then this program asks libvirt "
28993 "for this information.  In this case, the value of the format parameter is "
28994 "ignored."
28995 msgstr ""
28996
28997 #. type: textblock
28998 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
28999 msgid ""
29000 "If working with untrusted raw-format guest disk images, you should ensure "
29001 "the format is always specified."
29002 msgstr ""
29003
29004 #. type: =item
29005 #: ../tools/virt-win-reg.pl:157
29006 msgid "B<--merge>"
29007 msgstr ""
29008
29009 #. type: textblock
29010 #: ../tools/virt-win-reg.pl:159
29011 msgid ""
29012 "In merge mode, this merges a textual regedit file into the Windows Registry "
29013 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29014 "displays or exports Registry entries instead."
29015 msgstr ""
29016
29017 #. type: textblock
29018 #: ../tools/virt-win-reg.pl:163
29019 msgid ""
29020 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29021 "result in disk corruption.  However exporting (without this flag)  is always "
29022 "safe."
29023 msgstr ""
29024
29025 #. type: =item
29026 #: ../tools/virt-win-reg.pl:171
29027 msgid "B<--encoding> UTF-16LE|ASCII"
29028 msgstr ""
29029
29030 #. type: textblock
29031 #: ../tools/virt-win-reg.pl:173
29032 msgid ""
29033 "When merging (only), you may need to specify the encoding for strings to be "
29034 "used in the hive file.  This is explained in detail in "
29035 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
29036 msgstr ""
29037
29038 #. type: textblock
29039 #: ../tools/virt-win-reg.pl:177
29040 msgid ""
29041 "The default is to use UTF-16LE, which should work with recent versions of "
29042 "Windows."
29043 msgstr ""
29044
29045 #. type: =item
29046 #: ../tools/virt-win-reg.pl:184
29047 msgid "B<--unsafe-printable-strings>"
29048 msgstr ""
29049
29050 #. type: textblock
29051 #: ../tools/virt-win-reg.pl:186
29052 msgid ""
29053 "When exporting (only), assume strings are UTF-16LE and print them as strings "
29054 "instead of hex sequences.  Remove the final zero codepoint from strings if "
29055 "present."
29056 msgstr ""
29057
29058 #. type: textblock
29059 #: ../tools/virt-win-reg.pl:190
29060 msgid ""
29061 "This is unsafe and does not preserve the fidelity of strings in the original "
29062 "Registry for various reasons:"
29063 msgstr ""
29064
29065 #. type: textblock
29066 #: ../tools/virt-win-reg.pl:197
29067 msgid ""
29068 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
29069 "other encodings will be corrupted by this transformation."
29070 msgstr ""
29071
29072 #. type: textblock
29073 #: ../tools/virt-win-reg.pl:202
29074 msgid ""
29075 "Assumes that everything which has type 1 or 2 is really a string and that "
29076 "everything else is not a string, but the type field in real Registries is "
29077 "not reliable."
29078 msgstr ""
29079
29080 #. type: textblock
29081 #: ../tools/virt-win-reg.pl:208
29082 msgid ""
29083 "Loses information about whether a zero codepoint followed the string in the "
29084 "Registry or not."
29085 msgstr ""
29086
29087 #. type: textblock
29088 #: ../tools/virt-win-reg.pl:213
29089 msgid ""
29090 "This all happens because the Registry itself contains no information about "
29091 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
29092 msgstr ""
29093
29094 #. type: textblock
29095 #: ../tools/virt-win-reg.pl:217
29096 msgid ""
29097 "You should only use this option for quick hacking and debugging of the "
29098 "Registry contents, and I<never> use it if the output is going to be passed "
29099 "into another program or stored in another Registry."
29100 msgstr ""
29101
29102 #. type: =head1
29103 #: ../tools/virt-win-reg.pl:554
29104 msgid "SUPPORTED SYSTEMS"
29105 msgstr ""
29106
29107 #. type: textblock
29108 #: ../tools/virt-win-reg.pl:556
29109 msgid ""
29110 "The program currently supports Windows NT-derived guests starting with "
29111 "Windows XP through to at least Windows 7."
29112 msgstr ""
29113
29114 #. type: textblock
29115 #: ../tools/virt-win-reg.pl:559
29116 msgid "The following Registry keys are supported:"
29117 msgstr ""
29118
29119 #. type: =item
29120 #: ../tools/virt-win-reg.pl:563
29121 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
29122 msgstr ""
29123
29124 #. type: =item
29125 #: ../tools/virt-win-reg.pl:565
29126 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
29127 msgstr ""
29128
29129 #. type: =item
29130 #: ../tools/virt-win-reg.pl:567
29131 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
29132 msgstr ""
29133
29134 #. type: =item
29135 #: ../tools/virt-win-reg.pl:569
29136 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
29137 msgstr ""
29138
29139 #. type: =item
29140 #: ../tools/virt-win-reg.pl:571
29141 msgid "C<HKEY_USERS\\.DEFAULT>"
29142 msgstr ""
29143
29144 #. type: =item
29145 #: ../tools/virt-win-reg.pl:573
29146 msgid "C<HKEY_USERS\\I<SID>>"
29147 msgstr ""
29148
29149 #. type: textblock
29150 #: ../tools/virt-win-reg.pl:575
29151 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
29152 msgstr ""
29153
29154 #. type: =item
29155 #: ../tools/virt-win-reg.pl:577
29156 msgid "C<HKEY_USERS\\I<username>>"
29157 msgstr ""
29158
29159 #. type: textblock
29160 #: ../tools/virt-win-reg.pl:579
29161 msgid "where I<username> is a local user name (this is a libguestfs extension)."
29162 msgstr ""
29163
29164 #. type: textblock
29165 #: ../tools/virt-win-reg.pl:583
29166 msgid ""
29167 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29168 "C<HKEY_USERS>."
29169 msgstr ""
29170
29171 #. type: textblock
29172 #: ../tools/virt-win-reg.pl:586
29173 msgid ""
29174 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
29175 "supported (there is no \"current user\")."
29176 msgstr ""
29177
29178 #. type: =head1
29179 #: ../tools/virt-win-reg.pl:589
29180 msgid "ENCODING"
29181 msgstr ""
29182
29183 #. type: textblock
29184 #: ../tools/virt-win-reg.pl:591
29185 msgid ""
29186 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29187 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
29188 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
29189 "with Windows-style line endings, you may need to reencode the whole file "
29190 "before or after processing."
29191 msgstr ""
29192
29193 #. type: textblock
29194 #: ../tools/virt-win-reg.pl:597
29195 msgid ""
29196 "To reencode a file from Windows format to Linux (before processing it with "
29197 "the I<--merge> option), you would do something like this:"
29198 msgstr ""
29199
29200 #. type: verbatim
29201 #: ../tools/virt-win-reg.pl:600
29202 #, no-wrap
29203 msgid ""
29204 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29205 "\n"
29206 msgstr ""
29207
29208 #. type: textblock
29209 #: ../tools/virt-win-reg.pl:602
29210 msgid ""
29211 "To go in the opposite direction, after exporting and before sending the file "
29212 "to a Windows user, do something like this:"
29213 msgstr ""
29214
29215 #. type: verbatim
29216 #: ../tools/virt-win-reg.pl:605
29217 #, no-wrap
29218 msgid ""
29219 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29220 "\n"
29221 msgstr ""
29222
29223 #. type: textblock
29224 #: ../tools/virt-win-reg.pl:607
29225 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29226 msgstr ""
29227
29228 #. type: textblock
29229 #: ../tools/virt-win-reg.pl:609
29230 msgid ""
29231 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29232 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
29233 "Windows-style (CRLF) line endings, like this:"
29234 msgstr ""
29235
29236 #. type: verbatim
29237 #: ../tools/virt-win-reg.pl:613
29238 #, no-wrap
29239 msgid ""
29240 " $ file software.reg\n"
29241 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29242 " with CRLF line terminators\n"
29243 "\n"
29244 msgstr ""
29245
29246 #. type: textblock
29247 #: ../tools/virt-win-reg.pl:617
29248 msgid "This file would need conversion before you could I<--merge> it."
29249 msgstr ""
29250
29251 #. type: =head1
29252 #: ../tools/virt-win-reg.pl:619
29253 msgid "CurrentControlSet etc."
29254 msgstr ""
29255
29256 #. type: textblock
29257 #: ../tools/virt-win-reg.pl:621
29258 msgid ""
29259 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29260 "Registry at the level of the hive file, and therefore you cannot modify "
29261 "these."
29262 msgstr ""
29263
29264 #. type: textblock
29265 #: ../tools/virt-win-reg.pl:625
29266 msgid ""
29267 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29268 "circumstances it might refer to another control set.  The way to find out is "
29269 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29270 msgstr ""
29271
29272 #. type: verbatim
29273 #: ../tools/virt-win-reg.pl:629
29274 #, no-wrap
29275 msgid ""
29276 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29277 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29278 " \"Current\"=dword:00000001\n"
29279 " \"Default\"=dword:00000001\n"
29280 " \"Failed\"=dword:00000000\n"
29281 " \"LastKnownGood\"=dword:00000002\n"
29282 "\n"
29283 msgstr ""
29284
29285 #. type: textblock
29286 #: ../tools/virt-win-reg.pl:636
29287 msgid "\"Current\" is the one which Windows will choose when it boots."
29288 msgstr ""
29289
29290 #. type: textblock
29291 #: ../tools/virt-win-reg.pl:638
29292 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
29293 msgstr ""
29294
29295 #. type: =head1
29296 #: ../tools/virt-win-reg.pl:641
29297 msgid "WINDOWS TIPS"
29298 msgstr ""
29299
29300 #. type: textblock
29301 #: ../tools/virt-win-reg.pl:643
29302 msgid ""
29303 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29304 "be shut off, else you will get disk corruption."
29305 msgstr ""
29306
29307 #. type: =head2
29308 #: ../tools/virt-win-reg.pl:646
29309 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29310 msgstr ""
29311
29312 #. type: textblock
29313 #: ../tools/virt-win-reg.pl:648
29314 msgid ""
29315 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29316 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29317 "is uploaded into C<C:\\>:"
29318 msgstr ""
29319
29320 #. type: verbatim
29321 #: ../tools/virt-win-reg.pl:652
29322 #, no-wrap
29323 msgid ""
29324 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29325 "\n"
29326 msgstr ""
29327
29328 #. type: textblock
29329 #: ../tools/virt-win-reg.pl:654
29330 msgid "Prepare a regedit file containing the registry change:"
29331 msgstr ""
29332
29333 #. type: verbatim
29334 #: ../tools/virt-win-reg.pl:656
29335 #, no-wrap
29336 msgid ""
29337 " cat > test.reg <<'EOF'\n"
29338 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29339 " \"Test\"=\"c:\\\\test.bat\"\n"
29340 " EOF\n"
29341 "\n"
29342 msgstr ""
29343
29344 #. type: textblock
29345 #: ../tools/virt-win-reg.pl:661
29346 msgid ""
29347 "In this example we use the key C<RunOnce> which means that the script will "
29348 "run precisely once when the first user logs in.  If you want it to run every "
29349 "time a user logs in, replace C<RunOnce> with C<Run>."
29350 msgstr ""
29351
29352 #. type: textblock
29353 #: ../tools/virt-win-reg.pl:665
29354 msgid "Now update the registry:"
29355 msgstr ""
29356
29357 #. type: verbatim
29358 #: ../tools/virt-win-reg.pl:667
29359 #, no-wrap
29360 msgid ""
29361 " virt-win-reg --merge WindowsGuest test.reg\n"
29362 "\n"
29363 msgstr ""
29364
29365 #. type: =head2
29366 #: ../tools/virt-win-reg.pl:669
29367 msgid "INSTALLING A SERVICE"
29368 msgstr ""
29369
29370 #. type: textblock
29371 #: ../tools/virt-win-reg.pl:671
29372 msgid ""
29373 "This section assumes you are familiar with Windows services, and you either "
29374 "have a program which handles the Windows Service Control Protocol directly "
29375 "or you want to run any program using a service wrapper like SrvAny or the "
29376 "free RHSrvAny."
29377 msgstr ""
29378
29379 #. type: textblock
29380 #: ../tools/virt-win-reg.pl:676
29381 msgid ""
29382 "First upload the program and optionally the service wrapper.  In this case "
29383 "the test program is called C<test.exe> and we are using the RHSrvAny "
29384 "wrapper:"
29385 msgstr ""
29386
29387 #. type: verbatim
29388 #: ../tools/virt-win-reg.pl:680
29389 #, no-wrap
29390 msgid ""
29391 " guestfish -i -d WindowsGuest <<EOF\n"
29392 "   upload rhsrvany.exe /rhsrvany.exe\n"
29393 "   upload test.exe /test.exe\n"
29394 " EOF\n"
29395 "\n"
29396 msgstr ""
29397
29398 #. type: textblock
29399 #: ../tools/virt-win-reg.pl:685
29400 msgid ""
29401 "Prepare a regedit file containing the registry changes.  In this example, "
29402 "the first registry change is needed for the service itself or the service "
29403 "wrapper (if used).  The second registry change is only needed because I am "
29404 "using the RHSrvAny service wrapper."
29405 msgstr ""
29406
29407 #. type: verbatim
29408 #: ../tools/virt-win-reg.pl:690
29409 #, no-wrap
29410 msgid ""
29411 " cat > service.reg <<'EOF'\n"
29412 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
29413 " \"Type\"=dword:00000010\n"
29414 " \"Start\"=dword:00000002\n"
29415 " \"ErrorControl\"=dword:00000001\n"
29416 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
29417 " \"DisplayName\"=\"RHSrvAny\"\n"
29418 " \"ObjectName\"=\"NetworkService\"\n"
29419 " \n"
29420 msgstr ""
29421
29422 #. type: verbatim
29423 #: ../tools/virt-win-reg.pl:699
29424 #, no-wrap
29425 msgid ""
29426 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
29427 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
29428 " \"PWD\"=\"c:\\\\Temp\"\n"
29429 " EOF\n"
29430 "\n"
29431 msgstr ""
29432
29433 #. type: textblock
29434 #: ../tools/virt-win-reg.pl:710
29435 msgid ""
29436 "For use of C<ControlSet001> see the section above in this manual page.  You "
29437 "may need to adjust this according to the control set that is in use by the "
29438 "guest."
29439 msgstr ""
29440
29441 #. type: textblock
29442 #: ../tools/virt-win-reg.pl:716
29443 msgid ""
29444 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
29445 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
29446 "privileged account."
29447 msgstr ""
29448
29449 #. type: textblock
29450 #: ../tools/virt-win-reg.pl:722
29451 msgid ""
29452 "For the meaning of the magic numbers, see this Microsoft KB article: "
29453 "L<http://support.microsoft.com/kb/103000>."
29454 msgstr ""
29455
29456 #. type: textblock
29457 #: ../tools/virt-win-reg.pl:727
29458 msgid "Update the registry:"
29459 msgstr ""
29460
29461 #. type: verbatim
29462 #: ../tools/virt-win-reg.pl:729
29463 #, no-wrap
29464 msgid ""
29465 " virt-win-reg --merge WindowsGuest service.reg\n"
29466 "\n"
29467 msgstr ""
29468
29469 #. type: =head1
29470 #: ../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
29471 msgid "SHELL QUOTING"
29472 msgstr ""
29473
29474 #. type: textblock
29475 #: ../tools/virt-win-reg.pl:733
29476 msgid ""
29477 "Be careful when passing parameters containing C<\\> (backslash) in the "
29478 "shell.  Usually you will have to use 'single quotes' or double backslashes "
29479 "(but not both) to protect them from the shell."
29480 msgstr ""
29481
29482 #. type: textblock
29483 #: ../tools/virt-win-reg.pl:737
29484 msgid "Paths and value names are case-insensitive."
29485 msgstr ""
29486
29487 #. type: textblock
29488 #: ../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
29489 msgid ""
29490 "Libvirt guest names can contain arbitrary characters, some of which have "
29491 "meaning to the shell such as C<#> and space.  You may need to quote or "
29492 "escape these characters on the command line.  See the shell manual page "
29493 "L<sh(1)> for details."
29494 msgstr ""
29495
29496 #. type: textblock
29497 #: ../tools/virt-win-reg.pl:746
29498 msgid ""
29499 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
29500 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
29501 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
29502 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29503 msgstr ""
29504
29505 #. type: textblock
29506 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
29507 msgid ""
29508 "When reporting bugs, please enable debugging and capture the I<complete> "
29509 "output:"
29510 msgstr ""
29511
29512 #. type: verbatim
29513 #: ../tools/virt-win-reg.pl:764
29514 #, no-wrap
29515 msgid ""
29516 " export LIBGUESTFS_DEBUG=1\n"
29517 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
29518 "\n"
29519 msgstr ""
29520
29521 #. type: textblock
29522 #: ../tools/virt-win-reg.pl:767
29523 msgid ""
29524 "Attach /tmp/virt-win-reg.log to a new bug report at "
29525 "L<https://bugzilla.redhat.com/>"
29526 msgstr ""
29527
29528 #. type: =head1
29529 #: ../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
29530 msgid "AUTHOR"
29531 msgstr ""
29532
29533 #. type: textblock
29534 #: ../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
29535 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29536 msgstr ""
29537
29538 #. type: textblock
29539 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
29540 msgid "Copyright (C) 2010 Red Hat Inc."
29541 msgstr ""
29542
29543 #. type: textblock
29544 #: ../tools/virt-list-filesystems.pl:32
29545 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
29546 msgstr ""
29547
29548 #. type: verbatim
29549 #: ../tools/virt-list-filesystems.pl:36
29550 #, no-wrap
29551 msgid ""
29552 " virt-list-filesystems [--options] domname\n"
29553 "\n"
29554 msgstr ""
29555
29556 #. type: verbatim
29557 #: ../tools/virt-list-filesystems.pl:38
29558 #, no-wrap
29559 msgid ""
29560 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29561 "\n"
29562 msgstr ""
29563
29564 #. type: textblock
29565 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29566 msgid ""
29567 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29568 "replacement."
29569 msgstr ""
29570
29571 #. type: textblock
29572 #: ../tools/virt-list-filesystems.pl:45
29573 msgid ""
29574 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29575 "are contained in a virtual machine or disk image."
29576 msgstr ""
29577
29578 #. type: textblock
29579 #: ../tools/virt-list-filesystems.pl:49
29580 msgid ""
29581 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29582 "functionality.  For more complex cases you should look at the "
29583 "L<guestfish(1)> tool."
29584 msgstr ""
29585
29586 #. type: =item
29587 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
29588 msgid "B<-l> | B<--long>"
29589 msgstr ""
29590
29591 #. type: textblock
29592 #: ../tools/virt-list-filesystems.pl:108
29593 msgid ""
29594 "With this option, C<virt-list-filesystems> displays the type of each "
29595 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
29596 msgstr ""
29597
29598 #. type: =item
29599 #: ../tools/virt-list-filesystems.pl:115
29600 msgid "B<-a> | B<--all>"
29601 msgstr ""
29602
29603 #. type: textblock
29604 #: ../tools/virt-list-filesystems.pl:117
29605 msgid ""
29606 "Normally we only show mountable filesystems.  If this option is given then "
29607 "swap devices are shown too."
29608 msgstr ""
29609
29610 #. type: textblock
29611 #: ../tools/virt-list-filesystems.pl:191
29612 msgid ""
29613 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
29614 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
29615 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29616 msgstr ""
29617
29618 #. type: textblock
29619 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
29620 msgid "Copyright (C) 2009 Red Hat Inc."
29621 msgstr ""
29622
29623 #. type: textblock
29624 #: ../tools/virt-tar.pl:33
29625 msgid "virt-tar - Extract or upload files to a virtual machine"
29626 msgstr ""
29627
29628 #. type: verbatim
29629 #: ../tools/virt-tar.pl:37
29630 #, no-wrap
29631 msgid ""
29632 " virt-tar [--options] -x domname directory tarball\n"
29633 "\n"
29634 msgstr ""
29635
29636 #. type: verbatim
29637 #: ../tools/virt-tar.pl:39
29638 #, no-wrap
29639 msgid ""
29640 " virt-tar [--options] -u domname tarball directory\n"
29641 "\n"
29642 msgstr ""
29643
29644 #. type: verbatim
29645 #: ../tools/virt-tar.pl:41
29646 #, no-wrap
29647 msgid ""
29648 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
29649 "\n"
29650 msgstr ""
29651
29652 #. type: verbatim
29653 #: ../tools/virt-tar.pl:43
29654 #, no-wrap
29655 msgid ""
29656 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
29657 "\n"
29658 msgstr ""
29659
29660 #. type: textblock
29661 #: ../tools/virt-tar.pl:47
29662 msgid ""
29663 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, "
29664 "L<virt-tar-in(1)>, L<virt-tar-out(1)> as replacements."
29665 msgstr ""
29666
29667 #. type: textblock
29668 #: ../tools/virt-tar.pl:52
29669 msgid "Download C</home> from the VM into a local tarball:"
29670 msgstr ""
29671
29672 #. type: verbatim
29673 #: ../tools/virt-tar.pl:54
29674 #, no-wrap
29675 msgid ""
29676 " virt-tar -x domname /home home.tar\n"
29677 "\n"
29678 msgstr ""
29679
29680 #. type: verbatim
29681 #: ../tools/virt-tar.pl:56
29682 #, no-wrap
29683 msgid ""
29684 " virt-tar -zx domname /home home.tar.gz\n"
29685 "\n"
29686 msgstr ""
29687
29688 #. type: textblock
29689 #: ../tools/virt-tar.pl:58
29690 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29691 msgstr ""
29692
29693 #. type: verbatim
29694 #: ../tools/virt-tar.pl:60
29695 #, no-wrap
29696 msgid ""
29697 " virt-tar -u domname uploadstuff.tar /tmp\n"
29698 "\n"
29699 msgstr ""
29700
29701 #. type: verbatim
29702 #: ../tools/virt-tar.pl:62
29703 #, no-wrap
29704 msgid ""
29705 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
29706 "\n"
29707 msgstr ""
29708
29709 #. type: textblock
29710 #: ../tools/virt-tar.pl:66
29711 msgid ""
29712 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
29713 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
29714 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
29715 msgstr ""
29716
29717 #. type: textblock
29718 #: ../tools/virt-tar.pl:71
29719 msgid ""
29720 "You can use I<-x> (extract) on live virtual machines, but you might get "
29721 "inconsistent results or errors if there is filesystem activity inside the "
29722 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
29723 "work, but the only way to guarantee consistent results is if the virtual "
29724 "machine is shut down."
29725 msgstr ""
29726
29727 #. type: textblock
29728 #: ../tools/virt-tar.pl:79
29729 msgid ""
29730 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
29731 "parts of a guest filesystem.  There are many possibilities: making backups, "
29732 "uploading data files, snooping on guest activity, fixing or customizing "
29733 "guests, etc."
29734 msgstr ""
29735
29736 #. type: textblock
29737 #: ../tools/virt-tar.pl:84
29738 msgid ""
29739 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
29740 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
29741 "should look at the L<guestfish(1)> tool."
29742 msgstr ""
29743
29744 #. type: textblock
29745 #: ../tools/virt-tar.pl:88
29746 msgid ""
29747 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
29748 "its contents (recursively) from the virtual machine into a local tarball.  "
29749 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
29750 "virtual machine.  You cannot use these two options together."
29751 msgstr ""
29752
29753 #. type: textblock
29754 #: ../tools/virt-tar.pl:94
29755 msgid ""
29756 "In addition, you may need to use the I<-z> (gZip) option to enable "
29757 "compression.  When uploading, you have to specify I<-z> if the upload file "
29758 "is compressed because virt-tar won't detect this on its own."
29759 msgstr ""
29760
29761 #. type: textblock
29762 #: ../tools/virt-tar.pl:98
29763 msgid ""
29764 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
29765 "example it cannot do PKZip files or bzip2 compression.  If you want that "
29766 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
29767 "the L<libguestfs(3)> API)."
29768 msgstr ""
29769
29770 #. type: =item
29771 #: ../tools/virt-tar.pl:156
29772 msgid "B<-x> | B<--extract> | B<--download>"
29773 msgstr ""
29774
29775 #. type: =item
29776 #: ../tools/virt-tar.pl:158
29777 msgid "B<-u> | B<--upload>"
29778 msgstr ""
29779
29780 #. type: textblock
29781 #: ../tools/virt-tar.pl:160
29782 msgid ""
29783 "Use I<-x> to extract (download) a directory from a virtual machine to a "
29784 "local tarball."
29785 msgstr ""
29786
29787 #. type: textblock
29788 #: ../tools/virt-tar.pl:163
29789 msgid ""
29790 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
29791 "Please read the L</WARNING> section above before using this option."
29792 msgstr ""
29793
29794 #. type: textblock
29795 #: ../tools/virt-tar.pl:167
29796 msgid "You must specify exactly one of these options."
29797 msgstr ""
29798
29799 #. type: =item
29800 #: ../tools/virt-tar.pl:173
29801 msgid "B<-z> | B<--gzip>"
29802 msgstr ""
29803
29804 #. type: textblock
29805 #: ../tools/virt-tar.pl:175
29806 msgid "Specify that the input or output tarball is gzip-compressed."
29807 msgstr ""
29808
29809 #. type: textblock
29810 #: ../tools/virt-tar.pl:288
29811 msgid ""
29812 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29813 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
29814 "L<virt-tar-out(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, "
29815 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29816 msgstr ""
29817
29818 #. type: textblock
29819 #: ../tools/virt-make-fs.pl:37
29820 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
29821 msgstr ""
29822
29823 #. type: verbatim
29824 #: ../tools/virt-make-fs.pl:41
29825 #, no-wrap
29826 msgid ""
29827 " virt-make-fs [--options] input.tar output.img\n"
29828 "\n"
29829 msgstr ""
29830
29831 #. type: verbatim
29832 #: ../tools/virt-make-fs.pl:43
29833 #, no-wrap
29834 msgid ""
29835 " virt-make-fs [--options] input.tar.gz output.img\n"
29836 "\n"
29837 msgstr ""
29838
29839 #. type: verbatim
29840 #: ../tools/virt-make-fs.pl:45
29841 #, no-wrap
29842 msgid ""
29843 " virt-make-fs [--options] directory output.img\n"
29844 "\n"
29845 msgstr ""
29846
29847 #. type: textblock
29848 #: ../tools/virt-make-fs.pl:49
29849 msgid ""
29850 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
29851 "archive or some files in a directory.  It is similar to tools like "
29852 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
29853 "it can create common filesystem types like ext2/3 or NTFS, which can be "
29854 "useful if you want to attach these filesystems to existing virtual machines "
29855 "(eg. to import large amounts of read-only data to a VM)."
29856 msgstr ""
29857
29858 #. type: textblock
29859 #: ../tools/virt-make-fs.pl:57
29860 msgid "Basic usage is:"
29861 msgstr ""
29862
29863 #. type: verbatim
29864 #: ../tools/virt-make-fs.pl:59
29865 #, no-wrap
29866 msgid ""
29867 " virt-make-fs input output\n"
29868 "\n"
29869 msgstr ""
29870
29871 #. type: textblock
29872 #: ../tools/virt-make-fs.pl:61
29873 msgid ""
29874 "where C<input> is either a directory containing files that you want to add, "
29875 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
29876 "C<output> is a disk image.  The input type is detected automatically.  The "
29877 "output disk image defaults to a raw ext2 image unless you specify extra "
29878 "flags (see L</OPTIONS> below)."
29879 msgstr ""
29880
29881 #. type: =head2
29882 #: ../tools/virt-make-fs.pl:67
29883 msgid "EXTRA SPACE"
29884 msgstr ""
29885
29886 #. type: textblock
29887 #: ../tools/virt-make-fs.pl:69
29888 msgid ""
29889 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
29890 "the files that it contains, but might have extra space.  Depending on how "
29891 "you are going to use the output, you might think this extra space is wasted "
29892 "and want to minimize it, or you might want to leave space so that more files "
29893 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
29894 "but you can use the I<--size> flag to leave space in the filesystem if you "
29895 "want it."
29896 msgstr ""
29897
29898 #. type: textblock
29899 #: ../tools/virt-make-fs.pl:77
29900 msgid ""
29901 "An alternative way to leave extra space but not make the output image any "
29902 "bigger is to use an alternative disk image format (instead of the default "
29903 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
29904 "image format (check your hypervisor supports this before using it).  This "
29905 "allows you to choose a large I<--size> but the extra space won't actually be "
29906 "allocated in the image until you try to store something in it."
29907 msgstr ""
29908
29909 #. type: textblock
29910 #: ../tools/virt-make-fs.pl:85
29911 msgid ""
29912 "Don't forget that you can also use local commands including L<resize2fs(8)> "
29913 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
29914 "to build another image from scratch."
29915 msgstr ""
29916
29917 #. type: =head3
29918 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
29919 msgid "EXAMPLE"
29920 msgstr ""
29921
29922 #. type: verbatim
29923 #: ../tools/virt-make-fs.pl:91
29924 #, no-wrap
29925 msgid ""
29926 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
29927 "\n"
29928 msgstr ""
29929
29930 #. type: =head2
29931 #: ../tools/virt-make-fs.pl:93
29932 msgid "FILESYSTEM TYPE"
29933 msgstr ""
29934
29935 #. type: textblock
29936 #: ../tools/virt-make-fs.pl:95
29937 msgid ""
29938 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
29939 "libguestfs supports can be used (but I<not> read-only formats like "
29940 "ISO9660).  Here are some of the more common choices:"
29941 msgstr ""
29942
29943 #. type: =item
29944 #: ../tools/virt-make-fs.pl:101
29945 msgid "I<ext3>"
29946 msgstr ""
29947
29948 #. type: textblock
29949 #: ../tools/virt-make-fs.pl:103
29950 msgid ""
29951 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
29952 "you are not going to use the filesystem in a way that requires the journal, "
29953 "then this is just wasted overhead."
29954 msgstr ""
29955
29956 #. type: =item
29957 #: ../tools/virt-make-fs.pl:107
29958 msgid "I<ntfs> or I<vfat>"
29959 msgstr ""
29960
29961 #. type: textblock
29962 #: ../tools/virt-make-fs.pl:109
29963 msgid "Useful if exporting data to a Windows guest."
29964 msgstr ""
29965
29966 #. type: textblock
29967 #: ../tools/virt-make-fs.pl:111
29968 msgid ""
29969 "I<Note for vfat>: The tar archive or local directory must only contain files "
29970 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
29971 "program running within libguestfs is unable to change the ownership of "
29972 "non-root files, since vfat itself does not support this."
29973 msgstr ""
29974
29975 #. type: =item
29976 #: ../tools/virt-make-fs.pl:116
29977 msgid "I<minix>"
29978 msgstr ""
29979
29980 #. type: textblock
29981 #: ../tools/virt-make-fs.pl:118
29982 msgid ""
29983 "Lower overhead than C<ext2>, but certain limitations on filename length and "
29984 "total filesystem size."
29985 msgstr ""
29986
29987 #. type: verbatim
29988 #: ../tools/virt-make-fs.pl:125
29989 #, no-wrap
29990 msgid ""
29991 " virt-make-fs --type=minix input minixfs.img\n"
29992 "\n"
29993 msgstr ""
29994
29995 #. type: =head2
29996 #: ../tools/virt-make-fs.pl:127
29997 msgid "TO PARTITION OR NOT TO PARTITION"
29998 msgstr ""
29999
30000 #. type: textblock
30001 #: ../tools/virt-make-fs.pl:129
30002 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30003 msgstr ""
30004
30005 #. type: textblock
30006 #: ../tools/virt-make-fs.pl:131
30007 msgid ""
30008 "Adding a partition can make the disk image more compatible with certain "
30009 "virtualized operating systems which don't expect to see a filesystem "
30010 "directly located on a block device (Linux doesn't care and will happily "
30011 "handle both types)."
30012 msgstr ""
30013
30014 #. type: textblock
30015 #: ../tools/virt-make-fs.pl:136
30016 msgid ""
30017 "On the other hand, if you have a partition table then the output image is no "
30018 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30019 "directly on a partitioned disk image.  (However libguestfs tools such as "
30020 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30021 msgstr ""
30022
30023 #. type: textblock
30024 #: ../tools/virt-make-fs.pl:144
30025 msgid "Add an MBR partition:"
30026 msgstr ""
30027
30028 #. type: verbatim
30029 #: ../tools/virt-make-fs.pl:146
30030 #, no-wrap
30031 msgid ""
30032 " virt-make-fs --partition -- input disk.img\n"
30033 "\n"
30034 msgstr ""
30035
30036 #. type: textblock
30037 #: ../tools/virt-make-fs.pl:148
30038 msgid ""
30039 "If the output disk image could be terabyte-sized or larger, it's better to "
30040 "use an EFI/GPT-compatible partition table:"
30041 msgstr ""
30042
30043 #. type: verbatim
30044 #: ../tools/virt-make-fs.pl:151
30045 #, no-wrap
30046 msgid ""
30047 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30048 "\n"
30049 msgstr ""
30050
30051 #. type: textblock
30052 #: ../tools/virt-make-fs.pl:179
30053 msgid "Enable debugging information."
30054 msgstr ""
30055
30056 #. type: =item
30057 #: ../tools/virt-make-fs.pl:185
30058 msgid "B<--size=E<lt>NE<gt>>"
30059 msgstr ""
30060
30061 #. type: =item
30062 #: ../tools/virt-make-fs.pl:187
30063 msgid "B<--size=+E<lt>NE<gt>>"
30064 msgstr ""
30065
30066 #. type: =item
30067 #: ../tools/virt-make-fs.pl:189
30068 msgid "B<-s E<lt>NE<gt>>"
30069 msgstr ""
30070
30071 #. type: =item
30072 #: ../tools/virt-make-fs.pl:191
30073 msgid "B<-s +E<lt>NE<gt>>"
30074 msgstr ""
30075
30076 #. type: textblock
30077 #: ../tools/virt-make-fs.pl:193
30078 msgid "Use the I<--size> (or I<-s>) option to choose the size of the output image."
30079 msgstr ""
30080
30081 #. type: textblock
30082 #: ../tools/virt-make-fs.pl:196
30083 msgid ""
30084 "If this option is I<not> given, then the output image will be just large "
30085 "enough to contain all the files, with not much wasted space."
30086 msgstr ""
30087
30088 #. type: textblock
30089 #: ../tools/virt-make-fs.pl:199
30090 msgid ""
30091 "To choose a fixed size output disk, specify an absolute number followed by "
30092 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30093 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30094 "files, else you will get an error."
30095 msgstr ""
30096
30097 #. type: textblock
30098 #: ../tools/virt-make-fs.pl:204
30099 msgid ""
30100 "To leave extra space, specify C<+> (plus sign) and a number followed by "
30101 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30102 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
30103 "the input files, and (approximately) an extra 200 MB free space."
30104 msgstr ""
30105
30106 #. type: textblock
30107 #: ../tools/virt-make-fs.pl:210
30108 msgid ""
30109 "Note that virt-make-fs estimates free space, and therefore will not produce "
30110 "filesystems containing precisely the free space requested.  (It is much more "
30111 "expensive and time-consuming to produce a filesystem which has precisely the "
30112 "desired free space)."
30113 msgstr ""
30114
30115 #. type: =item
30116 #: ../tools/virt-make-fs.pl:219
30117 msgid "B<--format=E<lt>fmtE<gt>>"
30118 msgstr ""
30119
30120 #. type: =item
30121 #: ../tools/virt-make-fs.pl:221
30122 msgid "B<-F E<lt>fmtE<gt>>"
30123 msgstr ""
30124
30125 #. type: textblock
30126 #: ../tools/virt-make-fs.pl:223
30127 msgid "Choose the output disk image format."
30128 msgstr ""
30129
30130 #. type: textblock
30131 #: ../tools/virt-make-fs.pl:225
30132 msgid "The default is C<raw> (raw disk image)."
30133 msgstr ""
30134
30135 #. type: textblock
30136 #: ../tools/virt-make-fs.pl:227
30137 msgid ""
30138 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30139 "that would really make sense here is C<qcow2>."
30140 msgstr ""
30141
30142 #. type: =item
30143 #: ../tools/virt-make-fs.pl:234
30144 msgid "B<--type=E<lt>fsE<gt>>"
30145 msgstr ""
30146
30147 #. type: =item
30148 #: ../tools/virt-make-fs.pl:236
30149 msgid "B<-t E<lt>fsE<gt>>"
30150 msgstr ""
30151
30152 #. type: textblock
30153 #: ../tools/virt-make-fs.pl:238
30154 msgid "Choose the output filesystem type."
30155 msgstr ""
30156
30157 #. type: textblock
30158 #: ../tools/virt-make-fs.pl:240
30159 msgid "The default is C<ext2>."
30160 msgstr ""
30161
30162 #. type: textblock
30163 #: ../tools/virt-make-fs.pl:242
30164 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
30165 msgstr ""
30166
30167 #. type: =item
30168 #: ../tools/virt-make-fs.pl:249
30169 msgid "B<--partition>"
30170 msgstr ""
30171
30172 #. type: =item
30173 #: ../tools/virt-make-fs.pl:251
30174 msgid "B<--partition=E<lt>parttypeE<gt>>"
30175 msgstr ""
30176
30177 #. type: textblock
30178 #: ../tools/virt-make-fs.pl:253
30179 msgid ""
30180 "If specified, this flag adds an MBR partition table to the output disk "
30181 "image."
30182 msgstr ""
30183
30184 #. type: textblock
30185 #: ../tools/virt-make-fs.pl:256
30186 msgid ""
30187 "You can change the partition table type, eg. I<--partition=gpt> for large "
30188 "disks."
30189 msgstr ""
30190
30191 #. type: textblock
30192 #: ../tools/virt-make-fs.pl:259
30193 msgid ""
30194 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
30195 "might consider the next parameter to be the partition type.  For example:"
30196 msgstr ""
30197
30198 #. type: verbatim
30199 #: ../tools/virt-make-fs.pl:263
30200 #, no-wrap
30201 msgid ""
30202 " virt-make-fs --partition input.tar ...\n"
30203 "\n"
30204 msgstr ""
30205
30206 #. type: textblock
30207 #: ../tools/virt-make-fs.pl:265
30208 msgid ""
30209 "would cause virt-make-fs to think you wanted to use a partition type of "
30210 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
30211 "dash) between options and the input file argument:"
30212 msgstr ""
30213
30214 #. type: verbatim
30215 #: ../tools/virt-make-fs.pl:269
30216 #, no-wrap
30217 msgid ""
30218 " virt-make-fs --partition -- input.tar ...\n"
30219 "\n"
30220 msgstr ""
30221
30222 #. type: textblock
30223 #: ../tools/virt-make-fs.pl:541
30224 msgid ""
30225 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30226 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
30227 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30228 msgstr ""
30229
30230 #. type: verbatim
30231 #: ../tools/virt-make-fs.pl:558
30232 #, no-wrap
30233 msgid ""
30234 " export LIBGUESTFS_DEBUG=1\n"
30235 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30236 "\n"
30237 msgstr ""
30238
30239 #. type: textblock
30240 #: ../tools/virt-make-fs.pl:561
30241 msgid ""
30242 "Attach /tmp/virt-make-fs.log to a new bug report at "
30243 "L<https://bugzilla.redhat.com/>"
30244 msgstr ""
30245
30246 #. type: textblock
30247 #: ../tools/virt-list-partitions.pl:32
30248 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
30249 msgstr ""
30250
30251 #. type: verbatim
30252 #: ../tools/virt-list-partitions.pl:36
30253 #, no-wrap
30254 msgid ""
30255 " virt-list-partitions [--options] domname\n"
30256 "\n"
30257 msgstr ""
30258
30259 #. type: verbatim
30260 #: ../tools/virt-list-partitions.pl:38
30261 #, no-wrap
30262 msgid ""
30263 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30264 "\n"
30265 msgstr ""
30266
30267 #. type: textblock
30268 #: ../tools/virt-list-partitions.pl:45
30269 msgid ""
30270 "C<virt-list-partitions> is a command line tool to list the partitions that "
30271 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30272 "first step to using L<virt-resize(1)>."
30273 msgstr ""
30274
30275 #. type: textblock
30276 #: ../tools/virt-list-partitions.pl:50
30277 msgid ""
30278 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30279 "functionality.  For more complex cases you should look at the "
30280 "L<guestfish(1)> tool."
30281 msgstr ""
30282
30283 #. type: =item
30284 #: ../tools/virt-list-partitions.pl:107
30285 msgid "B<-h> | B<--human-readable>"
30286 msgstr ""
30287
30288 #. type: textblock
30289 #: ../tools/virt-list-partitions.pl:109
30290 msgid "Show sizes in human-readable form (eg. \"1G\")."
30291 msgstr ""
30292
30293 #. type: textblock
30294 #: ../tools/virt-list-partitions.pl:117
30295 msgid ""
30296 "With this option, C<virt-list-partitions> displays the type and size of each "
30297 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30298 msgstr ""
30299
30300 #. type: =item
30301 #: ../tools/virt-list-partitions.pl:124
30302 msgid "B<-t> | B<--total>"
30303 msgstr ""
30304
30305 #. type: textblock
30306 #: ../tools/virt-list-partitions.pl:126
30307 msgid "Display the total size of each block device (as a separate row or rows)."
30308 msgstr ""
30309
30310 #. type: textblock
30311 #: ../tools/virt-list-partitions.pl:259
30312 msgid ""
30313 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
30314 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
30315 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30316 msgstr ""
30317
30318 #. type: textblock
30319 #: ../tools/virt-list-partitions.pl:275
30320 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30321 msgstr ""