Version 1.11.14.
[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.14\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-07-06 15:21+0200\n"
12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 "Language-Team: LANGUAGE <LL@li.org>\n"
15 "Language: \n"
16 "MIME-Version: 1.0\n"
17 "Content-Type: text/plain; charset=UTF-8\n"
18 "Content-Transfer-Encoding: 8bit\n"
19
20 #. type: =head1
21 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3 ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3 ../tools/virt-win-reg.pl:35 ../tools/virt-list-filesystems.pl:30 ../tools/virt-tar.pl:31 ../tools/virt-make-fs.pl:35 ../tools/virt-list-partitions.pl:30
22 msgid "NAME"
23 msgstr ""
24
25 #. type: textblock
26 #: ../src/guestfs.pod:5
27 msgid "guestfs - Library for accessing and modifying virtual machine images"
28 msgstr ""
29
30 #. type: =head1
31 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7 ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7 ../tools/virt-win-reg.pl:39 ../tools/virt-list-filesystems.pl:34 ../tools/virt-tar.pl:35 ../tools/virt-make-fs.pl:39 ../tools/virt-list-partitions.pl:34
32 msgid "SYNOPSIS"
33 msgstr ""
34
35 #. type: verbatim
36 #: ../src/guestfs.pod:9
37 #, no-wrap
38 msgid ""
39 " #include <guestfs.h>\n"
40 " \n"
41 msgstr ""
42
43 #. type: verbatim
44 #: ../src/guestfs.pod:11
45 #, no-wrap
46 msgid ""
47 " guestfs_h *g = guestfs_create ();\n"
48 " guestfs_add_drive (g, \"guest.img\");\n"
49 " guestfs_launch (g);\n"
50 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
51 " guestfs_touch (g, \"/hello\");\n"
52 " guestfs_umount (g, \"/\");\n"
53 " guestfs_close (g);\n"
54 "\n"
55 msgstr ""
56
57 #. type: verbatim
58 #: ../src/guestfs.pod:19
59 #, no-wrap
60 msgid ""
61 " cc prog.c -o prog -lguestfs\n"
62 "or:\n"
63 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
64 "\n"
65 msgstr ""
66
67 #. type: =head1
68 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30 ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20 ../tools/virt-win-reg.pl:63 ../tools/virt-list-filesystems.pl:40 ../tools/virt-tar.pl:77 ../tools/virt-make-fs.pl:47 ../tools/virt-list-partitions.pl:40
69 msgid "DESCRIPTION"
70 msgstr ""
71
72 #. type: textblock
73 #: ../src/guestfs.pod:25
74 msgid ""
75 "Libguestfs is a library for accessing and modifying guest disk images.  "
76 "Amongst the things this is good for: making batch configuration changes to "
77 "guests, getting disk used/free statistics (see also: virt-df), migrating "
78 "between virtualization systems (see also: virt-p2v), performing partial "
79 "backups, performing partial guest clones, cloning guests and changing "
80 "registry/UUID/hostname info, and much else besides."
81 msgstr ""
82
83 #. type: textblock
84 #: ../src/guestfs.pod:33
85 msgid ""
86 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest "
87 "filesystem that Linux and qemu can, including but not limited to: ext2/3/4, "
88 "btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
89 "qcow2, vmdk."
90 msgstr ""
91
92 #. type: textblock
93 #: ../src/guestfs.pod:38
94 msgid ""
95 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
96 "what filesystem is in each LV, etc.).  It can also run commands in the "
97 "context of the guest.  Also you can access filesystems over FUSE."
98 msgstr ""
99
100 #. type: textblock
101 #: ../src/guestfs.pod:43
102 msgid ""
103 "Libguestfs is a library that can be linked with C and C++ management "
104 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java, "
105 "PHP, Haskell or C#).  You can also use it from shell scripts or the command "
106 "line."
107 msgstr ""
108
109 #. type: textblock
110 #: ../src/guestfs.pod:48
111 msgid ""
112 "You don't need to be root to use libguestfs, although obviously you do need "
113 "enough permissions to access the disk images."
114 msgstr ""
115
116 #. type: textblock
117 #: ../src/guestfs.pod:51
118 msgid ""
119 "Libguestfs is a large API because it can do many things.  For a gentle "
120 "introduction, please read the L</API OVERVIEW> section next."
121 msgstr ""
122
123 #. type: textblock
124 #: ../src/guestfs.pod:54
125 msgid ""
126 "There are also some example programs in the L<guestfs-examples(3)> manual "
127 "page."
128 msgstr ""
129
130 #. type: =head1
131 #: ../src/guestfs.pod:57
132 msgid "API OVERVIEW"
133 msgstr ""
134
135 #. type: textblock
136 #: ../src/guestfs.pod:59
137 msgid ""
138 "This section provides a gentler overview of the libguestfs API.  We also try "
139 "to group API calls together, where that may not be obvious from reading "
140 "about the individual calls in the main section of this manual."
141 msgstr ""
142
143 #. type: =head2
144 #: ../src/guestfs.pod:64
145 msgid "HANDLES"
146 msgstr ""
147
148 #. type: textblock
149 #: ../src/guestfs.pod:66
150 msgid ""
151 "Before you can use libguestfs calls, you have to create a handle.  Then you "
152 "must add at least one disk image to the handle, followed by launching the "
153 "handle, then performing whatever operations you want, and finally closing "
154 "the handle.  By convention we use the single letter C<g> for the name of the "
155 "handle variable, although of course you can use any name you want."
156 msgstr ""
157
158 #. type: textblock
159 #: ../src/guestfs.pod:73
160 msgid "The general structure of all libguestfs-using programs looks like this:"
161 msgstr ""
162
163 #. type: verbatim
164 #: ../src/guestfs.pod:76
165 #, no-wrap
166 msgid ""
167 " guestfs_h *g = guestfs_create ();\n"
168 " \n"
169 msgstr ""
170
171 #. type: verbatim
172 #: ../src/guestfs.pod:78
173 #, no-wrap
174 msgid ""
175 " /* Call guestfs_add_drive additional times if there are\n"
176 "  * multiple disk images.\n"
177 "  */\n"
178 " guestfs_add_drive (g, \"guest.img\");\n"
179 " \n"
180 msgstr ""
181
182 #. type: verbatim
183 #: ../src/guestfs.pod:83
184 #, no-wrap
185 msgid ""
186 " /* Most manipulation calls won't work until you've launched\n"
187 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
188 "  * and _before_ other commands.\n"
189 "  */\n"
190 " guestfs_launch (g);\n"
191 " \n"
192 msgstr ""
193
194 #. type: verbatim
195 #: ../src/guestfs.pod:89
196 #, no-wrap
197 msgid ""
198 " /* Now you can examine what partitions, LVs etc are available.\n"
199 "  */\n"
200 " char **partitions = guestfs_list_partitions (g);\n"
201 " char **logvols = guestfs_lvs (g);\n"
202 " \n"
203 msgstr ""
204
205 #. type: verbatim
206 #: ../src/guestfs.pod:94
207 #, no-wrap
208 msgid ""
209 " /* To access a filesystem in the image, you must mount it.\n"
210 "  */\n"
211 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
212 " \n"
213 msgstr ""
214
215 #. type: verbatim
216 #: ../src/guestfs.pod:98
217 #, no-wrap
218 msgid ""
219 " /* Now you can perform filesystem actions on the guest\n"
220 "  * disk image.\n"
221 "  */\n"
222 " guestfs_touch (g, \"/hello\");\n"
223 " \n"
224 msgstr ""
225
226 #. type: verbatim
227 #: ../src/guestfs.pod:103
228 #, no-wrap
229 msgid ""
230 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
231 "  * it is done automatically when you close the handle.  See\n"
232 "  * discussion of autosync in this page.\n"
233 "  */\n"
234 " guestfs_sync (g);\n"
235 " \n"
236 msgstr ""
237
238 #. type: verbatim
239 #: ../src/guestfs.pod:109
240 #, no-wrap
241 msgid ""
242 " /* Close the handle 'g'. */\n"
243 " guestfs_close (g);\n"
244 "\n"
245 msgstr ""
246
247 #. type: textblock
248 #: ../src/guestfs.pod:112
249 msgid ""
250 "The code above doesn't include any error checking.  In real code you should "
251 "check return values carefully for errors.  In general all functions that "
252 "return integers return C<-1> on error, and all functions that return "
253 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
254 "how to handle errors, and consult the documentation for each function call "
255 "below to see precisely how they return error indications.  See "
256 "L<guestfs-examples(3)> for fully worked examples."
257 msgstr ""
258
259 #. type: =head2
260 #: ../src/guestfs.pod:121
261 msgid "DISK IMAGES"
262 msgstr ""
263
264 #. type: textblock
265 #: ../src/guestfs.pod:123
266 msgid ""
267 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
268 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
269 "actual block device, or simply an empty file of zeroes that you have created "
270 "through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all "
271 "of these."
272 msgstr ""
273
274 #. type: textblock
275 #: ../src/guestfs.pod:129
276 msgid ""
277 "The call you should use in modern code for adding drives is "
278 "L</guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
279 "specifying that the format is raw, do:"
280 msgstr ""
281
282 #. type: verbatim
283 #: ../src/guestfs.pod:133
284 #, no-wrap
285 msgid ""
286 " guestfs_add_drive_opts (g, filename,\n"
287 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
288 "                         -1);\n"
289 "\n"
290 msgstr ""
291
292 #. type: textblock
293 #: ../src/guestfs.pod:137
294 msgid "You can add a disk read-only using:"
295 msgstr ""
296
297 #. type: verbatim
298 #: ../src/guestfs.pod:139
299 #, no-wrap
300 msgid ""
301 " guestfs_add_drive_opts (g, filename,\n"
302 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
303 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
304 "                         -1);\n"
305 "\n"
306 msgstr ""
307
308 #. type: textblock
309 #: ../src/guestfs.pod:144
310 msgid ""
311 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
312 "libguestfs won't modify the file."
313 msgstr ""
314
315 #. type: textblock
316 #: ../src/guestfs.pod:147
317 msgid ""
318 "Be extremely cautious if the disk image is in use, eg. if it is being used "
319 "by a virtual machine.  Adding it read-write will almost certainly cause disk "
320 "corruption, but adding it read-only is safe."
321 msgstr ""
322
323 #. type: textblock
324 #: ../src/guestfs.pod:151
325 msgid ""
326 "You must add at least one disk image, and you may add multiple disk images.  "
327 "In the API, the disk images are usually referred to as C</dev/sda> (for the "
328 "first one you added), C</dev/sdb> (for the second one you added), etc."
329 msgstr ""
330
331 #. type: textblock
332 #: ../src/guestfs.pod:156
333 msgid ""
334 "Once L</guestfs_launch> has been called you cannot add any more images.  You "
335 "can call L</guestfs_list_devices> to get a list of the device names, in the "
336 "order that you added them.  See also L</BLOCK DEVICE NAMING> below."
337 msgstr ""
338
339 #. type: =head2
340 #: ../src/guestfs.pod:161
341 msgid "MOUNTING"
342 msgstr ""
343
344 #. type: textblock
345 #: ../src/guestfs.pod:163
346 msgid ""
347 "Before you can read or write files, create directories and so on in a disk "
348 "image that contains filesystems, you have to mount those filesystems using "
349 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that "
350 "a disk image contains (for example) one partition with a filesystem on that "
351 "partition, then you can mount it directly:"
352 msgstr ""
353
354 #. type: verbatim
355 #: ../src/guestfs.pod:170
356 #, no-wrap
357 msgid ""
358 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
359 "\n"
360 msgstr ""
361
362 #. type: textblock
363 #: ../src/guestfs.pod:172
364 msgid ""
365 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
366 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
367 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
368 "that these are libguestfs virtual devices, and are nothing to do with host "
369 "devices."
370 msgstr ""
371
372 #. type: textblock
373 #: ../src/guestfs.pod:178
374 msgid ""
375 "If you are given a disk image and you don't know what it contains then you "
376 "have to find out.  Libguestfs can do that too: use "
377 "L</guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions "
378 "and LVs, and either try mounting each to see what is mountable, or else "
379 "examine them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
380 "filesystems, use L</guestfs_list_filesystems>."
381 msgstr ""
382
383 #. type: textblock
384 #: ../src/guestfs.pod:186
385 msgid ""
386 "Libguestfs also has a set of APIs for inspection of unknown disk images (see "
387 "L</INSPECTION> below).  But you might find it easier to look at higher level "
388 "programs built on top of libguestfs, in particular L<virt-inspector(1)>."
389 msgstr ""
390
391 #. type: textblock
392 #: ../src/guestfs.pod:191
393 msgid ""
394 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
395 "several other variations of the C<guestfs_mount_*> call."
396 msgstr ""
397
398 #. type: =head2
399 #: ../src/guestfs.pod:194
400 msgid "FILESYSTEM ACCESS AND MODIFICATION"
401 msgstr ""
402
403 #. type: textblock
404 #: ../src/guestfs.pod:196
405 msgid ""
406 "The majority of the libguestfs API consists of fairly low-level calls for "
407 "accessing and modifying the files, directories, symlinks etc on mounted "
408 "filesystems.  There are over a hundred such calls which you can find listed "
409 "in detail below in this man page, and we don't even pretend to cover them "
410 "all in this overview."
411 msgstr ""
412
413 #. type: textblock
414 #: ../src/guestfs.pod:202
415 msgid ""
416 "Specify filenames as full paths, starting with C<\"/\"> and including the "
417 "mount point."
418 msgstr ""
419
420 #. type: textblock
421 #: ../src/guestfs.pod:205
422 msgid ""
423 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
424 "the file called C<\"etc/passwd\"> then you could do:"
425 msgstr ""
426
427 #. type: verbatim
428 #: ../src/guestfs.pod:208
429 #, no-wrap
430 msgid ""
431 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
432 "\n"
433 msgstr ""
434
435 #. type: textblock
436 #: ../src/guestfs.pod:210
437 msgid ""
438 "This would return C<data> as a newly allocated buffer containing the full "
439 "content of that file (with some conditions: see also L</DOWNLOADING> below), "
440 "or C<NULL> if there was an error."
441 msgstr ""
442
443 #. type: textblock
444 #: ../src/guestfs.pod:214
445 msgid ""
446 "As another example, to create a top-level directory on that filesystem "
447 "called C<\"var\"> you would do:"
448 msgstr ""
449
450 #. type: verbatim
451 #: ../src/guestfs.pod:217
452 #, no-wrap
453 msgid ""
454 " guestfs_mkdir (g, \"/var\");\n"
455 "\n"
456 msgstr ""
457
458 #. type: textblock
459 #: ../src/guestfs.pod:219
460 msgid "To create a symlink you could do:"
461 msgstr ""
462
463 #. type: verbatim
464 #: ../src/guestfs.pod:221
465 #, no-wrap
466 msgid ""
467 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
468 "               \"/etc/rc3.d/S30portmap\");\n"
469 "\n"
470 msgstr ""
471
472 #. type: textblock
473 #: ../src/guestfs.pod:224
474 msgid ""
475 "Libguestfs will reject attempts to use relative paths and there is no "
476 "concept of a current working directory."
477 msgstr ""
478
479 #. type: textblock
480 #: ../src/guestfs.pod:227
481 msgid ""
482 "Libguestfs can return errors in many situations: for example if the "
483 "filesystem isn't writable, or if a file or directory that you requested "
484 "doesn't exist.  If you are using the C API (documented here)  you have to "
485 "check for those error conditions after each call.  (Other language bindings "
486 "turn these errors into exceptions)."
487 msgstr ""
488
489 #. type: textblock
490 #: ../src/guestfs.pod:233
491 msgid ""
492 "File writes are affected by the per-handle umask, set by calling "
493 "L</guestfs_umask> and defaulting to 022.  See L</UMASK>."
494 msgstr ""
495
496 #. type: =head2
497 #: ../src/guestfs.pod:236
498 msgid "PARTITIONING"
499 msgstr ""
500
501 #. type: textblock
502 #: ../src/guestfs.pod:238
503 msgid ""
504 "Libguestfs contains API calls to read, create and modify partition tables on "
505 "disk images."
506 msgstr ""
507
508 #. type: textblock
509 #: ../src/guestfs.pod:241
510 msgid ""
511 "In the common case where you want to create a single partition covering the "
512 "whole disk, you should use the L</guestfs_part_disk> call:"
513 msgstr ""
514
515 #. type: verbatim
516 #: ../src/guestfs.pod:245
517 #, no-wrap
518 msgid ""
519 " const char *parttype = \"mbr\";\n"
520 " if (disk_is_larger_than_2TB)\n"
521 "   parttype = \"gpt\";\n"
522 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
523 "\n"
524 msgstr ""
525
526 #. type: textblock
527 #: ../src/guestfs.pod:250
528 msgid ""
529 "Obviously this effectively wipes anything that was on that disk image "
530 "before."
531 msgstr ""
532
533 #. type: =head2
534 #: ../src/guestfs.pod:253
535 msgid "LVM2"
536 msgstr ""
537
538 #. type: textblock
539 #: ../src/guestfs.pod:255
540 msgid ""
541 "Libguestfs provides access to a large part of the LVM2 API, such as "
542 "L</guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense "
543 "unless you familiarize yourself with the concepts of physical volumes, "
544 "volume groups and logical volumes."
545 msgstr ""
546
547 #. type: textblock
548 #: ../src/guestfs.pod:260
549 msgid ""
550 "This author strongly recommends reading the LVM HOWTO, online at "
551 "L<http://tldp.org/HOWTO/LVM-HOWTO/>."
552 msgstr ""
553
554 #. type: =head2
555 #: ../src/guestfs.pod:263
556 msgid "DOWNLOADING"
557 msgstr ""
558
559 #. type: textblock
560 #: ../src/guestfs.pod:265
561 msgid ""
562 "Use L</guestfs_cat> to download small, text only files.  This call is "
563 "limited to files which are less than 2 MB and which cannot contain any ASCII "
564 "NUL (C<\\0>) characters.  However the API is very simple to use."
565 msgstr ""
566
567 #. type: textblock
568 #: ../src/guestfs.pod:269
569 msgid ""
570 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
571 "bit data, since it returns a (pointer, size) pair.  However it is still "
572 "limited to \"small\" files, less than 2 MB."
573 msgstr ""
574
575 #. type: textblock
576 #: ../src/guestfs.pod:273
577 msgid ""
578 "L</guestfs_download> can be used to download any file, with no limits on "
579 "content or size (even files larger than 4 GB)."
580 msgstr ""
581
582 #. type: textblock
583 #: ../src/guestfs.pod:276
584 msgid "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
585 msgstr ""
586
587 #. type: =head2
588 #: ../src/guestfs.pod:279
589 msgid "UPLOADING"
590 msgstr ""
591
592 #. type: textblock
593 #: ../src/guestfs.pod:281
594 msgid ""
595 "It's often the case that you want to write a file or files to the disk "
596 "image."
597 msgstr ""
598
599 #. type: textblock
600 #: ../src/guestfs.pod:284
601 msgid ""
602 "To write a small file with fixed content, use L</guestfs_write>.  To create "
603 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or "
604 "L</guestfs_fallocate64> (with all disk blocks allocated).  There are a "
605 "variety of other functions for creating test files, for example "
606 "L</guestfs_fill> and L</guestfs_fill_pattern>."
607 msgstr ""
608
609 #. type: textblock
610 #: ../src/guestfs.pod:290
611 msgid ""
612 "To upload a single file, use L</guestfs_upload>.  This call has no limits on "
613 "file content or size (even files larger than 4 GB)."
614 msgstr ""
615
616 #. type: textblock
617 #: ../src/guestfs.pod:293
618 msgid "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
619 msgstr ""
620
621 #. type: textblock
622 #: ../src/guestfs.pod:295
623 msgid ""
624 "However the fastest way to upload I<large numbers of arbitrary files> is to "
625 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and "
626 "L<mkisofs(8)>), then attach this using L</guestfs_add_drive_ro>.  If you add "
627 "the drive in a predictable way (eg. adding it last after all other drives) "
628 "then you can get the device name from L</guestfs_list_devices> and mount it "
629 "directly using L</guestfs_mount_ro>.  Note that squashfs images are "
630 "sometimes non-portable between kernel versions, and they don't support "
631 "labels or UUIDs.  If you want to pre-build an image or you need to mount it "
632 "using a label or UUID, use an ISO image instead."
633 msgstr ""
634
635 #. type: =head2
636 #: ../src/guestfs.pod:306
637 msgid "COPYING"
638 msgstr ""
639
640 #. type: textblock
641 #: ../src/guestfs.pod:308
642 msgid ""
643 "There are various different commands for copying between files and devices "
644 "and in and out of the guest filesystem.  These are summarised in the table "
645 "below."
646 msgstr ""
647
648 #. type: =item
649 #: ../src/guestfs.pod:314
650 msgid "B<file> to B<file>"
651 msgstr ""
652
653 #. type: textblock
654 #: ../src/guestfs.pod:316
655 msgid ""
656 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
657 "directories recursively."
658 msgstr ""
659
660 #. type: =item
661 #: ../src/guestfs.pod:319
662 msgid "B<file or device> to B<file or device>"
663 msgstr ""
664
665 #. type: textblock
666 #: ../src/guestfs.pod:321
667 msgid ""
668 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and "
669 "devices in the guest."
670 msgstr ""
671
672 #. type: textblock
673 #: ../src/guestfs.pod:324
674 msgid "Example: duplicate the contents of an LV:"
675 msgstr ""
676
677 #. type: verbatim
678 #: ../src/guestfs.pod:326
679 #, no-wrap
680 msgid ""
681 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
682 "\n"
683 msgstr ""
684
685 #. type: textblock
686 #: ../src/guestfs.pod:328
687 msgid ""
688 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
689 "(C</dev/VG/Original>).  To copy less than the whole source device, use "
690 "L</guestfs_copy_size>."
691 msgstr ""
692
693 #. type: =item
694 #: ../src/guestfs.pod:332
695 msgid "B<file on the host> to B<file or device>"
696 msgstr ""
697
698 #. type: textblock
699 #: ../src/guestfs.pod:334
700 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
701 msgstr ""
702
703 #. type: =item
704 #: ../src/guestfs.pod:336
705 msgid "B<file or device> to B<file on the host>"
706 msgstr ""
707
708 #. type: textblock
709 #: ../src/guestfs.pod:338
710 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
711 msgstr ""
712
713 #. type: =head2
714 #: ../src/guestfs.pod:342
715 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
716 msgstr ""
717
718 #. type: textblock
719 #: ../src/guestfs.pod:344
720 msgid ""
721 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, "
722 "L</guestfs_tar_out> etc appear to only take filenames as arguments, so it "
723 "appears you can only upload and download to files.  However many Un*x-like "
724 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, "
725 "C</dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, "
726 "stderr, and arbitrary file descriptor N."
727 msgstr ""
728
729 #. type: textblock
730 #: ../src/guestfs.pod:352
731 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
732 msgstr ""
733
734 #. type: verbatim
735 #: ../src/guestfs.pod:355
736 #, no-wrap
737 msgid ""
738 " guestfs_download (g, filename, \"/dev/stdout\");\n"
739 "\n"
740 msgstr ""
741
742 #. type: textblock
743 #: ../src/guestfs.pod:357
744 msgid "and you can write tar output to a file descriptor C<fd> by doing:"
745 msgstr ""
746
747 #. type: verbatim
748 #: ../src/guestfs.pod:359
749 #, no-wrap
750 msgid ""
751 " char devfd[64];\n"
752 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
753 " guestfs_tar_out (g, \"/\", devfd);\n"
754 "\n"
755 msgstr ""
756
757 #. type: =head2
758 #: ../src/guestfs.pod:363
759 msgid "LISTING FILES"
760 msgstr ""
761
762 #. type: textblock
763 #: ../src/guestfs.pod:365
764 msgid ""
765 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
766 "L<guestfish(1)>-equivalent command C<ll>)."
767 msgstr ""
768
769 #. type: textblock
770 #: ../src/guestfs.pod:368
771 msgid ""
772 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
773 "programs, as a flat list of strings."
774 msgstr ""
775
776 #. type: textblock
777 #: ../src/guestfs.pod:371
778 msgid ""
779 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
780 "directory, plus additional information about each one.  It is more "
781 "equivalent to using the L<readdir(3)> call on a local filesystem."
782 msgstr ""
783
784 #. type: textblock
785 #: ../src/guestfs.pod:375
786 msgid ""
787 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list "
788 "files."
789 msgstr ""
790
791 #. type: =head2
792 #: ../src/guestfs.pod:378
793 msgid "RUNNING COMMANDS"
794 msgstr ""
795
796 #. type: textblock
797 #: ../src/guestfs.pod:380
798 msgid ""
799 "Although libguestfs is primarily an API for manipulating files inside guest "
800 "images, we also provide some limited facilities for running commands inside "
801 "guests."
802 msgstr ""
803
804 #. type: textblock
805 #: ../src/guestfs.pod:384
806 msgid "There are many limitations to this:"
807 msgstr ""
808
809 #. type: =item
810 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398 ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411 ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1064 ../src/guestfs.pod:1068 ../src/guestfs.pod:1072 ../src/guestfs.pod:1077 ../src/guestfs.pod:1085 ../src/guestfs.pod:1104 ../src/guestfs.pod:1112 ../src/guestfs.pod:1134 ../src/guestfs.pod:1138 ../src/guestfs.pod:1142 ../src/guestfs.pod:1146 ../src/guestfs.pod:1150 ../src/guestfs.pod:1154 ../src/guestfs.pod:1643 ../src/guestfs.pod:1648 ../src/guestfs.pod:1652 ../src/guestfs.pod:1754 ../src/guestfs.pod:1759 ../src/guestfs.pod:1763 ../src/guestfs.pod:1773 ../src/guestfs.pod:2008 ../src/guestfs.pod:2013 ../src/guestfs.pod:2019 ../src/guestfs.pod:2027 ../src/guestfs.pod:2381 ../src/guestfs.pod:2387 ../src/guestfs.pod:2392 ../src/guestfs.pod:2398 ../src/guestfs.pod:2972 ../src/guestfs.pod:2976 ../src/guestfs.pod:2980 ../src/guestfs.pod:2984 ../src/guestfs-actions.pod:15 ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:583 ../src/guestfs-actions.pod:591 ../src/guestfs-actions.pod:598 ../src/guestfs-actions.pod:605 ../src/guestfs-actions.pod:1603 ../src/guestfs-actions.pod:1607 ../src/guestfs-actions.pod:1611 ../src/guestfs-actions.pod:1615 ../src/guestfs-actions.pod:1623 ../src/guestfs-actions.pod:1627 ../src/guestfs-actions.pod:1631 ../src/guestfs-actions.pod:1641 ../src/guestfs-actions.pod:1645 ../src/guestfs-actions.pod:1649 ../src/guestfs-actions.pod:1787 ../src/guestfs-actions.pod:1791 ../src/guestfs-actions.pod:1796 ../src/guestfs-actions.pod:1801 ../src/guestfs-actions.pod:1862 ../src/guestfs-actions.pod:1866 ../src/guestfs-actions.pod:1871 ../src/guestfs-actions.pod:2789 ../src/guestfs-actions.pod:2795 ../src/guestfs-actions.pod:2803 ../src/guestfs-actions.pod:2810 ../src/guestfs-actions.pod:2817 ../fish/guestfish.pod:445 ../fish/guestfish.pod:449 ../fish/guestfish.pod:453 ../fish/guestfish.pod:457 ../fish/guestfish-actions.pod:13 ../fish/guestfish-actions.pod:20 ../fish/guestfish-actions.pod:385 ../fish/guestfish-actions.pod:393 ../fish/guestfish-actions.pod:400 ../fish/guestfish-actions.pod:407 ../fish/guestfish-actions.pod:1074 ../fish/guestfish-actions.pod:1078 ../fish/guestfish-actions.pod:1082 ../fish/guestfish-actions.pod:1086 ../fish/guestfish-actions.pod:1094 ../fish/guestfish-actions.pod:1098 ../fish/guestfish-actions.pod:1102 ../fish/guestfish-actions.pod:1112 ../fish/guestfish-actions.pod:1116 ../fish/guestfish-actions.pod:1120 ../fish/guestfish-actions.pod:1210 ../fish/guestfish-actions.pod:1214 ../fish/guestfish-actions.pod:1219 ../fish/guestfish-actions.pod:1224 ../fish/guestfish-actions.pod:1266 ../fish/guestfish-actions.pod:1270 ../fish/guestfish-actions.pod:1275 ../fish/guestfish-actions.pod:1902 ../fish/guestfish-actions.pod:1908 ../fish/guestfish-actions.pod:1916 ../fish/guestfish-actions.pod:1923 ../fish/guestfish-actions.pod:1930 ../tools/virt-win-reg.pl:195 ../tools/virt-win-reg.pl:200 ../tools/virt-win-reg.pl:206 ../tools/virt-win-reg.pl:708 ../tools/virt-win-reg.pl:714 ../tools/virt-win-reg.pl:720
811 msgid "*"
812 msgstr ""
813
814 #. type: textblock
815 #: ../src/guestfs.pod:390
816 msgid ""
817 "The kernel version that the command runs under will be different from what "
818 "it expects."
819 msgstr ""
820
821 #. type: textblock
822 #: ../src/guestfs.pod:395
823 msgid ""
824 "If the command needs to communicate with daemons, then most likely they "
825 "won't be running."
826 msgstr ""
827
828 #. type: textblock
829 #: ../src/guestfs.pod:400
830 msgid "The command will be running in limited memory."
831 msgstr ""
832
833 #. type: textblock
834 #: ../src/guestfs.pod:404
835 msgid ""
836 "The network may not be available unless you enable it (see "
837 "L</guestfs_set_network>)."
838 msgstr ""
839
840 #. type: textblock
841 #: ../src/guestfs.pod:409
842 msgid "Only supports Linux guests (not Windows, BSD, etc)."
843 msgstr ""
844
845 #. type: textblock
846 #: ../src/guestfs.pod:413
847 msgid "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
848 msgstr ""
849
850 #. type: textblock
851 #: ../src/guestfs.pod:418
852 msgid ""
853 "For SELinux guests, you may need to enable SELinux and load policy first.  "
854 "See L</SELINUX> in this manpage."
855 msgstr ""
856
857 #. type: textblock
858 #: ../src/guestfs.pod:423
859 msgid ""
860 "I<Security:> It is not safe to run commands from untrusted, possibly "
861 "malicious guests.  These commands may attempt to exploit your program by "
862 "sending unexpected output.  They could also try to exploit the Linux kernel "
863 "or qemu provided by the libguestfs appliance.  They could use the network "
864 "provided by the libguestfs appliance to bypass ordinary network partitions "
865 "and firewalls.  They could use the elevated privileges or different SELinux "
866 "context of your program to their advantage."
867 msgstr ""
868
869 #. type: textblock
870 #: ../src/guestfs.pod:432
871 msgid ""
872 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
873 "(a script which runs when the guest next boots normally), and to have this "
874 "script run the commands you want in the normal context of the running guest, "
875 "network security and so on.  For information about other security issues, "
876 "see L</SECURITY>."
877 msgstr ""
878
879 #. type: textblock
880 #: ../src/guestfs.pod:440
881 msgid ""
882 "The two main API calls to run commands are L</guestfs_command> and "
883 "L</guestfs_sh> (there are also variations)."
884 msgstr ""
885
886 #. type: textblock
887 #: ../src/guestfs.pod:443
888 msgid ""
889 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
890 "shell globs, redirections, etc will work."
891 msgstr ""
892
893 #. type: =head2
894 #: ../src/guestfs.pod:446
895 msgid "CONFIGURATION FILES"
896 msgstr ""
897
898 #. type: textblock
899 #: ../src/guestfs.pod:448
900 msgid ""
901 "To read and write configuration files in Linux guest filesystems, we "
902 "strongly recommend using Augeas.  For example, Augeas understands how to "
903 "read and write, say, a Linux shadow password file or X.org configuration "
904 "file, and so avoids you having to write that code."
905 msgstr ""
906
907 #. type: textblock
908 #: ../src/guestfs.pod:453
909 msgid ""
910 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't "
911 "document Augeas itself here because there is excellent documentation on the "
912 "L<http://augeas.net/> website."
913 msgstr ""
914
915 #. type: textblock
916 #: ../src/guestfs.pod:457
917 msgid ""
918 "If you don't want to use Augeas (you fool!) then try calling "
919 "L</guestfs_read_lines> to get the file as a list of lines which you can "
920 "iterate over."
921 msgstr ""
922
923 #. type: =head2
924 #: ../src/guestfs.pod:461
925 msgid "SELINUX"
926 msgstr ""
927
928 #. type: textblock
929 #: ../src/guestfs.pod:463
930 msgid ""
931 "We support SELinux guests.  To ensure that labeling happens correctly in "
932 "SELinux guests, you need to enable SELinux and load the guest's policy:"
933 msgstr ""
934
935 #. type: =item
936 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395 ../src/guestfs.pod:2426
937 msgid "1."
938 msgstr ""
939
940 #. type: textblock
941 #: ../src/guestfs.pod:471
942 msgid "Before launching, do:"
943 msgstr ""
944
945 #. type: verbatim
946 #: ../src/guestfs.pod:473
947 #, no-wrap
948 msgid ""
949 " guestfs_set_selinux (g, 1);\n"
950 "\n"
951 msgstr ""
952
953 #. type: =item
954 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399 ../src/guestfs.pod:2451
955 msgid "2."
956 msgstr ""
957
958 #. type: textblock
959 #: ../src/guestfs.pod:477
960 msgid ""
961 "After mounting the guest's filesystem(s), load the policy.  This is best "
962 "done by running the L<load_policy(8)> command in the guest itself:"
963 msgstr ""
964
965 #. type: verbatim
966 #: ../src/guestfs.pod:481
967 #, no-wrap
968 msgid ""
969 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
970 "\n"
971 msgstr ""
972
973 #. type: textblock
974 #: ../src/guestfs.pod:483
975 msgid ""
976 "(Older versions of C<load_policy> require you to specify the name of the "
977 "policy file)."
978 msgstr ""
979
980 #. type: =item
981 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
982 msgid "3."
983 msgstr ""
984
985 #. type: textblock
986 #: ../src/guestfs.pod:488
987 msgid ""
988 "Optionally, set the security context for the API.  The correct security "
989 "context to use can only be known by inspecting the guest.  As an example:"
990 msgstr ""
991
992 #. type: verbatim
993 #: ../src/guestfs.pod:492
994 #, no-wrap
995 msgid ""
996 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
997 "\n"
998 msgstr ""
999
1000 #. type: textblock
1001 #: ../src/guestfs.pod:496
1002 msgid "This will work for running commands and editing existing files."
1003 msgstr ""
1004
1005 #. type: textblock
1006 #: ../src/guestfs.pod:498
1007 msgid ""
1008 "When new files are created, you may need to label them explicitly, for "
1009 "example by running the external command C<restorecon pathname>."
1010 msgstr ""
1011
1012 #. type: =head2
1013 #: ../src/guestfs.pod:502
1014 msgid "UMASK"
1015 msgstr ""
1016
1017 #. type: textblock
1018 #: ../src/guestfs.pod:504
1019 msgid ""
1020 "Certain calls are affected by the current file mode creation mask (the "
1021 "\"umask\").  In particular ones which create files or directories, such as "
1022 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1023 "either the default mode that the file is created with or modifies the mode "
1024 "that you supply."
1025 msgstr ""
1026
1027 #. type: textblock
1028 #: ../src/guestfs.pod:510
1029 msgid ""
1030 "The default umask is C<022>, so files are created with modes such as C<0644> "
1031 "and directories with C<0755>."
1032 msgstr ""
1033
1034 #. type: textblock
1035 #: ../src/guestfs.pod:513
1036 msgid ""
1037 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1038 "(call C<guestfs_umask (g, 0)> early after launching).  Or call "
1039 "L</guestfs_chmod> after creating each file or directory."
1040 msgstr ""
1041
1042 #. type: textblock
1043 #: ../src/guestfs.pod:517
1044 msgid "For more information about umask, see L<umask(2)>."
1045 msgstr ""
1046
1047 #. type: =head1
1048 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:767
1049 msgid "ENCRYPTED DISKS"
1050 msgstr ""
1051
1052 #. type: textblock
1053 #: ../src/guestfs.pod:521
1054 msgid ""
1055 "Libguestfs allows you to access Linux guests which have been encrypted using "
1056 "whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1057 "standard.  This includes nearly all whole disk encryption systems used by "
1058 "modern Linux guests."
1059 msgstr ""
1060
1061 #. type: textblock
1062 #: ../src/guestfs.pod:527
1063 msgid ""
1064 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1065 "returns the string C<crypto_LUKS>)."
1066 msgstr ""
1067
1068 #. type: textblock
1069 #: ../src/guestfs.pod:530
1070 msgid ""
1071 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1072 "will require the passphrase!"
1073 msgstr ""
1074
1075 #. type: textblock
1076 #: ../src/guestfs.pod:533
1077 msgid ""
1078 "Opening a LUKS device creates a new device mapper device called "
1079 "C</dev/mapper/mapname> (where C<mapname> is the string you supply to "
1080 "L</guestfs_luks_open>).  Reads and writes to this mapper device are "
1081 "decrypted from and encrypted to the underlying block device respectively."
1082 msgstr ""
1083
1084 #. type: textblock
1085 #: ../src/guestfs.pod:539
1086 msgid ""
1087 "LVM volume groups on the device can be made visible by calling "
1088 "L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical "
1089 "volume(s) can now be mounted in the usual way."
1090 msgstr ""
1091
1092 #. type: textblock
1093 #: ../src/guestfs.pod:543
1094 msgid ""
1095 "Use the reverse process to close a LUKS device.  Unmount any logical volumes "
1096 "on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1097 "[\"/dev/VG\"])>.  Then close the mapper device by calling "
1098 "L</guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1099 "underlying encrypted block device)."
1100 msgstr ""
1101
1102 #. type: =head2
1103 #: ../src/guestfs.pod:550
1104 msgid "INSPECTION"
1105 msgstr ""
1106
1107 #. type: textblock
1108 #: ../src/guestfs.pod:552
1109 msgid ""
1110 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1111 "contains operating systems, an install CD or a live CD.  (These APIs used to "
1112 "be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since "
1113 "version 1.5.3 the most frequently used part of this library has been "
1114 "rewritten in C and moved into the core code)."
1115 msgstr ""
1116
1117 #. type: textblock
1118 #: ../src/guestfs.pod:559
1119 msgid ""
1120 "Add all disks belonging to the unknown virtual machine and call "
1121 "L</guestfs_launch> in the usual way."
1122 msgstr ""
1123
1124 #. type: textblock
1125 #: ../src/guestfs.pod:562
1126 msgid ""
1127 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls "
1128 "and certain heuristics, and returns a list of operating systems that were "
1129 "found.  An empty list means none were found.  A single element is the root "
1130 "filesystem of the operating system.  For dual- or multi-boot guests, "
1131 "multiple roots can be returned, each one corresponding to a separate "
1132 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1133 "world of virtualization, but since this scenario can happen, we have built "
1134 "libguestfs to deal with it.)"
1135 msgstr ""
1136
1137 #. type: textblock
1138 #: ../src/guestfs.pod:571
1139 msgid ""
1140 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1141 "to get additional details about that operating system.  For example, call "
1142 "L</guestfs_inspect_get_type> to return the string C<windows> or C<linux> for "
1143 "Windows and Linux-based operating systems respectively."
1144 msgstr ""
1145
1146 #. type: textblock
1147 #: ../src/guestfs.pod:577
1148 msgid ""
1149 "Un*x-like and Linux-based operating systems usually consist of several "
1150 "filesystems which are mounted at boot time (for example, a separate boot "
1151 "partition mounted on C</boot>).  The inspection rules are able to detect how "
1152 "filesystems correspond to mount points.  Call "
1153 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1154 "hash table like this example:"
1155 msgstr ""
1156
1157 #. type: verbatim
1158 #: ../src/guestfs.pod:584
1159 #, no-wrap
1160 msgid ""
1161 " /boot => /dev/sda1\n"
1162 " /     => /dev/vg_guest/lv_root\n"
1163 " /usr  => /dev/vg_guest/lv_usr\n"
1164 "\n"
1165 msgstr ""
1166
1167 #. type: textblock
1168 #: ../src/guestfs.pod:588
1169 msgid ""
1170 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1171 "filesystems as suggested."
1172 msgstr ""
1173
1174 #. type: textblock
1175 #: ../src/guestfs.pod:591
1176 msgid ""
1177 "Be careful to mount filesystems in the right order (eg. C</> before "
1178 "C</usr>).  Sorting the keys of the hash by length, shortest first, should "
1179 "work."
1180 msgstr ""
1181
1182 #. type: textblock
1183 #: ../src/guestfs.pod:595
1184 msgid ""
1185 "Inspection currently only works for some common operating systems.  "
1186 "Contributors are welcome to send patches for other operating systems that we "
1187 "currently cannot detect."
1188 msgstr ""
1189
1190 #. type: textblock
1191 #: ../src/guestfs.pod:599
1192 msgid ""
1193 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1194 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1195 "encrypted devices."
1196 msgstr ""
1197
1198 #. type: textblock
1199 #: ../src/guestfs.pod:603
1200 msgid ""
1201 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1202 "inspection and caches the results in the guest handle.  Subsequent calls to "
1203 "C<guestfs_inspect_get_*> return this cached information, but I<do not> "
1204 "re-read the disks.  If you change the content of the guest disks, you can "
1205 "redo inspection by calling L</guestfs_inspect_os> again.  "
1206 "(L</guestfs_inspect_list_applications> works a little differently from the "
1207 "other calls and does read the disks.  See documentation for that function "
1208 "for details)."
1209 msgstr ""
1210
1211 #. type: =head3
1212 #: ../src/guestfs.pod:612
1213 msgid "INSPECTING INSTALL DISKS"
1214 msgstr ""
1215
1216 #. type: textblock
1217 #: ../src/guestfs.pod:614
1218 msgid ""
1219 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1220 "CDs and more."
1221 msgstr ""
1222
1223 #. type: textblock
1224 #: ../src/guestfs.pod:617
1225 msgid ""
1226 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1227 "system, which currently can be C<installed> (a regular operating system) or "
1228 "C<installer> (some sort of install disk)."
1229 msgstr ""
1230
1231 #. type: textblock
1232 #: ../src/guestfs.pod:621
1233 msgid ""
1234 "Further information is available about the operating system that can be "
1235 "installed using the regular inspection APIs like "
1236 "L</guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> "
1237 "etc."
1238 msgstr ""
1239
1240 #. type: textblock
1241 #: ../src/guestfs.pod:626
1242 msgid ""
1243 "Some additional information specific to installer disks is also available "
1244 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and "
1245 "L</guestfs_inspect_is_multipart> calls."
1246 msgstr ""
1247
1248 #. type: =head2
1249 #: ../src/guestfs.pod:631
1250 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1251 msgstr ""
1252
1253 #. type: textblock
1254 #: ../src/guestfs.pod:633
1255 msgid ""
1256 "Libguestfs can mount NTFS partitions.  It does this using the "
1257 "L<http://www.ntfs-3g.org/> driver."
1258 msgstr ""
1259
1260 #. type: =head3
1261 #: ../src/guestfs.pod:636
1262 msgid "DRIVE LETTERS AND PATHS"
1263 msgstr ""
1264
1265 #. type: textblock
1266 #: ../src/guestfs.pod:638
1267 msgid ""
1268 "DOS and Windows still use drive letters, and the filesystems are always "
1269 "treated as case insensitive by Windows itself, and therefore you might find "
1270 "a Windows configuration file referring to a path like "
1271 "C<c:\\windows\\system32>.  When the filesystem is mounted in libguestfs, "
1272 "that directory might be referred to as C</WINDOWS/System32>."
1273 msgstr ""
1274
1275 #. type: textblock
1276 #: ../src/guestfs.pod:644
1277 msgid ""
1278 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1279 "L</guestfs_inspect_get_drive_mappings>)"
1280 msgstr ""
1281
1282 #. type: textblock
1283 #: ../src/guestfs.pod:647
1284 msgid ""
1285 "Dealing with separator characters (backslash vs forward slash) is outside "
1286 "the scope of libguestfs, but usually a simple character replacement will "
1287 "work."
1288 msgstr ""
1289
1290 #. type: textblock
1291 #: ../src/guestfs.pod:651
1292 msgid ""
1293 "To resolve the case insensitivity of paths, call "
1294 "L</guestfs_case_sensitive_path>."
1295 msgstr ""
1296
1297 #. type: =head3
1298 #: ../src/guestfs.pod:654
1299 msgid "ACCESSING THE WINDOWS REGISTRY"
1300 msgstr ""
1301
1302 #. type: textblock
1303 #: ../src/guestfs.pod:656
1304 msgid ""
1305 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1306 "files, through the library C<hivex> which is part of the libguestfs project "
1307 "although ships as a separate tarball.  You have to locate and download the "
1308 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1309 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and "
1310 "L<virt-win-reg(1)> for more help on this issue."
1311 msgstr ""
1312
1313 #. type: =head3
1314 #: ../src/guestfs.pod:664
1315 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1316 msgstr ""
1317
1318 #. type: textblock
1319 #: ../src/guestfs.pod:666
1320 msgid ""
1321 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1322 "provide something which looks like a Linux symlink.  The way it tries to do "
1323 "the rewriting is described here:"
1324 msgstr ""
1325
1326 #. type: textblock
1327 #: ../src/guestfs.pod:670
1328 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-symbolic-links/>"
1329 msgstr ""
1330
1331 #. type: textblock
1332 #: ../src/guestfs.pod:672
1333 msgid ""
1334 "The essential problem is that ntfs-3g simply does not have enough "
1335 "information to do a correct job.  NTFS links can contain drive letters and "
1336 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1337 "It is almost certainly the case that libguestfs callers should ignore what "
1338 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1339 msgstr ""
1340
1341 #. type: textblock
1342 #: ../src/guestfs.pod:679
1343 msgid ""
1344 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use "
1345 "L</guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1346 "attribute, and read the raw reparse data from that (you can find the format "
1347 "documented in various places around the web)."
1348 msgstr ""
1349
1350 #. type: =head3
1351 #: ../src/guestfs.pod:684
1352 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1353 msgstr ""
1354
1355 #. type: textblock
1356 #: ../src/guestfs.pod:686
1357 msgid ""
1358 "There are other useful extended attributes that can be read from ntfs-3g "
1359 "filesystems (using L</guestfs_getxattr>).  See:"
1360 msgstr ""
1361
1362 #. type: textblock
1363 #: ../src/guestfs.pod:689
1364 msgid "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1365 msgstr ""
1366
1367 #. type: =head2
1368 #: ../src/guestfs.pod:691
1369 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1370 msgstr ""
1371
1372 #. type: textblock
1373 #: ../src/guestfs.pod:693
1374 msgid ""
1375 "Although we don't want to discourage you from using the C API, we will "
1376 "mention here that the same API is also available in other languages."
1377 msgstr ""
1378
1379 #. type: textblock
1380 #: ../src/guestfs.pod:696
1381 msgid ""
1382 "The API is broadly identical in all supported languages.  This means that "
1383 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)> "
1384 "in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1385 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1386 "each language."
1387 msgstr ""
1388
1389 #. type: textblock
1390 #: ../src/guestfs.pod:702
1391 msgid ""
1392 "Error messages are automatically transformed into exceptions if the language "
1393 "supports it."
1394 msgstr ""
1395
1396 #. type: textblock
1397 #: ../src/guestfs.pod:705
1398 msgid ""
1399 "We don't try to \"object orientify\" parts of the API in OO languages, "
1400 "although contributors are welcome to write higher level APIs above what we "
1401 "provide in their favourite languages if they wish."
1402 msgstr ""
1403
1404 #. type: =item
1405 #: ../src/guestfs.pod:711
1406 msgid "B<C++>"
1407 msgstr ""
1408
1409 #. type: textblock
1410 #: ../src/guestfs.pod:713
1411 msgid ""
1412 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1413 "identical to the C API.  C++ classes and exceptions are not used."
1414 msgstr ""
1415
1416 #. type: =item
1417 #: ../src/guestfs.pod:717
1418 msgid "B<C#>"
1419 msgstr ""
1420
1421 #. type: textblock
1422 #: ../src/guestfs.pod:719
1423 msgid ""
1424 "The C# bindings are highly experimental.  Please read the warnings at the "
1425 "top of C<csharp/Libguestfs.cs>."
1426 msgstr ""
1427
1428 #. type: =item
1429 #: ../src/guestfs.pod:722
1430 msgid "B<Haskell>"
1431 msgstr ""
1432
1433 #. type: textblock
1434 #: ../src/guestfs.pod:724
1435 msgid ""
1436 "This is the only language binding that is working but incomplete.  Only "
1437 "calls which return simple integers have been bound in Haskell, and we are "
1438 "looking for help to complete this binding."
1439 msgstr ""
1440
1441 #. type: =item
1442 #: ../src/guestfs.pod:728
1443 msgid "B<Java>"
1444 msgstr ""
1445
1446 #. type: textblock
1447 #: ../src/guestfs.pod:730
1448 msgid ""
1449 "Full documentation is contained in the Javadoc which is distributed with "
1450 "libguestfs."
1451 msgstr ""
1452
1453 #. type: =item
1454 #: ../src/guestfs.pod:733
1455 msgid "B<OCaml>"
1456 msgstr ""
1457
1458 #. type: textblock
1459 #: ../src/guestfs.pod:735
1460 msgid "See L<guestfs-ocaml(3)>."
1461 msgstr ""
1462
1463 #. type: =item
1464 #: ../src/guestfs.pod:737
1465 msgid "B<Perl>"
1466 msgstr ""
1467
1468 #. type: textblock
1469 #: ../src/guestfs.pod:739
1470 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1471 msgstr ""
1472
1473 #. type: =item
1474 #: ../src/guestfs.pod:741
1475 msgid "B<PHP>"
1476 msgstr ""
1477
1478 #. type: textblock
1479 #: ../src/guestfs.pod:743
1480 msgid ""
1481 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1482 "the php-libguestfs package for your distribution."
1483 msgstr ""
1484
1485 #. type: textblock
1486 #: ../src/guestfs.pod:746
1487 msgid "The PHP binding only works correctly on 64 bit machines."
1488 msgstr ""
1489
1490 #. type: =item
1491 #: ../src/guestfs.pod:748
1492 msgid "B<Python>"
1493 msgstr ""
1494
1495 #. type: textblock
1496 #: ../src/guestfs.pod:750
1497 msgid "See L<guestfs-python(3)>."
1498 msgstr ""
1499
1500 #. type: =item
1501 #: ../src/guestfs.pod:752
1502 msgid "B<Ruby>"
1503 msgstr ""
1504
1505 #. type: textblock
1506 #: ../src/guestfs.pod:754
1507 msgid "See L<guestfs-ruby(3)>."
1508 msgstr ""
1509
1510 #. type: =item
1511 #: ../src/guestfs.pod:756
1512 msgid "B<shell scripts>"
1513 msgstr ""
1514
1515 #. type: textblock
1516 #: ../src/guestfs.pod:758
1517 msgid "See L<guestfish(1)>."
1518 msgstr ""
1519
1520 #. type: =head2
1521 #: ../src/guestfs.pod:762
1522 msgid "LIBGUESTFS GOTCHAS"
1523 msgstr ""
1524
1525 #. type: textblock
1526 #: ../src/guestfs.pod:764
1527 msgid ""
1528 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1529 "system [...] that works in the way it is documented but is counterintuitive "
1530 "and almost invites mistakes.\""
1531 msgstr ""
1532
1533 #. type: textblock
1534 #: ../src/guestfs.pod:768
1535 msgid ""
1536 "Since we developed libguestfs and the associated tools, there are several "
1537 "things we would have designed differently, but are now stuck with for "
1538 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0 "
1539 "release, you can expect these to change.  Beware of them."
1540 msgstr ""
1541
1542 #. type: =item
1543 #: ../src/guestfs.pod:776
1544 msgid "Autosync / forgetting to sync."
1545 msgstr ""
1546
1547 #. type: textblock
1548 #: ../src/guestfs.pod:778
1549 msgid ""
1550 "I<Update:> Autosync is enabled by default for all API users starting from "
1551 "libguestfs 1.5.24.  This section only applies to older versions."
1552 msgstr ""
1553
1554 #. type: textblock
1555 #: ../src/guestfs.pod:781
1556 msgid ""
1557 "When modifying a filesystem from C or another language, you B<must> unmount "
1558 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1559 "libguestfs handle.  You can also call:"
1560 msgstr ""
1561
1562 #. type: verbatim
1563 #: ../src/guestfs.pod:785
1564 #, no-wrap
1565 msgid ""
1566 " guestfs_set_autosync (g, 1);\n"
1567 "\n"
1568 msgstr ""
1569
1570 #. type: textblock
1571 #: ../src/guestfs.pod:787
1572 msgid ""
1573 "to have the unmount/sync done automatically for you when the handle 'g' is "
1574 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> "
1575 "q.v.)"
1576 msgstr ""
1577
1578 #. type: textblock
1579 #: ../src/guestfs.pod:791
1580 msgid ""
1581 "If you forget to do this, then it is entirely possible that your changes "
1582 "won't be written out, or will be partially written, or (very rarely) that "
1583 "you'll get disk corruption."
1584 msgstr ""
1585
1586 #. type: textblock
1587 #: ../src/guestfs.pod:795
1588 msgid ""
1589 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1590 "guestfish scripts that forget to sync will work just fine, which can make "
1591 "this very puzzling if you are trying to debug a problem."
1592 msgstr ""
1593
1594 #. type: =item
1595 #: ../src/guestfs.pod:799
1596 msgid "Mount option C<-o sync> should not be the default."
1597 msgstr ""
1598
1599 #. type: textblock
1600 #: ../src/guestfs.pod:801
1601 msgid ""
1602 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly.  "
1603 "However C<-o sync> does not add any reliability benefit, but does have a "
1604 "very large performance impact."
1605 msgstr ""
1606
1607 #. type: textblock
1608 #: ../src/guestfs.pod:805
1609 msgid ""
1610 "The work around is to use L</guestfs_mount_options> and set the mount "
1611 "options that you actually want to use."
1612 msgstr ""
1613
1614 #. type: =item
1615 #: ../src/guestfs.pod:808
1616 msgid "Read-only should be the default."
1617 msgstr ""
1618
1619 #. type: textblock
1620 #: ../src/guestfs.pod:810
1621 msgid ""
1622 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1623 "specify I<--rw> if you want to make changes to the image."
1624 msgstr ""
1625
1626 #. type: textblock
1627 #: ../src/guestfs.pod:813
1628 msgid "This would reduce the potential to corrupt live VM images."
1629 msgstr ""
1630
1631 #. type: textblock
1632 #: ../src/guestfs.pod:815
1633 msgid ""
1634 "Note that many filesystems change the disk when you just mount and unmount, "
1635 "even if you didn't perform any writes.  You need to use "
1636 "L</guestfs_add_drive_ro> to guarantee that the disk is not changed."
1637 msgstr ""
1638
1639 #. type: =item
1640 #: ../src/guestfs.pod:819
1641 msgid "guestfish command line is hard to use."
1642 msgstr ""
1643
1644 #. type: textblock
1645 #: ../src/guestfs.pod:821
1646 msgid ""
1647 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1648 "examination).  It tries to run a guestfish command C<disk.img> which doesn't "
1649 "exist, so it fails.  In earlier versions of guestfish the error message was "
1650 "also unintuitive, but we have corrected this since.  Like the Bourne shell, "
1651 "we should have used C<guestfish -c command> to run commands."
1652 msgstr ""
1653
1654 #. type: =item
1655 #: ../src/guestfs.pod:828
1656 msgid "guestfish megabyte modifiers don't work right on all commands"
1657 msgstr ""
1658
1659 #. type: textblock
1660 #: ../src/guestfs.pod:830
1661 msgid ""
1662 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1663 "other modifiers).  What guestfish actually does is to multiply the number "
1664 "part by the modifier part and pass the result to the C API.  However this "
1665 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1666 "expecting some other unit (eg. megabytes)."
1667 msgstr ""
1668
1669 #. type: textblock
1670 #: ../src/guestfs.pod:837
1671 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1672 msgstr ""
1673
1674 #. type: verbatim
1675 #: ../src/guestfs.pod:839
1676 #, no-wrap
1677 msgid ""
1678 " lvcreate LV VG 100M\n"
1679 "\n"
1680 msgstr ""
1681
1682 #. type: textblock
1683 #: ../src/guestfs.pod:841
1684 msgid ""
1685 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1686 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1687 "megabytes * megabytes) logical volume.  The error message you get from this "
1688 "is also a little obscure."
1689 msgstr ""
1690
1691 #. type: textblock
1692 #: ../src/guestfs.pod:846
1693 msgid ""
1694 "This could be fixed in the generator by specially marking parameters and "
1695 "return values which take bytes or other units."
1696 msgstr ""
1697
1698 #. type: =item
1699 #: ../src/guestfs.pod:849
1700 msgid "Ambiguity between devices and paths"
1701 msgstr ""
1702
1703 #. type: textblock
1704 #: ../src/guestfs.pod:851
1705 msgid ""
1706 "There is a subtle ambiguity in the API between a device name "
1707 "(eg. C</dev/sdb2>) and a similar pathname.  A file might just happen to be "
1708 "called C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1709 msgstr ""
1710
1711 #. type: textblock
1712 #: ../src/guestfs.pod:856
1713 msgid ""
1714 "In the current API we usually resolve this ambiguity by having two separate "
1715 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1716 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1717 "detecting if the path supplied begins with C</dev/>."
1718 msgstr ""
1719
1720 #. type: textblock
1721 #: ../src/guestfs.pod:862
1722 msgid ""
1723 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1724 "make paths/devices into structured names.  One way to do this would be to "
1725 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1726 "aspect of grub.  Another way would be to use a structured type, equivalent "
1727 "to this OCaml type:"
1728 msgstr ""
1729
1730 #. type: verbatim
1731 #: ../src/guestfs.pod:868
1732 #, no-wrap
1733 msgid ""
1734 " type path = Path of string | Device of int | Partition of int * int\n"
1735 "\n"
1736 msgstr ""
1737
1738 #. type: textblock
1739 #: ../src/guestfs.pod:870
1740 msgid "which would allow you to pass arguments like:"
1741 msgstr ""
1742
1743 #. type: verbatim
1744 #: ../src/guestfs.pod:872
1745 #, no-wrap
1746 msgid ""
1747 " Path \"/foo/bar\"\n"
1748 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1749 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1750 " Path \"/dev/sdb2\"    (* not a device *)\n"
1751 "\n"
1752 msgstr ""
1753
1754 #. type: textblock
1755 #: ../src/guestfs.pod:877
1756 msgid ""
1757 "As you can see there are still problems to resolve even with this "
1758 "representation.  Also consider how it might work in guestfish."
1759 msgstr ""
1760
1761 #. type: =head2
1762 #: ../src/guestfs.pod:882
1763 msgid "KEYS AND PASSPHRASES"
1764 msgstr ""
1765
1766 #. type: textblock
1767 #: ../src/guestfs.pod:884
1768 msgid ""
1769 "Certain libguestfs calls take a parameter that contains sensitive key "
1770 "material, passed in as a C string."
1771 msgstr ""
1772
1773 #. type: textblock
1774 #: ../src/guestfs.pod:887
1775 msgid ""
1776 "In the future we would hope to change the libguestfs implementation so that "
1777 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1778 "swap.  However this is I<not> done at the moment, because of the complexity "
1779 "of such an implementation."
1780 msgstr ""
1781
1782 #. type: textblock
1783 #: ../src/guestfs.pod:892
1784 msgid ""
1785 "Therefore you should be aware that any key parameter you pass to libguestfs "
1786 "might end up being written out to the swap partition.  If this is a concern, "
1787 "scrub the swap partition or don't use libguestfs on encrypted devices."
1788 msgstr ""
1789
1790 #. type: =head2
1791 #: ../src/guestfs.pod:897
1792 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1793 msgstr ""
1794
1795 #. type: textblock
1796 #: ../src/guestfs.pod:899
1797 msgid ""
1798 "All high-level libguestfs actions are synchronous.  If you want to use "
1799 "libguestfs asynchronously then you must create a thread."
1800 msgstr ""
1801
1802 #. type: textblock
1803 #: ../src/guestfs.pod:902
1804 msgid ""
1805 "Only use the handle from a single thread.  Either use the handle exclusively "
1806 "from one thread, or provide your own mutex so that two threads cannot issue "
1807 "calls on the same handle at the same time."
1808 msgstr ""
1809
1810 #. type: textblock
1811 #: ../src/guestfs.pod:906
1812 msgid ""
1813 "See the graphical program guestfs-browser for one possible architecture for "
1814 "multithreaded programs using libvirt and libguestfs."
1815 msgstr ""
1816
1817 #. type: =head2
1818 #: ../src/guestfs.pod:909
1819 msgid "PATH"
1820 msgstr ""
1821
1822 #. type: textblock
1823 #: ../src/guestfs.pod:911
1824 msgid ""
1825 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1826 "internal path."
1827 msgstr ""
1828
1829 #. type: textblock
1830 #: ../src/guestfs.pod:914
1831 msgid ""
1832 "By default it looks for these in the directory C<$libdir/guestfs> "
1833 "(eg. C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1834 msgstr ""
1835
1836 #. type: textblock
1837 #: ../src/guestfs.pod:917
1838 msgid ""
1839 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH> "
1840 "to change the directories that libguestfs will search in.  The value is a "
1841 "colon-separated list of paths.  The current directory is I<not> searched "
1842 "unless the path contains an empty element or C<.>.  For example "
1843 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1844 "then C</usr/lib/guestfs>."
1845 msgstr ""
1846
1847 #. type: =head2
1848 #: ../src/guestfs.pod:924
1849 msgid "QEMU WRAPPERS"
1850 msgstr ""
1851
1852 #. type: textblock
1853 #: ../src/guestfs.pod:926
1854 msgid ""
1855 "If you want to compile your own qemu, run qemu from a non-standard location, "
1856 "or pass extra arguments to qemu, then you can write a shell-script wrapper "
1857 "around qemu."
1858 msgstr ""
1859
1860 #. type: textblock
1861 #: ../src/guestfs.pod:930
1862 msgid ""
1863 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1864 "last command in the shell script (so that qemu replaces the shell and "
1865 "becomes the direct child of the libguestfs-using program).  If you don't do "
1866 "this, then the qemu process won't be cleaned up correctly."
1867 msgstr ""
1868
1869 #. type: textblock
1870 #: ../src/guestfs.pod:935
1871 msgid ""
1872 "Here is an example of a wrapper, where I have built my own copy of qemu from "
1873 "source:"
1874 msgstr ""
1875
1876 #. type: verbatim
1877 #: ../src/guestfs.pod:938
1878 #, no-wrap
1879 msgid ""
1880 " #!/bin/sh -\n"
1881 " qemudir=/home/rjones/d/qemu\n"
1882 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios "
1883 "\"$@\"\n"
1884 "\n"
1885 msgstr ""
1886
1887 #. type: textblock
1888 #: ../src/guestfs.pod:942
1889 msgid ""
1890 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1891 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1892 "example:"
1893 msgstr ""
1894
1895 #. type: verbatim
1896 #: ../src/guestfs.pod:946
1897 #, no-wrap
1898 msgid ""
1899 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1900 "\n"
1901 msgstr ""
1902
1903 #. type: textblock
1904 #: ../src/guestfs.pod:948
1905 msgid ""
1906 "Note that libguestfs also calls qemu with the -help and -version options in "
1907 "order to determine features."
1908 msgstr ""
1909
1910 #. type: =head2
1911 #: ../src/guestfs.pod:951
1912 msgid "ATTACHING TO RUNNING DAEMONS"
1913 msgstr ""
1914
1915 #. type: textblock
1916 #: ../src/guestfs.pod:953
1917 msgid ""
1918 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
1919 "babies.  Use with caution."
1920 msgstr ""
1921
1922 #. type: textblock
1923 #: ../src/guestfs.pod:956
1924 msgid ""
1925 "I<Note (2):> This section explains how to attach to a running daemon from a "
1926 "low level perspective.  For most users, simply using virt tools such as "
1927 "L<guestfish(1)> with the I<--live> option will \"just work\"."
1928 msgstr ""
1929
1930 #. type: =head3
1931 #: ../src/guestfs.pod:960
1932 msgid "Using guestfs_set_attach_method"
1933 msgstr ""
1934
1935 #. type: textblock
1936 #: ../src/guestfs.pod:962
1937 msgid ""
1938 "By calling L</guestfs_set_attach_method> you can change how the library "
1939 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read "
1940 "L</ARCHITECTURE> for some background)."
1941 msgstr ""
1942
1943 #. type: textblock
1944 #: ../src/guestfs.pod:966
1945 msgid ""
1946 "The normal attach method is C<appliance>, where a small appliance is created "
1947 "containing the daemon, and then the library connects to this."
1948 msgstr ""
1949
1950 #. type: textblock
1951 #: ../src/guestfs.pod:969
1952 msgid ""
1953 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
1954 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
1955 "daemon over the Unix domain socket."
1956 msgstr ""
1957
1958 #. type: textblock
1959 #: ../src/guestfs.pod:973
1960 msgid ""
1961 "The normal use for this is to connect to a running virtual machine that "
1962 "contains a C<guestfsd> daemon, and send commands so you can read and write "
1963 "files inside the live virtual machine."
1964 msgstr ""
1965
1966 #. type: =head3
1967 #: ../src/guestfs.pod:977
1968 msgid "Using guestfs_add_domain with live flag"
1969 msgstr ""
1970
1971 #. type: textblock
1972 #: ../src/guestfs.pod:979
1973 msgid ""
1974 "L</guestfs_add_domain> provides some help for getting the correct attach "
1975 "method.  If you pass the C<live> option to this function, then (if the "
1976 "virtual machine is running) it will examine the libvirt XML looking for a "
1977 "virtio-serial channel to connect to:"
1978 msgstr ""
1979
1980 #. type: verbatim
1981 #: ../src/guestfs.pod:985
1982 #, no-wrap
1983 msgid ""
1984 " <domain>\n"
1985 "   ...\n"
1986 "   <devices>\n"
1987 "     ...\n"
1988 "     <channel type='unix'>\n"
1989 "       <source mode='bind' path='/path/to/socket'/>\n"
1990 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
1991 "     </channel>\n"
1992 "     ...\n"
1993 "   </devices>\n"
1994 " </domain>\n"
1995 "\n"
1996 msgstr ""
1997
1998 #. type: textblock
1999 #: ../src/guestfs.pod:997
2000 msgid ""
2001 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2002 "method to C<unix:/path/to/socket>."
2003 msgstr ""
2004
2005 #. type: textblock
2006 #: ../src/guestfs.pod:1000
2007 msgid ""
2008 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2009 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2010 "to attach to and modify live virtual machines."
2011 msgstr ""
2012
2013 #. type: textblock
2014 #: ../src/guestfs.pod:1004
2015 msgid ""
2016 "The virtual machine needs to have been set up beforehand so that it has the "
2017 "virtio-serial channel and so that guestfsd is running inside it."
2018 msgstr ""
2019
2020 #. type: =head2
2021 #: ../src/guestfs.pod:1008
2022 msgid "ABI GUARANTEE"
2023 msgstr ""
2024
2025 #. type: textblock
2026 #: ../src/guestfs.pod:1010
2027 msgid ""
2028 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2029 "actions as outlined in this section.  Although we will deprecate some "
2030 "actions, for example if they get replaced by newer calls, we will keep the "
2031 "old actions forever.  This allows you the developer to program in confidence "
2032 "against the libguestfs API."
2033 msgstr ""
2034
2035 #. type: =head2
2036 #: ../src/guestfs.pod:1016
2037 msgid "BLOCK DEVICE NAMING"
2038 msgstr ""
2039
2040 #. type: textblock
2041 #: ../src/guestfs.pod:1018
2042 msgid ""
2043 "In the kernel there is now quite a profusion of schemata for naming block "
2044 "devices (in this context, by I<block device> I mean a physical or virtual "
2045 "hard drive).  The original Linux IDE driver used names starting with "
2046 "C</dev/hd*>.  SCSI devices have historically used a different naming scheme, "
2047 "C</dev/sd*>.  When the Linux kernel I<libata> driver became a popular "
2048 "replacement for the old IDE driver (particularly for SATA devices) those "
2049 "devices also used the C</dev/sd*> scheme.  Additionally we now have virtual "
2050 "machines with paravirtualized drivers.  This has created several different "
2051 "naming systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for "
2052 "Xen PV disks."
2053 msgstr ""
2054
2055 #. type: textblock
2056 #: ../src/guestfs.pod:1030
2057 msgid ""
2058 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2059 "Linux kernel to access block devices.  We can run a variety of appliances "
2060 "based on a variety of Linux kernels."
2061 msgstr ""
2062
2063 #. type: textblock
2064 #: ../src/guestfs.pod:1034
2065 msgid ""
2066 "This causes a problem for libguestfs because many API calls use device or "
2067 "partition names.  Working scripts and the recipe (example) scripts that we "
2068 "make available over the internet could fail if the naming scheme changes."
2069 msgstr ""
2070
2071 #. type: textblock
2072 #: ../src/guestfs.pod:1039
2073 msgid ""
2074 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2075 "Internally C</dev/sd*> names are translated, if necessary, to other names as "
2076 "required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any "
2077 "device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2078 msgstr ""
2079
2080 #. type: textblock
2081 #: ../src/guestfs.pod:1045
2082 msgid ""
2083 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>, "
2084 "L</guestfs_list_partitions> and similar calls return the true names of the "
2085 "devices and partitions as known to the appliance."
2086 msgstr ""
2087
2088 #. type: =head3
2089 #: ../src/guestfs.pod:1050
2090 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2091 msgstr ""
2092
2093 #. type: textblock
2094 #: ../src/guestfs.pod:1052
2095 msgid ""
2096 "Usually this translation is transparent.  However in some (very rare)  cases "
2097 "you may need to know the exact algorithm.  Such cases include where you use "
2098 "L</guestfs_config> to add a mixture of virtio and IDE devices to the "
2099 "qemu-based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> "
2100 "devices."
2101 msgstr ""
2102
2103 #. type: textblock
2104 #: ../src/guestfs.pod:1058
2105 msgid ""
2106 "The algorithm is applied only to I<parameters> which are known to be either "
2107 "device or partition names.  Return values from functions such as "
2108 "L</guestfs_list_devices> are never changed."
2109 msgstr ""
2110
2111 #. type: textblock
2112 #: ../src/guestfs.pod:1066
2113 msgid "Is the string a parameter which is a device or partition name?"
2114 msgstr ""
2115
2116 #. type: textblock
2117 #: ../src/guestfs.pod:1070
2118 msgid "Does the string begin with C</dev/sd>?"
2119 msgstr ""
2120
2121 #. type: textblock
2122 #: ../src/guestfs.pod:1074
2123 msgid ""
2124 "Does the named device exist? If so, we use that device.  However if I<not> "
2125 "then we continue with this algorithm."
2126 msgstr ""
2127
2128 #. type: textblock
2129 #: ../src/guestfs.pod:1079
2130 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2131 msgstr ""
2132
2133 #. type: textblock
2134 #: ../src/guestfs.pod:1081
2135 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2136 msgstr ""
2137
2138 #. type: textblock
2139 #: ../src/guestfs.pod:1083
2140 msgid "If that named device exists, use it.  If not, continue."
2141 msgstr ""
2142
2143 #. type: textblock
2144 #: ../src/guestfs.pod:1087
2145 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2146 msgstr ""
2147
2148 #. type: textblock
2149 #: ../src/guestfs.pod:1089
2150 msgid "If that named device exists, use it.  If not, return an error."
2151 msgstr ""
2152
2153 #. type: =head3
2154 #: ../src/guestfs.pod:1093
2155 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2156 msgstr ""
2157
2158 #. type: textblock
2159 #: ../src/guestfs.pod:1095
2160 msgid ""
2161 "Although the standard naming scheme and automatic translation is useful for "
2162 "simple programs and guestfish scripts, for larger programs it is best not to "
2163 "rely on this mechanism."
2164 msgstr ""
2165
2166 #. type: textblock
2167 #: ../src/guestfs.pod:1099
2168 msgid ""
2169 "Where possible for maximum future portability programs using libguestfs "
2170 "should use these future-proof techniques:"
2171 msgstr ""
2172
2173 #. type: textblock
2174 #: ../src/guestfs.pod:1106
2175 msgid ""
2176 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2177 "device names, and then use those names directly."
2178 msgstr ""
2179
2180 #. type: textblock
2181 #: ../src/guestfs.pod:1109
2182 msgid "Since those device names exist by definition, they will never be translated."
2183 msgstr ""
2184
2185 #. type: textblock
2186 #: ../src/guestfs.pod:1114
2187 msgid ""
2188 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2189 "filesystem labels."
2190 msgstr ""
2191
2192 #. type: =head1
2193 #: ../src/guestfs.pod:1119
2194 msgid "SECURITY"
2195 msgstr ""
2196
2197 #. type: textblock
2198 #: ../src/guestfs.pod:1121
2199 msgid ""
2200 "This section discusses security implications of using libguestfs, "
2201 "particularly with untrusted or malicious guests or disk images."
2202 msgstr ""
2203
2204 #. type: =head2
2205 #: ../src/guestfs.pod:1124
2206 msgid "GENERAL SECURITY CONSIDERATIONS"
2207 msgstr ""
2208
2209 #. type: textblock
2210 #: ../src/guestfs.pod:1126
2211 msgid ""
2212 "Be careful with any files or data that you download from a guest (by "
2213 "\"download\" we mean not just the L</guestfs_download> command but any "
2214 "command that reads files, filenames, directories or anything else from a "
2215 "disk image).  An attacker could manipulate the data to fool your program "
2216 "into doing the wrong thing.  Consider cases such as:"
2217 msgstr ""
2218
2219 #. type: textblock
2220 #: ../src/guestfs.pod:1136
2221 msgid "the data (file etc) not being present"
2222 msgstr ""
2223
2224 #. type: textblock
2225 #: ../src/guestfs.pod:1140
2226 msgid "being present but empty"
2227 msgstr ""
2228
2229 #. type: textblock
2230 #: ../src/guestfs.pod:1144
2231 msgid "being much larger than normal"
2232 msgstr ""
2233
2234 #. type: textblock
2235 #: ../src/guestfs.pod:1148
2236 msgid "containing arbitrary 8 bit data"
2237 msgstr ""
2238
2239 #. type: textblock
2240 #: ../src/guestfs.pod:1152
2241 msgid "being in an unexpected character encoding"
2242 msgstr ""
2243
2244 #. type: textblock
2245 #: ../src/guestfs.pod:1156
2246 msgid "containing homoglyphs."
2247 msgstr ""
2248
2249 #. type: =head2
2250 #: ../src/guestfs.pod:1160
2251 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2252 msgstr ""
2253
2254 #. type: textblock
2255 #: ../src/guestfs.pod:1162
2256 msgid ""
2257 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2258 "(VFS) module can sometimes be escalated into exploits by deliberately "
2259 "creating a malicious, malformed filesystem.  These exploits are very severe "
2260 "for two reasons.  Firstly there are very many filesystem drivers in the "
2261 "kernel, and many of them are infrequently used and not much developer "
2262 "attention has been paid to the code.  Linux userspace helps potential "
2263 "crackers by detecting the filesystem type and automatically choosing the "
2264 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2265 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2266 "exploit (worse in some ways), giving immediate and total access to the "
2267 "system right down to the hardware level."
2268 msgstr ""
2269
2270 #. type: textblock
2271 #: ../src/guestfs.pod:1175
2272 msgid ""
2273 "That explains why you should never mount a filesystem from an untrusted "
2274 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2275 "inside a qemu virtual machine, usually running as a non-root user.  The "
2276 "attacker would need to write a filesystem which first exploited the kernel, "
2277 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2278 "the libguestfs protocol, and finally to be as serious as the host kernel "
2279 "exploit it would need to escalate its privileges to root.  This multi-step "
2280 "escalation, performed by a static piece of data, is thought to be extremely "
2281 "hard to do, although we never say 'never' about security issues."
2282 msgstr ""
2283
2284 #. type: textblock
2285 #: ../src/guestfs.pod:1186
2286 msgid ""
2287 "In any case callers can reduce the attack surface by forcing the filesystem "
2288 "type when mounting (use L</guestfs_mount_vfs>)."
2289 msgstr ""
2290
2291 #. type: =head2
2292 #: ../src/guestfs.pod:1189
2293 msgid "PROTOCOL SECURITY"
2294 msgstr ""
2295
2296 #. type: textblock
2297 #: ../src/guestfs.pod:1191
2298 msgid ""
2299 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a "
2300 "defined upper message size.  However a program that uses libguestfs must "
2301 "also take care - for example you can write a program that downloads a binary "
2302 "from a disk image and executes it locally, and no amount of protocol "
2303 "security will save you from the consequences."
2304 msgstr ""
2305
2306 #. type: =head2
2307 #: ../src/guestfs.pod:1197
2308 msgid "INSPECTION SECURITY"
2309 msgstr ""
2310
2311 #. type: textblock
2312 #: ../src/guestfs.pod:1199
2313 msgid ""
2314 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2315 "directly from the guest, and these could contain any 8 bit data.  Callers "
2316 "should be careful to escape these before printing them to a structured file "
2317 "(for example, use HTML escaping if creating a web page)."
2318 msgstr ""
2319
2320 #. type: textblock
2321 #: ../src/guestfs.pod:1205
2322 msgid ""
2323 "Guest configuration may be altered in unusual ways by the administrator of "
2324 "the virtual machine, and may not reflect reality (particularly for untrusted "
2325 "or actively malicious guests).  For example we parse the hostname from "
2326 "configuration files like C</etc/sysconfig/network> that we find in the "
2327 "guest, but the guest administrator can easily manipulate these files to "
2328 "provide the wrong hostname."
2329 msgstr ""
2330
2331 #. type: textblock
2332 #: ../src/guestfs.pod:1213
2333 msgid ""
2334 "The inspection API parses guest configuration using two external libraries: "
2335 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2336 "designed to be robust in the face of malicious data, although denial of "
2337 "service attacks are still possible, for example with oversized configuration "
2338 "files."
2339 msgstr ""
2340
2341 #. type: =head2
2342 #: ../src/guestfs.pod:1219
2343 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2344 msgstr ""
2345
2346 #. type: textblock
2347 #: ../src/guestfs.pod:1221
2348 msgid ""
2349 "Be very cautious about running commands from the guest.  By running a "
2350 "command in the guest, you are giving CPU time to a binary that you do not "
2351 "control, under the same user account as the library, albeit wrapped in qemu "
2352 "virtualization.  More information and alternatives can be found in the "
2353 "section L</RUNNING COMMANDS>."
2354 msgstr ""
2355
2356 #. type: =head2
2357 #: ../src/guestfs.pod:1227
2358 msgid "CVE-2010-3851"
2359 msgstr ""
2360
2361 #. type: textblock
2362 #: ../src/guestfs.pod:1229
2363 msgid "https://bugzilla.redhat.com/642934"
2364 msgstr ""
2365
2366 #. type: textblock
2367 #: ../src/guestfs.pod:1231
2368 msgid ""
2369 "This security bug concerns the automatic disk format detection that qemu "
2370 "does on disk images."
2371 msgstr ""
2372
2373 #. type: textblock
2374 #: ../src/guestfs.pod:1234
2375 msgid ""
2376 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2377 "images like qcow2 contain a special header.  Qemu deals with this by looking "
2378 "for one of the known headers, and if none is found then assuming the disk "
2379 "image must be raw."
2380 msgstr ""
2381
2382 #. type: textblock
2383 #: ../src/guestfs.pod:1239
2384 msgid ""
2385 "This allows a guest which has been given a raw disk image to write some "
2386 "other header.  At next boot (or when the disk image is accessed by "
2387 "libguestfs) qemu would do autodetection and think the disk image format was, "
2388 "say, qcow2 based on the header written by the guest."
2389 msgstr ""
2390
2391 #. type: textblock
2392 #: ../src/guestfs.pod:1244
2393 msgid ""
2394 "This in itself would not be a problem, but qcow2 offers many features, one "
2395 "of which is to allow a disk image to refer to another image (called the "
2396 "\"backing disk\").  It does this by placing the path to the backing disk "
2397 "into the qcow2 header.  This path is not validated and could point to any "
2398 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2399 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2400 "control of the attacker."
2401 msgstr ""
2402
2403 #. type: textblock
2404 #: ../src/guestfs.pod:1252
2405 msgid "In libguestfs this is rather hard to exploit except under two circumstances:"
2406 msgstr ""
2407
2408 #. type: textblock
2409 #: ../src/guestfs.pod:1259
2410 msgid "You have enabled the network or have opened the disk in write mode."
2411 msgstr ""
2412
2413 #. type: textblock
2414 #: ../src/guestfs.pod:1263
2415 msgid ""
2416 "You are also running untrusted code from the guest (see L</RUNNING "
2417 "COMMANDS>)."
2418 msgstr ""
2419
2420 #. type: textblock
2421 #: ../src/guestfs.pod:1268
2422 msgid ""
2423 "The way to avoid this is to specify the expected disk format when adding "
2424 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2425 "should always do this if the disk is raw format, and it's a good idea for "
2426 "other cases too."
2427 msgstr ""
2428
2429 #. type: textblock
2430 #: ../src/guestfs.pod:1273
2431 msgid ""
2432 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2433 "format is fetched from libvirt and passed through."
2434 msgstr ""
2435
2436 #. type: textblock
2437 #: ../src/guestfs.pod:1276
2438 msgid ""
2439 "For libguestfs tools, use the I<--format> command line parameter as "
2440 "appropriate."
2441 msgstr ""
2442
2443 #. type: =head1
2444 #: ../src/guestfs.pod:1279
2445 msgid "CONNECTION MANAGEMENT"
2446 msgstr ""
2447
2448 #. type: =head2
2449 #: ../src/guestfs.pod:1281
2450 msgid "guestfs_h *"
2451 msgstr ""
2452
2453 #. type: textblock
2454 #: ../src/guestfs.pod:1283
2455 msgid ""
2456 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2457 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2458 "handle and release all resources used."
2459 msgstr ""
2460
2461 #. type: textblock
2462 #: ../src/guestfs.pod:1287
2463 msgid ""
2464 "For information on using multiple handles and threads, see the section "
2465 "L</MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2466 msgstr ""
2467
2468 #. type: =head2
2469 #: ../src/guestfs.pod:1290
2470 msgid "guestfs_create"
2471 msgstr ""
2472
2473 #. type: verbatim
2474 #: ../src/guestfs.pod:1292
2475 #, no-wrap
2476 msgid ""
2477 " guestfs_h *guestfs_create (void);\n"
2478 "\n"
2479 msgstr ""
2480
2481 #. type: textblock
2482 #: ../src/guestfs.pod:1294
2483 msgid "Create a connection handle."
2484 msgstr ""
2485
2486 #. type: textblock
2487 #: ../src/guestfs.pod:1296
2488 msgid ""
2489 "On success this returns a non-NULL pointer to a handle.  On error it returns "
2490 "NULL."
2491 msgstr ""
2492
2493 #. type: textblock
2494 #: ../src/guestfs.pod:1299
2495 msgid ""
2496 "You have to \"configure\" the handle after creating it.  This includes "
2497 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2498 "handle at least once."
2499 msgstr ""
2500
2501 #. type: textblock
2502 #: ../src/guestfs.pod:1303
2503 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2504 msgstr ""
2505
2506 #. type: textblock
2507 #: ../src/guestfs.pod:1305
2508 msgid ""
2509 "You may also want to configure error handling for the handle.  See the "
2510 "L</ERROR HANDLING> section below."
2511 msgstr ""
2512
2513 #. type: =head2
2514 #: ../src/guestfs.pod:1308
2515 msgid "guestfs_close"
2516 msgstr ""
2517
2518 #. type: verbatim
2519 #: ../src/guestfs.pod:1310
2520 #, no-wrap
2521 msgid ""
2522 " void guestfs_close (guestfs_h *g);\n"
2523 "\n"
2524 msgstr ""
2525
2526 #. type: textblock
2527 #: ../src/guestfs.pod:1312
2528 msgid "This closes the connection handle and frees up all resources used."
2529 msgstr ""
2530
2531 #. type: textblock
2532 #: ../src/guestfs.pod:1314
2533 msgid ""
2534 "If autosync was set on the handle and the handle was launched, then this "
2535 "implicitly calls various functions to unmount filesystems and sync the "
2536 "disk.  See L</guestfs_set_autosync> for more details."
2537 msgstr ""
2538
2539 #. type: textblock
2540 #: ../src/guestfs.pod:1318
2541 msgid "If a close callback was set on the handle, then it is called."
2542 msgstr ""
2543
2544 #. type: =head1
2545 #: ../src/guestfs.pod:1320
2546 msgid "ERROR HANDLING"
2547 msgstr ""
2548
2549 #. type: textblock
2550 #: ../src/guestfs.pod:1322
2551 msgid ""
2552 "API functions can return errors.  For example, almost all functions that "
2553 "return C<int> will return C<-1> to indicate an error."
2554 msgstr ""
2555
2556 #. type: textblock
2557 #: ../src/guestfs.pod:1325
2558 msgid ""
2559 "Additional information is available for errors: an error message string and "
2560 "optionally an error number (errno) if the thing that failed was a system "
2561 "call."
2562 msgstr ""
2563
2564 #. type: textblock
2565 #: ../src/guestfs.pod:1329
2566 msgid ""
2567 "You can get at the additional information about the last error on the handle "
2568 "by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by setting "
2569 "up an error handler with L</guestfs_set_error_handler>."
2570 msgstr ""
2571
2572 #. type: textblock
2573 #: ../src/guestfs.pod:1334
2574 msgid ""
2575 "When the handle is created, a default error handler is installed which "
2576 "prints the error message string to C<stderr>.  For small short-running "
2577 "command line programs it is sufficient to do:"
2578 msgstr ""
2579
2580 #. type: verbatim
2581 #: ../src/guestfs.pod:1338
2582 #, no-wrap
2583 msgid ""
2584 " if (guestfs_launch (g) == -1)\n"
2585 "   exit (EXIT_FAILURE);\n"
2586 "\n"
2587 msgstr ""
2588
2589 #. type: textblock
2590 #: ../src/guestfs.pod:1341
2591 msgid ""
2592 "since the default error handler will ensure that an error message has been "
2593 "printed to C<stderr> before the program exits."
2594 msgstr ""
2595
2596 #. type: textblock
2597 #: ../src/guestfs.pod:1344
2598 msgid ""
2599 "For other programs the caller will almost certainly want to install an "
2600 "alternate error handler or do error handling in-line like this:"
2601 msgstr ""
2602
2603 #. type: verbatim
2604 #: ../src/guestfs.pod:1347
2605 #, no-wrap
2606 msgid ""
2607 " g = guestfs_create ();\n"
2608 " \n"
2609 msgstr ""
2610
2611 #. type: verbatim
2612 #: ../src/guestfs.pod:1349
2613 #, no-wrap
2614 msgid ""
2615 " /* This disables the default behaviour of printing errors\n"
2616 "    on stderr. */\n"
2617 " guestfs_set_error_handler (g, NULL, NULL);\n"
2618 " \n"
2619 msgstr ""
2620
2621 #. type: verbatim
2622 #: ../src/guestfs.pod:1353
2623 #, no-wrap
2624 msgid ""
2625 " if (guestfs_launch (g) == -1) {\n"
2626 "   /* Examine the error message and print it etc. */\n"
2627 "   char *msg = guestfs_last_error (g);\n"
2628 "   int errnum = guestfs_last_errno (g);\n"
2629 "   fprintf (stderr, \"%s\\n\", msg);\n"
2630 "   /* ... */\n"
2631 "  }\n"
2632 "\n"
2633 msgstr ""
2634
2635 #. type: textblock
2636 #: ../src/guestfs.pod:1361
2637 msgid ""
2638 "Out of memory errors are handled differently.  The default action is to call "
2639 "L<abort(3)>.  If this is undesirable, then you can set a handler using "
2640 "L</guestfs_set_out_of_memory_handler>."
2641 msgstr ""
2642
2643 #. type: textblock
2644 #: ../src/guestfs.pod:1365
2645 msgid ""
2646 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2647 "because there is no handle if this happens there is no way to get additional "
2648 "error information.  However L</guestfs_create> is supposed to be a "
2649 "lightweight operation which can only fail because of insufficient memory (it "
2650 "returns NULL in this case)."
2651 msgstr ""
2652
2653 #. type: =head2
2654 #: ../src/guestfs.pod:1371
2655 msgid "guestfs_last_error"
2656 msgstr ""
2657
2658 #. type: verbatim
2659 #: ../src/guestfs.pod:1373
2660 #, no-wrap
2661 msgid ""
2662 " const char *guestfs_last_error (guestfs_h *g);\n"
2663 "\n"
2664 msgstr ""
2665
2666 #. type: textblock
2667 #: ../src/guestfs.pod:1375
2668 msgid ""
2669 "This returns the last error message that happened on C<g>.  If there has not "
2670 "been an error since the handle was created, then this returns C<NULL>."
2671 msgstr ""
2672
2673 #. type: textblock
2674 #: ../src/guestfs.pod:1379
2675 msgid ""
2676 "The lifetime of the returned string is until the next error occurs, or "
2677 "L</guestfs_close> is called."
2678 msgstr ""
2679
2680 #. type: =head2
2681 #: ../src/guestfs.pod:1382
2682 msgid "guestfs_last_errno"
2683 msgstr ""
2684
2685 #. type: verbatim
2686 #: ../src/guestfs.pod:1384
2687 #, no-wrap
2688 msgid ""
2689 " int guestfs_last_errno (guestfs_h *g);\n"
2690 "\n"
2691 msgstr ""
2692
2693 #. type: textblock
2694 #: ../src/guestfs.pod:1386
2695 msgid "This returns the last error number (errno) that happened on C<g>."
2696 msgstr ""
2697
2698 #. type: textblock
2699 #: ../src/guestfs.pod:1388
2700 msgid "If successful, an errno integer not equal to zero is returned."
2701 msgstr ""
2702
2703 #. type: textblock
2704 #: ../src/guestfs.pod:1390
2705 msgid "If no error, this returns 0.  This call can return 0 in three situations:"
2706 msgstr ""
2707
2708 #. type: textblock
2709 #: ../src/guestfs.pod:1397
2710 msgid "There has not been any error on the handle."
2711 msgstr ""
2712
2713 #. type: textblock
2714 #: ../src/guestfs.pod:1401
2715 msgid ""
2716 "There has been an error but the errno was meaningless.  This corresponds to "
2717 "the case where the error did not come from a failed system call, but for "
2718 "some other reason."
2719 msgstr ""
2720
2721 #. type: textblock
2722 #: ../src/guestfs.pod:1407
2723 msgid ""
2724 "There was an error from a failed system call, but for some reason the errno "
2725 "was not captured and returned.  This usually indicates a bug in libguestfs."
2726 msgstr ""
2727
2728 #. type: textblock
2729 #: ../src/guestfs.pod:1413
2730 msgid ""
2731 "Libguestfs tries to convert the errno from inside the applicance into a "
2732 "corresponding errno for the caller (not entirely trivial: the appliance "
2733 "might be running a completely different operating system from the library "
2734 "and error numbers are not standardized across Un*xen).  If this could not be "
2735 "done, then the error is translated to C<EINVAL>.  In practice this should "
2736 "only happen in very rare circumstances."
2737 msgstr ""
2738
2739 #. type: =head2
2740 #: ../src/guestfs.pod:1421
2741 msgid "guestfs_set_error_handler"
2742 msgstr ""
2743
2744 #. type: verbatim
2745 #: ../src/guestfs.pod:1423
2746 #, no-wrap
2747 msgid ""
2748 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2749 "                                           void *opaque,\n"
2750 "                                           const char *msg);\n"
2751 " void guestfs_set_error_handler (guestfs_h *g,\n"
2752 "                                 guestfs_error_handler_cb cb,\n"
2753 "                                 void *opaque);\n"
2754 "\n"
2755 msgstr ""
2756
2757 #. type: textblock
2758 #: ../src/guestfs.pod:1430
2759 msgid ""
2760 "The callback C<cb> will be called if there is an error.  The parameters "
2761 "passed to the callback are an opaque data pointer and the error message "
2762 "string."
2763 msgstr ""
2764
2765 #. type: textblock
2766 #: ../src/guestfs.pod:1434
2767 msgid ""
2768 "C<errno> is not passed to the callback.  To get that the callback must call "
2769 "L</guestfs_last_errno>."
2770 msgstr ""
2771
2772 #. type: textblock
2773 #: ../src/guestfs.pod:1437
2774 msgid ""
2775 "Note that the message string C<msg> is freed as soon as the callback "
2776 "function returns, so if you want to stash it somewhere you must make your "
2777 "own copy."
2778 msgstr ""
2779
2780 #. type: textblock
2781 #: ../src/guestfs.pod:1441
2782 msgid "The default handler prints messages on C<stderr>."
2783 msgstr ""
2784
2785 #. type: textblock
2786 #: ../src/guestfs.pod:1443
2787 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2788 msgstr ""
2789
2790 #. type: =head2
2791 #: ../src/guestfs.pod:1445
2792 msgid "guestfs_get_error_handler"
2793 msgstr ""
2794
2795 #. type: verbatim
2796 #: ../src/guestfs.pod:1447
2797 #, no-wrap
2798 msgid ""
2799 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2800 "                                                     void **opaque_rtn);\n"
2801 "\n"
2802 msgstr ""
2803
2804 #. type: textblock
2805 #: ../src/guestfs.pod:1450
2806 msgid "Returns the current error handler callback."
2807 msgstr ""
2808
2809 #. type: =head2
2810 #: ../src/guestfs.pod:1452
2811 msgid "guestfs_set_out_of_memory_handler"
2812 msgstr ""
2813
2814 #. type: verbatim
2815 #: ../src/guestfs.pod:1454
2816 #, no-wrap
2817 msgid ""
2818 " typedef void (*guestfs_abort_cb) (void);\n"
2819 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2820 "                                        guestfs_abort_cb);\n"
2821 "\n"
2822 msgstr ""
2823
2824 #. type: textblock
2825 #: ../src/guestfs.pod:1458
2826 msgid ""
2827 "The callback C<cb> will be called if there is an out of memory situation.  "
2828 "I<Note this callback must not return>."
2829 msgstr ""
2830
2831 #. type: textblock
2832 #: ../src/guestfs.pod:1461
2833 msgid "The default is to call L<abort(3)>."
2834 msgstr ""
2835
2836 #. type: textblock
2837 #: ../src/guestfs.pod:1463
2838 msgid "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2839 msgstr ""
2840
2841 #. type: =head2
2842 #: ../src/guestfs.pod:1466
2843 msgid "guestfs_get_out_of_memory_handler"
2844 msgstr ""
2845
2846 #. type: verbatim
2847 #: ../src/guestfs.pod:1468
2848 #, no-wrap
2849 msgid ""
2850 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2851 "\n"
2852 msgstr ""
2853
2854 #. type: textblock
2855 #: ../src/guestfs.pod:1470
2856 msgid "This returns the current out of memory handler."
2857 msgstr ""
2858
2859 #. type: =head1
2860 #: ../src/guestfs.pod:1472
2861 msgid "API CALLS"
2862 msgstr ""
2863
2864 #. type: textblock
2865 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1010
2866 msgid "@ACTIONS@"
2867 msgstr ""
2868
2869 #. type: =head1
2870 #: ../src/guestfs.pod:1476
2871 msgid "STRUCTURES"
2872 msgstr ""
2873
2874 #. type: textblock
2875 #: ../src/guestfs.pod:1478
2876 msgid "@STRUCTS@"
2877 msgstr ""
2878
2879 #. type: =head1
2880 #: ../src/guestfs.pod:1480
2881 msgid "AVAILABILITY"
2882 msgstr ""
2883
2884 #. type: =head2
2885 #: ../src/guestfs.pod:1482
2886 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2887 msgstr ""
2888
2889 #. type: textblock
2890 #: ../src/guestfs.pod:1484
2891 msgid ""
2892 "Using L</guestfs_available> you can test availability of the following "
2893 "groups of functions.  This test queries the appliance to see if the "
2894 "appliance you are currently using supports the functionality."
2895 msgstr ""
2896
2897 #. type: textblock
2898 #: ../src/guestfs.pod:1489
2899 msgid "@AVAILABILITY@"
2900 msgstr ""
2901
2902 #. type: =head2
2903 #: ../src/guestfs.pod:1491
2904 msgid "GUESTFISH supported COMMAND"
2905 msgstr ""
2906
2907 #. type: textblock
2908 #: ../src/guestfs.pod:1493
2909 msgid ""
2910 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
2911 "prints out the available groups and whether they are supported by this build "
2912 "of libguestfs.  Note however that you have to do C<run> first."
2913 msgstr ""
2914
2915 #. type: =head2
2916 #: ../src/guestfs.pod:1498
2917 msgid "SINGLE CALLS AT COMPILE TIME"
2918 msgstr ""
2919
2920 #. type: textblock
2921 #: ../src/guestfs.pod:1500
2922 msgid ""
2923 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
2924 "function, such as:"
2925 msgstr ""
2926
2927 #. type: verbatim
2928 #: ../src/guestfs.pod:1503
2929 #, no-wrap
2930 msgid ""
2931 " #define LIBGUESTFS_HAVE_DD 1\n"
2932 "\n"
2933 msgstr ""
2934
2935 #. type: textblock
2936 #: ../src/guestfs.pod:1505
2937 msgid "if L</guestfs_dd> is available."
2938 msgstr ""
2939
2940 #. type: textblock
2941 #: ../src/guestfs.pod:1507
2942 msgid ""
2943 "Before version 1.5.8, if you needed to test whether a single libguestfs "
2944 "function is available at compile time, we recommended using build tools such "
2945 "as autoconf or cmake.  For example in autotools you could use:"
2946 msgstr ""
2947
2948 #. type: verbatim
2949 #: ../src/guestfs.pod:1512
2950 #, no-wrap
2951 msgid ""
2952 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
2953 " AC_CHECK_FUNCS([guestfs_dd])\n"
2954 "\n"
2955 msgstr ""
2956
2957 #. type: textblock
2958 #: ../src/guestfs.pod:1515
2959 msgid ""
2960 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined "
2961 "in your program."
2962 msgstr ""
2963
2964 #. type: =head2
2965 #: ../src/guestfs.pod:1518
2966 msgid "SINGLE CALLS AT RUN TIME"
2967 msgstr ""
2968
2969 #. type: textblock
2970 #: ../src/guestfs.pod:1520
2971 msgid ""
2972 "Testing at compile time doesn't guarantee that a function really exists in "
2973 "the library.  The reason is that you might be dynamically linked against a "
2974 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
2975 "This situation unfortunately results in a segmentation fault, which is a "
2976 "shortcoming of the C dynamic linking system itself."
2977 msgstr ""
2978
2979 #. type: textblock
2980 #: ../src/guestfs.pod:1527
2981 msgid ""
2982 "You can use L<dlopen(3)> to test if a function is available at run time, as "
2983 "in this example program (note that you still need the compile time check as "
2984 "well):"
2985 msgstr ""
2986
2987 #. type: verbatim
2988 #: ../src/guestfs.pod:1531
2989 #, no-wrap
2990 msgid ""
2991 " #include <stdio.h>\n"
2992 " #include <stdlib.h>\n"
2993 " #include <unistd.h>\n"
2994 " #include <dlfcn.h>\n"
2995 " #include <guestfs.h>\n"
2996 " \n"
2997 msgstr ""
2998
2999 #. type: verbatim
3000 #: ../src/guestfs.pod:1537
3001 #, no-wrap
3002 msgid ""
3003 " main ()\n"
3004 " {\n"
3005 " #ifdef LIBGUESTFS_HAVE_DD\n"
3006 "   void *dl;\n"
3007 "   int has_function;\n"
3008 " \n"
3009 msgstr ""
3010
3011 #. type: verbatim
3012 #: ../src/guestfs.pod:1543
3013 #, no-wrap
3014 msgid ""
3015 "   /* Test if the function guestfs_dd is really available. */\n"
3016 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3017 "   if (!dl) {\n"
3018 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3019 "     exit (EXIT_FAILURE);\n"
3020 "   }\n"
3021 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3022 "   dlclose (dl);\n"
3023 " \n"
3024 msgstr ""
3025
3026 #. type: verbatim
3027 #: ../src/guestfs.pod:1552
3028 #, no-wrap
3029 msgid ""
3030 "   if (!has_function)\n"
3031 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3032 "   else {\n"
3033 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3034 "     /* Now it's safe to call\n"
3035 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3036 "     */\n"
3037 "   }\n"
3038 " #else\n"
3039 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3040 " #endif\n"
3041 "  }\n"
3042 "\n"
3043 msgstr ""
3044
3045 #. type: textblock
3046 #: ../src/guestfs.pod:1565
3047 msgid ""
3048 "You may think the above is an awful lot of hassle, and it is.  There are "
3049 "other ways outside of the C linking system to ensure that this kind of "
3050 "incompatibility never arises, such as using package versioning:"
3051 msgstr ""
3052
3053 #. type: verbatim
3054 #: ../src/guestfs.pod:1570
3055 #, no-wrap
3056 msgid ""
3057 " Requires: libguestfs >= 1.0.80\n"
3058 "\n"
3059 msgstr ""
3060
3061 #. type: =head1
3062 #: ../src/guestfs.pod:1572
3063 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3064 msgstr ""
3065
3066 #. type: textblock
3067 #: ../src/guestfs.pod:1574
3068 msgid ""
3069 "A recent feature of the API is the introduction of calls which take optional "
3070 "arguments.  In C these are declared 3 ways.  The main way is as a call which "
3071 "takes variable arguments (ie. C<...>), as in this example:"
3072 msgstr ""
3073
3074 #. type: verbatim
3075 #: ../src/guestfs.pod:1579
3076 #, no-wrap
3077 msgid ""
3078 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3079 "\n"
3080 msgstr ""
3081
3082 #. type: textblock
3083 #: ../src/guestfs.pod:1581
3084 msgid ""
3085 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3086 "call with no optional arguments specified:"
3087 msgstr ""
3088
3089 #. type: verbatim
3090 #: ../src/guestfs.pod:1584
3091 #, no-wrap
3092 msgid ""
3093 " guestfs_add_drive_opts (g, filename, -1);\n"
3094 "\n"
3095 msgstr ""
3096
3097 #. type: textblock
3098 #: ../src/guestfs.pod:1586
3099 msgid "With a single optional argument:"
3100 msgstr ""
3101
3102 #. type: verbatim
3103 #: ../src/guestfs.pod:1588
3104 #, no-wrap
3105 msgid ""
3106 " guestfs_add_drive_opts (g, filename,\n"
3107 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3108 "                         -1);\n"
3109 "\n"
3110 msgstr ""
3111
3112 #. type: textblock
3113 #: ../src/guestfs.pod:1592
3114 msgid "With two:"
3115 msgstr ""
3116
3117 #. type: verbatim
3118 #: ../src/guestfs.pod:1594
3119 #, no-wrap
3120 msgid ""
3121 " guestfs_add_drive_opts (g, filename,\n"
3122 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3123 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3124 "                         -1);\n"
3125 "\n"
3126 msgstr ""
3127
3128 #. type: textblock
3129 #: ../src/guestfs.pod:1599
3130 msgid ""
3131 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3132 "happen!"
3133 msgstr ""
3134
3135 #. type: =head2
3136 #: ../src/guestfs.pod:1602
3137 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3138 msgstr ""
3139
3140 #. type: textblock
3141 #: ../src/guestfs.pod:1604
3142 msgid ""
3143 "The second variant has the same name with the suffix C<_va>, which works the "
3144 "same way but takes a C<va_list>.  See the C manual for details.  For the "
3145 "example function, this is declared:"
3146 msgstr ""
3147
3148 #. type: verbatim
3149 #: ../src/guestfs.pod:1608
3150 #, no-wrap
3151 msgid ""
3152 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3153 "                                va_list args);\n"
3154 "\n"
3155 msgstr ""
3156
3157 #. type: =head2
3158 #: ../src/guestfs.pod:1611
3159 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3160 msgstr ""
3161
3162 #. type: textblock
3163 #: ../src/guestfs.pod:1613
3164 msgid ""
3165 "The third variant is useful where you need to construct these calls.  You "
3166 "pass in a structure where you fill in the optional fields.  The structure "
3167 "has a bitmask as the first element which you must set to indicate which "
3168 "fields you have filled in.  For our example function the structure and call "
3169 "are declared:"
3170 msgstr ""
3171
3172 #. type: verbatim
3173 #: ../src/guestfs.pod:1619
3174 #, no-wrap
3175 msgid ""
3176 " struct guestfs_add_drive_opts_argv {\n"
3177 "   uint64_t bitmask;\n"
3178 "   int readonly;\n"
3179 "   const char *format;\n"
3180 "   /* ... */\n"
3181 " };\n"
3182 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3183 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3184 "\n"
3185 msgstr ""
3186
3187 #. type: textblock
3188 #: ../src/guestfs.pod:1628
3189 msgid "You could call it like this:"
3190 msgstr ""
3191
3192 #. type: verbatim
3193 #: ../src/guestfs.pod:1630
3194 #, no-wrap
3195 msgid ""
3196 " struct guestfs_add_drive_opts_argv optargs = {\n"
3197 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3198 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3199 "   .readonly = 1,\n"
3200 "   .format = \"qcow2\"\n"
3201 " };\n"
3202 " \n"
3203 msgstr ""
3204
3205 #. type: verbatim
3206 #: ../src/guestfs.pod:1637
3207 #, no-wrap
3208 msgid ""
3209 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3210 "\n"
3211 msgstr ""
3212
3213 #. type: textblock
3214 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11 ../src/guestfs-actions.pod:1858 ../src/guestfs-actions.pod:2785 ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1262 ../fish/guestfish-actions.pod:1898 ../tools/virt-win-reg.pl:704
3215 msgid "Notes:"
3216 msgstr ""
3217
3218 #. type: textblock
3219 #: ../src/guestfs.pod:1645
3220 msgid "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3221 msgstr ""
3222
3223 #. type: textblock
3224 #: ../src/guestfs.pod:1650
3225 msgid "You do not need to fill in all fields of the structure."
3226 msgstr ""
3227
3228 #. type: textblock
3229 #: ../src/guestfs.pod:1654
3230 msgid ""
3231 "There must be a one-to-one correspondence between fields of the structure "
3232 "that are filled in, and bits set in the bitmask."
3233 msgstr ""
3234
3235 #. type: =head2
3236 #: ../src/guestfs.pod:1659
3237 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3238 msgstr ""
3239
3240 #. type: textblock
3241 #: ../src/guestfs.pod:1661
3242 msgid ""
3243 "In other languages, optional arguments are expressed in the way that is "
3244 "natural for that language.  We refer you to the language-specific "
3245 "documentation for more details on that."
3246 msgstr ""
3247
3248 #. type: textblock
3249 #: ../src/guestfs.pod:1665
3250 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3251 msgstr ""
3252
3253 #. type: =head2
3254 #: ../src/guestfs.pod:1667
3255 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3256 msgstr ""
3257
3258 #. type: textblock
3259 #: ../src/guestfs.pod:1669
3260 msgid ""
3261 "B<Note:> This section documents the generic event mechanism introduced in "
3262 "libguestfs 1.10, which you should use in new code if possible.  The old "
3263 "functions C<guestfs_set_log_message_callback>, "
3264 "C<guestfs_set_subprocess_quit_callback>, "
3265 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3266 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3267 "page.  Because of the ABI guarantee, the old functions continue to work."
3268 msgstr ""
3269
3270 #. type: textblock
3271 #: ../src/guestfs.pod:1678
3272 msgid ""
3273 "Handles generate events when certain things happen, such as log messages "
3274 "being generated, progress messages during long-running operations, or the "
3275 "handle being closed.  The API calls described below let you register a "
3276 "callback to be called when events happen.  You can register multiple "
3277 "callbacks (for the same, different or overlapping sets of events), and "
3278 "individually remove callbacks.  If callbacks are not removed, then they "
3279 "remain in force until the handle is closed."
3280 msgstr ""
3281
3282 #. type: textblock
3283 #: ../src/guestfs.pod:1686
3284 msgid ""
3285 "In the current implementation, events are only generated synchronously: that "
3286 "means that events (and hence callbacks) can only happen while you are in the "
3287 "middle of making another libguestfs call.  The callback is called in the "
3288 "same thread."
3289 msgstr ""
3290
3291 #. type: textblock
3292 #: ../src/guestfs.pod:1691
3293 msgid ""
3294 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3295 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3296 msgstr ""
3297
3298 #. type: =head3
3299 #: ../src/guestfs.pod:1695
3300 msgid "CLASSES OF EVENTS"
3301 msgstr ""
3302
3303 #. type: =item
3304 #: ../src/guestfs.pod:1699
3305 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3306 msgstr ""
3307
3308 #. type: textblock
3309 #: ../src/guestfs.pod:1702
3310 msgid ""
3311 "The callback function will be called while the handle is being closed "
3312 "(synchronously from L</guestfs_close>)."
3313 msgstr ""
3314
3315 #. type: textblock
3316 #: ../src/guestfs.pod:1705
3317 msgid ""
3318 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3319 "handles that are open when the program exits.  This means that this callback "
3320 "might be called indirectly from L<exit(3)>, which can cause unexpected "
3321 "problems in higher-level languages (eg. if your HLL interpreter has already "
3322 "been cleaned up by the time this is called, and if your callback then jumps "
3323 "into some HLL function)."
3324 msgstr ""
3325
3326 #. type: textblock
3327 #: ../src/guestfs.pod:1712
3328 msgid ""
3329 "If no callback is registered: the handle is closed without any callback "
3330 "being invoked."
3331 msgstr ""
3332
3333 #. type: =item
3334 #: ../src/guestfs.pod:1715
3335 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3336 msgstr ""
3337
3338 #. type: textblock
3339 #: ../src/guestfs.pod:1718
3340 msgid ""
3341 "The callback function will be called when the child process quits, either "
3342 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3343 "corresponds to a transition from any state to the CONFIG state)."
3344 msgstr ""
3345
3346 #. type: textblock
3347 #: ../src/guestfs.pod:1722 ../src/guestfs.pod:1731
3348 msgid "If no callback is registered: the event is ignored."
3349 msgstr ""
3350
3351 #. type: =item
3352 #: ../src/guestfs.pod:1724
3353 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3354 msgstr ""
3355
3356 #. type: textblock
3357 #: ../src/guestfs.pod:1727
3358 msgid ""
3359 "The callback function will be called when the child process becomes ready "
3360 "first time after it has been launched.  (This corresponds to a transition "
3361 "from LAUNCHING to the READY state)."
3362 msgstr ""
3363
3364 #. type: =item
3365 #: ../src/guestfs.pod:1733
3366 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3367 msgstr ""
3368
3369 #. type: textblock
3370 #: ../src/guestfs.pod:1736
3371 msgid ""
3372 "Some long-running operations can generate progress messages.  If this "
3373 "callback is registered, then it will be called each time a progress message "
3374 "is generated (usually two seconds after the operation started, and three "
3375 "times per second thereafter until it completes, although the frequency may "
3376 "change in future versions)."
3377 msgstr ""
3378
3379 #. type: textblock
3380 #: ../src/guestfs.pod:1742
3381 msgid ""
3382 "The callback receives in the payload four unsigned 64 bit numbers which are "
3383 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3384 msgstr ""
3385
3386 #. type: textblock
3387 #: ../src/guestfs.pod:1745
3388 msgid ""
3389 "The units of C<total> are not defined, although for some operations C<total> "
3390 "may relate in some way to the amount of data to be transferred (eg. in bytes "
3391 "or megabytes), and C<position> may be the portion which has been "
3392 "transferred."
3393 msgstr ""
3394
3395 #. type: textblock
3396 #: ../src/guestfs.pod:1750
3397 msgid "The only defined and stable parts of the API are:"
3398 msgstr ""
3399
3400 #. type: textblock
3401 #: ../src/guestfs.pod:1756
3402 msgid ""
3403 "The callback can display to the user some type of progress bar or indicator "
3404 "which shows the ratio of C<position>:C<total>."
3405 msgstr ""
3406
3407 #. type: textblock
3408 #: ../src/guestfs.pod:1761
3409 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3410 msgstr ""
3411
3412 #. type: textblock
3413 #: ../src/guestfs.pod:1765
3414 msgid ""
3415 "If any progress notification is sent during a call, then a final progress "
3416 "notification is always sent when C<position> = C<total> (I<unless> the call "
3417 "fails with an error)."
3418 msgstr ""
3419
3420 #. type: textblock
3421 #: ../src/guestfs.pod:1769
3422 msgid ""
3423 "This is to simplify caller code, so callers can easily set the progress "
3424 "indicator to \"100%\" at the end of the operation, without requiring special "
3425 "code to detect this case."
3426 msgstr ""
3427
3428 #. type: textblock
3429 #: ../src/guestfs.pod:1775
3430 msgid ""
3431 "For some calls we are unable to estimate the progress of the call, but we "
3432 "can still generate progress messages to indicate activity.  This is known as "
3433 "\"pulse mode\", and is directly supported by certain progress bar "
3434 "implementations (eg. GtkProgressBar)."
3435 msgstr ""
3436
3437 #. type: textblock
3438 #: ../src/guestfs.pod:1780
3439 msgid ""
3440 "For these calls, zero or more progress messages are generated with "
3441 "C<position = 0> and C<total = 1>, followed by a final message with "
3442 "C<position = total = 1>."
3443 msgstr ""
3444
3445 #. type: textblock
3446 #: ../src/guestfs.pod:1784
3447 msgid ""
3448 "As noted above, if the call fails with an error then the final message may "
3449 "not be generated."
3450 msgstr ""
3451
3452 #. type: textblock
3453 #: ../src/guestfs.pod:1789
3454 msgid ""
3455 "The callback also receives the procedure number (C<proc_nr>) and serial "
3456 "number (C<serial>) of the call.  These are only useful for debugging "
3457 "protocol issues, and the callback can normally ignore them.  The callback "
3458 "may want to print these numbers in error messages or debugging messages."
3459 msgstr ""
3460
3461 #. type: textblock
3462 #: ../src/guestfs.pod:1795
3463 msgid "If no callback is registered: progress messages are discarded."
3464 msgstr ""
3465
3466 #. type: =item
3467 #: ../src/guestfs.pod:1797
3468 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3469 msgstr ""
3470
3471 #. type: textblock
3472 #: ../src/guestfs.pod:1800
3473 msgid ""
3474 "The callback function is called whenever a log message is generated by qemu, "
3475 "the appliance kernel, guestfsd (daemon), or utility programs."
3476 msgstr ""
3477
3478 #. type: textblock
3479 #: ../src/guestfs.pod:1803
3480 msgid ""
3481 "If the verbose flag (L</guestfs_set_verbose>) is set before launch "
3482 "(L</guestfs_launch>) then additional debug messages are generated."
3483 msgstr ""
3484
3485 #. type: textblock
3486 #: ../src/guestfs.pod:1806 ../src/guestfs.pod:1820
3487 msgid ""
3488 "If no callback is registered: the messages are discarded unless the verbose "
3489 "flag is set in which case they are sent to stderr.  You can override the "
3490 "printing of verbose messages to stderr by setting up a callback."
3491 msgstr ""
3492
3493 #. type: =item
3494 #: ../src/guestfs.pod:1811
3495 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3496 msgstr ""
3497
3498 #. type: textblock
3499 #: ../src/guestfs.pod:1814
3500 msgid ""
3501 "The callback function is called whenever a log message is generated by the "
3502 "library part of libguestfs."
3503 msgstr ""
3504
3505 #. type: textblock
3506 #: ../src/guestfs.pod:1817
3507 msgid ""
3508 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3509 "messages are generated."
3510 msgstr ""
3511
3512 #. type: =item
3513 #: ../src/guestfs.pod:1825
3514 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3515 msgstr ""
3516
3517 #. type: textblock
3518 #: ../src/guestfs.pod:1828
3519 msgid ""
3520 "The callback function is called whenever a trace message is generated.  This "
3521 "only applies if the trace flag (L</guestfs_set_trace>) is set."
3522 msgstr ""
3523
3524 #. type: textblock
3525 #: ../src/guestfs.pod:1831
3526 msgid ""
3527 "If no callback is registered: the messages are sent to stderr.  You can "
3528 "override the printing of trace messages to stderr by setting up a callback."
3529 msgstr ""
3530
3531 #. type: =head3
3532 #: ../src/guestfs.pod:1837
3533 msgid "guestfs_set_event_callback"
3534 msgstr ""
3535
3536 #. type: verbatim
3537 #: ../src/guestfs.pod:1839
3538 #, no-wrap
3539 msgid ""
3540 " int guestfs_set_event_callback (guestfs_h *g,\n"
3541 "                                 guestfs_event_callback cb,\n"
3542 "                                 uint64_t event_bitmask,\n"
3543 "                                 int flags,\n"
3544 "                                 void *opaque);\n"
3545 "\n"
3546 msgstr ""
3547
3548 #. type: textblock
3549 #: ../src/guestfs.pod:1845
3550 msgid ""
3551 "This function registers a callback (C<cb>) for all event classes in the "
3552 "C<event_bitmask>."
3553 msgstr ""
3554
3555 #. type: textblock
3556 #: ../src/guestfs.pod:1848
3557 msgid ""
3558 "For example, to register for all log message events, you could call this "
3559 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>.  "
3560 "To register a single callback for all possible classes of events, use "
3561 "C<GUESTFS_EVENT_ALL>."
3562 msgstr ""
3563
3564 #. type: textblock
3565 #: ../src/guestfs.pod:1854
3566 msgid "C<flags> should always be passed as 0."
3567 msgstr ""
3568
3569 #. type: textblock
3570 #: ../src/guestfs.pod:1856
3571 msgid ""
3572 "C<opaque> is an opaque pointer which is passed to the callback.  You can use "
3573 "it for any purpose."
3574 msgstr ""
3575
3576 #. type: textblock
3577 #: ../src/guestfs.pod:1859
3578 msgid ""
3579 "The return value is the event handle (an integer) which you can use to "
3580 "delete the callback (see below)."
3581 msgstr ""
3582
3583 #. type: textblock
3584 #: ../src/guestfs.pod:1862
3585 msgid ""
3586 "If there is an error, this function returns C<-1>, and sets the error in the "
3587 "handle in the usual way (see L</guestfs_last_error> etc.)"
3588 msgstr ""
3589
3590 #. type: textblock
3591 #: ../src/guestfs.pod:1865
3592 msgid ""
3593 "Callbacks remain in effect until they are deleted, or until the handle is "
3594 "closed."
3595 msgstr ""
3596
3597 #. type: textblock
3598 #: ../src/guestfs.pod:1868
3599 msgid ""
3600 "In the case where multiple callbacks are registered for a particular event "
3601 "class, all of the callbacks are called.  The order in which multiple "
3602 "callbacks are called is not defined."
3603 msgstr ""
3604
3605 #. type: =head3
3606 #: ../src/guestfs.pod:1872
3607 msgid "guestfs_delete_event_callback"
3608 msgstr ""
3609
3610 #. type: verbatim
3611 #: ../src/guestfs.pod:1874
3612 #, no-wrap
3613 msgid ""
3614 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3615 "\n"
3616 msgstr ""
3617
3618 #. type: textblock
3619 #: ../src/guestfs.pod:1876
3620 msgid ""
3621 "Delete a callback that was previously registered.  C<event_handle> should be "
3622 "the integer that was returned by a previous call to "
3623 "C<guestfs_set_event_callback> on the same handle."
3624 msgstr ""
3625
3626 #. type: =head3
3627 #: ../src/guestfs.pod:1880
3628 msgid "guestfs_event_callback"
3629 msgstr ""
3630
3631 #. type: verbatim
3632 #: ../src/guestfs.pod:1882
3633 #, no-wrap
3634 msgid ""
3635 " typedef void (*guestfs_event_callback) (\n"
3636 "                  guestfs_h *g,\n"
3637 "                  void *opaque,\n"
3638 "                  uint64_t event,\n"
3639 "                  int event_handle,\n"
3640 "                  int flags,\n"
3641 "                  const char *buf, size_t buf_len,\n"
3642 "                  const uint64_t *array, size_t array_len);\n"
3643 "\n"
3644 msgstr ""
3645
3646 #. type: textblock
3647 #: ../src/guestfs.pod:1891
3648 msgid "This is the type of the event callback function that you have to provide."
3649 msgstr ""
3650
3651 #. type: textblock
3652 #: ../src/guestfs.pod:1894
3653 msgid ""
3654 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3655 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3656 "handle, and C<flags> which in the current API you should ignore."
3657 msgstr ""
3658
3659 #. type: textblock
3660 #: ../src/guestfs.pod:1898
3661 msgid ""
3662 "The remaining parameters contain the event payload (if any).  Each event may "
3663 "contain a payload, which usually relates to the event class, but for future "
3664 "proofing your code should be written to handle any payload for any event "
3665 "class."
3666 msgstr ""
3667
3668 #. type: textblock
3669 #: ../src/guestfs.pod:1903
3670 msgid ""
3671 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3672 "there is no message buffer).  Note that this message buffer can contain "
3673 "arbitrary 8 bit data, including NUL bytes."
3674 msgstr ""
3675
3676 #. type: textblock
3677 #: ../src/guestfs.pod:1907
3678 msgid ""
3679 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3680 "moment this is only used for progress messages."
3681 msgstr ""
3682
3683 #. type: =head3
3684 #: ../src/guestfs.pod:1910
3685 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3686 msgstr ""
3687
3688 #. type: textblock
3689 #: ../src/guestfs.pod:1912
3690 msgid ""
3691 "One motivation for the generic event API was to allow GUI programs to "
3692 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3693 "unconditionally to C<stderr>."
3694 msgstr ""
3695
3696 #. type: textblock
3697 #: ../src/guestfs.pod:1916
3698 msgid ""
3699 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3700 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3701 "messages are not events; you must capture error messages separately)."
3702 msgstr ""
3703
3704 #. type: textblock
3705 #: ../src/guestfs.pod:1921
3706 msgid ""
3707 "Programs have to set up a callback to capture the classes of events of "
3708 "interest:"
3709 msgstr ""
3710
3711 #. type: verbatim
3712 #: ../src/guestfs.pod:1924
3713 #, no-wrap
3714 msgid ""
3715 " int eh =\n"
3716 "   guestfs_set_event_callback\n"
3717 "     (g, message_callback,\n"
3718 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3719 "      GUESTFS_EVENT_TRACE,\n"
3720 "      0, NULL) == -1)\n"
3721 " if (eh == -1) {\n"
3722 "   // handle error in the usual way\n"
3723 " }\n"
3724 "\n"
3725 msgstr ""
3726
3727 #. type: textblock
3728 #: ../src/guestfs.pod:1934
3729 msgid ""
3730 "The callback can then direct messages to the appropriate place.  In this "
3731 "example, messages are directed to syslog:"
3732 msgstr ""
3733
3734 #. type: verbatim
3735 #: ../src/guestfs.pod:1937
3736 #, no-wrap
3737 msgid ""
3738 " static void\n"
3739 " message_callback (\n"
3740 "         guestfs_h *g,\n"
3741 "         void *opaque,\n"
3742 "         uint64_t event,\n"
3743 "         int event_handle,\n"
3744 "         int flags,\n"
3745 "         const char *buf, size_t buf_len,\n"
3746 "         const uint64_t *array, size_t array_len)\n"
3747 " {\n"
3748 "   const int priority = LOG_USER|LOG_INFO;\n"
3749 "   if (buf_len > 0)\n"
3750 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3751 " }\n"
3752 "\n"
3753 msgstr ""
3754
3755 #. type: =head1
3756 #: ../src/guestfs.pod:1952
3757 msgid "PRIVATE DATA AREA"
3758 msgstr ""
3759
3760 #. type: textblock
3761 #: ../src/guestfs.pod:1954
3762 msgid ""
3763 "You can attach named pieces of private data to the libguestfs handle, fetch "
3764 "them by name, and walk over them, for the lifetime of the handle.  This is "
3765 "called the private data area and is only available from the C API."
3766 msgstr ""
3767
3768 #. type: textblock
3769 #: ../src/guestfs.pod:1959
3770 msgid "To attach a named piece of data, use the following call:"
3771 msgstr ""
3772
3773 #. type: verbatim
3774 #: ../src/guestfs.pod:1961
3775 #, no-wrap
3776 msgid ""
3777 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3778 "\n"
3779 msgstr ""
3780
3781 #. type: textblock
3782 #: ../src/guestfs.pod:1963
3783 msgid ""
3784 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3785 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3786 "overwritten."
3787 msgstr ""
3788
3789 #. type: textblock
3790 #: ../src/guestfs.pod:1967
3791 msgid ""
3792 "You can use any C<key> you want, but your key should I<not> start with an "
3793 "underscore character.  Keys beginning with an underscore character are "
3794 "reserved for internal libguestfs purposes (eg. for implementing language "
3795 "bindings).  It is recommended that you prefix the key with some unique "
3796 "string to avoid collisions with other users."
3797 msgstr ""
3798
3799 #. type: textblock
3800 #: ../src/guestfs.pod:1973
3801 msgid "To retrieve the pointer, use:"
3802 msgstr ""
3803
3804 #. type: verbatim
3805 #: ../src/guestfs.pod:1975
3806 #, no-wrap
3807 msgid ""
3808 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3809 "\n"
3810 msgstr ""
3811
3812 #. type: textblock
3813 #: ../src/guestfs.pod:1977
3814 msgid ""
3815 "This function returns C<NULL> if either no data is found associated with "
3816 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3817 "C<NULL>."
3818 msgstr ""
3819
3820 #. type: textblock
3821 #: ../src/guestfs.pod:1981
3822 msgid ""
3823 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3824 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3825 "all.  In particular, libguestfs does I<not> try to free the data when the "
3826 "handle is closed.  If the data must be freed, then the caller must either "
3827 "free it before calling L</guestfs_close> or must set up a close callback to "
3828 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3829 msgstr ""
3830
3831 #. type: textblock
3832 #: ../src/guestfs.pod:1988
3833 msgid "To walk over all entries, use these two functions:"
3834 msgstr ""
3835
3836 #. type: verbatim
3837 #: ../src/guestfs.pod:1990
3838 #, no-wrap
3839 msgid ""
3840 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
3841 "\n"
3842 msgstr ""
3843
3844 #. type: verbatim
3845 #: ../src/guestfs.pod:1992
3846 #, no-wrap
3847 msgid ""
3848 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
3849 "\n"
3850 msgstr ""
3851
3852 #. type: textblock
3853 #: ../src/guestfs.pod:1994
3854 msgid ""
3855 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does "
3856 "not have any particular meaning -- keys are not returned in any defined "
3857 "order).  A pointer to the key is returned in C<*key_rtn> and the "
3858 "corresponding data pointer is returned from the function.  C<NULL> is "
3859 "returned if there are no keys stored in the handle."
3860 msgstr ""
3861
3862 #. type: textblock
3863 #: ../src/guestfs.pod:2000
3864 msgid ""
3865 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
3866 "value of this function is also C<NULL> is there are no further entries to "
3867 "return."
3868 msgstr ""
3869
3870 #. type: textblock
3871 #: ../src/guestfs.pod:2004
3872 msgid "Notes about walking over entries:"
3873 msgstr ""
3874
3875 #. type: textblock
3876 #: ../src/guestfs.pod:2010
3877 msgid "You must not call C<guestfs_set_private> while walking over the entries."
3878 msgstr ""
3879
3880 #. type: textblock
3881 #: ../src/guestfs.pod:2015
3882 msgid ""
3883 "The handle maintains an internal iterator which is reset when you call "
3884 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
3885 "call C<guestfs_set_private>."
3886 msgstr ""
3887
3888 #. type: textblock
3889 #: ../src/guestfs.pod:2021
3890 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
3891 msgstr ""
3892
3893 #. type: verbatim
3894 #: ../src/guestfs.pod:2023
3895 #, no-wrap
3896 msgid ""
3897 " guestfs_set_private (g, key, NULL);\n"
3898 "\n"
3899 msgstr ""
3900
3901 #. type: textblock
3902 #: ../src/guestfs.pod:2025
3903 msgid "then that C<key> is not returned when walking."
3904 msgstr ""
3905
3906 #. type: textblock
3907 #: ../src/guestfs.pod:2029
3908 msgid ""
3909 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
3910 "C<guestfs_next_private> or C<guestfs_set_private>."
3911 msgstr ""
3912
3913 #. type: textblock
3914 #: ../src/guestfs.pod:2035
3915 msgid ""
3916 "The following example code shows how to print all keys and data pointers "
3917 "that are associated with the handle C<g>:"
3918 msgstr ""
3919
3920 #. type: verbatim
3921 #: ../src/guestfs.pod:2038
3922 #, no-wrap
3923 msgid ""
3924 " const char *key;\n"
3925 " void *data = guestfs_first_private (g, &key);\n"
3926 " while (data != NULL)\n"
3927 "   {\n"
3928 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
3929 "     data = guestfs_next_private (g, &key);\n"
3930 "   }\n"
3931 "\n"
3932 msgstr ""
3933
3934 #. type: textblock
3935 #: ../src/guestfs.pod:2046
3936 msgid ""
3937 "More commonly you are only interested in keys that begin with an "
3938 "application-specific prefix C<foo_>.  Modify the loop like so:"
3939 msgstr ""
3940
3941 #. type: verbatim
3942 #: ../src/guestfs.pod:2049
3943 #, no-wrap
3944 msgid ""
3945 " const char *key;\n"
3946 " void *data = guestfs_first_private (g, &key);\n"
3947 " while (data != NULL)\n"
3948 "   {\n"
3949 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
3950 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
3951 "     data = guestfs_next_private (g, &key);\n"
3952 "   }\n"
3953 "\n"
3954 msgstr ""
3955
3956 #. type: textblock
3957 #: ../src/guestfs.pod:2058
3958 msgid ""
3959 "If you need to modify keys while walking, then you have to jump back to the "
3960 "beginning of the loop.  For example, to delete all keys prefixed with "
3961 "C<foo_>:"
3962 msgstr ""
3963
3964 #. type: verbatim
3965 #: ../src/guestfs.pod:2062
3966 #, no-wrap
3967 msgid ""
3968 "  const char *key;\n"
3969 "  void *data;\n"
3970 " again:\n"
3971 "  data = guestfs_first_private (g, &key);\n"
3972 "  while (data != NULL)\n"
3973 "    {\n"
3974 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
3975 "        {\n"
3976 "          guestfs_set_private (g, key, NULL);\n"
3977 "          /* note that 'key' pointer is now invalid, and so is\n"
3978 "             the internal iterator */\n"
3979 "          goto again;\n"
3980 "        }\n"
3981 "      data = guestfs_next_private (g, &key);\n"
3982 "    }\n"
3983 "\n"
3984 msgstr ""
3985
3986 #. type: textblock
3987 #: ../src/guestfs.pod:2078
3988 msgid ""
3989 "Note that the above loop is guaranteed to terminate because the keys are "
3990 "being deleted, but other manipulations of keys within the loop might not "
3991 "terminate unless you also maintain an indication of which keys have been "
3992 "visited."
3993 msgstr ""
3994
3995 #. type: =end
3996 #: ../src/guestfs.pod:2083 ../src/guestfs.pod:2088
3997 msgid "html"
3998 msgstr ""
3999
4000 #. type: textblock
4001 #: ../src/guestfs.pod:2085
4002 msgid ""
4003 "<!-- old anchor for the next section --> <a "
4004 "name=\"state_machine_and_low_level_event_api\"/>"
4005 msgstr ""
4006
4007 #. type: =head1
4008 #: ../src/guestfs.pod:2090
4009 msgid "ARCHITECTURE"
4010 msgstr ""
4011
4012 #. type: textblock
4013 #: ../src/guestfs.pod:2092
4014 msgid ""
4015 "Internally, libguestfs is implemented by running an appliance (a special "
4016 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4017 "process of the main program."
4018 msgstr ""
4019
4020 #. type: verbatim
4021 #: ../src/guestfs.pod:2096
4022 #, no-wrap
4023 msgid ""
4024 "  ___________________\n"
4025 " /                   \\\n"
4026 " | main program      |\n"
4027 " |                   |\n"
4028 " |                   |           child process / appliance\n"
4029 " |                   |           __________________________\n"
4030 " |                   |          / qemu                     \\\n"
4031 " +-------------------+   RPC    |      +-----------------+ |\n"
4032 " | libguestfs     <--------------------> guestfsd        | |\n"
4033 " |                   |          |      +-----------------+ |\n"
4034 " \\___________________/          |      | Linux kernel    | |\n"
4035 "                                |      +--^--------------+ |\n"
4036 "                                \\_________|________________/\n"
4037 "                                          |\n"
4038 "                                   _______v______\n"
4039 "                                  /              \\\n"
4040 "                                  | Device or    |\n"
4041 "                                  | disk image   |\n"
4042 "                                  \\______________/\n"
4043 "\n"
4044 msgstr ""
4045
4046 #. type: textblock
4047 #: ../src/guestfs.pod:2116
4048 msgid ""
4049 "The library, linked to the main program, creates the child process and hence "
4050 "the appliance in the L</guestfs_launch> function."
4051 msgstr ""
4052
4053 #. type: textblock
4054 #: ../src/guestfs.pod:2119
4055 msgid ""
4056 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4057 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4058 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4059 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs "
4060 "API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4061 "attached to the qemu process which translates device access by the "
4062 "appliance's Linux kernel into accesses to the image."
4063 msgstr ""
4064
4065 #. type: textblock
4066 #: ../src/guestfs.pod:2128
4067 msgid ""
4068 "A common misunderstanding is that the appliance \"is\" the virtual machine.  "
4069 "Although the disk image you are attached to might also be used by some "
4070 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4071 "care if both libguestfs's qemu process and your virtual machine are trying "
4072 "to update the disk image at the same time, since these usually results in "
4073 "massive disk corruption)."
4074 msgstr ""
4075
4076 #. type: =head1
4077 #: ../src/guestfs.pod:2135
4078 msgid "STATE MACHINE"
4079 msgstr ""
4080
4081 #. type: textblock
4082 #: ../src/guestfs.pod:2137
4083 msgid "libguestfs uses a state machine to model the child process:"
4084 msgstr ""
4085
4086 #. type: verbatim
4087 #: ../src/guestfs.pod:2139
4088 #, no-wrap
4089 msgid ""
4090 "                         |\n"
4091 "                    guestfs_create\n"
4092 "                         |\n"
4093 "                         |\n"
4094 "                     ____V_____\n"
4095 "                    /          \\\n"
4096 "                    |  CONFIG  |\n"
4097 "                    \\__________/\n"
4098 "                     ^ ^   ^  \\\n"
4099 "                    /  |    \\  \\ guestfs_launch\n"
4100 "                   /   |    _\\__V______\n"
4101 "                  /    |   /           \\\n"
4102 "                 /     |   | LAUNCHING |\n"
4103 "                /      |   \\___________/\n"
4104 "               /       |       /\n"
4105 "              /        |  guestfs_launch\n"
4106 "             /         |     /\n"
4107 "    ______  /        __|____V\n"
4108 "   /      \\ ------> /        \\\n"
4109 "   | BUSY |         | READY  |\n"
4110 "   \\______/ <------ \\________/\n"
4111 "\n"
4112 msgstr ""
4113
4114 #. type: textblock
4115 #: ../src/guestfs.pod:2161
4116 msgid ""
4117 "The normal transitions are (1) CONFIG (when the handle is created, but there "
4118 "is no child process), (2) LAUNCHING (when the child process is booting up), "
4119 "(3) alternating between READY and BUSY as commands are issued to, and "
4120 "carried out by, the child process."
4121 msgstr ""
4122
4123 #. type: textblock
4124 #: ../src/guestfs.pod:2166
4125 msgid ""
4126 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4127 "asynchronously at any time (eg. due to some internal error), and that causes "
4128 "the state to transition back to CONFIG."
4129 msgstr ""
4130
4131 #. type: textblock
4132 #: ../src/guestfs.pod:2170
4133 msgid ""
4134 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4135 "issued when in the CONFIG state."
4136 msgstr ""
4137
4138 #. type: textblock
4139 #: ../src/guestfs.pod:2173
4140 msgid ""
4141 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4142 "L</guestfs_launch> blocks until the child process is READY to accept "
4143 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4144 "moves the state from CONFIG to LAUNCHING while it is running."
4145 msgstr ""
4146
4147 #. type: textblock
4148 #: ../src/guestfs.pod:2179
4149 msgid ""
4150 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4151 "state.  These API calls block waiting for the command to be carried out "
4152 "(ie. the state to transition to BUSY and then back to READY).  There are no "
4153 "non-blocking versions, and no way to issue more than one command per handle "
4154 "at the same time."
4155 msgstr ""
4156
4157 #. type: textblock
4158 #: ../src/guestfs.pod:2185
4159 msgid ""
4160 "Finally, the child process sends asynchronous messages back to the main "
4161 "program, such as kernel log messages.  You can register a callback to "
4162 "receive these messages."
4163 msgstr ""
4164
4165 #. type: =head1
4166 #: ../src/guestfs.pod:2189
4167 msgid "INTERNALS"
4168 msgstr ""
4169
4170 #. type: =head2
4171 #: ../src/guestfs.pod:2191
4172 msgid "COMMUNICATION PROTOCOL"
4173 msgstr ""
4174
4175 #. type: textblock
4176 #: ../src/guestfs.pod:2193
4177 msgid ""
4178 "Don't rely on using this protocol directly.  This section documents how it "
4179 "currently works, but it may change at any time."
4180 msgstr ""
4181
4182 #. type: textblock
4183 #: ../src/guestfs.pod:2196
4184 msgid ""
4185 "The protocol used to talk between the library and the daemon running inside "
4186 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4187 "1014, RFC 1832, RFC 4506)."
4188 msgstr ""
4189
4190 #. type: textblock
4191 #: ../src/guestfs.pod:2200
4192 msgid ""
4193 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4194 "this file is automatically generated)."
4195 msgstr ""
4196
4197 #. type: textblock
4198 #: ../src/guestfs.pod:2203
4199 msgid ""
4200 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4201 "and C<FileOut> parameters, which are handled with very simple request/reply "
4202 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4203 "parameters, which use the same request and reply messages, but they may also "
4204 "be followed by files sent using a chunked encoding."
4205 msgstr ""
4206
4207 #. type: =head3
4208 #: ../src/guestfs.pod:2210
4209 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4210 msgstr ""
4211
4212 #. type: textblock
4213 #: ../src/guestfs.pod:2212
4214 msgid "For ordinary functions, the request message is:"
4215 msgstr ""
4216
4217 #. type: verbatim
4218 #: ../src/guestfs.pod:2214
4219 #, no-wrap
4220 msgid ""
4221 " total length (header + arguments,\n"
4222 "      but not including the length word itself)\n"
4223 " struct guestfs_message_header (encoded as XDR)\n"
4224 " struct guestfs_<foo>_args (encoded as XDR)\n"
4225 "\n"
4226 msgstr ""
4227
4228 #. type: textblock
4229 #: ../src/guestfs.pod:2219
4230 msgid ""
4231 "The total length field allows the daemon to allocate a fixed size buffer "
4232 "into which it slurps the rest of the message.  As a result, the total length "
4233 "is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the "
4234 "effective size of any request is limited to somewhere under this size."
4235 msgstr ""
4236
4237 #. type: textblock
4238 #: ../src/guestfs.pod:2225
4239 msgid ""
4240 "Note also that many functions don't take any arguments, in which case the "
4241 "C<guestfs_I<foo>_args> is completely omitted."
4242 msgstr ""
4243
4244 #. type: textblock
4245 #: ../src/guestfs.pod:2228
4246 msgid ""
4247 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4248 "receiver knows what type of args structure to expect, or none at all."
4249 msgstr ""
4250
4251 #. type: textblock
4252 #: ../src/guestfs.pod:2232
4253 msgid ""
4254 "For functions that take optional arguments, the optional arguments are "
4255 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4256 "arguments.  A bitmask in the header indicates which optional arguments are "
4257 "meaningful.  The bitmask is also checked to see if it contains bits set "
4258 "which the daemon does not know about (eg. if more optional arguments were "
4259 "added in a later version of the library), and this causes the call to be "
4260 "rejected."
4261 msgstr ""
4262
4263 #. type: textblock
4264 #: ../src/guestfs.pod:2240
4265 msgid "The reply message for ordinary functions is:"
4266 msgstr ""
4267
4268 #. type: verbatim
4269 #: ../src/guestfs.pod:2242
4270 #, no-wrap
4271 msgid ""
4272 " total length (header + ret,\n"
4273 "      but not including the length word itself)\n"
4274 " struct guestfs_message_header (encoded as XDR)\n"
4275 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4276 "\n"
4277 msgstr ""
4278
4279 #. type: textblock
4280 #: ../src/guestfs.pod:2247
4281 msgid ""
4282 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4283 "functions that return no formal return values."
4284 msgstr ""
4285
4286 #. type: textblock
4287 #: ../src/guestfs.pod:2250
4288 msgid "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4289 msgstr ""
4290
4291 #. type: textblock
4292 #: ../src/guestfs.pod:2253
4293 msgid ""
4294 "In the case of an error, a flag is set in the header, and the reply message "
4295 "is slightly changed:"
4296 msgstr ""
4297
4298 #. type: verbatim
4299 #: ../src/guestfs.pod:2256
4300 #, no-wrap
4301 msgid ""
4302 " total length (header + error,\n"
4303 "      but not including the length word itself)\n"
4304 " struct guestfs_message_header (encoded as XDR)\n"
4305 " struct guestfs_message_error (encoded as XDR)\n"
4306 "\n"
4307 msgstr ""
4308
4309 #. type: textblock
4310 #: ../src/guestfs.pod:2261
4311 msgid ""
4312 "The C<guestfs_message_error> structure contains the error message as a "
4313 "string."
4314 msgstr ""
4315
4316 #. type: =head3
4317 #: ../src/guestfs.pod:2264
4318 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4319 msgstr ""
4320
4321 #. type: textblock
4322 #: ../src/guestfs.pod:2266
4323 msgid ""
4324 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4325 "The normal request message is sent (see above).  However this is followed by "
4326 "a sequence of file chunks."
4327 msgstr ""
4328
4329 #. type: verbatim
4330 #: ../src/guestfs.pod:2270
4331 #, no-wrap
4332 msgid ""
4333 " total length (header + arguments,\n"
4334 "      but not including the length word itself,\n"
4335 "      and not including the chunks)\n"
4336 " struct guestfs_message_header (encoded as XDR)\n"
4337 " struct guestfs_<foo>_args (encoded as XDR)\n"
4338 " sequence of chunks for FileIn param #0\n"
4339 " sequence of chunks for FileIn param #1 etc.\n"
4340 "\n"
4341 msgstr ""
4342
4343 #. type: textblock
4344 #: ../src/guestfs.pod:2278
4345 msgid "The \"sequence of chunks\" is:"
4346 msgstr ""
4347
4348 #. type: verbatim
4349 #: ../src/guestfs.pod:2280
4350 #, no-wrap
4351 msgid ""
4352 " length of chunk (not including length word itself)\n"
4353 " struct guestfs_chunk (encoded as XDR)\n"
4354 " length of chunk\n"
4355 " struct guestfs_chunk (encoded as XDR)\n"
4356 "   ...\n"
4357 " length of chunk\n"
4358 " struct guestfs_chunk (with data.data_len == 0)\n"
4359 "\n"
4360 msgstr ""
4361
4362 #. type: textblock
4363 #: ../src/guestfs.pod:2288
4364 msgid ""
4365 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4366 "is set in the final chunk to indicate either successful completion or early "
4367 "cancellation."
4368 msgstr ""
4369
4370 #. type: textblock
4371 #: ../src/guestfs.pod:2292
4372 msgid ""
4373 "At time of writing there are no functions that have more than one FileIn "
4374 "parameter.  However this is (theoretically) supported, by sending the "
4375 "sequence of chunks for each FileIn parameter one after another (from left to "
4376 "right)."
4377 msgstr ""
4378
4379 #. type: textblock
4380 #: ../src/guestfs.pod:2297
4381 msgid ""
4382 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4383 "transfer.  The library does this by sending a chunk with a special flag set "
4384 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4385 "RPC, does I<not> send any reply, and goes back to reading the next request."
4386 msgstr ""
4387
4388 #. type: textblock
4389 #: ../src/guestfs.pod:2303
4390 msgid ""
4391 "The daemon may also cancel.  It does this by writing a special word "
4392 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4393 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4394 "cancel chunk).  The special word is chosen so that even if cancellation "
4395 "happens right at the end of the transfer (after the library has finished "
4396 "writing and has started listening for the reply), the \"spurious\" cancel "
4397 "flag will not be confused with the reply message."
4398 msgstr ""
4399
4400 #. type: textblock
4401 #: ../src/guestfs.pod:2312
4402 msgid ""
4403 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4404 "limit), and also files where the size is not known in advance (eg. from "
4405 "pipes or sockets).  However the chunks are rather small "
4406 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need "
4407 "to keep much in memory."
4408 msgstr ""
4409
4410 #. type: =head3
4411 #: ../src/guestfs.pod:2318
4412 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4413 msgstr ""
4414
4415 #. type: textblock
4416 #: ../src/guestfs.pod:2320
4417 msgid ""
4418 "The protocol for FileOut parameters is exactly the same as for FileIn "
4419 "parameters, but with the roles of daemon and library reversed."
4420 msgstr ""
4421
4422 #. type: verbatim
4423 #: ../src/guestfs.pod:2323
4424 #, no-wrap
4425 msgid ""
4426 " total length (header + ret,\n"
4427 "      but not including the length word itself,\n"
4428 "      and not including the chunks)\n"
4429 " struct guestfs_message_header (encoded as XDR)\n"
4430 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4431 " sequence of chunks for FileOut param #0\n"
4432 " sequence of chunks for FileOut param #1 etc.\n"
4433 "\n"
4434 msgstr ""
4435
4436 #. type: =head3
4437 #: ../src/guestfs.pod:2331
4438 msgid "INITIAL MESSAGE"
4439 msgstr ""
4440
4441 #. type: textblock
4442 #: ../src/guestfs.pod:2333
4443 msgid ""
4444 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4445 "which indicates that the guest and daemon is alive.  This is what "
4446 "L</guestfs_launch> waits for."
4447 msgstr ""
4448
4449 #. type: =head3
4450 #: ../src/guestfs.pod:2337
4451 msgid "PROGRESS NOTIFICATION MESSAGES"
4452 msgstr ""
4453
4454 #. type: textblock
4455 #: ../src/guestfs.pod:2339
4456 msgid ""
4457 "The daemon may send progress notification messages at any time.  These are "
4458 "distinguished by the normal length word being replaced by "
4459 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4460 msgstr ""
4461
4462 #. type: textblock
4463 #: ../src/guestfs.pod:2343
4464 msgid ""
4465 "The library turns them into progress callbacks (see "
4466 "L</GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards "
4467 "them if not."
4468 msgstr ""
4469
4470 #. type: textblock
4471 #: ../src/guestfs.pod:2347
4472 msgid ""
4473 "The daemon self-limits the frequency of progress messages it sends (see "
4474 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4475 "messages."
4476 msgstr ""
4477
4478 #. type: =head1
4479 #: ../src/guestfs.pod:2351
4480 msgid "LIBGUESTFS VERSION NUMBERS"
4481 msgstr ""
4482
4483 #. type: textblock
4484 #: ../src/guestfs.pod:2353
4485 msgid ""
4486 "Since April 2010, libguestfs has started to make separate development and "
4487 "stable releases, along with corresponding branches in our git repository.  "
4488 "These separate releases can be identified by version number:"
4489 msgstr ""
4490
4491 #. type: verbatim
4492 #: ../src/guestfs.pod:2358
4493 #, no-wrap
4494 msgid ""
4495 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4496 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4497 "       |\n"
4498 "       v\n"
4499 " 1  .  3  .  5\n"
4500 " ^           ^\n"
4501 " |           |\n"
4502 " |           `-------- sub-version\n"
4503 " |\n"
4504 " `------ always '1' because we don't change the ABI\n"
4505 "\n"
4506 msgstr ""
4507
4508 #. type: textblock
4509 #: ../src/guestfs.pod:2369
4510 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4511 msgstr ""
4512
4513 #. type: textblock
4514 #: ../src/guestfs.pod:2371
4515 msgid ""
4516 "As time passes we cherry pick fixes from the development branch and backport "
4517 "those into the stable branch, the effect being that the stable branch should "
4518 "get more stable and less buggy over time.  So the stable releases are ideal "
4519 "for people who don't need new features but would just like the software to "
4520 "work."
4521 msgstr ""
4522
4523 #. type: textblock
4524 #: ../src/guestfs.pod:2377
4525 msgid "Our criteria for backporting changes are:"
4526 msgstr ""
4527
4528 #. type: textblock
4529 #: ../src/guestfs.pod:2383
4530 msgid ""
4531 "Documentation changes which don't affect any code are backported unless the "
4532 "documentation refers to a future feature which is not in stable."
4533 msgstr ""
4534
4535 #. type: textblock
4536 #: ../src/guestfs.pod:2389
4537 msgid ""
4538 "Bug fixes which are not controversial, fix obvious problems, and have been "
4539 "well tested are backported."
4540 msgstr ""
4541
4542 #. type: textblock
4543 #: ../src/guestfs.pod:2394
4544 msgid ""
4545 "Simple rearrangements of code which shouldn't affect how it works get "
4546 "backported.  This is so that the code in the two branches doesn't get too "
4547 "far out of step, allowing us to backport future fixes more easily."
4548 msgstr ""
4549
4550 #. type: textblock
4551 #: ../src/guestfs.pod:2400
4552 msgid ""
4553 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4554 "exceptional case: the new feature is required in order to implement an "
4555 "important bug fix."
4556 msgstr ""
4557
4558 #. type: textblock
4559 #: ../src/guestfs.pod:2406
4560 msgid ""
4561 "A new stable branch starts when we think the new features in development are "
4562 "substantial and compelling enough over the current stable branch to warrant "
4563 "it.  When that happens we create new stable and development versions 1.N.0 "
4564 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4565 "stable at this point, but by backporting fixes from development, that branch "
4566 "will stabilize over time."
4567 msgstr ""
4568
4569 #. type: =head1
4570 #: ../src/guestfs.pod:2414
4571 msgid "EXTENDING LIBGUESTFS"
4572 msgstr ""
4573
4574 #. type: =head2
4575 #: ../src/guestfs.pod:2416
4576 msgid "ADDING A NEW API ACTION"
4577 msgstr ""
4578
4579 #. type: textblock
4580 #: ../src/guestfs.pod:2418
4581 msgid ""
4582 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4583 "documentation) are generated, and this makes it easy to extend the "
4584 "libguestfs API."
4585 msgstr ""
4586
4587 #. type: textblock
4588 #: ../src/guestfs.pod:2422
4589 msgid "To add a new API action there are two changes:"
4590 msgstr ""
4591
4592 #. type: textblock
4593 #: ../src/guestfs.pod:2428
4594 msgid ""
4595 "You need to add a description of the call (name, parameters, return type, "
4596 "tests, documentation) to C<generator/generator_actions.ml>."
4597 msgstr ""
4598
4599 #. type: textblock
4600 #: ../src/guestfs.pod:2431
4601 msgid ""
4602 "There are two sorts of API action, depending on whether the call goes "
4603 "through to the daemon in the appliance, or is serviced entirely by the "
4604 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the "
4605 "former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4606 "an example of the latter, since a trace flag is maintained in the handle and "
4607 "all tracing is done on the library side."
4608 msgstr ""
4609
4610 #. type: textblock
4611 #: ../src/guestfs.pod:2439
4612 msgid ""
4613 "Most new actions are of the first type, and get added to the "
4614 "C<daemon_functions> list.  Each function has a unique procedure number used "
4615 "in the RPC protocol which is assigned to that action when we publish "
4616 "libguestfs and cannot be reused.  Take the latest procedure number and "
4617 "increment it."
4618 msgstr ""
4619
4620 #. type: textblock
4621 #: ../src/guestfs.pod:2445
4622 msgid ""
4623 "For library-only actions of the second type, add to the "
4624 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4625 "library and do not travel over the RPC mechanism to the daemon, these "
4626 "functions do not need a procedure number, and so the procedure number is set "
4627 "to C<-1>."
4628 msgstr ""
4629
4630 #. type: textblock
4631 #: ../src/guestfs.pod:2453
4632 msgid "Implement the action (in C):"
4633 msgstr ""
4634
4635 #. type: textblock
4636 #: ../src/guestfs.pod:2455
4637 msgid ""
4638 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4639 "C<daemon/> directory."
4640 msgstr ""
4641
4642 #. type: textblock
4643 #: ../src/guestfs.pod:2458
4644 msgid ""
4645 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4646 "(note: double underscore) in the C<src/> directory."
4647 msgstr ""
4648
4649 #. type: textblock
4650 #: ../src/guestfs.pod:2461
4651 msgid "In either case, use another function as an example of what to do."
4652 msgstr ""
4653
4654 #. type: textblock
4655 #: ../src/guestfs.pod:2465
4656 msgid "After making these changes, use C<make> to compile."
4657 msgstr ""
4658
4659 #. type: textblock
4660 #: ../src/guestfs.pod:2467
4661 msgid ""
4662 "Note that you don't need to implement the RPC, language bindings, manual "
4663 "pages or anything else.  It's all automatically generated from the OCaml "
4664 "description."
4665 msgstr ""
4666
4667 #. type: =head2
4668 #: ../src/guestfs.pod:2471
4669 msgid "ADDING TESTS FOR AN API ACTION"
4670 msgstr ""
4671
4672 #. type: textblock
4673 #: ../src/guestfs.pod:2473
4674 msgid ""
4675 "You can supply zero or as many tests as you want per API call.  The tests "
4676 "can either be added as part of the API description "
4677 "(C<generator/generator_actions.ml>), or in some rarer cases you may want to "
4678 "drop a script into C<regressions/>.  Note that adding a script to "
4679 "C<regressions/> is slower, so if possible use the first method."
4680 msgstr ""
4681
4682 #. type: textblock
4683 #: ../src/guestfs.pod:2479
4684 msgid ""
4685 "The following describes the test environment used when you add an API test "
4686 "in C<generator_actions.ml>."
4687 msgstr ""
4688
4689 #. type: textblock
4690 #: ../src/guestfs.pod:2482
4691 msgid "The test environment has 4 block devices:"
4692 msgstr ""
4693
4694 #. type: =item
4695 #: ../src/guestfs.pod:2486
4696 msgid "C</dev/sda> 500MB"
4697 msgstr ""
4698
4699 #. type: textblock
4700 #: ../src/guestfs.pod:2488
4701 msgid "General block device for testing."
4702 msgstr ""
4703
4704 #. type: =item
4705 #: ../src/guestfs.pod:2490
4706 msgid "C</dev/sdb> 50MB"
4707 msgstr ""
4708
4709 #. type: textblock
4710 #: ../src/guestfs.pod:2492
4711 msgid ""
4712 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4713 "operations."
4714 msgstr ""
4715
4716 #. type: =item
4717 #: ../src/guestfs.pod:2495
4718 msgid "C</dev/sdc> 10MB"
4719 msgstr ""
4720
4721 #. type: textblock
4722 #: ../src/guestfs.pod:2497
4723 msgid "Used in a few tests where two block devices are needed."
4724 msgstr ""
4725
4726 #. type: =item
4727 #: ../src/guestfs.pod:2499
4728 msgid "C</dev/sdd>"
4729 msgstr ""
4730
4731 #. type: textblock
4732 #: ../src/guestfs.pod:2501
4733 msgid "ISO with fixed content (see C<images/test.iso>)."
4734 msgstr ""
4735
4736 #. type: textblock
4737 #: ../src/guestfs.pod:2505
4738 msgid ""
4739 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4740 "appliance and block devices are reused between tests.  So don't try testing "
4741 "L</guestfs_kill_subprocess> :-x"
4742 msgstr ""
4743
4744 #. type: textblock
4745 #: ../src/guestfs.pod:2509
4746 msgid ""
4747 "Each test starts with an initial scenario, selected using one of the "
4748 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4749 "initialize the disks mentioned above in a particular way as documented in "
4750 "C<generator_types.ml>.  You should not assume anything about the previous "
4751 "contents of other disks that are not initialized."
4752 msgstr ""
4753
4754 #. type: textblock
4755 #: ../src/guestfs.pod:2515
4756 msgid ""
4757 "You can add a prerequisite clause to any individual test.  This is a "
4758 "run-time check, which, if it fails, causes the test to be skipped.  Useful "
4759 "if testing a command which might not work on all variations of libguestfs "
4760 "builds.  A test that has prerequisite of C<Always> means to run "
4761 "unconditionally."
4762 msgstr ""
4763
4764 #. type: textblock
4765 #: ../src/guestfs.pod:2521
4766 msgid ""
4767 "In addition, packagers can skip individual tests by setting environment "
4768 "variables before running C<make check>."
4769 msgstr ""
4770
4771 #. type: verbatim
4772 #: ../src/guestfs.pod:2524
4773 #, no-wrap
4774 msgid ""
4775 " SKIP_TEST_<CMD>_<NUM>=1\n"
4776 "\n"
4777 msgstr ""
4778
4779 #. type: textblock
4780 #: ../src/guestfs.pod:2526
4781 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4782 msgstr ""
4783
4784 #. type: textblock
4785 #: ../src/guestfs.pod:2528
4786 msgid "or:"
4787 msgstr ""
4788
4789 #. type: verbatim
4790 #: ../src/guestfs.pod:2530
4791 #, no-wrap
4792 msgid ""
4793 " SKIP_TEST_<CMD>=1\n"
4794 "\n"
4795 msgstr ""
4796
4797 #. type: textblock
4798 #: ../src/guestfs.pod:2532
4799 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4800 msgstr ""
4801
4802 #. type: textblock
4803 #: ../src/guestfs.pod:2534
4804 msgid "Packagers can run only certain tests by setting for example:"
4805 msgstr ""
4806
4807 #. type: verbatim
4808 #: ../src/guestfs.pod:2536
4809 #, no-wrap
4810 msgid ""
4811 " TEST_ONLY=\"vfs_type zerofree\"\n"
4812 "\n"
4813 msgstr ""
4814
4815 #. type: textblock
4816 #: ../src/guestfs.pod:2538
4817 msgid ""
4818 "See C<capitests/tests.c> for more details of how these environment variables "
4819 "work."
4820 msgstr ""
4821
4822 #. type: =head2
4823 #: ../src/guestfs.pod:2541
4824 msgid "DEBUGGING NEW API ACTIONS"
4825 msgstr ""
4826
4827 #. type: textblock
4828 #: ../src/guestfs.pod:2543
4829 msgid "Test new actions work before submitting them."
4830 msgstr ""
4831
4832 #. type: textblock
4833 #: ../src/guestfs.pod:2545
4834 msgid "You can use guestfish to try out new commands."
4835 msgstr ""
4836
4837 #. type: textblock
4838 #: ../src/guestfs.pod:2547
4839 msgid ""
4840 "Debugging the daemon is a problem because it runs inside a minimal "
4841 "environment.  However you can fprintf messages in the daemon to stderr, and "
4842 "they will show up if you use C<guestfish -v>."
4843 msgstr ""
4844
4845 #. type: =head2
4846 #: ../src/guestfs.pod:2551
4847 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
4848 msgstr ""
4849
4850 #. type: textblock
4851 #: ../src/guestfs.pod:2553
4852 msgid ""
4853 "Our C source code generally adheres to some basic code-formatting "
4854 "conventions.  The existing code base is not totally consistent on this "
4855 "front, but we do prefer that contributed code be formatted similarly.  In "
4856 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
4857 "indentation level, and other than that, follow the K&R style."
4858 msgstr ""
4859
4860 #. type: textblock
4861 #: ../src/guestfs.pod:2559
4862 msgid ""
4863 "If you use Emacs, add the following to one of one of your start-up files "
4864 "(e.g., ~/.emacs), to help ensure that you get indentation right:"
4865 msgstr ""
4866
4867 #. type: verbatim
4868 #: ../src/guestfs.pod:2562
4869 #, no-wrap
4870 msgid ""
4871 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
4872 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
4873 " (add-hook 'find-file-hook\n"
4874 "     '(lambda () (if (and buffer-file-name\n"
4875 "                          (string-match \"/libguestfs\\\\>\"\n"
4876 "                              (buffer-file-name))\n"
4877 "                          (not (string-equal mode-name \"Change Log\"))\n"
4878 "                          (not (string-equal mode-name \"Makefile\")))\n"
4879 "                     (setq indent-tabs-mode nil))))\n"
4880 " \n"
4881 msgstr ""
4882
4883 #. type: verbatim
4884 #: ../src/guestfs.pod:2572
4885 #, no-wrap
4886 msgid ""
4887 " ;;; When editing C sources in libguestfs, use this style.\n"
4888 " (defun libguestfs-c-mode ()\n"
4889 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
4890 "   (interactive)\n"
4891 "   (c-set-style \"K&R\")\n"
4892 "   (setq c-indent-level 2)\n"
4893 "   (setq c-basic-offset 2))\n"
4894 " (add-hook 'c-mode-hook\n"
4895 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
4896 "                               (buffer-file-name))\n"
4897 "                           (libguestfs-c-mode))))\n"
4898 "\n"
4899 msgstr ""
4900
4901 #. type: textblock
4902 #: ../src/guestfs.pod:2584
4903 msgid "Enable warnings when compiling (and fix any problems this finds):"
4904 msgstr ""
4905
4906 #. type: verbatim
4907 #: ../src/guestfs.pod:2587
4908 #, no-wrap
4909 msgid ""
4910 " ./configure --enable-gcc-warnings\n"
4911 "\n"
4912 msgstr ""
4913
4914 #. type: textblock
4915 #: ../src/guestfs.pod:2589
4916 msgid "Useful targets are:"
4917 msgstr ""
4918
4919 #. type: verbatim
4920 #: ../src/guestfs.pod:2591
4921 #, no-wrap
4922 msgid ""
4923 " make syntax-check  # checks the syntax of the C code\n"
4924 " make check         # runs the test suite\n"
4925 "\n"
4926 msgstr ""
4927
4928 #. type: =head2
4929 #: ../src/guestfs.pod:2594
4930 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
4931 msgstr ""
4932
4933 #. type: textblock
4934 #: ../src/guestfs.pod:2596
4935 msgid ""
4936 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>, "
4937 "which are used to do shell quoting."
4938 msgstr ""
4939
4940 #. type: =item
4941 #: ../src/guestfs.pod:2601
4942 msgid "%Q"
4943 msgstr ""
4944
4945 #. type: textblock
4946 #: ../src/guestfs.pod:2603
4947 msgid ""
4948 "Simple shell quoted string.  Any spaces or other shell characters are "
4949 "escaped for you."
4950 msgstr ""
4951
4952 #. type: =item
4953 #: ../src/guestfs.pod:2606
4954 msgid "%R"
4955 msgstr ""
4956
4957 #. type: textblock
4958 #: ../src/guestfs.pod:2608
4959 msgid ""
4960 "Same as C<%Q> except the string is treated as a path which is prefixed by "
4961 "the sysroot."
4962 msgstr ""
4963
4964 #. type: textblock
4965 #: ../src/guestfs.pod:2613 ../fish/guestfish.pod:242 ../fish/guestfish.pod:615
4966 msgid "For example:"
4967 msgstr ""
4968
4969 #. type: verbatim
4970 #: ../src/guestfs.pod:2615
4971 #, no-wrap
4972 msgid ""
4973 " asprintf (&cmd, \"cat %R\", path);\n"
4974 "\n"
4975 msgstr ""
4976
4977 #. type: textblock
4978 #: ../src/guestfs.pod:2617
4979 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
4980 msgstr ""
4981
4982 #. type: textblock
4983 #: ../src/guestfs.pod:2619
4984 msgid ""
4985 "I<Note:> Do I<not> use these when you are passing parameters to the "
4986 "C<command{,r,v,rv}()> functions.  These parameters do NOT need to be quoted "
4987 "because they are not passed via the shell (instead, straight to exec).  You "
4988 "probably want to use the C<sysroot_path()> function however."
4989 msgstr ""
4990
4991 #. type: =head2
4992 #: ../src/guestfs.pod:2625
4993 msgid "SUBMITTING YOUR NEW API ACTIONS"
4994 msgstr ""
4995
4996 #. type: textblock
4997 #: ../src/guestfs.pod:2627
4998 msgid ""
4999 "Submit patches to the mailing list: "
5000 "L<http://www.redhat.com/mailman/listinfo/libguestfs> and CC to "
5001 "L<rjones@redhat.com>."
5002 msgstr ""
5003
5004 #. type: =head2
5005 #: ../src/guestfs.pod:2631
5006 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5007 msgstr ""
5008
5009 #. type: textblock
5010 #: ../src/guestfs.pod:2633
5011 msgid "We support i18n (gettext anyhow) in the library."
5012 msgstr ""
5013
5014 #. type: textblock
5015 #: ../src/guestfs.pod:2635
5016 msgid ""
5017 "However many messages come from the daemon, and we don't translate those at "
5018 "the moment.  One reason is that the appliance generally has all locale files "
5019 "removed from it, because they take up a lot of space.  So we'd have to readd "
5020 "some of those, as well as copying our PO files into the appliance."
5021 msgstr ""
5022
5023 #. type: textblock
5024 #: ../src/guestfs.pod:2641
5025 msgid ""
5026 "Debugging messages are never translated, since they are intended for the "
5027 "programmers."
5028 msgstr ""
5029
5030 #. type: =head2
5031 #: ../src/guestfs.pod:2644
5032 msgid "SOURCE CODE SUBDIRECTORIES"
5033 msgstr ""
5034
5035 #. type: =item
5036 #: ../src/guestfs.pod:2648 ../src/guestfs-actions.pod:5991 ../fish/guestfish-actions.pod:3968
5037 msgid "C<appliance>"
5038 msgstr ""
5039
5040 #. type: textblock
5041 #: ../src/guestfs.pod:2650
5042 msgid "The libguestfs appliance, build scripts and so on."
5043 msgstr ""
5044
5045 #. type: =item
5046 #: ../src/guestfs.pod:2652
5047 msgid "C<capitests>"
5048 msgstr ""
5049
5050 #. type: textblock
5051 #: ../src/guestfs.pod:2654
5052 msgid "Automated tests of the C API."
5053 msgstr ""
5054
5055 #. type: =item
5056 #: ../src/guestfs.pod:2656
5057 msgid "C<cat>"
5058 msgstr ""
5059
5060 #. type: textblock
5061 #: ../src/guestfs.pod:2658
5062 msgid ""
5063 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5064 "documentation."
5065 msgstr ""
5066
5067 #. type: =item
5068 #: ../src/guestfs.pod:2661
5069 msgid "C<caution>"
5070 msgstr ""
5071
5072 #. type: textblock
5073 #: ../src/guestfs.pod:2663
5074 msgid ""
5075 "Safety and liveness tests of components that libguestfs depends upon (not of "
5076 "libguestfs itself).  Mainly this is for qemu and the kernel."
5077 msgstr ""
5078
5079 #. type: =item
5080 #: ../src/guestfs.pod:2666
5081 msgid "C<contrib>"
5082 msgstr ""
5083
5084 #. type: textblock
5085 #: ../src/guestfs.pod:2668
5086 msgid "Outside contributions, experimental parts."
5087 msgstr ""
5088
5089 #. type: =item
5090 #: ../src/guestfs.pod:2670
5091 msgid "C<daemon>"
5092 msgstr ""
5093
5094 #. type: textblock
5095 #: ../src/guestfs.pod:2672
5096 msgid ""
5097 "The daemon that runs inside the libguestfs appliance and carries out "
5098 "actions."
5099 msgstr ""
5100
5101 #. type: =item
5102 #: ../src/guestfs.pod:2675
5103 msgid "C<df>"
5104 msgstr ""
5105
5106 #. type: textblock
5107 #: ../src/guestfs.pod:2677
5108 msgid "L<virt-df(1)> command and documentation."
5109 msgstr ""
5110
5111 #. type: =item
5112 #: ../src/guestfs.pod:2679
5113 msgid "C<edit>"
5114 msgstr ""
5115
5116 #. type: textblock
5117 #: ../src/guestfs.pod:2681
5118 msgid "L<virt-edit(1)> command and documentation."
5119 msgstr ""
5120
5121 #. type: =item
5122 #: ../src/guestfs.pod:2683
5123 msgid "C<examples>"
5124 msgstr ""
5125
5126 #. type: textblock
5127 #: ../src/guestfs.pod:2685
5128 msgid "C API example code."
5129 msgstr ""
5130
5131 #. type: =item
5132 #: ../src/guestfs.pod:2687
5133 msgid "C<fish>"
5134 msgstr ""
5135
5136 #. type: textblock
5137 #: ../src/guestfs.pod:2689
5138 msgid ""
5139 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5140 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
5141 "L<virt-tar-out(1)>."
5142 msgstr ""
5143
5144 #. type: =item
5145 #: ../src/guestfs.pod:2693
5146 msgid "C<fuse>"
5147 msgstr ""
5148
5149 #. type: textblock
5150 #: ../src/guestfs.pod:2695
5151 msgid "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5152 msgstr ""
5153
5154 #. type: =item
5155 #: ../src/guestfs.pod:2697
5156 msgid "C<generator>"
5157 msgstr ""
5158
5159 #. type: textblock
5160 #: ../src/guestfs.pod:2699
5161 msgid ""
5162 "The crucially important generator, used to automatically generate large "
5163 "amounts of boilerplate C code for things like RPC and bindings."
5164 msgstr ""
5165
5166 #. type: =item
5167 #: ../src/guestfs.pod:2702
5168 msgid "C<images>"
5169 msgstr ""
5170
5171 #. type: textblock
5172 #: ../src/guestfs.pod:2704
5173 msgid "Files used by the test suite."
5174 msgstr ""
5175
5176 #. type: textblock
5177 #: ../src/guestfs.pod:2706
5178 msgid "Some \"phony\" guest images which we test against."
5179 msgstr ""
5180
5181 #. type: =item
5182 #: ../src/guestfs.pod:2708
5183 msgid "C<inspector>"
5184 msgstr ""
5185
5186 #. type: textblock
5187 #: ../src/guestfs.pod:2710
5188 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5189 msgstr ""
5190
5191 #. type: =item
5192 #: ../src/guestfs.pod:2712
5193 msgid "C<logo>"
5194 msgstr ""
5195
5196 #. type: textblock
5197 #: ../src/guestfs.pod:2714
5198 msgid "Logo used on the website.  The fish is called Arthur by the way."
5199 msgstr ""
5200
5201 #. type: =item
5202 #: ../src/guestfs.pod:2716
5203 msgid "C<m4>"
5204 msgstr ""
5205
5206 #. type: textblock
5207 #: ../src/guestfs.pod:2718
5208 msgid "M4 macros used by autoconf."
5209 msgstr ""
5210
5211 #. type: =item
5212 #: ../src/guestfs.pod:2720
5213 msgid "C<po>"
5214 msgstr ""
5215
5216 #. type: textblock
5217 #: ../src/guestfs.pod:2722
5218 msgid "Translations of simple gettext strings."
5219 msgstr ""
5220
5221 #. type: =item
5222 #: ../src/guestfs.pod:2724
5223 msgid "C<po-docs>"
5224 msgstr ""
5225
5226 #. type: textblock
5227 #: ../src/guestfs.pod:2726
5228 msgid ""
5229 "The build infrastructure and PO files for translations of manpages and POD "
5230 "files.  Eventually this will be combined with the C<po> directory, but that "
5231 "is rather complicated."
5232 msgstr ""
5233
5234 #. type: =item
5235 #: ../src/guestfs.pod:2730
5236 msgid "C<regressions>"
5237 msgstr ""
5238
5239 #. type: textblock
5240 #: ../src/guestfs.pod:2732
5241 msgid "Regression tests."
5242 msgstr ""
5243
5244 #. type: =item
5245 #: ../src/guestfs.pod:2734
5246 msgid "C<rescue>"
5247 msgstr ""
5248
5249 #. type: textblock
5250 #: ../src/guestfs.pod:2736
5251 msgid "L<virt-rescue(1)> command and documentation."
5252 msgstr ""
5253
5254 #. type: =item
5255 #: ../src/guestfs.pod:2738
5256 msgid "C<src>"
5257 msgstr ""
5258
5259 #. type: textblock
5260 #: ../src/guestfs.pod:2740
5261 msgid "Source code to the C library."
5262 msgstr ""
5263
5264 #. type: =item
5265 #: ../src/guestfs.pod:2742
5266 msgid "C<tools>"
5267 msgstr ""
5268
5269 #. type: textblock
5270 #: ../src/guestfs.pod:2744
5271 msgid "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5272 msgstr ""
5273
5274 #. type: =item
5275 #: ../src/guestfs.pod:2746
5276 msgid "C<test-tool>"
5277 msgstr ""
5278
5279 #. type: textblock
5280 #: ../src/guestfs.pod:2748
5281 msgid ""
5282 "Test tool for end users to test if their qemu/kernel combination will work "
5283 "with libguestfs."
5284 msgstr ""
5285
5286 #. type: =item
5287 #: ../src/guestfs.pod:2751
5288 msgid "C<csharp>"
5289 msgstr ""
5290
5291 #. type: =item
5292 #: ../src/guestfs.pod:2753
5293 msgid "C<haskell>"
5294 msgstr ""
5295
5296 #. type: =item
5297 #: ../src/guestfs.pod:2755
5298 msgid "C<java>"
5299 msgstr ""
5300
5301 #. type: =item
5302 #: ../src/guestfs.pod:2757
5303 msgid "C<ocaml>"
5304 msgstr ""
5305
5306 #. type: =item
5307 #: ../src/guestfs.pod:2759
5308 msgid "C<php>"
5309 msgstr ""
5310
5311 #. type: =item
5312 #: ../src/guestfs.pod:2761
5313 msgid "C<perl>"
5314 msgstr ""
5315
5316 #. type: =item
5317 #: ../src/guestfs.pod:2763
5318 msgid "C<python>"
5319 msgstr ""
5320
5321 #. type: =item
5322 #: ../src/guestfs.pod:2765
5323 msgid "C<ruby>"
5324 msgstr ""
5325
5326 #. type: textblock
5327 #: ../src/guestfs.pod:2767
5328 msgid "Language bindings."
5329 msgstr ""
5330
5331 #. type: =head1
5332 #: ../src/guestfs.pod:2771
5333 msgid "LIMITS"
5334 msgstr ""
5335
5336 #. type: =head2
5337 #: ../src/guestfs.pod:2773
5338 msgid "PROTOCOL LIMITS"
5339 msgstr ""
5340
5341 #. type: textblock
5342 #: ../src/guestfs.pod:2775
5343 msgid ""
5344 "Internally libguestfs uses a message-based protocol to pass API calls and "
5345 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5346 "plenty more detail about this).  The maximum message size used by the "
5347 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5348 "aware of this limit.  The API calls which may be affected are individually "
5349 "documented, with a link back to this section of the documentation."
5350 msgstr ""
5351
5352 #. type: textblock
5353 #: ../src/guestfs.pod:2783
5354 msgid ""
5355 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5356 "a simple string.  Because this string is at some point internally encoded as "
5357 "a message, the maximum size that it can return is slightly under 4 MB.  If "
5358 "the requested file is larger than this then you will get an error."
5359 msgstr ""
5360
5361 #. type: textblock
5362 #: ../src/guestfs.pod:2789
5363 msgid ""
5364 "In order to transfer large files into and out of the guest filesystem, you "
5365 "need to use particular calls that support this.  The sections L</UPLOADING> "
5366 "and L</DOWNLOADING> document how to do this."
5367 msgstr ""
5368
5369 #. type: textblock
5370 #: ../src/guestfs.pod:2793
5371 msgid ""
5372 "You might also consider mounting the disk image using our FUSE filesystem "
5373 "support (L<guestmount(1)>)."
5374 msgstr ""
5375
5376 #. type: =head2
5377 #: ../src/guestfs.pod:2796
5378 msgid "MAXIMUM NUMBER OF DISKS"
5379 msgstr ""
5380
5381 #. type: textblock
5382 #: ../src/guestfs.pod:2798
5383 msgid "When using virtio disks (the default) the current limit is B<25> disks."
5384 msgstr ""
5385
5386 #. type: textblock
5387 #: ../src/guestfs.pod:2801
5388 msgid ""
5389 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31 "
5390 "slots.  However febootstrap only understands disks with names C</dev/vda> "
5391 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5392 "purposes."
5393 msgstr ""
5394
5395 #. type: textblock
5396 #: ../src/guestfs.pod:2806
5397 msgid ""
5398 "We are working to substantially raise this limit in future versions but it "
5399 "requires complex changes to qemu."
5400 msgstr ""
5401
5402 #. type: textblock
5403 #: ../src/guestfs.pod:2809
5404 msgid ""
5405 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5406 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5407 "requires changes to qemu."
5408 msgstr ""
5409
5410 #. type: =head2
5411 #: ../src/guestfs.pod:2813
5412 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5413 msgstr ""
5414
5415 #. type: textblock
5416 #: ../src/guestfs.pod:2815
5417 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5418 msgstr ""
5419
5420 #. type: textblock
5421 #: ../src/guestfs.pod:2817
5422 msgid ""
5423 "This is because it reserves 4 bits for the minor device number (thus "
5424 "C</dev/vda>, and C</dev/vda1> through C</dev/vda15>)."
5425 msgstr ""
5426
5427 #. type: textblock
5428 #: ../src/guestfs.pod:2820
5429 msgid ""
5430 "If you attach a disk with more than 15 partitions, the extra partitions are "
5431 "ignored by libguestfs."
5432 msgstr ""
5433
5434 #. type: =head2
5435 #: ../src/guestfs.pod:2823
5436 msgid "MAXIMUM SIZE OF A DISK"
5437 msgstr ""
5438
5439 #. type: textblock
5440 #: ../src/guestfs.pod:2825
5441 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5442 msgstr ""
5443
5444 #. type: textblock
5445 #: ../src/guestfs.pod:2827
5446 msgid ""
5447 "We have tested block devices up to 1 exabyte (2**60 or "
5448 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5449 "filesystem."
5450 msgstr ""
5451
5452 #. type: textblock
5453 #: ../src/guestfs.pod:2831
5454 msgid ""
5455 "Although libguestfs probably does not impose any limit, the underlying host "
5456 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5457 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5458 "TB).  If you store disk images as host logical volumes then you are limited "
5459 "by the maximum size of an LV."
5460 msgstr ""
5461
5462 #. type: textblock
5463 #: ../src/guestfs.pod:2837
5464 msgid ""
5465 "For the hugest disk image files, we recommend using XFS on the host for "
5466 "storage."
5467 msgstr ""
5468
5469 #. type: =head2
5470 #: ../src/guestfs.pod:2840
5471 msgid "MAXIMUM SIZE OF A PARTITION"
5472 msgstr ""
5473
5474 #. type: textblock
5475 #: ../src/guestfs.pod:2842
5476 msgid ""
5477 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector "
5478 "numbers.  Assuming a 512 byte sector size, this means that MBR cannot "
5479 "address a partition located beyond 2 TB on the disk."
5480 msgstr ""
5481
5482 #. type: textblock
5483 #: ../src/guestfs.pod:2846
5484 msgid ""
5485 "It is recommended that you use GPT partitions on disks which are larger than "
5486 "this size.  GPT uses 64 bit sector numbers and so can address partitions "
5487 "which are theoretically larger than the largest disk we could support."
5488 msgstr ""
5489
5490 #. type: =head2
5491 #: ../src/guestfs.pod:2851
5492 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5493 msgstr ""
5494
5495 #. type: textblock
5496 #: ../src/guestfs.pod:2853
5497 msgid ""
5498 "This depends on the filesystem type.  libguestfs itself does not impose any "
5499 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5500 "what these limits are."
5501 msgstr ""
5502
5503 #. type: =head2
5504 #: ../src/guestfs.pod:2857
5505 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5506 msgstr ""
5507
5508 #. type: textblock
5509 #: ../src/guestfs.pod:2859
5510 msgid ""
5511 "The API functions L</guestfs_upload>, L</guestfs_download>, "
5512 "L</guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5513 "uploads and downloads."
5514 msgstr ""
5515
5516 #. type: =head2
5517 #: ../src/guestfs.pod:2863
5518 msgid "INSPECTION LIMITS"
5519 msgstr ""
5520
5521 #. type: textblock
5522 #: ../src/guestfs.pod:2865
5523 msgid ""
5524 "The inspection code has several arbitrary limits on things like the size of "
5525 "Windows Registry hive it will read, and the length of product name.  These "
5526 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5527 "memory and disk space on the host, and should not be reached in practice.  "
5528 "See the source code for more information."
5529 msgstr ""
5530
5531 #. type: =head1
5532 #: ../src/guestfs.pod:2871 ../fish/guestfish.pod:1017 ../test-tool/libguestfs-test-tool.pod:82
5533 msgid "ENVIRONMENT VARIABLES"
5534 msgstr ""
5535
5536 #. type: =item
5537 #: ../src/guestfs.pod:2875 ../fish/guestfish.pod:1048
5538 msgid "LIBGUESTFS_APPEND"
5539 msgstr ""
5540
5541 #. type: textblock
5542 #: ../src/guestfs.pod:2877 ../fish/guestfish.pod:1050
5543 msgid "Pass additional options to the guest kernel."
5544 msgstr ""
5545
5546 #. type: =item
5547 #: ../src/guestfs.pod:2879 ../fish/guestfish.pod:1052
5548 msgid "LIBGUESTFS_DEBUG"
5549 msgstr ""
5550
5551 #. type: textblock
5552 #: ../src/guestfs.pod:2881
5553 msgid ""
5554 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5555 "effect as calling C<guestfs_set_verbose (g, 1)>."
5556 msgstr ""
5557
5558 #. type: =item
5559 #: ../src/guestfs.pod:2884 ../fish/guestfish.pod:1057
5560 msgid "LIBGUESTFS_MEMSIZE"
5561 msgstr ""
5562
5563 #. type: textblock
5564 #: ../src/guestfs.pod:2886 ../fish/guestfish.pod:1059
5565 msgid "Set the memory allocated to the qemu process, in megabytes.  For example:"
5566 msgstr ""
5567
5568 #. type: verbatim
5569 #: ../src/guestfs.pod:2889 ../fish/guestfish.pod:1062
5570 #, no-wrap
5571 msgid ""
5572 " LIBGUESTFS_MEMSIZE=700\n"
5573 "\n"
5574 msgstr ""
5575
5576 #. type: =item
5577 #: ../src/guestfs.pod:2891 ../fish/guestfish.pod:1064
5578 msgid "LIBGUESTFS_PATH"
5579 msgstr ""
5580
5581 #. type: textblock
5582 #: ../src/guestfs.pod:2893
5583 msgid ""
5584 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5585 "the discussion of paths in section L</PATH> above."
5586 msgstr ""
5587
5588 #. type: =item
5589 #: ../src/guestfs.pod:2896 ../fish/guestfish.pod:1069
5590 msgid "LIBGUESTFS_QEMU"
5591 msgstr ""
5592
5593 #. type: textblock
5594 #: ../src/guestfs.pod:2898 ../fish/guestfish.pod:1071
5595 msgid ""
5596 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu "
5597 "which was found at compile time by the configure script is used."
5598 msgstr ""
5599
5600 #. type: textblock
5601 #: ../src/guestfs.pod:2902
5602 msgid "See also L</QEMU WRAPPERS> above."
5603 msgstr ""
5604
5605 #. type: =item
5606 #: ../src/guestfs.pod:2904 ../fish/guestfish.pod:1075
5607 msgid "LIBGUESTFS_TRACE"
5608 msgstr ""
5609
5610 #. type: textblock
5611 #: ../src/guestfs.pod:2906
5612 msgid ""
5613 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5614 "effect as calling C<guestfs_set_trace (g, 1)>."
5615 msgstr ""
5616
5617 #. type: =item
5618 #: ../src/guestfs.pod:2909 ../fish/guestfish.pod:1084
5619 msgid "TMPDIR"
5620 msgstr ""
5621
5622 #. type: textblock
5623 #: ../src/guestfs.pod:2911 ../fish/guestfish.pod:1086
5624 msgid ""
5625 "Location of temporary directory, defaults to C</tmp> except for the cached "
5626 "supermin appliance which defaults to C</var/tmp>."
5627 msgstr ""
5628
5629 #. type: textblock
5630 #: ../src/guestfs.pod:2914 ../fish/guestfish.pod:1089
5631 msgid ""
5632 "If libguestfs was compiled to use the supermin appliance then the real "
5633 "appliance is cached in this directory, shared between all handles belonging "
5634 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5635 "use in case C</var/tmp> is not large enough."
5636 msgstr ""
5637
5638 #. type: =head1
5639 #: ../src/guestfs.pod:2922 ../fish/guestfish.pod:1156 ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:279 ../tools/virt-win-reg.pl:744 ../tools/virt-list-filesystems.pl:189 ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:539 ../tools/virt-list-partitions.pl:257
5640 msgid "SEE ALSO"
5641 msgstr ""
5642
5643 #. type: textblock
5644 #: ../src/guestfs.pod:2924
5645 msgid ""
5646 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, "
5647 "L<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, "
5648 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
5649 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
5650 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
5651 "L<virt-rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, "
5652 "L<virt-win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, "
5653 "L<http://libguestfs.org/>."
5654 msgstr ""
5655
5656 #. type: textblock
5657 #: ../src/guestfs.pod:2951
5658 msgid ""
5659 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, "
5660 "L<lvm(8)>, L<disktype(1)>."
5661 msgstr ""
5662
5663 #. type: =head1
5664 #: ../src/guestfs.pod:2958 ../tools/virt-win-reg.pl:759 ../tools/virt-make-fs.pl:553
5665 msgid "BUGS"
5666 msgstr ""
5667
5668 #. type: textblock
5669 #: ../src/guestfs.pod:2960
5670 msgid "To get a list of bugs against libguestfs use this link:"
5671 msgstr ""
5672
5673 #. type: textblock
5674 #: ../src/guestfs.pod:2962
5675 msgid "L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>"
5676 msgstr ""
5677
5678 #. type: textblock
5679 #: ../src/guestfs.pod:2964
5680 msgid "To report a new bug against libguestfs use this link:"
5681 msgstr ""
5682
5683 #. type: textblock
5684 #: ../src/guestfs.pod:2966
5685 msgid "L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>"
5686 msgstr ""
5687
5688 #. type: textblock
5689 #: ../src/guestfs.pod:2968
5690 msgid "When reporting a bug, please check:"
5691 msgstr ""
5692
5693 #. type: textblock
5694 #: ../src/guestfs.pod:2974
5695 msgid "That the bug hasn't been reported already."
5696 msgstr ""
5697
5698 #. type: textblock
5699 #: ../src/guestfs.pod:2978
5700 msgid "That you are testing a recent version."
5701 msgstr ""
5702
5703 #. type: textblock
5704 #: ../src/guestfs.pod:2982
5705 msgid "Describe the bug accurately, and give a way to reproduce it."
5706 msgstr ""
5707
5708 #. type: textblock
5709 #: ../src/guestfs.pod:2986
5710 msgid ""
5711 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the "
5712 "bug report."
5713 msgstr ""
5714
5715 #. type: =head1
5716 #: ../src/guestfs.pod:2991 ../fish/guestfish.pod:1180 ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:290
5717 msgid "AUTHORS"
5718 msgstr ""
5719
5720 #. type: textblock
5721 #: ../src/guestfs.pod:2993 ../fish/guestfish.pod:1182 ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:292
5722 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5723 msgstr ""
5724
5725 #. type: =head1
5726 #: ../src/guestfs.pod:2995 ../fish/guestfish.pod:1184 ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:294 ../tools/virt-win-reg.pl:774 ../tools/virt-list-filesystems.pl:206 ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:568 ../tools/virt-list-partitions.pl:273
5727 msgid "COPYRIGHT"
5728 msgstr ""
5729
5730 #. type: textblock
5731 #: ../src/guestfs.pod:2997 ../fish/guestfish.pod:1186 ../test-tool/libguestfs-test-tool.pod:99
5732 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5733 msgstr ""
5734
5735 #. type: textblock
5736 #: ../src/guestfs.pod:3000
5737 msgid ""
5738 "This library is free software; you can redistribute it and/or modify it "
5739 "under the terms of the GNU Lesser General Public License as published by the "
5740 "Free Software Foundation; either version 2 of the License, or (at your "
5741 "option) any later version."
5742 msgstr ""
5743
5744 #. type: textblock
5745 #: ../src/guestfs.pod:3005
5746 msgid ""
5747 "This library is distributed in the hope that it will be useful, but WITHOUT "
5748 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5749 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License "
5750 "for more details."
5751 msgstr ""
5752
5753 #. type: textblock
5754 #: ../src/guestfs.pod:3010
5755 msgid ""
5756 "You should have received a copy of the GNU Lesser General Public License "
5757 "along with this library; if not, write to the Free Software Foundation, "
5758 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5759 msgstr ""
5760
5761 #. type: =head2
5762 #: ../src/guestfs-actions.pod:1
5763 msgid "guestfs_add_cdrom"
5764 msgstr ""
5765
5766 #. type: verbatim
5767 #: ../src/guestfs-actions.pod:3
5768 #, no-wrap
5769 msgid ""
5770 " int\n"
5771 " guestfs_add_cdrom (guestfs_h *g,\n"
5772 "                    const char *filename);\n"
5773 "\n"
5774 msgstr ""
5775
5776 #. type: textblock
5777 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5778 msgid "This function adds a virtual CD-ROM disk image to the guest."
5779 msgstr ""
5780
5781 #. type: textblock
5782 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5783 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5784 msgstr ""
5785
5786 #. type: textblock
5787 #: ../src/guestfs-actions.pod:17
5788 msgid ""
5789 "This call checks for the existence of C<filename>.  This stops you from "
5790 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5791 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call "
5792 "instead."
5793 msgstr ""
5794
5795 #. type: textblock
5796 #: ../src/guestfs-actions.pod:24
5797 msgid ""
5798 "If you just want to add an ISO file (often you use this as an efficient way "
5799 "to transfer large files into the guest), then you should probably use "
5800 "C<guestfs_add_drive_ro> instead."
5801 msgstr ""
5802
5803 #. type: textblock
5804 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:140 ../src/guestfs-actions.pod:201 ../src/guestfs-actions.pod:238 ../src/guestfs-actions.pod:252 ../src/guestfs-actions.pod:273 ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:307 ../src/guestfs-actions.pod:422 ../src/guestfs-actions.pod:442 ../src/guestfs-actions.pod:456 ../src/guestfs-actions.pod:501 ../src/guestfs-actions.pod:529 ../src/guestfs-actions.pod:547 ../src/guestfs-actions.pod:614 ../src/guestfs-actions.pod:647 ../src/guestfs-actions.pod:661 ../src/guestfs-actions.pod:676 ../src/guestfs-actions.pod:775 ../src/guestfs-actions.pod:793 ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:821 ../src/guestfs-actions.pod:982 ../src/guestfs-actions.pod:1002 ../src/guestfs-actions.pod:1020 ../src/guestfs-actions.pod:1104 ../src/guestfs-actions.pod:1122 ../src/guestfs-actions.pod:1141 ../src/guestfs-actions.pod:1155 ../src/guestfs-actions.pod:1175 ../src/guestfs-actions.pod:1245 ../src/guestfs-actions.pod:1276 ../src/guestfs-actions.pod:1301 ../src/guestfs-actions.pod:1343 ../src/guestfs-actions.pod:1449 ../src/guestfs-actions.pod:1483 ../src/guestfs-actions.pod:1698 ../src/guestfs-actions.pod:1720 ../src/guestfs-actions.pod:1807 ../src/guestfs-actions.pod:2271 ../src/guestfs-actions.pod:2415 ../src/guestfs-actions.pod:2476 ../src/guestfs-actions.pod:2511 ../src/guestfs-actions.pod:3551 ../src/guestfs-actions.pod:3566 ../src/guestfs-actions.pod:3591 ../src/guestfs-actions.pod:3760 ../src/guestfs-actions.pod:3774 ../src/guestfs-actions.pod:3787 ../src/guestfs-actions.pod:3801 ../src/guestfs-actions.pod:3816 ../src/guestfs-actions.pod:3852 ../src/guestfs-actions.pod:3924 ../src/guestfs-actions.pod:3944 ../src/guestfs-actions.pod:3961 ../src/guestfs-actions.pod:3984 ../src/guestfs-actions.pod:4007 ../src/guestfs-actions.pod:4039 ../src/guestfs-actions.pod:4058 ../src/guestfs-actions.pod:4077 ../src/guestfs-actions.pod:4112 ../src/guestfs-actions.pod:4124 ../src/guestfs-actions.pod:4160 ../src/guestfs-actions.pod:4176 ../src/guestfs-actions.pod:4189 ../src/guestfs-actions.pod:4204 ../src/guestfs-actions.pod:4221 ../src/guestfs-actions.pod:4314 ../src/guestfs-actions.pod:4334 ../src/guestfs-actions.pod:4347 ../src/guestfs-actions.pod:4398 ../src/guestfs-actions.pod:4416 ../src/guestfs-actions.pod:4434 ../src/guestfs-actions.pod:4450 ../src/guestfs-actions.pod:4464 ../src/guestfs-actions.pod:4478 ../src/guestfs-actions.pod:4495 ../src/guestfs-actions.pod:4510 ../src/guestfs-actions.pod:4530 ../src/guestfs-actions.pod:4600 ../src/guestfs-actions.pod:4673 ../src/guestfs-actions.pod:4704 ../src/guestfs-actions.pod:4723 ../src/guestfs-actions.pod:4742 ../src/guestfs-actions.pod:4754 ../src/guestfs-actions.pod:4771 ../src/guestfs-actions.pod:4784 ../src/guestfs-actions.pod:4799 ../src/guestfs-actions.pod:4814 ../src/guestfs-actions.pod:4849 ../src/guestfs-actions.pod:4882 ../src/guestfs-actions.pod:4921 ../src/guestfs-actions.pod:4941 ../src/guestfs-actions.pod:4955 ../src/guestfs-actions.pod:4972 ../src/guestfs-actions.pod:5021 ../src/guestfs-actions.pod:5058 ../src/guestfs-actions.pod:5072 ../src/guestfs-actions.pod:5100 ../src/guestfs-actions.pod:5117 ../src/guestfs-actions.pod:5135 ../src/guestfs-actions.pod:5269 ../src/guestfs-actions.pod:5326 ../src/guestfs-actions.pod:5348 ../src/guestfs-actions.pod:5366 ../src/guestfs-actions.pod:5398 ../src/guestfs-actions.pod:5464 ../src/guestfs-actions.pod:5481 ../src/guestfs-actions.pod:5494 ../src/guestfs-actions.pod:5508 ../src/guestfs-actions.pod:5797 ../src/guestfs-actions.pod:5816 ../src/guestfs-actions.pod:5835 ../src/guestfs-actions.pod:5849 ../src/guestfs-actions.pod:5861 ../src/guestfs-actions.pod:5875 ../src/guestfs-actions.pod:5887 ../src/guestfs-actions.pod:5901 ../src/guestfs-actions.pod:5917 ../src/guestfs-actions.pod:5938 ../src/guestfs-actions.pod:5957 ../src/guestfs-actions.pod:5976 ../src/guestfs-actions.pod:6006 ../src/guestfs-actions.pod:6024 ../src/guestfs-actions.pod:6047 ../src/guestfs-actions.pod:6065 ../src/guestfs-actions.pod:6084 ../src/guestfs-actions.pod:6105 ../src/guestfs-actions.pod:6124 ../src/guestfs-actions.pod:6141 ../src/guestfs-actions.pod:6169 ../src/guestfs-actions.pod:6193 ../src/guestfs-actions.pod:6212 ../src/guestfs-actions.pod:6236 ../src/guestfs-actions.pod:6255 ../src/guestfs-actions.pod:6270 ../src/guestfs-actions.pod:6289 ../src/guestfs-actions.pod:6326 ../src/guestfs-actions.pod:6356 ../src/guestfs-actions.pod:6389 ../src/guestfs-actions.pod:6511 ../src/guestfs-actions.pod:6632 ../src/guestfs-actions.pod:6644 ../src/guestfs-actions.pod:6657 ../src/guestfs-actions.pod:6670 ../src/guestfs-actions.pod:6692 ../src/guestfs-actions.pod:6705 ../src/guestfs-actions.pod:6718 ../src/guestfs-actions.pod:6731 ../src/guestfs-actions.pod:6746 ../src/guestfs-actions.pod:6805 ../src/guestfs-actions.pod:6822 ../src/guestfs-actions.pod:6838 ../src/guestfs-actions.pod:6854 ../src/guestfs-actions.pod:6871 ../src/guestfs-actions.pod:6884 ../src/guestfs-actions.pod:6904 ../src/guestfs-actions.pod:6940 ../src/guestfs-actions.pod:6954 ../src/guestfs-actions.pod:6995 ../src/guestfs-actions.pod:7008 ../src/guestfs-actions.pod:7026 ../src/guestfs-actions.pod:7060 ../src/guestfs-actions.pod:7096 ../src/guestfs-actions.pod:7215 ../src/guestfs-actions.pod:7233 ../src/guestfs-actions.pod:7247 ../src/guestfs-actions.pod:7302 ../src/guestfs-actions.pod:7315 ../src/guestfs-actions.pod:7360 ../src/guestfs-actions.pod:7393 ../src/guestfs-actions.pod:7454 ../src/guestfs-actions.pod:7480 ../src/guestfs-actions.pod:7547 ../src/guestfs-actions.pod:7566 ../src/guestfs-actions.pod:7595
5805 msgid "This function returns 0 on success or -1 on error."
5806 msgstr ""
5807
5808 #. type: textblock
5809 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:254 ../src/guestfs-actions.pod:275 ../fish/guestfish-actions.pod:28 ../fish/guestfish-actions.pod:163 ../fish/guestfish-actions.pod:177
5810 msgid ""
5811 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
5812 "instead."
5813 msgstr ""
5814
5815 #. type: textblock
5816 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257 ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1454 ../src/guestfs-actions.pod:1949 ../src/guestfs-actions.pod:1970 ../src/guestfs-actions.pod:4535 ../src/guestfs-actions.pod:4854 ../src/guestfs-actions.pod:6334 ../src/guestfs-actions.pod:6364 ../src/guestfs-actions.pod:6397 ../src/guestfs-actions.pod:6456 ../src/guestfs-actions.pod:7398 ../src/guestfs-actions.pod:7488 ../src/guestfs-actions.pod:7658 ../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:3245 ../fish/guestfish-actions.pod:4230 ../fish/guestfish-actions.pod:4253 ../fish/guestfish-actions.pod:4275 ../fish/guestfish-actions.pod:4313 ../fish/guestfish-actions.pod:4954 ../fish/guestfish-actions.pod:5052
5817 msgid ""
5818 "Deprecated functions will not be removed from the API, but the fact that "
5819 "they are deprecated indicates that there are problems with correct use of "
5820 "these functions."
5821 msgstr ""
5822
5823 #. type: textblock
5824 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142 ../src/guestfs-actions.pod:1106 ../src/guestfs-actions.pod:1921 ../src/guestfs-actions.pod:2019 ../src/guestfs-actions.pod:2122 ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:3573 ../src/guestfs-actions.pod:4858 ../src/guestfs-actions.pod:6026 ../src/guestfs-actions.pod:6143 ../src/guestfs-actions.pod:6257 ../src/guestfs-actions.pod:6748 ../src/guestfs-actions.pod:6873 ../src/guestfs-actions.pod:7402
5825 msgid "(Added in 0.3)"
5826 msgstr ""
5827
5828 #. type: =head2
5829 #: ../src/guestfs-actions.pod:41
5830 msgid "guestfs_add_domain"
5831 msgstr ""
5832
5833 #. type: verbatim
5834 #: ../src/guestfs-actions.pod:43
5835 #, no-wrap
5836 msgid ""
5837 " int\n"
5838 " guestfs_add_domain (guestfs_h *g,\n"
5839 "                     const char *dom,\n"
5840 "                     ...);\n"
5841 "\n"
5842 msgstr ""
5843
5844 #. type: textblock
5845 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151 ../src/guestfs-actions.pod:2756 ../src/guestfs-actions.pod:4549 ../src/guestfs-actions.pod:4868
5846 msgid ""
5847 "You may supply a list of optional arguments to this call.  Use zero or more "
5848 "of the following pairs of parameters, and terminate the list with C<-1> on "
5849 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
5850 msgstr ""
5851
5852 #. type: verbatim
5853 #: ../src/guestfs-actions.pod:53
5854 #, no-wrap
5855 msgid ""
5856 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
5857 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
5858 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
5859 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
5860 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
5861 "\n"
5862 msgstr ""
5863
5864 #. type: textblock
5865 #: ../src/guestfs-actions.pod:59
5866 msgid ""
5867 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
5868 "It works by connecting to libvirt, requesting the domain and domain XML from "
5869 "libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on each "
5870 "one."
5871 msgstr ""
5872
5873 #. type: textblock
5874 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
5875 msgid ""
5876 "The number of disks added is returned.  This operation is atomic: if an "
5877 "error is returned, then no disks are added."
5878 msgstr ""
5879
5880 #. type: textblock
5881 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
5882 msgid ""
5883 "This function does some minimal checks to make sure the libvirt domain is "
5884 "not running (unless C<readonly> is true).  In a future version we will try "
5885 "to acquire the libvirt lock on each disk."
5886 msgstr ""
5887
5888 #. type: textblock
5889 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
5890 msgid ""
5891 "Disks must be accessible locally.  This often means that adding disks from a "
5892 "remote libvirt connection (see L<http://libvirt.org/remote.html>)  will fail "
5893 "unless those disks are accessible via the same device path locally too."
5894 msgstr ""
5895
5896 #. type: textblock
5897 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
5898 msgid ""
5899 "The optional C<libvirturi> parameter sets the libvirt URI (see "
5900 "L<http://libvirt.org/uri.html>).  If this is not set then we connect to the "
5901 "default libvirt URI (or one set through an environment variable, see the "
5902 "libvirt documentation for full details)."
5903 msgstr ""
5904
5905 #. type: textblock
5906 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
5907 msgid ""
5908 "The optional C<live> flag controls whether this call will try to connect to "
5909 "a running virtual machine C<guestfsd> process if it sees a suitable "
5910 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
5911 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING "
5912 "DAEMONS> for more information."
5913 msgstr ""
5914
5915 #. type: textblock
5916 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
5917 msgid ""
5918 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
5919 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
5920 "first and looked up, and if that lookup fails then we treat C<dom> as a name "
5921 "as usual."
5922 msgstr ""
5923
5924 #. type: textblock
5925 #: ../src/guestfs-actions.pod:94
5926 msgid ""
5927 "The other optional parameters are passed directly through to "
5928 "C<guestfs_add_drive_opts>."
5929 msgstr ""
5930
5931 #. type: textblock
5932 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350 ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693 ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742 ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1321 ../src/guestfs-actions.pod:1677 ../src/guestfs-actions.pod:1880 ../src/guestfs-actions.pod:1991 ../src/guestfs-actions.pod:2031 ../src/guestfs-actions.pod:2086 ../src/guestfs-actions.pod:2109 ../src/guestfs-actions.pod:2402 ../src/guestfs-actions.pod:2874 ../src/guestfs-actions.pod:2892 ../src/guestfs-actions.pod:5044 ../src/guestfs-actions.pod:5172 ../src/guestfs-actions.pod:5578 ../src/guestfs-actions.pod:5604 ../src/guestfs-actions.pod:6981 ../src/guestfs-actions.pod:7413 ../src/guestfs-actions.pod:7426 ../src/guestfs-actions.pod:7439
5933 msgid "On error this function returns -1."
5934 msgstr ""
5935
5936 #. type: textblock
5937 #: ../src/guestfs-actions.pod:99
5938 msgid "(Added in 1.7.4)"
5939 msgstr ""
5940
5941 #. type: =head2
5942 #: ../src/guestfs-actions.pod:101
5943 msgid "guestfs_add_domain_va"
5944 msgstr ""
5945
5946 #. type: verbatim
5947 #: ../src/guestfs-actions.pod:103
5948 #, no-wrap
5949 msgid ""
5950 " int\n"
5951 " guestfs_add_domain_va (guestfs_h *g,\n"
5952 "                        const char *dom,\n"
5953 "                        va_list args);\n"
5954 "\n"
5955 msgstr ""
5956
5957 #. type: textblock
5958 #: ../src/guestfs-actions.pod:108
5959 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
5960 msgstr ""
5961
5962 #. type: textblock
5963 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121 ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225 ../src/guestfs-actions.pod:2840 ../src/guestfs-actions.pod:2852 ../src/guestfs-actions.pod:4614 ../src/guestfs-actions.pod:4626 ../src/guestfs-actions.pod:4896 ../src/guestfs-actions.pod:4908
5964 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
5965 msgstr ""
5966
5967 #. type: =head2
5968 #: ../src/guestfs-actions.pod:112
5969 msgid "guestfs_add_domain_argv"
5970 msgstr ""
5971
5972 #. type: verbatim
5973 #: ../src/guestfs-actions.pod:114
5974 #, no-wrap
5975 msgid ""
5976 " int\n"
5977 " guestfs_add_domain_argv (guestfs_h *g,\n"
5978 "                          const char *dom,\n"
5979 "                          const struct guestfs_add_domain_argv *optargs);\n"
5980 "\n"
5981 msgstr ""
5982
5983 #. type: textblock
5984 #: ../src/guestfs-actions.pod:119
5985 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
5986 msgstr ""
5987
5988 #. type: =head2
5989 #: ../src/guestfs-actions.pod:123
5990 msgid "guestfs_add_drive"
5991 msgstr ""
5992
5993 #. type: verbatim
5994 #: ../src/guestfs-actions.pod:125
5995 #, no-wrap
5996 msgid ""
5997 " int\n"
5998 " guestfs_add_drive (guestfs_h *g,\n"
5999 "                    const char *filename);\n"
6000 "\n"
6001 msgstr ""
6002
6003 #. type: textblock
6004 #: ../src/guestfs-actions.pod:129
6005 msgid ""
6006 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no "
6007 "optional parameters, so the disk is added writable, with the format being "
6008 "detected automatically."
6009 msgstr ""
6010
6011 #. type: textblock
6012 #: ../src/guestfs-actions.pod:133
6013 msgid ""
6014 "Automatic detection of the format opens you up to a potential security hole "
6015 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6016 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6017 "you should think about replacing calls to this function with calls to "
6018 "C<guestfs_add_drive_opts>, and specifying the format."
6019 msgstr ""
6020
6021 #. type: =head2
6022 #: ../src/guestfs-actions.pod:144
6023 msgid "guestfs_add_drive_opts"
6024 msgstr ""
6025
6026 #. type: verbatim
6027 #: ../src/guestfs-actions.pod:146
6028 #, no-wrap
6029 msgid ""
6030 " int\n"
6031 " guestfs_add_drive_opts (guestfs_h *g,\n"
6032 "                         const char *filename,\n"
6033 "                         ...);\n"
6034 "\n"
6035 msgstr ""
6036
6037 #. type: verbatim
6038 #: ../src/guestfs-actions.pod:156
6039 #, no-wrap
6040 msgid ""
6041 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6042 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6043 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6044 "\n"
6045 msgstr ""
6046
6047 #. type: textblock
6048 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6049 msgid ""
6050 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6051 "The first time you call this function, the disk appears as C</dev/sda>, the "
6052 "second time as C</dev/sdb>, and so on."
6053 msgstr ""
6054
6055 #. type: textblock
6056 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6057 msgid ""
6058 "You don't necessarily need to be root when using libguestfs.  However you "
6059 "obviously do need sufficient permissions to access the filename for whatever "
6060 "operations you want to perform (ie. read access if you just want to read the "
6061 "image or write access if you want to modify the image)."
6062 msgstr ""
6063
6064 #. type: textblock
6065 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6066 msgid "This call checks that C<filename> exists."
6067 msgstr ""
6068
6069 #. type: textblock
6070 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4562 ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3049
6071 msgid "The optional arguments are:"
6072 msgstr ""
6073
6074 #. type: =item
6075 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6076 msgid "C<readonly>"
6077 msgstr ""
6078
6079 #. type: textblock
6080 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6081 msgid ""
6082 "If true then the image is treated as read-only.  Writes are still allowed, "
6083 "but they are stored in a temporary snapshot overlay which is discarded at "
6084 "the end.  The disk that you add is not modified."
6085 msgstr ""
6086
6087 #. type: =item
6088 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6089 msgid "C<format>"
6090 msgstr ""
6091
6092 #. type: textblock
6093 #: ../src/guestfs-actions.pod:185
6094 msgid ""
6095 "This forces the image format.  If you omit this (or use C<guestfs_add_drive> "
6096 "or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6097 "Possible formats include C<raw> and C<qcow2>."
6098 msgstr ""
6099
6100 #. type: textblock
6101 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6102 msgid ""
6103 "Automatic detection of the format opens you up to a potential security hole "
6104 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6105 "RHBZ#642934.  Specifying the format closes this security hole."
6106 msgstr ""
6107
6108 #. type: =item
6109 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6110 msgid "C<iface>"
6111 msgstr ""
6112
6113 #. type: textblock
6114 #: ../src/guestfs-actions.pod:196
6115 msgid ""
6116 "This rarely-used option lets you emulate the behaviour of the deprecated "
6117 "C<guestfs_add_drive_with_if> call (q.v.)"
6118 msgstr ""
6119
6120 #. type: textblock
6121 #: ../src/guestfs-actions.pod:203
6122 msgid "(Added in 1.5.23)"
6123 msgstr ""
6124
6125 #. type: =head2
6126 #: ../src/guestfs-actions.pod:205
6127 msgid "guestfs_add_drive_opts_va"
6128 msgstr ""
6129
6130 #. type: verbatim
6131 #: ../src/guestfs-actions.pod:207
6132 #, no-wrap
6133 msgid ""
6134 " int\n"
6135 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6136 "                            const char *filename,\n"
6137 "                            va_list args);\n"
6138 "\n"
6139 msgstr ""
6140
6141 #. type: textblock
6142 #: ../src/guestfs-actions.pod:212
6143 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6144 msgstr ""
6145
6146 #. type: =head2
6147 #: ../src/guestfs-actions.pod:216
6148 msgid "guestfs_add_drive_opts_argv"
6149 msgstr ""
6150
6151 #. type: verbatim
6152 #: ../src/guestfs-actions.pod:218
6153 #, no-wrap
6154 msgid ""
6155 " int\n"
6156 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6157 "                              const char *filename,\n"
6158 "                              const struct guestfs_add_drive_opts_argv "
6159 "*optargs);\n"
6160 "\n"
6161 msgstr ""
6162
6163 #. type: textblock
6164 #: ../src/guestfs-actions.pod:223
6165 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6166 msgstr ""
6167
6168 #. type: =head2
6169 #: ../src/guestfs-actions.pod:227
6170 msgid "guestfs_add_drive_ro"
6171 msgstr ""
6172
6173 #. type: verbatim
6174 #: ../src/guestfs-actions.pod:229
6175 #, no-wrap
6176 msgid ""
6177 " int\n"
6178 " guestfs_add_drive_ro (guestfs_h *g,\n"
6179 "                       const char *filename);\n"
6180 "\n"
6181 msgstr ""
6182
6183 #. type: textblock
6184 #: ../src/guestfs-actions.pod:233
6185 msgid ""
6186 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6187 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6188 "disk is added read-only, with the format being detected automatically."
6189 msgstr ""
6190
6191 #. type: textblock
6192 #: ../src/guestfs-actions.pod:240
6193 msgid "(Added in 1.0.38)"
6194 msgstr ""
6195
6196 #. type: =head2
6197 #: ../src/guestfs-actions.pod:242
6198 msgid "guestfs_add_drive_ro_with_if"
6199 msgstr ""
6200
6201 #. type: verbatim
6202 #: ../src/guestfs-actions.pod:244
6203 #, no-wrap
6204 msgid ""
6205 " int\n"
6206 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6207 "                               const char *filename,\n"
6208 "                               const char *iface);\n"
6209 "\n"
6210 msgstr ""
6211
6212 #. type: textblock
6213 #: ../src/guestfs-actions.pod:249
6214 msgid ""
6215 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the "
6216 "QEMU interface emulation to use at run time."
6217 msgstr ""
6218
6219 #. type: textblock
6220 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282 ../src/guestfs-actions.pod:2361
6221 msgid "(Added in 1.0.84)"
6222 msgstr ""
6223
6224 #. type: =head2
6225 #: ../src/guestfs-actions.pod:263
6226 msgid "guestfs_add_drive_with_if"
6227 msgstr ""
6228
6229 #. type: verbatim
6230 #: ../src/guestfs-actions.pod:265
6231 #, no-wrap
6232 msgid ""
6233 " int\n"
6234 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6235 "                            const char *filename,\n"
6236 "                            const char *iface);\n"
6237 "\n"
6238 msgstr ""
6239
6240 #. type: textblock
6241 #: ../src/guestfs-actions.pod:270
6242 msgid ""
6243 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6244 "QEMU interface emulation to use at run time."
6245 msgstr ""
6246
6247 #. type: =head2
6248 #: ../src/guestfs-actions.pod:284
6249 msgid "guestfs_aug_clear"
6250 msgstr ""
6251
6252 #. type: verbatim
6253 #: ../src/guestfs-actions.pod:286
6254 #, no-wrap
6255 msgid ""
6256 " int\n"
6257 " guestfs_aug_clear (guestfs_h *g,\n"
6258 "                    const char *augpath);\n"
6259 "\n"
6260 msgstr ""
6261
6262 #. type: textblock
6263 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6264 msgid ""
6265 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6266 "L<augtool(1)> C<clear> command."
6267 msgstr ""
6268
6269 #. type: textblock
6270 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2111
6271 msgid "(Added in 1.3.4)"
6272 msgstr ""
6273
6274 #. type: =head2
6275 #: ../src/guestfs-actions.pod:297
6276 msgid "guestfs_aug_close"
6277 msgstr ""
6278
6279 #. type: verbatim
6280 #: ../src/guestfs-actions.pod:299
6281 #, no-wrap
6282 msgid ""
6283 " int\n"
6284 " guestfs_aug_close (guestfs_h *g);\n"
6285 "\n"
6286 msgstr ""
6287
6288 #. type: textblock
6289 #: ../src/guestfs-actions.pod:302
6290 msgid ""
6291 "Close the current Augeas handle and free up any resources used by it.  After "
6292 "calling this, you have to call C<guestfs_aug_init> again before you can use "
6293 "any other Augeas functions."
6294 msgstr ""
6295
6296 #. type: textblock
6297 #: ../src/guestfs-actions.pod:309 ../src/guestfs-actions.pod:334 ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:366 ../src/guestfs-actions.pod:424 ../src/guestfs-actions.pod:444 ../src/guestfs-actions.pod:458 ../src/guestfs-actions.pod:489 ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517 ../src/guestfs-actions.pod:531 ../src/guestfs-actions.pod:549 ../src/guestfs-actions.pod:5655
6298 msgid "(Added in 0.7)"
6299 msgstr ""
6300
6301 #. type: =head2
6302 #: ../src/guestfs-actions.pod:311
6303 msgid "guestfs_aug_defnode"
6304 msgstr ""
6305
6306 #. type: verbatim
6307 #: ../src/guestfs-actions.pod:313
6308 #, no-wrap
6309 msgid ""
6310 " struct guestfs_int_bool *\n"
6311 " guestfs_aug_defnode (guestfs_h *g,\n"
6312 "                      const char *name,\n"
6313 "                      const char *expr,\n"
6314 "                      const char *val);\n"
6315 "\n"
6316 msgstr ""
6317
6318 #. type: textblock
6319 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6320 msgid "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6321 msgstr ""
6322
6323 #. type: textblock
6324 #: ../src/guestfs-actions.pod:322
6325 msgid ""
6326 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6327 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6328 "containing that single node."
6329 msgstr ""
6330
6331 #. type: textblock
6332 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6333 msgid ""
6334 "On success this returns a pair containing the number of nodes in the "
6335 "nodeset, and a boolean flag if a node was created."
6336 msgstr ""
6337
6338 #. type: textblock
6339 #: ../src/guestfs-actions.pod:330
6340 msgid ""
6341 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6342 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6343 msgstr ""
6344
6345 #. type: =head2
6346 #: ../src/guestfs-actions.pod:336
6347 msgid "guestfs_aug_defvar"
6348 msgstr ""
6349
6350 #. type: verbatim
6351 #: ../src/guestfs-actions.pod:338
6352 #, no-wrap
6353 msgid ""
6354 " int\n"
6355 " guestfs_aug_defvar (guestfs_h *g,\n"
6356 "                     const char *name,\n"
6357 "                     const char *expr);\n"
6358 "\n"
6359 msgstr ""
6360
6361 #. type: textblock
6362 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6363 msgid ""
6364 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6365 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6366 msgstr ""
6367
6368 #. type: textblock
6369 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6370 msgid ""
6371 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6372 "evaluates to something which is not a nodeset."
6373 msgstr ""
6374
6375 #. type: =head2
6376 #: ../src/guestfs-actions.pod:354
6377 msgid "guestfs_aug_get"
6378 msgstr ""
6379
6380 #. type: verbatim
6381 #: ../src/guestfs-actions.pod:356
6382 #, no-wrap
6383 msgid ""
6384 " char *\n"
6385 " guestfs_aug_get (guestfs_h *g,\n"
6386 "                  const char *augpath);\n"
6387 "\n"
6388 msgstr ""
6389
6390 #. type: textblock
6391 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6392 msgid ""
6393 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6394 "node, the C<value> is returned."
6395 msgstr ""
6396
6397 #. type: textblock
6398 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:863 ../src/guestfs-actions.pod:881 ../src/guestfs-actions.pod:941 ../src/guestfs-actions.pod:957 ../src/guestfs-actions.pod:1060 ../src/guestfs-actions.pod:1190 ../src/guestfs-actions.pod:1207 ../src/guestfs-actions.pod:1226 ../src/guestfs-actions.pod:1360 ../src/guestfs-actions.pod:1548 ../src/guestfs-actions.pod:1660 ../src/guestfs-actions.pod:1823 ../src/guestfs-actions.pod:1840 ../src/guestfs-actions.pod:1907 ../src/guestfs-actions.pod:1943 ../src/guestfs-actions.pod:1964 ../src/guestfs-actions.pod:2134 ../src/guestfs-actions.pod:2326 ../src/guestfs-actions.pod:2530 ../src/guestfs-actions.pod:2620 ../src/guestfs-actions.pod:2724 ../src/guestfs-actions.pod:2743 ../src/guestfs-actions.pod:2957 ../src/guestfs-actions.pod:2985 ../src/guestfs-actions.pod:3006 ../src/guestfs-actions.pod:3040 ../src/guestfs-actions.pod:3099 ../src/guestfs-actions.pod:3119 ../src/guestfs-actions.pod:3139 ../src/guestfs-actions.pod:3746 ../src/guestfs-actions.pod:4096 ../src/guestfs-actions.pod:4266 ../src/guestfs-actions.pod:4376 ../src/guestfs-actions.pod:5190 ../src/guestfs-actions.pod:5383 ../src/guestfs-actions.pod:5553 ../src/guestfs-actions.pod:5731 ../src/guestfs-actions.pod:5780 ../src/guestfs-actions.pod:6417 ../src/guestfs-actions.pod:6433 ../src/guestfs-actions.pod:6450 ../src/guestfs-actions.pod:6481 ../src/guestfs-actions.pod:7155 ../src/guestfs-actions.pod:7174 ../src/guestfs-actions.pod:7192 ../src/guestfs-actions.pod:7372 ../src/guestfs-actions.pod:7652
6399 msgid ""
6400 "This function returns a string, or NULL on error.  I<The caller must free "
6401 "the returned string after use>."
6402 msgstr ""
6403
6404 #. type: =head2
6405 #: ../src/guestfs-actions.pod:368
6406 msgid "guestfs_aug_init"
6407 msgstr ""
6408
6409 #. type: verbatim
6410 #: ../src/guestfs-actions.pod:370
6411 #, no-wrap
6412 msgid ""
6413 " int\n"
6414 " guestfs_aug_init (guestfs_h *g,\n"
6415 "                   const char *root,\n"
6416 "                   int flags);\n"
6417 "\n"
6418 msgstr ""
6419
6420 #. type: textblock
6421 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6422 msgid ""
6423 "Create a new Augeas handle for editing configuration files.  If there was "
6424 "any previous Augeas handle associated with this guestfs session, then it is "
6425 "closed."
6426 msgstr ""
6427
6428 #. type: textblock
6429 #: ../src/guestfs-actions.pod:379
6430 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6431 msgstr ""
6432
6433 #. type: textblock
6434 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6435 msgid "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6436 msgstr ""
6437
6438 #. type: textblock
6439 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6440 msgid ""
6441 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6442 "logical I<or> of the following integers:"
6443 msgstr ""
6444
6445 #. type: =item
6446 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6447 msgid "C<AUG_SAVE_BACKUP> = 1"
6448 msgstr ""
6449
6450 #. type: textblock
6451 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6452 msgid "Keep the original file with a C<.augsave> extension."
6453 msgstr ""
6454
6455 #. type: =item
6456 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6457 msgid "C<AUG_SAVE_NEWFILE> = 2"
6458 msgstr ""
6459
6460 #. type: textblock
6461 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6462 msgid ""
6463 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6464 "original.  Overrides C<AUG_SAVE_BACKUP>."
6465 msgstr ""
6466
6467 #. type: =item
6468 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6469 msgid "C<AUG_TYPE_CHECK> = 4"
6470 msgstr ""
6471
6472 #. type: textblock
6473 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6474 msgid "Typecheck lenses (can be expensive)."
6475 msgstr ""
6476
6477 #. type: =item
6478 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6479 msgid "C<AUG_NO_STDINC> = 8"
6480 msgstr ""
6481
6482 #. type: textblock
6483 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6484 msgid "Do not use standard load path for modules."
6485 msgstr ""
6486
6487 #. type: =item
6488 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6489 msgid "C<AUG_SAVE_NOOP> = 16"
6490 msgstr ""
6491
6492 #. type: textblock
6493 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6494 msgid "Make save a no-op, just record what would have been changed."
6495 msgstr ""
6496
6497 #. type: =item
6498 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6499 msgid "C<AUG_NO_LOAD> = 32"
6500 msgstr ""
6501
6502 #. type: textblock
6503 #: ../src/guestfs-actions.pod:414
6504 msgid "Do not load the tree in C<guestfs_aug_init>."
6505 msgstr ""
6506
6507 #. type: textblock
6508 #: ../src/guestfs-actions.pod:418
6509 msgid "To close the handle, you can call C<guestfs_aug_close>."
6510 msgstr ""
6511
6512 #. type: textblock
6513 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6514 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6515 msgstr ""
6516
6517 #. type: =head2
6518 #: ../src/guestfs-actions.pod:426
6519 msgid "guestfs_aug_insert"
6520 msgstr ""
6521
6522 #. type: verbatim
6523 #: ../src/guestfs-actions.pod:428
6524 #, no-wrap
6525 msgid ""
6526 " int\n"
6527 " guestfs_aug_insert (guestfs_h *g,\n"
6528 "                     const char *augpath,\n"
6529 "                     const char *label,\n"
6530 "                     int before);\n"
6531 "\n"
6532 msgstr ""
6533
6534 #. type: textblock
6535 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6536 msgid ""
6537 "Create a new sibling C<label> for C<path>, inserting it into the tree before "
6538 "or after C<path> (depending on the boolean flag C<before>)."
6539 msgstr ""
6540
6541 #. type: textblock
6542 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6543 msgid ""
6544 "C<path> must match exactly one existing node in the tree, and C<label> must "
6545 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6546 msgstr ""
6547
6548 #. type: =head2
6549 #: ../src/guestfs-actions.pod:446
6550 msgid "guestfs_aug_load"
6551 msgstr ""
6552
6553 #. type: verbatim
6554 #: ../src/guestfs-actions.pod:448
6555 #, no-wrap
6556 msgid ""
6557 " int\n"
6558 " guestfs_aug_load (guestfs_h *g);\n"
6559 "\n"
6560 msgstr ""
6561
6562 #. type: textblock
6563 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6564 msgid "Load files into the tree."
6565 msgstr ""
6566
6567 #. type: textblock
6568 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6569 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6570 msgstr ""
6571
6572 #. type: =head2
6573 #: ../src/guestfs-actions.pod:460
6574 msgid "guestfs_aug_ls"
6575 msgstr ""
6576
6577 #. type: verbatim
6578 #: ../src/guestfs-actions.pod:462
6579 #, no-wrap
6580 msgid ""
6581 " char **\n"
6582 " guestfs_aug_ls (guestfs_h *g,\n"
6583 "                 const char *augpath);\n"
6584 "\n"
6585 msgstr ""
6586
6587 #. type: textblock
6588 #: ../src/guestfs-actions.pod:466
6589 msgid ""
6590 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6591 "sorting the resulting nodes into alphabetical order."
6592 msgstr ""
6593
6594 #. type: textblock
6595 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485 ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1079 ../src/guestfs-actions.pod:1375 ../src/guestfs-actions.pod:1394 ../src/guestfs-actions.pod:1497 ../src/guestfs-actions.pod:1516 ../src/guestfs-actions.pod:1762 ../src/guestfs-actions.pod:2206 ../src/guestfs-actions.pod:2222 ../src/guestfs-actions.pod:2241 ../src/guestfs-actions.pod:2284 ../src/guestfs-actions.pod:2308 ../src/guestfs-actions.pod:2379 ../src/guestfs-actions.pod:2428 ../src/guestfs-actions.pod:2685 ../src/guestfs-actions.pod:3059 ../src/guestfs-actions.pod:3335 ../src/guestfs-actions.pod:3649 ../src/guestfs-actions.pod:3666 ../src/guestfs-actions.pod:3728 ../src/guestfs-actions.pod:3833 ../src/guestfs-actions.pod:4238 ../src/guestfs-actions.pod:5005 ../src/guestfs-actions.pod:5525 ../src/guestfs-actions.pod:5651 ../src/guestfs-actions.pod:5765 ../src/guestfs-actions.pod:6497 ../src/guestfs-actions.pod:6558 ../src/guestfs-actions.pod:6613 ../src/guestfs-actions.pod:6759 ../src/guestfs-actions.pod:6783 ../src/guestfs-actions.pod:7265 ../src/guestfs-actions.pod:7285 ../src/guestfs-actions.pod:7332 ../src/guestfs-actions.pod:7504 ../src/guestfs-actions.pod:7523 ../src/guestfs-actions.pod:7609 ../src/guestfs-actions.pod:7628 ../src/guestfs-actions.pod:7674 ../src/guestfs-actions.pod:7693
6596 msgid ""
6597 "This function returns a NULL-terminated array of strings (like "
6598 "L<environ(3)>), or NULL if there was an error.  I<The caller must free the "
6599 "strings and the array after use>."
6600 msgstr ""
6601
6602 #. type: textblock
6603 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1004 ../src/guestfs-actions.pod:1022 ../src/guestfs-actions.pod:1432 ../src/guestfs-actions.pod:3413 ../src/guestfs-actions.pod:3444 ../src/guestfs-actions.pod:4079 ../src/guestfs-actions.pod:4129 ../src/guestfs-actions.pod:4316 ../src/guestfs-actions.pod:4349 ../src/guestfs-actions.pod:4512 ../src/guestfs-actions.pod:5009 ../src/guestfs-actions.pod:5466 ../src/guestfs-actions.pod:5863 ../src/guestfs-actions.pod:5877 ../src/guestfs-actions.pod:5889 ../src/guestfs-actions.pod:6338 ../src/guestfs-actions.pod:6997 ../src/guestfs-actions.pod:7010 ../src/guestfs-actions.pod:7249 ../src/guestfs-actions.pod:7492
6604 msgid "(Added in 0.8)"
6605 msgstr ""
6606
6607 #. type: =head2
6608 #: ../src/guestfs-actions.pod:475
6609 msgid "guestfs_aug_match"
6610 msgstr ""
6611
6612 #. type: verbatim
6613 #: ../src/guestfs-actions.pod:477
6614 #, no-wrap
6615 msgid ""
6616 " char **\n"
6617 " guestfs_aug_match (guestfs_h *g,\n"
6618 "                    const char *augpath);\n"
6619 "\n"
6620 msgstr ""
6621
6622 #. type: textblock
6623 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
6624 msgid ""
6625 "Returns a list of paths which match the path expression C<path>.  The "
6626 "returned paths are sufficiently qualified so that they match exactly one "
6627 "node in the current tree."
6628 msgstr ""
6629
6630 #. type: =head2
6631 #: ../src/guestfs-actions.pod:491
6632 msgid "guestfs_aug_mv"
6633 msgstr ""
6634
6635 #. type: verbatim
6636 #: ../src/guestfs-actions.pod:493
6637 #, no-wrap
6638 msgid ""
6639 " int\n"
6640 " guestfs_aug_mv (guestfs_h *g,\n"
6641 "                 const char *src,\n"
6642 "                 const char *dest);\n"
6643 "\n"
6644 msgstr ""
6645
6646 #. type: textblock
6647 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
6648 msgid ""
6649 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
6650 "C<dest> is overwritten if it exists."
6651 msgstr ""
6652
6653 #. type: =head2
6654 #: ../src/guestfs-actions.pod:505
6655 msgid "guestfs_aug_rm"
6656 msgstr ""
6657
6658 #. type: verbatim
6659 #: ../src/guestfs-actions.pod:507
6660 #, no-wrap
6661 msgid ""
6662 " int\n"
6663 " guestfs_aug_rm (guestfs_h *g,\n"
6664 "                 const char *augpath);\n"
6665 "\n"
6666 msgstr ""
6667
6668 #. type: textblock
6669 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
6670 msgid "Remove C<path> and all of its children."
6671 msgstr ""
6672
6673 #. type: textblock
6674 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
6675 msgid "On success this returns the number of entries which were removed."
6676 msgstr ""
6677
6678 #. type: =head2
6679 #: ../src/guestfs-actions.pod:519
6680 msgid "guestfs_aug_save"
6681 msgstr ""
6682
6683 #. type: verbatim
6684 #: ../src/guestfs-actions.pod:521
6685 #, no-wrap
6686 msgid ""
6687 " int\n"
6688 " guestfs_aug_save (guestfs_h *g);\n"
6689 "\n"
6690 msgstr ""
6691
6692 #. type: textblock
6693 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
6694 msgid "This writes all pending changes to disk."
6695 msgstr ""
6696
6697 #. type: textblock
6698 #: ../src/guestfs-actions.pod:526
6699 msgid ""
6700 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
6701 "are saved."
6702 msgstr ""
6703
6704 #. type: =head2
6705 #: ../src/guestfs-actions.pod:533
6706 msgid "guestfs_aug_set"
6707 msgstr ""
6708
6709 #. type: verbatim
6710 #: ../src/guestfs-actions.pod:535
6711 #, no-wrap
6712 msgid ""
6713 " int\n"
6714 " guestfs_aug_set (guestfs_h *g,\n"
6715 "                  const char *augpath,\n"
6716 "                  const char *val);\n"
6717 "\n"
6718 msgstr ""
6719
6720 #. type: textblock
6721 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
6722 msgid "Set the value associated with C<path> to C<val>."
6723 msgstr ""
6724
6725 #. type: textblock
6726 #: ../src/guestfs-actions.pod:542
6727 msgid ""
6728 "In the Augeas API, it is possible to clear a node by setting the value to "
6729 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
6730 "this call.  Instead you must use the C<guestfs_aug_clear> call."
6731 msgstr ""
6732
6733 #. type: =head2
6734 #: ../src/guestfs-actions.pod:551
6735 msgid "guestfs_available"
6736 msgstr ""
6737
6738 #. type: verbatim
6739 #: ../src/guestfs-actions.pod:553
6740 #, no-wrap
6741 msgid ""
6742 " int\n"
6743 " guestfs_available (guestfs_h *g,\n"
6744 "                    char *const *groups);\n"
6745 "\n"
6746 msgstr ""
6747
6748 #. type: textblock
6749 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
6750 msgid ""
6751 "This command is used to check the availability of some groups of "
6752 "functionality in the appliance, which not all builds of the libguestfs "
6753 "appliance will be able to provide."
6754 msgstr ""
6755
6756 #. type: textblock
6757 #: ../src/guestfs-actions.pod:561
6758 msgid ""
6759 "The libguestfs groups, and the functions that those groups correspond to, "
6760 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
6761 "runtime by calling C<guestfs_available_all_groups>."
6762 msgstr ""
6763
6764 #. type: textblock
6765 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
6766 msgid ""
6767 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", "
6768 "\"augeas\"]> would check for the availability of the Linux inotify functions "
6769 "and Augeas (configuration file editing) functions."
6770 msgstr ""
6771
6772 #. type: textblock
6773 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
6774 msgid "The command returns no error if I<all> requested groups are available."
6775 msgstr ""
6776
6777 #. type: textblock
6778 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
6779 msgid ""
6780 "It fails with an error if one or more of the requested groups is unavailable "
6781 "in the appliance."
6782 msgstr ""
6783
6784 #. type: textblock
6785 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
6786 msgid ""
6787 "If an unknown group name is included in the list of groups then an error is "
6788 "always returned."
6789 msgstr ""
6790
6791 #. type: textblock
6792 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
6793 msgid "I<Notes:>"
6794 msgstr ""
6795
6796 #. type: textblock
6797 #: ../src/guestfs-actions.pod:585
6798 msgid "You must call C<guestfs_launch> before calling this function."
6799 msgstr ""
6800
6801 #. type: textblock
6802 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
6803 msgid ""
6804 "The reason is because we don't know what groups are supported by the "
6805 "appliance/daemon until it is running and can be queried."
6806 msgstr ""
6807
6808 #. type: textblock
6809 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
6810 msgid ""
6811 "If a group of functions is available, this does not necessarily mean that "
6812 "they will work.  You still have to check for errors when calling individual "
6813 "API functions even if they are available."
6814 msgstr ""
6815
6816 #. type: textblock
6817 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
6818 msgid ""
6819 "It is usually the job of distro packagers to build complete functionality "
6820 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
6821 "with all requirements satisfied, will support everything."
6822 msgstr ""
6823
6824 #. type: textblock
6825 #: ../src/guestfs-actions.pod:607
6826 msgid ""
6827 "This call was added in version C<1.0.80>.  In previous versions of "
6828 "libguestfs all you could do would be to speculatively execute a command to "
6829 "find out if the daemon implemented it.  See also C<guestfs_version>."
6830 msgstr ""
6831
6832 #. type: textblock
6833 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1177
6834 msgid "(Added in 1.0.80)"
6835 msgstr ""
6836
6837 #. type: =head2
6838 #: ../src/guestfs-actions.pod:618
6839 msgid "guestfs_available_all_groups"
6840 msgstr ""
6841
6842 #. type: verbatim
6843 #: ../src/guestfs-actions.pod:620
6844 #, no-wrap
6845 msgid ""
6846 " char **\n"
6847 " guestfs_available_all_groups (guestfs_h *g);\n"
6848 "\n"
6849 msgstr ""
6850
6851 #. type: textblock
6852 #: ../src/guestfs-actions.pod:623
6853 msgid ""
6854 "This command returns a list of all optional groups that this daemon knows "
6855 "about.  Note this returns both supported and unsupported groups.  To find "
6856 "out which ones the daemon can actually support you have to call "
6857 "C<guestfs_available> on each member of the returned list."
6858 msgstr ""
6859
6860 #. type: textblock
6861 #: ../src/guestfs-actions.pod:629
6862 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
6863 msgstr ""
6864
6865 #. type: textblock
6866 #: ../src/guestfs-actions.pod:635
6867 msgid "(Added in 1.3.15)"
6868 msgstr ""
6869
6870 #. type: =head2
6871 #: ../src/guestfs-actions.pod:637
6872 msgid "guestfs_base64_in"
6873 msgstr ""
6874
6875 #. type: verbatim
6876 #: ../src/guestfs-actions.pod:639
6877 #, no-wrap
6878 msgid ""
6879 " int\n"
6880 " guestfs_base64_in (guestfs_h *g,\n"
6881 "                    const char *base64file,\n"
6882 "                    const char *filename);\n"
6883 "\n"
6884 msgstr ""
6885
6886 #. type: textblock
6887 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
6888 msgid "This command uploads base64-encoded data from C<base64file> to C<filename>."
6889 msgstr ""
6890
6891 #. type: textblock
6892 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
6893 msgid "(Added in 1.3.5)"
6894 msgstr ""
6895
6896 #. type: =head2
6897 #: ../src/guestfs-actions.pod:651
6898 msgid "guestfs_base64_out"
6899 msgstr ""
6900
6901 #. type: verbatim
6902 #: ../src/guestfs-actions.pod:653
6903 #, no-wrap
6904 msgid ""
6905 " int\n"
6906 " guestfs_base64_out (guestfs_h *g,\n"
6907 "                     const char *filename,\n"
6908 "                     const char *base64file);\n"
6909 "\n"
6910 msgstr ""
6911
6912 #. type: textblock
6913 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
6914 msgid ""
6915 "This command downloads the contents of C<filename>, writing it out to local "
6916 "file C<base64file> encoded as base64."
6917 msgstr ""
6918
6919 #. type: =head2
6920 #: ../src/guestfs-actions.pod:665
6921 msgid "guestfs_blockdev_flushbufs"
6922 msgstr ""
6923
6924 #. type: verbatim
6925 #: ../src/guestfs-actions.pod:667
6926 #, no-wrap
6927 msgid ""
6928 " int\n"
6929 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
6930 "                             const char *device);\n"
6931 "\n"
6932 msgstr ""
6933
6934 #. type: textblock
6935 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
6936 msgid "This tells the kernel to flush internal buffers associated with C<device>."
6937 msgstr ""
6938
6939 #. type: textblock
6940 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:691 ../src/guestfs-actions.pod:706 ../src/guestfs-actions.pod:722 ../src/guestfs-actions.pod:740 ../src/guestfs-actions.pod:759 ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:791 ../src/guestfs-actions.pod:805 ../src/guestfs-actions.pod:819 ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464 ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483 ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508 ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527 ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
6941 msgid "This uses the L<blockdev(8)> command."
6942 msgstr ""
6943
6944 #. type: textblock
6945 #: ../src/guestfs-actions.pod:678 ../src/guestfs-actions.pod:695 ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:726 ../src/guestfs-actions.pod:744 ../src/guestfs-actions.pod:763 ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:795 ../src/guestfs-actions.pod:809 ../src/guestfs-actions.pod:823
6946 msgid "(Added in 0.9.3)"
6947 msgstr ""
6948
6949 #. type: =head2
6950 #: ../src/guestfs-actions.pod:680
6951 msgid "guestfs_blockdev_getbsz"
6952 msgstr ""
6953
6954 #. type: verbatim
6955 #: ../src/guestfs-actions.pod:682
6956 #, no-wrap
6957 msgid ""
6958 " int\n"
6959 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
6960 "                          const char *device);\n"
6961 "\n"
6962 msgstr ""
6963
6964 #. type: textblock
6965 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
6966 msgid "This returns the block size of a device."
6967 msgstr ""
6968
6969 #. type: textblock
6970 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788 ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
6971 msgid ""
6972 "(Note this is different from both I<size in blocks> and I<filesystem block "
6973 "size>)."
6974 msgstr ""
6975
6976 #. type: =head2
6977 #: ../src/guestfs-actions.pod:697
6978 msgid "guestfs_blockdev_getro"
6979 msgstr ""
6980
6981 #. type: verbatim
6982 #: ../src/guestfs-actions.pod:699
6983 #, no-wrap
6984 msgid ""
6985 " int\n"
6986 " guestfs_blockdev_getro (guestfs_h *g,\n"
6987 "                         const char *device);\n"
6988 "\n"
6989 msgstr ""
6990
6991 #. type: textblock
6992 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
6993 msgid ""
6994 "Returns a boolean indicating if the block device is read-only (true if "
6995 "read-only, false if not)."
6996 msgstr ""
6997
6998 #. type: textblock
6999 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1415 ../src/guestfs-actions.pod:1430 ../src/guestfs-actions.pod:1919 ../src/guestfs-actions.pod:1930 ../src/guestfs-actions.pod:2002 ../src/guestfs-actions.pod:2057 ../src/guestfs-actions.pod:2072 ../src/guestfs-actions.pod:2097 ../src/guestfs-actions.pod:2120 ../src/guestfs-actions.pod:3156 ../src/guestfs-actions.pod:3172 ../src/guestfs-actions.pod:3190 ../src/guestfs-actions.pod:3352 ../src/guestfs-actions.pod:3366 ../src/guestfs-actions.pod:3381 ../src/guestfs-actions.pod:3395 ../src/guestfs-actions.pod:3411 ../src/guestfs-actions.pod:3426 ../src/guestfs-actions.pod:3442 ../src/guestfs-actions.pod:3456 ../src/guestfs-actions.pod:3469 ../src/guestfs-actions.pod:3483 ../src/guestfs-actions.pod:3498 ../src/guestfs-actions.pod:3513 ../src/guestfs-actions.pod:3526 ../src/guestfs-actions.pod:3540 ../src/guestfs-actions.pod:5154
7000 msgid "This function returns a C truth value on success or -1 on error."
7001 msgstr ""
7002
7003 #. type: =head2
7004 #: ../src/guestfs-actions.pod:712
7005 msgid "guestfs_blockdev_getsize64"
7006 msgstr ""
7007
7008 #. type: verbatim
7009 #: ../src/guestfs-actions.pod:714
7010 #, no-wrap
7011 msgid ""
7012 " int64_t\n"
7013 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7014 "                             const char *device);\n"
7015 "\n"
7016 msgstr ""
7017
7018 #. type: textblock
7019 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7020 msgid "This returns the size of the device in bytes."
7021 msgstr ""
7022
7023 #. type: textblock
7024 #: ../src/guestfs-actions.pod:720
7025 msgid "See also C<guestfs_blockdev_getsz>."
7026 msgstr ""
7027
7028 #. type: =head2
7029 #: ../src/guestfs-actions.pod:728
7030 msgid "guestfs_blockdev_getss"
7031 msgstr ""
7032
7033 #. type: verbatim
7034 #: ../src/guestfs-actions.pod:730
7035 #, no-wrap
7036 msgid ""
7037 " int\n"
7038 " guestfs_blockdev_getss (guestfs_h *g,\n"
7039 "                         const char *device);\n"
7040 "\n"
7041 msgstr ""
7042
7043 #. type: textblock
7044 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7045 msgid ""
7046 "This returns the size of sectors on a block device.  Usually 512, but can be "
7047 "larger for modern devices."
7048 msgstr ""
7049
7050 #. type: textblock
7051 #: ../src/guestfs-actions.pod:737
7052 msgid ""
7053 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7054 "that)."
7055 msgstr ""
7056
7057 #. type: =head2
7058 #: ../src/guestfs-actions.pod:746
7059 msgid "guestfs_blockdev_getsz"
7060 msgstr ""
7061
7062 #. type: verbatim
7063 #: ../src/guestfs-actions.pod:748
7064 #, no-wrap
7065 msgid ""
7066 " int64_t\n"
7067 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7068 "                         const char *device);\n"
7069 "\n"
7070 msgstr ""
7071
7072 #. type: textblock
7073 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7074 msgid ""
7075 "This returns the size of the device in units of 512-byte sectors (even if "
7076 "the sectorsize isn't 512 bytes ... weird)."
7077 msgstr ""
7078
7079 #. type: textblock
7080 #: ../src/guestfs-actions.pod:755
7081 msgid ""
7082 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7083 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7084 msgstr ""
7085
7086 #. type: =head2
7087 #: ../src/guestfs-actions.pod:765
7088 msgid "guestfs_blockdev_rereadpt"
7089 msgstr ""
7090
7091 #. type: verbatim
7092 #: ../src/guestfs-actions.pod:767
7093 #, no-wrap
7094 msgid ""
7095 " int\n"
7096 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7097 "                            const char *device);\n"
7098 "\n"
7099 msgstr ""
7100
7101 #. type: textblock
7102 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7103 msgid "Reread the partition table on C<device>."
7104 msgstr ""
7105
7106 #. type: =head2
7107 #: ../src/guestfs-actions.pod:779
7108 msgid "guestfs_blockdev_setbsz"
7109 msgstr ""
7110
7111 #. type: verbatim
7112 #: ../src/guestfs-actions.pod:781
7113 #, no-wrap
7114 msgid ""
7115 " int\n"
7116 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7117 "                          const char *device,\n"
7118 "                          int blocksize);\n"
7119 "\n"
7120 msgstr ""
7121
7122 #. type: textblock
7123 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7124 msgid "This sets the block size of a device."
7125 msgstr ""
7126
7127 #. type: =head2
7128 #: ../src/guestfs-actions.pod:797
7129 msgid "guestfs_blockdev_setro"
7130 msgstr ""
7131
7132 #. type: verbatim
7133 #: ../src/guestfs-actions.pod:799
7134 #, no-wrap
7135 msgid ""
7136 " int\n"
7137 " guestfs_blockdev_setro (guestfs_h *g,\n"
7138 "                         const char *device);\n"
7139 "\n"
7140 msgstr ""
7141
7142 #. type: textblock
7143 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7144 msgid "Sets the block device named C<device> to read-only."
7145 msgstr ""
7146
7147 #. type: =head2
7148 #: ../src/guestfs-actions.pod:811
7149 msgid "guestfs_blockdev_setrw"
7150 msgstr ""
7151
7152 #. type: verbatim
7153 #: ../src/guestfs-actions.pod:813
7154 #, no-wrap
7155 msgid ""
7156 " int\n"
7157 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7158 "                         const char *device);\n"
7159 "\n"
7160 msgstr ""
7161
7162 #. type: textblock
7163 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7164 msgid "Sets the block device named C<device> to read-write."
7165 msgstr ""
7166
7167 #. type: =head2
7168 #: ../src/guestfs-actions.pod:825
7169 msgid "guestfs_case_sensitive_path"
7170 msgstr ""
7171
7172 #. type: verbatim
7173 #: ../src/guestfs-actions.pod:827
7174 #, no-wrap
7175 msgid ""
7176 " char *\n"
7177 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7178 "                              const char *path);\n"
7179 "\n"
7180 msgstr ""
7181
7182 #. type: textblock
7183 #: ../src/guestfs-actions.pod:831 ../fish/guestfish-actions.pod:549
7184 msgid ""
7185 "This can be used to resolve case insensitive paths on a filesystem which is "
7186 "case sensitive.  The use case is to resolve paths which you have read from "
7187 "Windows configuration files or the Windows Registry, to the true path."
7188 msgstr ""
7189
7190 #. type: textblock
7191 #: ../src/guestfs-actions.pod:836 ../fish/guestfish-actions.pod:554
7192 msgid ""
7193 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7194 "(and probably others), which is that although the underlying filesystem is "
7195 "case-insensitive, the driver exports the filesystem to Linux as "
7196 "case-sensitive."
7197 msgstr ""
7198
7199 #. type: textblock
7200 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:559
7201 msgid ""
7202 "One consequence of this is that special directories such as C<c:\\windows> "
7203 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7204 "precise details of how they were created.  In Windows itself this would not "
7205 "be a problem."
7206 msgstr ""
7207
7208 #. type: textblock
7209 #: ../src/guestfs-actions.pod:847 ../fish/guestfish-actions.pod:565
7210 msgid ""
7211 "Bug or feature? You decide: "
7212 "L<http://www.tuxera.com/community/ntfs-3g-faq/#posixfilenames1>"
7213 msgstr ""
7214
7215 #. type: textblock
7216 #: ../src/guestfs-actions.pod:850 ../fish/guestfish-actions.pod:568
7217 msgid ""
7218 "This function resolves the true case of each element in the path and returns "
7219 "the case-sensitive path."
7220 msgstr ""
7221
7222 #. type: textblock
7223 #: ../src/guestfs-actions.pod:853
7224 msgid ""
7225 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return "
7226 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7227 "how the directories were originally created under Windows)."
7228 msgstr ""
7229
7230 #. type: textblock
7231 #: ../src/guestfs-actions.pod:858 ../fish/guestfish-actions.pod:576
7232 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7233 msgstr ""
7234
7235 #. type: textblock
7236 #: ../src/guestfs-actions.pod:861
7237 msgid "See also C<guestfs_realpath>."
7238 msgstr ""
7239
7240 #. type: textblock
7241 #: ../src/guestfs-actions.pod:866 ../src/guestfs-actions.pod:7177
7242 msgid "(Added in 1.0.75)"
7243 msgstr ""
7244
7245 #. type: =head2
7246 #: ../src/guestfs-actions.pod:868
7247 msgid "guestfs_cat"
7248 msgstr ""
7249
7250 #. type: verbatim
7251 #: ../src/guestfs-actions.pod:870
7252 #, no-wrap
7253 msgid ""
7254 " char *\n"
7255 " guestfs_cat (guestfs_h *g,\n"
7256 "              const char *path);\n"
7257 "\n"
7258 msgstr ""
7259
7260 #. type: textblock
7261 #: ../src/guestfs-actions.pod:874 ../src/guestfs-actions.pod:5641 ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3727
7262 msgid "Return the contents of the file named C<path>."
7263 msgstr ""
7264
7265 #. type: textblock
7266 #: ../src/guestfs-actions.pod:876
7267 msgid ""
7268 "Note that this function cannot correctly handle binary files (specifically, "
7269 "files containing C<\\0> character which is treated as end of string).  For "
7270 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7271 "functions which have a more complex interface."
7272 msgstr ""
7273
7274 #. type: textblock
7275 #: ../src/guestfs-actions.pod:884 ../src/guestfs-actions.pod:1063 ../src/guestfs-actions.pod:1083 ../src/guestfs-actions.pod:1379 ../src/guestfs-actions.pod:1398 ../src/guestfs-actions.pod:1501 ../src/guestfs-actions.pod:1520 ../src/guestfs-actions.pod:1766 ../src/guestfs-actions.pod:2226 ../src/guestfs-actions.pod:2245 ../src/guestfs-actions.pod:2288 ../src/guestfs-actions.pod:2312 ../src/guestfs-actions.pod:2329 ../src/guestfs-actions.pod:2358 ../src/guestfs-actions.pod:5423 ../src/guestfs-actions.pod:5449 ../src/guestfs-actions.pod:5580 ../src/guestfs-actions.pod:5606 ../src/guestfs-actions.pod:5630 ../src/guestfs-actions.pod:6562 ../src/guestfs-actions.pod:6617 ../src/guestfs-actions.pod:6763 ../src/guestfs-actions.pod:6787 ../src/guestfs-actions.pod:7456 ../src/guestfs-actions.pod:7482 ../src/guestfs-actions.pod:7508 ../src/guestfs-actions.pod:7527 ../src/guestfs-actions.pod:7613 ../src/guestfs-actions.pod:7632 ../src/guestfs-actions.pod:7678 ../src/guestfs-actions.pod:7697 ../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:3597 ../fish/guestfish-actions.pod:3612 ../fish/guestfish-actions.pod:3688 ../fish/guestfish-actions.pod:3705 ../fish/guestfish-actions.pod:3720 ../fish/guestfish-actions.pod:4374 ../fish/guestfish-actions.pod:4420 ../fish/guestfish-actions.pod:4505 ../fish/guestfish-actions.pod:4520 ../fish/guestfish-actions.pod:4930 ../fish/guestfish-actions.pod:4948 ../fish/guestfish-actions.pod:4965 ../fish/guestfish-actions.pod:4975 ../fish/guestfish-actions.pod:5024 ../fish/guestfish-actions.pod:5034 ../fish/guestfish-actions.pod:5063 ../fish/guestfish-actions.pod:5073
7276 msgid ""
7277 "Because of the message protocol, there is a transfer limit of somewhere "
7278 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7279 msgstr ""
7280
7281 #. type: textblock
7282 #: ../src/guestfs-actions.pod:887 ../src/guestfs-actions.pod:3670 ../src/guestfs-actions.pod:3732 ../src/guestfs-actions.pod:3749 ../src/guestfs-actions.pod:3837 ../src/guestfs-actions.pod:4242 ../src/guestfs-actions.pod:4256 ../src/guestfs-actions.pod:5529 ../src/guestfs-actions.pod:5543 ../src/guestfs-actions.pod:7336 ../src/guestfs-actions.pod:7350
7283 msgid "(Added in 0.4)"
7284 msgstr ""
7285
7286 #. type: =head2
7287 #: ../src/guestfs-actions.pod:889
7288 msgid "guestfs_checksum"
7289 msgstr ""
7290
7291 #. type: verbatim
7292 #: ../src/guestfs-actions.pod:891
7293 #, no-wrap
7294 msgid ""
7295 " char *\n"
7296 " guestfs_checksum (guestfs_h *g,\n"
7297 "                   const char *csumtype,\n"
7298 "                   const char *path);\n"
7299 "\n"
7300 msgstr ""
7301
7302 #. type: textblock
7303 #: ../src/guestfs-actions.pod:896 ../fish/guestfish-actions.pod:599
7304 msgid "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7305 msgstr ""
7306
7307 #. type: textblock
7308 #: ../src/guestfs-actions.pod:899 ../fish/guestfish-actions.pod:602
7309 msgid ""
7310 "The type of checksum to compute is given by the C<csumtype> parameter which "
7311 "must have one of the following values:"
7312 msgstr ""
7313
7314 #. type: =item
7315 #: ../src/guestfs-actions.pod:904 ../fish/guestfish-actions.pod:607
7316 msgid "C<crc>"
7317 msgstr ""
7318
7319 #. type: textblock
7320 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:609
7321 msgid ""
7322 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7323 "C<cksum> command."
7324 msgstr ""
7325
7326 #. type: =item
7327 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:612
7328 msgid "C<md5>"
7329 msgstr ""
7330
7331 #. type: textblock
7332 #: ../src/guestfs-actions.pod:911 ../fish/guestfish-actions.pod:614
7333 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7334 msgstr ""
7335
7336 #. type: =item
7337 #: ../src/guestfs-actions.pod:913 ../fish/guestfish-actions.pod:616
7338 msgid "C<sha1>"
7339 msgstr ""
7340
7341 #. type: textblock
7342 #: ../src/guestfs-actions.pod:915 ../fish/guestfish-actions.pod:618
7343 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7344 msgstr ""
7345
7346 #. type: =item
7347 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:620
7348 msgid "C<sha224>"
7349 msgstr ""
7350
7351 #. type: textblock
7352 #: ../src/guestfs-actions.pod:919 ../fish/guestfish-actions.pod:622
7353 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7354 msgstr ""
7355
7356 #. type: =item
7357 #: ../src/guestfs-actions.pod:921 ../fish/guestfish-actions.pod:624
7358 msgid "C<sha256>"
7359 msgstr ""
7360
7361 #. type: textblock
7362 #: ../src/guestfs-actions.pod:923 ../fish/guestfish-actions.pod:626
7363 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7364 msgstr ""
7365
7366 #. type: =item
7367 #: ../src/guestfs-actions.pod:925 ../fish/guestfish-actions.pod:628
7368 msgid "C<sha384>"
7369 msgstr ""
7370
7371 #. type: textblock
7372 #: ../src/guestfs-actions.pod:927 ../fish/guestfish-actions.pod:630
7373 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7374 msgstr ""
7375
7376 #. type: =item
7377 #: ../src/guestfs-actions.pod:929 ../fish/guestfish-actions.pod:632
7378 msgid "C<sha512>"
7379 msgstr ""
7380
7381 #. type: textblock
7382 #: ../src/guestfs-actions.pod:931 ../fish/guestfish-actions.pod:634
7383 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7384 msgstr ""
7385
7386 #. type: textblock
7387 #: ../src/guestfs-actions.pod:935 ../fish/guestfish-actions.pod:638
7388 msgid "The checksum is returned as a printable string."
7389 msgstr ""
7390
7391 #. type: textblock
7392 #: ../src/guestfs-actions.pod:937
7393 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7394 msgstr ""
7395
7396 #. type: textblock
7397 #: ../src/guestfs-actions.pod:939
7398 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7399 msgstr ""
7400
7401 #. type: textblock
7402 #: ../src/guestfs-actions.pod:944 ../src/guestfs-actions.pod:1252 ../src/guestfs-actions.pod:2088 ../src/guestfs-actions.pod:3368 ../src/guestfs-actions.pod:3397 ../src/guestfs-actions.pod:3458 ../src/guestfs-actions.pod:3485 ../src/guestfs-actions.pod:7033
7403 msgid "(Added in 1.0.2)"
7404 msgstr ""
7405
7406 #. type: =head2
7407 #: ../src/guestfs-actions.pod:946
7408 msgid "guestfs_checksum_device"
7409 msgstr ""
7410
7411 #. type: verbatim
7412 #: ../src/guestfs-actions.pod:948
7413 #, no-wrap
7414 msgid ""
7415 " char *\n"
7416 " guestfs_checksum_device (guestfs_h *g,\n"
7417 "                          const char *csumtype,\n"
7418 "                          const char *device);\n"
7419 "\n"
7420 msgstr ""
7421
7422 #. type: textblock
7423 #: ../src/guestfs-actions.pod:953
7424 msgid ""
7425 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7426 "device named C<device>.  For the types of checksums supported see the "
7427 "C<guestfs_checksum> command."
7428 msgstr ""
7429
7430 #. type: textblock
7431 #: ../src/guestfs-actions.pod:960 ../src/guestfs-actions.pod:5060 ../src/guestfs-actions.pod:5119 ../src/guestfs-actions.pod:5156 ../src/guestfs-actions.pod:5174 ../src/guestfs-actions.pod:5350 ../src/guestfs-actions.pod:6942 ../src/guestfs-actions.pod:6956 ../src/guestfs-actions.pod:7362
7432 msgid "(Added in 1.3.2)"
7433 msgstr ""
7434
7435 #. type: =head2
7436 #: ../src/guestfs-actions.pod:962
7437 msgid "guestfs_checksums_out"
7438 msgstr ""
7439
7440 #. type: verbatim
7441 #: ../src/guestfs-actions.pod:964
7442 #, no-wrap
7443 msgid ""
7444 " int\n"
7445 " guestfs_checksums_out (guestfs_h *g,\n"
7446 "                        const char *csumtype,\n"
7447 "                        const char *directory,\n"
7448 "                        const char *sumsfile);\n"
7449 "\n"
7450 msgstr ""
7451
7452 #. type: textblock
7453 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:656
7454 msgid ""
7455 "This command computes the checksums of all regular files in C<directory> and "
7456 "then emits a list of those checksums to the local output file C<sumsfile>."
7457 msgstr ""
7458
7459 #. type: textblock
7460 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:660
7461 msgid ""
7462 "This can be used for verifying the integrity of a virtual machine.  However "
7463 "to be properly secure you should pay attention to the output of the checksum "
7464 "command (it uses the ones from GNU coreutils).  In particular when the "
7465 "filename is not printable, coreutils uses a special backslash syntax.  For "
7466 "more information, see the GNU coreutils info file."
7467 msgstr ""
7468
7469 #. type: textblock
7470 #: ../src/guestfs-actions.pod:984
7471 msgid "(Added in 1.3.7)"
7472 msgstr ""
7473
7474 #. type: =head2
7475 #: ../src/guestfs-actions.pod:986
7476 msgid "guestfs_chmod"
7477 msgstr ""
7478
7479 #. type: verbatim
7480 #: ../src/guestfs-actions.pod:988
7481 #, no-wrap
7482 msgid ""
7483 " int\n"
7484 " guestfs_chmod (guestfs_h *g,\n"
7485 "                int mode,\n"
7486 "                const char *path);\n"
7487 "\n"
7488 msgstr ""
7489
7490 #. type: textblock
7491 #: ../src/guestfs-actions.pod:993 ../fish/guestfish-actions.pod:674
7492 msgid ""
7493 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are "
7494 "supported."
7495 msgstr ""
7496
7497 #. type: textblock
7498 #: ../src/guestfs-actions.pod:996 ../fish/guestfish-actions.pod:677
7499 msgid ""
7500 "I<Note>: When using this command from guestfish, C<mode> by default would be "
7501 "decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
7502 "C<700>."
7503 msgstr ""
7504
7505 #. type: textblock
7506 #: ../src/guestfs-actions.pod:1000 ../src/guestfs-actions.pod:4493 ../src/guestfs-actions.pod:4702 ../src/guestfs-actions.pod:4721 ../src/guestfs-actions.pod:4740 ../fish/guestfish-actions.pod:681 ../fish/guestfish-actions.pod:3013 ../fish/guestfish-actions.pod:3152 ../fish/guestfish-actions.pod:3162 ../fish/guestfish-actions.pod:3172
7507 msgid "The mode actually set is affected by the umask."
7508 msgstr ""
7509
7510 #. type: =head2
7511 #: ../src/guestfs-actions.pod:1006
7512 msgid "guestfs_chown"
7513 msgstr ""
7514
7515 #. type: verbatim
7516 #: ../src/guestfs-actions.pod:1008
7517 #, no-wrap
7518 msgid ""
7519 " int\n"
7520 " guestfs_chown (guestfs_h *g,\n"
7521 "                int owner,\n"
7522 "                int group,\n"
7523 "                const char *path);\n"
7524 "\n"
7525 msgstr ""
7526
7527 #. type: textblock
7528 #: ../src/guestfs-actions.pod:1014 ../fish/guestfish-actions.pod:687
7529 msgid "Change the file owner to C<owner> and group to C<group>."
7530 msgstr ""
7531
7532 #. type: textblock
7533 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:3587 ../fish/guestfish-actions.pod:689 ../fish/guestfish-actions.pod:2464
7534 msgid ""
7535 "Only numeric uid and gid are supported.  If you want to use names, you will "
7536 "need to locate and parse the password file yourself (Augeas support makes "
7537 "this relatively easy)."
7538 msgstr ""
7539
7540 #. type: =head2
7541 #: ../src/guestfs-actions.pod:1024
7542 msgid "guestfs_command"
7543 msgstr ""
7544
7545 #. type: verbatim
7546 #: ../src/guestfs-actions.pod:1026
7547 #, no-wrap
7548 msgid ""
7549 " char *\n"
7550 " guestfs_command (guestfs_h *g,\n"
7551 "                  char *const *arguments);\n"
7552 "\n"
7553 msgstr ""
7554
7555 #. type: textblock
7556 #: ../src/guestfs-actions.pod:1030 ../fish/guestfish-actions.pod:697
7557 msgid ""
7558 "This call runs a command from the guest filesystem.  The filesystem must be "
7559 "mounted, and must contain a compatible operating system (ie. something "
7560 "Linux, with the same or compatible processor architecture)."
7561 msgstr ""
7562
7563 #. type: textblock
7564 #: ../src/guestfs-actions.pod:1035
7565 msgid ""
7566 "The single parameter is an argv-style list of arguments.  The first element "
7567 "is the name of the program to run.  Subsequent elements are parameters.  The "
7568 "list must be non-empty (ie. must contain a program name).  Note that the "
7569 "command runs directly, and is I<not> invoked via the shell (see "
7570 "C<guestfs_sh>)."
7571 msgstr ""
7572
7573 #. type: textblock
7574 #: ../src/guestfs-actions.pod:1042 ../fish/guestfish-actions.pod:709
7575 msgid "The return value is anything printed to I<stdout> by the command."
7576 msgstr ""
7577
7578 #. type: textblock
7579 #: ../src/guestfs-actions.pod:1045 ../fish/guestfish-actions.pod:712
7580 msgid ""
7581 "If the command returns a non-zero exit status, then this function returns an "
7582 "error message.  The error message string is the content of I<stderr> from "
7583 "the command."
7584 msgstr ""
7585
7586 #. type: textblock
7587 #: ../src/guestfs-actions.pod:1049 ../fish/guestfish-actions.pod:716
7588 msgid ""
7589 "The C<$PATH> environment variable will contain at least C</usr/bin> and "
7590 "C</bin>.  If you require a program from another location, you should provide "
7591 "the full path in the first parameter."
7592 msgstr ""
7593
7594 #. type: textblock
7595 #: ../src/guestfs-actions.pod:1054 ../fish/guestfish-actions.pod:721
7596 msgid ""
7597 "Shared libraries and data files required by the program must be available on "
7598 "filesystems which are mounted in the correct places.  It is the caller's "
7599 "responsibility to ensure all filesystems that are needed are mounted at the "
7600 "right locations."
7601 msgstr ""
7602
7603 #. type: textblock
7604 #: ../src/guestfs-actions.pod:1066 ../src/guestfs-actions.pod:1086 ../src/guestfs-actions.pod:1551
7605 msgid "(Added in 0.9.1)"
7606 msgstr ""
7607
7608 #. type: =head2
7609 #: ../src/guestfs-actions.pod:1068
7610 msgid "guestfs_command_lines"
7611 msgstr ""
7612
7613 #. type: verbatim
7614 #: ../src/guestfs-actions.pod:1070
7615 #, no-wrap
7616 msgid ""
7617 " char **\n"
7618 " guestfs_command_lines (guestfs_h *g,\n"
7619 "                        char *const *arguments);\n"
7620 "\n"
7621 msgstr ""
7622
7623 #. type: textblock
7624 #: ../src/guestfs-actions.pod:1074
7625 msgid ""
7626 "This is the same as C<guestfs_command>, but splits the result into a list of "
7627 "lines."
7628 msgstr ""
7629
7630 #. type: textblock
7631 #: ../src/guestfs-actions.pod:1077
7632 msgid "See also: C<guestfs_sh_lines>"
7633 msgstr ""
7634
7635 #. type: =head2
7636 #: ../src/guestfs-actions.pod:1088
7637 msgid "guestfs_config"
7638 msgstr ""
7639
7640 #. type: verbatim
7641 #: ../src/guestfs-actions.pod:1090
7642 #, no-wrap
7643 msgid ""
7644 " int\n"
7645 " guestfs_config (guestfs_h *g,\n"
7646 "                 const char *qemuparam,\n"
7647 "                 const char *qemuvalue);\n"
7648 "\n"
7649 msgstr ""
7650
7651 #. type: textblock
7652 #: ../src/guestfs-actions.pod:1095 ../fish/guestfish-actions.pod:746
7653 msgid ""
7654 "This can be used to add arbitrary qemu command line parameters of the form "
7655 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
7656 "setting some parameters which would interfere with parameters that we use."
7657 msgstr ""
7658
7659 #. type: textblock
7660 #: ../src/guestfs-actions.pod:1100 ../fish/guestfish-actions.pod:751
7661 msgid "The first character of C<param> string must be a C<-> (dash)."
7662 msgstr ""
7663
7664 #. type: textblock
7665 #: ../src/guestfs-actions.pod:1102 ../fish/guestfish-actions.pod:753
7666 msgid "C<value> can be NULL."
7667 msgstr ""
7668
7669 #. type: =head2
7670 #: ../src/guestfs-actions.pod:1108
7671 msgid "guestfs_copy_size"
7672 msgstr ""
7673
7674 #. type: verbatim
7675 #: ../src/guestfs-actions.pod:1110
7676 #, no-wrap
7677 msgid ""
7678 " int\n"
7679 " guestfs_copy_size (guestfs_h *g,\n"
7680 "                    const char *src,\n"
7681 "                    const char *dest,\n"
7682 "                    int64_t size);\n"
7683 "\n"
7684 msgstr ""
7685
7686 #. type: textblock
7687 #: ../src/guestfs-actions.pod:1116 ../fish/guestfish-actions.pod:759
7688 msgid ""
7689 "This command copies exactly C<size> bytes from one source device or file "
7690 "C<src> to another destination device or file C<dest>."
7691 msgstr ""
7692
7693 #. type: textblock
7694 #: ../src/guestfs-actions.pod:1119 ../fish/guestfish-actions.pod:762
7695 msgid ""
7696 "Note this will fail if the source is too short or if the destination is not "
7697 "large enough."
7698 msgstr ""
7699
7700 #. type: textblock
7701 #: ../src/guestfs-actions.pod:1124 ../src/guestfs-actions.pod:1247 ../src/guestfs-actions.pod:1278 ../src/guestfs-actions.pod:1323 ../src/guestfs-actions.pod:1700 ../src/guestfs-actions.pod:1722 ../src/guestfs-actions.pod:3568 ../src/guestfs-actions.pod:7028 ../src/guestfs-actions.pod:7062 ../src/guestfs-actions.pod:7549 ../src/guestfs-actions.pod:7568
7702 msgid ""
7703 "This long-running command can generate progress notification messages so "
7704 "that the caller can display a progress bar or indicator.  To receive these "
7705 "messages, the caller must register a progress event callback.  See "
7706 "L<guestfs(3)/GUESTFS_EVENT_PROGRESS>."
7707 msgstr ""
7708
7709 #. type: textblock
7710 #: ../src/guestfs-actions.pod:1129 ../src/guestfs-actions.pod:4269 ../src/guestfs-actions.pod:5556 ../src/guestfs-actions.pod:7269 ../src/guestfs-actions.pod:7289 ../src/guestfs-actions.pod:7375
7711 msgid "(Added in 1.0.87)"
7712 msgstr ""
7713
7714 #. type: =head2
7715 #: ../src/guestfs-actions.pod:1131
7716 msgid "guestfs_cp"
7717 msgstr ""
7718
7719 #. type: verbatim
7720 #: ../src/guestfs-actions.pod:1133
7721 #, no-wrap
7722 msgid ""
7723 " int\n"
7724 " guestfs_cp (guestfs_h *g,\n"
7725 "             const char *src,\n"
7726 "             const char *dest);\n"
7727 "\n"
7728 msgstr ""
7729
7730 #. type: textblock
7731 #: ../src/guestfs-actions.pod:1138 ../fish/guestfish-actions.pod:769
7732 msgid ""
7733 "This copies a file from C<src> to C<dest> where C<dest> is either a "
7734 "destination filename or destination directory."
7735 msgstr ""
7736
7737 #. type: textblock
7738 #: ../src/guestfs-actions.pod:1143 ../src/guestfs-actions.pod:1157 ../src/guestfs-actions.pod:1229 ../src/guestfs-actions.pod:1303 ../src/guestfs-actions.pod:1417 ../src/guestfs-actions.pod:5023 ../src/guestfs-actions.pod:5400
7739 msgid "(Added in 1.0.18)"
7740 msgstr ""
7741
7742 #. type: =head2
7743 #: ../src/guestfs-actions.pod:1145
7744 msgid "guestfs_cp_a"
7745 msgstr ""
7746
7747 #. type: verbatim
7748 #: ../src/guestfs-actions.pod:1147
7749 #, no-wrap
7750 msgid ""
7751 " int\n"
7752 " guestfs_cp_a (guestfs_h *g,\n"
7753 "               const char *src,\n"
7754 "               const char *dest);\n"
7755 "\n"
7756 msgstr ""
7757
7758 #. type: textblock
7759 #: ../src/guestfs-actions.pod:1152 ../fish/guestfish-actions.pod:776
7760 msgid ""
7761 "This copies a file or directory from C<src> to C<dest> recursively using the "
7762 "C<cp -a> command."
7763 msgstr ""
7764
7765 #. type: =head2
7766 #: ../src/guestfs-actions.pod:1159
7767 msgid "guestfs_dd"
7768 msgstr ""
7769
7770 #. type: verbatim
7771 #: ../src/guestfs-actions.pod:1161
7772 #, no-wrap
7773 msgid ""
7774 " int\n"
7775 " guestfs_dd (guestfs_h *g,\n"
7776 "             const char *src,\n"
7777 "             const char *dest);\n"
7778 "\n"
7779 msgstr ""
7780
7781 #. type: textblock
7782 #: ../src/guestfs-actions.pod:1166 ../fish/guestfish-actions.pod:783
7783 msgid ""
7784 "This command copies from one source device or file C<src> to another "
7785 "destination device or file C<dest>.  Normally you would use this to copy to "
7786 "or from a device or partition, for example to duplicate a filesystem."
7787 msgstr ""
7788
7789 #. type: textblock
7790 #: ../src/guestfs-actions.pod:1171
7791 msgid ""
7792 "If the destination is a device, it must be as large or larger than the "
7793 "source file or device, otherwise the copy will fail.  This command cannot do "
7794 "partial copies (see C<guestfs_copy_size>)."
7795 msgstr ""
7796
7797 #. type: =head2
7798 #: ../src/guestfs-actions.pod:1179
7799 msgid "guestfs_df"
7800 msgstr ""
7801
7802 #. type: verbatim
7803 #: ../src/guestfs-actions.pod:1181
7804 #, no-wrap
7805 msgid ""
7806 " char *\n"
7807 " guestfs_df (guestfs_h *g);\n"
7808 "\n"
7809 msgstr ""
7810
7811 #. type: textblock
7812 #: ../src/guestfs-actions.pod:1184 ../fish/guestfish-actions.pod:796
7813 msgid "This command runs the C<df> command to report disk space used."
7814 msgstr ""
7815
7816 #. type: textblock
7817 #: ../src/guestfs-actions.pod:1186 ../src/guestfs-actions.pod:1203
7818 msgid ""
7819 "This command is mostly useful for interactive sessions.  It is I<not> "
7820 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
7821 "from programs."
7822 msgstr ""
7823
7824 #. type: textblock
7825 #: ../src/guestfs-actions.pod:1193 ../src/guestfs-actions.pod:1210 ../src/guestfs-actions.pod:1328 ../src/guestfs-actions.pod:2291 ../src/guestfs-actions.pod:2315 ../src/guestfs-actions.pod:2383 ../src/guestfs-actions.pod:4379 ../src/guestfs-actions.pod:4923 ../src/guestfs-actions.pod:6766 ../src/guestfs-actions.pod:6790 ../src/guestfs-actions.pod:7415 ../src/guestfs-actions.pod:7428 ../src/guestfs-actions.pod:7441
7826 msgid "(Added in 1.0.54)"
7827 msgstr ""
7828
7829 #. type: =head2
7830 #: ../src/guestfs-actions.pod:1195
7831 msgid "guestfs_df_h"
7832 msgstr ""
7833
7834 #. type: verbatim
7835 #: ../src/guestfs-actions.pod:1197
7836 #, no-wrap
7837 msgid ""
7838 " char *\n"
7839 " guestfs_df_h (guestfs_h *g);\n"
7840 "\n"
7841 msgstr ""
7842
7843 #. type: textblock
7844 #: ../src/guestfs-actions.pod:1200 ../fish/guestfish-actions.pod:806
7845 msgid ""
7846 "This command runs the C<df -h> command to report disk space used in "
7847 "human-readable format."
7848 msgstr ""
7849
7850 #. type: =head2
7851 #: ../src/guestfs-actions.pod:1212
7852 msgid "guestfs_dmesg"
7853 msgstr ""
7854
7855 #. type: verbatim
7856 #: ../src/guestfs-actions.pod:1214
7857 #, no-wrap
7858 msgid ""
7859 " char *\n"
7860 " guestfs_dmesg (guestfs_h *g);\n"
7861 "\n"
7862 msgstr ""
7863
7864 #. type: textblock
7865 #: ../src/guestfs-actions.pod:1217 ../fish/guestfish-actions.pod:817
7866 msgid ""
7867 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
7868 "This is sometimes useful for extended debugging of problems."
7869 msgstr ""
7870
7871 #. type: textblock
7872 #: ../src/guestfs-actions.pod:1221
7873 msgid ""
7874 "Another way to get the same information is to enable verbose messages with "
7875 "C<guestfs_set_verbose> or by setting the environment variable "
7876 "C<LIBGUESTFS_DEBUG=1> before running the program."
7877 msgstr ""
7878
7879 #. type: =head2
7880 #: ../src/guestfs-actions.pod:1231
7881 msgid "guestfs_download"
7882 msgstr ""
7883
7884 #. type: verbatim
7885 #: ../src/guestfs-actions.pod:1233
7886 #, no-wrap
7887 msgid ""
7888 " int\n"
7889 " guestfs_download (guestfs_h *g,\n"
7890 "                   const char *remotefilename,\n"
7891 "                   const char *filename);\n"
7892 "\n"
7893 msgstr ""
7894
7895 #. type: textblock
7896 #: ../src/guestfs-actions.pod:1238 ../src/guestfs-actions.pod:1263 ../fish/guestfish-actions.pod:830 ../fish/guestfish-actions.pod:843
7897 msgid ""
7898 "Download file C<remotefilename> and save it as C<filename> on the local "
7899 "machine."
7900 msgstr ""
7901
7902 #. type: textblock
7903 #: ../src/guestfs-actions.pod:1241 ../src/guestfs-actions.pod:7022 ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4678
7904 msgid "C<filename> can also be a named pipe."
7905 msgstr ""
7906
7907 #. type: textblock
7908 #: ../src/guestfs-actions.pod:1243
7909 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
7910 msgstr ""
7911
7912 #. type: =head2
7913 #: ../src/guestfs-actions.pod:1254
7914 msgid "guestfs_download_offset"
7915 msgstr ""
7916
7917 #. type: verbatim
7918 #: ../src/guestfs-actions.pod:1256
7919 #, no-wrap
7920 msgid ""
7921 " int\n"
7922 " guestfs_download_offset (guestfs_h *g,\n"
7923 "                          const char *remotefilename,\n"
7924 "                          const char *filename,\n"
7925 "                          int64_t offset,\n"
7926 "                          int64_t size);\n"
7927 "\n"
7928 msgstr ""
7929
7930 #. type: textblock
7931 #: ../src/guestfs-actions.pod:1266 ../fish/guestfish-actions.pod:846
7932 msgid ""
7933 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
7934 "region must be within the file or device)."
7935 msgstr ""
7936
7937 #. type: textblock
7938 #: ../src/guestfs-actions.pod:1269
7939 msgid ""
7940 "Note that there is no limit on the amount of data that can be downloaded "
7941 "with this call, unlike with C<guestfs_pread>, and this call always reads the "
7942 "full amount unless an error occurs."
7943 msgstr ""
7944
7945 #. type: textblock
7946 #: ../src/guestfs-actions.pod:1274
7947 msgid "See also C<guestfs_download>, C<guestfs_pread>."
7948 msgstr ""
7949
7950 #. type: textblock
7951 #: ../src/guestfs-actions.pod:1283 ../src/guestfs-actions.pod:7067
7952 msgid "(Added in 1.5.17)"
7953 msgstr ""
7954
7955 #. type: =head2
7956 #: ../src/guestfs-actions.pod:1285
7957 msgid "guestfs_drop_caches"
7958 msgstr ""
7959
7960 #. type: verbatim
7961 #: ../src/guestfs-actions.pod:1287
7962 #, no-wrap
7963 msgid ""
7964 " int\n"
7965 " guestfs_drop_caches (guestfs_h *g,\n"
7966 "                      int whattodrop);\n"
7967 "\n"
7968 msgstr ""
7969
7970 #. type: textblock
7971 #: ../src/guestfs-actions.pod:1291 ../fish/guestfish-actions.pod:862
7972 msgid ""
7973 "This instructs the guest kernel to drop its page cache, and/or dentries and "
7974 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
7975 "to drop, see L<http://linux-mm.org/Drop_Caches>"
7976 msgstr ""
7977
7978 #. type: textblock
7979 #: ../src/guestfs-actions.pod:1296 ../fish/guestfish-actions.pod:867
7980 msgid "Setting C<whattodrop> to 3 should drop everything."
7981 msgstr ""
7982
7983 #. type: textblock
7984 #: ../src/guestfs-actions.pod:1298 ../fish/guestfish-actions.pod:869
7985 msgid ""
7986 "This automatically calls L<sync(2)> before the operation, so that the "
7987 "maximum guest memory is freed."
7988 msgstr ""
7989
7990 #. type: =head2
7991 #: ../src/guestfs-actions.pod:1305
7992 msgid "guestfs_du"
7993 msgstr ""
7994
7995 #. type: verbatim
7996 #: ../src/guestfs-actions.pod:1307
7997 #, no-wrap
7998 msgid ""
7999 " int64_t\n"
8000 " guestfs_du (guestfs_h *g,\n"
8001 "             const char *path);\n"
8002 "\n"
8003 msgstr ""
8004
8005 #. type: textblock
8006 #: ../src/guestfs-actions.pod:1311 ../fish/guestfish-actions.pod:876
8007 msgid ""
8008 "This command runs the C<du -s> command to estimate file space usage for "
8009 "C<path>."
8010 msgstr ""
8011
8012 #. type: textblock
8013 #: ../src/guestfs-actions.pod:1314 ../fish/guestfish-actions.pod:879
8014 msgid ""
8015 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8016 "estimate includes the contents of the directory and all subdirectories "
8017 "(recursively)."
8018 msgstr ""
8019
8020 #. type: textblock
8021 #: ../src/guestfs-actions.pod:1318 ../fish/guestfish-actions.pod:883
8022 msgid "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8023 msgstr ""
8024
8025 #. type: =head2
8026 #: ../src/guestfs-actions.pod:1330
8027 msgid "guestfs_e2fsck_f"
8028 msgstr ""
8029
8030 #. type: verbatim
8031 #: ../src/guestfs-actions.pod:1332
8032 #, no-wrap
8033 msgid ""
8034 " int\n"
8035 " guestfs_e2fsck_f (guestfs_h *g,\n"
8036 "                   const char *device);\n"
8037 "\n"
8038 msgstr ""
8039
8040 #. type: textblock
8041 #: ../src/guestfs-actions.pod:1336 ../fish/guestfish-actions.pod:890
8042 msgid ""
8043 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8044 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be "
8045 "clean (I<-f>)."
8046 msgstr ""
8047
8048 #. type: textblock
8049 #: ../src/guestfs-actions.pod:1340
8050 msgid ""
8051 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8052 "Normally you should use C<guestfs_fsck>."
8053 msgstr ""
8054
8055 #. type: textblock
8056 #: ../src/guestfs-actions.pod:1345
8057 msgid "(Added in 1.0.29)"
8058 msgstr ""
8059
8060 #. type: =head2
8061 #: ../src/guestfs-actions.pod:1347
8062 msgid "guestfs_echo_daemon"
8063 msgstr ""
8064
8065 #. type: verbatim
8066 #: ../src/guestfs-actions.pod:1349
8067 #, no-wrap
8068 msgid ""
8069 " char *\n"
8070 " guestfs_echo_daemon (guestfs_h *g,\n"
8071 "                      char *const *words);\n"
8072 "\n"
8073 msgstr ""
8074
8075 #. type: textblock
8076 #: ../src/guestfs-actions.pod:1353 ../fish/guestfish-actions.pod:901
8077 msgid ""
8078 "This command concatenates the list of C<words> passed with single spaces "
8079 "between them and returns the resulting string."
8080 msgstr ""
8081
8082 #. type: textblock
8083 #: ../src/guestfs-actions.pod:1356 ../fish/guestfish-actions.pod:904
8084 msgid "You can use this command to test the connection through to the daemon."
8085 msgstr ""
8086
8087 #. type: textblock
8088 #: ../src/guestfs-actions.pod:1358
8089 msgid "See also C<guestfs_ping_daemon>."
8090 msgstr ""
8091
8092 #. type: textblock
8093 #: ../src/guestfs-actions.pod:1363 ../src/guestfs-actions.pod:2099 ../src/guestfs-actions.pod:6238
8094 msgid "(Added in 1.0.69)"
8095 msgstr ""
8096
8097 #. type: =head2
8098 #: ../src/guestfs-actions.pod:1365
8099 msgid "guestfs_egrep"
8100 msgstr ""
8101
8102 #. type: verbatim
8103 #: ../src/guestfs-actions.pod:1367
8104 #, no-wrap
8105 msgid ""
8106 " char **\n"
8107 " guestfs_egrep (guestfs_h *g,\n"
8108 "                const char *regex,\n"
8109 "                const char *path);\n"
8110 "\n"
8111 msgstr ""
8112
8113 #. type: textblock
8114 #: ../src/guestfs-actions.pod:1372 ../fish/guestfish-actions.pod:912
8115 msgid "This calls the external C<egrep> program and returns the matching lines."
8116 msgstr ""
8117
8118 #. type: textblock
8119 #: ../src/guestfs-actions.pod:1382 ../src/guestfs-actions.pod:1401 ../src/guestfs-actions.pod:1458 ../src/guestfs-actions.pod:1504 ../src/guestfs-actions.pod:1523 ../src/guestfs-actions.pod:2229 ../src/guestfs-actions.pod:2248 ../src/guestfs-actions.pod:2404 ../src/guestfs-actions.pod:2417 ../src/guestfs-actions.pod:2432 ../src/guestfs-actions.pod:2478 ../src/guestfs-actions.pod:2500 ../src/guestfs-actions.pod:2513 ../src/guestfs-actions.pod:3762 ../src/guestfs-actions.pod:3776 ../src/guestfs-actions.pod:3789 ../src/guestfs-actions.pod:3803 ../src/guestfs-actions.pod:4801 ../src/guestfs-actions.pod:5734 ../src/guestfs-actions.pod:5783 ../src/guestfs-actions.pod:6634 ../src/guestfs-actions.pod:6646 ../src/guestfs-actions.pod:6659 ../src/guestfs-actions.pod:6672 ../src/guestfs-actions.pod:6694 ../src/guestfs-actions.pod:6707 ../src/guestfs-actions.pod:6720 ../src/guestfs-actions.pod:6733 ../src/guestfs-actions.pod:7511 ../src/guestfs-actions.pod:7530 ../src/guestfs-actions.pod:7616 ../src/guestfs-actions.pod:7635 ../src/guestfs-actions.pod:7681 ../src/guestfs-actions.pod:7700
8120 msgid "(Added in 1.0.66)"
8121 msgstr ""
8122
8123 #. type: =head2
8124 #: ../src/guestfs-actions.pod:1384
8125 msgid "guestfs_egrepi"
8126 msgstr ""
8127
8128 #. type: verbatim
8129 #: ../src/guestfs-actions.pod:1386
8130 #, no-wrap
8131 msgid ""
8132 " char **\n"
8133 " guestfs_egrepi (guestfs_h *g,\n"
8134 "                 const char *regex,\n"
8135 "                 const char *path);\n"
8136 "\n"
8137 msgstr ""
8138
8139 #. type: textblock
8140 #: ../src/guestfs-actions.pod:1391 ../fish/guestfish-actions.pod:922
8141 msgid "This calls the external C<egrep -i> program and returns the matching lines."
8142 msgstr ""
8143
8144 #. type: =head2
8145 #: ../src/guestfs-actions.pod:1403
8146 msgid "guestfs_equal"
8147 msgstr ""
8148
8149 #. type: verbatim
8150 #: ../src/guestfs-actions.pod:1405
8151 #, no-wrap
8152 msgid ""
8153 " int\n"
8154 " guestfs_equal (guestfs_h *g,\n"
8155 "                const char *file1,\n"
8156 "                const char *file2);\n"
8157 "\n"
8158 msgstr ""
8159
8160 #. type: textblock
8161 #: ../src/guestfs-actions.pod:1410 ../fish/guestfish-actions.pod:932
8162 msgid ""
8163 "This compares the two files C<file1> and C<file2> and returns true if their "
8164 "content is exactly equal, or false otherwise."
8165 msgstr ""
8166
8167 #. type: textblock
8168 #: ../src/guestfs-actions.pod:1413 ../fish/guestfish-actions.pod:935
8169 msgid "The external L<cmp(1)> program is used for the comparison."
8170 msgstr ""
8171
8172 #. type: =head2
8173 #: ../src/guestfs-actions.pod:1419
8174 msgid "guestfs_exists"
8175 msgstr ""
8176
8177 #. type: verbatim
8178 #: ../src/guestfs-actions.pod:1421
8179 #, no-wrap
8180 msgid ""
8181 " int\n"
8182 " guestfs_exists (guestfs_h *g,\n"
8183 "                 const char *path);\n"
8184 "\n"
8185 msgstr ""
8186
8187 #. type: textblock
8188 #: ../src/guestfs-actions.pod:1425 ../fish/guestfish-actions.pod:941
8189 msgid ""
8190 "This returns C<true> if and only if there is a file, directory (or anything) "
8191 "with the given C<path> name."
8192 msgstr ""
8193
8194 #. type: textblock
8195 #: ../src/guestfs-actions.pod:1428
8196 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8197 msgstr ""
8198
8199 #. type: =head2
8200 #: ../src/guestfs-actions.pod:1434
8201 msgid "guestfs_fallocate"
8202 msgstr ""
8203
8204 #. type: verbatim
8205 #: ../src/guestfs-actions.pod:1436
8206 #, no-wrap
8207 msgid ""
8208 " int\n"
8209 " guestfs_fallocate (guestfs_h *g,\n"
8210 "                    const char *path,\n"
8211 "                    int len);\n"
8212 "\n"
8213 msgstr ""
8214
8215 #. type: textblock
8216 #: ../src/guestfs-actions.pod:1441 ../src/guestfs-actions.pod:1467 ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:969
8217 msgid ""
8218 "This command preallocates a file (containing zero bytes) named C<path> of "
8219 "size C<len> bytes.  If the file exists already, it is overwritten."
8220 msgstr ""
8221
8222 #. type: textblock
8223 #: ../src/guestfs-actions.pod:1445 ../fish/guestfish-actions.pod:954
8224 msgid ""
8225 "Do not confuse this with the guestfish-specific C<alloc> command which "
8226 "allocates a file in the host and attaches it as a device."
8227 msgstr ""
8228
8229 #. type: textblock
8230 #: ../src/guestfs-actions.pod:1451 ../fish/guestfish-actions.pod:958
8231 msgid ""
8232 "This function is deprecated.  In new code, use the C<fallocate64> call "
8233 "instead."
8234 msgstr ""
8235
8236 #. type: =head2
8237 #: ../src/guestfs-actions.pod:1460
8238 msgid "guestfs_fallocate64"
8239 msgstr ""
8240
8241 #. type: verbatim
8242 #: ../src/guestfs-actions.pod:1462
8243 #, no-wrap
8244 msgid ""
8245 " int\n"
8246 " guestfs_fallocate64 (guestfs_h *g,\n"
8247 "                      const char *path,\n"
8248 "                      int64_t len);\n"
8249 "\n"
8250 msgstr ""
8251
8252 #. type: textblock
8253 #: ../src/guestfs-actions.pod:1471
8254 msgid ""
8255 "Note that this call allocates disk blocks for the file.  To create a sparse "
8256 "file use C<guestfs_truncate_size> instead."
8257 msgstr ""
8258
8259 #. type: textblock
8260 #: ../src/guestfs-actions.pod:1474
8261 msgid ""
8262 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8263 "oversight it only allowed 30 bit lengths to be specified, effectively "
8264 "limiting the maximum size of files created through that call to 1GB."
8265 msgstr ""
8266
8267 #. type: textblock
8268 #: ../src/guestfs-actions.pod:1479 ../fish/guestfish-actions.pod:981
8269 msgid ""
8270 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8271 "commands which create a file in the host and attach it as a device."
8272 msgstr ""
8273
8274 #. type: textblock
8275 #: ../src/guestfs-actions.pod:1485
8276 msgid "(Added in 1.3.17)"
8277 msgstr ""
8278
8279 #. type: =head2
8280 #: ../src/guestfs-actions.pod:1487
8281 msgid "guestfs_fgrep"
8282 msgstr ""
8283
8284 #. type: verbatim
8285 #: ../src/guestfs-actions.pod:1489
8286 #, no-wrap
8287 msgid ""
8288 " char **\n"
8289 " guestfs_fgrep (guestfs_h *g,\n"
8290 "                const char *pattern,\n"
8291 "                const char *path);\n"
8292 "\n"
8293 msgstr ""
8294
8295 #. type: textblock
8296 #: ../src/guestfs-actions.pod:1494 ../fish/guestfish-actions.pod:989
8297 msgid "This calls the external C<fgrep> program and returns the matching lines."
8298 msgstr ""
8299
8300 #. type: =head2
8301 #: ../src/guestfs-actions.pod:1506
8302 msgid "guestfs_fgrepi"
8303 msgstr ""
8304
8305 #. type: verbatim
8306 #: ../src/guestfs-actions.pod:1508
8307 #, no-wrap
8308 msgid ""
8309 " char **\n"
8310 " guestfs_fgrepi (guestfs_h *g,\n"
8311 "                 const char *pattern,\n"
8312 "                 const char *path);\n"
8313 "\n"
8314 msgstr ""
8315
8316 #. type: textblock
8317 #: ../src/guestfs-actions.pod:1513 ../fish/guestfish-actions.pod:999
8318 msgid "This calls the external C<fgrep -i> program and returns the matching lines."
8319 msgstr ""
8320
8321 #. type: =head2
8322 #: ../src/guestfs-actions.pod:1525
8323 msgid "guestfs_file"
8324 msgstr ""
8325
8326 #. type: verbatim
8327 #: ../src/guestfs-actions.pod:1527
8328 #, no-wrap
8329 msgid ""
8330 " char *\n"
8331 " guestfs_file (guestfs_h *g,\n"
8332 "               const char *path);\n"
8333 "\n"
8334 msgstr ""
8335
8336 #. type: textblock
8337 #: ../src/guestfs-actions.pod:1531 ../fish/guestfish-actions.pod:1009
8338 msgid ""
8339 "This call uses the standard L<file(1)> command to determine the type or "
8340 "contents of the file."
8341 msgstr ""
8342
8343 #. type: textblock
8344 #: ../src/guestfs-actions.pod:1534 ../fish/guestfish-actions.pod:1012
8345 msgid ""
8346 "This call will also transparently look inside various types of compressed "
8347 "file."
8348 msgstr ""
8349
8350 #. type: textblock
8351 #: ../src/guestfs-actions.pod:1537 ../fish/guestfish-actions.pod:1015
8352 msgid ""
8353 "The exact command which runs is C<file -zb path>.  Note in particular that "
8354 "the filename is not prepended to the output (the I<-b> option)."
8355 msgstr ""
8356
8357 #. type: textblock
8358 #: ../src/guestfs-actions.pod:1541 ../fish/guestfish-actions.pod:1019
8359 msgid ""
8360 "The output depends on the output of the underlying L<file(1)> command and it "
8361 "can change in future in ways beyond our control.  In other words, the output "
8362 "is not guaranteed by the ABI."
8363 msgstr ""
8364
8365 #. type: textblock
8366 #: ../src/guestfs-actions.pod:1545
8367 msgid ""
8368 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8369 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc), C<guestfs_is_zero>."
8370 msgstr ""
8371
8372 #. type: =head2
8373 #: ../src/guestfs-actions.pod:1553
8374 msgid "guestfs_file_architecture"
8375 msgstr ""
8376
8377 #. type: verbatim
8378 #: ../src/guestfs-actions.pod:1555
8379 #, no-wrap
8380 msgid ""
8381 " char *\n"
8382 " guestfs_file_architecture (guestfs_h *g,\n"
8383 "                            const char *filename);\n"
8384 "\n"
8385 msgstr ""
8386
8387 #. type: textblock
8388 #: ../src/guestfs-actions.pod:1559 ../fish/guestfish-actions.pod:1030
8389 msgid ""
8390 "This detects the architecture of the binary C<filename>, and returns it if "
8391 "known."
8392 msgstr ""
8393
8394 #. type: textblock
8395 #: ../src/guestfs-actions.pod:1562 ../fish/guestfish-actions.pod:1033
8396 msgid "Currently defined architectures are:"
8397 msgstr ""
8398
8399 #. type: =item
8400 #: ../src/guestfs-actions.pod:1566 ../fish/guestfish-actions.pod:1037
8401 msgid "\"i386\""
8402 msgstr ""
8403
8404 #. type: textblock
8405 #: ../src/guestfs-actions.pod:1568 ../fish/guestfish-actions.pod:1039
8406 msgid ""
8407 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
8408 "irrespective of the precise processor requirements of the binary."
8409 msgstr ""
8410
8411 #. type: =item
8412 #: ../src/guestfs-actions.pod:1571 ../fish/guestfish-actions.pod:1042
8413 msgid "\"x86_64\""
8414 msgstr ""
8415
8416 #. type: textblock
8417 #: ../src/guestfs-actions.pod:1573 ../fish/guestfish-actions.pod:1044
8418 msgid "64 bit x86-64."
8419 msgstr ""
8420
8421 #. type: =item
8422 #: ../src/guestfs-actions.pod:1575 ../fish/guestfish-actions.pod:1046
8423 msgid "\"sparc\""
8424 msgstr ""
8425
8426 #. type: textblock
8427 #: ../src/guestfs-actions.pod:1577 ../fish/guestfish-actions.pod:1048
8428 msgid "32 bit SPARC."
8429 msgstr ""
8430
8431 #. type: =item
8432 #: ../src/guestfs-actions.pod:1579 ../fish/guestfish-actions.pod:1050
8433 msgid "\"sparc64\""
8434 msgstr ""
8435
8436 #. type: textblock
8437 #: ../src/guestfs-actions.pod:1581 ../fish/guestfish-actions.pod:1052
8438 msgid "64 bit SPARC V9 and above."
8439 msgstr ""
8440
8441 #. type: =item
8442 #: ../src/guestfs-actions.pod:1583 ../fish/guestfish-actions.pod:1054
8443 msgid "\"ia64\""
8444 msgstr ""
8445
8446 #. type: textblock
8447 #: ../src/guestfs-actions.pod:1585 ../fish/guestfish-actions.pod:1056
8448 msgid "Intel Itanium."
8449 msgstr ""
8450
8451 #. type: =item
8452 #: ../src/guestfs-actions.pod:1587 ../fish/guestfish-actions.pod:1058
8453 msgid "\"ppc\""
8454 msgstr ""
8455
8456 #. type: textblock
8457 #: ../src/guestfs-actions.pod:1589 ../fish/guestfish-actions.pod:1060
8458 msgid "32 bit Power PC."
8459 msgstr ""
8460
8461 #. type: =item
8462 #: ../src/guestfs-actions.pod:1591 ../fish/guestfish-actions.pod:1062
8463 msgid "\"ppc64\""
8464 msgstr ""
8465
8466 #. type: textblock
8467 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1064
8468 msgid "64 bit Power PC."
8469 msgstr ""
8470
8471 #. type: textblock
8472 #: ../src/guestfs-actions.pod:1597 ../fish/guestfish-actions.pod:1068
8473 msgid "Libguestfs may return other architecture strings in future."
8474 msgstr ""
8475
8476 #. type: textblock
8477 #: ../src/guestfs-actions.pod:1599 ../fish/guestfish-actions.pod:1070
8478 msgid "The function works on at least the following types of files:"
8479 msgstr ""
8480
8481 #. type: textblock
8482 #: ../src/guestfs-actions.pod:1605 ../fish/guestfish-actions.pod:1076
8483 msgid "many types of Un*x and Linux binary"
8484 msgstr ""
8485
8486 #. type: textblock
8487 #: ../src/guestfs-actions.pod:1609 ../fish/guestfish-actions.pod:1080
8488 msgid "many types of Un*x and Linux shared library"
8489 msgstr ""
8490
8491 #. type: textblock
8492 #: ../src/guestfs-actions.pod:1613 ../fish/guestfish-actions.pod:1084
8493 msgid "Windows Win32 and Win64 binaries"
8494 msgstr ""
8495
8496 #. type: textblock
8497 #: ../src/guestfs-actions.pod:1617 ../fish/guestfish-actions.pod:1088
8498 msgid "Windows Win32 and Win64 DLLs"
8499 msgstr ""
8500
8501 #. type: textblock
8502 #: ../src/guestfs-actions.pod:1619 ../fish/guestfish-actions.pod:1090
8503 msgid "Win32 binaries and DLLs return C<i386>."
8504 msgstr ""
8505
8506 #. type: textblock
8507 #: ../src/guestfs-actions.pod:1621 ../fish/guestfish-actions.pod:1092
8508 msgid "Win64 binaries and DLLs return C<x86_64>."
8509 msgstr ""
8510
8511 #. type: textblock
8512 #: ../src/guestfs-actions.pod:1625 ../fish/guestfish-actions.pod:1096
8513 msgid "Linux kernel modules"
8514 msgstr ""
8515
8516 #. type: textblock
8517 #: ../src/guestfs-actions.pod:1629 ../fish/guestfish-actions.pod:1100
8518 msgid "Linux new-style initrd images"
8519 msgstr ""
8520
8521 #. type: textblock
8522 #: ../src/guestfs-actions.pod:1633 ../fish/guestfish-actions.pod:1104
8523 msgid "some non-x86 Linux vmlinuz kernels"
8524 msgstr ""
8525
8526 #. type: textblock
8527 #: ../src/guestfs-actions.pod:1637 ../fish/guestfish-actions.pod:1108
8528 msgid "What it can't do currently:"
8529 msgstr ""
8530
8531 #. type: textblock
8532 #: ../src/guestfs-actions.pod:1643 ../fish/guestfish-actions.pod:1114
8533 msgid "static libraries (libfoo.a)"
8534 msgstr ""
8535
8536 #. type: textblock
8537 #: ../src/guestfs-actions.pod:1647 ../fish/guestfish-actions.pod:1118
8538 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
8539 msgstr ""
8540
8541 #. type: textblock
8542 #: ../src/guestfs-actions.pod:1651 ../fish/guestfish-actions.pod:1122
8543 msgid "x86 Linux vmlinuz kernels"
8544 msgstr ""
8545
8546 #. type: textblock
8547 #: ../src/guestfs-actions.pod:1653 ../fish/guestfish-actions.pod:1124
8548 msgid ""
8549 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
8550 "compressed code, and are horribly hard to unpack.  If you want to find the "
8551 "architecture of a kernel, use the architecture of the associated initrd or "
8552 "kernel module(s) instead."
8553 msgstr ""
8554
8555 #. type: textblock
8556 #: ../src/guestfs-actions.pod:1663 ../src/guestfs-actions.pod:1826 ../src/guestfs-actions.pod:1843 ../src/guestfs-actions.pod:2533 ../src/guestfs-actions.pod:2623 ../src/guestfs-actions.pod:2689 ../src/guestfs-actions.pod:2876 ../src/guestfs-actions.pod:2894 ../src/guestfs-actions.pod:2934 ../src/guestfs-actions.pod:3009 ../src/guestfs-actions.pod:3102 ../src/guestfs-actions.pod:3339 ../src/guestfs-actions.pod:3471
8557 msgid "(Added in 1.5.3)"
8558 msgstr ""
8559
8560 #. type: =head2
8561 #: ../src/guestfs-actions.pod:1665
8562 msgid "guestfs_filesize"
8563 msgstr ""
8564
8565 #. type: verbatim
8566 #: ../src/guestfs-actions.pod:1667
8567 #, no-wrap
8568 msgid ""
8569 " int64_t\n"
8570 " guestfs_filesize (guestfs_h *g,\n"
8571 "                   const char *file);\n"
8572 "\n"
8573 msgstr ""
8574
8575 #. type: textblock
8576 #: ../src/guestfs-actions.pod:1671 ../fish/guestfish-actions.pod:1135
8577 msgid "This command returns the size of C<file> in bytes."
8578 msgstr ""
8579
8580 #. type: textblock
8581 #: ../src/guestfs-actions.pod:1673
8582 msgid ""
8583 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
8584 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
8585 "devices, use C<guestfs_blockdev_getsize64>."
8586 msgstr ""
8587
8588 #. type: textblock
8589 #: ../src/guestfs-actions.pod:1679
8590 msgid "(Added in 1.0.82)"
8591 msgstr ""
8592
8593 #. type: =head2
8594 #: ../src/guestfs-actions.pod:1681
8595 msgid "guestfs_fill"
8596 msgstr ""
8597
8598 #. type: verbatim
8599 #: ../src/guestfs-actions.pod:1683
8600 #, no-wrap
8601 msgid ""
8602 " int\n"
8603 " guestfs_fill (guestfs_h *g,\n"
8604 "               int c,\n"
8605 "               int len,\n"
8606 "               const char *path);\n"
8607 "\n"
8608 msgstr ""
8609
8610 #. type: textblock
8611 #: ../src/guestfs-actions.pod:1689 ../fish/guestfish-actions.pod:1145
8612 msgid ""
8613 "This command creates a new file called C<path>.  The initial content of the "
8614 "file is C<len> octets of C<c>, where C<c> must be a number in the range "
8615 "C<[0..255]>."
8616 msgstr ""
8617
8618 #. type: textblock
8619 #: ../src/guestfs-actions.pod:1693
8620 msgid ""
8621 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
8622 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
8623 "bytes use C<guestfs_fill_pattern>."
8624 msgstr ""
8625
8626 #. type: textblock
8627 #: ../src/guestfs-actions.pod:1705
8628 msgid "(Added in 1.0.79)"
8629 msgstr ""
8630
8631 #. type: =head2
8632 #: ../src/guestfs-actions.pod:1707
8633 msgid "guestfs_fill_pattern"
8634 msgstr ""
8635
8636 #. type: verbatim
8637 #: ../src/guestfs-actions.pod:1709
8638 #, no-wrap
8639 msgid ""
8640 " int\n"
8641 " guestfs_fill_pattern (guestfs_h *g,\n"
8642 "                       const char *pattern,\n"
8643 "                       int len,\n"
8644 "                       const char *path);\n"
8645 "\n"
8646 msgstr ""
8647
8648 #. type: textblock
8649 #: ../src/guestfs-actions.pod:1715
8650 msgid ""
8651 "This function is like C<guestfs_fill> except that it creates a new file of "
8652 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
8653 "pattern is truncated if necessary to ensure the length of the file is "
8654 "exactly C<len> bytes."
8655 msgstr ""
8656
8657 #. type: textblock
8658 #: ../src/guestfs-actions.pod:1727
8659 msgid "(Added in 1.3.12)"
8660 msgstr ""
8661
8662 #. type: =head2
8663 #: ../src/guestfs-actions.pod:1729
8664 msgid "guestfs_find"
8665 msgstr ""
8666
8667 #. type: verbatim
8668 #: ../src/guestfs-actions.pod:1731
8669 #, no-wrap
8670 msgid ""
8671 " char **\n"
8672 " guestfs_find (guestfs_h *g,\n"
8673 "               const char *directory);\n"
8674 "\n"
8675 msgstr ""
8676
8677 #. type: textblock
8678 #: ../src/guestfs-actions.pod:1735 ../fish/guestfish-actions.pod:1167
8679 msgid ""
8680 "This command lists out all files and directories, recursively, starting at "
8681 "C<directory>.  It is essentially equivalent to running the shell command "
8682 "C<find directory -print> but some post-processing happens on the output, "
8683 "described below."
8684 msgstr ""
8685
8686 #. type: textblock
8687 #: ../src/guestfs-actions.pod:1740 ../fish/guestfish-actions.pod:1172
8688 msgid ""
8689 "This returns a list of strings I<without any prefix>.  Thus if the directory "
8690 "structure was:"
8691 msgstr ""
8692
8693 #. type: verbatim
8694 #: ../src/guestfs-actions.pod:1743 ../fish/guestfish-actions.pod:1175
8695 #, no-wrap
8696 msgid ""
8697 " /tmp/a\n"
8698 " /tmp/b\n"
8699 " /tmp/c/d\n"
8700 "\n"
8701 msgstr ""
8702
8703 #. type: textblock
8704 #: ../src/guestfs-actions.pod:1747
8705 msgid "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
8706 msgstr ""
8707
8708 #. type: verbatim
8709 #: ../src/guestfs-actions.pod:1750 ../fish/guestfish-actions.pod:1182
8710 #, no-wrap
8711 msgid ""
8712 " a\n"
8713 " b\n"
8714 " c\n"
8715 " c/d\n"
8716 "\n"
8717 msgstr ""
8718
8719 #. type: textblock
8720 #: ../src/guestfs-actions.pod:1755 ../fish/guestfish-actions.pod:1187
8721 msgid "If C<directory> is not a directory, then this command returns an error."
8722 msgstr ""
8723
8724 #. type: textblock
8725 #: ../src/guestfs-actions.pod:1758 ../fish/guestfish-actions.pod:1190
8726 msgid "The returned list is sorted."
8727 msgstr ""
8728
8729 #. type: textblock
8730 #: ../src/guestfs-actions.pod:1760
8731 msgid "See also C<guestfs_find0>."
8732 msgstr ""
8733
8734 #. type: textblock
8735 #: ../src/guestfs-actions.pod:1769 ../src/guestfs-actions.pod:4206 ../src/guestfs-actions.pod:5818
8736 msgid "(Added in 1.0.27)"
8737 msgstr ""
8738
8739 #. type: =head2
8740 #: ../src/guestfs-actions.pod:1771
8741 msgid "guestfs_find0"
8742 msgstr ""
8743
8744 #. type: verbatim
8745 #: ../src/guestfs-actions.pod:1773
8746 #, no-wrap
8747 msgid ""
8748 " int\n"
8749 " guestfs_find0 (guestfs_h *g,\n"
8750 "                const char *directory,\n"
8751 "                const char *files);\n"
8752 "\n"
8753 msgstr ""
8754
8755 #. type: textblock
8756 #: ../src/guestfs-actions.pod:1778 ../fish/guestfish-actions.pod:1201
8757 msgid ""
8758 "This command lists out all files and directories, recursively, starting at "
8759 "C<directory>, placing the resulting list in the external file called "
8760 "C<files>."
8761 msgstr ""
8762
8763 #. type: textblock
8764 #: ../src/guestfs-actions.pod:1782
8765 msgid ""
8766 "This command works the same way as C<guestfs_find> with the following "
8767 "exceptions:"
8768 msgstr ""
8769
8770 #. type: textblock
8771 #: ../src/guestfs-actions.pod:1789 ../fish/guestfish-actions.pod:1212
8772 msgid "The resulting list is written to an external file."
8773 msgstr ""
8774
8775 #. type: textblock
8776 #: ../src/guestfs-actions.pod:1793 ../fish/guestfish-actions.pod:1216
8777 msgid ""
8778 "Items (filenames) in the result are separated by C<\\0> characters.  See "
8779 "L<find(1)> option I<-print0>."
8780 msgstr ""
8781
8782 #. type: textblock
8783 #: ../src/guestfs-actions.pod:1798 ../fish/guestfish-actions.pod:1221
8784 msgid "This command is not limited in the number of names that it can return."
8785 msgstr ""
8786
8787 #. type: textblock
8788 #: ../src/guestfs-actions.pod:1803 ../fish/guestfish-actions.pod:1226
8789 msgid "The result list is not sorted."
8790 msgstr ""
8791
8792 #. type: textblock
8793 #: ../src/guestfs-actions.pod:1809
8794 msgid "(Added in 1.0.74)"
8795 msgstr ""
8796
8797 #. type: =head2
8798 #: ../src/guestfs-actions.pod:1811
8799 msgid "guestfs_findfs_label"
8800 msgstr ""
8801
8802 #. type: verbatim
8803 #: ../src/guestfs-actions.pod:1813
8804 #, no-wrap
8805 msgid ""
8806 " char *\n"
8807 " guestfs_findfs_label (guestfs_h *g,\n"
8808 "                       const char *label);\n"
8809 "\n"
8810 msgstr ""
8811
8812 #. type: textblock
8813 #: ../src/guestfs-actions.pod:1817 ../fish/guestfish-actions.pod:1236
8814 msgid ""
8815 "This command searches the filesystems and returns the one which has the "
8816 "given label.  An error is returned if no such filesystem can be found."
8817 msgstr ""
8818
8819 #. type: textblock
8820 #: ../src/guestfs-actions.pod:1821
8821 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
8822 msgstr ""
8823
8824 #. type: =head2
8825 #: ../src/guestfs-actions.pod:1828
8826 msgid "guestfs_findfs_uuid"
8827 msgstr ""
8828
8829 #. type: verbatim
8830 #: ../src/guestfs-actions.pod:1830
8831 #, no-wrap
8832 msgid ""
8833 " char *\n"
8834 " guestfs_findfs_uuid (guestfs_h *g,\n"
8835 "                      const char *uuid);\n"
8836 "\n"
8837 msgstr ""
8838
8839 #. type: textblock
8840 #: ../src/guestfs-actions.pod:1834 ../fish/guestfish-actions.pod:1246
8841 msgid ""
8842 "This command searches the filesystems and returns the one which has the "
8843 "given UUID.  An error is returned if no such filesystem can be found."
8844 msgstr ""
8845
8846 #. type: textblock
8847 #: ../src/guestfs-actions.pod:1838
8848 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
8849 msgstr ""
8850
8851 #. type: =head2
8852 #: ../src/guestfs-actions.pod:1845
8853 msgid "guestfs_fsck"
8854 msgstr ""
8855
8856 #. type: verbatim
8857 #: ../src/guestfs-actions.pod:1847
8858 #, no-wrap
8859 msgid ""
8860 " int\n"
8861 " guestfs_fsck (guestfs_h *g,\n"
8862 "               const char *fstype,\n"
8863 "               const char *device);\n"
8864 "\n"
8865 msgstr ""
8866
8867 #. type: textblock
8868 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1256
8869 msgid ""
8870 "This runs the filesystem checker (fsck) on C<device> which should have "
8871 "filesystem type C<fstype>."
8872 msgstr ""
8873
8874 #. type: textblock
8875 #: ../src/guestfs-actions.pod:1855 ../fish/guestfish-actions.pod:1259
8876 msgid ""
8877 "The returned integer is the status.  See L<fsck(8)> for the list of status "
8878 "codes from C<fsck>."
8879 msgstr ""
8880
8881 #. type: textblock
8882 #: ../src/guestfs-actions.pod:1864 ../fish/guestfish-actions.pod:1268
8883 msgid "Multiple status codes can be summed together."
8884 msgstr ""
8885
8886 #. type: textblock
8887 #: ../src/guestfs-actions.pod:1868 ../fish/guestfish-actions.pod:1272
8888 msgid ""
8889 "A non-zero return code can mean \"success\", for example if errors have been "
8890 "corrected on the filesystem."
8891 msgstr ""
8892
8893 #. type: textblock
8894 #: ../src/guestfs-actions.pod:1873 ../fish/guestfish-actions.pod:1277
8895 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
8896 msgstr ""
8897
8898 #. type: textblock
8899 #: ../src/guestfs-actions.pod:1878 ../fish/guestfish-actions.pod:1282
8900 msgid "This command is entirely equivalent to running C<fsck -a -t fstype device>."
8901 msgstr ""
8902
8903 #. type: textblock
8904 #: ../src/guestfs-actions.pod:1882 ../src/guestfs-actions.pod:7554
8905 msgid "(Added in 1.0.16)"
8906 msgstr ""
8907
8908 #. type: =head2
8909 #: ../src/guestfs-actions.pod:1884
8910 msgid "guestfs_get_append"
8911 msgstr ""
8912
8913 #. type: verbatim
8914 #: ../src/guestfs-actions.pod:1886
8915 #, no-wrap
8916 msgid ""
8917 " const char *\n"
8918 " guestfs_get_append (guestfs_h *g);\n"
8919 "\n"
8920 msgstr ""
8921
8922 #. type: textblock
8923 #: ../src/guestfs-actions.pod:1889 ../fish/guestfish-actions.pod:1288
8924 msgid ""
8925 "Return the additional kernel options which are added to the guest kernel "
8926 "command line."
8927 msgstr ""
8928
8929 #. type: textblock
8930 #: ../src/guestfs-actions.pod:1892 ../fish/guestfish-actions.pod:1291
8931 msgid "If C<NULL> then no options are added."
8932 msgstr ""
8933
8934 #. type: textblock
8935 #: ../src/guestfs-actions.pod:1894
8936 msgid ""
8937 "This function returns a string which may be NULL.  There is no way to return "
8938 "an error from this function.  The string is owned by the guest handle and "
8939 "must I<not> be freed."
8940 msgstr ""
8941
8942 #. type: textblock
8943 #: ../src/guestfs-actions.pod:1898 ../src/guestfs-actions.pod:5496 ../src/guestfs-actions.pod:5978 ../src/guestfs-actions.pod:6401 ../src/guestfs-actions.pod:6420 ../src/guestfs-actions.pod:6436 ../src/guestfs-actions.pod:6460 ../src/guestfs-actions.pod:7217 ../src/guestfs-actions.pod:7235 ../src/guestfs-actions.pod:7597
8944 msgid "(Added in 1.0.26)"
8945 msgstr ""
8946
8947 #. type: =head2
8948 #: ../src/guestfs-actions.pod:1900
8949 msgid "guestfs_get_attach_method"
8950 msgstr ""
8951
8952 #. type: verbatim
8953 #: ../src/guestfs-actions.pod:1902
8954 #, no-wrap
8955 msgid ""
8956 " char *\n"
8957 " guestfs_get_attach_method (guestfs_h *g);\n"
8958 "\n"
8959 msgstr ""
8960
8961 #. type: textblock
8962 #: ../src/guestfs-actions.pod:1905
8963 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
8964 msgstr ""
8965
8966 #. type: textblock
8967 #: ../src/guestfs-actions.pod:1910 ../src/guestfs-actions.pod:6008
8968 msgid "(Added in 1.9.8)"
8969 msgstr ""
8970
8971 #. type: =head2
8972 #: ../src/guestfs-actions.pod:1912
8973 msgid "guestfs_get_autosync"
8974 msgstr ""
8975
8976 #. type: verbatim
8977 #: ../src/guestfs-actions.pod:1914
8978 #, no-wrap
8979 msgid ""
8980 " int\n"
8981 " guestfs_get_autosync (guestfs_h *g);\n"
8982 "\n"
8983 msgstr ""
8984
8985 #. type: textblock
8986 #: ../src/guestfs-actions.pod:1917 ../fish/guestfish-actions.pod:1303
8987 msgid "Get the autosync flag."
8988 msgstr ""
8989
8990 #. type: =head2
8991 #: ../src/guestfs-actions.pod:1923
8992 msgid "guestfs_get_direct"
8993 msgstr ""
8994
8995 #. type: verbatim
8996 #: ../src/guestfs-actions.pod:1925
8997 #, no-wrap
8998 msgid ""
8999 " int\n"
9000 " guestfs_get_direct (guestfs_h *g);\n"
9001 "\n"
9002 msgstr ""
9003
9004 #. type: textblock
9005 #: ../src/guestfs-actions.pod:1928 ../fish/guestfish-actions.pod:1309
9006 msgid "Return the direct appliance mode flag."
9007 msgstr ""
9008
9009 #. type: textblock
9010 #: ../src/guestfs-actions.pod:1932 ../src/guestfs-actions.pod:6049
9011 msgid "(Added in 1.0.72)"
9012 msgstr ""
9013
9014 #. type: =head2
9015 #: ../src/guestfs-actions.pod:1934
9016 msgid "guestfs_get_e2label"
9017 msgstr ""
9018
9019 #. type: verbatim
9020 #: ../src/guestfs-actions.pod:1936
9021 #, no-wrap
9022 msgid ""
9023 " char *\n"
9024 " guestfs_get_e2label (guestfs_h *g,\n"
9025 "                      const char *device);\n"
9026 "\n"
9027 msgstr ""
9028
9029 #. type: textblock
9030 #: ../src/guestfs-actions.pod:1940 ../fish/guestfish-actions.pod:1315
9031 msgid "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9032 msgstr ""
9033
9034 #. type: textblock
9035 #: ../src/guestfs-actions.pod:1946 ../fish/guestfish-actions.pod:1318
9036 msgid ""
9037 "This function is deprecated.  In new code, use the C<vfs_label> call "
9038 "instead."
9039 msgstr ""
9040
9041 #. type: textblock
9042 #: ../src/guestfs-actions.pod:1953 ../src/guestfs-actions.pod:1974 ../src/guestfs-actions.pod:6067 ../src/guestfs-actions.pod:6086
9043 msgid "(Added in 1.0.15)"
9044 msgstr ""
9045
9046 #. type: =head2
9047 #: ../src/guestfs-actions.pod:1955
9048 msgid "guestfs_get_e2uuid"
9049 msgstr ""
9050
9051 #. type: verbatim
9052 #: ../src/guestfs-actions.pod:1957
9053 #, no-wrap
9054 msgid ""
9055 " char *\n"
9056 " guestfs_get_e2uuid (guestfs_h *g,\n"
9057 "                     const char *device);\n"
9058 "\n"
9059 msgstr ""
9060
9061 #. type: textblock
9062 #: ../src/guestfs-actions.pod:1961 ../fish/guestfish-actions.pod:1329
9063 msgid "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9064 msgstr ""
9065
9066 #. type: textblock
9067 #: ../src/guestfs-actions.pod:1967 ../fish/guestfish-actions.pod:1332
9068 msgid "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9069 msgstr ""
9070
9071 #. type: =head2
9072 #: ../src/guestfs-actions.pod:1976
9073 msgid "guestfs_get_memsize"
9074 msgstr ""
9075
9076 #. type: verbatim
9077 #: ../src/guestfs-actions.pod:1978
9078 #, no-wrap
9079 msgid ""
9080 " int\n"
9081 " guestfs_get_memsize (guestfs_h *g);\n"
9082 "\n"
9083 msgstr ""
9084
9085 #. type: textblock
9086 #: ../src/guestfs-actions.pod:1981 ../fish/guestfish-actions.pod:1343
9087 msgid "This gets the memory size in megabytes allocated to the qemu subprocess."
9088 msgstr ""
9089
9090 #. type: textblock
9091 #: ../src/guestfs-actions.pod:1984
9092 msgid ""
9093 "If C<guestfs_set_memsize> was not called on this handle, and if "
9094 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
9095 "value for memsize."
9096 msgstr ""
9097
9098 #. type: textblock
9099 #: ../src/guestfs-actions.pod:1988 ../src/guestfs-actions.pod:2069 ../src/guestfs-actions.pod:6102 ../src/guestfs-actions.pod:6209 ../fish/guestfish-actions.pod:1350 ../fish/guestfish-actions.pod:1401 ../fish/guestfish-actions.pod:4053 ../fish/guestfish-actions.pod:4140
9100 msgid "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9101 msgstr ""
9102
9103 #. type: textblock
9104 #: ../src/guestfs-actions.pod:1993 ../src/guestfs-actions.pod:4497 ../src/guestfs-actions.pod:4706 ../src/guestfs-actions.pod:4725 ../src/guestfs-actions.pod:4744 ../src/guestfs-actions.pod:4756 ../src/guestfs-actions.pod:4773 ../src/guestfs-actions.pod:4786 ../src/guestfs-actions.pod:5721 ../src/guestfs-actions.pod:6107 ../src/guestfs-actions.pod:6368 ../src/guestfs-actions.pod:6983
9105 msgid "(Added in 1.0.55)"
9106 msgstr ""
9107
9108 #. type: =head2
9109 #: ../src/guestfs-actions.pod:1995
9110 msgid "guestfs_get_network"
9111 msgstr ""
9112
9113 #. type: verbatim
9114 #: ../src/guestfs-actions.pod:1997
9115 #, no-wrap
9116 msgid ""
9117 " int\n"
9118 " guestfs_get_network (guestfs_h *g);\n"
9119 "\n"
9120 msgstr ""
9121
9122 #. type: textblock
9123 #: ../src/guestfs-actions.pod:2000 ../fish/guestfish-actions.pod:1357
9124 msgid "This returns the enable network flag."
9125 msgstr ""
9126
9127 #. type: textblock
9128 #: ../src/guestfs-actions.pod:2004 ../src/guestfs-actions.pod:6126
9129 msgid "(Added in 1.5.4)"
9130 msgstr ""
9131
9132 #. type: =head2
9133 #: ../src/guestfs-actions.pod:2006
9134 msgid "guestfs_get_path"
9135 msgstr ""
9136
9137 #. type: verbatim
9138 #: ../src/guestfs-actions.pod:2008
9139 #, no-wrap
9140 msgid ""
9141 " const char *\n"
9142 " guestfs_get_path (guestfs_h *g);\n"
9143 "\n"
9144 msgstr ""
9145
9146 #. type: textblock
9147 #: ../src/guestfs-actions.pod:2011 ../fish/guestfish-actions.pod:1363
9148 msgid "Return the current search path."
9149 msgstr ""
9150
9151 #. type: textblock
9152 #: ../src/guestfs-actions.pod:2013 ../fish/guestfish-actions.pod:1365
9153 msgid ""
9154 "This is always non-NULL.  If it wasn't set already, then this will return "
9155 "the default path."
9156 msgstr ""
9157
9158 #. type: textblock
9159 #: ../src/guestfs-actions.pod:2016 ../src/guestfs-actions.pod:2045
9160 msgid ""
9161 "This function returns a string, or NULL on error.  The string is owned by "
9162 "the guest handle and must I<not> be freed."
9163 msgstr ""
9164
9165 #. type: =head2
9166 #: ../src/guestfs-actions.pod:2021
9167 msgid "guestfs_get_pid"
9168 msgstr ""
9169
9170 #. type: verbatim
9171 #: ../src/guestfs-actions.pod:2023
9172 #, no-wrap
9173 msgid ""
9174 " int\n"
9175 " guestfs_get_pid (guestfs_h *g);\n"
9176 "\n"
9177 msgstr ""
9178
9179 #. type: textblock
9180 #: ../src/guestfs-actions.pod:2026 ../fish/guestfish-actions.pod:1374
9181 msgid ""
9182 "Return the process ID of the qemu subprocess.  If there is no qemu "
9183 "subprocess, then this will return an error."
9184 msgstr ""
9185
9186 #. type: textblock
9187 #: ../src/guestfs-actions.pod:2029 ../fish/guestfish-actions.pod:1377
9188 msgid "This is an internal call used for debugging and testing."
9189 msgstr ""
9190
9191 #. type: textblock
9192 #: ../src/guestfs-actions.pod:2033
9193 msgid "(Added in 1.0.56)"
9194 msgstr ""
9195
9196 #. type: =head2
9197 #: ../src/guestfs-actions.pod:2035
9198 msgid "guestfs_get_qemu"
9199 msgstr ""
9200
9201 #. type: verbatim
9202 #: ../src/guestfs-actions.pod:2037
9203 #, no-wrap
9204 msgid ""
9205 " const char *\n"
9206 " guestfs_get_qemu (guestfs_h *g);\n"
9207 "\n"
9208 msgstr ""
9209
9210 #. type: textblock
9211 #: ../src/guestfs-actions.pod:2040 ../fish/guestfish-actions.pod:1383
9212 msgid "Return the current qemu binary."
9213 msgstr ""
9214
9215 #. type: textblock
9216 #: ../src/guestfs-actions.pod:2042 ../fish/guestfish-actions.pod:1385
9217 msgid ""
9218 "This is always non-NULL.  If it wasn't set already, then this will return "
9219 "the default qemu binary name."
9220 msgstr ""
9221
9222 #. type: textblock
9223 #: ../src/guestfs-actions.pod:2048 ../src/guestfs-actions.pod:6171
9224 msgid "(Added in 1.0.6)"
9225 msgstr ""
9226
9227 #. type: =head2
9228 #: ../src/guestfs-actions.pod:2050
9229 msgid "guestfs_get_recovery_proc"
9230 msgstr ""
9231
9232 #. type: verbatim
9233 #: ../src/guestfs-actions.pod:2052
9234 #, no-wrap
9235 msgid ""
9236 " int\n"
9237 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9238 "\n"
9239 msgstr ""
9240
9241 #. type: textblock
9242 #: ../src/guestfs-actions.pod:2055 ../fish/guestfish-actions.pod:1392
9243 msgid "Return the recovery process enabled flag."
9244 msgstr ""
9245
9246 #. type: textblock
9247 #: ../src/guestfs-actions.pod:2059 ../src/guestfs-actions.pod:3593 ../src/guestfs-actions.pod:3904 ../src/guestfs-actions.pod:4304 ../src/guestfs-actions.pod:4336 ../src/guestfs-actions.pod:5426 ../src/guestfs-actions.pod:5769 ../src/guestfs-actions.pod:6195 ../src/guestfs-actions.pod:6886 ../src/guestfs-actions.pod:6906 ../src/guestfs-actions.pod:7098
9248 msgid "(Added in 1.0.77)"
9249 msgstr ""
9250
9251 #. type: =head2
9252 #: ../src/guestfs-actions.pod:2061
9253 msgid "guestfs_get_selinux"
9254 msgstr ""
9255
9256 #. type: verbatim
9257 #: ../src/guestfs-actions.pod:2063
9258 #, no-wrap
9259 msgid ""
9260 " int\n"
9261 " guestfs_get_selinux (guestfs_h *g);\n"
9262 "\n"
9263 msgstr ""
9264
9265 #. type: textblock
9266 #: ../src/guestfs-actions.pod:2066
9267 msgid ""
9268 "This returns the current setting of the selinux flag which is passed to the "
9269 "appliance at boot time.  See C<guestfs_set_selinux>."
9270 msgstr ""
9271
9272 #. type: textblock
9273 #: ../src/guestfs-actions.pod:2074 ../src/guestfs-actions.pod:2137 ../src/guestfs-actions.pod:6214 ../src/guestfs-actions.pod:6272
9274 msgid "(Added in 1.0.67)"
9275 msgstr ""
9276
9277 #. type: =head2
9278 #: ../src/guestfs-actions.pod:2076
9279 msgid "guestfs_get_state"
9280 msgstr ""
9281
9282 #. type: verbatim
9283 #: ../src/guestfs-actions.pod:2078
9284 #, no-wrap
9285 msgid ""
9286 " int\n"
9287 " guestfs_get_state (guestfs_h *g);\n"
9288 "\n"
9289 msgstr ""
9290
9291 #. type: textblock
9292 #: ../src/guestfs-actions.pod:2081 ../fish/guestfish-actions.pod:1408
9293 msgid ""
9294 "This returns the current state as an opaque integer.  This is only useful "
9295 "for printing debug and internal error messages."
9296 msgstr ""
9297
9298 #. type: textblock
9299 #: ../src/guestfs-actions.pod:2084 ../src/guestfs-actions.pod:3364 ../src/guestfs-actions.pod:3393 ../src/guestfs-actions.pod:3454 ../src/guestfs-actions.pod:3481 ../fish/guestfish-actions.pod:1411 ../fish/guestfish-actions.pod:2331 ../fish/guestfish-actions.pod:2349 ../fish/guestfish-actions.pod:2387 ../fish/guestfish-actions.pod:2403
9300 msgid "For more information on states, see L<guestfs(3)>."
9301 msgstr ""
9302
9303 #. type: =head2
9304 #: ../src/guestfs-actions.pod:2090
9305 msgid "guestfs_get_trace"
9306 msgstr ""
9307
9308 #. type: verbatim
9309 #: ../src/guestfs-actions.pod:2092
9310 #, no-wrap
9311 msgid ""
9312 " int\n"
9313 " guestfs_get_trace (guestfs_h *g);\n"
9314 "\n"
9315 msgstr ""
9316
9317 #. type: textblock
9318 #: ../src/guestfs-actions.pod:2095 ../fish/guestfish-actions.pod:1417
9319 msgid "Return the command trace flag."
9320 msgstr ""
9321
9322 #. type: =head2
9323 #: ../src/guestfs-actions.pod:2101
9324 msgid "guestfs_get_umask"
9325 msgstr ""
9326
9327 #. type: verbatim
9328 #: ../src/guestfs-actions.pod:2103
9329 #, no-wrap
9330 msgid ""
9331 " int\n"
9332 " guestfs_get_umask (guestfs_h *g);\n"
9333 "\n"
9334 msgstr ""
9335
9336 #. type: textblock
9337 #: ../src/guestfs-actions.pod:2106
9338 msgid ""
9339 "Return the current umask.  By default the umask is C<022> unless it has been "
9340 "set by calling C<guestfs_umask>."
9341 msgstr ""
9342
9343 #. type: =head2
9344 #: ../src/guestfs-actions.pod:2113
9345 msgid "guestfs_get_verbose"
9346 msgstr ""
9347
9348 #. type: verbatim
9349 #: ../src/guestfs-actions.pod:2115
9350 #, no-wrap
9351 msgid ""
9352 " int\n"
9353 " guestfs_get_verbose (guestfs_h *g);\n"
9354 "\n"
9355 msgstr ""
9356
9357 #. type: textblock
9358 #: ../src/guestfs-actions.pod:2118 ../fish/guestfish-actions.pod:1430
9359 msgid "This returns the verbose messages flag."
9360 msgstr ""
9361
9362 #. type: =head2
9363 #: ../src/guestfs-actions.pod:2124
9364 msgid "guestfs_getcon"
9365 msgstr ""
9366
9367 #. type: verbatim
9368 #: ../src/guestfs-actions.pod:2126
9369 #, no-wrap
9370 msgid ""
9371 " char *\n"
9372 " guestfs_getcon (guestfs_h *g);\n"
9373 "\n"
9374 msgstr ""
9375
9376 #. type: textblock
9377 #: ../src/guestfs-actions.pod:2129 ../fish/guestfish-actions.pod:1436
9378 msgid "This gets the SELinux security context of the daemon."
9379 msgstr ""
9380
9381 #. type: textblock
9382 #: ../src/guestfs-actions.pod:2131
9383 msgid "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
9384 msgstr ""
9385
9386 #. type: =head2
9387 #: ../src/guestfs-actions.pod:2139
9388 msgid "guestfs_getxattr"
9389 msgstr ""
9390
9391 #. type: verbatim
9392 #: ../src/guestfs-actions.pod:2141
9393 #, no-wrap
9394 msgid ""
9395 " char *\n"
9396 " guestfs_getxattr (guestfs_h *g,\n"
9397 "                   const char *path,\n"
9398 "                   const char *name,\n"
9399 "                   size_t *size_r);\n"
9400 "\n"
9401 msgstr ""
9402
9403 #. type: textblock
9404 #: ../src/guestfs-actions.pod:2147
9405 msgid ""
9406 "Get a single extended attribute from file C<path> named C<name>.  This call "
9407 "follows symlinks.  If you want to lookup an extended attribute for the "
9408 "symlink itself, use C<guestfs_lgetxattr>."
9409 msgstr ""
9410
9411 #. type: textblock
9412 #: ../src/guestfs-actions.pod:2151 ../src/guestfs-actions.pod:3607
9413 msgid ""
9414 "Normally it is better to get all extended attributes from a file in one go "
9415 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
9416 "implementations are buggy and do not provide a way to list out attributes.  "
9417 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
9418 "extended attributes you want in advance and call this function."
9419 msgstr ""
9420
9421 #. type: textblock
9422 #: ../src/guestfs-actions.pod:2158 ../src/guestfs-actions.pod:3614 ../fish/guestfish-actions.pod:1456 ../fish/guestfish-actions.pod:2483
9423 msgid ""
9424 "Extended attribute values are blobs of binary data.  If there is no extended "
9425 "attribute named C<name>, this returns an error."
9426 msgstr ""
9427
9428 #. type: textblock
9429 #: ../src/guestfs-actions.pod:2161
9430 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
9431 msgstr ""
9432
9433 #. type: textblock
9434 #: ../src/guestfs-actions.pod:2163 ../src/guestfs-actions.pod:2354 ../src/guestfs-actions.pod:2824 ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:5419 ../src/guestfs-actions.pod:5445 ../src/guestfs-actions.pod:5626
9435 msgid ""
9436 "This function returns a buffer, or NULL on error.  The size of the returned "
9437 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer "
9438 "after use>."
9439 msgstr ""
9440
9441 #. type: textblock
9442 #: ../src/guestfs-actions.pod:2167 ../src/guestfs-actions.pod:3623
9443 msgid "(Added in 1.7.24)"
9444 msgstr ""
9445
9446 #. type: =head2
9447 #: ../src/guestfs-actions.pod:2169
9448 msgid "guestfs_getxattrs"
9449 msgstr ""
9450
9451 #. type: verbatim
9452 #: ../src/guestfs-actions.pod:2171
9453 #, no-wrap
9454 msgid ""
9455 " struct guestfs_xattr_list *\n"
9456 " guestfs_getxattrs (guestfs_h *g,\n"
9457 "                    const char *path);\n"
9458 "\n"
9459 msgstr ""
9460
9461 #. type: textblock
9462 #: ../src/guestfs-actions.pod:2175 ../fish/guestfish-actions.pod:1465
9463 msgid "This call lists the extended attributes of the file or directory C<path>."
9464 msgstr ""
9465
9466 #. type: textblock
9467 #: ../src/guestfs-actions.pod:2178 ../fish/guestfish-actions.pod:1468
9468 msgid ""
9469 "At the system call level, this is a combination of the L<listxattr(2)> and "
9470 "L<getxattr(2)> calls."
9471 msgstr ""
9472
9473 #. type: textblock
9474 #: ../src/guestfs-actions.pod:2181
9475 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
9476 msgstr ""
9477
9478 #. type: textblock
9479 #: ../src/guestfs-actions.pod:2183 ../src/guestfs-actions.pod:3635 ../src/guestfs-actions.pod:4300
9480 msgid ""
9481 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was "
9482 "an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
9483 msgstr ""
9484
9485 #. type: textblock
9486 #: ../src/guestfs-actions.pod:2187 ../src/guestfs-actions.pod:3639 ../src/guestfs-actions.pod:3818 ../src/guestfs-actions.pod:3854 ../src/guestfs-actions.pod:5799 ../src/guestfs-actions.pod:6291 ../src/guestfs-actions.pod:7662
9487 msgid "(Added in 1.0.59)"
9488 msgstr ""
9489
9490 #. type: =head2
9491 #: ../src/guestfs-actions.pod:2189
9492 msgid "guestfs_glob_expand"
9493 msgstr ""
9494
9495 #. type: verbatim
9496 #: ../src/guestfs-actions.pod:2191
9497 #, no-wrap
9498 msgid ""
9499 " char **\n"
9500 " guestfs_glob_expand (guestfs_h *g,\n"
9501 "                      const char *pattern);\n"
9502 "\n"
9503 msgstr ""
9504
9505 #. type: textblock
9506 #: ../src/guestfs-actions.pod:2195 ../fish/guestfish-actions.pod:1477
9507 msgid ""
9508 "This command searches for all the pathnames matching C<pattern> according to "
9509 "the wildcard expansion rules used by the shell."
9510 msgstr ""
9511
9512 #. type: textblock
9513 #: ../src/guestfs-actions.pod:2199 ../fish/guestfish-actions.pod:1481
9514 msgid "If no paths match, then this returns an empty list (note: not an error)."
9515 msgstr ""
9516
9517 #. type: textblock
9518 #: ../src/guestfs-actions.pod:2202 ../fish/guestfish-actions.pod:1484
9519 msgid ""
9520 "It is just a wrapper around the C L<glob(3)> function with flags "
9521 "C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
9522 msgstr ""
9523
9524 #. type: textblock
9525 #: ../src/guestfs-actions.pod:2210 ../src/guestfs-actions.pod:6484 ../src/guestfs-actions.pod:6501
9526 msgid "(Added in 1.0.50)"
9527 msgstr ""
9528
9529 #. type: =head2
9530 #: ../src/guestfs-actions.pod:2212
9531 msgid "guestfs_grep"
9532 msgstr ""
9533
9534 #. type: verbatim
9535 #: ../src/guestfs-actions.pod:2214
9536 #, no-wrap
9537 msgid ""
9538 " char **\n"
9539 " guestfs_grep (guestfs_h *g,\n"
9540 "               const char *regex,\n"
9541 "               const char *path);\n"
9542 "\n"
9543 msgstr ""
9544
9545 #. type: textblock
9546 #: ../src/guestfs-actions.pod:2219 ../fish/guestfish-actions.pod:1492
9547 msgid "This calls the external C<grep> program and returns the matching lines."
9548 msgstr ""
9549
9550 #. type: =head2
9551 #: ../src/guestfs-actions.pod:2231
9552 msgid "guestfs_grepi"
9553 msgstr ""
9554
9555 #. type: verbatim
9556 #: ../src/guestfs-actions.pod:2233
9557 #, no-wrap
9558 msgid ""
9559 " char **\n"
9560 " guestfs_grepi (guestfs_h *g,\n"
9561 "                const char *regex,\n"
9562 "                const char *path);\n"
9563 "\n"
9564 msgstr ""
9565
9566 #. type: textblock
9567 #: ../src/guestfs-actions.pod:2238 ../fish/guestfish-actions.pod:1502
9568 msgid "This calls the external C<grep -i> program and returns the matching lines."
9569 msgstr ""
9570
9571 #. type: =head2
9572 #: ../src/guestfs-actions.pod:2250
9573 msgid "guestfs_grub_install"
9574 msgstr ""
9575
9576 #. type: verbatim
9577 #: ../src/guestfs-actions.pod:2252
9578 #, no-wrap
9579 msgid ""
9580 " int\n"
9581 " guestfs_grub_install (guestfs_h *g,\n"
9582 "                       const char *root,\n"
9583 "                       const char *device);\n"
9584 "\n"
9585 msgstr ""
9586
9587 #. type: textblock
9588 #: ../src/guestfs-actions.pod:2257 ../fish/guestfish-actions.pod:1512
9589 msgid ""
9590 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with "
9591 "the root directory being C<root>."
9592 msgstr ""
9593
9594 #. type: textblock
9595 #: ../src/guestfs-actions.pod:2260 ../fish/guestfish-actions.pod:1515
9596 msgid ""
9597 "Note: If grub-install reports the error \"No suitable drive was found in the "
9598 "generated device map.\" it may be that you need to create a "
9599 "C</boot/grub/device.map> file first that contains the mapping between grub "
9600 "device names and Linux device names.  It is usually sufficient to create a "
9601 "file containing:"
9602 msgstr ""
9603
9604 #. type: verbatim
9605 #: ../src/guestfs-actions.pod:2267 ../fish/guestfish-actions.pod:1522
9606 #, no-wrap
9607 msgid ""
9608 " (hd0) /dev/vda\n"
9609 "\n"
9610 msgstr ""
9611
9612 #. type: textblock
9613 #: ../src/guestfs-actions.pod:2269 ../fish/guestfish-actions.pod:1524
9614 msgid "replacing C</dev/vda> with the name of the installation device."
9615 msgstr ""
9616
9617 #. type: textblock
9618 #: ../src/guestfs-actions.pod:2273
9619 msgid "(Added in 1.0.17)"
9620 msgstr ""
9621
9622 #. type: =head2
9623 #: ../src/guestfs-actions.pod:2275
9624 msgid "guestfs_head"
9625 msgstr ""
9626
9627 #. type: verbatim
9628 #: ../src/guestfs-actions.pod:2277
9629 #, no-wrap
9630 msgid ""
9631 " char **\n"
9632 " guestfs_head (guestfs_h *g,\n"
9633 "               const char *path);\n"
9634 "\n"
9635 msgstr ""
9636
9637 #. type: textblock
9638 #: ../src/guestfs-actions.pod:2281 ../fish/guestfish-actions.pod:1530
9639 msgid ""
9640 "This command returns up to the first 10 lines of a file as a list of "
9641 "strings."
9642 msgstr ""
9643
9644 #. type: =head2
9645 #: ../src/guestfs-actions.pod:2293
9646 msgid "guestfs_head_n"
9647 msgstr ""
9648
9649 #. type: verbatim
9650 #: ../src/guestfs-actions.pod:2295
9651 #, no-wrap
9652 msgid ""
9653 " char **\n"
9654 " guestfs_head_n (guestfs_h *g,\n"
9655 "                 int nrlines,\n"
9656 "                 const char *path);\n"
9657 "\n"
9658 msgstr ""
9659
9660 #. type: textblock
9661 #: ../src/guestfs-actions.pod:2300 ../fish/guestfish-actions.pod:1540
9662 msgid ""
9663 "If the parameter C<nrlines> is a positive number, this returns the first "
9664 "C<nrlines> lines of the file C<path>."
9665 msgstr ""
9666
9667 #. type: textblock
9668 #: ../src/guestfs-actions.pod:2303 ../fish/guestfish-actions.pod:1543
9669 msgid ""
9670 "If the parameter C<nrlines> is a negative number, this returns lines from "
9671 "the file C<path>, excluding the last C<nrlines> lines."
9672 msgstr ""
9673
9674 #. type: textblock
9675 #: ../src/guestfs-actions.pod:2306 ../src/guestfs-actions.pod:6781 ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:4518
9676 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
9677 msgstr ""
9678
9679 #. type: =head2
9680 #: ../src/guestfs-actions.pod:2317
9681 msgid "guestfs_hexdump"
9682 msgstr ""
9683
9684 #. type: verbatim
9685 #: ../src/guestfs-actions.pod:2319
9686 #, no-wrap
9687 msgid ""
9688 " char *\n"
9689 " guestfs_hexdump (guestfs_h *g,\n"
9690 "                  const char *path);\n"
9691 "\n"
9692 msgstr ""
9693
9694 #. type: textblock
9695 #: ../src/guestfs-actions.pod:2323 ../fish/guestfish-actions.pod:1555
9696 msgid ""
9697 "This runs C<hexdump -C> on the given C<path>.  The result is the "
9698 "human-readable, canonical hex dump of the file."
9699 msgstr ""
9700
9701 #. type: textblock
9702 #: ../src/guestfs-actions.pod:2332 ../src/guestfs-actions.pod:6565 ../src/guestfs-actions.pod:6620
9703 msgid "(Added in 1.0.22)"
9704 msgstr ""
9705
9706 #. type: =head2
9707 #: ../src/guestfs-actions.pod:2334
9708 msgid "guestfs_initrd_cat"
9709 msgstr ""
9710
9711 #. type: verbatim
9712 #: ../src/guestfs-actions.pod:2336
9713 #, no-wrap
9714 msgid ""
9715 " char *\n"
9716 " guestfs_initrd_cat (guestfs_h *g,\n"
9717 "                     const char *initrdpath,\n"
9718 "                     const char *filename,\n"
9719 "                     size_t *size_r);\n"
9720 "\n"
9721 msgstr ""
9722
9723 #. type: textblock
9724 #: ../src/guestfs-actions.pod:2342 ../fish/guestfish-actions.pod:1565
9725 msgid ""
9726 "This command unpacks the file C<filename> from the initrd file called "
9727 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
9728 "character."
9729 msgstr ""
9730
9731 #. type: textblock
9732 #: ../src/guestfs-actions.pod:2346 ../fish/guestfish-actions.pod:1569
9733 msgid ""
9734 "For example, in guestfish you could use the following command to examine the "
9735 "boot script (usually called C</init>)  contained in a Linux initrd or "
9736 "initramfs image:"
9737 msgstr ""
9738
9739 #. type: verbatim
9740 #: ../src/guestfs-actions.pod:2350 ../fish/guestfish-actions.pod:1573
9741 #, no-wrap
9742 msgid ""
9743 " initrd-cat /boot/initrd-<version>.img init\n"
9744 "\n"
9745 msgstr ""
9746
9747 #. type: textblock
9748 #: ../src/guestfs-actions.pod:2352
9749 msgid "See also C<guestfs_initrd_list>."
9750 msgstr ""
9751
9752 #. type: =head2
9753 #: ../src/guestfs-actions.pod:2363
9754 msgid "guestfs_initrd_list"
9755 msgstr ""
9756
9757 #. type: verbatim
9758 #: ../src/guestfs-actions.pod:2365
9759 #, no-wrap
9760 msgid ""
9761 " char **\n"
9762 " guestfs_initrd_list (guestfs_h *g,\n"
9763 "                      const char *path);\n"
9764 "\n"
9765 msgstr ""
9766
9767 #. type: textblock
9768 #: ../src/guestfs-actions.pod:2369 ../fish/guestfish-actions.pod:1584
9769 msgid "This command lists out files contained in an initrd."
9770 msgstr ""
9771
9772 #. type: textblock
9773 #: ../src/guestfs-actions.pod:2371 ../fish/guestfish-actions.pod:1586
9774 msgid ""
9775 "The files are listed without any initial C</> character.  The files are "
9776 "listed in the order they appear (not necessarily alphabetical).  Directory "
9777 "names are listed as separate items."
9778 msgstr ""
9779
9780 #. type: textblock
9781 #: ../src/guestfs-actions.pod:2375 ../fish/guestfish-actions.pod:1590
9782 msgid ""
9783 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
9784 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
9785 "files)."
9786 msgstr ""
9787
9788 #. type: =head2
9789 #: ../src/guestfs-actions.pod:2385
9790 msgid "guestfs_inotify_add_watch"
9791 msgstr ""
9792
9793 #. type: verbatim
9794 #: ../src/guestfs-actions.pod:2387
9795 #, no-wrap
9796 msgid ""
9797 " int64_t\n"
9798 " guestfs_inotify_add_watch (guestfs_h *g,\n"
9799 "                            const char *path,\n"
9800 "                            int mask);\n"
9801 "\n"
9802 msgstr ""
9803
9804 #. type: textblock
9805 #: ../src/guestfs-actions.pod:2392 ../fish/guestfish-actions.pod:1598
9806 msgid "Watch C<path> for the events listed in C<mask>."
9807 msgstr ""
9808
9809 #. type: textblock
9810 #: ../src/guestfs-actions.pod:2394 ../fish/guestfish-actions.pod:1600
9811 msgid ""
9812 "Note that if C<path> is a directory then events within that directory are "
9813 "watched, but this does I<not> happen recursively (in subdirectories)."
9814 msgstr ""
9815
9816 #. type: textblock
9817 #: ../src/guestfs-actions.pod:2398 ../fish/guestfish-actions.pod:1604
9818 msgid ""
9819 "Note for non-C or non-Linux callers: the inotify events are defined by the "
9820 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
9821 msgstr ""
9822
9823 #. type: =head2
9824 #: ../src/guestfs-actions.pod:2406
9825 msgid "guestfs_inotify_close"
9826 msgstr ""
9827
9828 #. type: verbatim
9829 #: ../src/guestfs-actions.pod:2408
9830 #, no-wrap
9831 msgid ""
9832 " int\n"
9833 " guestfs_inotify_close (guestfs_h *g);\n"
9834 "\n"
9835 msgstr ""
9836
9837 #. type: textblock
9838 #: ../src/guestfs-actions.pod:2411 ../fish/guestfish-actions.pod:1612
9839 msgid ""
9840 "This closes the inotify handle which was previously opened by inotify_init.  "
9841 "It removes all watches, throws away any pending events, and deallocates all "
9842 "resources."
9843 msgstr ""
9844
9845 #. type: =head2
9846 #: ../src/guestfs-actions.pod:2419
9847 msgid "guestfs_inotify_files"
9848 msgstr ""
9849
9850 #. type: verbatim
9851 #: ../src/guestfs-actions.pod:2421
9852 #, no-wrap
9853 msgid ""
9854 " char **\n"
9855 " guestfs_inotify_files (guestfs_h *g);\n"
9856 "\n"
9857 msgstr ""
9858
9859 #. type: textblock
9860 #: ../src/guestfs-actions.pod:2424
9861 msgid ""
9862 "This function is a helpful wrapper around C<guestfs_inotify_read> which just "
9863 "returns a list of pathnames of objects that were touched.  The returned "
9864 "pathnames are sorted and deduplicated."
9865 msgstr ""
9866
9867 #. type: =head2
9868 #: ../src/guestfs-actions.pod:2434
9869 msgid "guestfs_inotify_init"
9870 msgstr ""
9871
9872 #. type: verbatim
9873 #: ../src/guestfs-actions.pod:2436
9874 #, no-wrap
9875 msgid ""
9876 " int\n"
9877 " guestfs_inotify_init (guestfs_h *g,\n"
9878 "                       int maxevents);\n"
9879 "\n"
9880 msgstr ""
9881
9882 #. type: textblock
9883 #: ../src/guestfs-actions.pod:2440 ../fish/guestfish-actions.pod:1628
9884 msgid ""
9885 "This command creates a new inotify handle.  The inotify subsystem can be "
9886 "used to notify events which happen to objects in the guest filesystem."
9887 msgstr ""
9888
9889 #. type: textblock
9890 #: ../src/guestfs-actions.pod:2444
9891 msgid ""
9892 "C<maxevents> is the maximum number of events which will be queued up between "
9893 "calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
9894 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
9895 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
9896 "throws away events, but records the fact that it threw them away by setting "
9897 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
9898 "C<guestfs_inotify_read>)."
9899 msgstr ""
9900
9901 #. type: textblock
9902 #: ../src/guestfs-actions.pod:2454
9903 msgid ""
9904 "Before any events are generated, you have to add some watches to the "
9905 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
9906 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
9907 msgstr ""
9908
9909 #. type: textblock
9910 #: ../src/guestfs-actions.pod:2460
9911 msgid ""
9912 "Queued up events should be read periodically by calling "
9913 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful "
9914 "wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
9915 "often enough then you risk the internal queue overflowing."
9916 msgstr ""
9917
9918 #. type: textblock
9919 #: ../src/guestfs-actions.pod:2467
9920 msgid ""
9921 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
9922 "This also removes any watches automatically."
9923 msgstr ""
9924
9925 #. type: textblock
9926 #: ../src/guestfs-actions.pod:2471 ../fish/guestfish-actions.pod:1659
9927 msgid ""
9928 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
9929 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
9930 "that there is one global inotify handle per libguestfs instance."
9931 msgstr ""
9932
9933 #. type: =head2
9934 #: ../src/guestfs-actions.pod:2480
9935 msgid "guestfs_inotify_read"
9936 msgstr ""
9937
9938 #. type: verbatim
9939 #: ../src/guestfs-actions.pod:2482
9940 #, no-wrap
9941 msgid ""
9942 " struct guestfs_inotify_event_list *\n"
9943 " guestfs_inotify_read (guestfs_h *g);\n"
9944 "\n"
9945 msgstr ""
9946
9947 #. type: textblock
9948 #: ../src/guestfs-actions.pod:2485 ../fish/guestfish-actions.pod:1668
9949 msgid ""
9950 "Return the complete queue of events that have happened since the previous "
9951 "read call."
9952 msgstr ""
9953
9954 #. type: textblock
9955 #: ../src/guestfs-actions.pod:2488 ../fish/guestfish-actions.pod:1671
9956 msgid "If no events have happened, this returns an empty list."
9957 msgstr ""
9958
9959 #. type: textblock
9960 #: ../src/guestfs-actions.pod:2490 ../fish/guestfish-actions.pod:1673
9961 msgid ""
9962 "I<Note>: In order to make sure that all events have been read, you must call "
9963 "this function repeatedly until it returns an empty list.  The reason is that "
9964 "the call will read events up to the maximum appliance-to-host message size "
9965 "and leave remaining events in the queue."
9966 msgstr ""
9967
9968 #. type: textblock
9969 #: ../src/guestfs-actions.pod:2496
9970 msgid ""
9971 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
9972 "there was an error.  I<The caller must call "
9973 "C<guestfs_free_inotify_event_list> after use>."
9974 msgstr ""
9975
9976 #. type: =head2
9977 #: ../src/guestfs-actions.pod:2502
9978 msgid "guestfs_inotify_rm_watch"
9979 msgstr ""
9980
9981 #. type: verbatim
9982 #: ../src/guestfs-actions.pod:2504
9983 #, no-wrap
9984 msgid ""
9985 " int\n"
9986 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
9987 "                           int wd);\n"
9988 "\n"
9989 msgstr ""
9990
9991 #. type: textblock
9992 #: ../src/guestfs-actions.pod:2508
9993 msgid ""
9994 "Remove a previously defined inotify watch.  See "
9995 "C<guestfs_inotify_add_watch>."
9996 msgstr ""
9997
9998 #. type: =head2
9999 #: ../src/guestfs-actions.pod:2515
10000 msgid "guestfs_inspect_get_arch"
10001 msgstr ""
10002
10003 #. type: verbatim
10004 #: ../src/guestfs-actions.pod:2517
10005 #, no-wrap
10006 msgid ""
10007 " char *\n"
10008 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10009 "                           const char *root);\n"
10010 "\n"
10011 msgstr ""
10012
10013 #. type: textblock
10014 #: ../src/guestfs-actions.pod:2521
10015 msgid ""
10016 "This returns the architecture of the inspected operating system.  The "
10017 "possible return values are listed under C<guestfs_file_architecture>."
10018 msgstr ""
10019
10020 #. type: textblock
10021 #: ../src/guestfs-actions.pod:2525 ../fish/guestfish-actions.pod:1694
10022 msgid ""
10023 "If the architecture could not be determined, then the string C<unknown> is "
10024 "returned."
10025 msgstr ""
10026
10027 #. type: textblock
10028 #: ../src/guestfs-actions.pod:2528 ../src/guestfs-actions.pod:2618 ../src/guestfs-actions.pod:2722 ../src/guestfs-actions.pod:2741 ../src/guestfs-actions.pod:2872 ../src/guestfs-actions.pod:2955 ../src/guestfs-actions.pod:2983 ../src/guestfs-actions.pod:3004 ../src/guestfs-actions.pod:3057 ../src/guestfs-actions.pod:3097 ../src/guestfs-actions.pod:3117 ../src/guestfs-actions.pod:3137 ../src/guestfs-actions.pod:3154 ../src/guestfs-actions.pod:3170 ../src/guestfs-actions.pod:3188 ../src/guestfs-actions.pod:3290 ../src/guestfs-actions.pod:3331 ../fish/guestfish-actions.pod:1697 ../fish/guestfish-actions.pod:1780 ../fish/guestfish-actions.pod:1859 ../fish/guestfish-actions.pod:1871 ../fish/guestfish-actions.pod:1955 ../fish/guestfish-actions.pod:2016 ../fish/guestfish-actions.pod:2037 ../fish/guestfish-actions.pod:2051 ../fish/guestfish-actions.pod:2091 ../fish/guestfish-actions.pod:2123 ../fish/guestfish-actions.pod:2136 ../fish/guestfish-actions.pod:2149 ../fish/guestfish-actions.pod:2159 ../fish/guestfish-actions.pod:2169 ../fish/guestfish-actions.pod:2181 ../fish/guestfish-actions.pod:2277 ../fish/guestfish-actions.pod:2311
10029 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10030 msgstr ""
10031
10032 #. type: =head2
10033 #: ../src/guestfs-actions.pod:2535
10034 msgid "guestfs_inspect_get_distro"
10035 msgstr ""
10036
10037 #. type: verbatim
10038 #: ../src/guestfs-actions.pod:2537
10039 #, no-wrap
10040 msgid ""
10041 " char *\n"
10042 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10043 "                             const char *root);\n"
10044 "\n"
10045 msgstr ""
10046
10047 #. type: textblock
10048 #: ../src/guestfs-actions.pod:2541 ../fish/guestfish-actions.pod:1703
10049 msgid "This returns the distro (distribution) of the inspected operating system."
10050 msgstr ""
10051
10052 #. type: textblock
10053 #: ../src/guestfs-actions.pod:2544 ../fish/guestfish-actions.pod:1706
10054 msgid "Currently defined distros are:"
10055 msgstr ""
10056
10057 #. type: =item
10058 #: ../src/guestfs-actions.pod:2548 ../fish/guestfish-actions.pod:1710
10059 msgid "\"archlinux\""
10060 msgstr ""
10061
10062 #. type: textblock
10063 #: ../src/guestfs-actions.pod:2550 ../fish/guestfish-actions.pod:1712
10064 msgid "Arch Linux."
10065 msgstr ""
10066
10067 #. type: =item
10068 #: ../src/guestfs-actions.pod:2552 ../fish/guestfish-actions.pod:1714
10069 msgid "\"centos\""
10070 msgstr ""
10071
10072 #. type: textblock
10073 #: ../src/guestfs-actions.pod:2554 ../fish/guestfish-actions.pod:1716
10074 msgid "CentOS."
10075 msgstr ""
10076
10077 #. type: =item
10078 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1718
10079 msgid "\"debian\""
10080 msgstr ""
10081
10082 #. type: textblock
10083 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1720
10084 msgid "Debian."
10085 msgstr ""
10086
10087 #. type: =item
10088 #: ../src/guestfs-actions.pod:2560 ../fish/guestfish-actions.pod:1722
10089 msgid "\"fedora\""
10090 msgstr ""
10091
10092 #. type: textblock
10093 #: ../src/guestfs-actions.pod:2562 ../fish/guestfish-actions.pod:1724
10094 msgid "Fedora."
10095 msgstr ""
10096
10097 #. type: =item
10098 #: ../src/guestfs-actions.pod:2564 ../fish/guestfish-actions.pod:1726
10099 msgid "\"gentoo\""
10100 msgstr ""
10101
10102 #. type: textblock
10103 #: ../src/guestfs-actions.pod:2566 ../fish/guestfish-actions.pod:1728
10104 msgid "Gentoo."
10105 msgstr ""
10106
10107 #. type: =item
10108 #: ../src/guestfs-actions.pod:2568 ../fish/guestfish-actions.pod:1730
10109 msgid "\"linuxmint\""
10110 msgstr ""
10111
10112 #. type: textblock
10113 #: ../src/guestfs-actions.pod:2570 ../fish/guestfish-actions.pod:1732
10114 msgid "Linux Mint."
10115 msgstr ""
10116
10117 #. type: =item
10118 #: ../src/guestfs-actions.pod:2572 ../fish/guestfish-actions.pod:1734
10119 msgid "\"mandriva\""
10120 msgstr ""
10121
10122 #. type: textblock
10123 #: ../src/guestfs-actions.pod:2574 ../fish/guestfish-actions.pod:1736
10124 msgid "Mandriva."
10125 msgstr ""
10126
10127 #. type: =item
10128 #: ../src/guestfs-actions.pod:2576 ../fish/guestfish-actions.pod:1738
10129 msgid "\"meego\""
10130 msgstr ""
10131
10132 #. type: textblock
10133 #: ../src/guestfs-actions.pod:2578 ../fish/guestfish-actions.pod:1740
10134 msgid "MeeGo."
10135 msgstr ""
10136
10137 #. type: =item
10138 #: ../src/guestfs-actions.pod:2580 ../fish/guestfish-actions.pod:1742
10139 msgid "\"pardus\""
10140 msgstr ""
10141
10142 #. type: textblock
10143 #: ../src/guestfs-actions.pod:2582 ../fish/guestfish-actions.pod:1744
10144 msgid "Pardus."
10145 msgstr ""
10146
10147 #. type: =item
10148 #: ../src/guestfs-actions.pod:2584 ../fish/guestfish-actions.pod:1746
10149 msgid "\"redhat-based\""
10150 msgstr ""
10151
10152 #. type: textblock
10153 #: ../src/guestfs-actions.pod:2586 ../fish/guestfish-actions.pod:1748
10154 msgid "Some Red Hat-derived distro."
10155 msgstr ""
10156
10157 #. type: =item
10158 #: ../src/guestfs-actions.pod:2588 ../fish/guestfish-actions.pod:1750
10159 msgid "\"rhel\""
10160 msgstr ""
10161
10162 #. type: textblock
10163 #: ../src/guestfs-actions.pod:2590 ../fish/guestfish-actions.pod:1752
10164 msgid "Red Hat Enterprise Linux."
10165 msgstr ""
10166
10167 #. type: =item
10168 #: ../src/guestfs-actions.pod:2592 ../fish/guestfish-actions.pod:1754
10169 msgid "\"scientificlinux\""
10170 msgstr ""
10171
10172 #. type: textblock
10173 #: ../src/guestfs-actions.pod:2594 ../fish/guestfish-actions.pod:1756
10174 msgid "Scientific Linux."
10175 msgstr ""
10176
10177 #. type: =item
10178 #: ../src/guestfs-actions.pod:2596 ../fish/guestfish-actions.pod:1758
10179 msgid "\"slackware\""
10180 msgstr ""
10181
10182 #. type: textblock
10183 #: ../src/guestfs-actions.pod:2598 ../fish/guestfish-actions.pod:1760
10184 msgid "Slackware."
10185 msgstr ""
10186
10187 #. type: =item
10188 #: ../src/guestfs-actions.pod:2600 ../fish/guestfish-actions.pod:1762
10189 msgid "\"ubuntu\""
10190 msgstr ""
10191
10192 #. type: textblock
10193 #: ../src/guestfs-actions.pod:2602 ../fish/guestfish-actions.pod:1764
10194 msgid "Ubuntu."
10195 msgstr ""
10196
10197 #. type: =item
10198 #: ../src/guestfs-actions.pod:2604 ../src/guestfs-actions.pod:2713 ../src/guestfs-actions.pod:3088 ../fish/guestfish-actions.pod:1766 ../fish/guestfish-actions.pod:1850 ../fish/guestfish-actions.pod:2114
10199 msgid "\"unknown\""
10200 msgstr ""
10201
10202 #. type: textblock
10203 #: ../src/guestfs-actions.pod:2606 ../fish/guestfish-actions.pod:1768
10204 msgid "The distro could not be determined."
10205 msgstr ""
10206
10207 #. type: =item
10208 #: ../src/guestfs-actions.pod:2608 ../src/guestfs-actions.pod:3080 ../fish/guestfish-actions.pod:1770 ../fish/guestfish-actions.pod:2106
10209 msgid "\"windows\""
10210 msgstr ""
10211
10212 #. type: textblock
10213 #: ../src/guestfs-actions.pod:2610 ../fish/guestfish-actions.pod:1772
10214 msgid ""
10215 "Windows does not have distributions.  This string is returned if the OS type "
10216 "is Windows."
10217 msgstr ""
10218
10219 #. type: textblock
10220 #: ../src/guestfs-actions.pod:2615 ../src/guestfs-actions.pod:2719 ../src/guestfs-actions.pod:3094 ../fish/guestfish-actions.pod:1777 ../fish/guestfish-actions.pod:1856 ../fish/guestfish-actions.pod:2120
10221 msgid ""
10222 "Future versions of libguestfs may return other strings here.  The caller "
10223 "should be prepared to handle any string."
10224 msgstr ""
10225
10226 #. type: =head2
10227 #: ../src/guestfs-actions.pod:2625
10228 msgid "guestfs_inspect_get_drive_mappings"
10229 msgstr ""
10230
10231 #. type: verbatim
10232 #: ../src/guestfs-actions.pod:2627
10233 #, no-wrap
10234 msgid ""
10235 " char **\n"
10236 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10237 "                                     const char *root);\n"
10238 "\n"
10239 msgstr ""
10240
10241 #. type: textblock
10242 #: ../src/guestfs-actions.pod:2631 ../fish/guestfish-actions.pod:1786
10243 msgid ""
10244 "This call is useful for Windows which uses a primitive system of assigning "
10245 "drive letters (like \"C:\") to partitions.  This inspection API examines the "
10246 "Windows Registry to find out how disks/partitions are mapped to drive "
10247 "letters, and returns a hash table as in the example below:"
10248 msgstr ""
10249
10250 #. type: verbatim
10251 #: ../src/guestfs-actions.pod:2637 ../fish/guestfish-actions.pod:1792
10252 #, no-wrap
10253 msgid ""
10254 " C      =>     /dev/vda2\n"
10255 " E      =>     /dev/vdb1\n"
10256 " F      =>     /dev/vdc1\n"
10257 "\n"
10258 msgstr ""
10259
10260 #. type: textblock
10261 #: ../src/guestfs-actions.pod:2641 ../fish/guestfish-actions.pod:1796
10262 msgid ""
10263 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10264 "and just contains the drive letter, without the customary colon separator "
10265 "character."
10266 msgstr ""
10267
10268 #. type: textblock
10269 #: ../src/guestfs-actions.pod:2645 ../fish/guestfish-actions.pod:1800
10270 msgid ""
10271 "In future we may support other operating systems that also used drive "
10272 "letters, but the keys for those might not be case insensitive and might be "
10273 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>, "
10274 "C<h1> etc."
10275 msgstr ""
10276
10277 #. type: textblock
10278 #: ../src/guestfs-actions.pod:2650 ../fish/guestfish-actions.pod:1805
10279 msgid ""
10280 "For Windows guests, currently only hard drive mappings are returned.  "
10281 "Removable disks (eg. DVD-ROMs) are ignored."
10282 msgstr ""
10283
10284 #. type: textblock
10285 #: ../src/guestfs-actions.pod:2653 ../fish/guestfish-actions.pod:1808
10286 msgid ""
10287 "For guests that do not use drive mappings, or if the drive mappings could "
10288 "not be determined, this returns an empty hash table."
10289 msgstr ""
10290
10291 #. type: textblock
10292 #: ../src/guestfs-actions.pod:2656
10293 msgid ""
10294 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10295 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10296 msgstr ""
10297
10298 #. type: textblock
10299 #: ../src/guestfs-actions.pod:2660 ../src/guestfs-actions.pod:2928 ../src/guestfs-actions.pod:3706 ../src/guestfs-actions.pod:4985 ../src/guestfs-actions.pod:6922
10300 msgid ""
10301 "This function returns a NULL-terminated array of strings, or NULL if there "
10302 "was an error.  The array of strings will always have length C<2n+1>, where "
10303 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
10304 "caller must free the strings and the array after use>."
10305 msgstr ""
10306
10307 #. type: textblock
10308 #: ../src/guestfs-actions.pod:2666 ../src/guestfs-actions.pod:3122
10309 msgid "(Added in 1.9.17)"
10310 msgstr ""
10311
10312 #. type: =head2
10313 #: ../src/guestfs-actions.pod:2668
10314 msgid "guestfs_inspect_get_filesystems"
10315 msgstr ""
10316
10317 #. type: verbatim
10318 #: ../src/guestfs-actions.pod:2670
10319 #, no-wrap
10320 msgid ""
10321 " char **\n"
10322 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
10323 "                                  const char *root);\n"
10324 "\n"
10325 msgstr ""
10326
10327 #. type: textblock
10328 #: ../src/guestfs-actions.pod:2674 ../fish/guestfish-actions.pod:1819
10329 msgid ""
10330 "This returns a list of all the filesystems that we think are associated with "
10331 "this operating system.  This includes the root filesystem, other ordinary "
10332 "filesystems, and non-mounted devices like swap partitions."
10333 msgstr ""
10334
10335 #. type: textblock
10336 #: ../src/guestfs-actions.pod:2679 ../fish/guestfish-actions.pod:1824
10337 msgid ""
10338 "In the case of a multi-boot virtual machine, it is possible for a filesystem "
10339 "to be shared between operating systems."
10340 msgstr ""
10341
10342 #. type: textblock
10343 #: ../src/guestfs-actions.pod:2682
10344 msgid ""
10345 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10346 "C<guestfs_inspect_get_mountpoints>."
10347 msgstr ""
10348
10349 #. type: =head2
10350 #: ../src/guestfs-actions.pod:2691
10351 msgid "guestfs_inspect_get_format"
10352 msgstr ""
10353
10354 #. type: verbatim
10355 #: ../src/guestfs-actions.pod:2693
10356 #, no-wrap
10357 msgid ""
10358 " char *\n"
10359 " guestfs_inspect_get_format (guestfs_h *g,\n"
10360 "                             const char *root);\n"
10361 "\n"
10362 msgstr ""
10363
10364 #. type: textblock
10365 #: ../src/guestfs-actions.pod:2697 ../fish/guestfish-actions.pod:1834
10366 msgid ""
10367 "This returns the format of the inspected operating system.  You can use it "
10368 "to detect install images, live CDs and similar."
10369 msgstr ""
10370
10371 #. type: textblock
10372 #: ../src/guestfs-actions.pod:2700 ../fish/guestfish-actions.pod:1837
10373 msgid "Currently defined formats are:"
10374 msgstr ""
10375
10376 #. type: =item
10377 #: ../src/guestfs-actions.pod:2704 ../fish/guestfish-actions.pod:1841
10378 msgid "\"installed\""
10379 msgstr ""
10380
10381 #. type: textblock
10382 #: ../src/guestfs-actions.pod:2706 ../fish/guestfish-actions.pod:1843
10383 msgid "This is an installed operating system."
10384 msgstr ""
10385
10386 #. type: =item
10387 #: ../src/guestfs-actions.pod:2708 ../fish/guestfish-actions.pod:1845
10388 msgid "\"installer\""
10389 msgstr ""
10390
10391 #. type: textblock
10392 #: ../src/guestfs-actions.pod:2710 ../fish/guestfish-actions.pod:1847
10393 msgid ""
10394 "The disk image being inspected is not an installed operating system, but a "
10395 "I<bootable> install disk, live CD, or similar."
10396 msgstr ""
10397
10398 #. type: textblock
10399 #: ../src/guestfs-actions.pod:2715 ../fish/guestfish-actions.pod:1852
10400 msgid "The format of this disk image is not known."
10401 msgstr ""
10402
10403 #. type: textblock
10404 #: ../src/guestfs-actions.pod:2727 ../src/guestfs-actions.pod:3158 ../src/guestfs-actions.pod:3174 ../src/guestfs-actions.pod:3192 ../src/guestfs-actions.pod:5837
10405 msgid "(Added in 1.9.4)"
10406 msgstr ""
10407
10408 #. type: =head2
10409 #: ../src/guestfs-actions.pod:2729
10410 msgid "guestfs_inspect_get_hostname"
10411 msgstr ""
10412
10413 #. type: verbatim
10414 #: ../src/guestfs-actions.pod:2731
10415 #, no-wrap
10416 msgid ""
10417 " char *\n"
10418 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
10419 "                               const char *root);\n"
10420 "\n"
10421 msgstr ""
10422
10423 #. type: textblock
10424 #: ../src/guestfs-actions.pod:2735 ../fish/guestfish-actions.pod:1865
10425 msgid ""
10426 "This function returns the hostname of the operating system as found by "
10427 "inspection of the guest's configuration files."
10428 msgstr ""
10429
10430 #. type: textblock
10431 #: ../src/guestfs-actions.pod:2738 ../fish/guestfish-actions.pod:1868
10432 msgid ""
10433 "If the hostname could not be determined, then the string C<unknown> is "
10434 "returned."
10435 msgstr ""
10436
10437 #. type: textblock
10438 #: ../src/guestfs-actions.pod:2746
10439 msgid "(Added in 1.7.9)"
10440 msgstr ""
10441
10442 #. type: =head2
10443 #: ../src/guestfs-actions.pod:2748
10444 msgid "guestfs_inspect_get_icon"
10445 msgstr ""
10446
10447 #. type: verbatim
10448 #: ../src/guestfs-actions.pod:2750
10449 #, no-wrap
10450 msgid ""
10451 " char *\n"
10452 " guestfs_inspect_get_icon (guestfs_h *g,\n"
10453 "                           const char *root,\n"
10454 "                           size_t *size_r,\n"
10455 "                           ...);\n"
10456 "\n"
10457 msgstr ""
10458
10459 #. type: verbatim
10460 #: ../src/guestfs-actions.pod:2761
10461 #, no-wrap
10462 msgid ""
10463 " GUESTFS_INSPECT_GET_ICON_FAVICON, int favicon,\n"
10464 " GUESTFS_INSPECT_GET_ICON_HIGHQUALITY, int highquality,\n"
10465 "\n"
10466 msgstr ""
10467
10468 #. type: textblock
10469 #: ../src/guestfs-actions.pod:2764 ../fish/guestfish-actions.pod:1877
10470 msgid ""
10471 "This function returns an icon corresponding to the inspected operating "
10472 "system.  The icon is returned as a buffer containing a PNG image (re-encoded "
10473 "to PNG if necessary)."
10474 msgstr ""
10475
10476 #. type: textblock
10477 #: ../src/guestfs-actions.pod:2768 ../fish/guestfish-actions.pod:1881
10478 msgid ""
10479 "If it was not possible to get an icon this function returns a zero-length "
10480 "(non-NULL) buffer.  I<Callers must check for this case>."
10481 msgstr ""
10482
10483 #. type: textblock
10484 #: ../src/guestfs-actions.pod:2771 ../fish/guestfish-actions.pod:1884
10485 msgid ""
10486 "Libguestfs will start by looking for a file called C</etc/favicon.png> or "
10487 "C<C:\\etc\\favicon.png> and if it has the correct format, the contents of "
10488 "this file will be returned.  You can disable favicons by passing the "
10489 "optional C<favicon> boolean as false (default is true)."
10490 msgstr ""
10491
10492 #. type: textblock
10493 #: ../src/guestfs-actions.pod:2777 ../fish/guestfish-actions.pod:1890
10494 msgid ""
10495 "If finding the favicon fails, then we look in other places in the guest for "
10496 "a suitable icon."
10497 msgstr ""
10498
10499 #. type: textblock
10500 #: ../src/guestfs-actions.pod:2780 ../fish/guestfish-actions.pod:1893
10501 msgid ""
10502 "If the optional C<highquality> boolean is true then only high quality icons "
10503 "are returned, which means only icons of high resolution with an alpha "
10504 "channel.  The default (false) is to return any icon we can, even if it is of "
10505 "substandard quality."
10506 msgstr ""
10507
10508 #. type: textblock
10509 #: ../src/guestfs-actions.pod:2791 ../fish/guestfish-actions.pod:1904
10510 msgid ""
10511 "Unlike most other inspection API calls, the guest's disks must be mounted up "
10512 "before you call this, since it needs to read information from the guest "
10513 "filesystem during the call."
10514 msgstr ""
10515
10516 #. type: textblock
10517 #: ../src/guestfs-actions.pod:2797 ../fish/guestfish-actions.pod:1910
10518 msgid ""
10519 "B<Security:> The icon data comes from the untrusted guest, and should be "
10520 "treated with caution.  PNG files have been known to contain exploits.  "
10521 "Ensure that libpng (or other relevant libraries) are fully up to date before "
10522 "trying to process or display the icon."
10523 msgstr ""
10524
10525 #. type: textblock
10526 #: ../src/guestfs-actions.pod:2805 ../fish/guestfish-actions.pod:1918
10527 msgid ""
10528 "The PNG image returned can be any size.  It might not be square.  Libguestfs "
10529 "tries to return the largest, highest quality icon available.  The "
10530 "application must scale the icon to the required size."
10531 msgstr ""
10532
10533 #. type: textblock
10534 #: ../src/guestfs-actions.pod:2812 ../fish/guestfish-actions.pod:1925
10535 msgid ""
10536 "Extracting icons from Windows guests requires the external C<wrestool> "
10537 "program from the C<icoutils> package, and several programs (C<bmptopnm>, "
10538 "C<pnmtopng>, C<pamcut>)  from the C<netpbm> package.  These must be "
10539 "installed separately."
10540 msgstr ""
10541
10542 #. type: textblock
10543 #: ../src/guestfs-actions.pod:2819 ../fish/guestfish-actions.pod:1932
10544 msgid ""
10545 "Operating system icons are usually trademarks.  Seek legal advice before "
10546 "using trademarks in applications."
10547 msgstr ""
10548
10549 #. type: textblock
10550 #: ../src/guestfs-actions.pod:2828 ../src/guestfs-actions.pod:3653 ../src/guestfs-actions.pod:4884
10551 msgid "(Added in 1.11.12)"
10552 msgstr ""
10553
10554 #. type: =head2
10555 #: ../src/guestfs-actions.pod:2830
10556 msgid "guestfs_inspect_get_icon_va"
10557 msgstr ""
10558
10559 #. type: verbatim
10560 #: ../src/guestfs-actions.pod:2832
10561 #, no-wrap
10562 msgid ""
10563 " char *\n"
10564 " guestfs_inspect_get_icon_va (guestfs_h *g,\n"
10565 "                              const char *root,\n"
10566 "                              size_t *size_r,\n"
10567 "                              va_list args);\n"
10568 "\n"
10569 msgstr ""
10570
10571 #. type: textblock
10572 #: ../src/guestfs-actions.pod:2838
10573 msgid "This is the \"va_list variant\" of L</guestfs_inspect_get_icon>."
10574 msgstr ""
10575
10576 #. type: =head2
10577 #: ../src/guestfs-actions.pod:2842
10578 msgid "guestfs_inspect_get_icon_argv"
10579 msgstr ""
10580
10581 #. type: verbatim
10582 #: ../src/guestfs-actions.pod:2844
10583 #, no-wrap
10584 msgid ""
10585 " char *\n"
10586 " guestfs_inspect_get_icon_argv (guestfs_h *g,\n"
10587 "                                const char *root,\n"
10588 "                                size_t *size_r,\n"
10589 "                                const struct guestfs_inspect_get_icon_argv "
10590 "*optargs);\n"
10591 "\n"
10592 msgstr ""
10593
10594 #. type: textblock
10595 #: ../src/guestfs-actions.pod:2850
10596 msgid "This is the \"argv variant\" of L</guestfs_inspect_get_icon>."
10597 msgstr ""
10598
10599 #. type: =head2
10600 #: ../src/guestfs-actions.pod:2854
10601 msgid "guestfs_inspect_get_major_version"
10602 msgstr ""
10603
10604 #. type: verbatim
10605 #: ../src/guestfs-actions.pod:2856
10606 #, no-wrap
10607 msgid ""
10608 " int\n"
10609 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
10610 "                                    const char *root);\n"
10611 "\n"
10612 msgstr ""
10613
10614 #. type: textblock
10615 #: ../src/guestfs-actions.pod:2860 ../fish/guestfish-actions.pod:1943
10616 msgid "This returns the major version number of the inspected operating system."
10617 msgstr ""
10618
10619 #. type: textblock
10620 #: ../src/guestfs-actions.pod:2863 ../fish/guestfish-actions.pod:1946
10621 msgid ""
10622 "Windows uses a consistent versioning scheme which is I<not> reflected in the "
10623 "popular public names used by the operating system.  Notably the operating "
10624 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
10625 "1).  You can find out the real versions corresponding to releases of Windows "
10626 "by consulting Wikipedia or MSDN."
10627 msgstr ""
10628
10629 #. type: textblock
10630 #: ../src/guestfs-actions.pod:2870 ../src/guestfs-actions.pod:2887 ../fish/guestfish-actions.pod:1953 ../fish/guestfish-actions.pod:1964
10631 msgid "If the version could not be determined, then C<0> is returned."
10632 msgstr ""
10633
10634 #. type: =head2
10635 #: ../src/guestfs-actions.pod:2878
10636 msgid "guestfs_inspect_get_minor_version"
10637 msgstr ""
10638
10639 #. type: verbatim
10640 #: ../src/guestfs-actions.pod:2880
10641 #, no-wrap
10642 msgid ""
10643 " int\n"
10644 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
10645 "                                    const char *root);\n"
10646 "\n"
10647 msgstr ""
10648
10649 #. type: textblock
10650 #: ../src/guestfs-actions.pod:2884 ../fish/guestfish-actions.pod:1961
10651 msgid "This returns the minor version number of the inspected operating system."
10652 msgstr ""
10653
10654 #. type: textblock
10655 #: ../src/guestfs-actions.pod:2889
10656 msgid ""
10657 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10658 "C<guestfs_inspect_get_major_version>."
10659 msgstr ""
10660
10661 #. type: =head2
10662 #: ../src/guestfs-actions.pod:2896
10663 msgid "guestfs_inspect_get_mountpoints"
10664 msgstr ""
10665
10666 #. type: verbatim
10667 #: ../src/guestfs-actions.pod:2898
10668 #, no-wrap
10669 msgid ""
10670 " char **\n"
10671 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
10672 "                                  const char *root);\n"
10673 "\n"
10674 msgstr ""
10675
10676 #. type: textblock
10677 #: ../src/guestfs-actions.pod:2902 ../fish/guestfish-actions.pod:1973
10678 msgid ""
10679 "This returns a hash of where we think the filesystems associated with this "
10680 "operating system should be mounted.  Callers should note that this is at "
10681 "best an educated guess made by reading configuration files such as "
10682 "C</etc/fstab>.  I<In particular note> that this may return filesystems which "
10683 "are non-existent or not mountable and callers should be prepared to handle "
10684 "or ignore failures if they try to mount them."
10685 msgstr ""
10686
10687 #. type: textblock
10688 #: ../src/guestfs-actions.pod:2911 ../fish/guestfish-actions.pod:1982
10689 msgid ""
10690 "Each element in the returned hashtable has a key which is the path of the "
10691 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
10692 "mounted there (eg. C</dev/sda1>)."
10693 msgstr ""
10694
10695 #. type: textblock
10696 #: ../src/guestfs-actions.pod:2916 ../fish/guestfish-actions.pod:1987
10697 msgid "Non-mounted devices such as swap devices are I<not> returned in this list."
10698 msgstr ""
10699
10700 #. type: textblock
10701 #: ../src/guestfs-actions.pod:2919
10702 msgid ""
10703 "For operating systems like Windows which still use drive letters, this call "
10704 "will only return an entry for the first drive \"mounted on\" C</>.  For "
10705 "information about the mapping of drive letters to partitions, see "
10706 "C<guestfs_inspect_get_drive_mappings>."
10707 msgstr ""
10708
10709 #. type: textblock
10710 #: ../src/guestfs-actions.pod:2925
10711 msgid ""
10712 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10713 "C<guestfs_inspect_get_filesystems>."
10714 msgstr ""
10715
10716 #. type: =head2
10717 #: ../src/guestfs-actions.pod:2936
10718 msgid "guestfs_inspect_get_package_format"
10719 msgstr ""
10720
10721 #. type: verbatim
10722 #: ../src/guestfs-actions.pod:2938
10723 #, no-wrap
10724 msgid ""
10725 " char *\n"
10726 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
10727 "                                     const char *root);\n"
10728 "\n"
10729 msgstr ""
10730
10731 #. type: textblock
10732 #: ../src/guestfs-actions.pod:2942
10733 msgid ""
10734 "This function and C<guestfs_inspect_get_package_management> return the "
10735 "package format and package management tool used by the inspected operating "
10736 "system.  For example for Fedora these functions would return C<rpm> (package "
10737 "format) and C<yum> (package management)."
10738 msgstr ""
10739
10740 #. type: textblock
10741 #: ../src/guestfs-actions.pod:2948 ../fish/guestfish-actions.pod:2009
10742 msgid ""
10743 "This returns the string C<unknown> if we could not determine the package "
10744 "format I<or> if the operating system does not have a real packaging system "
10745 "(eg. Windows)."
10746 msgstr ""
10747
10748 #. type: textblock
10749 #: ../src/guestfs-actions.pod:2952 ../fish/guestfish-actions.pod:2013
10750 msgid ""
10751 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
10752 "Future versions of libguestfs may return other strings."
10753 msgstr ""
10754
10755 #. type: textblock
10756 #: ../src/guestfs-actions.pod:2960 ../src/guestfs-actions.pod:2988
10757 msgid "(Added in 1.7.5)"
10758 msgstr ""
10759
10760 #. type: =head2
10761 #: ../src/guestfs-actions.pod:2962
10762 msgid "guestfs_inspect_get_package_management"
10763 msgstr ""
10764
10765 #. type: verbatim
10766 #: ../src/guestfs-actions.pod:2964
10767 #, no-wrap
10768 msgid ""
10769 " char *\n"
10770 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
10771 "                                         const char *root);\n"
10772 "\n"
10773 msgstr ""
10774
10775 #. type: textblock
10776 #: ../src/guestfs-actions.pod:2968
10777 msgid ""
10778 "C<guestfs_inspect_get_package_format> and this function return the package "
10779 "format and package management tool used by the inspected operating system.  "
10780 "For example for Fedora these functions would return C<rpm> (package format) "
10781 "and C<yum> (package management)."
10782 msgstr ""
10783
10784 #. type: textblock
10785 #: ../src/guestfs-actions.pod:2974 ../fish/guestfish-actions.pod:2028
10786 msgid ""
10787 "This returns the string C<unknown> if we could not determine the package "
10788 "management tool I<or> if the operating system does not have a real packaging "
10789 "system (eg. Windows)."
10790 msgstr ""
10791
10792 #. type: textblock
10793 #: ../src/guestfs-actions.pod:2978 ../fish/guestfish-actions.pod:2032
10794 msgid ""
10795 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
10796 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
10797 "libguestfs may return other strings."
10798 msgstr ""
10799
10800 #. type: =head2
10801 #: ../src/guestfs-actions.pod:2990
10802 msgid "guestfs_inspect_get_product_name"
10803 msgstr ""
10804
10805 #. type: verbatim
10806 #: ../src/guestfs-actions.pod:2992
10807 #, no-wrap
10808 msgid ""
10809 " char *\n"
10810 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
10811 "                                   const char *root);\n"
10812 "\n"
10813 msgstr ""
10814
10815 #. type: textblock
10816 #: ../src/guestfs-actions.pod:2996 ../fish/guestfish-actions.pod:2043
10817 msgid ""
10818 "This returns the product name of the inspected operating system.  The "
10819 "product name is generally some freeform string which can be displayed to the "
10820 "user, but should not be parsed by programs."
10821 msgstr ""
10822
10823 #. type: textblock
10824 #: ../src/guestfs-actions.pod:3001 ../fish/guestfish-actions.pod:2048
10825 msgid ""
10826 "If the product name could not be determined, then the string C<unknown> is "
10827 "returned."
10828 msgstr ""
10829
10830 #. type: =head2
10831 #: ../src/guestfs-actions.pod:3011
10832 msgid "guestfs_inspect_get_product_variant"
10833 msgstr ""
10834
10835 #. type: verbatim
10836 #: ../src/guestfs-actions.pod:3013
10837 #, no-wrap
10838 msgid ""
10839 " char *\n"
10840 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
10841 "                                      const char *root);\n"
10842 "\n"
10843 msgstr ""
10844
10845 #. type: textblock
10846 #: ../src/guestfs-actions.pod:3017 ../fish/guestfish-actions.pod:2057
10847 msgid "This returns the product variant of the inspected operating system."
10848 msgstr ""
10849
10850 #. type: textblock
10851 #: ../src/guestfs-actions.pod:3020 ../fish/guestfish-actions.pod:2060
10852 msgid ""
10853 "For Windows guests, this returns the contents of the Registry key "
10854 "C<HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType> "
10855 "which is usually a string such as C<Client> or C<Server> (other values are "
10856 "possible).  This can be used to distinguish consumer and enterprise versions "
10857 "of Windows that have the same version number (for example, Windows 7 and "
10858 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
10859 "the latter is C<Server>)."
10860 msgstr ""
10861
10862 #. type: textblock
10863 #: ../src/guestfs-actions.pod:3029 ../fish/guestfish-actions.pod:2069
10864 msgid ""
10865 "For enterprise Linux guests, in future we intend this to return the product "
10866 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
10867 "implemented at present."
10868 msgstr ""
10869
10870 #. type: textblock
10871 #: ../src/guestfs-actions.pod:3033 ../fish/guestfish-actions.pod:2073
10872 msgid ""
10873 "If the product variant could not be determined, then the string C<unknown> "
10874 "is returned."
10875 msgstr ""
10876
10877 #. type: textblock
10878 #: ../src/guestfs-actions.pod:3036
10879 msgid ""
10880 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10881 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
10882 msgstr ""
10883
10884 #. type: textblock
10885 #: ../src/guestfs-actions.pod:3043
10886 msgid "(Added in 1.9.13)"
10887 msgstr ""
10888
10889 #. type: =head2
10890 #: ../src/guestfs-actions.pod:3045
10891 msgid "guestfs_inspect_get_roots"
10892 msgstr ""
10893
10894 #. type: verbatim
10895 #: ../src/guestfs-actions.pod:3047
10896 #, no-wrap
10897 msgid ""
10898 " char **\n"
10899 " guestfs_inspect_get_roots (guestfs_h *g);\n"
10900 "\n"
10901 msgstr ""
10902
10903 #. type: textblock
10904 #: ../src/guestfs-actions.pod:3050
10905 msgid ""
10906 "This function is a convenient way to get the list of root devices, as "
10907 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
10908 "the whole inspection process."
10909 msgstr ""
10910
10911 #. type: textblock
10912 #: ../src/guestfs-actions.pod:3054
10913 msgid ""
10914 "This returns an empty list if either no root devices were found or the "
10915 "caller has not called C<guestfs_inspect_os>."
10916 msgstr ""
10917
10918 #. type: textblock
10919 #: ../src/guestfs-actions.pod:3063
10920 msgid "(Added in 1.7.3)"
10921 msgstr ""
10922
10923 #. type: =head2
10924 #: ../src/guestfs-actions.pod:3065
10925 msgid "guestfs_inspect_get_type"
10926 msgstr ""
10927
10928 #. type: verbatim
10929 #: ../src/guestfs-actions.pod:3067
10930 #, no-wrap
10931 msgid ""
10932 " char *\n"
10933 " guestfs_inspect_get_type (guestfs_h *g,\n"
10934 "                           const char *root);\n"
10935 "\n"
10936 msgstr ""
10937
10938 #. type: textblock
10939 #: ../src/guestfs-actions.pod:3071 ../fish/guestfish-actions.pod:2097
10940 msgid ""
10941 "This returns the type of the inspected operating system.  Currently defined "
10942 "types are:"
10943 msgstr ""
10944
10945 #. type: =item
10946 #: ../src/guestfs-actions.pod:3076 ../fish/guestfish-actions.pod:2102
10947 msgid "\"linux\""
10948 msgstr ""
10949
10950 #. type: textblock
10951 #: ../src/guestfs-actions.pod:3078 ../fish/guestfish-actions.pod:2104
10952 msgid "Any Linux-based operating system."
10953 msgstr ""
10954
10955 #. type: textblock
10956 #: ../src/guestfs-actions.pod:3082 ../fish/guestfish-actions.pod:2108
10957 msgid "Any Microsoft Windows operating system."
10958 msgstr ""
10959
10960 #. type: =item
10961 #: ../src/guestfs-actions.pod:3084 ../fish/guestfish-actions.pod:2110
10962 msgid "\"freebsd\""
10963 msgstr ""
10964
10965 #. type: textblock
10966 #: ../src/guestfs-actions.pod:3086 ../fish/guestfish-actions.pod:2112
10967 msgid "FreeBSD."
10968 msgstr ""
10969
10970 #. type: textblock
10971 #: ../src/guestfs-actions.pod:3090 ../fish/guestfish-actions.pod:2116
10972 msgid "The operating system type could not be determined."
10973 msgstr ""
10974
10975 #. type: =head2
10976 #: ../src/guestfs-actions.pod:3104
10977 msgid "guestfs_inspect_get_windows_current_control_set"
10978 msgstr ""
10979
10980 #. type: verbatim
10981 #: ../src/guestfs-actions.pod:3106
10982 #, no-wrap
10983 msgid ""
10984 " char *\n"
10985 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
10986 "                                                  const char *root);\n"
10987 "\n"
10988 msgstr ""
10989
10990 #. type: textblock
10991 #: ../src/guestfs-actions.pod:3110 ../fish/guestfish-actions.pod:2129
10992 msgid ""
10993 "This returns the Windows CurrentControlSet of the inspected guest.  The "
10994 "CurrentControlSet is a registry key name such as C<ControlSet001>."
10995 msgstr ""
10996
10997 #. type: textblock
10998 #: ../src/guestfs-actions.pod:3113 ../fish/guestfish-actions.pod:2132
10999 msgid ""
11000 "This call assumes that the guest is Windows and that the Registry could be "
11001 "examined by inspection.  If this is not the case then an error is returned."
11002 msgstr ""
11003
11004 #. type: =head2
11005 #: ../src/guestfs-actions.pod:3124
11006 msgid "guestfs_inspect_get_windows_systemroot"
11007 msgstr ""
11008
11009 #. type: verbatim
11010 #: ../src/guestfs-actions.pod:3126
11011 #, no-wrap
11012 msgid ""
11013 " char *\n"
11014 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11015 "                                         const char *root);\n"
11016 "\n"
11017 msgstr ""
11018
11019 #. type: textblock
11020 #: ../src/guestfs-actions.pod:3130 ../fish/guestfish-actions.pod:2142
11021 msgid ""
11022 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11023 "is a directory path such as C</WINDOWS>."
11024 msgstr ""
11025
11026 #. type: textblock
11027 #: ../src/guestfs-actions.pod:3133 ../fish/guestfish-actions.pod:2145
11028 msgid ""
11029 "This call assumes that the guest is Windows and that the systemroot could be "
11030 "determined by inspection.  If this is not the case then an error is "
11031 "returned."
11032 msgstr ""
11033
11034 #. type: textblock
11035 #: ../src/guestfs-actions.pod:3142
11036 msgid "(Added in 1.5.25)"
11037 msgstr ""
11038
11039 #. type: =head2
11040 #: ../src/guestfs-actions.pod:3144
11041 msgid "guestfs_inspect_is_live"
11042 msgstr ""
11043
11044 #. type: verbatim
11045 #: ../src/guestfs-actions.pod:3146
11046 #, no-wrap
11047 msgid ""
11048 " int\n"
11049 " guestfs_inspect_is_live (guestfs_h *g,\n"
11050 "                          const char *root);\n"
11051 "\n"
11052 msgstr ""
11053
11054 #. type: textblock
11055 #: ../src/guestfs-actions.pod:3150
11056 msgid ""
11057 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11058 "disk), then this returns true if a live image was detected on the disk."
11059 msgstr ""
11060
11061 #. type: =head2
11062 #: ../src/guestfs-actions.pod:3160
11063 msgid "guestfs_inspect_is_multipart"
11064 msgstr ""
11065
11066 #. type: verbatim
11067 #: ../src/guestfs-actions.pod:3162
11068 #, no-wrap
11069 msgid ""
11070 " int\n"
11071 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11072 "                               const char *root);\n"
11073 "\n"
11074 msgstr ""
11075
11076 #. type: textblock
11077 #: ../src/guestfs-actions.pod:3166
11078 msgid ""
11079 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11080 "disk), then this returns true if the disk is part of a set."
11081 msgstr ""
11082
11083 #. type: =head2
11084 #: ../src/guestfs-actions.pod:3176
11085 msgid "guestfs_inspect_is_netinst"
11086 msgstr ""
11087
11088 #. type: verbatim
11089 #: ../src/guestfs-actions.pod:3178
11090 #, no-wrap
11091 msgid ""
11092 " int\n"
11093 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11094 "                             const char *root);\n"
11095 "\n"
11096 msgstr ""
11097
11098 #. type: textblock
11099 #: ../src/guestfs-actions.pod:3182
11100 msgid ""
11101 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11102 "disk), then this returns true if the disk is a network installer, ie. not a "
11103 "self-contained install CD but one which is likely to require network access "
11104 "to complete the install."
11105 msgstr ""
11106
11107 #. type: =head2
11108 #: ../src/guestfs-actions.pod:3194
11109 msgid "guestfs_inspect_list_applications"
11110 msgstr ""
11111
11112 #. type: verbatim
11113 #: ../src/guestfs-actions.pod:3196
11114 #, no-wrap
11115 msgid ""
11116 " struct guestfs_application_list *\n"
11117 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11118 "                                    const char *root);\n"
11119 "\n"
11120 msgstr ""
11121
11122 #. type: textblock
11123 #: ../src/guestfs-actions.pod:3200 ../fish/guestfish-actions.pod:2187
11124 msgid "Return the list of applications installed in the operating system."
11125 msgstr ""
11126
11127 #. type: textblock
11128 #: ../src/guestfs-actions.pod:3202
11129 msgid ""
11130 "I<Note:> This call works differently from other parts of the inspection "
11131 "API.  You have to call C<guestfs_inspect_os>, then "
11132 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11133 "this.  Listing applications is a significantly more difficult operation "
11134 "which requires access to the full filesystem.  Also note that unlike the "
11135 "other C<guestfs_inspect_get_*> calls which are just returning data cached in "
11136 "the libguestfs handle, this call actually reads parts of the mounted "
11137 "filesystems during the call."
11138 msgstr ""
11139
11140 #. type: textblock
11141 #: ../src/guestfs-actions.pod:3212 ../fish/guestfish-actions.pod:2199
11142 msgid ""
11143 "This returns an empty list if the inspection code was not able to determine "
11144 "the list of applications."
11145 msgstr ""
11146
11147 #. type: textblock
11148 #: ../src/guestfs-actions.pod:3215 ../fish/guestfish-actions.pod:2202
11149 msgid "The application structure contains the following fields:"
11150 msgstr ""
11151
11152 #. type: =item
11153 #: ../src/guestfs-actions.pod:3219 ../fish/guestfish-actions.pod:2206
11154 msgid "C<app_name>"
11155 msgstr ""
11156
11157 #. type: textblock
11158 #: ../src/guestfs-actions.pod:3221 ../fish/guestfish-actions.pod:2208
11159 msgid ""
11160 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11161 "guests, this is the package name."
11162 msgstr ""
11163
11164 #. type: =item
11165 #: ../src/guestfs-actions.pod:3224 ../fish/guestfish-actions.pod:2211
11166 msgid "C<app_display_name>"
11167 msgstr ""
11168
11169 #. type: textblock
11170 #: ../src/guestfs-actions.pod:3226 ../fish/guestfish-actions.pod:2213
11171 msgid ""
11172 "The display name of the application, sometimes localized to the install "
11173 "language of the guest operating system."
11174 msgstr ""
11175
11176 #. type: textblock
11177 #: ../src/guestfs-actions.pod:3229 ../fish/guestfish-actions.pod:2216
11178 msgid ""
11179 "If unavailable this is returned as an empty string C<\"\">.  Callers needing "
11180 "to display something can use C<app_name> instead."
11181 msgstr ""
11182
11183 #. type: =item
11184 #: ../src/guestfs-actions.pod:3232 ../fish/guestfish-actions.pod:2219
11185 msgid "C<app_epoch>"
11186 msgstr ""
11187
11188 #. type: textblock
11189 #: ../src/guestfs-actions.pod:3234 ../fish/guestfish-actions.pod:2221
11190 msgid ""
11191 "For package managers which use epochs, this contains the epoch of the "
11192 "package (an integer).  If unavailable, this is returned as C<0>."
11193 msgstr ""
11194
11195 #. type: =item
11196 #: ../src/guestfs-actions.pod:3237 ../fish/guestfish-actions.pod:2224
11197 msgid "C<app_version>"
11198 msgstr ""
11199
11200 #. type: textblock
11201 #: ../src/guestfs-actions.pod:3239 ../fish/guestfish-actions.pod:2226
11202 msgid ""
11203 "The version string of the application or package.  If unavailable this is "
11204 "returned as an empty string C<\"\">."
11205 msgstr ""
11206
11207 #. type: =item
11208 #: ../src/guestfs-actions.pod:3242 ../fish/guestfish-actions.pod:2229
11209 msgid "C<app_release>"
11210 msgstr ""
11211
11212 #. type: textblock
11213 #: ../src/guestfs-actions.pod:3244 ../fish/guestfish-actions.pod:2231
11214 msgid ""
11215 "The release string of the application or package, for package managers that "
11216 "use this.  If unavailable this is returned as an empty string C<\"\">."
11217 msgstr ""
11218
11219 #. type: =item
11220 #: ../src/guestfs-actions.pod:3248 ../fish/guestfish-actions.pod:2235
11221 msgid "C<app_install_path>"
11222 msgstr ""
11223
11224 #. type: textblock
11225 #: ../src/guestfs-actions.pod:3250 ../fish/guestfish-actions.pod:2237
11226 msgid ""
11227 "The installation path of the application (on operating systems such as "
11228 "Windows which use installation paths).  This path is in the format used by "
11229 "the guest operating system, it is not a libguestfs path."
11230 msgstr ""
11231
11232 #. type: textblock
11233 #: ../src/guestfs-actions.pod:3255 ../fish/guestfish-actions.pod:2242
11234 msgid "If unavailable this is returned as an empty string C<\"\">."
11235 msgstr ""
11236
11237 #. type: =item
11238 #: ../src/guestfs-actions.pod:3257 ../fish/guestfish-actions.pod:2244
11239 msgid "C<app_trans_path>"
11240 msgstr ""
11241
11242 #. type: textblock
11243 #: ../src/guestfs-actions.pod:3259 ../fish/guestfish-actions.pod:2246
11244 msgid ""
11245 "The install path translated into a libguestfs path.  If unavailable this is "
11246 "returned as an empty string C<\"\">."
11247 msgstr ""
11248
11249 #. type: =item
11250 #: ../src/guestfs-actions.pod:3262 ../fish/guestfish-actions.pod:2249
11251 msgid "C<app_publisher>"
11252 msgstr ""
11253
11254 #. type: textblock
11255 #: ../src/guestfs-actions.pod:3264 ../fish/guestfish-actions.pod:2251
11256 msgid ""
11257 "The name of the publisher of the application, for package managers that use "
11258 "this.  If unavailable this is returned as an empty string C<\"\">."
11259 msgstr ""
11260
11261 #. type: =item
11262 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2255
11263 msgid "C<app_url>"
11264 msgstr ""
11265
11266 #. type: textblock
11267 #: ../src/guestfs-actions.pod:3270 ../fish/guestfish-actions.pod:2257
11268 msgid ""
11269 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11270 "returned as an empty string C<\"\">."
11271 msgstr ""
11272
11273 #. type: =item
11274 #: ../src/guestfs-actions.pod:3273 ../fish/guestfish-actions.pod:2260
11275 msgid "C<app_source_package>"
11276 msgstr ""
11277
11278 #. type: textblock
11279 #: ../src/guestfs-actions.pod:3275 ../fish/guestfish-actions.pod:2262
11280 msgid ""
11281 "For packaging systems which support this, the name of the source package.  "
11282 "If unavailable this is returned as an empty string C<\"\">."
11283 msgstr ""
11284
11285 #. type: =item
11286 #: ../src/guestfs-actions.pod:3278 ../fish/guestfish-actions.pod:2265
11287 msgid "C<app_summary>"
11288 msgstr ""
11289
11290 #. type: textblock
11291 #: ../src/guestfs-actions.pod:3280 ../fish/guestfish-actions.pod:2267
11292 msgid ""
11293 "A short (usually one line) description of the application or package.  If "
11294 "unavailable this is returned as an empty string C<\"\">."
11295 msgstr ""
11296
11297 #. type: =item
11298 #: ../src/guestfs-actions.pod:3283 ../fish/guestfish-actions.pod:2270
11299 msgid "C<app_description>"
11300 msgstr ""
11301
11302 #. type: textblock
11303 #: ../src/guestfs-actions.pod:3285 ../fish/guestfish-actions.pod:2272
11304 msgid ""
11305 "A longer description of the application or package.  If unavailable this is "
11306 "returned as an empty string C<\"\">."
11307 msgstr ""
11308
11309 #. type: textblock
11310 #: ../src/guestfs-actions.pod:3292
11311 msgid ""
11312 "This function returns a C<struct guestfs_application_list *>, or NULL if "
11313 "there was an error.  I<The caller must call C<guestfs_free_application_list> "
11314 "after use>."
11315 msgstr ""
11316
11317 #. type: textblock
11318 #: ../src/guestfs-actions.pod:3296
11319 msgid "(Added in 1.7.8)"
11320 msgstr ""
11321
11322 #. type: =head2
11323 #: ../src/guestfs-actions.pod:3298
11324 msgid "guestfs_inspect_os"
11325 msgstr ""
11326
11327 #. type: verbatim
11328 #: ../src/guestfs-actions.pod:3300
11329 #, no-wrap
11330 msgid ""
11331 " char **\n"
11332 " guestfs_inspect_os (guestfs_h *g);\n"
11333 "\n"
11334 msgstr ""
11335
11336 #. type: textblock
11337 #: ../src/guestfs-actions.pod:3303 ../fish/guestfish-actions.pod:2283
11338 msgid ""
11339 "This function uses other libguestfs functions and certain heuristics to "
11340 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
11341 "for operating systems."
11342 msgstr ""
11343
11344 #. type: textblock
11345 #: ../src/guestfs-actions.pod:3307 ../fish/guestfish-actions.pod:2287
11346 msgid "The list returned is empty if no operating systems were found."
11347 msgstr ""
11348
11349 #. type: textblock
11350 #: ../src/guestfs-actions.pod:3309 ../fish/guestfish-actions.pod:2289
11351 msgid ""
11352 "If one operating system was found, then this returns a list with a single "
11353 "element, which is the name of the root filesystem of this operating system.  "
11354 "It is also possible for this function to return a list containing more than "
11355 "one element, indicating a dual-boot or multi-boot virtual machine, with each "
11356 "element being the root filesystem of one of the operating systems."
11357 msgstr ""
11358
11359 #. type: textblock
11360 #: ../src/guestfs-actions.pod:3316
11361 msgid ""
11362 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
11363 "functions in order to query further information about each operating system, "
11364 "such as the name and version."
11365 msgstr ""
11366
11367 #. type: textblock
11368 #: ../src/guestfs-actions.pod:3321
11369 msgid ""
11370 "This function uses other libguestfs features such as C<guestfs_mount_ro> and "
11371 "C<guestfs_umount_all> in order to mount and unmount filesystems and look at "
11372 "the contents.  This should be called with no disks currently mounted.  The "
11373 "function may also use Augeas, so any existing Augeas handle will be closed."
11374 msgstr ""
11375
11376 #. type: textblock
11377 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2307
11378 msgid ""
11379 "This function cannot decrypt encrypted disks.  The caller must do that first "
11380 "(supplying the necessary keys) if the disk is encrypted."
11381 msgstr ""
11382
11383 #. type: textblock
11384 #: ../src/guestfs-actions.pod:3333 ../src/guestfs-actions.pod:3664 ../src/guestfs-actions.pod:3726
11385 msgid "See also C<guestfs_list_filesystems>."
11386 msgstr ""
11387
11388 #. type: =head2
11389 #: ../src/guestfs-actions.pod:3341
11390 msgid "guestfs_is_blockdev"
11391 msgstr ""
11392
11393 #. type: verbatim
11394 #: ../src/guestfs-actions.pod:3343
11395 #, no-wrap
11396 msgid ""
11397 " int\n"
11398 " guestfs_is_blockdev (guestfs_h *g,\n"
11399 "                      const char *path);\n"
11400 "\n"
11401 msgstr ""
11402
11403 #. type: textblock
11404 #: ../src/guestfs-actions.pod:3347 ../fish/guestfish-actions.pod:2319
11405 msgid ""
11406 "This returns C<true> if and only if there is a block device with the given "
11407 "C<path> name."
11408 msgstr ""
11409
11410 #. type: textblock
11411 #: ../src/guestfs-actions.pod:3350 ../src/guestfs-actions.pod:3379 ../src/guestfs-actions.pod:3409 ../src/guestfs-actions.pod:3424 ../src/guestfs-actions.pod:3440 ../src/guestfs-actions.pod:3496 ../src/guestfs-actions.pod:3511
11412 msgid "See also C<guestfs_stat>."
11413 msgstr ""
11414
11415 #. type: textblock
11416 #: ../src/guestfs-actions.pod:3354 ../src/guestfs-actions.pod:3383 ../src/guestfs-actions.pod:3428 ../src/guestfs-actions.pod:3500 ../src/guestfs-actions.pod:3515
11417 msgid "(Added in 1.5.10)"
11418 msgstr ""
11419
11420 #. type: =head2
11421 #: ../src/guestfs-actions.pod:3356
11422 msgid "guestfs_is_busy"
11423 msgstr ""
11424
11425 #. type: verbatim
11426 #: ../src/guestfs-actions.pod:3358
11427 #, no-wrap
11428 msgid ""
11429 " int\n"
11430 " guestfs_is_busy (guestfs_h *g);\n"
11431 "\n"
11432 msgstr ""
11433
11434 #. type: textblock
11435 #: ../src/guestfs-actions.pod:3361 ../fish/guestfish-actions.pod:2328
11436 msgid ""
11437 "This returns true iff this handle is busy processing a command (in the "
11438 "C<BUSY> state)."
11439 msgstr ""
11440
11441 #. type: =head2
11442 #: ../src/guestfs-actions.pod:3370
11443 msgid "guestfs_is_chardev"
11444 msgstr ""
11445
11446 #. type: verbatim
11447 #: ../src/guestfs-actions.pod:3372
11448 #, no-wrap
11449 msgid ""
11450 " int\n"
11451 " guestfs_is_chardev (guestfs_h *g,\n"
11452 "                     const char *path);\n"
11453 "\n"
11454 msgstr ""
11455
11456 #. type: textblock
11457 #: ../src/guestfs-actions.pod:3376 ../fish/guestfish-actions.pod:2337
11458 msgid ""
11459 "This returns C<true> if and only if there is a character device with the "
11460 "given C<path> name."
11461 msgstr ""
11462
11463 #. type: =head2
11464 #: ../src/guestfs-actions.pod:3385
11465 msgid "guestfs_is_config"
11466 msgstr ""
11467
11468 #. type: verbatim
11469 #: ../src/guestfs-actions.pod:3387
11470 #, no-wrap
11471 msgid ""
11472 " int\n"
11473 " guestfs_is_config (guestfs_h *g);\n"
11474 "\n"
11475 msgstr ""
11476
11477 #. type: textblock
11478 #: ../src/guestfs-actions.pod:3390 ../fish/guestfish-actions.pod:2346
11479 msgid ""
11480 "This returns true iff this handle is being configured (in the C<CONFIG> "
11481 "state)."
11482 msgstr ""
11483
11484 #. type: =head2
11485 #: ../src/guestfs-actions.pod:3399
11486 msgid "guestfs_is_dir"
11487 msgstr ""
11488
11489 #. type: verbatim
11490 #: ../src/guestfs-actions.pod:3401
11491 #, no-wrap
11492 msgid ""
11493 " int\n"
11494 " guestfs_is_dir (guestfs_h *g,\n"
11495 "                 const char *path);\n"
11496 "\n"
11497 msgstr ""
11498
11499 #. type: textblock
11500 #: ../src/guestfs-actions.pod:3405 ../fish/guestfish-actions.pod:2355
11501 msgid ""
11502 "This returns C<true> if and only if there is a directory with the given "
11503 "C<path> name.  Note that it returns false for other objects like files."
11504 msgstr ""
11505
11506 #. type: =head2
11507 #: ../src/guestfs-actions.pod:3415
11508 msgid "guestfs_is_fifo"
11509 msgstr ""
11510
11511 #. type: verbatim
11512 #: ../src/guestfs-actions.pod:3417
11513 #, no-wrap
11514 msgid ""
11515 " int\n"
11516 " guestfs_is_fifo (guestfs_h *g,\n"
11517 "                  const char *path);\n"
11518 "\n"
11519 msgstr ""
11520
11521 #. type: textblock
11522 #: ../src/guestfs-actions.pod:3421 ../fish/guestfish-actions.pod:2365
11523 msgid ""
11524 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
11525 "given C<path> name."
11526 msgstr ""
11527
11528 #. type: =head2
11529 #: ../src/guestfs-actions.pod:3430
11530 msgid "guestfs_is_file"
11531 msgstr ""
11532
11533 #. type: verbatim
11534 #: ../src/guestfs-actions.pod:3432
11535 #, no-wrap
11536 msgid ""
11537 " int\n"
11538 " guestfs_is_file (guestfs_h *g,\n"
11539 "                  const char *path);\n"
11540 "\n"
11541 msgstr ""
11542
11543 #. type: textblock
11544 #: ../src/guestfs-actions.pod:3436 ../fish/guestfish-actions.pod:2374
11545 msgid ""
11546 "This returns C<true> if and only if there is a regular file with the given "
11547 "C<path> name.  Note that it returns false for other objects like "
11548 "directories."
11549 msgstr ""
11550
11551 #. type: =head2
11552 #: ../src/guestfs-actions.pod:3446
11553 msgid "guestfs_is_launching"
11554 msgstr ""
11555
11556 #. type: verbatim
11557 #: ../src/guestfs-actions.pod:3448
11558 #, no-wrap
11559 msgid ""
11560 " int\n"
11561 " guestfs_is_launching (guestfs_h *g);\n"
11562 "\n"
11563 msgstr ""
11564
11565 #. type: textblock
11566 #: ../src/guestfs-actions.pod:3451 ../fish/guestfish-actions.pod:2384
11567 msgid ""
11568 "This returns true iff this handle is launching the subprocess (in the "
11569 "C<LAUNCHING> state)."
11570 msgstr ""
11571
11572 #. type: =head2
11573 #: ../src/guestfs-actions.pod:3460
11574 msgid "guestfs_is_lv"
11575 msgstr ""
11576
11577 #. type: verbatim
11578 #: ../src/guestfs-actions.pod:3462
11579 #, no-wrap
11580 msgid ""
11581 " int\n"
11582 " guestfs_is_lv (guestfs_h *g,\n"
11583 "                const char *device);\n"
11584 "\n"
11585 msgstr ""
11586
11587 #. type: textblock
11588 #: ../src/guestfs-actions.pod:3466 ../fish/guestfish-actions.pod:2393
11589 msgid ""
11590 "This command tests whether C<device> is a logical volume, and returns true "
11591 "iff this is the case."
11592 msgstr ""
11593
11594 #. type: =head2
11595 #: ../src/guestfs-actions.pod:3473
11596 msgid "guestfs_is_ready"
11597 msgstr ""
11598
11599 #. type: verbatim
11600 #: ../src/guestfs-actions.pod:3475
11601 #, no-wrap
11602 msgid ""
11603 " int\n"
11604 " guestfs_is_ready (guestfs_h *g);\n"
11605 "\n"
11606 msgstr ""
11607
11608 #. type: textblock
11609 #: ../src/guestfs-actions.pod:3478 ../fish/guestfish-actions.pod:2400
11610 msgid ""
11611 "This returns true iff this handle is ready to accept commands (in the "
11612 "C<READY> state)."
11613 msgstr ""
11614
11615 #. type: =head2
11616 #: ../src/guestfs-actions.pod:3487
11617 msgid "guestfs_is_socket"
11618 msgstr ""
11619
11620 #. type: verbatim
11621 #: ../src/guestfs-actions.pod:3489
11622 #, no-wrap
11623 msgid ""
11624 " int\n"
11625 " guestfs_is_socket (guestfs_h *g,\n"
11626 "                    const char *path);\n"
11627 "\n"
11628 msgstr ""
11629
11630 #. type: textblock
11631 #: ../src/guestfs-actions.pod:3493 ../fish/guestfish-actions.pod:2409
11632 msgid ""
11633 "This returns C<true> if and only if there is a Unix domain socket with the "
11634 "given C<path> name."
11635 msgstr ""
11636
11637 #. type: =head2
11638 #: ../src/guestfs-actions.pod:3502
11639 msgid "guestfs_is_symlink"
11640 msgstr ""
11641
11642 #. type: verbatim
11643 #: ../src/guestfs-actions.pod:3504
11644 #, no-wrap
11645 msgid ""
11646 " int\n"
11647 " guestfs_is_symlink (guestfs_h *g,\n"
11648 "                     const char *path);\n"
11649 "\n"
11650 msgstr ""
11651
11652 #. type: textblock
11653 #: ../src/guestfs-actions.pod:3508 ../fish/guestfish-actions.pod:2418
11654 msgid ""
11655 "This returns C<true> if and only if there is a symbolic link with the given "
11656 "C<path> name."
11657 msgstr ""
11658
11659 #. type: =head2
11660 #: ../src/guestfs-actions.pod:3517
11661 msgid "guestfs_is_zero"
11662 msgstr ""
11663
11664 #. type: verbatim
11665 #: ../src/guestfs-actions.pod:3519
11666 #, no-wrap
11667 msgid ""
11668 " int\n"
11669 " guestfs_is_zero (guestfs_h *g,\n"
11670 "                  const char *path);\n"
11671 "\n"
11672 msgstr ""
11673
11674 #. type: textblock
11675 #: ../src/guestfs-actions.pod:3523 ../fish/guestfish-actions.pod:2427
11676 msgid ""
11677 "This returns true iff the file exists and the file is empty or it contains "
11678 "all zero bytes."
11679 msgstr ""
11680
11681 #. type: textblock
11682 #: ../src/guestfs-actions.pod:3528 ../src/guestfs-actions.pod:3542
11683 msgid "(Added in 1.11.8)"
11684 msgstr ""
11685
11686 #. type: =head2
11687 #: ../src/guestfs-actions.pod:3530
11688 msgid "guestfs_is_zero_device"
11689 msgstr ""
11690
11691 #. type: verbatim
11692 #: ../src/guestfs-actions.pod:3532
11693 #, no-wrap
11694 msgid ""
11695 " int\n"
11696 " guestfs_is_zero_device (guestfs_h *g,\n"
11697 "                         const char *device);\n"
11698 "\n"
11699 msgstr ""
11700
11701 #. type: textblock
11702 #: ../src/guestfs-actions.pod:3536 ../fish/guestfish-actions.pod:2434
11703 msgid "This returns true iff the device exists and contains all zero bytes."
11704 msgstr ""
11705
11706 #. type: textblock
11707 #: ../src/guestfs-actions.pod:3538 ../fish/guestfish-actions.pod:2436
11708 msgid "Note that for large devices this can take a long time to run."
11709 msgstr ""
11710
11711 #. type: =head2
11712 #: ../src/guestfs-actions.pod:3544
11713 msgid "guestfs_kill_subprocess"
11714 msgstr ""
11715
11716 #. type: verbatim
11717 #: ../src/guestfs-actions.pod:3546
11718 #, no-wrap
11719 msgid ""
11720 " int\n"
11721 " guestfs_kill_subprocess (guestfs_h *g);\n"
11722 "\n"
11723 msgstr ""
11724
11725 #. type: textblock
11726 #: ../src/guestfs-actions.pod:3549 ../fish/guestfish-actions.pod:2442
11727 msgid "This kills the qemu subprocess.  You should never need to call this."
11728 msgstr ""
11729
11730 #. type: =head2
11731 #: ../src/guestfs-actions.pod:3555
11732 msgid "guestfs_launch"
11733 msgstr ""
11734
11735 #. type: verbatim
11736 #: ../src/guestfs-actions.pod:3557
11737 #, no-wrap
11738 msgid ""
11739 " int\n"
11740 " guestfs_launch (guestfs_h *g);\n"
11741 "\n"
11742 msgstr ""
11743
11744 #. type: textblock
11745 #: ../src/guestfs-actions.pod:3560 ../fish/guestfish-actions.pod:2450
11746 msgid ""
11747 "Internally libguestfs is implemented by running a virtual machine using "
11748 "L<qemu(1)>."
11749 msgstr ""
11750
11751 #. type: textblock
11752 #: ../src/guestfs-actions.pod:3563 ../fish/guestfish-actions.pod:2453
11753 msgid ""
11754 "You should call this after configuring the handle (eg. adding drives) but "
11755 "before performing any actions."
11756 msgstr ""
11757
11758 #. type: =head2
11759 #: ../src/guestfs-actions.pod:3575
11760 msgid "guestfs_lchown"
11761 msgstr ""
11762
11763 #. type: verbatim
11764 #: ../src/guestfs-actions.pod:3577
11765 #, no-wrap
11766 msgid ""
11767 " int\n"
11768 " guestfs_lchown (guestfs_h *g,\n"
11769 "                 int owner,\n"
11770 "                 int group,\n"
11771 "                 const char *path);\n"
11772 "\n"
11773 msgstr ""
11774
11775 #. type: textblock
11776 #: ../src/guestfs-actions.pod:3583
11777 msgid ""
11778 "Change the file owner to C<owner> and group to C<group>.  This is like "
11779 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
11780 "changed, not the target."
11781 msgstr ""
11782
11783 #. type: =head2
11784 #: ../src/guestfs-actions.pod:3595
11785 msgid "guestfs_lgetxattr"
11786 msgstr ""
11787
11788 #. type: verbatim
11789 #: ../src/guestfs-actions.pod:3597
11790 #, no-wrap
11791 msgid ""
11792 " char *\n"
11793 " guestfs_lgetxattr (guestfs_h *g,\n"
11794 "                    const char *path,\n"
11795 "                    const char *name,\n"
11796 "                    size_t *size_r);\n"
11797 "\n"
11798 msgstr ""
11799
11800 #. type: textblock
11801 #: ../src/guestfs-actions.pod:3603 ../fish/guestfish-actions.pod:2472
11802 msgid ""
11803 "Get a single extended attribute from file C<path> named C<name>.  If C<path> "
11804 "is a symlink, then this call returns an extended attribute from the symlink."
11805 msgstr ""
11806
11807 #. type: textblock
11808 #: ../src/guestfs-actions.pod:3617
11809 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
11810 msgstr ""
11811
11812 #. type: =head2
11813 #: ../src/guestfs-actions.pod:3625
11814 msgid "guestfs_lgetxattrs"
11815 msgstr ""
11816
11817 #. type: verbatim
11818 #: ../src/guestfs-actions.pod:3627
11819 #, no-wrap
11820 msgid ""
11821 " struct guestfs_xattr_list *\n"
11822 " guestfs_lgetxattrs (guestfs_h *g,\n"
11823 "                     const char *path);\n"
11824 "\n"
11825 msgstr ""
11826
11827 #. type: textblock
11828 #: ../src/guestfs-actions.pod:3631
11829 msgid ""
11830 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link, "
11831 "then it returns the extended attributes of the link itself."
11832 msgstr ""
11833
11834 #. type: =head2
11835 #: ../src/guestfs-actions.pod:3641
11836 msgid "guestfs_list_9p"
11837 msgstr ""
11838
11839 #. type: verbatim
11840 #: ../src/guestfs-actions.pod:3643
11841 #, no-wrap
11842 msgid ""
11843 " char **\n"
11844 " guestfs_list_9p (guestfs_h *g);\n"
11845 "\n"
11846 msgstr ""
11847
11848 #. type: textblock
11849 #: ../src/guestfs-actions.pod:3646 ../fish/guestfish-actions.pod:2500
11850 msgid ""
11851 "List all 9p filesystems attached to the guest.  A list of mount tags is "
11852 "returned."
11853 msgstr ""
11854
11855 #. type: =head2
11856 #: ../src/guestfs-actions.pod:3655
11857 msgid "guestfs_list_devices"
11858 msgstr ""
11859
11860 #. type: verbatim
11861 #: ../src/guestfs-actions.pod:3657
11862 #, no-wrap
11863 msgid ""
11864 " char **\n"
11865 " guestfs_list_devices (guestfs_h *g);\n"
11866 "\n"
11867 msgstr ""
11868
11869 #. type: textblock
11870 #: ../src/guestfs-actions.pod:3660 ../fish/guestfish-actions.pod:2507
11871 msgid "List all the block devices."
11872 msgstr ""
11873
11874 #. type: textblock
11875 #: ../src/guestfs-actions.pod:3662 ../fish/guestfish-actions.pod:2509
11876 msgid "The full block device names are returned, eg. C</dev/sda>."
11877 msgstr ""
11878
11879 #. type: =head2
11880 #: ../src/guestfs-actions.pod:3672
11881 msgid "guestfs_list_filesystems"
11882 msgstr ""
11883
11884 #. type: verbatim
11885 #: ../src/guestfs-actions.pod:3674
11886 #, no-wrap
11887 msgid ""
11888 " char **\n"
11889 " guestfs_list_filesystems (guestfs_h *g);\n"
11890 "\n"
11891 msgstr ""
11892
11893 #. type: textblock
11894 #: ../src/guestfs-actions.pod:3677 ../fish/guestfish-actions.pod:2517
11895 msgid ""
11896 "This inspection command looks for filesystems on partitions, block devices "
11897 "and logical volumes, returning a list of devices containing filesystems and "
11898 "their type."
11899 msgstr ""
11900
11901 #. type: textblock
11902 #: ../src/guestfs-actions.pod:3681 ../fish/guestfish-actions.pod:2521
11903 msgid ""
11904 "The return value is a hash, where the keys are the devices containing "
11905 "filesystems, and the values are the filesystem types.  For example:"
11906 msgstr ""
11907
11908 #. type: verbatim
11909 #: ../src/guestfs-actions.pod:3685 ../fish/guestfish-actions.pod:2525
11910 #, no-wrap
11911 msgid ""
11912 " \"/dev/sda1\" => \"ntfs\"\n"
11913 " \"/dev/sda2\" => \"ext2\"\n"
11914 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
11915 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
11916 "\n"
11917 msgstr ""
11918
11919 #. type: textblock
11920 #: ../src/guestfs-actions.pod:3690 ../fish/guestfish-actions.pod:2530
11921 msgid ""
11922 "The value can have the special value \"unknown\", meaning the content of the "
11923 "device is undetermined or empty.  \"swap\" means a Linux swap partition."
11924 msgstr ""
11925
11926 #. type: textblock
11927 #: ../src/guestfs-actions.pod:3694
11928 msgid ""
11929 "This command runs other libguestfs commands, which might include "
11930 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
11931 "soon after launch and only when nothing is mounted."
11932 msgstr ""
11933
11934 #. type: textblock
11935 #: ../src/guestfs-actions.pod:3698
11936 msgid ""
11937 "Not all of the filesystems returned will be mountable.  In particular, swap "
11938 "partitions are returned in the list.  Also this command does not check that "
11939 "each filesystem found is valid and mountable, and some filesystems might be "
11940 "mountable but require special options.  Filesystems may not all belong to a "
11941 "single logical operating system (use C<guestfs_inspect_os> to look for "
11942 "OSes)."
11943 msgstr ""
11944
11945 #. type: textblock
11946 #: ../src/guestfs-actions.pod:3712 ../src/guestfs-actions.pod:5386
11947 msgid "(Added in 1.5.15)"
11948 msgstr ""
11949
11950 #. type: =head2
11951 #: ../src/guestfs-actions.pod:3714
11952 msgid "guestfs_list_partitions"
11953 msgstr ""
11954
11955 #. type: verbatim
11956 #: ../src/guestfs-actions.pod:3716
11957 #, no-wrap
11958 msgid ""
11959 " char **\n"
11960 " guestfs_list_partitions (guestfs_h *g);\n"
11961 "\n"
11962 msgstr ""
11963
11964 #. type: textblock
11965 #: ../src/guestfs-actions.pod:3719 ../fish/guestfish-actions.pod:2550
11966 msgid "List all the partitions detected on all block devices."
11967 msgstr ""
11968
11969 #. type: textblock
11970 #: ../src/guestfs-actions.pod:3721 ../fish/guestfish-actions.pod:2552
11971 msgid "The full partition device names are returned, eg. C</dev/sda1>"
11972 msgstr ""
11973
11974 #. type: textblock
11975 #: ../src/guestfs-actions.pod:3723
11976 msgid ""
11977 "This does not return logical volumes.  For that you will need to call "
11978 "C<guestfs_lvs>."
11979 msgstr ""
11980
11981 #. type: =head2
11982 #: ../src/guestfs-actions.pod:3734
11983 msgid "guestfs_ll"
11984 msgstr ""
11985
11986 #. type: verbatim
11987 #: ../src/guestfs-actions.pod:3736
11988 #, no-wrap
11989 msgid ""
11990 " char *\n"
11991 " guestfs_ll (guestfs_h *g,\n"
11992 "             const char *directory);\n"
11993 "\n"
11994 msgstr ""
11995
11996 #. type: textblock
11997 #: ../src/guestfs-actions.pod:3740 ../fish/guestfish-actions.pod:2563
11998 msgid ""
11999 "List the files in C<directory> (relative to the root directory, there is no "
12000 "cwd) in the format of 'ls -la'."
12001 msgstr ""
12002
12003 #. type: textblock
12004 #: ../src/guestfs-actions.pod:3743 ../fish/guestfish-actions.pod:2566
12005 msgid ""
12006 "This command is mostly useful for interactive sessions.  It is I<not> "
12007 "intended that you try to parse the output string."
12008 msgstr ""
12009
12010 #. type: =head2
12011 #: ../src/guestfs-actions.pod:3751
12012 msgid "guestfs_ln"
12013 msgstr ""
12014
12015 #. type: verbatim
12016 #: ../src/guestfs-actions.pod:3753
12017 #, no-wrap
12018 msgid ""
12019 " int\n"
12020 " guestfs_ln (guestfs_h *g,\n"
12021 "             const char *target,\n"
12022 "             const char *linkname);\n"
12023 "\n"
12024 msgstr ""
12025
12026 #. type: textblock
12027 #: ../src/guestfs-actions.pod:3758 ../fish/guestfish-actions.pod:2573
12028 msgid "This command creates a hard link using the C<ln> command."
12029 msgstr ""
12030
12031 #. type: =head2
12032 #: ../src/guestfs-actions.pod:3764
12033 msgid "guestfs_ln_f"
12034 msgstr ""
12035
12036 #. type: verbatim
12037 #: ../src/guestfs-actions.pod:3766
12038 #, no-wrap
12039 msgid ""
12040 " int\n"
12041 " guestfs_ln_f (guestfs_h *g,\n"
12042 "               const char *target,\n"
12043 "               const char *linkname);\n"
12044 "\n"
12045 msgstr ""
12046
12047 #. type: textblock
12048 #: ../src/guestfs-actions.pod:3771 ../fish/guestfish-actions.pod:2579
12049 msgid ""
12050 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12051 "option removes the link (C<linkname>) if it exists already."
12052 msgstr ""
12053
12054 #. type: =head2
12055 #: ../src/guestfs-actions.pod:3778
12056 msgid "guestfs_ln_s"
12057 msgstr ""
12058
12059 #. type: verbatim
12060 #: ../src/guestfs-actions.pod:3780
12061 #, no-wrap
12062 msgid ""
12063 " int\n"
12064 " guestfs_ln_s (guestfs_h *g,\n"
12065 "               const char *target,\n"
12066 "               const char *linkname);\n"
12067 "\n"
12068 msgstr ""
12069
12070 #. type: textblock
12071 #: ../src/guestfs-actions.pod:3785 ../fish/guestfish-actions.pod:2586
12072 msgid "This command creates a symbolic link using the C<ln -s> command."
12073 msgstr ""
12074
12075 #. type: =head2
12076 #: ../src/guestfs-actions.pod:3791
12077 msgid "guestfs_ln_sf"
12078 msgstr ""
12079
12080 #. type: verbatim
12081 #: ../src/guestfs-actions.pod:3793
12082 #, no-wrap
12083 msgid ""
12084 " int\n"
12085 " guestfs_ln_sf (guestfs_h *g,\n"
12086 "                const char *target,\n"
12087 "                const char *linkname);\n"
12088 "\n"
12089 msgstr ""
12090
12091 #. type: textblock
12092 #: ../src/guestfs-actions.pod:3798 ../fish/guestfish-actions.pod:2592
12093 msgid ""
12094 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12095 "option removes the link (C<linkname>) if it exists already."
12096 msgstr ""
12097
12098 #. type: =head2
12099 #: ../src/guestfs-actions.pod:3805
12100 msgid "guestfs_lremovexattr"
12101 msgstr ""
12102
12103 #. type: verbatim
12104 #: ../src/guestfs-actions.pod:3807
12105 #, no-wrap
12106 msgid ""
12107 " int\n"
12108 " guestfs_lremovexattr (guestfs_h *g,\n"
12109 "                       const char *xattr,\n"
12110 "                       const char *path);\n"
12111 "\n"
12112 msgstr ""
12113
12114 #. type: textblock
12115 #: ../src/guestfs-actions.pod:3812
12116 msgid ""
12117 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12118 "link, then it removes an extended attribute of the link itself."
12119 msgstr ""
12120
12121 #. type: =head2
12122 #: ../src/guestfs-actions.pod:3820
12123 msgid "guestfs_ls"
12124 msgstr ""
12125
12126 #. type: verbatim
12127 #: ../src/guestfs-actions.pod:3822
12128 #, no-wrap
12129 msgid ""
12130 " char **\n"
12131 " guestfs_ls (guestfs_h *g,\n"
12132 "             const char *directory);\n"
12133 "\n"
12134 msgstr ""
12135
12136 #. type: textblock
12137 #: ../src/guestfs-actions.pod:3826 ../fish/guestfish-actions.pod:2607
12138 msgid ""
12139 "List the files in C<directory> (relative to the root directory, there is no "
12140 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
12141 "shown."
12142 msgstr ""
12143
12144 #. type: textblock
12145 #: ../src/guestfs-actions.pod:3830
12146 msgid ""
12147 "This command is mostly useful for interactive sessions.  Programs should "
12148 "probably use C<guestfs_readdir> instead."
12149 msgstr ""
12150
12151 #. type: =head2
12152 #: ../src/guestfs-actions.pod:3839
12153 msgid "guestfs_lsetxattr"
12154 msgstr ""
12155
12156 #. type: verbatim
12157 #: ../src/guestfs-actions.pod:3841
12158 #, no-wrap
12159 msgid ""
12160 " int\n"
12161 " guestfs_lsetxattr (guestfs_h *g,\n"
12162 "                    const char *xattr,\n"
12163 "                    const char *val,\n"
12164 "                    int vallen,\n"
12165 "                    const char *path);\n"
12166 "\n"
12167 msgstr ""
12168
12169 #. type: textblock
12170 #: ../src/guestfs-actions.pod:3848
12171 msgid ""
12172 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12173 "then it sets an extended attribute of the link itself."
12174 msgstr ""
12175
12176 #. type: =head2
12177 #: ../src/guestfs-actions.pod:3856
12178 msgid "guestfs_lstat"
12179 msgstr ""
12180
12181 #. type: verbatim
12182 #: ../src/guestfs-actions.pod:3858
12183 #, no-wrap
12184 msgid ""
12185 " struct guestfs_stat *\n"
12186 " guestfs_lstat (guestfs_h *g,\n"
12187 "                const char *path);\n"
12188 "\n"
12189 msgstr ""
12190
12191 #. type: textblock
12192 #: ../src/guestfs-actions.pod:3862 ../src/guestfs-actions.pod:6521 ../fish/guestfish-actions.pod:2626 ../fish/guestfish-actions.pod:4353
12193 msgid "Returns file information for the given C<path>."
12194 msgstr ""
12195
12196 #. type: textblock
12197 #: ../src/guestfs-actions.pod:3864
12198 msgid ""
12199 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12200 "link, then the link is stat-ed, not the file it refers to."
12201 msgstr ""
12202
12203 #. type: textblock
12204 #: ../src/guestfs-actions.pod:3868 ../fish/guestfish-actions.pod:2632
12205 msgid "This is the same as the C<lstat(2)> system call."
12206 msgstr ""
12207
12208 #. type: textblock
12209 #: ../src/guestfs-actions.pod:3870 ../src/guestfs-actions.pod:6525
12210 msgid ""
12211 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12212 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12213 msgstr ""
12214
12215 #. type: textblock
12216 #: ../src/guestfs-actions.pod:3874 ../src/guestfs-actions.pod:6529 ../src/guestfs-actions.pod:6547 ../src/guestfs-actions.pod:6928
12217 msgid "(Added in 0.9.2)"
12218 msgstr ""
12219
12220 #. type: =head2
12221 #: ../src/guestfs-actions.pod:3876
12222 msgid "guestfs_lstatlist"
12223 msgstr ""
12224
12225 #. type: verbatim
12226 #: ../src/guestfs-actions.pod:3878
12227 #, no-wrap
12228 msgid ""
12229 " struct guestfs_stat_list *\n"
12230 " guestfs_lstatlist (guestfs_h *g,\n"
12231 "                    const char *path,\n"
12232 "                    char *const *names);\n"
12233 "\n"
12234 msgstr ""
12235
12236 #. type: textblock
12237 #: ../src/guestfs-actions.pod:3883
12238 msgid ""
12239 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12240 "files, where all files are in the directory C<path>.  C<names> is the list "
12241 "of files from this directory."
12242 msgstr ""
12243
12244 #. type: textblock
12245 #: ../src/guestfs-actions.pod:3887 ../fish/guestfish-actions.pod:2642
12246 msgid ""
12247 "On return you get a list of stat structs, with a one-to-one correspondence "
12248 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
12249 "then the C<ino> field of that structure is set to C<-1>."
12250 msgstr ""
12251
12252 #. type: textblock
12253 #: ../src/guestfs-actions.pod:3892
12254 msgid ""
12255 "This call is intended for programs that want to efficiently list a directory "
12256 "contents without making many round-trips.  See also C<guestfs_lxattrlist> "
12257 "for a similarly efficient call for getting extended attributes.  Very long "
12258 "directory listings might cause the protocol message size to be exceeded, "
12259 "causing this call to fail.  The caller must split up such requests into "
12260 "smaller groups of names."
12261 msgstr ""
12262
12263 #. type: textblock
12264 #: ../src/guestfs-actions.pod:3900
12265 msgid ""
12266 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
12267 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
12268 msgstr ""
12269
12270 #. type: =head2
12271 #: ../src/guestfs-actions.pod:3906
12272 msgid "guestfs_luks_add_key"
12273 msgstr ""
12274
12275 #. type: verbatim
12276 #: ../src/guestfs-actions.pod:3908
12277 #, no-wrap
12278 msgid ""
12279 " int\n"
12280 " guestfs_luks_add_key (guestfs_h *g,\n"
12281 "                       const char *device,\n"
12282 "                       const char *key,\n"
12283 "                       const char *newkey,\n"
12284 "                       int keyslot);\n"
12285 "\n"
12286 msgstr ""
12287
12288 #. type: textblock
12289 #: ../src/guestfs-actions.pod:3915 ../fish/guestfish-actions.pod:2659
12290 msgid ""
12291 "This command adds a new key on LUKS device C<device>.  C<key> is any "
12292 "existing key, and is used to access the device.  C<newkey> is the new key to "
12293 "add.  C<keyslot> is the key slot that will be replaced."
12294 msgstr ""
12295
12296 #. type: textblock
12297 #: ../src/guestfs-actions.pod:3920
12298 msgid ""
12299 "Note that if C<keyslot> already contains a key, then this command will "
12300 "fail.  You have to use C<guestfs_luks_kill_slot> first to remove that key."
12301 msgstr ""
12302
12303 #. type: textblock
12304 #: ../src/guestfs-actions.pod:3926 ../src/guestfs-actions.pod:3966 ../src/guestfs-actions.pod:3989 ../src/guestfs-actions.pod:4009 ../src/guestfs-actions.pod:4041 ../src/guestfs-actions.pod:4060
12305 msgid ""
12306 "This function takes a key or passphrase parameter which could contain "
12307 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
12308 "information."
12309 msgstr ""
12310
12311 #. type: textblock
12312 #: ../src/guestfs-actions.pod:3930 ../src/guestfs-actions.pod:3970 ../src/guestfs-actions.pod:3993 ../src/guestfs-actions.pod:4013
12313 msgid "(Added in 1.5.2)"
12314 msgstr ""
12315
12316 #. type: =head2
12317 #: ../src/guestfs-actions.pod:3932
12318 msgid "guestfs_luks_close"
12319 msgstr ""
12320
12321 #. type: verbatim
12322 #: ../src/guestfs-actions.pod:3934
12323 #, no-wrap
12324 msgid ""
12325 " int\n"
12326 " guestfs_luks_close (guestfs_h *g,\n"
12327 "                     const char *device);\n"
12328 "\n"
12329 msgstr ""
12330
12331 #. type: textblock
12332 #: ../src/guestfs-actions.pod:3938
12333 msgid ""
12334 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
12335 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the "
12336 "LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
12337 "underlying block device."
12338 msgstr ""
12339
12340 #. type: textblock
12341 #: ../src/guestfs-actions.pod:3946 ../src/guestfs-actions.pod:4045 ../src/guestfs-actions.pod:4064 ../src/guestfs-actions.pod:4114 ../src/guestfs-actions.pod:4162
12342 msgid "(Added in 1.5.1)"
12343 msgstr ""
12344
12345 #. type: =head2
12346 #: ../src/guestfs-actions.pod:3948
12347 msgid "guestfs_luks_format"
12348 msgstr ""
12349
12350 #. type: verbatim
12351 #: ../src/guestfs-actions.pod:3950
12352 #, no-wrap
12353 msgid ""
12354 " int\n"
12355 " guestfs_luks_format (guestfs_h *g,\n"
12356 "                      const char *device,\n"
12357 "                      const char *key,\n"
12358 "                      int keyslot);\n"
12359 "\n"
12360 msgstr ""
12361
12362 #. type: textblock
12363 #: ../src/guestfs-actions.pod:3956 ../fish/guestfish-actions.pod:2685
12364 msgid ""
12365 "This command erases existing data on C<device> and formats the device as a "
12366 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
12367 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
12368 msgstr ""
12369
12370 #. type: textblock
12371 #: ../src/guestfs-actions.pod:3963 ../src/guestfs-actions.pod:3986 ../src/guestfs-actions.pod:4126 ../src/guestfs-actions.pod:5137 ../src/guestfs-actions.pod:5919 ../src/guestfs-actions.pod:6328 ../src/guestfs-actions.pod:6358 ../src/guestfs-actions.pod:6391 ../src/guestfs-actions.pod:7573 ../fish/guestfish-actions.pod:2693 ../fish/guestfish-actions.pod:2706 ../fish/guestfish-actions.pod:2790 ../fish/guestfish-actions.pod:3394 ../fish/guestfish-actions.pod:3914 ../fish/guestfish-actions.pod:4224 ../fish/guestfish-actions.pod:4247 ../fish/guestfish-actions.pod:4269 ../fish/guestfish-actions.pod:4999
12372 msgid ""
12373 "B<This command is dangerous.  Without careful use you can easily destroy all "
12374 "your data>."
12375 msgstr ""
12376
12377 #. type: =head2
12378 #: ../src/guestfs-actions.pod:3972
12379 msgid "guestfs_luks_format_cipher"
12380 msgstr ""
12381
12382 #. type: verbatim
12383 #: ../src/guestfs-actions.pod:3974
12384 #, no-wrap
12385 msgid ""
12386 " int\n"
12387 " guestfs_luks_format_cipher (guestfs_h *g,\n"
12388 "                             const char *device,\n"
12389 "                             const char *key,\n"
12390 "                             int keyslot,\n"
12391 "                             const char *cipher);\n"
12392 "\n"
12393 msgstr ""
12394
12395 #. type: textblock
12396 #: ../src/guestfs-actions.pod:3981
12397 msgid ""
12398 "This command is the same as C<guestfs_luks_format> but it also allows you to "
12399 "set the C<cipher> used."
12400 msgstr ""
12401
12402 #. type: =head2
12403 #: ../src/guestfs-actions.pod:3995
12404 msgid "guestfs_luks_kill_slot"
12405 msgstr ""
12406
12407 #. type: verbatim
12408 #: ../src/guestfs-actions.pod:3997
12409 #, no-wrap
12410 msgid ""
12411 " int\n"
12412 " guestfs_luks_kill_slot (guestfs_h *g,\n"
12413 "                         const char *device,\n"
12414 "                         const char *key,\n"
12415 "                         int keyslot);\n"
12416 "\n"
12417 msgstr ""
12418
12419 #. type: textblock
12420 #: ../src/guestfs-actions.pod:4003 ../fish/guestfish-actions.pod:2713
12421 msgid ""
12422 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
12423 "device C<device>.  C<key> must be one of the I<other> keys."
12424 msgstr ""
12425
12426 #. type: =head2
12427 #: ../src/guestfs-actions.pod:4015
12428 msgid "guestfs_luks_open"
12429 msgstr ""
12430
12431 #. type: verbatim
12432 #: ../src/guestfs-actions.pod:4017
12433 #, no-wrap
12434 msgid ""
12435 " int\n"
12436 " guestfs_luks_open (guestfs_h *g,\n"
12437 "                    const char *device,\n"
12438 "                    const char *key,\n"
12439 "                    const char *mapname);\n"
12440 "\n"
12441 msgstr ""
12442
12443 #. type: textblock
12444 #: ../src/guestfs-actions.pod:4023 ../fish/guestfish-actions.pod:2724
12445 msgid ""
12446 "This command opens a block device which has been encrypted according to the "
12447 "Linux Unified Key Setup (LUKS) standard."
12448 msgstr ""
12449
12450 #. type: textblock
12451 #: ../src/guestfs-actions.pod:4026 ../fish/guestfish-actions.pod:2727
12452 msgid "C<device> is the encrypted block device or partition."
12453 msgstr ""
12454
12455 #. type: textblock
12456 #: ../src/guestfs-actions.pod:4028 ../fish/guestfish-actions.pod:2729
12457 msgid ""
12458 "The caller must supply one of the keys associated with the LUKS block "
12459 "device, in the C<key> parameter."
12460 msgstr ""
12461
12462 #. type: textblock
12463 #: ../src/guestfs-actions.pod:4031 ../fish/guestfish-actions.pod:2732
12464 msgid ""
12465 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
12466 "writes to this block device are decrypted from and encrypted to the "
12467 "underlying C<device> respectively."
12468 msgstr ""
12469
12470 #. type: textblock
12471 #: ../src/guestfs-actions.pod:4035
12472 msgid ""
12473 "If this block device contains LVM volume groups, then calling "
12474 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
12475 "visible."
12476 msgstr ""
12477
12478 #. type: =head2
12479 #: ../src/guestfs-actions.pod:4047
12480 msgid "guestfs_luks_open_ro"
12481 msgstr ""
12482
12483 #. type: verbatim
12484 #: ../src/guestfs-actions.pod:4049
12485 #, no-wrap
12486 msgid ""
12487 " int\n"
12488 " guestfs_luks_open_ro (guestfs_h *g,\n"
12489 "                       const char *device,\n"
12490 "                       const char *key,\n"
12491 "                       const char *mapname);\n"
12492 "\n"
12493 msgstr ""
12494
12495 #. type: textblock
12496 #: ../src/guestfs-actions.pod:4055
12497 msgid ""
12498 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
12499 "created."
12500 msgstr ""
12501
12502 #. type: =head2
12503 #: ../src/guestfs-actions.pod:4066
12504 msgid "guestfs_lvcreate"
12505 msgstr ""
12506
12507 #. type: verbatim
12508 #: ../src/guestfs-actions.pod:4068
12509 #, no-wrap
12510 msgid ""
12511 " int\n"
12512 " guestfs_lvcreate (guestfs_h *g,\n"
12513 "                   const char *logvol,\n"
12514 "                   const char *volgroup,\n"
12515 "                   int mbytes);\n"
12516 "\n"
12517 msgstr ""
12518
12519 #. type: textblock
12520 #: ../src/guestfs-actions.pod:4074 ../fish/guestfish-actions.pod:2757
12521 msgid ""
12522 "This creates an LVM logical volume called C<logvol> on the volume group "
12523 "C<volgroup>, with C<size> megabytes."
12524 msgstr ""
12525
12526 #. type: =head2
12527 #: ../src/guestfs-actions.pod:4081
12528 msgid "guestfs_lvm_canonical_lv_name"
12529 msgstr ""
12530
12531 #. type: verbatim
12532 #: ../src/guestfs-actions.pod:4083
12533 #, no-wrap
12534 msgid ""
12535 " char *\n"
12536 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
12537 "                                const char *lvname);\n"
12538 "\n"
12539 msgstr ""
12540
12541 #. type: textblock
12542 #: ../src/guestfs-actions.pod:4087 ../fish/guestfish-actions.pod:2764
12543 msgid ""
12544 "This converts alternative naming schemes for LVs that you might find to the "
12545 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
12546 "C</dev/VG/LV>."
12547 msgstr ""
12548
12549 #. type: textblock
12550 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2768
12551 msgid ""
12552 "This command returns an error if the C<lvname> parameter does not refer to a "
12553 "logical volume."
12554 msgstr ""
12555
12556 #. type: textblock
12557 #: ../src/guestfs-actions.pod:4094
12558 msgid "See also C<guestfs_is_lv>."
12559 msgstr ""
12560
12561 #. type: textblock
12562 #: ../src/guestfs-actions.pod:4099
12563 msgid "(Added in 1.5.24)"
12564 msgstr ""
12565
12566 #. type: =head2
12567 #: ../src/guestfs-actions.pod:4101
12568 msgid "guestfs_lvm_clear_filter"
12569 msgstr ""
12570
12571 #. type: verbatim
12572 #: ../src/guestfs-actions.pod:4103
12573 #, no-wrap
12574 msgid ""
12575 " int\n"
12576 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
12577 "\n"
12578 msgstr ""
12579
12580 #. type: textblock
12581 #: ../src/guestfs-actions.pod:4106
12582 msgid ""
12583 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
12584 "see every block device."
12585 msgstr ""
12586
12587 #. type: textblock
12588 #: ../src/guestfs-actions.pod:4109 ../src/guestfs-actions.pod:4151 ../fish/guestfish-actions.pod:2780 ../fish/guestfish-actions.pod:2811
12589 msgid "This command also clears the LVM cache and performs a volume group scan."
12590 msgstr ""
12591
12592 #. type: =head2
12593 #: ../src/guestfs-actions.pod:4116
12594 msgid "guestfs_lvm_remove_all"
12595 msgstr ""
12596
12597 #. type: verbatim
12598 #: ../src/guestfs-actions.pod:4118
12599 #, no-wrap
12600 msgid ""
12601 " int\n"
12602 " guestfs_lvm_remove_all (guestfs_h *g);\n"
12603 "\n"
12604 msgstr ""
12605
12606 #. type: textblock
12607 #: ../src/guestfs-actions.pod:4121 ../fish/guestfish-actions.pod:2787
12608 msgid ""
12609 "This command removes all LVM logical volumes, volume groups and physical "
12610 "volumes."
12611 msgstr ""
12612
12613 #. type: =head2
12614 #: ../src/guestfs-actions.pod:4131
12615 msgid "guestfs_lvm_set_filter"
12616 msgstr ""
12617
12618 #. type: verbatim
12619 #: ../src/guestfs-actions.pod:4133
12620 #, no-wrap
12621 msgid ""
12622 " int\n"
12623 " guestfs_lvm_set_filter (guestfs_h *g,\n"
12624 "                         char *const *devices);\n"
12625 "\n"
12626 msgstr ""
12627
12628 #. type: textblock
12629 #: ../src/guestfs-actions.pod:4137 ../fish/guestfish-actions.pod:2797
12630 msgid ""
12631 "This sets the LVM device filter so that LVM will only be able to \"see\" the "
12632 "block devices in the list C<devices>, and will ignore all other attached "
12633 "block devices."
12634 msgstr ""
12635
12636 #. type: textblock
12637 #: ../src/guestfs-actions.pod:4141 ../fish/guestfish-actions.pod:2801
12638 msgid ""
12639 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
12640 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also "
12641 "there are two types of duplication possible: either cloned PVs/VGs which "
12642 "have identical UUIDs; or VGs that are not cloned but just happen to have the "
12643 "same name.  In normal operation you cannot create this situation, but you "
12644 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
12645 "inside the LVM metadata."
12646 msgstr ""
12647
12648 #. type: textblock
12649 #: ../src/guestfs-actions.pod:4154 ../fish/guestfish-actions.pod:2814
12650 msgid "You can filter whole block devices or individual partitions."
12651 msgstr ""
12652
12653 #. type: textblock
12654 #: ../src/guestfs-actions.pod:4156 ../fish/guestfish-actions.pod:2816
12655 msgid ""
12656 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
12657 "filesystem), even if you are not filtering out that VG."
12658 msgstr ""
12659
12660 #. type: =head2
12661 #: ../src/guestfs-actions.pod:4164
12662 msgid "guestfs_lvremove"
12663 msgstr ""
12664
12665 #. type: verbatim
12666 #: ../src/guestfs-actions.pod:4166
12667 #, no-wrap
12668 msgid ""
12669 " int\n"
12670 " guestfs_lvremove (guestfs_h *g,\n"
12671 "                   const char *device);\n"
12672 "\n"
12673 msgstr ""
12674
12675 #. type: textblock
12676 #: ../src/guestfs-actions.pod:4170 ../fish/guestfish-actions.pod:2824
12677 msgid ""
12678 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
12679 "LV, such as C</dev/VG/LV>."
12680 msgstr ""
12681
12682 #. type: textblock
12683 #: ../src/guestfs-actions.pod:4173 ../fish/guestfish-actions.pod:2827
12684 msgid ""
12685 "You can also remove all LVs in a volume group by specifying the VG name, "
12686 "C</dev/VG>."
12687 msgstr ""
12688
12689 #. type: textblock
12690 #: ../src/guestfs-actions.pod:4178 ../src/guestfs-actions.pod:5483 ../src/guestfs-actions.pod:7304
12691 msgid "(Added in 1.0.13)"
12692 msgstr ""
12693
12694 #. type: =head2
12695 #: ../src/guestfs-actions.pod:4180
12696 msgid "guestfs_lvrename"
12697 msgstr ""
12698
12699 #. type: verbatim
12700 #: ../src/guestfs-actions.pod:4182
12701 #, no-wrap
12702 msgid ""
12703 " int\n"
12704 " guestfs_lvrename (guestfs_h *g,\n"
12705 "                   const char *logvol,\n"
12706 "                   const char *newlogvol);\n"
12707 "\n"
12708 msgstr ""
12709
12710 #. type: textblock
12711 #: ../src/guestfs-actions.pod:4187 ../fish/guestfish-actions.pod:2834
12712 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
12713 msgstr ""
12714
12715 #. type: textblock
12716 #: ../src/guestfs-actions.pod:4191 ../src/guestfs-actions.pod:7317
12717 msgid "(Added in 1.0.83)"
12718 msgstr ""
12719
12720 #. type: =head2
12721 #: ../src/guestfs-actions.pod:4193
12722 msgid "guestfs_lvresize"
12723 msgstr ""
12724
12725 #. type: verbatim
12726 #: ../src/guestfs-actions.pod:4195
12727 #, no-wrap
12728 msgid ""
12729 " int\n"
12730 " guestfs_lvresize (guestfs_h *g,\n"
12731 "                   const char *device,\n"
12732 "                   int mbytes);\n"
12733 "\n"
12734 msgstr ""
12735
12736 #. type: textblock
12737 #: ../src/guestfs-actions.pod:4200 ../fish/guestfish-actions.pod:2840
12738 msgid ""
12739 "This resizes (expands or shrinks) an existing LVM logical volume to "
12740 "C<mbytes>.  When reducing, data in the reduced part is lost."
12741 msgstr ""
12742
12743 #. type: =head2
12744 #: ../src/guestfs-actions.pod:4208
12745 msgid "guestfs_lvresize_free"
12746 msgstr ""
12747
12748 #. type: verbatim
12749 #: ../src/guestfs-actions.pod:4210
12750 #, no-wrap
12751 msgid ""
12752 " int\n"
12753 " guestfs_lvresize_free (guestfs_h *g,\n"
12754 "                        const char *lv,\n"
12755 "                        int percent);\n"
12756 "\n"
12757 msgstr ""
12758
12759 #. type: textblock
12760 #: ../src/guestfs-actions.pod:4215 ../fish/guestfish-actions.pod:2848
12761 msgid ""
12762 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the "
12763 "remaining free space in the volume group.  Commonly you would call this with "
12764 "pc = 100 which expands the logical volume as much as possible, using all "
12765 "remaining free space in the volume group."
12766 msgstr ""
12767
12768 #. type: textblock
12769 #: ../src/guestfs-actions.pod:4223
12770 msgid "(Added in 1.3.3)"
12771 msgstr ""
12772
12773 #. type: =head2
12774 #: ../src/guestfs-actions.pod:4225
12775 msgid "guestfs_lvs"
12776 msgstr ""
12777
12778 #. type: verbatim
12779 #: ../src/guestfs-actions.pod:4227
12780 #, no-wrap
12781 msgid ""
12782 " char **\n"
12783 " guestfs_lvs (guestfs_h *g);\n"
12784 "\n"
12785 msgstr ""
12786
12787 #. type: textblock
12788 #: ../src/guestfs-actions.pod:4230 ../fish/guestfish-actions.pod:2858
12789 msgid ""
12790 "List all the logical volumes detected.  This is the equivalent of the "
12791 "L<lvs(8)> command."
12792 msgstr ""
12793
12794 #. type: textblock
12795 #: ../src/guestfs-actions.pod:4233 ../fish/guestfish-actions.pod:2861
12796 msgid ""
12797 "This returns a list of the logical volume device names "
12798 "(eg. C</dev/VolGroup00/LogVol00>)."
12799 msgstr ""
12800
12801 #. type: textblock
12802 #: ../src/guestfs-actions.pod:4236
12803 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
12804 msgstr ""
12805
12806 #. type: =head2
12807 #: ../src/guestfs-actions.pod:4244
12808 msgid "guestfs_lvs_full"
12809 msgstr ""
12810
12811 #. type: verbatim
12812 #: ../src/guestfs-actions.pod:4246
12813 #, no-wrap
12814 msgid ""
12815 " struct guestfs_lvm_lv_list *\n"
12816 " guestfs_lvs_full (guestfs_h *g);\n"
12817 "\n"
12818 msgstr ""
12819
12820 #. type: textblock
12821 #: ../src/guestfs-actions.pod:4249 ../fish/guestfish-actions.pod:2870
12822 msgid ""
12823 "List all the logical volumes detected.  This is the equivalent of the "
12824 "L<lvs(8)> command.  The \"full\" version includes all fields."
12825 msgstr ""
12826
12827 #. type: textblock
12828 #: ../src/guestfs-actions.pod:4252
12829 msgid ""
12830 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
12831 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
12832 "use>."
12833 msgstr ""
12834
12835 #. type: =head2
12836 #: ../src/guestfs-actions.pod:4258
12837 msgid "guestfs_lvuuid"
12838 msgstr ""
12839
12840 #. type: verbatim
12841 #: ../src/guestfs-actions.pod:4260
12842 #, no-wrap
12843 msgid ""
12844 " char *\n"
12845 " guestfs_lvuuid (guestfs_h *g,\n"
12846 "                 const char *device);\n"
12847 "\n"
12848 msgstr ""
12849
12850 #. type: textblock
12851 #: ../src/guestfs-actions.pod:4264 ../fish/guestfish-actions.pod:2877
12852 msgid "This command returns the UUID of the LVM LV C<device>."
12853 msgstr ""
12854
12855 #. type: =head2
12856 #: ../src/guestfs-actions.pod:4271
12857 msgid "guestfs_lxattrlist"
12858 msgstr ""
12859
12860 #. type: verbatim
12861 #: ../src/guestfs-actions.pod:4273
12862 #, no-wrap
12863 msgid ""
12864 " struct guestfs_xattr_list *\n"
12865 " guestfs_lxattrlist (guestfs_h *g,\n"
12866 "                     const char *path,\n"
12867 "                     char *const *names);\n"
12868 "\n"
12869 msgstr ""
12870
12871 #. type: textblock
12872 #: ../src/guestfs-actions.pod:4278 ../fish/guestfish-actions.pod:2883
12873 msgid ""
12874 "This call allows you to get the extended attributes of multiple files, where "
12875 "all files are in the directory C<path>.  C<names> is the list of files from "
12876 "this directory."
12877 msgstr ""
12878
12879 #. type: textblock
12880 #: ../src/guestfs-actions.pod:4282 ../fish/guestfish-actions.pod:2887
12881 msgid ""
12882 "On return you get a flat list of xattr structs which must be interpreted "
12883 "sequentially.  The first xattr struct always has a zero-length C<attrname>.  "
12884 "C<attrval> in this struct is zero-length to indicate there was an error "
12885 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
12886 "number (the number of following attributes for this file, which could be "
12887 "C<\"0\">).  Then after the first xattr struct are the zero or more "
12888 "attributes for the first named file.  This repeats for the second and "
12889 "subsequent files."
12890 msgstr ""
12891
12892 #. type: textblock
12893 #: ../src/guestfs-actions.pod:4292
12894 msgid ""
12895 "This call is intended for programs that want to efficiently list a directory "
12896 "contents without making many round-trips.  See also C<guestfs_lstatlist> for "
12897 "a similarly efficient call for getting standard stats.  Very long directory "
12898 "listings might cause the protocol message size to be exceeded, causing this "
12899 "call to fail.  The caller must split up such requests into smaller groups of "
12900 "names."
12901 msgstr ""
12902
12903 #. type: =head2
12904 #: ../src/guestfs-actions.pod:4306
12905 msgid "guestfs_mkdir"
12906 msgstr ""
12907
12908 #. type: verbatim
12909 #: ../src/guestfs-actions.pod:4308
12910 #, no-wrap
12911 msgid ""
12912 " int\n"
12913 " guestfs_mkdir (guestfs_h *g,\n"
12914 "                const char *path);\n"
12915 "\n"
12916 msgstr ""
12917
12918 #. type: textblock
12919 #: ../src/guestfs-actions.pod:4312 ../fish/guestfish-actions.pod:2909
12920 msgid "Create a directory named C<path>."
12921 msgstr ""
12922
12923 #. type: =head2
12924 #: ../src/guestfs-actions.pod:4318
12925 msgid "guestfs_mkdir_mode"
12926 msgstr ""
12927
12928 #. type: verbatim
12929 #: ../src/guestfs-actions.pod:4320
12930 #, no-wrap
12931 msgid ""
12932 " int\n"
12933 " guestfs_mkdir_mode (guestfs_h *g,\n"
12934 "                     const char *path,\n"
12935 "                     int mode);\n"
12936 "\n"
12937 msgstr ""
12938
12939 #. type: textblock
12940 #: ../src/guestfs-actions.pod:4325 ../fish/guestfish-actions.pod:2915
12941 msgid ""
12942 "This command creates a directory, setting the initial permissions of the "
12943 "directory to C<mode>."
12944 msgstr ""
12945
12946 #. type: textblock
12947 #: ../src/guestfs-actions.pod:4328 ../fish/guestfish-actions.pod:2918
12948 msgid ""
12949 "For common Linux filesystems, the actual mode which is set will be C<mode & "
12950 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
12951 "other ways."
12952 msgstr ""
12953
12954 #. type: textblock
12955 #: ../src/guestfs-actions.pod:4332
12956 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
12957 msgstr ""
12958
12959 #. type: =head2
12960 #: ../src/guestfs-actions.pod:4338
12961 msgid "guestfs_mkdir_p"
12962 msgstr ""
12963
12964 #. type: verbatim
12965 #: ../src/guestfs-actions.pod:4340
12966 #, no-wrap
12967 msgid ""
12968 " int\n"
12969 " guestfs_mkdir_p (guestfs_h *g,\n"
12970 "                  const char *path);\n"
12971 "\n"
12972 msgstr ""
12973
12974 #. type: textblock
12975 #: ../src/guestfs-actions.pod:4344 ../fish/guestfish-actions.pod:2928
12976 msgid ""
12977 "Create a directory named C<path>, creating any parent directories as "
12978 "necessary.  This is like the C<mkdir -p> shell command."
12979 msgstr ""
12980
12981 #. type: =head2
12982 #: ../src/guestfs-actions.pod:4351
12983 msgid "guestfs_mkdtemp"
12984 msgstr ""
12985
12986 #. type: verbatim
12987 #: ../src/guestfs-actions.pod:4353
12988 #, no-wrap
12989 msgid ""
12990 " char *\n"
12991 " guestfs_mkdtemp (guestfs_h *g,\n"
12992 "                  const char *template);\n"
12993 "\n"
12994 msgstr ""
12995
12996 #. type: textblock
12997 #: ../src/guestfs-actions.pod:4357 ../fish/guestfish-actions.pod:2935
12998 msgid ""
12999 "This command creates a temporary directory.  The C<template> parameter "
13000 "should be a full pathname for the temporary directory name with the final "
13001 "six characters being \"XXXXXX\"."
13002 msgstr ""
13003
13004 #. type: textblock
13005 #: ../src/guestfs-actions.pod:4362 ../fish/guestfish-actions.pod:2940
13006 msgid ""
13007 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one "
13008 "being suitable for Windows filesystems."
13009 msgstr ""
13010
13011 #. type: textblock
13012 #: ../src/guestfs-actions.pod:4365 ../fish/guestfish-actions.pod:2943
13013 msgid "The name of the temporary directory that was created is returned."
13014 msgstr ""
13015
13016 #. type: textblock
13017 #: ../src/guestfs-actions.pod:4368 ../fish/guestfish-actions.pod:2946
13018 msgid "The temporary directory is created with mode 0700 and is owned by root."
13019 msgstr ""
13020
13021 #. type: textblock
13022 #: ../src/guestfs-actions.pod:4371 ../fish/guestfish-actions.pod:2949
13023 msgid ""
13024 "The caller is responsible for deleting the temporary directory and its "
13025 "contents after use."
13026 msgstr ""
13027
13028 #. type: textblock
13029 #: ../src/guestfs-actions.pod:4374 ../fish/guestfish-actions.pod:2952
13030 msgid "See also: L<mkdtemp(3)>"
13031 msgstr ""
13032
13033 #. type: =head2
13034 #: ../src/guestfs-actions.pod:4381
13035 msgid "guestfs_mke2fs_J"
13036 msgstr ""
13037
13038 #. type: verbatim
13039 #: ../src/guestfs-actions.pod:4383
13040 #, no-wrap
13041 msgid ""
13042 " int\n"
13043 " guestfs_mke2fs_J (guestfs_h *g,\n"
13044 "                   const char *fstype,\n"
13045 "                   int blocksize,\n"
13046 "                   const char *device,\n"
13047 "                   const char *journal);\n"
13048 "\n"
13049 msgstr ""
13050
13051 #. type: textblock
13052 #: ../src/guestfs-actions.pod:4390 ../fish/guestfish-actions.pod:2958
13053 msgid ""
13054 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13055 "C<journal>.  It is equivalent to the command:"
13056 msgstr ""
13057
13058 #. type: verbatim
13059 #: ../src/guestfs-actions.pod:4394 ../fish/guestfish-actions.pod:2962
13060 #, no-wrap
13061 msgid ""
13062 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13063 "\n"
13064 msgstr ""
13065
13066 #. type: textblock
13067 #: ../src/guestfs-actions.pod:4396
13068 msgid "See also C<guestfs_mke2journal>."
13069 msgstr ""
13070
13071 #. type: textblock
13072 #: ../src/guestfs-actions.pod:4400 ../src/guestfs-actions.pod:4418 ../src/guestfs-actions.pod:4436 ../src/guestfs-actions.pod:4452 ../src/guestfs-actions.pod:4466 ../src/guestfs-actions.pod:4480 ../src/guestfs-actions.pod:4539 ../src/guestfs-actions.pod:4816
13073 msgid "(Added in 1.0.68)"
13074 msgstr ""
13075
13076 #. type: =head2
13077 #: ../src/guestfs-actions.pod:4402
13078 msgid "guestfs_mke2fs_JL"
13079 msgstr ""
13080
13081 #. type: verbatim
13082 #: ../src/guestfs-actions.pod:4404
13083 #, no-wrap
13084 msgid ""
13085 " int\n"
13086 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13087 "                    const char *fstype,\n"
13088 "                    int blocksize,\n"
13089 "                    const char *device,\n"
13090 "                    const char *label);\n"
13091 "\n"
13092 msgstr ""
13093
13094 #. type: textblock
13095 #: ../src/guestfs-actions.pod:4411 ../fish/guestfish-actions.pod:2970
13096 msgid ""
13097 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13098 "the journal labeled C<label>."
13099 msgstr ""
13100
13101 #. type: textblock
13102 #: ../src/guestfs-actions.pod:4414
13103 msgid "See also C<guestfs_mke2journal_L>."
13104 msgstr ""
13105
13106 #. type: =head2
13107 #: ../src/guestfs-actions.pod:4420
13108 msgid "guestfs_mke2fs_JU"
13109 msgstr ""
13110
13111 #. type: verbatim
13112 #: ../src/guestfs-actions.pod:4422
13113 #, no-wrap
13114 msgid ""
13115 " int\n"
13116 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13117 "                    const char *fstype,\n"
13118 "                    int blocksize,\n"
13119 "                    const char *device,\n"
13120 "                    const char *uuid);\n"
13121 "\n"
13122 msgstr ""
13123
13124 #. type: textblock
13125 #: ../src/guestfs-actions.pod:4429 ../fish/guestfish-actions.pod:2979
13126 msgid ""
13127 "This creates an ext2/3/4 filesystem on C<device> with an external journal on "
13128 "the journal with UUID C<uuid>."
13129 msgstr ""
13130
13131 #. type: textblock
13132 #: ../src/guestfs-actions.pod:4432
13133 msgid "See also C<guestfs_mke2journal_U>."
13134 msgstr ""
13135
13136 #. type: =head2
13137 #: ../src/guestfs-actions.pod:4438
13138 msgid "guestfs_mke2journal"
13139 msgstr ""
13140
13141 #. type: verbatim
13142 #: ../src/guestfs-actions.pod:4440
13143 #, no-wrap
13144 msgid ""
13145 " int\n"
13146 " guestfs_mke2journal (guestfs_h *g,\n"
13147 "                      int blocksize,\n"
13148 "                      const char *device);\n"
13149 "\n"
13150 msgstr ""
13151
13152 #. type: textblock
13153 #: ../src/guestfs-actions.pod:4445 ../fish/guestfish-actions.pod:2988
13154 msgid ""
13155 "This creates an ext2 external journal on C<device>.  It is equivalent to the "
13156 "command:"
13157 msgstr ""
13158
13159 #. type: verbatim
13160 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:2991
13161 #, no-wrap
13162 msgid ""
13163 " mke2fs -O journal_dev -b blocksize device\n"
13164 "\n"
13165 msgstr ""
13166
13167 #. type: =head2
13168 #: ../src/guestfs-actions.pod:4454
13169 msgid "guestfs_mke2journal_L"
13170 msgstr ""
13171
13172 #. type: verbatim
13173 #: ../src/guestfs-actions.pod:4456
13174 #, no-wrap
13175 msgid ""
13176 " int\n"
13177 " guestfs_mke2journal_L (guestfs_h *g,\n"
13178 "                        int blocksize,\n"
13179 "                        const char *label,\n"
13180 "                        const char *device);\n"
13181 "\n"
13182 msgstr ""
13183
13184 #. type: textblock
13185 #: ../src/guestfs-actions.pod:4462 ../fish/guestfish-actions.pod:2997
13186 msgid "This creates an ext2 external journal on C<device> with label C<label>."
13187 msgstr ""
13188
13189 #. type: =head2
13190 #: ../src/guestfs-actions.pod:4468
13191 msgid "guestfs_mke2journal_U"
13192 msgstr ""
13193
13194 #. type: verbatim
13195 #: ../src/guestfs-actions.pod:4470
13196 #, no-wrap
13197 msgid ""
13198 " int\n"
13199 " guestfs_mke2journal_U (guestfs_h *g,\n"
13200 "                        int blocksize,\n"
13201 "                        const char *uuid,\n"
13202 "                        const char *device);\n"
13203 "\n"
13204 msgstr ""
13205
13206 #. type: textblock
13207 #: ../src/guestfs-actions.pod:4476 ../fish/guestfish-actions.pod:3003
13208 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13209 msgstr ""
13210
13211 #. type: =head2
13212 #: ../src/guestfs-actions.pod:4482
13213 msgid "guestfs_mkfifo"
13214 msgstr ""
13215
13216 #. type: verbatim
13217 #: ../src/guestfs-actions.pod:4484
13218 #, no-wrap
13219 msgid ""
13220 " int\n"
13221 " guestfs_mkfifo (guestfs_h *g,\n"
13222 "                 int mode,\n"
13223 "                 const char *path);\n"
13224 "\n"
13225 msgstr ""
13226
13227 #. type: textblock
13228 #: ../src/guestfs-actions.pod:4489
13229 msgid ""
13230 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
13231 "is just a convenient wrapper around C<guestfs_mknod>."
13232 msgstr ""
13233
13234 #. type: =head2
13235 #: ../src/guestfs-actions.pod:4499
13236 msgid "guestfs_mkfs"
13237 msgstr ""
13238
13239 #. type: verbatim
13240 #: ../src/guestfs-actions.pod:4501
13241 #, no-wrap
13242 msgid ""
13243 " int\n"
13244 " guestfs_mkfs (guestfs_h *g,\n"
13245 "               const char *fstype,\n"
13246 "               const char *device);\n"
13247 "\n"
13248 msgstr ""
13249
13250 #. type: textblock
13251 #: ../src/guestfs-actions.pod:4506 ../fish/guestfish-actions.pod:3019
13252 msgid ""
13253 "This creates a filesystem on C<device> (usually a partition or LVM logical "
13254 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
13255 msgstr ""
13256
13257 #. type: =head2
13258 #: ../src/guestfs-actions.pod:4514
13259 msgid "guestfs_mkfs_b"
13260 msgstr ""
13261
13262 #. type: verbatim
13263 #: ../src/guestfs-actions.pod:4516
13264 #, no-wrap
13265 msgid ""
13266 " int\n"
13267 " guestfs_mkfs_b (guestfs_h *g,\n"
13268 "                 const char *fstype,\n"
13269 "                 int blocksize,\n"
13270 "                 const char *device);\n"
13271 "\n"
13272 msgstr ""
13273
13274 #. type: textblock
13275 #: ../src/guestfs-actions.pod:4522
13276 msgid ""
13277 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
13278 "block size of the resulting filesystem.  Supported block sizes depend on the "
13279 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
13280 msgstr ""
13281
13282 #. type: textblock
13283 #: ../src/guestfs-actions.pod:4527 ../src/guestfs-actions.pod:4572 ../fish/guestfish-actions.pod:3032 ../fish/guestfish-actions.pod:3059
13284 msgid ""
13285 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
13286 "cluster size."
13287 msgstr ""
13288
13289 #. type: textblock
13290 #: ../src/guestfs-actions.pod:4532 ../fish/guestfish-actions.pod:3035
13291 msgid ""
13292 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
13293 "instead."
13294 msgstr ""
13295
13296 #. type: =head2
13297 #: ../src/guestfs-actions.pod:4541
13298 msgid "guestfs_mkfs_opts"
13299 msgstr ""
13300
13301 #. type: verbatim
13302 #: ../src/guestfs-actions.pod:4543
13303 #, no-wrap
13304 msgid ""
13305 " int\n"
13306 " guestfs_mkfs_opts (guestfs_h *g,\n"
13307 "                    const char *fstype,\n"
13308 "                    const char *device,\n"
13309 "                    ...);\n"
13310 "\n"
13311 msgstr ""
13312
13313 #. type: verbatim
13314 #: ../src/guestfs-actions.pod:4554
13315 #, no-wrap
13316 msgid ""
13317 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
13318 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
13319 " GUESTFS_MKFS_OPTS_INODE, int inode,\n"
13320 " GUESTFS_MKFS_OPTS_SECTORSIZE, int sectorsize,\n"
13321 "\n"
13322 msgstr ""
13323
13324 #. type: textblock
13325 #: ../src/guestfs-actions.pod:4559 ../fish/guestfish-actions.pod:3046
13326 msgid ""
13327 "This function creates a filesystem on C<device>.  The filesystem type is "
13328 "C<fstype>, for example C<ext3>."
13329 msgstr ""
13330
13331 #. type: =item
13332 #: ../src/guestfs-actions.pod:4566 ../fish/guestfish-actions.pod:3053
13333 msgid "C<blocksize>"
13334 msgstr ""
13335
13336 #. type: textblock
13337 #: ../src/guestfs-actions.pod:4568 ../fish/guestfish-actions.pod:3055
13338 msgid ""
13339 "The filesystem block size.  Supported block sizes depend on the filesystem "
13340 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13341 "filesystems."
13342 msgstr ""
13343
13344 #. type: textblock
13345 #: ../src/guestfs-actions.pod:4575 ../fish/guestfish-actions.pod:3062
13346 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13347 msgstr ""
13348
13349 #. type: =item
13350 #: ../src/guestfs-actions.pod:4577 ../fish/guestfish-actions.pod:3064
13351 msgid "C<features>"
13352 msgstr ""
13353
13354 #. type: textblock
13355 #: ../src/guestfs-actions.pod:4579 ../fish/guestfish-actions.pod:3066
13356 msgid "This passes the I<-O> parameter to the external mkfs program."
13357 msgstr ""
13358
13359 #. type: textblock
13360 #: ../src/guestfs-actions.pod:4581 ../fish/guestfish-actions.pod:3068
13361 msgid ""
13362 "For certain filesystem types, this allows extra filesystem features to be "
13363 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13364 msgstr ""
13365
13366 #. type: textblock
13367 #: ../src/guestfs-actions.pod:4585 ../fish/guestfish-actions.pod:3072
13368 msgid ""
13369 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13370 "type."
13371 msgstr ""
13372
13373 #. type: =item
13374 #: ../src/guestfs-actions.pod:4588 ../fish/guestfish-actions.pod:3075
13375 msgid "C<inode>"
13376 msgstr ""
13377
13378 #. type: textblock
13379 #: ../src/guestfs-actions.pod:4590 ../fish/guestfish-actions.pod:3077
13380 msgid ""
13381 "This passes the I<-I> parameter to the external L<mke2fs(8)> program which "
13382 "sets the inode size (only for ext2/3/4 filesystems at present)."
13383 msgstr ""
13384
13385 #. type: =item
13386 #: ../src/guestfs-actions.pod:4593 ../fish/guestfish-actions.pod:3080
13387 msgid "C<sectorsize>"
13388 msgstr ""
13389
13390 #. type: textblock
13391 #: ../src/guestfs-actions.pod:4595 ../fish/guestfish-actions.pod:3082
13392 msgid ""
13393 "This passes the I<-S> parameter to external L<mkfs.ufs(8)> program, which "
13394 "sets sector size for ufs filesystem."
13395 msgstr ""
13396
13397 #. type: textblock
13398 #: ../src/guestfs-actions.pod:4602
13399 msgid "(Added in 1.7.19)"
13400 msgstr ""
13401
13402 #. type: =head2
13403 #: ../src/guestfs-actions.pod:4604
13404 msgid "guestfs_mkfs_opts_va"
13405 msgstr ""
13406
13407 #. type: verbatim
13408 #: ../src/guestfs-actions.pod:4606
13409 #, no-wrap
13410 msgid ""
13411 " int\n"
13412 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13413 "                       const char *fstype,\n"
13414 "                       const char *device,\n"
13415 "                       va_list args);\n"
13416 "\n"
13417 msgstr ""
13418
13419 #. type: textblock
13420 #: ../src/guestfs-actions.pod:4612
13421 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13422 msgstr ""
13423
13424 #. type: =head2
13425 #: ../src/guestfs-actions.pod:4616
13426 msgid "guestfs_mkfs_opts_argv"
13427 msgstr ""
13428
13429 #. type: verbatim
13430 #: ../src/guestfs-actions.pod:4618
13431 #, no-wrap
13432 msgid ""
13433 " int\n"
13434 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13435 "                         const char *fstype,\n"
13436 "                         const char *device,\n"
13437 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13438 "\n"
13439 msgstr ""
13440
13441 #. type: textblock
13442 #: ../src/guestfs-actions.pod:4624
13443 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13444 msgstr ""
13445
13446 #. type: =head2
13447 #: ../src/guestfs-actions.pod:4628
13448 msgid "guestfs_mkmountpoint"
13449 msgstr ""
13450
13451 #. type: verbatim
13452 #: ../src/guestfs-actions.pod:4630
13453 #, no-wrap
13454 msgid ""
13455 " int\n"
13456 " guestfs_mkmountpoint (guestfs_h *g,\n"
13457 "                       const char *exemptpath);\n"
13458 "\n"
13459 msgstr ""
13460
13461 #. type: textblock
13462 #: ../src/guestfs-actions.pod:4634
13463 msgid ""
13464 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13465 "that can be used to create extra mountpoints before mounting the first "
13466 "filesystem."
13467 msgstr ""
13468
13469 #. type: textblock
13470 #: ../src/guestfs-actions.pod:4638 ../fish/guestfish-actions.pod:3097
13471 msgid ""
13472 "These calls are I<only> necessary in some very limited circumstances, mainly "
13473 "the case where you want to mount a mix of unrelated and/or read-only "
13474 "filesystems together."
13475 msgstr ""
13476
13477 #. type: textblock
13478 #: ../src/guestfs-actions.pod:4642 ../fish/guestfish-actions.pod:3101
13479 msgid ""
13480 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13481 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13482 "inside that.  You can unpack this as follows in guestfish:"
13483 msgstr ""
13484
13485 #. type: verbatim
13486 #: ../src/guestfs-actions.pod:4647 ../fish/guestfish-actions.pod:3106
13487 #, no-wrap
13488 msgid ""
13489 " add-ro Fedora-11-i686-Live.iso\n"
13490 " run\n"
13491 " mkmountpoint /cd\n"
13492 " mkmountpoint /sqsh\n"
13493 " mkmountpoint /ext3fs\n"
13494 " mount /dev/sda /cd\n"
13495 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13496 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13497 "\n"
13498 msgstr ""
13499
13500 #. type: textblock
13501 #: ../src/guestfs-actions.pod:4656 ../fish/guestfish-actions.pod:3115
13502 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13503 msgstr ""
13504
13505 #. type: textblock
13506 #: ../src/guestfs-actions.pod:4658
13507 msgid ""
13508 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13509 "may get unexpected errors if you try to mix these calls.  It is safest to "
13510 "manually unmount filesystems and remove mountpoints after use."
13511 msgstr ""
13512
13513 #. type: textblock
13514 #: ../src/guestfs-actions.pod:4662
13515 msgid ""
13516 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13517 "first, so for this to work for manual mountpoints, you must ensure that the "
13518 "innermost mountpoints have the longest pathnames, as in the example code "
13519 "above."
13520 msgstr ""
13521
13522 #. type: textblock
13523 #: ../src/guestfs-actions.pod:4667 ../fish/guestfish-actions.pod:3126
13524 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13525 msgstr ""
13526
13527 #. type: textblock
13528 #: ../src/guestfs-actions.pod:4669
13529 msgid ""
13530 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13531 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13532 "can also trigger these issues."
13533 msgstr ""
13534
13535 #. type: textblock
13536 #: ../src/guestfs-actions.pod:4675 ../src/guestfs-actions.pod:4991 ../src/guestfs-actions.pod:5903
13537 msgid "(Added in 1.0.62)"
13538 msgstr ""
13539
13540 #. type: =head2
13541 #: ../src/guestfs-actions.pod:4677
13542 msgid "guestfs_mknod"
13543 msgstr ""
13544
13545 #. type: verbatim
13546 #: ../src/guestfs-actions.pod:4679
13547 #, no-wrap
13548 msgid ""
13549 " int\n"
13550 " guestfs_mknod (guestfs_h *g,\n"
13551 "                int mode,\n"
13552 "                int devmajor,\n"
13553 "                int devminor,\n"
13554 "                const char *path);\n"
13555 "\n"
13556 msgstr ""
13557
13558 #. type: textblock
13559 #: ../src/guestfs-actions.pod:4686 ../fish/guestfish-actions.pod:3136
13560 msgid ""
13561 "This call creates block or character special devices, or named pipes "
13562 "(FIFOs)."
13563 msgstr ""
13564
13565 #. type: textblock
13566 #: ../src/guestfs-actions.pod:4689 ../fish/guestfish-actions.pod:3139
13567 msgid ""
13568 "The C<mode> parameter should be the mode, using the standard constants.  "
13569 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13570 "used when creating block and character special devices."
13571 msgstr ""
13572
13573 #. type: textblock
13574 #: ../src/guestfs-actions.pod:4694
13575 msgid ""
13576 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13577 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13578 "regular file).  These constants are available in the standard Linux header "
13579 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13580 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13581 "the appropriate constant for you."
13582 msgstr ""
13583
13584 #. type: =head2
13585 #: ../src/guestfs-actions.pod:4708
13586 msgid "guestfs_mknod_b"
13587 msgstr ""
13588
13589 #. type: verbatim
13590 #: ../src/guestfs-actions.pod:4710
13591 #, no-wrap
13592 msgid ""
13593 " int\n"
13594 " guestfs_mknod_b (guestfs_h *g,\n"
13595 "                  int mode,\n"
13596 "                  int devmajor,\n"
13597 "                  int devminor,\n"
13598 "                  const char *path);\n"
13599 "\n"
13600 msgstr ""
13601
13602 #. type: textblock
13603 #: ../src/guestfs-actions.pod:4717
13604 msgid ""
13605 "This call creates a block device node called C<path> with mode C<mode> and "
13606 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13607 "wrapper around C<guestfs_mknod>."
13608 msgstr ""
13609
13610 #. type: =head2
13611 #: ../src/guestfs-actions.pod:4727
13612 msgid "guestfs_mknod_c"
13613 msgstr ""
13614
13615 #. type: verbatim
13616 #: ../src/guestfs-actions.pod:4729
13617 #, no-wrap
13618 msgid ""
13619 " int\n"
13620 " guestfs_mknod_c (guestfs_h *g,\n"
13621 "                  int mode,\n"
13622 "                  int devmajor,\n"
13623 "                  int devminor,\n"
13624 "                  const char *path);\n"
13625 "\n"
13626 msgstr ""
13627
13628 #. type: textblock
13629 #: ../src/guestfs-actions.pod:4736
13630 msgid ""
13631 "This call creates a char device node called C<path> with mode C<mode> and "
13632 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13633 "wrapper around C<guestfs_mknod>."
13634 msgstr ""
13635
13636 #. type: =head2
13637 #: ../src/guestfs-actions.pod:4746
13638 msgid "guestfs_mkswap"
13639 msgstr ""
13640
13641 #. type: verbatim
13642 #: ../src/guestfs-actions.pod:4748
13643 #, no-wrap
13644 msgid ""
13645 " int\n"
13646 " guestfs_mkswap (guestfs_h *g,\n"
13647 "                 const char *device);\n"
13648 "\n"
13649 msgstr ""
13650
13651 #. type: textblock
13652 #: ../src/guestfs-actions.pod:4752 ../fish/guestfish-actions.pod:3178
13653 msgid "Create a swap partition on C<device>."
13654 msgstr ""
13655
13656 #. type: =head2
13657 #: ../src/guestfs-actions.pod:4758
13658 msgid "guestfs_mkswap_L"
13659 msgstr ""
13660
13661 #. type: verbatim
13662 #: ../src/guestfs-actions.pod:4760
13663 #, no-wrap
13664 msgid ""
13665 " int\n"
13666 " guestfs_mkswap_L (guestfs_h *g,\n"
13667 "                   const char *label,\n"
13668 "                   const char *device);\n"
13669 "\n"
13670 msgstr ""
13671
13672 #. type: textblock
13673 #: ../src/guestfs-actions.pod:4765 ../fish/guestfish-actions.pod:3184
13674 msgid "Create a swap partition on C<device> with label C<label>."
13675 msgstr ""
13676
13677 #. type: textblock
13678 #: ../src/guestfs-actions.pod:4767 ../fish/guestfish-actions.pod:3186
13679 msgid ""
13680 "Note that you cannot attach a swap label to a block device "
13681 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
13682 "the kernel or swap tools."
13683 msgstr ""
13684
13685 #. type: =head2
13686 #: ../src/guestfs-actions.pod:4775
13687 msgid "guestfs_mkswap_U"
13688 msgstr ""
13689
13690 #. type: verbatim
13691 #: ../src/guestfs-actions.pod:4777
13692 #, no-wrap
13693 msgid ""
13694 " int\n"
13695 " guestfs_mkswap_U (guestfs_h *g,\n"
13696 "                   const char *uuid,\n"
13697 "                   const char *device);\n"
13698 "\n"
13699 msgstr ""
13700
13701 #. type: textblock
13702 #: ../src/guestfs-actions.pod:4782 ../fish/guestfish-actions.pod:3194
13703 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13704 msgstr ""
13705
13706 #. type: =head2
13707 #: ../src/guestfs-actions.pod:4788
13708 msgid "guestfs_mkswap_file"
13709 msgstr ""
13710
13711 #. type: verbatim
13712 #: ../src/guestfs-actions.pod:4790
13713 #, no-wrap
13714 msgid ""
13715 " int\n"
13716 " guestfs_mkswap_file (guestfs_h *g,\n"
13717 "                      const char *path);\n"
13718 "\n"
13719 msgstr ""
13720
13721 #. type: textblock
13722 #: ../src/guestfs-actions.pod:4794 ../fish/guestfish-actions.pod:3200
13723 msgid "Create a swap file."
13724 msgstr ""
13725
13726 #. type: textblock
13727 #: ../src/guestfs-actions.pod:4796
13728 msgid ""
13729 "This command just writes a swap file signature to an existing file.  To "
13730 "create the file itself, use something like C<guestfs_fallocate>."
13731 msgstr ""
13732
13733 #. type: =head2
13734 #: ../src/guestfs-actions.pod:4803
13735 msgid "guestfs_modprobe"
13736 msgstr ""
13737
13738 #. type: verbatim
13739 #: ../src/guestfs-actions.pod:4805
13740 #, no-wrap
13741 msgid ""
13742 " int\n"
13743 " guestfs_modprobe (guestfs_h *g,\n"
13744 "                   const char *modulename);\n"
13745 "\n"
13746 msgstr ""
13747
13748 #. type: textblock
13749 #: ../src/guestfs-actions.pod:4809 ../fish/guestfish-actions.pod:3209
13750 msgid "This loads a kernel module in the appliance."
13751 msgstr ""
13752
13753 #. type: textblock
13754 #: ../src/guestfs-actions.pod:4811 ../fish/guestfish-actions.pod:3211
13755 msgid ""
13756 "The kernel module must have been whitelisted when libguestfs was built (see "
13757 "C<appliance/kmod.whitelist.in> in the source)."
13758 msgstr ""
13759
13760 #. type: =head2
13761 #: ../src/guestfs-actions.pod:4818
13762 msgid "guestfs_mount"
13763 msgstr ""
13764
13765 #. type: verbatim
13766 #: ../src/guestfs-actions.pod:4820
13767 #, no-wrap
13768 msgid ""
13769 " int\n"
13770 " guestfs_mount (guestfs_h *g,\n"
13771 "                const char *device,\n"
13772 "                const char *mountpoint);\n"
13773 "\n"
13774 msgstr ""
13775
13776 #. type: textblock
13777 #: ../src/guestfs-actions.pod:4825 ../fish/guestfish-actions.pod:3218
13778 msgid ""
13779 "Mount a guest disk at a position in the filesystem.  Block devices are named "
13780 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
13781 "those block devices contain partitions, they will have the usual names "
13782 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
13783 msgstr ""
13784
13785 #. type: textblock
13786 #: ../src/guestfs-actions.pod:4831 ../fish/guestfish-actions.pod:3224
13787 msgid ""
13788 "The rules are the same as for L<mount(2)>: A filesystem must first be "
13789 "mounted on C</> before others can be mounted.  Other filesystems can only be "
13790 "mounted on directories which already exist."
13791 msgstr ""
13792
13793 #. type: textblock
13794 #: ../src/guestfs-actions.pod:4836 ../fish/guestfish-actions.pod:3229
13795 msgid ""
13796 "The mounted filesystem is writable, if we have sufficient permissions on the "
13797 "underlying device."
13798 msgstr ""
13799
13800 #. type: textblock
13801 #: ../src/guestfs-actions.pod:4839
13802 msgid ""
13803 "B<Important note:> When you use this call, the filesystem options C<sync> "
13804 "and C<noatime> are set implicitly.  This was originally done because we "
13805 "thought it would improve reliability, but it turns out that I<-o sync> has a "
13806 "very large negative performance impact and negligible effect on "
13807 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
13808 "in any code that needs performance, and instead use C<guestfs_mount_options> "
13809 "(use an empty string for the first parameter if you don't want any options)."
13810 msgstr ""
13811
13812 #. type: textblock
13813 #: ../src/guestfs-actions.pod:4851 ../fish/guestfish-actions.pod:3242
13814 msgid ""
13815 "This function is deprecated.  In new code, use the C<mount_options> call "
13816 "instead."
13817 msgstr ""
13818
13819 #. type: =head2
13820 #: ../src/guestfs-actions.pod:4860
13821 msgid "guestfs_mount_9p"
13822 msgstr ""
13823
13824 #. type: verbatim
13825 #: ../src/guestfs-actions.pod:4862
13826 #, no-wrap
13827 msgid ""
13828 " int\n"
13829 " guestfs_mount_9p (guestfs_h *g,\n"
13830 "                   const char *mounttag,\n"
13831 "                   const char *mountpoint,\n"
13832 "                   ...);\n"
13833 "\n"
13834 msgstr ""
13835
13836 #. type: verbatim
13837 #: ../src/guestfs-actions.pod:4873
13838 #, no-wrap
13839 msgid ""
13840 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
13841 "\n"
13842 msgstr ""
13843
13844 #. type: textblock
13845 #: ../src/guestfs-actions.pod:4875 ../fish/guestfish-actions.pod:3253
13846 msgid ""
13847 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
13848 "C<mountpoint>."
13849 msgstr ""
13850
13851 #. type: textblock
13852 #: ../src/guestfs-actions.pod:4878 ../fish/guestfish-actions.pod:3256
13853 msgid ""
13854 "If required, C<trans=virtio> will be automatically added to the options.  "
13855 "Any other options required can be passed in the optional C<options> "
13856 "parameter."
13857 msgstr ""
13858
13859 #. type: =head2
13860 #: ../src/guestfs-actions.pod:4886
13861 msgid "guestfs_mount_9p_va"
13862 msgstr ""
13863
13864 #. type: verbatim
13865 #: ../src/guestfs-actions.pod:4888
13866 #, no-wrap
13867 msgid ""
13868 " int\n"
13869 " guestfs_mount_9p_va (guestfs_h *g,\n"
13870 "                      const char *mounttag,\n"
13871 "                      const char *mountpoint,\n"
13872 "                      va_list args);\n"
13873 "\n"
13874 msgstr ""
13875
13876 #. type: textblock
13877 #: ../src/guestfs-actions.pod:4894
13878 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
13879 msgstr ""
13880
13881 #. type: =head2
13882 #: ../src/guestfs-actions.pod:4898
13883 msgid "guestfs_mount_9p_argv"
13884 msgstr ""
13885
13886 #. type: verbatim
13887 #: ../src/guestfs-actions.pod:4900
13888 #, no-wrap
13889 msgid ""
13890 " int\n"
13891 " guestfs_mount_9p_argv (guestfs_h *g,\n"
13892 "                        const char *mounttag,\n"
13893 "                        const char *mountpoint,\n"
13894 "                        const struct guestfs_mount_9p_argv *optargs);\n"
13895 "\n"
13896 msgstr ""
13897
13898 #. type: textblock
13899 #: ../src/guestfs-actions.pod:4906
13900 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
13901 msgstr ""
13902
13903 #. type: =head2
13904 #: ../src/guestfs-actions.pod:4910
13905 msgid "guestfs_mount_loop"
13906 msgstr ""
13907
13908 #. type: verbatim
13909 #: ../src/guestfs-actions.pod:4912
13910 #, no-wrap
13911 msgid ""
13912 " int\n"
13913 " guestfs_mount_loop (guestfs_h *g,\n"
13914 "                     const char *file,\n"
13915 "                     const char *mountpoint);\n"
13916 "\n"
13917 msgstr ""
13918
13919 #. type: textblock
13920 #: ../src/guestfs-actions.pod:4917 ../fish/guestfish-actions.pod:3266
13921 msgid ""
13922 "This command lets you mount C<file> (a filesystem image in a file) on a "
13923 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
13924 "mountpoint>."
13925 msgstr ""
13926
13927 #. type: =head2
13928 #: ../src/guestfs-actions.pod:4925
13929 msgid "guestfs_mount_options"
13930 msgstr ""
13931
13932 #. type: verbatim
13933 #: ../src/guestfs-actions.pod:4927
13934 #, no-wrap
13935 msgid ""
13936 " int\n"
13937 " guestfs_mount_options (guestfs_h *g,\n"
13938 "                        const char *options,\n"
13939 "                        const char *device,\n"
13940 "                        const char *mountpoint);\n"
13941 "\n"
13942 msgstr ""
13943
13944 #. type: textblock
13945 #: ../src/guestfs-actions.pod:4933
13946 msgid ""
13947 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13948 "the mount options as for the L<mount(8)> I<-o> flag."
13949 msgstr ""
13950
13951 #. type: textblock
13952 #: ../src/guestfs-actions.pod:4937 ../fish/guestfish-actions.pod:3278
13953 msgid ""
13954 "If the C<options> parameter is an empty string, then no options are passed "
13955 "(all options default to whatever the filesystem uses)."
13956 msgstr ""
13957
13958 #. type: textblock
13959 #: ../src/guestfs-actions.pod:4943 ../src/guestfs-actions.pod:4957 ../src/guestfs-actions.pod:4974
13960 msgid "(Added in 1.0.10)"
13961 msgstr ""
13962
13963 #. type: =head2
13964 #: ../src/guestfs-actions.pod:4945
13965 msgid "guestfs_mount_ro"
13966 msgstr ""
13967
13968 #. type: verbatim
13969 #: ../src/guestfs-actions.pod:4947
13970 #, no-wrap
13971 msgid ""
13972 " int\n"
13973 " guestfs_mount_ro (guestfs_h *g,\n"
13974 "                   const char *device,\n"
13975 "                   const char *mountpoint);\n"
13976 "\n"
13977 msgstr ""
13978
13979 #. type: textblock
13980 #: ../src/guestfs-actions.pod:4952
13981 msgid ""
13982 "This is the same as the C<guestfs_mount> command, but it mounts the "
13983 "filesystem with the read-only (I<-o ro>) flag."
13984 msgstr ""
13985
13986 #. type: =head2
13987 #: ../src/guestfs-actions.pod:4959
13988 msgid "guestfs_mount_vfs"
13989 msgstr ""
13990
13991 #. type: verbatim
13992 #: ../src/guestfs-actions.pod:4961
13993 #, no-wrap
13994 msgid ""
13995 " int\n"
13996 " guestfs_mount_vfs (guestfs_h *g,\n"
13997 "                    const char *options,\n"
13998 "                    const char *vfstype,\n"
13999 "                    const char *device,\n"
14000 "                    const char *mountpoint);\n"
14001 "\n"
14002 msgstr ""
14003
14004 #. type: textblock
14005 #: ../src/guestfs-actions.pod:4968
14006 msgid ""
14007 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14008 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
14009 "I<-t> flags."
14010 msgstr ""
14011
14012 #. type: =head2
14013 #: ../src/guestfs-actions.pod:4976
14014 msgid "guestfs_mountpoints"
14015 msgstr ""
14016
14017 #. type: verbatim
14018 #: ../src/guestfs-actions.pod:4978
14019 #, no-wrap
14020 msgid ""
14021 " char **\n"
14022 " guestfs_mountpoints (guestfs_h *g);\n"
14023 "\n"
14024 msgstr ""
14025
14026 #. type: textblock
14027 #: ../src/guestfs-actions.pod:4981
14028 msgid ""
14029 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14030 "devices.  This one returns a hash table (map) of device name to directory "
14031 "where the device is mounted."
14032 msgstr ""
14033
14034 #. type: =head2
14035 #: ../src/guestfs-actions.pod:4993
14036 msgid "guestfs_mounts"
14037 msgstr ""
14038
14039 #. type: verbatim
14040 #: ../src/guestfs-actions.pod:4995
14041 #, no-wrap
14042 msgid ""
14043 " char **\n"
14044 " guestfs_mounts (guestfs_h *g);\n"
14045 "\n"
14046 msgstr ""
14047
14048 #. type: textblock
14049 #: ../src/guestfs-actions.pod:4998 ../fish/guestfish-actions.pod:3309
14050 msgid ""
14051 "This returns the list of currently mounted filesystems.  It returns the list "
14052 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14053 msgstr ""
14054
14055 #. type: textblock
14056 #: ../src/guestfs-actions.pod:5001 ../fish/guestfish-actions.pod:3312
14057 msgid "Some internal mounts are not shown."
14058 msgstr ""
14059
14060 #. type: textblock
14061 #: ../src/guestfs-actions.pod:5003
14062 msgid "See also: C<guestfs_mountpoints>"
14063 msgstr ""
14064
14065 #. type: =head2
14066 #: ../src/guestfs-actions.pod:5011
14067 msgid "guestfs_mv"
14068 msgstr ""
14069
14070 #. type: verbatim
14071 #: ../src/guestfs-actions.pod:5013
14072 #, no-wrap
14073 msgid ""
14074 " int\n"
14075 " guestfs_mv (guestfs_h *g,\n"
14076 "             const char *src,\n"
14077 "             const char *dest);\n"
14078 "\n"
14079 msgstr ""
14080
14081 #. type: textblock
14082 #: ../src/guestfs-actions.pod:5018 ../fish/guestfish-actions.pod:3320
14083 msgid ""
14084 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14085 "destination filename or destination directory."
14086 msgstr ""
14087
14088 #. type: =head2
14089 #: ../src/guestfs-actions.pod:5025
14090 msgid "guestfs_ntfs_3g_probe"
14091 msgstr ""
14092
14093 #. type: verbatim
14094 #: ../src/guestfs-actions.pod:5027
14095 #, no-wrap
14096 msgid ""
14097 " int\n"
14098 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14099 "                        int rw,\n"
14100 "                        const char *device);\n"
14101 "\n"
14102 msgstr ""
14103
14104 #. type: textblock
14105 #: ../src/guestfs-actions.pod:5032 ../fish/guestfish-actions.pod:3327
14106 msgid ""
14107 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14108 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
14109 "read-write, and some cannot be mounted at all)."
14110 msgstr ""
14111
14112 #. type: textblock
14113 #: ../src/guestfs-actions.pod:5036 ../fish/guestfish-actions.pod:3331
14114 msgid ""
14115 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14116 "can be mounted read-write.  Set it to false if you want to test if the "
14117 "volume can be mounted read-only."
14118 msgstr ""
14119
14120 #. type: textblock
14121 #: ../src/guestfs-actions.pod:5040 ../fish/guestfish-actions.pod:3335
14122 msgid ""
14123 "The return value is an integer which C<0> if the operation would succeed, or "
14124 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14125 msgstr ""
14126
14127 #. type: textblock
14128 #: ../src/guestfs-actions.pod:5046
14129 msgid "(Added in 1.0.43)"
14130 msgstr ""
14131
14132 #. type: =head2
14133 #: ../src/guestfs-actions.pod:5048
14134 msgid "guestfs_ntfsresize"
14135 msgstr ""
14136
14137 #. type: verbatim
14138 #: ../src/guestfs-actions.pod:5050
14139 #, no-wrap
14140 msgid ""
14141 " int\n"
14142 " guestfs_ntfsresize (guestfs_h *g,\n"
14143 "                     const char *device);\n"
14144 "\n"
14145 msgstr ""
14146
14147 #. type: textblock
14148 #: ../src/guestfs-actions.pod:5054 ../fish/guestfish-actions.pod:3343
14149 msgid ""
14150 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14151 "size of the underlying device.  See also L<ntfsresize(8)>."
14152 msgstr ""
14153
14154 #. type: =head2
14155 #: ../src/guestfs-actions.pod:5062
14156 msgid "guestfs_ntfsresize_size"
14157 msgstr ""
14158
14159 #. type: verbatim
14160 #: ../src/guestfs-actions.pod:5064
14161 #, no-wrap
14162 msgid ""
14163 " int\n"
14164 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14165 "                          const char *device,\n"
14166 "                          int64_t size);\n"
14167 "\n"
14168 msgstr ""
14169
14170 #. type: textblock
14171 #: ../src/guestfs-actions.pod:5069
14172 msgid ""
14173 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14174 "to specify the new size (in bytes) explicitly."
14175 msgstr ""
14176
14177 #. type: textblock
14178 #: ../src/guestfs-actions.pod:5074 ../src/guestfs-actions.pod:5510 ../src/guestfs-actions.pod:5583 ../src/guestfs-actions.pod:5851 ../src/guestfs-actions.pod:7459
14179 msgid "(Added in 1.3.14)"
14180 msgstr ""
14181
14182 #. type: =head2
14183 #: ../src/guestfs-actions.pod:5076
14184 msgid "guestfs_part_add"
14185 msgstr ""
14186
14187 #. type: verbatim
14188 #: ../src/guestfs-actions.pod:5078
14189 #, no-wrap
14190 msgid ""
14191 " int\n"
14192 " guestfs_part_add (guestfs_h *g,\n"
14193 "                   const char *device,\n"
14194 "                   const char *prlogex,\n"
14195 "                   int64_t startsect,\n"
14196 "                   int64_t endsect);\n"
14197 "\n"
14198 msgstr ""
14199
14200 #. type: textblock
14201 #: ../src/guestfs-actions.pod:5085
14202 msgid ""
14203 "This command adds a partition to C<device>.  If there is no partition table "
14204 "on the device, call C<guestfs_part_init> first."
14205 msgstr ""
14206
14207 #. type: textblock
14208 #: ../src/guestfs-actions.pod:5088 ../fish/guestfish-actions.pod:3361
14209 msgid ""
14210 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14211 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14212 "C<logical>) and C<e> (or C<extended>) partition types."
14213 msgstr ""
14214
14215 #. type: textblock
14216 #: ../src/guestfs-actions.pod:5093 ../fish/guestfish-actions.pod:3366
14217 msgid ""
14218 "C<startsect> and C<endsect> are the start and end of the partition in "
14219 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14220 "from the end of the disk (C<-1> is the last sector)."
14221 msgstr ""
14222
14223 #. type: textblock
14224 #: ../src/guestfs-actions.pod:5097
14225 msgid ""
14226 "Creating a partition which covers the whole disk is not so easy.  Use "
14227 "C<guestfs_part_disk> to do that."
14228 msgstr ""
14229
14230 #. type: textblock
14231 #: ../src/guestfs-actions.pod:5102 ../src/guestfs-actions.pod:5140 ../src/guestfs-actions.pod:5193 ../src/guestfs-actions.pod:5271 ../src/guestfs-actions.pod:5309 ../src/guestfs-actions.pod:5328 ../src/guestfs-actions.pod:5368
14232 msgid "(Added in 1.0.78)"
14233 msgstr ""
14234
14235 #. type: =head2
14236 #: ../src/guestfs-actions.pod:5104
14237 msgid "guestfs_part_del"
14238 msgstr ""
14239
14240 #. type: verbatim
14241 #: ../src/guestfs-actions.pod:5106
14242 #, no-wrap
14243 msgid ""
14244 " int\n"
14245 " guestfs_part_del (guestfs_h *g,\n"
14246 "                   const char *device,\n"
14247 "                   int partnum);\n"
14248 "\n"
14249 msgstr ""
14250
14251 #. type: textblock
14252 #: ../src/guestfs-actions.pod:5111 ../fish/guestfish-actions.pod:3377
14253 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14254 msgstr ""
14255
14256 #. type: textblock
14257 #: ../src/guestfs-actions.pod:5113 ../fish/guestfish-actions.pod:3379
14258 msgid ""
14259 "Note that in the case of MBR partitioning, deleting an extended partition "
14260 "also deletes any logical partitions it contains."
14261 msgstr ""
14262
14263 #. type: =head2
14264 #: ../src/guestfs-actions.pod:5121
14265 msgid "guestfs_part_disk"
14266 msgstr ""
14267
14268 #. type: verbatim
14269 #: ../src/guestfs-actions.pod:5123
14270 #, no-wrap
14271 msgid ""
14272 " int\n"
14273 " guestfs_part_disk (guestfs_h *g,\n"
14274 "                    const char *device,\n"
14275 "                    const char *parttype);\n"
14276 "\n"
14277 msgstr ""
14278
14279 #. type: textblock
14280 #: ../src/guestfs-actions.pod:5128
14281 msgid ""
14282 "This command is simply a combination of C<guestfs_part_init> followed by "
14283 "C<guestfs_part_add> to create a single primary partition covering the whole "
14284 "disk."
14285 msgstr ""
14286
14287 #. type: textblock
14288 #: ../src/guestfs-actions.pod:5132
14289 msgid ""
14290 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14291 "possible values are described in C<guestfs_part_init>."
14292 msgstr ""
14293
14294 #. type: =head2
14295 #: ../src/guestfs-actions.pod:5142
14296 msgid "guestfs_part_get_bootable"
14297 msgstr ""
14298
14299 #. type: verbatim
14300 #: ../src/guestfs-actions.pod:5144
14301 #, no-wrap
14302 msgid ""
14303 " int\n"
14304 " guestfs_part_get_bootable (guestfs_h *g,\n"
14305 "                            const char *device,\n"
14306 "                            int partnum);\n"
14307 "\n"
14308 msgstr ""
14309
14310 #. type: textblock
14311 #: ../src/guestfs-actions.pod:5149 ../fish/guestfish-actions.pod:3401
14312 msgid ""
14313 "This command returns true if the partition C<partnum> on C<device> has the "
14314 "bootable flag set."
14315 msgstr ""
14316
14317 #. type: textblock
14318 #: ../src/guestfs-actions.pod:5152
14319 msgid "See also C<guestfs_part_set_bootable>."
14320 msgstr ""
14321
14322 #. type: =head2
14323 #: ../src/guestfs-actions.pod:5158
14324 msgid "guestfs_part_get_mbr_id"
14325 msgstr ""
14326
14327 #. type: verbatim
14328 #: ../src/guestfs-actions.pod:5160
14329 #, no-wrap
14330 msgid ""
14331 " int\n"
14332 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14333 "                          const char *device,\n"
14334 "                          int partnum);\n"
14335 "\n"
14336 msgstr ""
14337
14338 #. type: textblock
14339 #: ../src/guestfs-actions.pod:5165 ../fish/guestfish-actions.pod:3410
14340 msgid ""
14341 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14342 "partition C<partnum>."
14343 msgstr ""
14344
14345 #. type: textblock
14346 #: ../src/guestfs-actions.pod:5168 ../src/guestfs-actions.pod:5344
14347 msgid ""
14348 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14349 "undefined results for other partition table types (see "
14350 "C<guestfs_part_get_parttype>)."
14351 msgstr ""
14352
14353 #. type: =head2
14354 #: ../src/guestfs-actions.pod:5176
14355 msgid "guestfs_part_get_parttype"
14356 msgstr ""
14357
14358 #. type: verbatim
14359 #: ../src/guestfs-actions.pod:5178
14360 #, no-wrap
14361 msgid ""
14362 " char *\n"
14363 " guestfs_part_get_parttype (guestfs_h *g,\n"
14364 "                            const char *device);\n"
14365 "\n"
14366 msgstr ""
14367
14368 #. type: textblock
14369 #: ../src/guestfs-actions.pod:5182 ../fish/guestfish-actions.pod:3421
14370 msgid ""
14371 "This command examines the partition table on C<device> and returns the "
14372 "partition table type (format) being used."
14373 msgstr ""
14374
14375 #. type: textblock
14376 #: ../src/guestfs-actions.pod:5185
14377 msgid ""
14378 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14379 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14380 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14381 msgstr ""
14382
14383 #. type: =head2
14384 #: ../src/guestfs-actions.pod:5195
14385 msgid "guestfs_part_init"
14386 msgstr ""
14387
14388 #. type: verbatim
14389 #: ../src/guestfs-actions.pod:5197
14390 #, no-wrap
14391 msgid ""
14392 " int\n"
14393 " guestfs_part_init (guestfs_h *g,\n"
14394 "                    const char *device,\n"
14395 "                    const char *parttype);\n"
14396 "\n"
14397 msgstr ""
14398
14399 #. type: textblock
14400 #: ../src/guestfs-actions.pod:5202 ../fish/guestfish-actions.pod:3433
14401 msgid ""
14402 "This creates an empty partition table on C<device> of one of the partition "
14403 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14404 "(for large disks)."
14405 msgstr ""
14406
14407 #. type: textblock
14408 #: ../src/guestfs-actions.pod:5206
14409 msgid ""
14410 "Initially there are no partitions.  Following this, you should call "
14411 "C<guestfs_part_add> for each partition required."
14412 msgstr ""
14413
14414 #. type: textblock
14415 #: ../src/guestfs-actions.pod:5209 ../fish/guestfish-actions.pod:3440
14416 msgid "Possible values for C<parttype> are:"
14417 msgstr ""
14418
14419 #. type: =item
14420 #: ../src/guestfs-actions.pod:5213 ../fish/guestfish-actions.pod:3444
14421 msgid "B<efi> | B<gpt>"
14422 msgstr ""
14423
14424 #. type: textblock
14425 #: ../src/guestfs-actions.pod:5215 ../fish/guestfish-actions.pod:3446
14426 msgid "Intel EFI / GPT partition table."
14427 msgstr ""
14428
14429 #. type: textblock
14430 #: ../src/guestfs-actions.pod:5217 ../fish/guestfish-actions.pod:3448
14431 msgid ""
14432 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14433 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14434 "the C<mbr> format."
14435 msgstr ""
14436
14437 #. type: =item
14438 #: ../src/guestfs-actions.pod:5221 ../fish/guestfish-actions.pod:3452
14439 msgid "B<mbr> | B<msdos>"
14440 msgstr ""
14441
14442 #. type: textblock
14443 #: ../src/guestfs-actions.pod:5223 ../fish/guestfish-actions.pod:3454
14444 msgid ""
14445 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14446 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14447 "TB.  For large disks we recommend using C<gpt>."
14448 msgstr ""
14449
14450 #. type: textblock
14451 #: ../src/guestfs-actions.pod:5230 ../fish/guestfish-actions.pod:3461
14452 msgid "Other partition table types that may work but are not supported include:"
14453 msgstr ""
14454
14455 #. type: =item
14456 #: ../src/guestfs-actions.pod:5235 ../fish/guestfish-actions.pod:3466
14457 msgid "B<aix>"
14458 msgstr ""
14459
14460 #. type: textblock
14461 #: ../src/guestfs-actions.pod:5237 ../fish/guestfish-actions.pod:3468
14462 msgid "AIX disk labels."
14463 msgstr ""
14464
14465 #. type: =item
14466 #: ../src/guestfs-actions.pod:5239 ../fish/guestfish-actions.pod:3470
14467 msgid "B<amiga> | B<rdb>"
14468 msgstr ""
14469
14470 #. type: textblock
14471 #: ../src/guestfs-actions.pod:5241 ../fish/guestfish-actions.pod:3472
14472 msgid "Amiga \"Rigid Disk Block\" format."
14473 msgstr ""
14474
14475 #. type: =item
14476 #: ../src/guestfs-actions.pod:5243 ../fish/guestfish-actions.pod:3474
14477 msgid "B<bsd>"
14478 msgstr ""
14479
14480 #. type: textblock
14481 #: ../src/guestfs-actions.pod:5245 ../fish/guestfish-actions.pod:3476
14482 msgid "BSD disk labels."
14483 msgstr ""
14484
14485 #. type: =item
14486 #: ../src/guestfs-actions.pod:5247 ../fish/guestfish-actions.pod:3478
14487 msgid "B<dasd>"
14488 msgstr ""
14489
14490 #. type: textblock
14491 #: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3480
14492 msgid "DASD, used on IBM mainframes."
14493 msgstr ""
14494
14495 #. type: =item
14496 #: ../src/guestfs-actions.pod:5251 ../fish/guestfish-actions.pod:3482
14497 msgid "B<dvh>"
14498 msgstr ""
14499
14500 #. type: textblock
14501 #: ../src/guestfs-actions.pod:5253 ../fish/guestfish-actions.pod:3484
14502 msgid "MIPS/SGI volumes."
14503 msgstr ""
14504
14505 #. type: =item
14506 #: ../src/guestfs-actions.pod:5255 ../fish/guestfish-actions.pod:3486
14507 msgid "B<mac>"
14508 msgstr ""
14509
14510 #. type: textblock
14511 #: ../src/guestfs-actions.pod:5257 ../fish/guestfish-actions.pod:3488
14512 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14513 msgstr ""
14514
14515 #. type: =item
14516 #: ../src/guestfs-actions.pod:5259 ../fish/guestfish-actions.pod:3490
14517 msgid "B<pc98>"
14518 msgstr ""
14519
14520 #. type: textblock
14521 #: ../src/guestfs-actions.pod:5261 ../fish/guestfish-actions.pod:3492
14522 msgid "NEC PC-98 format, common in Japan apparently."
14523 msgstr ""
14524
14525 #. type: =item
14526 #: ../src/guestfs-actions.pod:5263 ../fish/guestfish-actions.pod:3494
14527 msgid "B<sun>"
14528 msgstr ""
14529
14530 #. type: textblock
14531 #: ../src/guestfs-actions.pod:5265 ../fish/guestfish-actions.pod:3496
14532 msgid "Sun disk labels."
14533 msgstr ""
14534
14535 #. type: =head2
14536 #: ../src/guestfs-actions.pod:5273
14537 msgid "guestfs_part_list"
14538 msgstr ""
14539
14540 #. type: verbatim
14541 #: ../src/guestfs-actions.pod:5275
14542 #, no-wrap
14543 msgid ""
14544 " struct guestfs_partition_list *\n"
14545 " guestfs_part_list (guestfs_h *g,\n"
14546 "                    const char *device);\n"
14547 "\n"
14548 msgstr ""
14549
14550 #. type: textblock
14551 #: ../src/guestfs-actions.pod:5279 ../fish/guestfish-actions.pod:3504
14552 msgid ""
14553 "This command parses the partition table on C<device> and returns the list of "
14554 "partitions found."
14555 msgstr ""
14556
14557 #. type: textblock
14558 #: ../src/guestfs-actions.pod:5282 ../fish/guestfish-actions.pod:3507
14559 msgid "The fields in the returned structure are:"
14560 msgstr ""
14561
14562 #. type: =item
14563 #: ../src/guestfs-actions.pod:5286 ../fish/guestfish-actions.pod:3511
14564 msgid "B<part_num>"
14565 msgstr ""
14566
14567 #. type: textblock
14568 #: ../src/guestfs-actions.pod:5288 ../fish/guestfish-actions.pod:3513
14569 msgid "Partition number, counting from 1."
14570 msgstr ""
14571
14572 #. type: =item
14573 #: ../src/guestfs-actions.pod:5290 ../fish/guestfish-actions.pod:3515
14574 msgid "B<part_start>"
14575 msgstr ""
14576
14577 #. type: textblock
14578 #: ../src/guestfs-actions.pod:5292
14579 msgid ""
14580 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14581 "the device's sector size, see C<guestfs_blockdev_getss>."
14582 msgstr ""
14583
14584 #. type: =item
14585 #: ../src/guestfs-actions.pod:5295 ../fish/guestfish-actions.pod:3520
14586 msgid "B<part_end>"
14587 msgstr ""
14588
14589 #. type: textblock
14590 #: ../src/guestfs-actions.pod:5297 ../fish/guestfish-actions.pod:3522
14591 msgid "End of the partition in bytes."
14592 msgstr ""
14593
14594 #. type: =item
14595 #: ../src/guestfs-actions.pod:5299 ../fish/guestfish-actions.pod:3524
14596 msgid "B<part_size>"
14597 msgstr ""
14598
14599 #. type: textblock
14600 #: ../src/guestfs-actions.pod:5301 ../fish/guestfish-actions.pod:3526
14601 msgid "Size of the partition in bytes."
14602 msgstr ""
14603
14604 #. type: textblock
14605 #: ../src/guestfs-actions.pod:5305
14606 msgid ""
14607 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14608 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14609 "use>."
14610 msgstr ""
14611
14612 #. type: =head2
14613 #: ../src/guestfs-actions.pod:5311
14614 msgid "guestfs_part_set_bootable"
14615 msgstr ""
14616
14617 #. type: verbatim
14618 #: ../src/guestfs-actions.pod:5313
14619 #, no-wrap
14620 msgid ""
14621 " int\n"
14622 " guestfs_part_set_bootable (guestfs_h *g,\n"
14623 "                            const char *device,\n"
14624 "                            int partnum,\n"
14625 "                            int bootable);\n"
14626 "\n"
14627 msgstr ""
14628
14629 #. type: textblock
14630 #: ../src/guestfs-actions.pod:5319 ../fish/guestfish-actions.pod:3534
14631 msgid ""
14632 "This sets the bootable flag on partition numbered C<partnum> on device "
14633 "C<device>.  Note that partitions are numbered from 1."
14634 msgstr ""
14635
14636 #. type: textblock
14637 #: ../src/guestfs-actions.pod:5322 ../fish/guestfish-actions.pod:3537
14638 msgid ""
14639 "The bootable flag is used by some operating systems (notably Windows) to "
14640 "determine which partition to boot from.  It is by no means universally "
14641 "recognized."
14642 msgstr ""
14643
14644 #. type: =head2
14645 #: ../src/guestfs-actions.pod:5330
14646 msgid "guestfs_part_set_mbr_id"
14647 msgstr ""
14648
14649 #. type: verbatim
14650 #: ../src/guestfs-actions.pod:5332
14651 #, no-wrap
14652 msgid ""
14653 " int\n"
14654 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14655 "                          const char *device,\n"
14656 "                          int partnum,\n"
14657 "                          int idbyte);\n"
14658 "\n"
14659 msgstr ""
14660
14661 #. type: textblock
14662 #: ../src/guestfs-actions.pod:5338 ../fish/guestfish-actions.pod:3545
14663 msgid ""
14664 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14665 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14666 "documentation are in fact hexadecimal numbers, but usually documented "
14667 "without any leading \"0x\" which might be confusing."
14668 msgstr ""
14669
14670 #. type: =head2
14671 #: ../src/guestfs-actions.pod:5352
14672 msgid "guestfs_part_set_name"
14673 msgstr ""
14674
14675 #. type: verbatim
14676 #: ../src/guestfs-actions.pod:5354
14677 #, no-wrap
14678 msgid ""
14679 " int\n"
14680 " guestfs_part_set_name (guestfs_h *g,\n"
14681 "                        const char *device,\n"
14682 "                        int partnum,\n"
14683 "                        const char *name);\n"
14684 "\n"
14685 msgstr ""
14686
14687 #. type: textblock
14688 #: ../src/guestfs-actions.pod:5360 ../fish/guestfish-actions.pod:3559
14689 msgid ""
14690 "This sets the partition name on partition numbered C<partnum> on device "
14691 "C<device>.  Note that partitions are numbered from 1."
14692 msgstr ""
14693
14694 #. type: textblock
14695 #: ../src/guestfs-actions.pod:5363 ../fish/guestfish-actions.pod:3562
14696 msgid ""
14697 "The partition name can only be set on certain types of partition table.  "
14698 "This works on C<gpt> but not on C<mbr> partitions."
14699 msgstr ""
14700
14701 #. type: =head2
14702 #: ../src/guestfs-actions.pod:5370
14703 msgid "guestfs_part_to_dev"
14704 msgstr ""
14705
14706 #. type: verbatim
14707 #: ../src/guestfs-actions.pod:5372
14708 #, no-wrap
14709 msgid ""
14710 " char *\n"
14711 " guestfs_part_to_dev (guestfs_h *g,\n"
14712 "                      const char *partition);\n"
14713 "\n"
14714 msgstr ""
14715
14716 #. type: textblock
14717 #: ../src/guestfs-actions.pod:5376 ../fish/guestfish-actions.pod:3569
14718 msgid ""
14719 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14720 "partition number, returning the device name (eg. \"/dev/sdb\")."
14721 msgstr ""
14722
14723 #. type: textblock
14724 #: ../src/guestfs-actions.pod:5380
14725 msgid ""
14726 "The named partition must exist, for example as a string returned from "
14727 "C<guestfs_list_partitions>."
14728 msgstr ""
14729
14730 #. type: =head2
14731 #: ../src/guestfs-actions.pod:5388
14732 msgid "guestfs_ping_daemon"
14733 msgstr ""
14734
14735 #. type: verbatim
14736 #: ../src/guestfs-actions.pod:5390
14737 #, no-wrap
14738 msgid ""
14739 " int\n"
14740 " guestfs_ping_daemon (guestfs_h *g);\n"
14741 "\n"
14742 msgstr ""
14743
14744 #. type: textblock
14745 #: ../src/guestfs-actions.pod:5393 ../fish/guestfish-actions.pod:3580
14746 msgid ""
14747 "This is a test probe into the guestfs daemon running inside the qemu "
14748 "subprocess.  Calling this function checks that the daemon responds to the "
14749 "ping message, without affecting the daemon or attached block device(s) in "
14750 "any other way."
14751 msgstr ""
14752
14753 #. type: =head2
14754 #: ../src/guestfs-actions.pod:5402
14755 msgid "guestfs_pread"
14756 msgstr ""
14757
14758 #. type: verbatim
14759 #: ../src/guestfs-actions.pod:5404
14760 #, no-wrap
14761 msgid ""
14762 " char *\n"
14763 " guestfs_pread (guestfs_h *g,\n"
14764 "                const char *path,\n"
14765 "                int count,\n"
14766 "                int64_t offset,\n"
14767 "                size_t *size_r);\n"
14768 "\n"
14769 msgstr ""
14770
14771 #. type: textblock
14772 #: ../src/guestfs-actions.pod:5411 ../fish/guestfish-actions.pod:3589
14773 msgid ""
14774 "This command lets you read part of a file.  It reads C<count> bytes of the "
14775 "file, starting at C<offset>, from file C<path>."
14776 msgstr ""
14777
14778 #. type: textblock
14779 #: ../src/guestfs-actions.pod:5414 ../src/guestfs-actions.pod:5440 ../fish/guestfish-actions.pod:3592 ../fish/guestfish-actions.pod:3607
14780 msgid ""
14781 "This may read fewer bytes than requested.  For further details see the "
14782 "L<pread(2)> system call."
14783 msgstr ""
14784
14785 #. type: textblock
14786 #: ../src/guestfs-actions.pod:5417
14787 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14788 msgstr ""
14789
14790 #. type: =head2
14791 #: ../src/guestfs-actions.pod:5428
14792 msgid "guestfs_pread_device"
14793 msgstr ""
14794
14795 #. type: verbatim
14796 #: ../src/guestfs-actions.pod:5430
14797 #, no-wrap
14798 msgid ""
14799 " char *\n"
14800 " guestfs_pread_device (guestfs_h *g,\n"
14801 "                       const char *device,\n"
14802 "                       int count,\n"
14803 "                       int64_t offset,\n"
14804 "                       size_t *size_r);\n"
14805 "\n"
14806 msgstr ""
14807
14808 #. type: textblock
14809 #: ../src/guestfs-actions.pod:5437 ../fish/guestfish-actions.pod:3604
14810 msgid ""
14811 "This command lets you read part of a file.  It reads C<count> bytes of "
14812 "C<device>, starting at C<offset>."
14813 msgstr ""
14814
14815 #. type: textblock
14816 #: ../src/guestfs-actions.pod:5443
14817 msgid "See also C<guestfs_pread>."
14818 msgstr ""
14819
14820 #. type: textblock
14821 #: ../src/guestfs-actions.pod:5452
14822 msgid "(Added in 1.5.21)"
14823 msgstr ""
14824
14825 #. type: =head2
14826 #: ../src/guestfs-actions.pod:5454
14827 msgid "guestfs_pvcreate"
14828 msgstr ""
14829
14830 #. type: verbatim
14831 #: ../src/guestfs-actions.pod:5456
14832 #, no-wrap
14833 msgid ""
14834 " int\n"
14835 " guestfs_pvcreate (guestfs_h *g,\n"
14836 "                   const char *device);\n"
14837 "\n"
14838 msgstr ""
14839
14840 #. type: textblock
14841 #: ../src/guestfs-actions.pod:5460 ../fish/guestfish-actions.pod:3619
14842 msgid ""
14843 "This creates an LVM physical volume on the named C<device>, where C<device> "
14844 "should usually be a partition name such as C</dev/sda1>."
14845 msgstr ""
14846
14847 #. type: =head2
14848 #: ../src/guestfs-actions.pod:5468
14849 msgid "guestfs_pvremove"
14850 msgstr ""
14851
14852 #. type: verbatim
14853 #: ../src/guestfs-actions.pod:5470
14854 #, no-wrap
14855 msgid ""
14856 " int\n"
14857 " guestfs_pvremove (guestfs_h *g,\n"
14858 "                   const char *device);\n"
14859 "\n"
14860 msgstr ""
14861
14862 #. type: textblock
14863 #: ../src/guestfs-actions.pod:5474 ../fish/guestfish-actions.pod:3627
14864 msgid ""
14865 "This wipes a physical volume C<device> so that LVM will no longer recognise "
14866 "it."
14867 msgstr ""
14868
14869 #. type: textblock
14870 #: ../src/guestfs-actions.pod:5477 ../fish/guestfish-actions.pod:3630
14871 msgid ""
14872 "The implementation uses the C<pvremove> command which refuses to wipe "
14873 "physical volumes that contain any volume groups, so you have to remove those "
14874 "first."
14875 msgstr ""
14876
14877 #. type: =head2
14878 #: ../src/guestfs-actions.pod:5485
14879 msgid "guestfs_pvresize"
14880 msgstr ""
14881
14882 #. type: verbatim
14883 #: ../src/guestfs-actions.pod:5487
14884 #, no-wrap
14885 msgid ""
14886 " int\n"
14887 " guestfs_pvresize (guestfs_h *g,\n"
14888 "                   const char *device);\n"
14889 "\n"
14890 msgstr ""
14891
14892 #. type: textblock
14893 #: ../src/guestfs-actions.pod:5491 ../fish/guestfish-actions.pod:3638
14894 msgid ""
14895 "This resizes (expands or shrinks) an existing LVM physical volume to match "
14896 "the new size of the underlying device."
14897 msgstr ""
14898
14899 #. type: =head2
14900 #: ../src/guestfs-actions.pod:5498
14901 msgid "guestfs_pvresize_size"
14902 msgstr ""
14903
14904 #. type: verbatim
14905 #: ../src/guestfs-actions.pod:5500
14906 #, no-wrap
14907 msgid ""
14908 " int\n"
14909 " guestfs_pvresize_size (guestfs_h *g,\n"
14910 "                        const char *device,\n"
14911 "                        int64_t size);\n"
14912 "\n"
14913 msgstr ""
14914
14915 #. type: textblock
14916 #: ../src/guestfs-actions.pod:5505
14917 msgid ""
14918 "This command is the same as C<guestfs_pvresize> except that it allows you to "
14919 "specify the new size (in bytes) explicitly."
14920 msgstr ""
14921
14922 #. type: =head2
14923 #: ../src/guestfs-actions.pod:5512
14924 msgid "guestfs_pvs"
14925 msgstr ""
14926
14927 #. type: verbatim
14928 #: ../src/guestfs-actions.pod:5514
14929 #, no-wrap
14930 msgid ""
14931 " char **\n"
14932 " guestfs_pvs (guestfs_h *g);\n"
14933 "\n"
14934 msgstr ""
14935
14936 #. type: textblock
14937 #: ../src/guestfs-actions.pod:5517 ../fish/guestfish-actions.pod:3652
14938 msgid ""
14939 "List all the physical volumes detected.  This is the equivalent of the "
14940 "L<pvs(8)> command."
14941 msgstr ""
14942
14943 #. type: textblock
14944 #: ../src/guestfs-actions.pod:5520 ../fish/guestfish-actions.pod:3655
14945 msgid ""
14946 "This returns a list of just the device names that contain PVs "
14947 "(eg. C</dev/sda2>)."
14948 msgstr ""
14949
14950 #. type: textblock
14951 #: ../src/guestfs-actions.pod:5523
14952 msgid "See also C<guestfs_pvs_full>."
14953 msgstr ""
14954
14955 #. type: =head2
14956 #: ../src/guestfs-actions.pod:5531
14957 msgid "guestfs_pvs_full"
14958 msgstr ""
14959
14960 #. type: verbatim
14961 #: ../src/guestfs-actions.pod:5533
14962 #, no-wrap
14963 msgid ""
14964 " struct guestfs_lvm_pv_list *\n"
14965 " guestfs_pvs_full (guestfs_h *g);\n"
14966 "\n"
14967 msgstr ""
14968
14969 #. type: textblock
14970 #: ../src/guestfs-actions.pod:5536 ../fish/guestfish-actions.pod:3664
14971 msgid ""
14972 "List all the physical volumes detected.  This is the equivalent of the "
14973 "L<pvs(8)> command.  The \"full\" version includes all fields."
14974 msgstr ""
14975
14976 #. type: textblock
14977 #: ../src/guestfs-actions.pod:5539
14978 msgid ""
14979 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
14980 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
14981 "use>."
14982 msgstr ""
14983
14984 #. type: =head2
14985 #: ../src/guestfs-actions.pod:5545
14986 msgid "guestfs_pvuuid"
14987 msgstr ""
14988
14989 #. type: verbatim
14990 #: ../src/guestfs-actions.pod:5547
14991 #, no-wrap
14992 msgid ""
14993 " char *\n"
14994 " guestfs_pvuuid (guestfs_h *g,\n"
14995 "                 const char *device);\n"
14996 "\n"
14997 msgstr ""
14998
14999 #. type: textblock
15000 #: ../src/guestfs-actions.pod:5551 ../fish/guestfish-actions.pod:3671
15001 msgid "This command returns the UUID of the LVM PV C<device>."
15002 msgstr ""
15003
15004 #. type: =head2
15005 #: ../src/guestfs-actions.pod:5558
15006 msgid "guestfs_pwrite"
15007 msgstr ""
15008
15009 #. type: verbatim
15010 #: ../src/guestfs-actions.pod:5560
15011 #, no-wrap
15012 msgid ""
15013 " int\n"
15014 " guestfs_pwrite (guestfs_h *g,\n"
15015 "                 const char *path,\n"
15016 "                 const char *content,\n"
15017 "                 size_t content_size,\n"
15018 "                 int64_t offset);\n"
15019 "\n"
15020 msgstr ""
15021
15022 #. type: textblock
15023 #: ../src/guestfs-actions.pod:5567 ../fish/guestfish-actions.pod:3677
15024 msgid ""
15025 "This command writes to part of a file.  It writes the data buffer C<content> "
15026 "to the file C<path> starting at offset C<offset>."
15027 msgstr ""
15028
15029 #. type: textblock
15030 #: ../src/guestfs-actions.pod:5570 ../fish/guestfish-actions.pod:3680
15031 msgid ""
15032 "This command implements the L<pwrite(2)> system call, and like that system "
15033 "call it may not write the full data requested.  The return value is the "
15034 "number of bytes that were actually written to the file.  This could even be "
15035 "0, although short writes are unlikely for regular files in ordinary "
15036 "circumstances."
15037 msgstr ""
15038
15039 #. type: textblock
15040 #: ../src/guestfs-actions.pod:5576
15041 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15042 msgstr ""
15043
15044 #. type: =head2
15045 #: ../src/guestfs-actions.pod:5585
15046 msgid "guestfs_pwrite_device"
15047 msgstr ""
15048
15049 #. type: verbatim
15050 #: ../src/guestfs-actions.pod:5587
15051 #, no-wrap
15052 msgid ""
15053 " int\n"
15054 " guestfs_pwrite_device (guestfs_h *g,\n"
15055 "                        const char *device,\n"
15056 "                        const char *content,\n"
15057 "                        size_t content_size,\n"
15058 "                        int64_t offset);\n"
15059 "\n"
15060 msgstr ""
15061
15062 #. type: textblock
15063 #: ../src/guestfs-actions.pod:5594 ../fish/guestfish-actions.pod:3695
15064 msgid ""
15065 "This command writes to part of a device.  It writes the data buffer "
15066 "C<content> to C<device> starting at offset C<offset>."
15067 msgstr ""
15068
15069 #. type: textblock
15070 #: ../src/guestfs-actions.pod:5597 ../fish/guestfish-actions.pod:3698
15071 msgid ""
15072 "This command implements the L<pwrite(2)> system call, and like that system "
15073 "call it may not write the full data requested (although short writes to disk "
15074 "devices and partitions are probably impossible with standard Linux kernels)."
15075 msgstr ""
15076
15077 #. type: textblock
15078 #: ../src/guestfs-actions.pod:5602
15079 msgid "See also C<guestfs_pwrite>."
15080 msgstr ""
15081
15082 #. type: textblock
15083 #: ../src/guestfs-actions.pod:5609
15084 msgid "(Added in 1.5.20)"
15085 msgstr ""
15086
15087 #. type: =head2
15088 #: ../src/guestfs-actions.pod:5611
15089 msgid "guestfs_read_file"
15090 msgstr ""
15091
15092 #. type: verbatim
15093 #: ../src/guestfs-actions.pod:5613
15094 #, no-wrap
15095 msgid ""
15096 " char *\n"
15097 " guestfs_read_file (guestfs_h *g,\n"
15098 "                    const char *path,\n"
15099 "                    size_t *size_r);\n"
15100 "\n"
15101 msgstr ""
15102
15103 #. type: textblock
15104 #: ../src/guestfs-actions.pod:5618 ../fish/guestfish-actions.pod:3712
15105 msgid "This calls returns the contents of the file C<path> as a buffer."
15106 msgstr ""
15107
15108 #. type: textblock
15109 #: ../src/guestfs-actions.pod:5621
15110 msgid ""
15111 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15112 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15113 "function is limited in the total size of file that can be handled."
15114 msgstr ""
15115
15116 #. type: textblock
15117 #: ../src/guestfs-actions.pod:5633
15118 msgid "(Added in 1.0.63)"
15119 msgstr ""
15120
15121 #. type: =head2
15122 #: ../src/guestfs-actions.pod:5635
15123 msgid "guestfs_read_lines"
15124 msgstr ""
15125
15126 #. type: verbatim
15127 #: ../src/guestfs-actions.pod:5637
15128 #, no-wrap
15129 msgid ""
15130 " char **\n"
15131 " guestfs_read_lines (guestfs_h *g,\n"
15132 "                     const char *path);\n"
15133 "\n"
15134 msgstr ""
15135
15136 #. type: textblock
15137 #: ../src/guestfs-actions.pod:5643 ../fish/guestfish-actions.pod:3729
15138 msgid ""
15139 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15140 "C<CRLF> character sequences are I<not> returned."
15141 msgstr ""
15142
15143 #. type: textblock
15144 #: ../src/guestfs-actions.pod:5646
15145 msgid ""
15146 "Note that this function cannot correctly handle binary files (specifically, "
15147 "files containing C<\\0> character which is treated as end of line).  For "
15148 "those you need to use the C<guestfs_read_file> function which has a more "
15149 "complex interface."
15150 msgstr ""
15151
15152 #. type: =head2
15153 #: ../src/guestfs-actions.pod:5657
15154 msgid "guestfs_readdir"
15155 msgstr ""
15156
15157 #. type: verbatim
15158 #: ../src/guestfs-actions.pod:5659
15159 #, no-wrap
15160 msgid ""
15161 " struct guestfs_dirent_list *\n"
15162 " guestfs_readdir (guestfs_h *g,\n"
15163 "                  const char *dir);\n"
15164 "\n"
15165 msgstr ""
15166
15167 #. type: textblock
15168 #: ../src/guestfs-actions.pod:5663 ../fish/guestfish-actions.pod:3741
15169 msgid "This returns the list of directory entries in directory C<dir>."
15170 msgstr ""
15171
15172 #. type: textblock
15173 #: ../src/guestfs-actions.pod:5665 ../fish/guestfish-actions.pod:3743
15174 msgid ""
15175 "All entries in the directory are returned, including C<.> and C<..>.  The "
15176 "entries are I<not> sorted, but returned in the same order as the underlying "
15177 "filesystem."
15178 msgstr ""
15179
15180 #. type: textblock
15181 #: ../src/guestfs-actions.pod:5669 ../fish/guestfish-actions.pod:3747
15182 msgid ""
15183 "Also this call returns basic file type information about each file.  The "
15184 "C<ftyp> field will contain one of the following characters:"
15185 msgstr ""
15186
15187 #. type: =item
15188 #: ../src/guestfs-actions.pod:5674 ../fish/guestfish-actions.pod:3752
15189 msgid "'b'"
15190 msgstr ""
15191
15192 #. type: textblock
15193 #: ../src/guestfs-actions.pod:5676 ../fish/guestfish-actions.pod:3754
15194 msgid "Block special"
15195 msgstr ""
15196
15197 #. type: =item
15198 #: ../src/guestfs-actions.pod:5678 ../fish/guestfish-actions.pod:3756
15199 msgid "'c'"
15200 msgstr ""
15201
15202 #. type: textblock
15203 #: ../src/guestfs-actions.pod:5680 ../fish/guestfish-actions.pod:3758
15204 msgid "Char special"
15205 msgstr ""
15206
15207 #. type: =item
15208 #: ../src/guestfs-actions.pod:5682 ../fish/guestfish-actions.pod:3760
15209 msgid "'d'"
15210 msgstr ""
15211
15212 #. type: textblock
15213 #: ../src/guestfs-actions.pod:5684 ../fish/guestfish-actions.pod:3762
15214 msgid "Directory"
15215 msgstr ""
15216
15217 #. type: =item
15218 #: ../src/guestfs-actions.pod:5686 ../fish/guestfish-actions.pod:3764
15219 msgid "'f'"
15220 msgstr ""
15221
15222 #. type: textblock
15223 #: ../src/guestfs-actions.pod:5688 ../fish/guestfish-actions.pod:3766
15224 msgid "FIFO (named pipe)"
15225 msgstr ""
15226
15227 #. type: =item
15228 #: ../src/guestfs-actions.pod:5690 ../fish/guestfish-actions.pod:3768
15229 msgid "'l'"
15230 msgstr ""
15231
15232 #. type: textblock
15233 #: ../src/guestfs-actions.pod:5692 ../fish/guestfish-actions.pod:3770
15234 msgid "Symbolic link"
15235 msgstr ""
15236
15237 #. type: =item
15238 #: ../src/guestfs-actions.pod:5694 ../fish/guestfish-actions.pod:3772
15239 msgid "'r'"
15240 msgstr ""
15241
15242 #. type: textblock
15243 #: ../src/guestfs-actions.pod:5696 ../fish/guestfish-actions.pod:3774
15244 msgid "Regular file"
15245 msgstr ""
15246
15247 #. type: =item
15248 #: ../src/guestfs-actions.pod:5698 ../fish/guestfish-actions.pod:3776
15249 msgid "'s'"
15250 msgstr ""
15251
15252 #. type: textblock
15253 #: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3778
15254 msgid "Socket"
15255 msgstr ""
15256
15257 #. type: =item
15258 #: ../src/guestfs-actions.pod:5702 ../fish/guestfish-actions.pod:3780
15259 msgid "'u'"
15260 msgstr ""
15261
15262 #. type: textblock
15263 #: ../src/guestfs-actions.pod:5704 ../fish/guestfish-actions.pod:3782
15264 msgid "Unknown file type"
15265 msgstr ""
15266
15267 #. type: =item
15268 #: ../src/guestfs-actions.pod:5706 ../fish/guestfish-actions.pod:3784
15269 msgid "'?'"
15270 msgstr ""
15271
15272 #. type: textblock
15273 #: ../src/guestfs-actions.pod:5708 ../fish/guestfish-actions.pod:3786
15274 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15275 msgstr ""
15276
15277 #. type: textblock
15278 #: ../src/guestfs-actions.pod:5713
15279 msgid ""
15280 "This function is primarily intended for use by programs.  To get a simple "
15281 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15282 "consumption, use C<guestfs_ll>."
15283 msgstr ""
15284
15285 #. type: textblock
15286 #: ../src/guestfs-actions.pod:5717
15287 msgid ""
15288 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15289 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
15290 "use>."
15291 msgstr ""
15292
15293 #. type: =head2
15294 #: ../src/guestfs-actions.pod:5723
15295 msgid "guestfs_readlink"
15296 msgstr ""
15297
15298 #. type: verbatim
15299 #: ../src/guestfs-actions.pod:5725
15300 #, no-wrap
15301 msgid ""
15302 " char *\n"
15303 " guestfs_readlink (guestfs_h *g,\n"
15304 "                   const char *path);\n"
15305 "\n"
15306 msgstr ""
15307
15308 #. type: textblock
15309 #: ../src/guestfs-actions.pod:5729 ../fish/guestfish-actions.pod:3799
15310 msgid "This command reads the target of a symbolic link."
15311 msgstr ""
15312
15313 #. type: =head2
15314 #: ../src/guestfs-actions.pod:5736
15315 msgid "guestfs_readlinklist"
15316 msgstr ""
15317
15318 #. type: verbatim
15319 #: ../src/guestfs-actions.pod:5738
15320 #, no-wrap
15321 msgid ""
15322 " char **\n"
15323 " guestfs_readlinklist (guestfs_h *g,\n"
15324 "                       const char *path,\n"
15325 "                       char *const *names);\n"
15326 "\n"
15327 msgstr ""
15328
15329 #. type: textblock
15330 #: ../src/guestfs-actions.pod:5743 ../fish/guestfish-actions.pod:3805
15331 msgid ""
15332 "This call allows you to do a C<readlink> operation on multiple files, where "
15333 "all files are in the directory C<path>.  C<names> is the list of files from "
15334 "this directory."
15335 msgstr ""
15336
15337 #. type: textblock
15338 #: ../src/guestfs-actions.pod:5747 ../fish/guestfish-actions.pod:3809
15339 msgid ""
15340 "On return you get a list of strings, with a one-to-one correspondence to the "
15341 "C<names> list.  Each string is the value of the symbolic link."
15342 msgstr ""
15343
15344 #. type: textblock
15345 #: ../src/guestfs-actions.pod:5751 ../fish/guestfish-actions.pod:3813
15346 msgid ""
15347 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15348 "result string is the empty string C<\"\">.  However the whole operation is "
15349 "completed even if there were C<readlink(2)> errors, and so you can call this "
15350 "function with names where you don't know if they are symbolic links already "
15351 "(albeit slightly less efficient)."
15352 msgstr ""
15353
15354 #. type: textblock
15355 #: ../src/guestfs-actions.pod:5758 ../fish/guestfish-actions.pod:3820
15356 msgid ""
15357 "This call is intended for programs that want to efficiently list a directory "
15358 "contents without making many round-trips.  Very long directory listings "
15359 "might cause the protocol message size to be exceeded, causing this call to "
15360 "fail.  The caller must split up such requests into smaller groups of names."
15361 msgstr ""
15362
15363 #. type: =head2
15364 #: ../src/guestfs-actions.pod:5771
15365 msgid "guestfs_realpath"
15366 msgstr ""
15367
15368 #. type: verbatim
15369 #: ../src/guestfs-actions.pod:5773
15370 #, no-wrap
15371 msgid ""
15372 " char *\n"
15373 " guestfs_realpath (guestfs_h *g,\n"
15374 "                   const char *path);\n"
15375 "\n"
15376 msgstr ""
15377
15378 #. type: textblock
15379 #: ../src/guestfs-actions.pod:5777 ../fish/guestfish-actions.pod:3831
15380 msgid ""
15381 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15382 "has no C<.>, C<..> or symbolic link path elements."
15383 msgstr ""
15384
15385 #. type: =head2
15386 #: ../src/guestfs-actions.pod:5785
15387 msgid "guestfs_removexattr"
15388 msgstr ""
15389
15390 #. type: verbatim
15391 #: ../src/guestfs-actions.pod:5787
15392 #, no-wrap
15393 msgid ""
15394 " int\n"
15395 " guestfs_removexattr (guestfs_h *g,\n"
15396 "                      const char *xattr,\n"
15397 "                      const char *path);\n"
15398 "\n"
15399 msgstr ""
15400
15401 #. type: textblock
15402 #: ../src/guestfs-actions.pod:5792 ../fish/guestfish-actions.pod:3838
15403 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
15404 msgstr ""
15405
15406 #. type: textblock
15407 #: ../src/guestfs-actions.pod:5795
15408 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15409 msgstr ""
15410
15411 #. type: =head2
15412 #: ../src/guestfs-actions.pod:5801
15413 msgid "guestfs_resize2fs"
15414 msgstr ""
15415
15416 #. type: verbatim
15417 #: ../src/guestfs-actions.pod:5803
15418 #, no-wrap
15419 msgid ""
15420 " int\n"
15421 " guestfs_resize2fs (guestfs_h *g,\n"
15422 "                    const char *device);\n"
15423 "\n"
15424 msgstr ""
15425
15426 #. type: textblock
15427 #: ../src/guestfs-actions.pod:5807 ../fish/guestfish-actions.pod:3847
15428 msgid ""
15429 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15430 "underlying device."
15431 msgstr ""
15432
15433 #. type: textblock
15434 #: ../src/guestfs-actions.pod:5810
15435 msgid ""
15436 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15437 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15438 "sometimes gives an error about this and sometimes not.  In any case, it is "
15439 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15440 msgstr ""
15441
15442 #. type: =head2
15443 #: ../src/guestfs-actions.pod:5820
15444 msgid "guestfs_resize2fs_M"
15445 msgstr ""
15446
15447 #. type: verbatim
15448 #: ../src/guestfs-actions.pod:5822
15449 #, no-wrap
15450 msgid ""
15451 " int\n"
15452 " guestfs_resize2fs_M (guestfs_h *g,\n"
15453 "                      const char *device);\n"
15454 "\n"
15455 msgstr ""
15456
15457 #. type: textblock
15458 #: ../src/guestfs-actions.pod:5826
15459 msgid ""
15460 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15461 "resized to its minimum size.  This works like the I<-M> option to the "
15462 "C<resize2fs> command."
15463 msgstr ""
15464
15465 #. type: textblock
15466 #: ../src/guestfs-actions.pod:5830
15467 msgid ""
15468 "To get the resulting size of the filesystem you should call "
15469 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15470 "These two numbers, multiplied together, give the resulting size of the "
15471 "minimal filesystem in bytes."
15472 msgstr ""
15473
15474 #. type: =head2
15475 #: ../src/guestfs-actions.pod:5839
15476 msgid "guestfs_resize2fs_size"
15477 msgstr ""
15478
15479 #. type: verbatim
15480 #: ../src/guestfs-actions.pod:5841
15481 #, no-wrap
15482 msgid ""
15483 " int\n"
15484 " guestfs_resize2fs_size (guestfs_h *g,\n"
15485 "                         const char *device,\n"
15486 "                         int64_t size);\n"
15487 "\n"
15488 msgstr ""
15489
15490 #. type: textblock
15491 #: ../src/guestfs-actions.pod:5846
15492 msgid ""
15493 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15494 "to specify the new size (in bytes) explicitly."
15495 msgstr ""
15496
15497 #. type: =head2
15498 #: ../src/guestfs-actions.pod:5853
15499 msgid "guestfs_rm"
15500 msgstr ""
15501
15502 #. type: verbatim
15503 #: ../src/guestfs-actions.pod:5855
15504 #, no-wrap
15505 msgid ""
15506 " int\n"
15507 " guestfs_rm (guestfs_h *g,\n"
15508 "             const char *path);\n"
15509 "\n"
15510 msgstr ""
15511
15512 #. type: textblock
15513 #: ../src/guestfs-actions.pod:5859 ../fish/guestfish-actions.pod:3880
15514 msgid "Remove the single file C<path>."
15515 msgstr ""
15516
15517 #. type: =head2
15518 #: ../src/guestfs-actions.pod:5865
15519 msgid "guestfs_rm_rf"
15520 msgstr ""
15521
15522 #. type: verbatim
15523 #: ../src/guestfs-actions.pod:5867
15524 #, no-wrap
15525 msgid ""
15526 " int\n"
15527 " guestfs_rm_rf (guestfs_h *g,\n"
15528 "                const char *path);\n"
15529 "\n"
15530 msgstr ""
15531
15532 #. type: textblock
15533 #: ../src/guestfs-actions.pod:5871 ../fish/guestfish-actions.pod:3886
15534 msgid ""
15535 "Remove the file or directory C<path>, recursively removing the contents if "
15536 "its a directory.  This is like the C<rm -rf> shell command."
15537 msgstr ""
15538
15539 #. type: =head2
15540 #: ../src/guestfs-actions.pod:5879
15541 msgid "guestfs_rmdir"
15542 msgstr ""
15543
15544 #. type: verbatim
15545 #: ../src/guestfs-actions.pod:5881
15546 #, no-wrap
15547 msgid ""
15548 " int\n"
15549 " guestfs_rmdir (guestfs_h *g,\n"
15550 "                const char *path);\n"
15551 "\n"
15552 msgstr ""
15553
15554 #. type: textblock
15555 #: ../src/guestfs-actions.pod:5885 ../fish/guestfish-actions.pod:3894
15556 msgid "Remove the single directory C<path>."
15557 msgstr ""
15558
15559 #. type: =head2
15560 #: ../src/guestfs-actions.pod:5891
15561 msgid "guestfs_rmmountpoint"
15562 msgstr ""
15563
15564 #. type: verbatim
15565 #: ../src/guestfs-actions.pod:5893
15566 #, no-wrap
15567 msgid ""
15568 " int\n"
15569 " guestfs_rmmountpoint (guestfs_h *g,\n"
15570 "                       const char *exemptpath);\n"
15571 "\n"
15572 msgstr ""
15573
15574 #. type: textblock
15575 #: ../src/guestfs-actions.pod:5897
15576 msgid ""
15577 "This calls removes a mountpoint that was previously created with "
15578 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15579 msgstr ""
15580
15581 #. type: =head2
15582 #: ../src/guestfs-actions.pod:5905
15583 msgid "guestfs_scrub_device"
15584 msgstr ""
15585
15586 #. type: verbatim
15587 #: ../src/guestfs-actions.pod:5907
15588 #, no-wrap
15589 msgid ""
15590 " int\n"
15591 " guestfs_scrub_device (guestfs_h *g,\n"
15592 "                       const char *device);\n"
15593 "\n"
15594 msgstr ""
15595
15596 #. type: textblock
15597 #: ../src/guestfs-actions.pod:5911 ../fish/guestfish-actions.pod:3908
15598 msgid ""
15599 "This command writes patterns over C<device> to make data retrieval more "
15600 "difficult."
15601 msgstr ""
15602
15603 #. type: textblock
15604 #: ../src/guestfs-actions.pod:5914 ../src/guestfs-actions.pod:5935 ../src/guestfs-actions.pod:5954 ../fish/guestfish-actions.pod:3911 ../fish/guestfish-actions.pod:3926 ../fish/guestfish-actions.pod:3939
15605 msgid ""
15606 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15607 "more details."
15608 msgstr ""
15609
15610 #. type: textblock
15611 #: ../src/guestfs-actions.pod:5922 ../src/guestfs-actions.pod:5940 ../src/guestfs-actions.pod:5959
15612 msgid "(Added in 1.0.52)"
15613 msgstr ""
15614
15615 #. type: =head2
15616 #: ../src/guestfs-actions.pod:5924
15617 msgid "guestfs_scrub_file"
15618 msgstr ""
15619
15620 #. type: verbatim
15621 #: ../src/guestfs-actions.pod:5926
15622 #, no-wrap
15623 msgid ""
15624 " int\n"
15625 " guestfs_scrub_file (guestfs_h *g,\n"
15626 "                     const char *file);\n"
15627 "\n"
15628 msgstr ""
15629
15630 #. type: textblock
15631 #: ../src/guestfs-actions.pod:5930 ../fish/guestfish-actions.pod:3921
15632 msgid ""
15633 "This command writes patterns over a file to make data retrieval more "
15634 "difficult."
15635 msgstr ""
15636
15637 #. type: textblock
15638 #: ../src/guestfs-actions.pod:5933 ../fish/guestfish-actions.pod:3924
15639 msgid "The file is I<removed> after scrubbing."
15640 msgstr ""
15641
15642 #. type: =head2
15643 #: ../src/guestfs-actions.pod:5942
15644 msgid "guestfs_scrub_freespace"
15645 msgstr ""
15646
15647 #. type: verbatim
15648 #: ../src/guestfs-actions.pod:5944
15649 #, no-wrap
15650 msgid ""
15651 " int\n"
15652 " guestfs_scrub_freespace (guestfs_h *g,\n"
15653 "                          const char *dir);\n"
15654 "\n"
15655 msgstr ""
15656
15657 #. type: textblock
15658 #: ../src/guestfs-actions.pod:5948
15659 msgid ""
15660 "This command creates the directory C<dir> and then fills it with files until "
15661 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15662 "and deletes them.  The intention is to scrub any free space on the partition "
15663 "containing C<dir>."
15664 msgstr ""
15665
15666 #. type: =head2
15667 #: ../src/guestfs-actions.pod:5961
15668 msgid "guestfs_set_append"
15669 msgstr ""
15670
15671 #. type: verbatim
15672 #: ../src/guestfs-actions.pod:5963
15673 #, no-wrap
15674 msgid ""
15675 " int\n"
15676 " guestfs_set_append (guestfs_h *g,\n"
15677 "                     const char *append);\n"
15678 "\n"
15679 msgstr ""
15680
15681 #. type: textblock
15682 #: ../src/guestfs-actions.pod:5967 ../fish/guestfish-actions.pod:3948
15683 msgid ""
15684 "This function is used to add additional options to the guest kernel command "
15685 "line."
15686 msgstr ""
15687
15688 #. type: textblock
15689 #: ../src/guestfs-actions.pod:5970 ../fish/guestfish-actions.pod:3951
15690 msgid ""
15691 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15692 "environment variable."
15693 msgstr ""
15694
15695 #. type: textblock
15696 #: ../src/guestfs-actions.pod:5973 ../fish/guestfish-actions.pod:3954
15697 msgid ""
15698 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15699 "(libguestfs always adds a few of its own)."
15700 msgstr ""
15701
15702 #. type: =head2
15703 #: ../src/guestfs-actions.pod:5980
15704 msgid "guestfs_set_attach_method"
15705 msgstr ""
15706
15707 #. type: verbatim
15708 #: ../src/guestfs-actions.pod:5982
15709 #, no-wrap
15710 msgid ""
15711 " int\n"
15712 " guestfs_set_attach_method (guestfs_h *g,\n"
15713 "                            const char *attachmethod);\n"
15714 "\n"
15715 msgstr ""
15716
15717 #. type: textblock
15718 #: ../src/guestfs-actions.pod:5986 ../fish/guestfish-actions.pod:3963
15719 msgid ""
15720 "Set the method that libguestfs uses to connect to the back end guestfsd "
15721 "daemon.  Possible methods are:"
15722 msgstr ""
15723
15724 #. type: textblock
15725 #: ../src/guestfs-actions.pod:5993 ../fish/guestfish-actions.pod:3970
15726 msgid ""
15727 "Launch an appliance and connect to it.  This is the ordinary method and the "
15728 "default."
15729 msgstr ""
15730
15731 #. type: =item
15732 #: ../src/guestfs-actions.pod:5996 ../fish/guestfish-actions.pod:3973
15733 msgid "C<unix:I<path>>"
15734 msgstr ""
15735
15736 #. type: textblock
15737 #: ../src/guestfs-actions.pod:5998 ../fish/guestfish-actions.pod:3975
15738 msgid "Connect to the Unix domain socket I<path>."
15739 msgstr ""
15740
15741 #. type: textblock
15742 #: ../src/guestfs-actions.pod:6000 ../fish/guestfish-actions.pod:3977
15743 msgid ""
15744 "This method lets you connect to an existing daemon or (using virtio-serial) "
15745 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15746 "RUNNING DAEMONS>."
15747 msgstr ""
15748
15749 #. type: =head2
15750 #: ../src/guestfs-actions.pod:6010
15751 msgid "guestfs_set_autosync"
15752 msgstr ""
15753
15754 #. type: verbatim
15755 #: ../src/guestfs-actions.pod:6012
15756 #, no-wrap
15757 msgid ""
15758 " int\n"
15759 " guestfs_set_autosync (guestfs_h *g,\n"
15760 "                       int autosync);\n"
15761 "\n"
15762 msgstr ""
15763
15764 #. type: textblock
15765 #: ../src/guestfs-actions.pod:6016 ../fish/guestfish-actions.pod:3989
15766 msgid ""
15767 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15768 "effort attempt to make filesystems consistent and synchronized when the "
15769 "handle is closed (also if the program exits without closing handles)."
15770 msgstr ""
15771
15772 #. type: textblock
15773 #: ../src/guestfs-actions.pod:6021 ../fish/guestfish-actions.pod:3994
15774 msgid ""
15775 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15776 "disabled by default)."
15777 msgstr ""
15778
15779 #. type: =head2
15780 #: ../src/guestfs-actions.pod:6028
15781 msgid "guestfs_set_direct"
15782 msgstr ""
15783
15784 #. type: verbatim
15785 #: ../src/guestfs-actions.pod:6030
15786 #, no-wrap
15787 msgid ""
15788 " int\n"
15789 " guestfs_set_direct (guestfs_h *g,\n"
15790 "                     int direct);\n"
15791 "\n"
15792 msgstr ""
15793
15794 #. type: textblock
15795 #: ../src/guestfs-actions.pod:6034 ../fish/guestfish-actions.pod:4003
15796 msgid ""
15797 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15798 "passed directly through to the appliance once it is launched."
15799 msgstr ""
15800
15801 #. type: textblock
15802 #: ../src/guestfs-actions.pod:6038
15803 msgid ""
15804 "One consequence of this is that log messages aren't caught by the library "
15805 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
15806 "stdout."
15807 msgstr ""
15808
15809 #. type: textblock
15810 #: ../src/guestfs-actions.pod:6042 ../fish/guestfish-actions.pod:4011
15811 msgid "You probably don't want to use this unless you know what you are doing."
15812 msgstr ""
15813
15814 #. type: textblock
15815 #: ../src/guestfs-actions.pod:6045 ../fish/guestfish-actions.pod:4014
15816 msgid "The default is disabled."
15817 msgstr ""
15818
15819 #. type: =head2
15820 #: ../src/guestfs-actions.pod:6051
15821 msgid "guestfs_set_e2label"
15822 msgstr ""
15823
15824 #. type: verbatim
15825 #: ../src/guestfs-actions.pod:6053
15826 #, no-wrap
15827 msgid ""
15828 " int\n"
15829 " guestfs_set_e2label (guestfs_h *g,\n"
15830 "                      const char *device,\n"
15831 "                      const char *label);\n"
15832 "\n"
15833 msgstr ""
15834
15835 #. type: textblock
15836 #: ../src/guestfs-actions.pod:6058 ../fish/guestfish-actions.pod:4020
15837 msgid ""
15838 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
15839 "C<label>.  Filesystem labels are limited to 16 characters."
15840 msgstr ""
15841
15842 #. type: textblock
15843 #: ../src/guestfs-actions.pod:6062
15844 msgid ""
15845 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
15846 "the existing label on a filesystem."
15847 msgstr ""
15848
15849 #. type: =head2
15850 #: ../src/guestfs-actions.pod:6069
15851 msgid "guestfs_set_e2uuid"
15852 msgstr ""
15853
15854 #. type: verbatim
15855 #: ../src/guestfs-actions.pod:6071
15856 #, no-wrap
15857 msgid ""
15858 " int\n"
15859 " guestfs_set_e2uuid (guestfs_h *g,\n"
15860 "                     const char *device,\n"
15861 "                     const char *uuid);\n"
15862 "\n"
15863 msgstr ""
15864
15865 #. type: textblock
15866 #: ../src/guestfs-actions.pod:6076 ../fish/guestfish-actions.pod:4031
15867 msgid ""
15868 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
15869 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
15870 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
15871 msgstr ""
15872
15873 #. type: textblock
15874 #: ../src/guestfs-actions.pod:6081
15875 msgid ""
15876 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
15877 "the existing UUID of a filesystem."
15878 msgstr ""
15879
15880 #. type: =head2
15881 #: ../src/guestfs-actions.pod:6088
15882 msgid "guestfs_set_memsize"
15883 msgstr ""
15884
15885 #. type: verbatim
15886 #: ../src/guestfs-actions.pod:6090
15887 #, no-wrap
15888 msgid ""
15889 " int\n"
15890 " guestfs_set_memsize (guestfs_h *g,\n"
15891 "                      int memsize);\n"
15892 "\n"
15893 msgstr ""
15894
15895 #. type: textblock
15896 #: ../src/guestfs-actions.pod:6094
15897 msgid ""
15898 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
15899 "This only has any effect if called before C<guestfs_launch>."
15900 msgstr ""
15901
15902 #. type: textblock
15903 #: ../src/guestfs-actions.pod:6098 ../fish/guestfish-actions.pod:4049
15904 msgid ""
15905 "You can also change this by setting the environment variable "
15906 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
15907 msgstr ""
15908
15909 #. type: =head2
15910 #: ../src/guestfs-actions.pod:6109
15911 msgid "guestfs_set_network"
15912 msgstr ""
15913
15914 #. type: verbatim
15915 #: ../src/guestfs-actions.pod:6111
15916 #, no-wrap
15917 msgid ""
15918 " int\n"
15919 " guestfs_set_network (guestfs_h *g,\n"
15920 "                      int network);\n"
15921 "\n"
15922 msgstr ""
15923
15924 #. type: textblock
15925 #: ../src/guestfs-actions.pod:6115 ../fish/guestfish-actions.pod:4062
15926 msgid ""
15927 "If C<network> is true, then the network is enabled in the libguestfs "
15928 "appliance.  The default is false."
15929 msgstr ""
15930
15931 #. type: textblock
15932 #: ../src/guestfs-actions.pod:6118 ../fish/guestfish-actions.pod:4065
15933 msgid ""
15934 "This affects whether commands are able to access the network (see "
15935 "L<guestfs(3)/RUNNING COMMANDS>)."
15936 msgstr ""
15937
15938 #. type: textblock
15939 #: ../src/guestfs-actions.pod:6121
15940 msgid ""
15941 "You must call this before calling C<guestfs_launch>, otherwise it has no "
15942 "effect."
15943 msgstr ""
15944
15945 #. type: =head2
15946 #: ../src/guestfs-actions.pod:6128
15947 msgid "guestfs_set_path"
15948 msgstr ""
15949
15950 #. type: verbatim
15951 #: ../src/guestfs-actions.pod:6130
15952 #, no-wrap
15953 msgid ""
15954 " int\n"
15955 " guestfs_set_path (guestfs_h *g,\n"
15956 "                   const char *searchpath);\n"
15957 "\n"
15958 msgstr ""
15959
15960 #. type: textblock
15961 #: ../src/guestfs-actions.pod:6134 ../fish/guestfish-actions.pod:4077
15962 msgid "Set the path that libguestfs searches for kernel and initrd.img."
15963 msgstr ""
15964
15965 #. type: textblock
15966 #: ../src/guestfs-actions.pod:6136 ../fish/guestfish-actions.pod:4079
15967 msgid ""
15968 "The default is C<$libdir/guestfs> unless overridden by setting "
15969 "C<LIBGUESTFS_PATH> environment variable."
15970 msgstr ""
15971
15972 #. type: textblock
15973 #: ../src/guestfs-actions.pod:6139 ../fish/guestfish-actions.pod:4082
15974 msgid "Setting C<path> to C<NULL> restores the default path."
15975 msgstr ""
15976
15977 #. type: =head2
15978 #: ../src/guestfs-actions.pod:6145
15979 msgid "guestfs_set_qemu"
15980 msgstr ""
15981
15982 #. type: verbatim
15983 #: ../src/guestfs-actions.pod:6147
15984 #, no-wrap
15985 msgid ""
15986 " int\n"
15987 " guestfs_set_qemu (guestfs_h *g,\n"
15988 "                   const char *qemu);\n"
15989 "\n"
15990 msgstr ""
15991
15992 #. type: textblock
15993 #: ../src/guestfs-actions.pod:6151 ../fish/guestfish-actions.pod:4090
15994 msgid "Set the qemu binary that we will use."
15995 msgstr ""
15996
15997 #. type: textblock
15998 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4092
15999 msgid "The default is chosen when the library was compiled by the configure script."
16000 msgstr ""
16001
16002 #. type: textblock
16003 #: ../src/guestfs-actions.pod:6156 ../fish/guestfish-actions.pod:4095
16004 msgid ""
16005 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16006 "variable."
16007 msgstr ""
16008
16009 #. type: textblock
16010 #: ../src/guestfs-actions.pod:6159 ../fish/guestfish-actions.pod:4098
16011 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16012 msgstr ""
16013
16014 #. type: textblock
16015 #: ../src/guestfs-actions.pod:6161 ../fish/guestfish-actions.pod:4100
16016 msgid ""
16017 "Note that you should call this function as early as possible after creating "
16018 "the handle.  This is because some pre-launch operations depend on testing "
16019 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16020 "don't retest features, and so you might see inconsistent results.  Using the "
16021 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16022 "the qemu binary at the same time as the handle is created."
16023 msgstr ""
16024
16025 #. type: =head2
16026 #: ../src/guestfs-actions.pod:6173
16027 msgid "guestfs_set_recovery_proc"
16028 msgstr ""
16029
16030 #. type: verbatim
16031 #: ../src/guestfs-actions.pod:6175
16032 #, no-wrap
16033 msgid ""
16034 " int\n"
16035 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16036 "                            int recoveryproc);\n"
16037 "\n"
16038 msgstr ""
16039
16040 #. type: textblock
16041 #: ../src/guestfs-actions.pod:6179
16042 msgid ""
16043 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16044 "not create a recovery process.  The purpose of the recovery process is to "
16045 "stop runaway qemu processes in the case where the main program aborts "
16046 "abruptly."
16047 msgstr ""
16048
16049 #. type: textblock
16050 #: ../src/guestfs-actions.pod:6184
16051 msgid ""
16052 "This only has any effect if called before C<guestfs_launch>, and the default "
16053 "is true."
16054 msgstr ""
16055
16056 #. type: textblock
16057 #: ../src/guestfs-actions.pod:6187 ../fish/guestfish-actions.pod:4122
16058 msgid ""
16059 "About the only time when you would want to disable this is if the main "
16060 "process will fork itself into the background (\"daemonize\" itself).  In "
16061 "this case the recovery process thinks that the main program has disappeared "
16062 "and so kills qemu, which is not very helpful."
16063 msgstr ""
16064
16065 #. type: =head2
16066 #: ../src/guestfs-actions.pod:6197
16067 msgid "guestfs_set_selinux"
16068 msgstr ""
16069
16070 #. type: verbatim
16071 #: ../src/guestfs-actions.pod:6199
16072 #, no-wrap
16073 msgid ""
16074 " int\n"
16075 " guestfs_set_selinux (guestfs_h *g,\n"
16076 "                      int selinux);\n"
16077 "\n"
16078 msgstr ""
16079
16080 #. type: textblock
16081 #: ../src/guestfs-actions.pod:6203 ../fish/guestfish-actions.pod:4134
16082 msgid ""
16083 "This sets the selinux flag that is passed to the appliance at boot time.  "
16084 "The default is C<selinux=0> (disabled)."
16085 msgstr ""
16086
16087 #. type: textblock
16088 #: ../src/guestfs-actions.pod:6206 ../fish/guestfish-actions.pod:4137
16089 msgid ""
16090 "Note that if SELinux is enabled, it is always in Permissive mode "
16091 "(C<enforcing=0>)."
16092 msgstr ""
16093
16094 #. type: =head2
16095 #: ../src/guestfs-actions.pod:6216
16096 msgid "guestfs_set_trace"
16097 msgstr ""
16098
16099 #. type: verbatim
16100 #: ../src/guestfs-actions.pod:6218
16101 #, no-wrap
16102 msgid ""
16103 " int\n"
16104 " guestfs_set_trace (guestfs_h *g,\n"
16105 "                    int trace);\n"
16106 "\n"
16107 msgstr ""
16108
16109 #. type: textblock
16110 #: ../src/guestfs-actions.pod:6222 ../fish/guestfish-actions.pod:4149
16111 msgid ""
16112 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16113 "return values are traced."
16114 msgstr ""
16115
16116 #. type: textblock
16117 #: ../src/guestfs-actions.pod:6225 ../fish/guestfish-actions.pod:4152
16118 msgid ""
16119 "If you want to trace C API calls into libguestfs (and other libraries) then "
16120 "possibly a better way is to use the external ltrace(1) command."
16121 msgstr ""
16122
16123 #. type: textblock
16124 #: ../src/guestfs-actions.pod:6229 ../fish/guestfish-actions.pod:4156
16125 msgid ""
16126 "Command traces are disabled unless the environment variable "
16127 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16128 msgstr ""
16129
16130 #. type: textblock
16131 #: ../src/guestfs-actions.pod:6232
16132 msgid ""
16133 "Trace messages are normally sent to C<stderr>, unless you register a "
16134 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16135 msgstr ""
16136
16137 #. type: =head2
16138 #: ../src/guestfs-actions.pod:6240
16139 msgid "guestfs_set_verbose"
16140 msgstr ""
16141
16142 #. type: verbatim
16143 #: ../src/guestfs-actions.pod:6242
16144 #, no-wrap
16145 msgid ""
16146 " int\n"
16147 " guestfs_set_verbose (guestfs_h *g,\n"
16148 "                      int verbose);\n"
16149 "\n"
16150 msgstr ""
16151
16152 #. type: textblock
16153 #: ../src/guestfs-actions.pod:6246 ../fish/guestfish-actions.pod:4169
16154 msgid "If C<verbose> is true, this turns on verbose messages."
16155 msgstr ""
16156
16157 #. type: textblock
16158 #: ../src/guestfs-actions.pod:6248 ../fish/guestfish-actions.pod:4171
16159 msgid ""
16160 "Verbose messages are disabled unless the environment variable "
16161 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16162 msgstr ""
16163
16164 #. type: textblock
16165 #: ../src/guestfs-actions.pod:6251
16166 msgid ""
16167 "Verbose messages are normally sent to C<stderr>, unless you register a "
16168 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16169 msgstr ""
16170
16171 #. type: =head2
16172 #: ../src/guestfs-actions.pod:6259
16173 msgid "guestfs_setcon"
16174 msgstr ""
16175
16176 #. type: verbatim
16177 #: ../src/guestfs-actions.pod:6261
16178 #, no-wrap
16179 msgid ""
16180 " int\n"
16181 " guestfs_setcon (guestfs_h *g,\n"
16182 "                 const char *context);\n"
16183 "\n"
16184 msgstr ""
16185
16186 #. type: textblock
16187 #: ../src/guestfs-actions.pod:6265 ../fish/guestfish-actions.pod:4182
16188 msgid ""
16189 "This sets the SELinux security context of the daemon to the string "
16190 "C<context>."
16191 msgstr ""
16192
16193 #. type: textblock
16194 #: ../src/guestfs-actions.pod:6268 ../fish/guestfish-actions.pod:4185
16195 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16196 msgstr ""
16197
16198 #. type: =head2
16199 #: ../src/guestfs-actions.pod:6274
16200 msgid "guestfs_setxattr"
16201 msgstr ""
16202
16203 #. type: verbatim
16204 #: ../src/guestfs-actions.pod:6276
16205 #, no-wrap
16206 msgid ""
16207 " int\n"
16208 " guestfs_setxattr (guestfs_h *g,\n"
16209 "                   const char *xattr,\n"
16210 "                   const char *val,\n"
16211 "                   int vallen,\n"
16212 "                   const char *path);\n"
16213 "\n"
16214 msgstr ""
16215
16216 #. type: textblock
16217 #: ../src/guestfs-actions.pod:6283 ../fish/guestfish-actions.pod:4191
16218 msgid ""
16219 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16220 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16221 msgstr ""
16222
16223 #. type: textblock
16224 #: ../src/guestfs-actions.pod:6287
16225 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16226 msgstr ""
16227
16228 #. type: =head2
16229 #: ../src/guestfs-actions.pod:6293
16230 msgid "guestfs_sfdisk"
16231 msgstr ""
16232
16233 #. type: verbatim
16234 #: ../src/guestfs-actions.pod:6295
16235 #, no-wrap
16236 msgid ""
16237 " int\n"
16238 " guestfs_sfdisk (guestfs_h *g,\n"
16239 "                 const char *device,\n"
16240 "                 int cyls,\n"
16241 "                 int heads,\n"
16242 "                 int sectors,\n"
16243 "                 char *const *lines);\n"
16244 "\n"
16245 msgstr ""
16246
16247 #. type: textblock
16248 #: ../src/guestfs-actions.pod:6303 ../fish/guestfish-actions.pod:4201
16249 msgid ""
16250 "This is a direct interface to the L<sfdisk(8)> program for creating "
16251 "partitions on block devices."
16252 msgstr ""
16253
16254 #. type: textblock
16255 #: ../src/guestfs-actions.pod:6306 ../fish/guestfish-actions.pod:4204
16256 msgid "C<device> should be a block device, for example C</dev/sda>."
16257 msgstr ""
16258
16259 #. type: textblock
16260 #: ../src/guestfs-actions.pod:6308 ../fish/guestfish-actions.pod:4206
16261 msgid ""
16262 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16263 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
16264 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16265 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16266 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16267 "the kernel) cannot work out the right geometry and you will need to tell it."
16268 msgstr ""
16269
16270 #. type: textblock
16271 #: ../src/guestfs-actions.pod:6316 ../fish/guestfish-actions.pod:4214
16272 msgid ""
16273 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16274 "refer to the L<sfdisk(8)> manpage."
16275 msgstr ""
16276
16277 #. type: textblock
16278 #: ../src/guestfs-actions.pod:6319 ../fish/guestfish-actions.pod:4217
16279 msgid ""
16280 "To create a single partition occupying the whole disk, you would pass "
16281 "C<lines> as a single element list, when the single element being the string "
16282 "C<,> (comma)."
16283 msgstr ""
16284
16285 #. type: textblock
16286 #: ../src/guestfs-actions.pod:6323
16287 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16288 msgstr ""
16289
16290 #. type: textblock
16291 #: ../src/guestfs-actions.pod:6331 ../src/guestfs-actions.pod:6361 ../src/guestfs-actions.pod:6394 ../fish/guestfish-actions.pod:4227 ../fish/guestfish-actions.pod:4250 ../fish/guestfish-actions.pod:4272
16292 msgid "This function is deprecated.  In new code, use the C<part_add> call instead."
16293 msgstr ""
16294
16295 #. type: =head2
16296 #: ../src/guestfs-actions.pod:6340
16297 msgid "guestfs_sfdiskM"
16298 msgstr ""
16299
16300 #. type: verbatim
16301 #: ../src/guestfs-actions.pod:6342
16302 #, no-wrap
16303 msgid ""
16304 " int\n"
16305 " guestfs_sfdiskM (guestfs_h *g,\n"
16306 "                  const char *device,\n"
16307 "                  char *const *lines);\n"
16308 "\n"
16309 msgstr ""
16310
16311 #. type: textblock
16312 #: ../src/guestfs-actions.pod:6347
16313 msgid ""
16314 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16315 "partition sizes are specified in megabytes only (rounded to the nearest "
16316 "cylinder) and you don't need to specify the cyls, heads and sectors "
16317 "parameters which were rarely if ever used anyway."
16318 msgstr ""
16319
16320 #. type: textblock
16321 #: ../src/guestfs-actions.pod:6353
16322 msgid ""
16323 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16324 "C<guestfs_part_disk>"
16325 msgstr ""
16326
16327 #. type: =head2
16328 #: ../src/guestfs-actions.pod:6370
16329 msgid "guestfs_sfdisk_N"
16330 msgstr ""
16331
16332 #. type: verbatim
16333 #: ../src/guestfs-actions.pod:6372
16334 #, no-wrap
16335 msgid ""
16336 " int\n"
16337 " guestfs_sfdisk_N (guestfs_h *g,\n"
16338 "                   const char *device,\n"
16339 "                   int partnum,\n"
16340 "                   int cyls,\n"
16341 "                   int heads,\n"
16342 "                   int sectors,\n"
16343 "                   const char *line);\n"
16344 "\n"
16345 msgstr ""
16346
16347 #. type: textblock
16348 #: ../src/guestfs-actions.pod:6381 ../fish/guestfish-actions.pod:4261
16349 msgid ""
16350 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16351 "(note: C<n> counts from 1)."
16352 msgstr ""
16353
16354 #. type: textblock
16355 #: ../src/guestfs-actions.pod:6384
16356 msgid ""
16357 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16358 "for the cyls/heads/sectors parameters."
16359 msgstr ""
16360
16361 #. type: textblock
16362 #: ../src/guestfs-actions.pod:6387
16363 msgid "See also: C<guestfs_part_add>"
16364 msgstr ""
16365
16366 #. type: =head2
16367 #: ../src/guestfs-actions.pod:6403
16368 msgid "guestfs_sfdisk_disk_geometry"
16369 msgstr ""
16370
16371 #. type: verbatim
16372 #: ../src/guestfs-actions.pod:6405
16373 #, no-wrap
16374 msgid ""
16375 " char *\n"
16376 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16377 "                               const char *device);\n"
16378 "\n"
16379 msgstr ""
16380
16381 #. type: textblock
16382 #: ../src/guestfs-actions.pod:6409
16383 msgid ""
16384 "This displays the disk geometry of C<device> read from the partition table.  "
16385 "Especially in the case where the underlying block device has been resized, "
16386 "this can be different from the kernel's idea of the geometry (see "
16387 "C<guestfs_sfdisk_kernel_geometry>)."
16388 msgstr ""
16389
16390 #. type: textblock
16391 #: ../src/guestfs-actions.pod:6414 ../src/guestfs-actions.pod:6430 ../fish/guestfish-actions.pod:4288 ../fish/guestfish-actions.pod:4297
16392 msgid "The result is in human-readable format, and not designed to be parsed."
16393 msgstr ""
16394
16395 #. type: =head2
16396 #: ../src/guestfs-actions.pod:6422
16397 msgid "guestfs_sfdisk_kernel_geometry"
16398 msgstr ""
16399
16400 #. type: verbatim
16401 #: ../src/guestfs-actions.pod:6424
16402 #, no-wrap
16403 msgid ""
16404 " char *\n"
16405 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16406 "                                 const char *device);\n"
16407 "\n"
16408 msgstr ""
16409
16410 #. type: textblock
16411 #: ../src/guestfs-actions.pod:6428 ../fish/guestfish-actions.pod:4295
16412 msgid "This displays the kernel's idea of the geometry of C<device>."
16413 msgstr ""
16414
16415 #. type: =head2
16416 #: ../src/guestfs-actions.pod:6438
16417 msgid "guestfs_sfdisk_l"
16418 msgstr ""
16419
16420 #. type: verbatim
16421 #: ../src/guestfs-actions.pod:6440
16422 #, no-wrap
16423 msgid ""
16424 " char *\n"
16425 " guestfs_sfdisk_l (guestfs_h *g,\n"
16426 "                   const char *device);\n"
16427 "\n"
16428 msgstr ""
16429
16430 #. type: textblock
16431 #: ../src/guestfs-actions.pod:6444 ../fish/guestfish-actions.pod:4304
16432 msgid ""
16433 "This displays the partition table on C<device>, in the human-readable output "
16434 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16435 msgstr ""
16436
16437 #. type: textblock
16438 #: ../src/guestfs-actions.pod:6448
16439 msgid "See also: C<guestfs_part_list>"
16440 msgstr ""
16441
16442 #. type: textblock
16443 #: ../src/guestfs-actions.pod:6453 ../fish/guestfish-actions.pod:4310
16444 msgid ""
16445 "This function is deprecated.  In new code, use the C<part_list> call "
16446 "instead."
16447 msgstr ""
16448
16449 #. type: =head2
16450 #: ../src/guestfs-actions.pod:6462
16451 msgid "guestfs_sh"
16452 msgstr ""
16453
16454 #. type: verbatim
16455 #: ../src/guestfs-actions.pod:6464
16456 #, no-wrap
16457 msgid ""
16458 " char *\n"
16459 " guestfs_sh (guestfs_h *g,\n"
16460 "             const char *command);\n"
16461 "\n"
16462 msgstr ""
16463
16464 #. type: textblock
16465 #: ../src/guestfs-actions.pod:6468 ../fish/guestfish-actions.pod:4321
16466 msgid ""
16467 "This call runs a command from the guest filesystem via the guest's "
16468 "C</bin/sh>."
16469 msgstr ""
16470
16471 #. type: textblock
16472 #: ../src/guestfs-actions.pod:6471
16473 msgid "This is like C<guestfs_command>, but passes the command to:"
16474 msgstr ""
16475
16476 #. type: verbatim
16477 #: ../src/guestfs-actions.pod:6473 ../fish/guestfish-actions.pod:4326
16478 #, no-wrap
16479 msgid ""
16480 " /bin/sh -c \"command\"\n"
16481 "\n"
16482 msgstr ""
16483
16484 #. type: textblock
16485 #: ../src/guestfs-actions.pod:6475 ../fish/guestfish-actions.pod:4328
16486 msgid ""
16487 "Depending on the guest's shell, this usually results in wildcards being "
16488 "expanded, shell expressions being interpolated and so on."
16489 msgstr ""
16490
16491 #. type: textblock
16492 #: ../src/guestfs-actions.pod:6479
16493 msgid "All the provisos about C<guestfs_command> apply to this call."
16494 msgstr ""
16495
16496 #. type: =head2
16497 #: ../src/guestfs-actions.pod:6486
16498 msgid "guestfs_sh_lines"
16499 msgstr ""
16500
16501 #. type: verbatim
16502 #: ../src/guestfs-actions.pod:6488
16503 #, no-wrap
16504 msgid ""
16505 " char **\n"
16506 " guestfs_sh_lines (guestfs_h *g,\n"
16507 "                   const char *command);\n"
16508 "\n"
16509 msgstr ""
16510
16511 #. type: textblock
16512 #: ../src/guestfs-actions.pod:6492
16513 msgid ""
16514 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16515 "lines."
16516 msgstr ""
16517
16518 #. type: textblock
16519 #: ../src/guestfs-actions.pod:6495
16520 msgid "See also: C<guestfs_command_lines>"
16521 msgstr ""
16522
16523 #. type: =head2
16524 #: ../src/guestfs-actions.pod:6503
16525 msgid "guestfs_sleep"
16526 msgstr ""
16527
16528 #. type: verbatim
16529 #: ../src/guestfs-actions.pod:6505
16530 #, no-wrap
16531 msgid ""
16532 " int\n"
16533 " guestfs_sleep (guestfs_h *g,\n"
16534 "                int secs);\n"
16535 "\n"
16536 msgstr ""
16537
16538 #. type: textblock
16539 #: ../src/guestfs-actions.pod:6509 ../fish/guestfish-actions.pod:4347
16540 msgid "Sleep for C<secs> seconds."
16541 msgstr ""
16542
16543 #. type: textblock
16544 #: ../src/guestfs-actions.pod:6513
16545 msgid "(Added in 1.0.41)"
16546 msgstr ""
16547
16548 #. type: =head2
16549 #: ../src/guestfs-actions.pod:6515 ../src/guestfs-structs.pod:109
16550 msgid "guestfs_stat"
16551 msgstr ""
16552
16553 #. type: verbatim
16554 #: ../src/guestfs-actions.pod:6517
16555 #, no-wrap
16556 msgid ""
16557 " struct guestfs_stat *\n"
16558 " guestfs_stat (guestfs_h *g,\n"
16559 "               const char *path);\n"
16560 "\n"
16561 msgstr ""
16562
16563 #. type: textblock
16564 #: ../src/guestfs-actions.pod:6523 ../fish/guestfish-actions.pod:4355
16565 msgid "This is the same as the C<stat(2)> system call."
16566 msgstr ""
16567
16568 #. type: =head2
16569 #: ../src/guestfs-actions.pod:6531 ../src/guestfs-structs.pod:135
16570 msgid "guestfs_statvfs"
16571 msgstr ""
16572
16573 #. type: verbatim
16574 #: ../src/guestfs-actions.pod:6533
16575 #, no-wrap
16576 msgid ""
16577 " struct guestfs_statvfs *\n"
16578 " guestfs_statvfs (guestfs_h *g,\n"
16579 "                  const char *path);\n"
16580 "\n"
16581 msgstr ""
16582
16583 #. type: textblock
16584 #: ../src/guestfs-actions.pod:6537 ../fish/guestfish-actions.pod:4361
16585 msgid ""
16586 "Returns file system statistics for any mounted file system.  C<path> should "
16587 "be a file or directory in the mounted file system (typically it is the mount "
16588 "point itself, but it doesn't need to be)."
16589 msgstr ""
16590
16591 #. type: textblock
16592 #: ../src/guestfs-actions.pod:6541 ../fish/guestfish-actions.pod:4365
16593 msgid "This is the same as the C<statvfs(2)> system call."
16594 msgstr ""
16595
16596 #. type: textblock
16597 #: ../src/guestfs-actions.pod:6543
16598 msgid ""
16599 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16600 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16601 msgstr ""
16602
16603 #. type: =head2
16604 #: ../src/guestfs-actions.pod:6549
16605 msgid "guestfs_strings"
16606 msgstr ""
16607
16608 #. type: verbatim
16609 #: ../src/guestfs-actions.pod:6551
16610 #, no-wrap
16611 msgid ""
16612 " char **\n"
16613 " guestfs_strings (guestfs_h *g,\n"
16614 "                  const char *path);\n"
16615 "\n"
16616 msgstr ""
16617
16618 #. type: textblock
16619 #: ../src/guestfs-actions.pod:6555 ../fish/guestfish-actions.pod:4371
16620 msgid ""
16621 "This runs the L<strings(1)> command on a file and returns the list of "
16622 "printable strings found."
16623 msgstr ""
16624
16625 #. type: =head2
16626 #: ../src/guestfs-actions.pod:6567
16627 msgid "guestfs_strings_e"
16628 msgstr ""
16629
16630 #. type: verbatim
16631 #: ../src/guestfs-actions.pod:6569
16632 #, no-wrap
16633 msgid ""
16634 " char **\n"
16635 " guestfs_strings_e (guestfs_h *g,\n"
16636 "                    const char *encoding,\n"
16637 "                    const char *path);\n"
16638 "\n"
16639 msgstr ""
16640
16641 #. type: textblock
16642 #: ../src/guestfs-actions.pod:6574
16643 msgid ""
16644 "This is like the C<guestfs_strings> command, but allows you to specify the "
16645 "encoding of strings that are looked for in the source file C<path>."
16646 msgstr ""
16647
16648 #. type: textblock
16649 #: ../src/guestfs-actions.pod:6578 ../fish/guestfish-actions.pod:4385
16650 msgid "Allowed encodings are:"
16651 msgstr ""
16652
16653 #. type: =item
16654 #: ../src/guestfs-actions.pod:6582 ../fish/guestfish-actions.pod:4389
16655 msgid "s"
16656 msgstr ""
16657
16658 #. type: textblock
16659 #: ../src/guestfs-actions.pod:6584
16660 msgid ""
16661 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16662 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16663 msgstr ""
16664
16665 #. type: =item
16666 #: ../src/guestfs-actions.pod:6587 ../fish/guestfish-actions.pod:4394
16667 msgid "S"
16668 msgstr ""
16669
16670 #. type: textblock
16671 #: ../src/guestfs-actions.pod:6589 ../fish/guestfish-actions.pod:4396
16672 msgid "Single 8-bit-byte characters."
16673 msgstr ""
16674
16675 #. type: =item
16676 #: ../src/guestfs-actions.pod:6591 ../fish/guestfish-actions.pod:4398
16677 msgid "b"
16678 msgstr ""
16679
16680 #. type: textblock
16681 #: ../src/guestfs-actions.pod:6593 ../fish/guestfish-actions.pod:4400
16682 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16683 msgstr ""
16684
16685 #. type: =item
16686 #: ../src/guestfs-actions.pod:6596 ../fish/guestfish-actions.pod:4403
16687 msgid "l (lower case letter L)"
16688 msgstr ""
16689
16690 #. type: textblock
16691 #: ../src/guestfs-actions.pod:6598 ../fish/guestfish-actions.pod:4405
16692 msgid ""
16693 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16694 "examining binaries in Windows guests."
16695 msgstr ""
16696
16697 #. type: =item
16698 #: ../src/guestfs-actions.pod:6601 ../fish/guestfish-actions.pod:4408
16699 msgid "B"
16700 msgstr ""
16701
16702 #. type: textblock
16703 #: ../src/guestfs-actions.pod:6603 ../fish/guestfish-actions.pod:4410
16704 msgid "32-bit big endian such as UCS-4BE."
16705 msgstr ""
16706
16707 #. type: =item
16708 #: ../src/guestfs-actions.pod:6605 ../fish/guestfish-actions.pod:4412
16709 msgid "L"
16710 msgstr ""
16711
16712 #. type: textblock
16713 #: ../src/guestfs-actions.pod:6607 ../fish/guestfish-actions.pod:4414
16714 msgid "32-bit little endian such as UCS-4LE."
16715 msgstr ""
16716
16717 #. type: textblock
16718 #: ../src/guestfs-actions.pod:6611 ../fish/guestfish-actions.pod:4418
16719 msgid "The returned strings are transcoded to UTF-8."
16720 msgstr ""
16721
16722 #. type: =head2
16723 #: ../src/guestfs-actions.pod:6622
16724 msgid "guestfs_swapoff_device"
16725 msgstr ""
16726
16727 #. type: verbatim
16728 #: ../src/guestfs-actions.pod:6624
16729 #, no-wrap
16730 msgid ""
16731 " int\n"
16732 " guestfs_swapoff_device (guestfs_h *g,\n"
16733 "                         const char *device);\n"
16734 "\n"
16735 msgstr ""
16736
16737 #. type: textblock
16738 #: ../src/guestfs-actions.pod:6628
16739 msgid ""
16740 "This command disables the libguestfs appliance swap device or partition "
16741 "named C<device>.  See C<guestfs_swapon_device>."
16742 msgstr ""
16743
16744 #. type: =head2
16745 #: ../src/guestfs-actions.pod:6636
16746 msgid "guestfs_swapoff_file"
16747 msgstr ""
16748
16749 #. type: verbatim
16750 #: ../src/guestfs-actions.pod:6638
16751 #, no-wrap
16752 msgid ""
16753 " int\n"
16754 " guestfs_swapoff_file (guestfs_h *g,\n"
16755 "                       const char *file);\n"
16756 "\n"
16757 msgstr ""
16758
16759 #. type: textblock
16760 #: ../src/guestfs-actions.pod:6642 ../fish/guestfish-actions.pod:4435
16761 msgid "This command disables the libguestfs appliance swap on file."
16762 msgstr ""
16763
16764 #. type: =head2
16765 #: ../src/guestfs-actions.pod:6648
16766 msgid "guestfs_swapoff_label"
16767 msgstr ""
16768
16769 #. type: verbatim
16770 #: ../src/guestfs-actions.pod:6650
16771 #, no-wrap
16772 msgid ""
16773 " int\n"
16774 " guestfs_swapoff_label (guestfs_h *g,\n"
16775 "                        const char *label);\n"
16776 "\n"
16777 msgstr ""
16778
16779 #. type: textblock
16780 #: ../src/guestfs-actions.pod:6654 ../fish/guestfish-actions.pod:4441
16781 msgid ""
16782 "This command disables the libguestfs appliance swap on labeled swap "
16783 "partition."
16784 msgstr ""
16785
16786 #. type: =head2
16787 #: ../src/guestfs-actions.pod:6661
16788 msgid "guestfs_swapoff_uuid"
16789 msgstr ""
16790
16791 #. type: verbatim
16792 #: ../src/guestfs-actions.pod:6663
16793 #, no-wrap
16794 msgid ""
16795 " int\n"
16796 " guestfs_swapoff_uuid (guestfs_h *g,\n"
16797 "                       const char *uuid);\n"
16798 "\n"
16799 msgstr ""
16800
16801 #. type: textblock
16802 #: ../src/guestfs-actions.pod:6667 ../fish/guestfish-actions.pod:4448
16803 msgid ""
16804 "This command disables the libguestfs appliance swap partition with the given "
16805 "UUID."
16806 msgstr ""
16807
16808 #. type: =head2
16809 #: ../src/guestfs-actions.pod:6674
16810 msgid "guestfs_swapon_device"
16811 msgstr ""
16812
16813 #. type: verbatim
16814 #: ../src/guestfs-actions.pod:6676
16815 #, no-wrap
16816 msgid ""
16817 " int\n"
16818 " guestfs_swapon_device (guestfs_h *g,\n"
16819 "                        const char *device);\n"
16820 "\n"
16821 msgstr ""
16822
16823 #. type: textblock
16824 #: ../src/guestfs-actions.pod:6680
16825 msgid ""
16826 "This command enables the libguestfs appliance to use the swap device or "
16827 "partition named C<device>.  The increased memory is made available for all "
16828 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
16829 msgstr ""
16830
16831 #. type: textblock
16832 #: ../src/guestfs-actions.pod:6685 ../fish/guestfish-actions.pod:4460
16833 msgid ""
16834 "Note that you should not swap to existing guest swap partitions unless you "
16835 "know what you are doing.  They may contain hibernation information, or other "
16836 "information that the guest doesn't want you to trash.  You also risk leaking "
16837 "information about the host to the guest this way.  Instead, attach a new "
16838 "host device to the guest and swap on that."
16839 msgstr ""
16840
16841 #. type: =head2
16842 #: ../src/guestfs-actions.pod:6696
16843 msgid "guestfs_swapon_file"
16844 msgstr ""
16845
16846 #. type: verbatim
16847 #: ../src/guestfs-actions.pod:6698
16848 #, no-wrap
16849 msgid ""
16850 " int\n"
16851 " guestfs_swapon_file (guestfs_h *g,\n"
16852 "                      const char *file);\n"
16853 "\n"
16854 msgstr ""
16855
16856 #. type: textblock
16857 #: ../src/guestfs-actions.pod:6702
16858 msgid ""
16859 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
16860 "notes."
16861 msgstr ""
16862
16863 #. type: =head2
16864 #: ../src/guestfs-actions.pod:6709
16865 msgid "guestfs_swapon_label"
16866 msgstr ""
16867
16868 #. type: verbatim
16869 #: ../src/guestfs-actions.pod:6711
16870 #, no-wrap
16871 msgid ""
16872 " int\n"
16873 " guestfs_swapon_label (guestfs_h *g,\n"
16874 "                       const char *label);\n"
16875 "\n"
16876 msgstr ""
16877
16878 #. type: textblock
16879 #: ../src/guestfs-actions.pod:6715
16880 msgid ""
16881 "This command enables swap to a labeled swap partition.  See "
16882 "C<guestfs_swapon_device> for other notes."
16883 msgstr ""
16884
16885 #. type: =head2
16886 #: ../src/guestfs-actions.pod:6722
16887 msgid "guestfs_swapon_uuid"
16888 msgstr ""
16889
16890 #. type: verbatim
16891 #: ../src/guestfs-actions.pod:6724
16892 #, no-wrap
16893 msgid ""
16894 " int\n"
16895 " guestfs_swapon_uuid (guestfs_h *g,\n"
16896 "                      const char *uuid);\n"
16897 "\n"
16898 msgstr ""
16899
16900 #. type: textblock
16901 #: ../src/guestfs-actions.pod:6728
16902 msgid ""
16903 "This command enables swap to a swap partition with the given UUID.  See "
16904 "C<guestfs_swapon_device> for other notes."
16905 msgstr ""
16906
16907 #. type: =head2
16908 #: ../src/guestfs-actions.pod:6735
16909 msgid "guestfs_sync"
16910 msgstr ""
16911
16912 #. type: verbatim
16913 #: ../src/guestfs-actions.pod:6737
16914 #, no-wrap
16915 msgid ""
16916 " int\n"
16917 " guestfs_sync (guestfs_h *g);\n"
16918 "\n"
16919 msgstr ""
16920
16921 #. type: textblock
16922 #: ../src/guestfs-actions.pod:6740 ../fish/guestfish-actions.pod:4492
16923 msgid ""
16924 "This syncs the disk, so that any writes are flushed through to the "
16925 "underlying disk image."
16926 msgstr ""
16927
16928 #. type: textblock
16929 #: ../src/guestfs-actions.pod:6743 ../fish/guestfish-actions.pod:4495
16930 msgid ""
16931 "You should always call this if you have modified a disk image, before "
16932 "closing the handle."
16933 msgstr ""
16934
16935 #. type: =head2
16936 #: ../src/guestfs-actions.pod:6750
16937 msgid "guestfs_tail"
16938 msgstr ""
16939
16940 #. type: verbatim
16941 #: ../src/guestfs-actions.pod:6752
16942 #, no-wrap
16943 msgid ""
16944 " char **\n"
16945 " guestfs_tail (guestfs_h *g,\n"
16946 "               const char *path);\n"
16947 "\n"
16948 msgstr ""
16949
16950 #. type: textblock
16951 #: ../src/guestfs-actions.pod:6756 ../fish/guestfish-actions.pod:4502
16952 msgid "This command returns up to the last 10 lines of a file as a list of strings."
16953 msgstr ""
16954
16955 #. type: =head2
16956 #: ../src/guestfs-actions.pod:6768
16957 msgid "guestfs_tail_n"
16958 msgstr ""
16959
16960 #. type: verbatim
16961 #: ../src/guestfs-actions.pod:6770
16962 #, no-wrap
16963 msgid ""
16964 " char **\n"
16965 " guestfs_tail_n (guestfs_h *g,\n"
16966 "                 int nrlines,\n"
16967 "                 const char *path);\n"
16968 "\n"
16969 msgstr ""
16970
16971 #. type: textblock
16972 #: ../src/guestfs-actions.pod:6775 ../fish/guestfish-actions.pod:4512
16973 msgid ""
16974 "If the parameter C<nrlines> is a positive number, this returns the last "
16975 "C<nrlines> lines of the file C<path>."
16976 msgstr ""
16977
16978 #. type: textblock
16979 #: ../src/guestfs-actions.pod:6778 ../fish/guestfish-actions.pod:4515
16980 msgid ""
16981 "If the parameter C<nrlines> is a negative number, this returns lines from "
16982 "the file C<path>, starting with the C<-nrlines>th line."
16983 msgstr ""
16984
16985 #. type: =head2
16986 #: ../src/guestfs-actions.pod:6792
16987 msgid "guestfs_tar_in"
16988 msgstr ""
16989
16990 #. type: verbatim
16991 #: ../src/guestfs-actions.pod:6794
16992 #, no-wrap
16993 msgid ""
16994 " int\n"
16995 " guestfs_tar_in (guestfs_h *g,\n"
16996 "                 const char *tarfile,\n"
16997 "                 const char *directory);\n"
16998 "\n"
16999 msgstr ""
17000
17001 #. type: textblock
17002 #: ../src/guestfs-actions.pod:6799 ../fish/guestfish-actions.pod:4527
17003 msgid ""
17004 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17005 "tar file) into C<directory>."
17006 msgstr ""
17007
17008 #. type: textblock
17009 #: ../src/guestfs-actions.pod:6802
17010 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17011 msgstr ""
17012
17013 #. type: textblock
17014 #: ../src/guestfs-actions.pod:6807 ../src/guestfs-actions.pod:6824 ../src/guestfs-actions.pod:6840 ../src/guestfs-actions.pod:6856
17015 msgid "(Added in 1.0.3)"
17016 msgstr ""
17017
17018 #. type: =head2
17019 #: ../src/guestfs-actions.pod:6809
17020 msgid "guestfs_tar_out"
17021 msgstr ""
17022
17023 #. type: verbatim
17024 #: ../src/guestfs-actions.pod:6811
17025 #, no-wrap
17026 msgid ""
17027 " int\n"
17028 " guestfs_tar_out (guestfs_h *g,\n"
17029 "                  const char *directory,\n"
17030 "                  const char *tarfile);\n"
17031 "\n"
17032 msgstr ""
17033
17034 #. type: textblock
17035 #: ../src/guestfs-actions.pod:6816 ../fish/guestfish-actions.pod:4539
17036 msgid ""
17037 "This command packs the contents of C<directory> and downloads it to local "
17038 "file C<tarfile>."
17039 msgstr ""
17040
17041 #. type: textblock
17042 #: ../src/guestfs-actions.pod:6819
17043 msgid ""
17044 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17045 "C<guestfs_txz_out>."
17046 msgstr ""
17047
17048 #. type: =head2
17049 #: ../src/guestfs-actions.pod:6826
17050 msgid "guestfs_tgz_in"
17051 msgstr ""
17052
17053 #. type: verbatim
17054 #: ../src/guestfs-actions.pod:6828
17055 #, no-wrap
17056 msgid ""
17057 " int\n"
17058 " guestfs_tgz_in (guestfs_h *g,\n"
17059 "                 const char *tarball,\n"
17060 "                 const char *directory);\n"
17061 "\n"
17062 msgstr ""
17063
17064 #. type: textblock
17065 #: ../src/guestfs-actions.pod:6833 ../fish/guestfish-actions.pod:4551
17066 msgid ""
17067 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17068 "tar file) into C<directory>."
17069 msgstr ""
17070
17071 #. type: textblock
17072 #: ../src/guestfs-actions.pod:6836
17073 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17074 msgstr ""
17075
17076 #. type: =head2
17077 #: ../src/guestfs-actions.pod:6842
17078 msgid "guestfs_tgz_out"
17079 msgstr ""
17080
17081 #. type: verbatim
17082 #: ../src/guestfs-actions.pod:6844
17083 #, no-wrap
17084 msgid ""
17085 " int\n"
17086 " guestfs_tgz_out (guestfs_h *g,\n"
17087 "                  const char *directory,\n"
17088 "                  const char *tarball);\n"
17089 "\n"
17090 msgstr ""
17091
17092 #. type: textblock
17093 #: ../src/guestfs-actions.pod:6849 ../fish/guestfish-actions.pod:4562
17094 msgid ""
17095 "This command packs the contents of C<directory> and downloads it to local "
17096 "file C<tarball>."
17097 msgstr ""
17098
17099 #. type: textblock
17100 #: ../src/guestfs-actions.pod:6852
17101 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17102 msgstr ""
17103
17104 #. type: =head2
17105 #: ../src/guestfs-actions.pod:6858
17106 msgid "guestfs_touch"
17107 msgstr ""
17108
17109 #. type: verbatim
17110 #: ../src/guestfs-actions.pod:6860
17111 #, no-wrap
17112 msgid ""
17113 " int\n"
17114 " guestfs_touch (guestfs_h *g,\n"
17115 "                const char *path);\n"
17116 "\n"
17117 msgstr ""
17118
17119 #. type: textblock
17120 #: ../src/guestfs-actions.pod:6864 ../fish/guestfish-actions.pod:4573
17121 msgid ""
17122 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17123 "timestamps on a file, or, if the file does not exist, to create a new "
17124 "zero-length file."
17125 msgstr ""
17126
17127 #. type: textblock
17128 #: ../src/guestfs-actions.pod:6868 ../fish/guestfish-actions.pod:4577
17129 msgid ""
17130 "This command only works on regular files, and will fail on other file types "
17131 "such as directories, symbolic links, block special etc."
17132 msgstr ""
17133
17134 #. type: =head2
17135 #: ../src/guestfs-actions.pod:6875
17136 msgid "guestfs_truncate"
17137 msgstr ""
17138
17139 #. type: verbatim
17140 #: ../src/guestfs-actions.pod:6877
17141 #, no-wrap
17142 msgid ""
17143 " int\n"
17144 " guestfs_truncate (guestfs_h *g,\n"
17145 "                   const char *path);\n"
17146 "\n"
17147 msgstr ""
17148
17149 #. type: textblock
17150 #: ../src/guestfs-actions.pod:6881 ../fish/guestfish-actions.pod:4584
17151 msgid ""
17152 "This command truncates C<path> to a zero-length file.  The file must exist "
17153 "already."
17154 msgstr ""
17155
17156 #. type: =head2
17157 #: ../src/guestfs-actions.pod:6888
17158 msgid "guestfs_truncate_size"
17159 msgstr ""
17160
17161 #. type: verbatim
17162 #: ../src/guestfs-actions.pod:6890
17163 #, no-wrap
17164 msgid ""
17165 " int\n"
17166 " guestfs_truncate_size (guestfs_h *g,\n"
17167 "                        const char *path,\n"
17168 "                        int64_t size);\n"
17169 "\n"
17170 msgstr ""
17171
17172 #. type: textblock
17173 #: ../src/guestfs-actions.pod:6895 ../fish/guestfish-actions.pod:4591
17174 msgid ""
17175 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17176 "already."
17177 msgstr ""
17178
17179 #. type: textblock
17180 #: ../src/guestfs-actions.pod:6898
17181 msgid ""
17182 "If the current file size is less than C<size> then the file is extended to "
17183 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17184 "blocks are not allocated for the file until you write to it).  To create a "
17185 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17186 msgstr ""
17187
17188 #. type: =head2
17189 #: ../src/guestfs-actions.pod:6908
17190 msgid "guestfs_tune2fs_l"
17191 msgstr ""
17192
17193 #. type: verbatim
17194 #: ../src/guestfs-actions.pod:6910
17195 #, no-wrap
17196 msgid ""
17197 " char **\n"
17198 " guestfs_tune2fs_l (guestfs_h *g,\n"
17199 "                    const char *device);\n"
17200 "\n"
17201 msgstr ""
17202
17203 #. type: textblock
17204 #: ../src/guestfs-actions.pod:6914 ../fish/guestfish-actions.pod:4604
17205 msgid ""
17206 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17207 "C<device>."
17208 msgstr ""
17209
17210 #. type: textblock
17211 #: ../src/guestfs-actions.pod:6917 ../fish/guestfish-actions.pod:4607
17212 msgid ""
17213 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17214 "for more details.  The list of fields returned isn't clearly defined, and "
17215 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17216 "and the filesystem itself."
17217 msgstr ""
17218
17219 #. type: =head2
17220 #: ../src/guestfs-actions.pod:6930
17221 msgid "guestfs_txz_in"
17222 msgstr ""
17223
17224 #. type: verbatim
17225 #: ../src/guestfs-actions.pod:6932
17226 #, no-wrap
17227 msgid ""
17228 " int\n"
17229 " guestfs_txz_in (guestfs_h *g,\n"
17230 "                 const char *tarball,\n"
17231 "                 const char *directory);\n"
17232 "\n"
17233 msgstr ""
17234
17235 #. type: textblock
17236 #: ../src/guestfs-actions.pod:6937 ../fish/guestfish-actions.pod:4616
17237 msgid ""
17238 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17239 "tar file) into C<directory>."
17240 msgstr ""
17241
17242 #. type: =head2
17243 #: ../src/guestfs-actions.pod:6944
17244 msgid "guestfs_txz_out"
17245 msgstr ""
17246
17247 #. type: verbatim
17248 #: ../src/guestfs-actions.pod:6946
17249 #, no-wrap
17250 msgid ""
17251 " int\n"
17252 " guestfs_txz_out (guestfs_h *g,\n"
17253 "                  const char *directory,\n"
17254 "                  const char *tarball);\n"
17255 "\n"
17256 msgstr ""
17257
17258 #. type: textblock
17259 #: ../src/guestfs-actions.pod:6951 ../fish/guestfish-actions.pod:4625
17260 msgid ""
17261 "This command packs the contents of C<directory> and downloads it to local "
17262 "file C<tarball> (as an xz compressed tar archive)."
17263 msgstr ""
17264
17265 #. type: =head2
17266 #: ../src/guestfs-actions.pod:6958
17267 msgid "guestfs_umask"
17268 msgstr ""
17269
17270 #. type: verbatim
17271 #: ../src/guestfs-actions.pod:6960
17272 #, no-wrap
17273 msgid ""
17274 " int\n"
17275 " guestfs_umask (guestfs_h *g,\n"
17276 "                int mask);\n"
17277 "\n"
17278 msgstr ""
17279
17280 #. type: textblock
17281 #: ../src/guestfs-actions.pod:6964 ../fish/guestfish-actions.pod:4634
17282 msgid ""
17283 "This function sets the mask used for creating new files and device nodes to "
17284 "C<mask & 0777>."
17285 msgstr ""
17286
17287 #. type: textblock
17288 #: ../src/guestfs-actions.pod:6967 ../fish/guestfish-actions.pod:4637
17289 msgid ""
17290 "Typical umask values would be C<022> which creates new files with "
17291 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17292 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17293 msgstr ""
17294
17295 #. type: textblock
17296 #: ../src/guestfs-actions.pod:6972 ../fish/guestfish-actions.pod:4642
17297 msgid ""
17298 "The default umask is C<022>.  This is important because it means that "
17299 "directories and device nodes will be created with C<0644> or C<0755> mode "
17300 "even if you specify C<0777>."
17301 msgstr ""
17302
17303 #. type: textblock
17304 #: ../src/guestfs-actions.pod:6976
17305 msgid ""
17306 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17307 "C<guestfs_mkdir>."
17308 msgstr ""
17309
17310 #. type: textblock
17311 #: ../src/guestfs-actions.pod:6979 ../fish/guestfish-actions.pod:4649
17312 msgid "This call returns the previous umask."
17313 msgstr ""
17314
17315 #. type: =head2
17316 #: ../src/guestfs-actions.pod:6985
17317 msgid "guestfs_umount"
17318 msgstr ""
17319
17320 #. type: verbatim
17321 #: ../src/guestfs-actions.pod:6987
17322 #, no-wrap
17323 msgid ""
17324 " int\n"
17325 " guestfs_umount (guestfs_h *g,\n"
17326 "                 const char *pathordevice);\n"
17327 "\n"
17328 msgstr ""
17329
17330 #. type: textblock
17331 #: ../src/guestfs-actions.pod:6991 ../fish/guestfish-actions.pod:4657
17332 msgid ""
17333 "This unmounts the given filesystem.  The filesystem may be specified either "
17334 "by its mountpoint (path) or the device which contains the filesystem."
17335 msgstr ""
17336
17337 #. type: =head2
17338 #: ../src/guestfs-actions.pod:6999
17339 msgid "guestfs_umount_all"
17340 msgstr ""
17341
17342 #. type: verbatim
17343 #: ../src/guestfs-actions.pod:7001
17344 #, no-wrap
17345 msgid ""
17346 " int\n"
17347 " guestfs_umount_all (guestfs_h *g);\n"
17348 "\n"
17349 msgstr ""
17350
17351 #. type: textblock
17352 #: ../src/guestfs-actions.pod:7004 ../fish/guestfish-actions.pod:4667
17353 msgid "This unmounts all mounted filesystems."
17354 msgstr ""
17355
17356 #. type: textblock
17357 #: ../src/guestfs-actions.pod:7006 ../fish/guestfish-actions.pod:4669
17358 msgid "Some internal mounts are not unmounted by this call."
17359 msgstr ""
17360
17361 #. type: =head2
17362 #: ../src/guestfs-actions.pod:7012
17363 msgid "guestfs_upload"
17364 msgstr ""
17365
17366 #. type: verbatim
17367 #: ../src/guestfs-actions.pod:7014
17368 #, no-wrap
17369 msgid ""
17370 " int\n"
17371 " guestfs_upload (guestfs_h *g,\n"
17372 "                 const char *filename,\n"
17373 "                 const char *remotefilename);\n"
17374 "\n"
17375 msgstr ""
17376
17377 #. type: textblock
17378 #: ../src/guestfs-actions.pod:7019 ../src/guestfs-actions.pod:7043 ../fish/guestfish-actions.pod:4675 ../fish/guestfish-actions.pod:4688
17379 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17380 msgstr ""
17381
17382 #. type: textblock
17383 #: ../src/guestfs-actions.pod:7024
17384 msgid "See also C<guestfs_download>."
17385 msgstr ""
17386
17387 #. type: =head2
17388 #: ../src/guestfs-actions.pod:7035
17389 msgid "guestfs_upload_offset"
17390 msgstr ""
17391
17392 #. type: verbatim
17393 #: ../src/guestfs-actions.pod:7037
17394 #, no-wrap
17395 msgid ""
17396 " int\n"
17397 " guestfs_upload_offset (guestfs_h *g,\n"
17398 "                        const char *filename,\n"
17399 "                        const char *remotefilename,\n"
17400 "                        int64_t offset);\n"
17401 "\n"
17402 msgstr ""
17403
17404 #. type: textblock
17405 #: ../src/guestfs-actions.pod:7046 ../fish/guestfish-actions.pod:4691
17406 msgid ""
17407 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17408 "The intention is to overwrite parts of existing files or devices, although "
17409 "if a non-existant file is specified then it is created with a \"hole\" "
17410 "before C<offset>.  The size of the data written is implicit in the size of "
17411 "the source C<filename>."
17412 msgstr ""
17413
17414 #. type: textblock
17415 #: ../src/guestfs-actions.pod:7053
17416 msgid ""
17417 "Note that there is no limit on the amount of data that can be uploaded with "
17418 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17419 "full amount unless an error occurs."
17420 msgstr ""
17421
17422 #. type: textblock
17423 #: ../src/guestfs-actions.pod:7058
17424 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17425 msgstr ""
17426
17427 #. type: =head2
17428 #: ../src/guestfs-actions.pod:7069
17429 msgid "guestfs_utimens"
17430 msgstr ""
17431
17432 #. type: verbatim
17433 #: ../src/guestfs-actions.pod:7071
17434 #, no-wrap
17435 msgid ""
17436 " int\n"
17437 " guestfs_utimens (guestfs_h *g,\n"
17438 "                  const char *path,\n"
17439 "                  int64_t atsecs,\n"
17440 "                  int64_t atnsecs,\n"
17441 "                  int64_t mtsecs,\n"
17442 "                  int64_t mtnsecs);\n"
17443 "\n"
17444 msgstr ""
17445
17446 #. type: textblock
17447 #: ../src/guestfs-actions.pod:7079 ../fish/guestfish-actions.pod:4711
17448 msgid "This command sets the timestamps of a file with nanosecond precision."
17449 msgstr ""
17450
17451 #. type: textblock
17452 #: ../src/guestfs-actions.pod:7082 ../fish/guestfish-actions.pod:4714
17453 msgid ""
17454 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17455 "from the epoch."
17456 msgstr ""
17457
17458 #. type: textblock
17459 #: ../src/guestfs-actions.pod:7085 ../fish/guestfish-actions.pod:4717
17460 msgid ""
17461 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17462 "nanoseconds from the epoch."
17463 msgstr ""
17464
17465 #. type: textblock
17466 #: ../src/guestfs-actions.pod:7088 ../fish/guestfish-actions.pod:4720
17467 msgid ""
17468 "If the C<*nsecs> field contains the special value C<-1> then the "
17469 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17470 "ignored in this case)."
17471 msgstr ""
17472
17473 #. type: textblock
17474 #: ../src/guestfs-actions.pod:7092 ../fish/guestfish-actions.pod:4724
17475 msgid ""
17476 "If the C<*nsecs> field contains the special value C<-2> then the "
17477 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17478 "in this case)."
17479 msgstr ""
17480
17481 #. type: =head2
17482 #: ../src/guestfs-actions.pod:7100 ../src/guestfs-structs.pod:175
17483 msgid "guestfs_version"
17484 msgstr ""
17485
17486 #. type: verbatim
17487 #: ../src/guestfs-actions.pod:7102
17488 #, no-wrap
17489 msgid ""
17490 " struct guestfs_version *\n"
17491 " guestfs_version (guestfs_h *g);\n"
17492 "\n"
17493 msgstr ""
17494
17495 #. type: textblock
17496 #: ../src/guestfs-actions.pod:7105 ../fish/guestfish-actions.pod:4732
17497 msgid "Return the libguestfs version number that the program is linked against."
17498 msgstr ""
17499
17500 #. type: textblock
17501 #: ../src/guestfs-actions.pod:7108 ../fish/guestfish-actions.pod:4735
17502 msgid ""
17503 "Note that because of dynamic linking this is not necessarily the version of "
17504 "libguestfs that you compiled against.  You can compile the program, and then "
17505 "at runtime dynamically link against a completely different C<libguestfs.so> "
17506 "library."
17507 msgstr ""
17508
17509 #. type: textblock
17510 #: ../src/guestfs-actions.pod:7113 ../fish/guestfish-actions.pod:4740
17511 msgid ""
17512 "This call was added in version C<1.0.58>.  In previous versions of "
17513 "libguestfs there was no way to get the version number.  From C code you can "
17514 "use dynamic linker functions to find out if this symbol exists (if it "
17515 "doesn't, then it's an earlier version)."
17516 msgstr ""
17517
17518 #. type: textblock
17519 #: ../src/guestfs-actions.pod:7119 ../fish/guestfish-actions.pod:4746
17520 msgid ""
17521 "The call returns a structure with four elements.  The first three (C<major>, "
17522 "C<minor> and C<release>) are numbers and correspond to the usual version "
17523 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17524 "but may be used for distro-specific information."
17525 msgstr ""
17526
17527 #. type: textblock
17528 #: ../src/guestfs-actions.pod:7125 ../fish/guestfish-actions.pod:4752
17529 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
17530 msgstr ""
17531
17532 #. type: textblock
17533 #: ../src/guestfs-actions.pod:7128 ../fish/guestfish-actions.pod:4755
17534 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17535 msgstr ""
17536
17537 #. type: textblock
17538 #: ../src/guestfs-actions.pod:7130
17539 msgid ""
17540 "I<Note:> Don't use this call to test for availability of features.  In "
17541 "enterprise distributions we backport features from later versions into "
17542 "earlier versions, making this an unreliable way to test for features.  Use "
17543 "C<guestfs_available> instead."
17544 msgstr ""
17545
17546 #. type: textblock
17547 #: ../src/guestfs-actions.pod:7136
17548 msgid ""
17549 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17550 "error.  I<The caller must call C<guestfs_free_version> after use>."
17551 msgstr ""
17552
17553 #. type: textblock
17554 #: ../src/guestfs-actions.pod:7140
17555 msgid "(Added in 1.0.58)"
17556 msgstr ""
17557
17558 #. type: =head2
17559 #: ../src/guestfs-actions.pod:7142
17560 msgid "guestfs_vfs_label"
17561 msgstr ""
17562
17563 #. type: verbatim
17564 #: ../src/guestfs-actions.pod:7144
17565 #, no-wrap
17566 msgid ""
17567 " char *\n"
17568 " guestfs_vfs_label (guestfs_h *g,\n"
17569 "                    const char *device);\n"
17570 "\n"
17571 msgstr ""
17572
17573 #. type: textblock
17574 #: ../src/guestfs-actions.pod:7148 ../fish/guestfish-actions.pod:4767
17575 msgid "This returns the filesystem label of the filesystem on C<device>."
17576 msgstr ""
17577
17578 #. type: textblock
17579 #: ../src/guestfs-actions.pod:7151 ../fish/guestfish-actions.pod:4770
17580 msgid "If the filesystem is unlabeled, this returns the empty string."
17581 msgstr ""
17582
17583 #. type: textblock
17584 #: ../src/guestfs-actions.pod:7153
17585 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17586 msgstr ""
17587
17588 #. type: textblock
17589 #: ../src/guestfs-actions.pod:7158 ../src/guestfs-actions.pod:7195
17590 msgid "(Added in 1.3.18)"
17591 msgstr ""
17592
17593 #. type: =head2
17594 #: ../src/guestfs-actions.pod:7160
17595 msgid "guestfs_vfs_type"
17596 msgstr ""
17597
17598 #. type: verbatim
17599 #: ../src/guestfs-actions.pod:7162
17600 #, no-wrap
17601 msgid ""
17602 " char *\n"
17603 " guestfs_vfs_type (guestfs_h *g,\n"
17604 "                   const char *device);\n"
17605 "\n"
17606 msgstr ""
17607
17608 #. type: textblock
17609 #: ../src/guestfs-actions.pod:7166 ../fish/guestfish-actions.pod:4778
17610 msgid ""
17611 "This command gets the filesystem type corresponding to the filesystem on "
17612 "C<device>."
17613 msgstr ""
17614
17615 #. type: textblock
17616 #: ../src/guestfs-actions.pod:7169 ../fish/guestfish-actions.pod:4781
17617 msgid ""
17618 "For most filesystems, the result is the name of the Linux VFS module which "
17619 "would be used to mount this filesystem if you mounted it without specifying "
17620 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17621 msgstr ""
17622
17623 #. type: =head2
17624 #: ../src/guestfs-actions.pod:7179
17625 msgid "guestfs_vfs_uuid"
17626 msgstr ""
17627
17628 #. type: verbatim
17629 #: ../src/guestfs-actions.pod:7181
17630 #, no-wrap
17631 msgid ""
17632 " char *\n"
17633 " guestfs_vfs_uuid (guestfs_h *g,\n"
17634 "                   const char *device);\n"
17635 "\n"
17636 msgstr ""
17637
17638 #. type: textblock
17639 #: ../src/guestfs-actions.pod:7185 ../fish/guestfish-actions.pod:4790
17640 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17641 msgstr ""
17642
17643 #. type: textblock
17644 #: ../src/guestfs-actions.pod:7188 ../fish/guestfish-actions.pod:4793
17645 msgid "If the filesystem does not have a UUID, this returns the empty string."
17646 msgstr ""
17647
17648 #. type: textblock
17649 #: ../src/guestfs-actions.pod:7190
17650 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17651 msgstr ""
17652
17653 #. type: =head2
17654 #: ../src/guestfs-actions.pod:7197
17655 msgid "guestfs_vg_activate"
17656 msgstr ""
17657
17658 #. type: verbatim
17659 #: ../src/guestfs-actions.pod:7199
17660 #, no-wrap
17661 msgid ""
17662 " int\n"
17663 " guestfs_vg_activate (guestfs_h *g,\n"
17664 "                      int activate,\n"
17665 "                      char *const *volgroups);\n"
17666 "\n"
17667 msgstr ""
17668
17669 #. type: textblock
17670 #: ../src/guestfs-actions.pod:7204 ../fish/guestfish-actions.pod:4801
17671 msgid ""
17672 "This command activates or (if C<activate> is false) deactivates all logical "
17673 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17674 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17675 "deactivated, then those devices disappear."
17676 msgstr ""
17677
17678 #. type: textblock
17679 #: ../src/guestfs-actions.pod:7210 ../fish/guestfish-actions.pod:4807
17680 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17681 msgstr ""
17682
17683 #. type: textblock
17684 #: ../src/guestfs-actions.pod:7212 ../fish/guestfish-actions.pod:4809
17685 msgid ""
17686 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17687 "activated or deactivated."
17688 msgstr ""
17689
17690 #. type: =head2
17691 #: ../src/guestfs-actions.pod:7219
17692 msgid "guestfs_vg_activate_all"
17693 msgstr ""
17694
17695 #. type: verbatim
17696 #: ../src/guestfs-actions.pod:7221
17697 #, no-wrap
17698 msgid ""
17699 " int\n"
17700 " guestfs_vg_activate_all (guestfs_h *g,\n"
17701 "                          int activate);\n"
17702 "\n"
17703 msgstr ""
17704
17705 #. type: textblock
17706 #: ../src/guestfs-actions.pod:7225 ../fish/guestfish-actions.pod:4816
17707 msgid ""
17708 "This command activates or (if C<activate> is false) deactivates all logical "
17709 "volumes in all volume groups.  If activated, then they are made known to the "
17710 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17711 "those devices disappear."
17712 msgstr ""
17713
17714 #. type: textblock
17715 #: ../src/guestfs-actions.pod:7231 ../fish/guestfish-actions.pod:4822
17716 msgid "This command is the same as running C<vgchange -a y|n>"
17717 msgstr ""
17718
17719 #. type: =head2
17720 #: ../src/guestfs-actions.pod:7237
17721 msgid "guestfs_vgcreate"
17722 msgstr ""
17723
17724 #. type: verbatim
17725 #: ../src/guestfs-actions.pod:7239
17726 #, no-wrap
17727 msgid ""
17728 " int\n"
17729 " guestfs_vgcreate (guestfs_h *g,\n"
17730 "                   const char *volgroup,\n"
17731 "                   char *const *physvols);\n"
17732 "\n"
17733 msgstr ""
17734
17735 #. type: textblock
17736 #: ../src/guestfs-actions.pod:7244 ../fish/guestfish-actions.pod:4828
17737 msgid ""
17738 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17739 "of physical volumes C<physvols>."
17740 msgstr ""
17741
17742 #. type: =head2
17743 #: ../src/guestfs-actions.pod:7251
17744 msgid "guestfs_vglvuuids"
17745 msgstr ""
17746
17747 #. type: verbatim
17748 #: ../src/guestfs-actions.pod:7253
17749 #, no-wrap
17750 msgid ""
17751 " char **\n"
17752 " guestfs_vglvuuids (guestfs_h *g,\n"
17753 "                    const char *vgname);\n"
17754 "\n"
17755 msgstr ""
17756
17757 #. type: textblock
17758 #: ../src/guestfs-actions.pod:7257 ../fish/guestfish-actions.pod:4835
17759 msgid ""
17760 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17761 "volumes created in this volume group."
17762 msgstr ""
17763
17764 #. type: textblock
17765 #: ../src/guestfs-actions.pod:7260
17766 msgid ""
17767 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17768 "associate logical volumes and volume groups."
17769 msgstr ""
17770
17771 #. type: textblock
17772 #: ../src/guestfs-actions.pod:7263
17773 msgid "See also C<guestfs_vgpvuuids>."
17774 msgstr ""
17775
17776 #. type: =head2
17777 #: ../src/guestfs-actions.pod:7271
17778 msgid "guestfs_vgpvuuids"
17779 msgstr ""
17780
17781 #. type: verbatim
17782 #: ../src/guestfs-actions.pod:7273
17783 #, no-wrap
17784 msgid ""
17785 " char **\n"
17786 " guestfs_vgpvuuids (guestfs_h *g,\n"
17787 "                    const char *vgname);\n"
17788 "\n"
17789 msgstr ""
17790
17791 #. type: textblock
17792 #: ../src/guestfs-actions.pod:7277 ../fish/guestfish-actions.pod:4847
17793 msgid ""
17794 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
17795 "volumes that this volume group resides on."
17796 msgstr ""
17797
17798 #. type: textblock
17799 #: ../src/guestfs-actions.pod:7280
17800 msgid ""
17801 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
17802 "associate physical volumes and volume groups."
17803 msgstr ""
17804
17805 #. type: textblock
17806 #: ../src/guestfs-actions.pod:7283
17807 msgid "See also C<guestfs_vglvuuids>."
17808 msgstr ""
17809
17810 #. type: =head2
17811 #: ../src/guestfs-actions.pod:7291
17812 msgid "guestfs_vgremove"
17813 msgstr ""
17814
17815 #. type: verbatim
17816 #: ../src/guestfs-actions.pod:7293
17817 #, no-wrap
17818 msgid ""
17819 " int\n"
17820 " guestfs_vgremove (guestfs_h *g,\n"
17821 "                   const char *vgname);\n"
17822 "\n"
17823 msgstr ""
17824
17825 #. type: textblock
17826 #: ../src/guestfs-actions.pod:7297 ../fish/guestfish-actions.pod:4859
17827 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
17828 msgstr ""
17829
17830 #. type: textblock
17831 #: ../src/guestfs-actions.pod:7299 ../fish/guestfish-actions.pod:4861
17832 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
17833 msgstr ""
17834
17835 #. type: =head2
17836 #: ../src/guestfs-actions.pod:7306
17837 msgid "guestfs_vgrename"
17838 msgstr ""
17839
17840 #. type: verbatim
17841 #: ../src/guestfs-actions.pod:7308
17842 #, no-wrap
17843 msgid ""
17844 " int\n"
17845 " guestfs_vgrename (guestfs_h *g,\n"
17846 "                   const char *volgroup,\n"
17847 "                   const char *newvolgroup);\n"
17848 "\n"
17849 msgstr ""
17850
17851 #. type: textblock
17852 #: ../src/guestfs-actions.pod:7313 ../fish/guestfish-actions.pod:4868
17853 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
17854 msgstr ""
17855
17856 #. type: =head2
17857 #: ../src/guestfs-actions.pod:7319
17858 msgid "guestfs_vgs"
17859 msgstr ""
17860
17861 #. type: verbatim
17862 #: ../src/guestfs-actions.pod:7321
17863 #, no-wrap
17864 msgid ""
17865 " char **\n"
17866 " guestfs_vgs (guestfs_h *g);\n"
17867 "\n"
17868 msgstr ""
17869
17870 #. type: textblock
17871 #: ../src/guestfs-actions.pod:7324 ../fish/guestfish-actions.pod:4874
17872 msgid ""
17873 "List all the volumes groups detected.  This is the equivalent of the "
17874 "L<vgs(8)> command."
17875 msgstr ""
17876
17877 #. type: textblock
17878 #: ../src/guestfs-actions.pod:7327 ../fish/guestfish-actions.pod:4877
17879 msgid ""
17880 "This returns a list of just the volume group names that were detected "
17881 "(eg. C<VolGroup00>)."
17882 msgstr ""
17883
17884 #. type: textblock
17885 #: ../src/guestfs-actions.pod:7330
17886 msgid "See also C<guestfs_vgs_full>."
17887 msgstr ""
17888
17889 #. type: =head2
17890 #: ../src/guestfs-actions.pod:7338
17891 msgid "guestfs_vgs_full"
17892 msgstr ""
17893
17894 #. type: verbatim
17895 #: ../src/guestfs-actions.pod:7340
17896 #, no-wrap
17897 msgid ""
17898 " struct guestfs_lvm_vg_list *\n"
17899 " guestfs_vgs_full (guestfs_h *g);\n"
17900 "\n"
17901 msgstr ""
17902
17903 #. type: textblock
17904 #: ../src/guestfs-actions.pod:7343 ../fish/guestfish-actions.pod:4886
17905 msgid ""
17906 "List all the volumes groups detected.  This is the equivalent of the "
17907 "L<vgs(8)> command.  The \"full\" version includes all fields."
17908 msgstr ""
17909
17910 #. type: textblock
17911 #: ../src/guestfs-actions.pod:7346
17912 msgid ""
17913 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
17914 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
17915 "use>."
17916 msgstr ""
17917
17918 #. type: =head2
17919 #: ../src/guestfs-actions.pod:7352
17920 msgid "guestfs_vgscan"
17921 msgstr ""
17922
17923 #. type: verbatim
17924 #: ../src/guestfs-actions.pod:7354
17925 #, no-wrap
17926 msgid ""
17927 " int\n"
17928 " guestfs_vgscan (guestfs_h *g);\n"
17929 "\n"
17930 msgstr ""
17931
17932 #. type: textblock
17933 #: ../src/guestfs-actions.pod:7357 ../fish/guestfish-actions.pod:4893
17934 msgid ""
17935 "This rescans all block devices and rebuilds the list of LVM physical "
17936 "volumes, volume groups and logical volumes."
17937 msgstr ""
17938
17939 #. type: =head2
17940 #: ../src/guestfs-actions.pod:7364
17941 msgid "guestfs_vguuid"
17942 msgstr ""
17943
17944 #. type: verbatim
17945 #: ../src/guestfs-actions.pod:7366
17946 #, no-wrap
17947 msgid ""
17948 " char *\n"
17949 " guestfs_vguuid (guestfs_h *g,\n"
17950 "                 const char *vgname);\n"
17951 "\n"
17952 msgstr ""
17953
17954 #. type: textblock
17955 #: ../src/guestfs-actions.pod:7370 ../fish/guestfish-actions.pod:4900
17956 msgid "This command returns the UUID of the LVM VG named C<vgname>."
17957 msgstr ""
17958
17959 #. type: =head2
17960 #: ../src/guestfs-actions.pod:7377
17961 msgid "guestfs_wait_ready"
17962 msgstr ""
17963
17964 #. type: verbatim
17965 #: ../src/guestfs-actions.pod:7379
17966 #, no-wrap
17967 msgid ""
17968 " int\n"
17969 " guestfs_wait_ready (guestfs_h *g);\n"
17970 "\n"
17971 msgstr ""
17972
17973 #. type: textblock
17974 #: ../src/guestfs-actions.pod:7382
17975 msgid "This function is a no op."
17976 msgstr ""
17977
17978 #. type: textblock
17979 #: ../src/guestfs-actions.pod:7384
17980 msgid ""
17981 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
17982 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
17983 "is no longer necessary because C<guestfs_launch> now does the waiting."
17984 msgstr ""
17985
17986 #. type: textblock
17987 #: ../src/guestfs-actions.pod:7389
17988 msgid ""
17989 "If you see any calls to this function in code then you can just remove them, "
17990 "unless you want to retain compatibility with older versions of the API."
17991 msgstr ""
17992
17993 #. type: textblock
17994 #: ../src/guestfs-actions.pod:7395
17995 msgid "This function is deprecated.  In new code, use the C<launch> call instead."
17996 msgstr ""
17997
17998 #. type: =head2
17999 #: ../src/guestfs-actions.pod:7404
18000 msgid "guestfs_wc_c"
18001 msgstr ""
18002
18003 #. type: verbatim
18004 #: ../src/guestfs-actions.pod:7406
18005 #, no-wrap
18006 msgid ""
18007 " int\n"
18008 " guestfs_wc_c (guestfs_h *g,\n"
18009 "               const char *path);\n"
18010 "\n"
18011 msgstr ""
18012
18013 #. type: textblock
18014 #: ../src/guestfs-actions.pod:7410 ../fish/guestfish-actions.pod:4906
18015 msgid ""
18016 "This command counts the characters in a file, using the C<wc -c> external "
18017 "command."
18018 msgstr ""
18019
18020 #. type: =head2
18021 #: ../src/guestfs-actions.pod:7417
18022 msgid "guestfs_wc_l"
18023 msgstr ""
18024
18025 #. type: verbatim
18026 #: ../src/guestfs-actions.pod:7419
18027 #, no-wrap
18028 msgid ""
18029 " int\n"
18030 " guestfs_wc_l (guestfs_h *g,\n"
18031 "               const char *path);\n"
18032 "\n"
18033 msgstr ""
18034
18035 #. type: textblock
18036 #: ../src/guestfs-actions.pod:7423 ../fish/guestfish-actions.pod:4913
18037 msgid ""
18038 "This command counts the lines in a file, using the C<wc -l> external "
18039 "command."
18040 msgstr ""
18041
18042 #. type: =head2
18043 #: ../src/guestfs-actions.pod:7430
18044 msgid "guestfs_wc_w"
18045 msgstr ""
18046
18047 #. type: verbatim
18048 #: ../src/guestfs-actions.pod:7432
18049 #, no-wrap
18050 msgid ""
18051 " int\n"
18052 " guestfs_wc_w (guestfs_h *g,\n"
18053 "               const char *path);\n"
18054 "\n"
18055 msgstr ""
18056
18057 #. type: textblock
18058 #: ../src/guestfs-actions.pod:7436 ../fish/guestfish-actions.pod:4920
18059 msgid ""
18060 "This command counts the words in a file, using the C<wc -w> external "
18061 "command."
18062 msgstr ""
18063
18064 #. type: =head2
18065 #: ../src/guestfs-actions.pod:7443
18066 msgid "guestfs_write"
18067 msgstr ""
18068
18069 #. type: verbatim
18070 #: ../src/guestfs-actions.pod:7445
18071 #, no-wrap
18072 msgid ""
18073 " int\n"
18074 " guestfs_write (guestfs_h *g,\n"
18075 "                const char *path,\n"
18076 "                const char *content,\n"
18077 "                size_t content_size);\n"
18078 "\n"
18079 msgstr ""
18080
18081 #. type: textblock
18082 #: ../src/guestfs-actions.pod:7451 ../fish/guestfish-actions.pod:4927
18083 msgid ""
18084 "This call creates a file called C<path>.  The content of the file is the "
18085 "string C<content> (which can contain any 8 bit data)."
18086 msgstr ""
18087
18088 #. type: =head2
18089 #: ../src/guestfs-actions.pod:7461
18090 msgid "guestfs_write_file"
18091 msgstr ""
18092
18093 #. type: verbatim
18094 #: ../src/guestfs-actions.pod:7463
18095 #, no-wrap
18096 msgid ""
18097 " int\n"
18098 " guestfs_write_file (guestfs_h *g,\n"
18099 "                     const char *path,\n"
18100 "                     const char *content,\n"
18101 "                     int size);\n"
18102 "\n"
18103 msgstr ""
18104
18105 #. type: textblock
18106 #: ../src/guestfs-actions.pod:7469 ../fish/guestfish-actions.pod:4937
18107 msgid ""
18108 "This call creates a file called C<path>.  The contents of the file is the "
18109 "string C<content> (which can contain any 8 bit data), with length C<size>."
18110 msgstr ""
18111
18112 #. type: textblock
18113 #: ../src/guestfs-actions.pod:7473 ../fish/guestfish-actions.pod:4941
18114 msgid ""
18115 "As a special case, if C<size> is C<0> then the length is calculated using "
18116 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18117 msgstr ""
18118
18119 #. type: textblock
18120 #: ../src/guestfs-actions.pod:7477 ../fish/guestfish-actions.pod:4945
18121 msgid ""
18122 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18123 "I<not> work, even if the length is specified."
18124 msgstr ""
18125
18126 #. type: textblock
18127 #: ../src/guestfs-actions.pod:7485 ../fish/guestfish-actions.pod:4951
18128 msgid "This function is deprecated.  In new code, use the C<write> call instead."
18129 msgstr ""
18130
18131 #. type: =head2
18132 #: ../src/guestfs-actions.pod:7494
18133 msgid "guestfs_zegrep"
18134 msgstr ""
18135
18136 #. type: verbatim
18137 #: ../src/guestfs-actions.pod:7496
18138 #, no-wrap
18139 msgid ""
18140 " char **\n"
18141 " guestfs_zegrep (guestfs_h *g,\n"
18142 "                 const char *regex,\n"
18143 "                 const char *path);\n"
18144 "\n"
18145 msgstr ""
18146
18147 #. type: textblock
18148 #: ../src/guestfs-actions.pod:7501 ../fish/guestfish-actions.pod:4962
18149 msgid "This calls the external C<zegrep> program and returns the matching lines."
18150 msgstr ""
18151
18152 #. type: =head2
18153 #: ../src/guestfs-actions.pod:7513
18154 msgid "guestfs_zegrepi"
18155 msgstr ""
18156
18157 #. type: verbatim
18158 #: ../src/guestfs-actions.pod:7515
18159 #, no-wrap
18160 msgid ""
18161 " char **\n"
18162 " guestfs_zegrepi (guestfs_h *g,\n"
18163 "                  const char *regex,\n"
18164 "                  const char *path);\n"
18165 "\n"
18166 msgstr ""
18167
18168 #. type: textblock
18169 #: ../src/guestfs-actions.pod:7520 ../fish/guestfish-actions.pod:4972
18170 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
18171 msgstr ""
18172
18173 #. type: =head2
18174 #: ../src/guestfs-actions.pod:7532
18175 msgid "guestfs_zero"
18176 msgstr ""
18177
18178 #. type: verbatim
18179 #: ../src/guestfs-actions.pod:7534
18180 #, no-wrap
18181 msgid ""
18182 " int\n"
18183 " guestfs_zero (guestfs_h *g,\n"
18184 "               const char *device);\n"
18185 "\n"
18186 msgstr ""
18187
18188 #. type: textblock
18189 #: ../src/guestfs-actions.pod:7538 ../fish/guestfish-actions.pod:4982
18190 msgid "This command writes zeroes over the first few blocks of C<device>."
18191 msgstr ""
18192
18193 #. type: textblock
18194 #: ../src/guestfs-actions.pod:7540 ../fish/guestfish-actions.pod:4984
18195 msgid ""
18196 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18197 "securely wipe the device).  It should be sufficient to remove any partition "
18198 "tables, filesystem superblocks and so on."
18199 msgstr ""
18200
18201 #. type: textblock
18202 #: ../src/guestfs-actions.pod:7544
18203 msgid ""
18204 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
18205 "C<guestfs_is_zero_device>"
18206 msgstr ""
18207
18208 #. type: =head2
18209 #: ../src/guestfs-actions.pod:7556
18210 msgid "guestfs_zero_device"
18211 msgstr ""
18212
18213 #. type: verbatim
18214 #: ../src/guestfs-actions.pod:7558
18215 #, no-wrap
18216 msgid ""
18217 " int\n"
18218 " guestfs_zero_device (guestfs_h *g,\n"
18219 "                      const char *device);\n"
18220 "\n"
18221 msgstr ""
18222
18223 #. type: textblock
18224 #: ../src/guestfs-actions.pod:7562
18225 msgid ""
18226 "This command writes zeroes over the entire C<device>.  Compare with "
18227 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18228 msgstr ""
18229
18230 #. type: textblock
18231 #: ../src/guestfs-actions.pod:7576
18232 msgid "(Added in 1.3.1)"
18233 msgstr ""
18234
18235 #. type: =head2
18236 #: ../src/guestfs-actions.pod:7578
18237 msgid "guestfs_zerofree"
18238 msgstr ""
18239
18240 #. type: verbatim
18241 #: ../src/guestfs-actions.pod:7580
18242 #, no-wrap
18243 msgid ""
18244 " int\n"
18245 " guestfs_zerofree (guestfs_h *g,\n"
18246 "                   const char *device);\n"
18247 "\n"
18248 msgstr ""
18249
18250 #. type: textblock
18251 #: ../src/guestfs-actions.pod:7584 ../fish/guestfish-actions.pod:5006
18252 msgid ""
18253 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18254 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18255 "possible to compress the filesystem more effectively."
18256 msgstr ""
18257
18258 #. type: textblock
18259 #: ../src/guestfs-actions.pod:7589 ../fish/guestfish-actions.pod:5011
18260 msgid "You should B<not> run this program if the filesystem is mounted."
18261 msgstr ""
18262
18263 #. type: textblock
18264 #: ../src/guestfs-actions.pod:7592 ../fish/guestfish-actions.pod:5014
18265 msgid ""
18266 "It is possible that using this program can damage the filesystem or data on "
18267 "the filesystem."
18268 msgstr ""
18269
18270 #. type: =head2
18271 #: ../src/guestfs-actions.pod:7599
18272 msgid "guestfs_zfgrep"
18273 msgstr ""
18274
18275 #. type: verbatim
18276 #: ../src/guestfs-actions.pod:7601
18277 #, no-wrap
18278 msgid ""
18279 " char **\n"
18280 " guestfs_zfgrep (guestfs_h *g,\n"
18281 "                 const char *pattern,\n"
18282 "                 const char *path);\n"
18283 "\n"
18284 msgstr ""
18285
18286 #. type: textblock
18287 #: ../src/guestfs-actions.pod:7606 ../fish/guestfish-actions.pod:5021
18288 msgid "This calls the external C<zfgrep> program and returns the matching lines."
18289 msgstr ""
18290
18291 #. type: =head2
18292 #: ../src/guestfs-actions.pod:7618
18293 msgid "guestfs_zfgrepi"
18294 msgstr ""
18295
18296 #. type: verbatim
18297 #: ../src/guestfs-actions.pod:7620
18298 #, no-wrap
18299 msgid ""
18300 " char **\n"
18301 " guestfs_zfgrepi (guestfs_h *g,\n"
18302 "                  const char *pattern,\n"
18303 "                  const char *path);\n"
18304 "\n"
18305 msgstr ""
18306
18307 #. type: textblock
18308 #: ../src/guestfs-actions.pod:7625 ../fish/guestfish-actions.pod:5031
18309 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
18310 msgstr ""
18311
18312 #. type: =head2
18313 #: ../src/guestfs-actions.pod:7637
18314 msgid "guestfs_zfile"
18315 msgstr ""
18316
18317 #. type: verbatim
18318 #: ../src/guestfs-actions.pod:7639
18319 #, no-wrap
18320 msgid ""
18321 " char *\n"
18322 " guestfs_zfile (guestfs_h *g,\n"
18323 "                const char *meth,\n"
18324 "                const char *path);\n"
18325 "\n"
18326 msgstr ""
18327
18328 #. type: textblock
18329 #: ../src/guestfs-actions.pod:7644 ../fish/guestfish-actions.pod:5041
18330 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
18331 msgstr ""
18332
18333 #. type: textblock
18334 #: ../src/guestfs-actions.pod:7647 ../fish/guestfish-actions.pod:5044
18335 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18336 msgstr ""
18337
18338 #. type: textblock
18339 #: ../src/guestfs-actions.pod:7649
18340 msgid ""
18341 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18342 "files."
18343 msgstr ""
18344
18345 #. type: textblock
18346 #: ../src/guestfs-actions.pod:7655 ../fish/guestfish-actions.pod:5049
18347 msgid "This function is deprecated.  In new code, use the C<file> call instead."
18348 msgstr ""
18349
18350 #. type: =head2
18351 #: ../src/guestfs-actions.pod:7664
18352 msgid "guestfs_zgrep"
18353 msgstr ""
18354
18355 #. type: verbatim
18356 #: ../src/guestfs-actions.pod:7666
18357 #, no-wrap
18358 msgid ""
18359 " char **\n"
18360 " guestfs_zgrep (guestfs_h *g,\n"
18361 "                const char *regex,\n"
18362 "                const char *path);\n"
18363 "\n"
18364 msgstr ""
18365
18366 #. type: textblock
18367 #: ../src/guestfs-actions.pod:7671 ../fish/guestfish-actions.pod:5060
18368 msgid "This calls the external C<zgrep> program and returns the matching lines."
18369 msgstr ""
18370
18371 #. type: =head2
18372 #: ../src/guestfs-actions.pod:7683
18373 msgid "guestfs_zgrepi"
18374 msgstr ""
18375
18376 #. type: verbatim
18377 #: ../src/guestfs-actions.pod:7685
18378 #, no-wrap
18379 msgid ""
18380 " char **\n"
18381 " guestfs_zgrepi (guestfs_h *g,\n"
18382 "                 const char *regex,\n"
18383 "                 const char *path);\n"
18384 "\n"
18385 msgstr ""
18386
18387 #. type: textblock
18388 #: ../src/guestfs-actions.pod:7690 ../fish/guestfish-actions.pod:5070
18389 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
18390 msgstr ""
18391
18392 #. type: =item
18393 #: ../src/guestfs-availability.pod:3
18394 msgid "B<augeas>"
18395 msgstr ""
18396
18397 #. type: textblock
18398 #: ../src/guestfs-availability.pod:5
18399 msgid ""
18400 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
18401 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
18402 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
18403 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
18404 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
18405 msgstr ""
18406
18407 #. type: =item
18408 #: ../src/guestfs-availability.pod:21
18409 msgid "B<inotify>"
18410 msgstr ""
18411
18412 #. type: textblock
18413 #: ../src/guestfs-availability.pod:23
18414 msgid ""
18415 "The following functions: L</guestfs_inotify_add_watch> "
18416 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
18417 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18418 msgstr ""
18419
18420 #. type: =item
18421 #: ../src/guestfs-availability.pod:31
18422 msgid "B<linuxfsuuid>"
18423 msgstr ""
18424
18425 #. type: textblock
18426 #: ../src/guestfs-availability.pod:33
18427 msgid ""
18428 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
18429 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18430 msgstr ""
18431
18432 #. type: =item
18433 #: ../src/guestfs-availability.pod:40
18434 msgid "B<linuxmodules>"
18435 msgstr ""
18436
18437 #. type: textblock
18438 #: ../src/guestfs-availability.pod:42
18439 msgid "The following functions: L</guestfs_modprobe>"
18440 msgstr ""
18441
18442 #. type: =item
18443 #: ../src/guestfs-availability.pod:45
18444 msgid "B<linuxxattrs>"
18445 msgstr ""
18446
18447 #. type: textblock
18448 #: ../src/guestfs-availability.pod:47
18449 msgid ""
18450 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
18451 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
18452 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
18453 "L</guestfs_setxattr>"
18454 msgstr ""
18455
18456 #. type: =item
18457 #: ../src/guestfs-availability.pod:58
18458 msgid "B<luks>"
18459 msgstr ""
18460
18461 #. type: textblock
18462 #: ../src/guestfs-availability.pod:60
18463 msgid ""
18464 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
18465 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
18466 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18467 msgstr ""
18468
18469 #. type: =item
18470 #: ../src/guestfs-availability.pod:69
18471 msgid "B<lvm2>"
18472 msgstr ""
18473
18474 #. type: textblock
18475 #: ../src/guestfs-availability.pod:71
18476 msgid ""
18477 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
18478 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
18479 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
18480 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
18481 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
18482 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
18483 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
18484 "L</guestfs_vgs_full>"
18485 msgstr ""
18486
18487 #. type: =item
18488 #: ../src/guestfs-availability.pod:94
18489 msgid "B<mknod>"
18490 msgstr ""
18491
18492 #. type: textblock
18493 #: ../src/guestfs-availability.pod:96
18494 msgid ""
18495 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
18496 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
18497 msgstr ""
18498
18499 #. type: =item
18500 #: ../src/guestfs-availability.pod:102
18501 msgid "B<ntfs3g>"
18502 msgstr ""
18503
18504 #. type: textblock
18505 #: ../src/guestfs-availability.pod:104
18506 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18507 msgstr ""
18508
18509 #. type: =item
18510 #: ../src/guestfs-availability.pod:107
18511 msgid "B<ntfsprogs>"
18512 msgstr ""
18513
18514 #. type: textblock
18515 #: ../src/guestfs-availability.pod:109
18516 msgid "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18517 msgstr ""
18518
18519 #. type: =item
18520 #: ../src/guestfs-availability.pod:113
18521 msgid "B<realpath>"
18522 msgstr ""
18523
18524 #. type: textblock
18525 #: ../src/guestfs-availability.pod:115
18526 msgid "The following functions: L</guestfs_realpath>"
18527 msgstr ""
18528
18529 #. type: =item
18530 #: ../src/guestfs-availability.pod:118
18531 msgid "B<scrub>"
18532 msgstr ""
18533
18534 #. type: textblock
18535 #: ../src/guestfs-availability.pod:120
18536 msgid ""
18537 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
18538 "L</guestfs_scrub_freespace>"
18539 msgstr ""
18540
18541 #. type: =item
18542 #: ../src/guestfs-availability.pod:125
18543 msgid "B<selinux>"
18544 msgstr ""
18545
18546 #. type: textblock
18547 #: ../src/guestfs-availability.pod:127
18548 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18549 msgstr ""
18550
18551 #. type: =item
18552 #: ../src/guestfs-availability.pod:131
18553 msgid "B<xz>"
18554 msgstr ""
18555
18556 #. type: textblock
18557 #: ../src/guestfs-availability.pod:133
18558 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18559 msgstr ""
18560
18561 #. type: =item
18562 #: ../src/guestfs-availability.pod:137
18563 msgid "B<zerofree>"
18564 msgstr ""
18565
18566 #. type: textblock
18567 #: ../src/guestfs-availability.pod:139
18568 msgid "The following functions: L</guestfs_zerofree>"
18569 msgstr ""
18570
18571 #. type: =head2
18572 #: ../src/guestfs-structs.pod:1
18573 msgid "guestfs_int_bool"
18574 msgstr ""
18575
18576 #. type: verbatim
18577 #: ../src/guestfs-structs.pod:3
18578 #, no-wrap
18579 msgid ""
18580 " struct guestfs_int_bool {\n"
18581 "   int32_t i;\n"
18582 "   int32_t b;\n"
18583 " };\n"
18584 " \n"
18585 msgstr ""
18586
18587 #. type: verbatim
18588 #: ../src/guestfs-structs.pod:8
18589 #, no-wrap
18590 msgid ""
18591 " struct guestfs_int_bool_list {\n"
18592 "   uint32_t len; /* Number of elements in list. */\n"
18593 "   struct guestfs_int_bool *val; /* Elements. */\n"
18594 " };\n"
18595 " \n"
18596 msgstr ""
18597
18598 #. type: verbatim
18599 #: ../src/guestfs-structs.pod:13
18600 #, no-wrap
18601 msgid ""
18602 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18603 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18604 "\n"
18605 msgstr ""
18606
18607 #. type: =head2
18608 #: ../src/guestfs-structs.pod:16
18609 msgid "guestfs_lvm_pv"
18610 msgstr ""
18611
18612 #. type: verbatim
18613 #: ../src/guestfs-structs.pod:18
18614 #, no-wrap
18615 msgid ""
18616 " struct guestfs_lvm_pv {\n"
18617 "   char *pv_name;\n"
18618 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18619 "*/\n"
18620 "   char pv_uuid[32];\n"
18621 "   char *pv_fmt;\n"
18622 "   uint64_t pv_size;\n"
18623 "   uint64_t dev_size;\n"
18624 "   uint64_t pv_free;\n"
18625 "   uint64_t pv_used;\n"
18626 "   char *pv_attr;\n"
18627 "   int64_t pv_pe_count;\n"
18628 "   int64_t pv_pe_alloc_count;\n"
18629 "   char *pv_tags;\n"
18630 "   uint64_t pe_start;\n"
18631 "   int64_t pv_mda_count;\n"
18632 "   uint64_t pv_mda_free;\n"
18633 " };\n"
18634 " \n"
18635 msgstr ""
18636
18637 #. type: verbatim
18638 #: ../src/guestfs-structs.pod:36
18639 #, no-wrap
18640 msgid ""
18641 " struct guestfs_lvm_pv_list {\n"
18642 "   uint32_t len; /* Number of elements in list. */\n"
18643 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18644 " };\n"
18645 " \n"
18646 msgstr ""
18647
18648 #. type: verbatim
18649 #: ../src/guestfs-structs.pod:41
18650 #, no-wrap
18651 msgid ""
18652 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18653 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18654 "\n"
18655 msgstr ""
18656
18657 #. type: =head2
18658 #: ../src/guestfs-structs.pod:44
18659 msgid "guestfs_lvm_vg"
18660 msgstr ""
18661
18662 #. type: verbatim
18663 #: ../src/guestfs-structs.pod:46
18664 #, no-wrap
18665 msgid ""
18666 " struct guestfs_lvm_vg {\n"
18667 "   char *vg_name;\n"
18668 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18669 "*/\n"
18670 "   char vg_uuid[32];\n"
18671 "   char *vg_fmt;\n"
18672 "   char *vg_attr;\n"
18673 "   uint64_t vg_size;\n"
18674 "   uint64_t vg_free;\n"
18675 "   char *vg_sysid;\n"
18676 "   uint64_t vg_extent_size;\n"
18677 "   int64_t vg_extent_count;\n"
18678 "   int64_t vg_free_count;\n"
18679 "   int64_t max_lv;\n"
18680 "   int64_t max_pv;\n"
18681 "   int64_t pv_count;\n"
18682 "   int64_t lv_count;\n"
18683 "   int64_t snap_count;\n"
18684 "   int64_t vg_seqno;\n"
18685 "   char *vg_tags;\n"
18686 "   int64_t vg_mda_count;\n"
18687 "   uint64_t vg_mda_free;\n"
18688 " };\n"
18689 " \n"
18690 msgstr ""
18691
18692 #. type: verbatim
18693 #: ../src/guestfs-structs.pod:69
18694 #, no-wrap
18695 msgid ""
18696 " struct guestfs_lvm_vg_list {\n"
18697 "   uint32_t len; /* Number of elements in list. */\n"
18698 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18699 " };\n"
18700 " \n"
18701 msgstr ""
18702
18703 #. type: verbatim
18704 #: ../src/guestfs-structs.pod:74
18705 #, no-wrap
18706 msgid ""
18707 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18708 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18709 "\n"
18710 msgstr ""
18711
18712 #. type: =head2
18713 #: ../src/guestfs-structs.pod:77
18714 msgid "guestfs_lvm_lv"
18715 msgstr ""
18716
18717 #. type: verbatim
18718 #: ../src/guestfs-structs.pod:79
18719 #, no-wrap
18720 msgid ""
18721 " struct guestfs_lvm_lv {\n"
18722 "   char *lv_name;\n"
18723 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18724 "*/\n"
18725 "   char lv_uuid[32];\n"
18726 "   char *lv_attr;\n"
18727 "   int64_t lv_major;\n"
18728 "   int64_t lv_minor;\n"
18729 "   int64_t lv_kernel_major;\n"
18730 "   int64_t lv_kernel_minor;\n"
18731 "   uint64_t lv_size;\n"
18732 "   int64_t seg_count;\n"
18733 "   char *origin;\n"
18734 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18735 "   float snap_percent;\n"
18736 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18737 "   float copy_percent;\n"
18738 "   char *move_pv;\n"
18739 "   char *lv_tags;\n"
18740 "   char *mirror_log;\n"
18741 "   char *modules;\n"
18742 " };\n"
18743 " \n"
18744 msgstr ""
18745
18746 #. type: verbatim
18747 #: ../src/guestfs-structs.pod:101
18748 #, no-wrap
18749 msgid ""
18750 " struct guestfs_lvm_lv_list {\n"
18751 "   uint32_t len; /* Number of elements in list. */\n"
18752 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18753 " };\n"
18754 " \n"
18755 msgstr ""
18756
18757 #. type: verbatim
18758 #: ../src/guestfs-structs.pod:106
18759 #, no-wrap
18760 msgid ""
18761 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18762 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18763 "\n"
18764 msgstr ""
18765
18766 #. type: verbatim
18767 #: ../src/guestfs-structs.pod:111
18768 #, no-wrap
18769 msgid ""
18770 " struct guestfs_stat {\n"
18771 "   int64_t dev;\n"
18772 "   int64_t ino;\n"
18773 "   int64_t mode;\n"
18774 "   int64_t nlink;\n"
18775 "   int64_t uid;\n"
18776 "   int64_t gid;\n"
18777 "   int64_t rdev;\n"
18778 "   int64_t size;\n"
18779 "   int64_t blksize;\n"
18780 "   int64_t blocks;\n"
18781 "   int64_t atime;\n"
18782 "   int64_t mtime;\n"
18783 "   int64_t ctime;\n"
18784 " };\n"
18785 " \n"
18786 msgstr ""
18787
18788 #. type: verbatim
18789 #: ../src/guestfs-structs.pod:127
18790 #, no-wrap
18791 msgid ""
18792 " struct guestfs_stat_list {\n"
18793 "   uint32_t len; /* Number of elements in list. */\n"
18794 "   struct guestfs_stat *val; /* Elements. */\n"
18795 " };\n"
18796 " \n"
18797 msgstr ""
18798
18799 #. type: verbatim
18800 #: ../src/guestfs-structs.pod:132
18801 #, no-wrap
18802 msgid ""
18803 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
18804 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
18805 "\n"
18806 msgstr ""
18807
18808 #. type: verbatim
18809 #: ../src/guestfs-structs.pod:137
18810 #, no-wrap
18811 msgid ""
18812 " struct guestfs_statvfs {\n"
18813 "   int64_t bsize;\n"
18814 "   int64_t frsize;\n"
18815 "   int64_t blocks;\n"
18816 "   int64_t bfree;\n"
18817 "   int64_t bavail;\n"
18818 "   int64_t files;\n"
18819 "   int64_t ffree;\n"
18820 "   int64_t favail;\n"
18821 "   int64_t fsid;\n"
18822 "   int64_t flag;\n"
18823 "   int64_t namemax;\n"
18824 " };\n"
18825 " \n"
18826 msgstr ""
18827
18828 #. type: verbatim
18829 #: ../src/guestfs-structs.pod:151
18830 #, no-wrap
18831 msgid ""
18832 " struct guestfs_statvfs_list {\n"
18833 "   uint32_t len; /* Number of elements in list. */\n"
18834 "   struct guestfs_statvfs *val; /* Elements. */\n"
18835 " };\n"
18836 " \n"
18837 msgstr ""
18838
18839 #. type: verbatim
18840 #: ../src/guestfs-structs.pod:156
18841 #, no-wrap
18842 msgid ""
18843 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
18844 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
18845 "\n"
18846 msgstr ""
18847
18848 #. type: =head2
18849 #: ../src/guestfs-structs.pod:159
18850 msgid "guestfs_dirent"
18851 msgstr ""
18852
18853 #. type: verbatim
18854 #: ../src/guestfs-structs.pod:161
18855 #, no-wrap
18856 msgid ""
18857 " struct guestfs_dirent {\n"
18858 "   int64_t ino;\n"
18859 "   char ftyp;\n"
18860 "   char *name;\n"
18861 " };\n"
18862 " \n"
18863 msgstr ""
18864
18865 #. type: verbatim
18866 #: ../src/guestfs-structs.pod:167
18867 #, no-wrap
18868 msgid ""
18869 " struct guestfs_dirent_list {\n"
18870 "   uint32_t len; /* Number of elements in list. */\n"
18871 "   struct guestfs_dirent *val; /* Elements. */\n"
18872 " };\n"
18873 " \n"
18874 msgstr ""
18875
18876 #. type: verbatim
18877 #: ../src/guestfs-structs.pod:172
18878 #, no-wrap
18879 msgid ""
18880 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
18881 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
18882 "\n"
18883 msgstr ""
18884
18885 #. type: verbatim
18886 #: ../src/guestfs-structs.pod:177
18887 #, no-wrap
18888 msgid ""
18889 " struct guestfs_version {\n"
18890 "   int64_t major;\n"
18891 "   int64_t minor;\n"
18892 "   int64_t release;\n"
18893 "   char *extra;\n"
18894 " };\n"
18895 " \n"
18896 msgstr ""
18897
18898 #. type: verbatim
18899 #: ../src/guestfs-structs.pod:184
18900 #, no-wrap
18901 msgid ""
18902 " struct guestfs_version_list {\n"
18903 "   uint32_t len; /* Number of elements in list. */\n"
18904 "   struct guestfs_version *val; /* Elements. */\n"
18905 " };\n"
18906 " \n"
18907 msgstr ""
18908
18909 #. type: verbatim
18910 #: ../src/guestfs-structs.pod:189
18911 #, no-wrap
18912 msgid ""
18913 " void guestfs_free_version (struct guestfs_free_version *);\n"
18914 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
18915 "\n"
18916 msgstr ""
18917
18918 #. type: =head2
18919 #: ../src/guestfs-structs.pod:192
18920 msgid "guestfs_xattr"
18921 msgstr ""
18922
18923 #. type: verbatim
18924 #: ../src/guestfs-structs.pod:194
18925 #, no-wrap
18926 msgid ""
18927 " struct guestfs_xattr {\n"
18928 "   char *attrname;\n"
18929 "   /* The next two fields describe a byte array. */\n"
18930 "   uint32_t attrval_len;\n"
18931 "   char *attrval;\n"
18932 " };\n"
18933 " \n"
18934 msgstr ""
18935
18936 #. type: verbatim
18937 #: ../src/guestfs-structs.pod:201
18938 #, no-wrap
18939 msgid ""
18940 " struct guestfs_xattr_list {\n"
18941 "   uint32_t len; /* Number of elements in list. */\n"
18942 "   struct guestfs_xattr *val; /* Elements. */\n"
18943 " };\n"
18944 " \n"
18945 msgstr ""
18946
18947 #. type: verbatim
18948 #: ../src/guestfs-structs.pod:206
18949 #, no-wrap
18950 msgid ""
18951 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
18952 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
18953 "\n"
18954 msgstr ""
18955
18956 #. type: =head2
18957 #: ../src/guestfs-structs.pod:209
18958 msgid "guestfs_inotify_event"
18959 msgstr ""
18960
18961 #. type: verbatim
18962 #: ../src/guestfs-structs.pod:211
18963 #, no-wrap
18964 msgid ""
18965 " struct guestfs_inotify_event {\n"
18966 "   int64_t in_wd;\n"
18967 "   uint32_t in_mask;\n"
18968 "   uint32_t in_cookie;\n"
18969 "   char *in_name;\n"
18970 " };\n"
18971 " \n"
18972 msgstr ""
18973
18974 #. type: verbatim
18975 #: ../src/guestfs-structs.pod:218
18976 #, no-wrap
18977 msgid ""
18978 " struct guestfs_inotify_event_list {\n"
18979 "   uint32_t len; /* Number of elements in list. */\n"
18980 "   struct guestfs_inotify_event *val; /* Elements. */\n"
18981 " };\n"
18982 " \n"
18983 msgstr ""
18984
18985 #. type: verbatim
18986 #: ../src/guestfs-structs.pod:223
18987 #, no-wrap
18988 msgid ""
18989 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
18990 " void guestfs_free_inotify_event_list (struct "
18991 "guestfs_free_inotify_event_list *);\n"
18992 "\n"
18993 msgstr ""
18994
18995 #. type: =head2
18996 #: ../src/guestfs-structs.pod:226
18997 msgid "guestfs_partition"
18998 msgstr ""
18999
19000 #. type: verbatim
19001 #: ../src/guestfs-structs.pod:228
19002 #, no-wrap
19003 msgid ""
19004 " struct guestfs_partition {\n"
19005 "   int32_t part_num;\n"
19006 "   uint64_t part_start;\n"
19007 "   uint64_t part_end;\n"
19008 "   uint64_t part_size;\n"
19009 " };\n"
19010 " \n"
19011 msgstr ""
19012
19013 #. type: verbatim
19014 #: ../src/guestfs-structs.pod:235
19015 #, no-wrap
19016 msgid ""
19017 " struct guestfs_partition_list {\n"
19018 "   uint32_t len; /* Number of elements in list. */\n"
19019 "   struct guestfs_partition *val; /* Elements. */\n"
19020 " };\n"
19021 " \n"
19022 msgstr ""
19023
19024 #. type: verbatim
19025 #: ../src/guestfs-structs.pod:240
19026 #, no-wrap
19027 msgid ""
19028 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19029 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19030 "\n"
19031 msgstr ""
19032
19033 #. type: =head2
19034 #: ../src/guestfs-structs.pod:243
19035 msgid "guestfs_application"
19036 msgstr ""
19037
19038 #. type: verbatim
19039 #: ../src/guestfs-structs.pod:245
19040 #, no-wrap
19041 msgid ""
19042 " struct guestfs_application {\n"
19043 "   char *app_name;\n"
19044 "   char *app_display_name;\n"
19045 "   int32_t app_epoch;\n"
19046 "   char *app_version;\n"
19047 "   char *app_release;\n"
19048 "   char *app_install_path;\n"
19049 "   char *app_trans_path;\n"
19050 "   char *app_publisher;\n"
19051 "   char *app_url;\n"
19052 "   char *app_source_package;\n"
19053 "   char *app_summary;\n"
19054 "   char *app_description;\n"
19055 " };\n"
19056 " \n"
19057 msgstr ""
19058
19059 #. type: verbatim
19060 #: ../src/guestfs-structs.pod:260
19061 #, no-wrap
19062 msgid ""
19063 " struct guestfs_application_list {\n"
19064 "   uint32_t len; /* Number of elements in list. */\n"
19065 "   struct guestfs_application *val; /* Elements. */\n"
19066 " };\n"
19067 " \n"
19068 msgstr ""
19069
19070 #. type: verbatim
19071 #: ../src/guestfs-structs.pod:265
19072 #, no-wrap
19073 msgid ""
19074 " void guestfs_free_application (struct guestfs_free_application *);\n"
19075 " void guestfs_free_application_list (struct guestfs_free_application_list "
19076 "*);\n"
19077 "\n"
19078 msgstr ""
19079
19080 #. type: textblock
19081 #: ../fish/guestfish.pod:5
19082 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19083 msgstr ""
19084
19085 #. type: verbatim
19086 #: ../fish/guestfish.pod:9
19087 #, no-wrap
19088 msgid ""
19089 " guestfish [--options] [commands]\n"
19090 "\n"
19091 msgstr ""
19092
19093 #. type: verbatim
19094 #: ../fish/guestfish.pod:11
19095 #, no-wrap
19096 msgid ""
19097 " guestfish\n"
19098 "\n"
19099 msgstr ""
19100
19101 #. type: verbatim
19102 #: ../fish/guestfish.pod:13
19103 #, no-wrap
19104 msgid ""
19105 " guestfish [--ro|--rw] -a disk.img\n"
19106 "\n"
19107 msgstr ""
19108
19109 #. type: verbatim
19110 #: ../fish/guestfish.pod:15
19111 #, no-wrap
19112 msgid ""
19113 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19114 "\n"
19115 msgstr ""
19116
19117 #. type: verbatim
19118 #: ../fish/guestfish.pod:17
19119 #, no-wrap
19120 msgid ""
19121 " guestfish -d libvirt-domain\n"
19122 "\n"
19123 msgstr ""
19124
19125 #. type: verbatim
19126 #: ../fish/guestfish.pod:19
19127 #, no-wrap
19128 msgid ""
19129 " guestfish [--ro|--rw] -a disk.img -i\n"
19130 "\n"
19131 msgstr ""
19132
19133 #. type: verbatim
19134 #: ../fish/guestfish.pod:21
19135 #, no-wrap
19136 msgid ""
19137 " guestfish -d libvirt-domain -i\n"
19138 "\n"
19139 msgstr ""
19140
19141 #. type: =head1
19142 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19143 msgid "WARNING"
19144 msgstr ""
19145
19146 #. type: textblock
19147 #: ../fish/guestfish.pod:25
19148 msgid ""
19149 "Using guestfish in read/write mode on live virtual machines can be "
19150 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19151 "option to use guestfish safely if the disk image or virtual machine might be "
19152 "live."
19153 msgstr ""
19154
19155 #. type: textblock
19156 #: ../fish/guestfish.pod:32
19157 msgid ""
19158 "Guestfish is a shell and command-line tool for examining and modifying "
19159 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19160 "functionality of the guestfs API, see L<guestfs(3)>."
19161 msgstr ""
19162
19163 #. type: textblock
19164 #: ../fish/guestfish.pod:36
19165 msgid ""
19166 "Guestfish gives you structured access to the libguestfs API, from shell "
19167 "scripts or the command line or interactively.  If you want to rescue a "
19168 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19169 "command."
19170 msgstr ""
19171
19172 #. type: =head1
19173 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949 ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
19174 msgid "EXAMPLES"
19175 msgstr ""
19176
19177 #. type: =head2
19178 #: ../fish/guestfish.pod:43
19179 msgid "As an interactive shell"
19180 msgstr ""
19181
19182 #. type: verbatim
19183 #: ../fish/guestfish.pod:45
19184 #, no-wrap
19185 msgid ""
19186 " $ guestfish\n"
19187 " \n"
19188 msgstr ""
19189
19190 #. type: verbatim
19191 #: ../fish/guestfish.pod:47
19192 #, no-wrap
19193 msgid ""
19194 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19195 " editing virtual machine filesystems.\n"
19196 " \n"
19197 msgstr ""
19198
19199 #. type: verbatim
19200 #: ../fish/guestfish.pod:50
19201 #, no-wrap
19202 msgid ""
19203 " Type: 'help' for a list of commands\n"
19204 "       'man' to read the manual\n"
19205 "       'quit' to quit the shell\n"
19206 " \n"
19207 msgstr ""
19208
19209 #. type: verbatim
19210 #: ../fish/guestfish.pod:54
19211 #, no-wrap
19212 msgid ""
19213 " ><fs> add-ro disk.img\n"
19214 " ><fs> run\n"
19215 " ><fs> list-filesystems\n"
19216 " /dev/sda1: ext4\n"
19217 " /dev/vg_guest/lv_root: ext4\n"
19218 " /dev/vg_guest/lv_swap: swap\n"
19219 " ><fs> mount /dev/vg_guest/lv_root /\n"
19220 " ><fs> cat /etc/fstab\n"
19221 " # /etc/fstab\n"
19222 " # Created by anaconda\n"
19223 " [...]\n"
19224 " ><fs> exit\n"
19225 "\n"
19226 msgstr ""
19227
19228 #. type: =head2
19229 #: ../fish/guestfish.pod:67
19230 msgid "From shell scripts"
19231 msgstr ""
19232
19233 #. type: textblock
19234 #: ../fish/guestfish.pod:69
19235 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19236 msgstr ""
19237
19238 #. type: verbatim
19239 #: ../fish/guestfish.pod:71
19240 #, no-wrap
19241 msgid ""
19242 " guestfish <<_EOF_\n"
19243 " add disk.img\n"
19244 " run\n"
19245 " mount /dev/vg_guest/lv_root /\n"
19246 " write /etc/motd \"Welcome, new users\"\n"
19247 " _EOF_\n"
19248 "\n"
19249 msgstr ""
19250
19251 #. type: textblock
19252 #: ../fish/guestfish.pod:78
19253 msgid "List the LVM logical volumes in a disk image:"
19254 msgstr ""
19255
19256 #. type: verbatim
19257 #: ../fish/guestfish.pod:80
19258 #, no-wrap
19259 msgid ""
19260 " guestfish -a disk.img --ro <<_EOF_\n"
19261 " run\n"
19262 " lvs\n"
19263 " _EOF_\n"
19264 "\n"
19265 msgstr ""
19266
19267 #. type: textblock
19268 #: ../fish/guestfish.pod:85
19269 msgid "List all the filesystems in a disk image:"
19270 msgstr ""
19271
19272 #. type: verbatim
19273 #: ../fish/guestfish.pod:87
19274 #, no-wrap
19275 msgid ""
19276 " guestfish -a disk.img --ro <<_EOF_\n"
19277 " run\n"
19278 " list-filesystems\n"
19279 " _EOF_\n"
19280 "\n"
19281 msgstr ""
19282
19283 #. type: =head2
19284 #: ../fish/guestfish.pod:92
19285 msgid "On one command line"
19286 msgstr ""
19287
19288 #. type: textblock
19289 #: ../fish/guestfish.pod:94
19290 msgid "Update C</etc/resolv.conf> in a guest:"
19291 msgstr ""
19292
19293 #. type: verbatim
19294 #: ../fish/guestfish.pod:96
19295 #, no-wrap
19296 msgid ""
19297 " guestfish \\\n"
19298 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19299 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19300 "\n"
19301 msgstr ""
19302
19303 #. type: textblock
19304 #: ../fish/guestfish.pod:100
19305 msgid "Edit C</boot/grub/grub.conf> interactively:"
19306 msgstr ""
19307
19308 #. type: verbatim
19309 #: ../fish/guestfish.pod:102
19310 #, no-wrap
19311 msgid ""
19312 " guestfish --rw --add disk.img \\\n"
19313 "   --mount /dev/vg_guest/lv_root \\\n"
19314 "   --mount /dev/sda1:/boot \\\n"
19315 "   edit /boot/grub/grub.conf\n"
19316 "\n"
19317 msgstr ""
19318
19319 #. type: =head2
19320 #: ../fish/guestfish.pod:107
19321 msgid "Mount disks automatically"
19322 msgstr ""
19323
19324 #. type: textblock
19325 #: ../fish/guestfish.pod:109
19326 msgid ""
19327 "Use the I<-i> option to automatically mount the disks from a virtual "
19328 "machine:"
19329 msgstr ""
19330
19331 #. type: verbatim
19332 #: ../fish/guestfish.pod:112
19333 #, no-wrap
19334 msgid ""
19335 " guestfish --ro -a disk.img -i cat /etc/group\n"
19336 "\n"
19337 msgstr ""
19338
19339 #. type: verbatim
19340 #: ../fish/guestfish.pod:114
19341 #, no-wrap
19342 msgid ""
19343 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19344 "\n"
19345 msgstr ""
19346
19347 #. type: textblock
19348 #: ../fish/guestfish.pod:116
19349 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19350 msgstr ""
19351
19352 #. type: verbatim
19353 #: ../fish/guestfish.pod:118
19354 #, no-wrap
19355 msgid ""
19356 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19357 "\n"
19358 msgstr ""
19359
19360 #. type: =head2
19361 #: ../fish/guestfish.pod:120
19362 msgid "As a script interpreter"
19363 msgstr ""
19364
19365 #. type: textblock
19366 #: ../fish/guestfish.pod:122
19367 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19368 msgstr ""
19369
19370 #. type: verbatim
19371 #: ../fish/guestfish.pod:124
19372 #, no-wrap
19373 msgid ""
19374 " #!/usr/bin/guestfish -f\n"
19375 " sparse test1.img 100M\n"
19376 " run\n"
19377 " part-disk /dev/sda mbr\n"
19378 " mkfs ext2 /dev/sda1\n"
19379 "\n"
19380 msgstr ""
19381
19382 #. type: =head2
19383 #: ../fish/guestfish.pod:130
19384 msgid "Start with a prepared disk"
19385 msgstr ""
19386
19387 #. type: textblock
19388 #: ../fish/guestfish.pod:132
19389 msgid ""
19390 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19391 "single ext2-formatted partition:"
19392 msgstr ""
19393
19394 #. type: verbatim
19395 #: ../fish/guestfish.pod:135
19396 #, no-wrap
19397 msgid ""
19398 " guestfish -N fs\n"
19399 "\n"
19400 msgstr ""
19401
19402 #. type: textblock
19403 #: ../fish/guestfish.pod:137
19404 msgid "To list what is available do:"
19405 msgstr ""
19406
19407 #. type: verbatim
19408 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
19409 #, no-wrap
19410 msgid ""
19411 " guestfish -N help | less\n"
19412 "\n"
19413 msgstr ""
19414
19415 #. type: =head2
19416 #: ../fish/guestfish.pod:141
19417 msgid "Remote control"
19418 msgstr ""
19419
19420 #. type: verbatim
19421 #: ../fish/guestfish.pod:143
19422 #, no-wrap
19423 msgid ""
19424 " eval \"`guestfish --listen`\"\n"
19425 " guestfish --remote add-ro disk.img\n"
19426 " guestfish --remote run\n"
19427 " guestfish --remote lvs\n"
19428 "\n"
19429 msgstr ""
19430
19431 #. type: =head1
19432 #: ../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
19433 msgid "OPTIONS"
19434 msgstr ""
19435
19436 #. type: =item
19437 #: ../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
19438 msgid "B<--help>"
19439 msgstr ""
19440
19441 #. type: textblock
19442 #: ../fish/guestfish.pod:154
19443 msgid "Displays general help on options."
19444 msgstr ""
19445
19446 #. type: =item
19447 #: ../fish/guestfish.pod:156
19448 msgid "B<-h>"
19449 msgstr ""
19450
19451 #. type: =item
19452 #: ../fish/guestfish.pod:158
19453 msgid "B<--cmd-help>"
19454 msgstr ""
19455
19456 #. type: textblock
19457 #: ../fish/guestfish.pod:160
19458 msgid "Lists all available guestfish commands."
19459 msgstr ""
19460
19461 #. type: =item
19462 #: ../fish/guestfish.pod:162
19463 msgid "B<-h cmd>"
19464 msgstr ""
19465
19466 #. type: =item
19467 #: ../fish/guestfish.pod:164
19468 msgid "B<--cmd-help cmd>"
19469 msgstr ""
19470
19471 #. type: textblock
19472 #: ../fish/guestfish.pod:166
19473 msgid "Displays detailed help on a single command C<cmd>."
19474 msgstr ""
19475
19476 #. type: =item
19477 #: ../fish/guestfish.pod:168
19478 msgid "B<-a image>"
19479 msgstr ""
19480
19481 #. type: =item
19482 #: ../fish/guestfish.pod:170
19483 msgid "B<--add image>"
19484 msgstr ""
19485
19486 #. type: textblock
19487 #: ../fish/guestfish.pod:172
19488 msgid "Add a block device or virtual machine image to the shell."
19489 msgstr ""
19490
19491 #. type: textblock
19492 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
19493 msgid ""
19494 "The format of the disk image is auto-detected.  To override this and force a "
19495 "particular format use the I<--format=..> option."
19496 msgstr ""
19497
19498 #. type: textblock
19499 #: ../fish/guestfish.pod:177
19500 msgid ""
19501 "Using this flag is mostly equivalent to using the C<add> command, with "
19502 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19503 "the I<--format=...> flag was given."
19504 msgstr ""
19505
19506 #. type: =item
19507 #: ../fish/guestfish.pod:181
19508 msgid "B<-c URI>"
19509 msgstr ""
19510
19511 #. type: =item
19512 #: ../fish/guestfish.pod:183
19513 msgid "B<--connect URI>"
19514 msgstr ""
19515
19516 #. type: textblock
19517 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
19518 msgid ""
19519 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19520 "URI to use.  The default is to use the default libvirt connection."
19521 msgstr ""
19522
19523 #. type: =item
19524 #: ../fish/guestfish.pod:189
19525 msgid "B<--csh>"
19526 msgstr ""
19527
19528 #. type: textblock
19529 #: ../fish/guestfish.pod:191
19530 msgid ""
19531 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19532 "section L</REMOTE CONTROL AND CSH> below."
19533 msgstr ""
19534
19535 #. type: =item
19536 #: ../fish/guestfish.pod:194
19537 msgid "B<-d libvirt-domain>"
19538 msgstr ""
19539
19540 #. type: =item
19541 #: ../fish/guestfish.pod:196
19542 msgid "B<--domain libvirt-domain>"
19543 msgstr ""
19544
19545 #. type: textblock
19546 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
19547 msgid ""
19548 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19549 "used, then any libvirt domain can be used.  However in write mode, only "
19550 "libvirt domains which are shut down can be named here."
19551 msgstr ""
19552
19553 #. type: textblock
19554 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
19555 msgid "Domain UUIDs can be used instead of names."
19556 msgstr ""
19557
19558 #. type: textblock
19559 #: ../fish/guestfish.pod:204
19560 msgid ""
19561 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19562 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19563 "if the I<--format:...> flag was given."
19564 msgstr ""
19565
19566 #. type: =item
19567 #: ../fish/guestfish.pod:208
19568 msgid "B<-D>"
19569 msgstr ""
19570
19571 #. type: =item
19572 #: ../fish/guestfish.pod:210
19573 msgid "B<--no-dest-paths>"
19574 msgstr ""
19575
19576 #. type: textblock
19577 #: ../fish/guestfish.pod:212
19578 msgid ""
19579 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19580 "to hit the tab key to complete paths on the guest filesystem, but this "
19581 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19582 "allow this feature to be disabled."
19583 msgstr ""
19584
19585 #. type: =item
19586 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
19587 msgid "B<--echo-keys>"
19588 msgstr ""
19589
19590 #. type: textblock
19591 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
19592 msgid ""
19593 "When prompting for keys and passphrases, guestfish normally turns echoing "
19594 "off so you cannot see what you are typing.  If you are not worried about "
19595 "Tempest attacks and there is no one else in the room you can specify this "
19596 "flag to see what you are typing."
19597 msgstr ""
19598
19599 #. type: =item
19600 #: ../fish/guestfish.pod:224
19601 msgid "B<-f file>"
19602 msgstr ""
19603
19604 #. type: =item
19605 #: ../fish/guestfish.pod:226
19606 msgid "B<--file file>"
19607 msgstr ""
19608
19609 #. type: textblock
19610 #: ../fish/guestfish.pod:228
19611 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19612 msgstr ""
19613
19614 #. type: verbatim
19615 #: ../fish/guestfish.pod:231
19616 #, no-wrap
19617 msgid ""
19618 " #!/usr/bin/guestfish -f\n"
19619 "\n"
19620 msgstr ""
19621
19622 #. type: =item
19623 #: ../fish/guestfish.pod:233
19624 msgid "B<--format=raw|qcow2|..>"
19625 msgstr ""
19626
19627 #. type: =item
19628 #: ../fish/guestfish.pod:235
19629 msgid "B<--format>"
19630 msgstr ""
19631
19632 #. type: textblock
19633 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
19634 msgid ""
19635 "The default for the I<-a> option is to auto-detect the format of the disk "
19636 "image.  Using this forces the disk format for I<-a> options which follow on "
19637 "the command line.  Using I<--format> with no argument switches back to "
19638 "auto-detection for subsequent I<-a> options."
19639 msgstr ""
19640
19641 #. type: verbatim
19642 #: ../fish/guestfish.pod:244
19643 #, no-wrap
19644 msgid ""
19645 " guestfish --format=raw -a disk.img\n"
19646 "\n"
19647 msgstr ""
19648
19649 #. type: textblock
19650 #: ../fish/guestfish.pod:246
19651 msgid "forces raw format (no auto-detection) for C<disk.img>."
19652 msgstr ""
19653
19654 #. type: verbatim
19655 #: ../fish/guestfish.pod:248
19656 #, no-wrap
19657 msgid ""
19658 " guestfish --format=raw -a disk.img --format -a another.img\n"
19659 "\n"
19660 msgstr ""
19661
19662 #. type: textblock
19663 #: ../fish/guestfish.pod:250
19664 msgid ""
19665 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
19666 "auto-detection for C<another.img>."
19667 msgstr ""
19668
19669 #. type: textblock
19670 #: ../fish/guestfish.pod:253
19671 msgid ""
19672 "If you have untrusted raw-format guest disk images, you should use this "
19673 "option to specify the disk format.  This avoids a possible security problem "
19674 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19675 msgstr ""
19676
19677 #. type: =item
19678 #: ../fish/guestfish.pod:258
19679 msgid "B<-i>"
19680 msgstr ""
19681
19682 #. type: =item
19683 #: ../fish/guestfish.pod:260
19684 msgid "B<--inspector>"
19685 msgstr ""
19686
19687 #. type: textblock
19688 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
19689 msgid ""
19690 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19691 "system and mount filesystems as they would be mounted on the real virtual "
19692 "machine."
19693 msgstr ""
19694
19695 #. type: textblock
19696 #: ../fish/guestfish.pod:266
19697 msgid "Typical usage is either:"
19698 msgstr ""
19699
19700 #. type: verbatim
19701 #: ../fish/guestfish.pod:268
19702 #, no-wrap
19703 msgid ""
19704 " guestfish -d myguest -i\n"
19705 "\n"
19706 msgstr ""
19707
19708 #. type: textblock
19709 #: ../fish/guestfish.pod:270
19710 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19711 msgstr ""
19712
19713 #. type: verbatim
19714 #: ../fish/guestfish.pod:272
19715 #, no-wrap
19716 msgid ""
19717 " guestfish --ro -d myguest -i\n"
19718 "\n"
19719 msgstr ""
19720
19721 #. type: textblock
19722 #: ../fish/guestfish.pod:274
19723 msgid "(for active domains, readonly), or specify the block device directly:"
19724 msgstr ""
19725
19726 #. type: verbatim
19727 #: ../fish/guestfish.pod:276
19728 #, no-wrap
19729 msgid ""
19730 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19731 "\n"
19732 msgstr ""
19733
19734 #. type: textblock
19735 #: ../fish/guestfish.pod:278
19736 msgid ""
19737 "Note that the command line syntax changed slightly over older versions of "
19738 "guestfish.  You can still use the old syntax:"
19739 msgstr ""
19740
19741 #. type: verbatim
19742 #: ../fish/guestfish.pod:281
19743 #, no-wrap
19744 msgid ""
19745 " guestfish [--ro] -i disk.img\n"
19746 "\n"
19747 msgstr ""
19748
19749 #. type: verbatim
19750 #: ../fish/guestfish.pod:283
19751 #, no-wrap
19752 msgid ""
19753 " guestfish [--ro] -i libvirt-domain\n"
19754 "\n"
19755 msgstr ""
19756
19757 #. type: textblock
19758 #: ../fish/guestfish.pod:285
19759 msgid ""
19760 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19761 "then using other commands to mount the filesystems that were found."
19762 msgstr ""
19763
19764 #. type: =item
19765 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
19766 msgid "B<--keys-from-stdin>"
19767 msgstr ""
19768
19769 #. type: textblock
19770 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
19771 msgid ""
19772 "Read key or passphrase parameters from stdin.  The default is to try to read "
19773 "passphrases from the user by opening C</dev/tty>."
19774 msgstr ""
19775
19776 #. type: =item
19777 #: ../fish/guestfish.pod:294
19778 msgid "B<--listen>"
19779 msgstr ""
19780
19781 #. type: textblock
19782 #: ../fish/guestfish.pod:296
19783 msgid ""
19784 "Fork into the background and listen for remote commands.  See section "
19785 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
19786 msgstr ""
19787
19788 #. type: =item
19789 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
19790 msgid "B<--live>"
19791 msgstr ""
19792
19793 #. type: textblock
19794 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
19795 msgid ""
19796 "Connect to a live virtual machine.  (Experimental, see "
19797 "L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
19798 msgstr ""
19799
19800 #. type: =item
19801 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
19802 msgid "B<-m dev[:mountpoint[:options]]>"
19803 msgstr ""
19804
19805 #. type: =item
19806 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
19807 msgid "B<--mount dev[:mountpoint[:options]]>"
19808 msgstr ""
19809
19810 #. type: textblock
19811 #: ../fish/guestfish.pod:308
19812 msgid "Mount the named partition or logical volume on the given mountpoint."
19813 msgstr ""
19814
19815 #. type: textblock
19816 #: ../fish/guestfish.pod:310
19817 msgid "If the mountpoint is omitted, it defaults to C</>."
19818 msgstr ""
19819
19820 #. type: textblock
19821 #: ../fish/guestfish.pod:312
19822 msgid "You have to mount something on C</> before most commands will work."
19823 msgstr ""
19824
19825 #. type: textblock
19826 #: ../fish/guestfish.pod:314
19827 msgid ""
19828 "If any I<-m> or I<--mount> options are given, the guest is automatically "
19829 "launched."
19830 msgstr ""
19831
19832 #. type: textblock
19833 #: ../fish/guestfish.pod:317
19834 msgid ""
19835 "If you don't know what filesystems a disk image contains, you can either run "
19836 "guestfish without this option, then list the partitions, filesystems and LVs "
19837 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
19838 "commands), or you can use the L<virt-filesystems(1)> program."
19839 msgstr ""
19840
19841 #. type: textblock
19842 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
19843 msgid ""
19844 "The third (and rarely used) part of the mount parameter is the list of mount "
19845 "options used to mount the underlying filesystem.  If this is not given, then "
19846 "the mount options are either the empty string or C<ro> (the latter if the "
19847 "I<--ro> flag is used).  By specifying the mount options, you override this "
19848 "default choice.  Probably the only time you would use this is to enable ACLs "
19849 "and/or extended attributes if the filesystem can support them:"
19850 msgstr ""
19851
19852 #. type: verbatim
19853 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
19854 #, no-wrap
19855 msgid ""
19856 " -m /dev/sda1:/:acl,user_xattr\n"
19857 "\n"
19858 msgstr ""
19859
19860 #. type: textblock
19861 #: ../fish/guestfish.pod:333
19862 msgid "Using this flag is equivalent to using the C<mount-options> command."
19863 msgstr ""
19864
19865 #. type: =item
19866 #: ../fish/guestfish.pod:335
19867 msgid "B<-n>"
19868 msgstr ""
19869
19870 #. type: =item
19871 #: ../fish/guestfish.pod:337
19872 msgid "B<--no-sync>"
19873 msgstr ""
19874
19875 #. type: textblock
19876 #: ../fish/guestfish.pod:339
19877 msgid ""
19878 "Disable autosync.  This is enabled by default.  See the discussion of "
19879 "autosync in the L<guestfs(3)> manpage."
19880 msgstr ""
19881
19882 #. type: =item
19883 #: ../fish/guestfish.pod:342
19884 msgid "B<-N type>"
19885 msgstr ""
19886
19887 #. type: =item
19888 #: ../fish/guestfish.pod:344
19889 msgid "B<--new type>"
19890 msgstr ""
19891
19892 #. type: =item
19893 #: ../fish/guestfish.pod:346
19894 msgid "B<-N help>"
19895 msgstr ""
19896
19897 #. type: textblock
19898 #: ../fish/guestfish.pod:348
19899 msgid ""
19900 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
19901 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
19902 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
19903 "IMAGES> below."
19904 msgstr ""
19905
19906 #. type: =item
19907 #: ../fish/guestfish.pod:353
19908 msgid "B<--progress-bars>"
19909 msgstr ""
19910
19911 #. type: textblock
19912 #: ../fish/guestfish.pod:355
19913 msgid "Enable progress bars, even when guestfish is used non-interactively."
19914 msgstr ""
19915
19916 #. type: textblock
19917 #: ../fish/guestfish.pod:357
19918 msgid ""
19919 "Progress bars are enabled by default when guestfish is used as an "
19920 "interactive shell."
19921 msgstr ""
19922
19923 #. type: =item
19924 #: ../fish/guestfish.pod:360
19925 msgid "B<--no-progress-bars>"
19926 msgstr ""
19927
19928 #. type: textblock
19929 #: ../fish/guestfish.pod:362
19930 msgid "Disable progress bars."
19931 msgstr ""
19932
19933 #. type: =item
19934 #: ../fish/guestfish.pod:364
19935 msgid "B<--remote[=pid]>"
19936 msgstr ""
19937
19938 #. type: textblock
19939 #: ../fish/guestfish.pod:366
19940 msgid ""
19941 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
19942 "CONTROL GUESTFISH OVER A SOCKET> below."
19943 msgstr ""
19944
19945 #. type: =item
19946 #: ../fish/guestfish.pod:369
19947 msgid "B<-r>"
19948 msgstr ""
19949
19950 #. type: =item
19951 #: ../fish/guestfish.pod:371
19952 msgid "B<--ro>"
19953 msgstr ""
19954
19955 #. type: textblock
19956 #: ../fish/guestfish.pod:373
19957 msgid ""
19958 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19959 "mounts are done read-only."
19960 msgstr ""
19961
19962 #. type: textblock
19963 #: ../fish/guestfish.pod:376
19964 msgid ""
19965 "The option must always be used if the disk image or virtual machine might be "
19966 "running, and is generally recommended in cases where you don't need write "
19967 "access to the disk."
19968 msgstr ""
19969
19970 #. type: textblock
19971 #: ../fish/guestfish.pod:380
19972 msgid ""
19973 "Note that prepared disk images created with I<-N> are not affected by this "
19974 "option.  Also commands like C<add> are not affected - you have to specify "
19975 "the C<readonly:true> option explicitly if you need it."
19976 msgstr ""
19977
19978 #. type: textblock
19979 #: ../fish/guestfish.pod:384
19980 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
19981 msgstr ""
19982
19983 #. type: =item
19984 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
19985 msgid "B<--selinux>"
19986 msgstr ""
19987
19988 #. type: textblock
19989 #: ../fish/guestfish.pod:388
19990 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
19991 msgstr ""
19992
19993 #. type: =item
19994 #: ../fish/guestfish.pod:390
19995 msgid "B<-v>"
19996 msgstr ""
19997
19998 #. type: =item
19999 #: ../fish/guestfish.pod:392
20000 msgid "B<--verbose>"
20001 msgstr ""
20002
20003 #. type: textblock
20004 #: ../fish/guestfish.pod:394
20005 msgid ""
20006 "Enable very verbose messages.  This is particularly useful if you find a "
20007 "bug."
20008 msgstr ""
20009
20010 #. type: =item
20011 #: ../fish/guestfish.pod:397
20012 msgid "B<-V>"
20013 msgstr ""
20014
20015 #. type: =item
20016 #: ../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
20017 msgid "B<--version>"
20018 msgstr ""
20019
20020 #. type: textblock
20021 #: ../fish/guestfish.pod:401
20022 msgid "Display the guestfish / libguestfs version number and exit."
20023 msgstr ""
20024
20025 #. type: =item
20026 #: ../fish/guestfish.pod:403
20027 msgid "B<-w>"
20028 msgstr ""
20029
20030 #. type: =item
20031 #: ../fish/guestfish.pod:405
20032 msgid "B<--rw>"
20033 msgstr ""
20034
20035 #. type: textblock
20036 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
20037 msgid ""
20038 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20039 "mounts are done read-write."
20040 msgstr ""
20041
20042 #. type: textblock
20043 #: ../fish/guestfish.pod:410
20044 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20045 msgstr ""
20046
20047 #. type: =item
20048 #: ../fish/guestfish.pod:412
20049 msgid "B<-x>"
20050 msgstr ""
20051
20052 #. type: textblock
20053 #: ../fish/guestfish.pod:414
20054 msgid "Echo each command before executing it."
20055 msgstr ""
20056
20057 #. type: =head1
20058 #: ../fish/guestfish.pod:418
20059 msgid "COMMANDS ON COMMAND LINE"
20060 msgstr ""
20061
20062 #. type: textblock
20063 #: ../fish/guestfish.pod:420
20064 msgid "Any additional (non-option) arguments are treated as commands to execute."
20065 msgstr ""
20066
20067 #. type: textblock
20068 #: ../fish/guestfish.pod:423
20069 msgid ""
20070 "Commands to execute should be separated by a colon (C<:>), where the colon "
20071 "is a separate parameter.  Thus:"
20072 msgstr ""
20073
20074 #. type: verbatim
20075 #: ../fish/guestfish.pod:426
20076 #, no-wrap
20077 msgid ""
20078 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20079 "\n"
20080 msgstr ""
20081
20082 #. type: textblock
20083 #: ../fish/guestfish.pod:428
20084 msgid ""
20085 "If there are no additional arguments, then we enter a shell, either an "
20086 "interactive shell with a prompt (if the input is a terminal) or a "
20087 "non-interactive shell."
20088 msgstr ""
20089
20090 #. type: textblock
20091 #: ../fish/guestfish.pod:432
20092 msgid ""
20093 "In either command line mode or non-interactive shell, the first command that "
20094 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20095 "prompt) if a command fails, you can continue to enter commands."
20096 msgstr ""
20097
20098 #. type: =head1
20099 #: ../fish/guestfish.pod:437
20100 msgid "USING launch (OR run)"
20101 msgstr ""
20102
20103 #. type: textblock
20104 #: ../fish/guestfish.pod:439
20105 msgid ""
20106 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20107 "then launch it, then mount any disks you need, and finally issue "
20108 "actions/commands.  So the general order of the day is:"
20109 msgstr ""
20110
20111 #. type: textblock
20112 #: ../fish/guestfish.pod:447
20113 msgid "add or -a/--add"
20114 msgstr ""
20115
20116 #. type: textblock
20117 #: ../fish/guestfish.pod:451
20118 msgid "launch (aka run)"
20119 msgstr ""
20120
20121 #. type: textblock
20122 #: ../fish/guestfish.pod:455
20123 msgid "mount or -m/--mount"
20124 msgstr ""
20125
20126 #. type: textblock
20127 #: ../fish/guestfish.pod:459
20128 msgid "any other commands"
20129 msgstr ""
20130
20131 #. type: textblock
20132 #: ../fish/guestfish.pod:463
20133 msgid ""
20134 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20135 "guest before mounting or performing any other commands."
20136 msgstr ""
20137
20138 #. type: textblock
20139 #: ../fish/guestfish.pod:466
20140 msgid ""
20141 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20142 "I<--new> options were given then C<run> is done automatically, simply "
20143 "because guestfish can't perform the action you asked for without doing this."
20144 msgstr ""
20145
20146 #. type: =head1
20147 #: ../fish/guestfish.pod:471
20148 msgid "OPENING DISKS FOR READ AND WRITE"
20149 msgstr ""
20150
20151 #. type: textblock
20152 #: ../fish/guestfish.pod:473
20153 msgid ""
20154 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20155 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20156 "I<-i> and I<-m> open disk images read-only or for writing."
20157 msgstr ""
20158
20159 #. type: textblock
20160 #: ../fish/guestfish.pod:478
20161 msgid ""
20162 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20163 "opening disk images supplied on the command line for write.  To open a disk "
20164 "image read-only you have to do I<-a image --ro>."
20165 msgstr ""
20166
20167 #. type: textblock
20168 #: ../fish/guestfish.pod:482
20169 msgid ""
20170 "This matters: If you accidentally open a live VM disk image writable then "
20171 "you will cause irreversible disk corruption."
20172 msgstr ""
20173
20174 #. type: textblock
20175 #: ../fish/guestfish.pod:485
20176 msgid ""
20177 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20178 "images will be opened read-only.  You will have to either specify "
20179 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20180 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20181 "access for disk images specified by those other command line options."
20182 msgstr ""
20183
20184 #. type: textblock
20185 #: ../fish/guestfish.pod:492
20186 msgid ""
20187 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20188 "which does nothing (it is already the default).  However it is highly "
20189 "recommended that you use this option to indicate that you need write access, "
20190 "and prepare your scripts for the day when this option will be required for "
20191 "write access."
20192 msgstr ""
20193
20194 #. type: textblock
20195 #: ../fish/guestfish.pod:498
20196 msgid ""
20197 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20198 "other libguestfs program apart from guestfish and guestmount."
20199 msgstr ""
20200
20201 #. type: =head1
20202 #: ../fish/guestfish.pod:501
20203 msgid "QUOTING"
20204 msgstr ""
20205
20206 #. type: textblock
20207 #: ../fish/guestfish.pod:503
20208 msgid ""
20209 "You can quote ordinary parameters using either single or double quotes.  For "
20210 "example:"
20211 msgstr ""
20212
20213 #. type: verbatim
20214 #: ../fish/guestfish.pod:506
20215 #, no-wrap
20216 msgid ""
20217 " add \"file with a space.img\"\n"
20218 "\n"
20219 msgstr ""
20220
20221 #. type: verbatim
20222 #: ../fish/guestfish.pod:508
20223 #, no-wrap
20224 msgid ""
20225 " rm '/file name'\n"
20226 "\n"
20227 msgstr ""
20228
20229 #. type: verbatim
20230 #: ../fish/guestfish.pod:510
20231 #, no-wrap
20232 msgid ""
20233 " rm '/\"'\n"
20234 "\n"
20235 msgstr ""
20236
20237 #. type: textblock
20238 #: ../fish/guestfish.pod:512
20239 msgid ""
20240 "A few commands require a list of strings to be passed.  For these, use a "
20241 "whitespace-separated list, enclosed in quotes.  Strings containing "
20242 "whitespace to be passed through must be enclosed in single quotes.  A "
20243 "literal single quote must be escaped with a backslash."
20244 msgstr ""
20245
20246 #. type: verbatim
20247 #: ../fish/guestfish.pod:517
20248 #, no-wrap
20249 msgid ""
20250 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20251 " command \"/bin/echo 'foo      bar'\"\n"
20252 " command \"/bin/echo \\'foo\\'\"\n"
20253 "\n"
20254 msgstr ""
20255
20256 #. type: =head1
20257 #: ../fish/guestfish.pod:521
20258 msgid "OPTIONAL ARGUMENTS"
20259 msgstr ""
20260
20261 #. type: textblock
20262 #: ../fish/guestfish.pod:523
20263 msgid ""
20264 "Some commands take optional arguments.  These arguments appear in this "
20265 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20266 msgstr ""
20267
20268 #. type: verbatim
20269 #: ../fish/guestfish.pod:527
20270 #, no-wrap
20271 msgid ""
20272 " add-drive-opts filename\n"
20273 "\n"
20274 msgstr ""
20275
20276 #. type: verbatim
20277 #: ../fish/guestfish.pod:529
20278 #, no-wrap
20279 msgid ""
20280 " add-drive-opts filename readonly:true\n"
20281 "\n"
20282 msgstr ""
20283
20284 #. type: verbatim
20285 #: ../fish/guestfish.pod:531
20286 #, no-wrap
20287 msgid ""
20288 " add-drive-opts filename format:qcow2 readonly:false\n"
20289 "\n"
20290 msgstr ""
20291
20292 #. type: textblock
20293 #: ../fish/guestfish.pod:533
20294 msgid ""
20295 "Each optional argument can appear at most once.  All optional arguments must "
20296 "appear after the required ones."
20297 msgstr ""
20298
20299 #. type: =head1
20300 #: ../fish/guestfish.pod:536
20301 msgid "NUMBERS"
20302 msgstr ""
20303
20304 #. type: textblock
20305 #: ../fish/guestfish.pod:538
20306 msgid "This section applies to all commands which can take integers as parameters."
20307 msgstr ""
20308
20309 #. type: =head2
20310 #: ../fish/guestfish.pod:541
20311 msgid "SIZE SUFFIX"
20312 msgstr ""
20313
20314 #. type: textblock
20315 #: ../fish/guestfish.pod:543
20316 msgid ""
20317 "When the command takes a parameter measured in bytes, you can use one of the "
20318 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20319 msgstr ""
20320
20321 #. type: =item
20322 #: ../fish/guestfish.pod:549
20323 msgid "B<k> or B<K> or B<KiB>"
20324 msgstr ""
20325
20326 #. type: textblock
20327 #: ../fish/guestfish.pod:551
20328 msgid "The size in kilobytes (multiplied by 1024)."
20329 msgstr ""
20330
20331 #. type: =item
20332 #: ../fish/guestfish.pod:553
20333 msgid "B<KB>"
20334 msgstr ""
20335
20336 #. type: textblock
20337 #: ../fish/guestfish.pod:555
20338 msgid "The size in SI 1000 byte units."
20339 msgstr ""
20340
20341 #. type: =item
20342 #: ../fish/guestfish.pod:557
20343 msgid "B<M> or B<MiB>"
20344 msgstr ""
20345
20346 #. type: textblock
20347 #: ../fish/guestfish.pod:559
20348 msgid "The size in megabytes (multiplied by 1048576)."
20349 msgstr ""
20350
20351 #. type: =item
20352 #: ../fish/guestfish.pod:561
20353 msgid "B<MB>"
20354 msgstr ""
20355
20356 #. type: textblock
20357 #: ../fish/guestfish.pod:563
20358 msgid "The size in SI 1000000 byte units."
20359 msgstr ""
20360
20361 #. type: =item
20362 #: ../fish/guestfish.pod:565
20363 msgid "B<G> or B<GiB>"
20364 msgstr ""
20365
20366 #. type: textblock
20367 #: ../fish/guestfish.pod:567
20368 msgid "The size in gigabytes (multiplied by 2**30)."
20369 msgstr ""
20370
20371 #. type: =item
20372 #: ../fish/guestfish.pod:569
20373 msgid "B<GB>"
20374 msgstr ""
20375
20376 #. type: textblock
20377 #: ../fish/guestfish.pod:571
20378 msgid "The size in SI 10**9 byte units."
20379 msgstr ""
20380
20381 #. type: =item
20382 #: ../fish/guestfish.pod:573
20383 msgid "B<T> or B<TiB>"
20384 msgstr ""
20385
20386 #. type: textblock
20387 #: ../fish/guestfish.pod:575
20388 msgid "The size in terabytes (multiplied by 2**40)."
20389 msgstr ""
20390
20391 #. type: =item
20392 #: ../fish/guestfish.pod:577
20393 msgid "B<TB>"
20394 msgstr ""
20395
20396 #. type: textblock
20397 #: ../fish/guestfish.pod:579
20398 msgid "The size in SI 10**12 byte units."
20399 msgstr ""
20400
20401 #. type: =item
20402 #: ../fish/guestfish.pod:581
20403 msgid "B<P> or B<PiB>"
20404 msgstr ""
20405
20406 #. type: textblock
20407 #: ../fish/guestfish.pod:583
20408 msgid "The size in petabytes (multiplied by 2**50)."
20409 msgstr ""
20410
20411 #. type: =item
20412 #: ../fish/guestfish.pod:585
20413 msgid "B<PB>"
20414 msgstr ""
20415
20416 #. type: textblock
20417 #: ../fish/guestfish.pod:587
20418 msgid "The size in SI 10**15 byte units."
20419 msgstr ""
20420
20421 #. type: =item
20422 #: ../fish/guestfish.pod:589
20423 msgid "B<E> or B<EiB>"
20424 msgstr ""
20425
20426 #. type: textblock
20427 #: ../fish/guestfish.pod:591
20428 msgid "The size in exabytes (multiplied by 2**60)."
20429 msgstr ""
20430
20431 #. type: =item
20432 #: ../fish/guestfish.pod:593
20433 msgid "B<EB>"
20434 msgstr ""
20435
20436 #. type: textblock
20437 #: ../fish/guestfish.pod:595
20438 msgid "The size in SI 10**18 byte units."
20439 msgstr ""
20440
20441 #. type: =item
20442 #: ../fish/guestfish.pod:597
20443 msgid "B<Z> or B<ZiB>"
20444 msgstr ""
20445
20446 #. type: textblock
20447 #: ../fish/guestfish.pod:599
20448 msgid "The size in zettabytes (multiplied by 2**70)."
20449 msgstr ""
20450
20451 #. type: =item
20452 #: ../fish/guestfish.pod:601
20453 msgid "B<ZB>"
20454 msgstr ""
20455
20456 #. type: textblock
20457 #: ../fish/guestfish.pod:603
20458 msgid "The size in SI 10**21 byte units."
20459 msgstr ""
20460
20461 #. type: =item
20462 #: ../fish/guestfish.pod:605
20463 msgid "B<Y> or B<YiB>"
20464 msgstr ""
20465
20466 #. type: textblock
20467 #: ../fish/guestfish.pod:607
20468 msgid "The size in yottabytes (multiplied by 2**80)."
20469 msgstr ""
20470
20471 #. type: =item
20472 #: ../fish/guestfish.pod:609
20473 msgid "B<YB>"
20474 msgstr ""
20475
20476 #. type: textblock
20477 #: ../fish/guestfish.pod:611
20478 msgid "The size in SI 10**24 byte units."
20479 msgstr ""
20480
20481 #. type: verbatim
20482 #: ../fish/guestfish.pod:617
20483 #, no-wrap
20484 msgid ""
20485 " truncate-size /file 1G\n"
20486 "\n"
20487 msgstr ""
20488
20489 #. type: textblock
20490 #: ../fish/guestfish.pod:619
20491 msgid "would truncate the file to 1 gigabyte."
20492 msgstr ""
20493
20494 #. type: textblock
20495 #: ../fish/guestfish.pod:621
20496 msgid ""
20497 "Be careful because a few commands take sizes in kilobytes or megabytes "
20498 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
20499 "Adding a suffix will probably not do what you expect."
20500 msgstr ""
20501
20502 #. type: =head2
20503 #: ../fish/guestfish.pod:625
20504 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20505 msgstr ""
20506
20507 #. type: textblock
20508 #: ../fish/guestfish.pod:627
20509 msgid ""
20510 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20511 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20512 msgstr ""
20513
20514 #. type: verbatim
20515 #: ../fish/guestfish.pod:630
20516 #, no-wrap
20517 msgid ""
20518 " 1234      decimal number 1234\n"
20519 " 02322     octal number, equivalent to decimal 1234\n"
20520 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20521 "\n"
20522 msgstr ""
20523
20524 #. type: textblock
20525 #: ../fish/guestfish.pod:634
20526 msgid ""
20527 "When using the C<chmod> command, you almost always want to specify an octal "
20528 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20529 "L<chmod(1)> program):"
20530 msgstr ""
20531
20532 #. type: verbatim
20533 #: ../fish/guestfish.pod:638
20534 #, no-wrap
20535 msgid ""
20536 " chmod 0777 /public  # OK\n"
20537 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20538 "\n"
20539 msgstr ""
20540
20541 #. type: textblock
20542 #: ../fish/guestfish.pod:641
20543 msgid ""
20544 "Commands that return numbers usually print them in decimal, but some "
20545 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20546 "octal, preceeded by C<0>)."
20547 msgstr ""
20548
20549 #. type: =head1
20550 #: ../fish/guestfish.pod:645
20551 msgid "WILDCARDS AND GLOBBING"
20552 msgstr ""
20553
20554 #. type: textblock
20555 #: ../fish/guestfish.pod:647
20556 msgid ""
20557 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20558 "(globbing) by default.  So for example the following will not do what you "
20559 "expect:"
20560 msgstr ""
20561
20562 #. type: verbatim
20563 #: ../fish/guestfish.pod:651
20564 #, no-wrap
20565 msgid ""
20566 " rm-rf /home/*\n"
20567 "\n"
20568 msgstr ""
20569
20570 #. type: textblock
20571 #: ../fish/guestfish.pod:653
20572 msgid ""
20573 "Assuming you don't have a directory called literally C</home/*> then the "
20574 "above command will return an error."
20575 msgstr ""
20576
20577 #. type: textblock
20578 #: ../fish/guestfish.pod:656
20579 msgid "To perform wildcard expansion, use the C<glob> command."
20580 msgstr ""
20581
20582 #. type: verbatim
20583 #: ../fish/guestfish.pod:658
20584 #, no-wrap
20585 msgid ""
20586 " glob rm-rf /home/*\n"
20587 "\n"
20588 msgstr ""
20589
20590 #. type: textblock
20591 #: ../fish/guestfish.pod:660
20592 msgid ""
20593 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20594 "many times), equivalent to:"
20595 msgstr ""
20596
20597 #. type: verbatim
20598 #: ../fish/guestfish.pod:663
20599 #, no-wrap
20600 msgid ""
20601 " rm-rf /home/jim\n"
20602 " rm-rf /home/joe\n"
20603 " rm-rf /home/mary\n"
20604 "\n"
20605 msgstr ""
20606
20607 #. type: textblock
20608 #: ../fish/guestfish.pod:667
20609 msgid "C<glob> only works on simple guest paths and not on device names."
20610 msgstr ""
20611
20612 #. type: textblock
20613 #: ../fish/guestfish.pod:669
20614 msgid ""
20615 "If you have several parameters, each containing a wildcard, then glob will "
20616 "perform a Cartesian product."
20617 msgstr ""
20618
20619 #. type: =head1
20620 #: ../fish/guestfish.pod:672
20621 msgid "COMMENTS"
20622 msgstr ""
20623
20624 #. type: textblock
20625 #: ../fish/guestfish.pod:674
20626 msgid ""
20627 "Any line which starts with a I<#> character is treated as a comment and "
20628 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20629 "a command.  For example:"
20630 msgstr ""
20631
20632 #. type: verbatim
20633 #: ../fish/guestfish.pod:678
20634 #, no-wrap
20635 msgid ""
20636 " # this is a comment\n"
20637 "         # this is a comment\n"
20638 " foo # NOT a comment\n"
20639 "\n"
20640 msgstr ""
20641
20642 #. type: textblock
20643 #: ../fish/guestfish.pod:682
20644 msgid "Blank lines are also ignored."
20645 msgstr ""
20646
20647 #. type: =head1
20648 #: ../fish/guestfish.pod:684
20649 msgid "RUNNING COMMANDS LOCALLY"
20650 msgstr ""
20651
20652 #. type: textblock
20653 #: ../fish/guestfish.pod:686
20654 msgid ""
20655 "Any line which starts with a I<!> character is treated as a command sent to "
20656 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20657 msgstr ""
20658
20659 #. type: verbatim
20660 #: ../fish/guestfish.pod:690
20661 #, no-wrap
20662 msgid ""
20663 " !mkdir local\n"
20664 " tgz-out /remote local/remote-data.tar.gz\n"
20665 "\n"
20666 msgstr ""
20667
20668 #. type: textblock
20669 #: ../fish/guestfish.pod:693
20670 msgid ""
20671 "will create a directory C<local> on the host, and then export the contents "
20672 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20673 "(See C<tgz-out>)."
20674 msgstr ""
20675
20676 #. type: textblock
20677 #: ../fish/guestfish.pod:697
20678 msgid ""
20679 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20680 "effect, due to the way that subprocesses work in Unix."
20681 msgstr ""
20682
20683 #. type: =head2
20684 #: ../fish/guestfish.pod:700
20685 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20686 msgstr ""
20687
20688 #. type: textblock
20689 #: ../fish/guestfish.pod:702
20690 msgid ""
20691 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20692 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20693 "and executed as guestfish commands."
20694 msgstr ""
20695
20696 #. type: textblock
20697 #: ../fish/guestfish.pod:706
20698 msgid ""
20699 "Thus you can use shell script to construct arbitrary guestfish commands "
20700 "which are then parsed by guestfish."
20701 msgstr ""
20702
20703 #. type: textblock
20704 #: ../fish/guestfish.pod:709
20705 msgid ""
20706 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20707 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20708 "if we use a shell script to create the guestfish commands for us:"
20709 msgstr ""
20710
20711 #. type: verbatim
20712 #: ../fish/guestfish.pod:714
20713 #, no-wrap
20714 msgid ""
20715 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20716 "\n"
20717 msgstr ""
20718
20719 #. type: textblock
20720 #: ../fish/guestfish.pod:716
20721 msgid "or with names like C</foo.001>:"
20722 msgstr ""
20723
20724 #. type: verbatim
20725 #: ../fish/guestfish.pod:718
20726 #, no-wrap
20727 msgid ""
20728 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20729 "\n"
20730 msgstr ""
20731
20732 #. type: textblock
20733 #: ../fish/guestfish.pod:720
20734 msgid ""
20735 "When using guestfish interactively it can be helpful to just run the shell "
20736 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20737 "ordinary I<!> local command), see what guestfish commands it would run, and "
20738 "when you are happy with those prepend the C<E<lt>> character to run the "
20739 "guestfish commands for real."
20740 msgstr ""
20741
20742 #. type: =head1
20743 #: ../fish/guestfish.pod:726
20744 msgid "PIPES"
20745 msgstr ""
20746
20747 #. type: textblock
20748 #: ../fish/guestfish.pod:728
20749 msgid ""
20750 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20751 "command (a guestfish command) to the second command (any host command).  For "
20752 "example:"
20753 msgstr ""
20754
20755 #. type: verbatim
20756 #: ../fish/guestfish.pod:732
20757 #, no-wrap
20758 msgid ""
20759 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20760 "\n"
20761 msgstr ""
20762
20763 #. type: textblock
20764 #: ../fish/guestfish.pod:734
20765 msgid ""
20766 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20767 "program).  The above command would list all accounts in the guest filesystem "
20768 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20769 msgstr ""
20770
20771 #. type: verbatim
20772 #: ../fish/guestfish.pod:739
20773 #, no-wrap
20774 msgid ""
20775 " hexdump /bin/ls | head\n"
20776 " list-devices | tail -1\n"
20777 " tgz-out / - | tar ztf -\n"
20778 "\n"
20779 msgstr ""
20780
20781 #. type: textblock
20782 #: ../fish/guestfish.pod:743
20783 msgid ""
20784 "The space before the pipe symbol is required, any space after the pipe "
20785 "symbol is optional.  Everything after the pipe symbol is just passed "
20786 "straight to the host shell, so it can contain redirections, globs and "
20787 "anything else that makes sense on the host side."
20788 msgstr ""
20789
20790 #. type: textblock
20791 #: ../fish/guestfish.pod:748
20792 msgid ""
20793 "To use a literal argument which begins with a pipe symbol, you have to quote "
20794 "it, eg:"
20795 msgstr ""
20796
20797 #. type: verbatim
20798 #: ../fish/guestfish.pod:751
20799 #, no-wrap
20800 msgid ""
20801 " echo \"|\"\n"
20802 "\n"
20803 msgstr ""
20804
20805 #. type: =head1
20806 #: ../fish/guestfish.pod:753
20807 msgid "HOME DIRECTORIES"
20808 msgstr ""
20809
20810 #. type: textblock
20811 #: ../fish/guestfish.pod:755
20812 msgid ""
20813 "If a parameter starts with the character C<~> then the tilde may be expanded "
20814 "as a home directory path (either C<~> for the current user's home directory, "
20815 "or C<~user> for another user)."
20816 msgstr ""
20817
20818 #. type: textblock
20819 #: ../fish/guestfish.pod:759
20820 msgid ""
20821 "Note that home directory expansion happens for users known I<on the host>, "
20822 "not in the guest filesystem."
20823 msgstr ""
20824
20825 #. type: textblock
20826 #: ../fish/guestfish.pod:762
20827 msgid ""
20828 "To use a literal argument which begins with a tilde, you have to quote it, "
20829 "eg:"
20830 msgstr ""
20831
20832 #. type: verbatim
20833 #: ../fish/guestfish.pod:765
20834 #, no-wrap
20835 msgid ""
20836 " echo \"~\"\n"
20837 "\n"
20838 msgstr ""
20839
20840 #. type: textblock
20841 #: ../fish/guestfish.pod:769
20842 msgid ""
20843 "Libguestfs has some support for Linux guests encrypted according to the "
20844 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
20845 "disk encryption systems used by modern Linux guests.  Currently only "
20846 "LVM-on-LUKS is supported."
20847 msgstr ""
20848
20849 #. type: textblock
20850 #: ../fish/guestfish.pod:774
20851 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
20852 msgstr ""
20853
20854 #. type: verbatim
20855 #: ../fish/guestfish.pod:776
20856 #, no-wrap
20857 msgid ""
20858 " ><fs> vfs-type /dev/sda2\n"
20859 " crypto_LUKS\n"
20860 "\n"
20861 msgstr ""
20862
20863 #. type: textblock
20864 #: ../fish/guestfish.pod:779
20865 msgid ""
20866 "Then open those devices using L</luks-open>.  This creates a device-mapper "
20867 "device called C</dev/mapper/luksdev>."
20868 msgstr ""
20869
20870 #. type: verbatim
20871 #: ../fish/guestfish.pod:782
20872 #, no-wrap
20873 msgid ""
20874 " ><fs> luks-open /dev/sda2 luksdev\n"
20875 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
20876 "\n"
20877 msgstr ""
20878
20879 #. type: textblock
20880 #: ../fish/guestfish.pod:785
20881 msgid ""
20882 "Finally you have to tell LVM to scan for volume groups on the newly created "
20883 "mapper device:"
20884 msgstr ""
20885
20886 #. type: verbatim
20887 #: ../fish/guestfish.pod:788
20888 #, no-wrap
20889 msgid ""
20890 " vgscan\n"
20891 " vg-activate-all true\n"
20892 "\n"
20893 msgstr ""
20894
20895 #. type: textblock
20896 #: ../fish/guestfish.pod:791
20897 msgid "The logical volume(s) can now be mounted in the usual way."
20898 msgstr ""
20899
20900 #. type: textblock
20901 #: ../fish/guestfish.pod:793
20902 msgid ""
20903 "Before closing a LUKS device you must unmount any logical volumes on it and "
20904 "deactivate the volume groups by calling C<vg-activate false VG> on each "
20905 "one.  Then you can close the mapper device:"
20906 msgstr ""
20907
20908 #. type: verbatim
20909 #: ../fish/guestfish.pod:797
20910 #, no-wrap
20911 msgid ""
20912 " vg-activate false /dev/VG\n"
20913 " luks-close /dev/mapper/luksdev\n"
20914 "\n"
20915 msgstr ""
20916
20917 #. type: =head1
20918 #: ../fish/guestfish.pod:800
20919 msgid "WINDOWS PATHS"
20920 msgstr ""
20921
20922 #. type: textblock
20923 #: ../fish/guestfish.pod:802
20924 msgid ""
20925 "If a path is prefixed with C<win:> then you can use Windows-style drive "
20926 "letters and paths (with some limitations).  The following commands are "
20927 "equivalent:"
20928 msgstr ""
20929
20930 #. type: verbatim
20931 #: ../fish/guestfish.pod:806
20932 #, no-wrap
20933 msgid ""
20934 " file /WINDOWS/system32/config/system.LOG\n"
20935 "\n"
20936 msgstr ""
20937
20938 #. type: verbatim
20939 #: ../fish/guestfish.pod:808
20940 #, no-wrap
20941 msgid ""
20942 " file win:\\windows\\system32\\config\\system.log\n"
20943 "\n"
20944 msgstr ""
20945
20946 #. type: verbatim
20947 #: ../fish/guestfish.pod:810
20948 #, no-wrap
20949 msgid ""
20950 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
20951 "\n"
20952 msgstr ""
20953
20954 #. type: textblock
20955 #: ../fish/guestfish.pod:812
20956 msgid ""
20957 "The parameter is rewritten \"behind the scenes\" by looking up the position "
20958 "where the drive is mounted, prepending that to the path, changing all "
20959 "backslash characters to forward slash, then resolving the result using "
20960 "L</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
20961 "then the parameter might be rewritten like this:"
20962 msgstr ""
20963
20964 #. type: verbatim
20965 #: ../fish/guestfish.pod:818
20966 #, no-wrap
20967 msgid ""
20968 " win:e:\\foo\\bar => /e/FOO/bar\n"
20969 "\n"
20970 msgstr ""
20971
20972 #. type: textblock
20973 #: ../fish/guestfish.pod:820
20974 msgid "This only works in argument positions that expect a path."
20975 msgstr ""
20976
20977 #. type: =head1
20978 #: ../fish/guestfish.pod:822
20979 msgid "UPLOADING AND DOWNLOADING FILES"
20980 msgstr ""
20981
20982 #. type: textblock
20983 #: ../fish/guestfish.pod:824
20984 msgid ""
20985 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
20986 "others which upload from or download to a local file, you can use the "
20987 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
20988 msgstr ""
20989
20990 #. type: verbatim
20991 #: ../fish/guestfish.pod:828
20992 #, no-wrap
20993 msgid ""
20994 " upload - /foo\n"
20995 "\n"
20996 msgstr ""
20997
20998 #. type: textblock
20999 #: ../fish/guestfish.pod:830
21000 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
21001 msgstr ""
21002
21003 #. type: verbatim
21004 #: ../fish/guestfish.pod:833
21005 #, no-wrap
21006 msgid ""
21007 " tar-out /etc - | tar tf -\n"
21008 "\n"
21009 msgstr ""
21010
21011 #. type: textblock
21012 #: ../fish/guestfish.pod:835
21013 msgid ""
21014 "writes the tarball to stdout and then pipes that into the external \"tar\" "
21015 "command (see L</PIPES>)."
21016 msgstr ""
21017
21018 #. type: textblock
21019 #: ../fish/guestfish.pod:838
21020 msgid ""
21021 "When using C<-> to read from stdin, the input is read up to the end of "
21022 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
21023 "some arbitrary end marker:"
21024 msgstr ""
21025
21026 #. type: verbatim
21027 #: ../fish/guestfish.pod:842
21028 #, no-wrap
21029 msgid ""
21030 " upload -<<END /foo\n"
21031 " input line 1\n"
21032 " input line 2\n"
21033 " input line 3\n"
21034 " END\n"
21035 "\n"
21036 msgstr ""
21037
21038 #. type: textblock
21039 #: ../fish/guestfish.pod:848
21040 msgid ""
21041 "Any string of characters can be used instead of C<END>.  The end marker must "
21042 "appear on a line of its own, without any preceeding or following characters "
21043 "(not even spaces)."
21044 msgstr ""
21045
21046 #. type: textblock
21047 #: ../fish/guestfish.pod:852
21048 msgid ""
21049 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21050 "upload local files (so-called \"FileIn\" parameters in the generator)."
21051 msgstr ""
21052
21053 #. type: =head1
21054 #: ../fish/guestfish.pod:855
21055 msgid "EXIT ON ERROR BEHAVIOUR"
21056 msgstr ""
21057
21058 #. type: textblock
21059 #: ../fish/guestfish.pod:857
21060 msgid ""
21061 "By default, guestfish will ignore any errors when in interactive mode "
21062 "(ie. taking commands from a human over a tty), and will exit on the first "
21063 "error in non-interactive mode (scripts, commands given on the command line)."
21064 msgstr ""
21065
21066 #. type: textblock
21067 #: ../fish/guestfish.pod:862
21068 msgid ""
21069 "If you prefix a command with a I<-> character, then that command will not "
21070 "cause guestfish to exit, even if that (one) command returns an error."
21071 msgstr ""
21072
21073 #. type: =head1
21074 #: ../fish/guestfish.pod:866
21075 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21076 msgstr ""
21077
21078 #. type: textblock
21079 #: ../fish/guestfish.pod:868
21080 msgid ""
21081 "Guestfish can be remote-controlled over a socket.  This is useful "
21082 "particularly in shell scripts where you want to make several different "
21083 "changes to a filesystem, but you don't want the overhead of starting up a "
21084 "guestfish process each time."
21085 msgstr ""
21086
21087 #. type: textblock
21088 #: ../fish/guestfish.pod:873
21089 msgid "Start a guestfish server process using:"
21090 msgstr ""
21091
21092 #. type: verbatim
21093 #: ../fish/guestfish.pod:875
21094 #, no-wrap
21095 msgid ""
21096 " eval \"`guestfish --listen`\"\n"
21097 "\n"
21098 msgstr ""
21099
21100 #. type: textblock
21101 #: ../fish/guestfish.pod:877
21102 msgid "and then send it commands by doing:"
21103 msgstr ""
21104
21105 #. type: verbatim
21106 #: ../fish/guestfish.pod:879
21107 #, no-wrap
21108 msgid ""
21109 " guestfish --remote cmd [...]\n"
21110 "\n"
21111 msgstr ""
21112
21113 #. type: textblock
21114 #: ../fish/guestfish.pod:881
21115 msgid "To cause the server to exit, send it the exit command:"
21116 msgstr ""
21117
21118 #. type: verbatim
21119 #: ../fish/guestfish.pod:883
21120 #, no-wrap
21121 msgid ""
21122 " guestfish --remote exit\n"
21123 "\n"
21124 msgstr ""
21125
21126 #. type: textblock
21127 #: ../fish/guestfish.pod:885
21128 msgid ""
21129 "Note that the server will normally exit if there is an error in a command.  "
21130 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21131 "BEHAVIOUR>."
21132 msgstr ""
21133
21134 #. type: =head2
21135 #: ../fish/guestfish.pod:889
21136 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21137 msgstr ""
21138
21139 #. type: textblock
21140 #: ../fish/guestfish.pod:891
21141 msgid ""
21142 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21143 "is how the I<--remote> option knows where to send the commands.  You can "
21144 "have several guestfish listener processes running using:"
21145 msgstr ""
21146
21147 #. type: verbatim
21148 #: ../fish/guestfish.pod:895
21149 #, no-wrap
21150 msgid ""
21151 " eval \"`guestfish --listen`\"\n"
21152 " pid1=$GUESTFISH_PID\n"
21153 " eval \"`guestfish --listen`\"\n"
21154 " pid2=$GUESTFISH_PID\n"
21155 " ...\n"
21156 " guestfish --remote=$pid1 cmd\n"
21157 " guestfish --remote=$pid2 cmd\n"
21158 "\n"
21159 msgstr ""
21160
21161 #. type: =head2
21162 #: ../fish/guestfish.pod:903
21163 msgid "REMOTE CONTROL AND CSH"
21164 msgstr ""
21165
21166 #. type: textblock
21167 #: ../fish/guestfish.pod:905
21168 msgid ""
21169 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21170 "option:"
21171 msgstr ""
21172
21173 #. type: verbatim
21174 #: ../fish/guestfish.pod:908
21175 #, no-wrap
21176 msgid ""
21177 " eval \"`guestfish --listen --csh`\"\n"
21178 "\n"
21179 msgstr ""
21180
21181 #. type: =head2
21182 #: ../fish/guestfish.pod:910
21183 msgid "REMOTE CONTROL DETAILS"
21184 msgstr ""
21185
21186 #. type: textblock
21187 #: ../fish/guestfish.pod:912
21188 msgid ""
21189 "Remote control happens over a Unix domain socket called "
21190 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
21191 "of the process, and C<$PID> is the process ID of the server."
21192 msgstr ""
21193
21194 #. type: textblock
21195 #: ../fish/guestfish.pod:916
21196 msgid "Guestfish client and server versions must match exactly."
21197 msgstr ""
21198
21199 #. type: =head1
21200 #: ../fish/guestfish.pod:918
21201 msgid "PREPARED DISK IMAGES"
21202 msgstr ""
21203
21204 #. type: textblock
21205 #: ../fish/guestfish.pod:920
21206 msgid ""
21207 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21208 "preformatted disk images that guestfish can make for you to save typing.  "
21209 "This is particularly useful for testing purposes.  This option is used "
21210 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21211 "can be mixed with I<-a>)."
21212 msgstr ""
21213
21214 #. type: textblock
21215 #: ../fish/guestfish.pod:926
21216 msgid ""
21217 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21218 "the second and so on.  Existing files in the current directory are "
21219 "I<overwritten>."
21220 msgstr ""
21221
21222 #. type: textblock
21223 #: ../fish/guestfish.pod:930
21224 msgid ""
21225 "The type briefly describes how the disk should be sized, partitioned, how "
21226 "filesystem(s) should be created, and how content should be added.  "
21227 "Optionally the type can be followed by extra parameters, separated by C<:> "
21228 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
21229 "sparsely-allocated disk, containing a single partition, with the partition "
21230 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
21231 "on a 1GB disk instead."
21232 msgstr ""
21233
21234 #. type: textblock
21235 #: ../fish/guestfish.pod:938
21236 msgid "To list the available types and any extra parameters they take, run:"
21237 msgstr ""
21238
21239 #. type: textblock
21240 #: ../fish/guestfish.pod:942
21241 msgid ""
21242 "Note that the prepared filesystem is not mounted.  You would usually have to "
21243 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21244 msgstr ""
21245
21246 #. type: textblock
21247 #: ../fish/guestfish.pod:946
21248 msgid ""
21249 "If any I<-N> or I<--new> options are given, the guest is automatically "
21250 "launched."
21251 msgstr ""
21252
21253 #. type: textblock
21254 #: ../fish/guestfish.pod:951
21255 msgid "Create a 100MB disk with an ext4-formatted partition:"
21256 msgstr ""
21257
21258 #. type: verbatim
21259 #: ../fish/guestfish.pod:953
21260 #, no-wrap
21261 msgid ""
21262 " guestfish -N fs:ext4\n"
21263 "\n"
21264 msgstr ""
21265
21266 #. type: textblock
21267 #: ../fish/guestfish.pod:955
21268 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21269 msgstr ""
21270
21271 #. type: verbatim
21272 #: ../fish/guestfish.pod:957
21273 #, no-wrap
21274 msgid ""
21275 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21276 "\n"
21277 msgstr ""
21278
21279 #. type: textblock
21280 #: ../fish/guestfish.pod:959
21281 msgid "Create a blank 200MB disk:"
21282 msgstr ""
21283
21284 #. type: verbatim
21285 #: ../fish/guestfish.pod:961
21286 #, no-wrap
21287 msgid ""
21288 " guestfish -N disk:200M\n"
21289 "\n"
21290 msgstr ""
21291
21292 #. type: =head1
21293 #: ../fish/guestfish.pod:963
21294 msgid "PROGRESS BARS"
21295 msgstr ""
21296
21297 #. type: textblock
21298 #: ../fish/guestfish.pod:965
21299 msgid ""
21300 "Some (not all) long-running commands send progress notification messages as "
21301 "they are running.  Guestfish turns these messages into progress bars."
21302 msgstr ""
21303
21304 #. type: textblock
21305 #: ../fish/guestfish.pod:969
21306 msgid ""
21307 "When a command that supports progress bars takes longer than two seconds to "
21308 "run, and if progress bars are enabled, then you will see one appearing below "
21309 "the command:"
21310 msgstr ""
21311
21312 #. type: verbatim
21313 #: ../fish/guestfish.pod:973
21314 #, no-wrap
21315 msgid ""
21316 " ><fs> copy-size /large-file /another-file 2048M\n"
21317 " / 10% [#####-----------------------------------------] 00:30\n"
21318 "\n"
21319 msgstr ""
21320
21321 #. type: textblock
21322 #: ../fish/guestfish.pod:976
21323 msgid ""
21324 "The spinner on the left hand side moves round once for every progress "
21325 "notification received from the backend.  This is a (reasonably) golden "
21326 "assurance that the command is \"doing something\" even if the progress bar "
21327 "is not moving, because the command is able to send the progress "
21328 "notifications.  When the bar reaches 100% and the command finishes, the "
21329 "spinner disappears."
21330 msgstr ""
21331
21332 #. type: textblock
21333 #: ../fish/guestfish.pod:983
21334 msgid ""
21335 "Progress bars are enabled by default when guestfish is used interactively.  "
21336 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21337 "and you can disable them completely using I<--no-progress-bars>."
21338 msgstr ""
21339
21340 #. type: =head1
21341 #: ../fish/guestfish.pod:988
21342 msgid "GUESTFISH COMMANDS"
21343 msgstr ""
21344
21345 #. type: textblock
21346 #: ../fish/guestfish.pod:990
21347 msgid ""
21348 "The commands in this section are guestfish convenience commands, in other "
21349 "words, they are not part of the L<guestfs(3)> API."
21350 msgstr ""
21351
21352 #. type: =head2
21353 #: ../fish/guestfish.pod:993
21354 msgid "help"
21355 msgstr ""
21356
21357 #. type: verbatim
21358 #: ../fish/guestfish.pod:995
21359 #, no-wrap
21360 msgid ""
21361 " help\n"
21362 " help cmd\n"
21363 "\n"
21364 msgstr ""
21365
21366 #. type: textblock
21367 #: ../fish/guestfish.pod:998
21368 msgid "Without any parameter, this provides general help."
21369 msgstr ""
21370
21371 #. type: textblock
21372 #: ../fish/guestfish.pod:1000
21373 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21374 msgstr ""
21375
21376 #. type: =head2
21377 #: ../fish/guestfish.pod:1002
21378 msgid "quit | exit"
21379 msgstr ""
21380
21381 #. type: textblock
21382 #: ../fish/guestfish.pod:1004
21383 msgid "This exits guestfish.  You can also use C<^D> key."
21384 msgstr ""
21385
21386 #. type: textblock
21387 #: ../fish/guestfish.pod:1006
21388 msgid "@FISH_COMMANDS@"
21389 msgstr ""
21390
21391 #. type: =head1
21392 #: ../fish/guestfish.pod:1008
21393 msgid "COMMANDS"
21394 msgstr ""
21395
21396 #. type: =head1
21397 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
21398 msgid "EXIT CODE"
21399 msgstr ""
21400
21401 #. type: textblock
21402 #: ../fish/guestfish.pod:1014
21403 msgid ""
21404 "guestfish returns 0 if the commands completed without error, or 1 if there "
21405 "was an error."
21406 msgstr ""
21407
21408 #. type: =item
21409 #: ../fish/guestfish.pod:1021
21410 msgid "EDITOR"
21411 msgstr ""
21412
21413 #. type: textblock
21414 #: ../fish/guestfish.pod:1023
21415 msgid ""
21416 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21417 "C<vi>."
21418 msgstr ""
21419
21420 #. type: =item
21421 #: ../fish/guestfish.pod:1026
21422 msgid "GUESTFISH_DISPLAY_IMAGE"
21423 msgstr ""
21424
21425 #. type: textblock
21426 #: ../fish/guestfish.pod:1028
21427 msgid ""
21428 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
21429 "If not set, it uses L<display(1)>."
21430 msgstr ""
21431
21432 #. type: =item
21433 #: ../fish/guestfish.pod:1031
21434 msgid "GUESTFISH_PID"
21435 msgstr ""
21436
21437 #. type: textblock
21438 #: ../fish/guestfish.pod:1033
21439 msgid ""
21440 "Used with the I<--remote> option to specify the remote guestfish process to "
21441 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21442 msgstr ""
21443
21444 #. type: =item
21445 #: ../fish/guestfish.pod:1037
21446 msgid "HEXEDITOR"
21447 msgstr ""
21448
21449 #. type: textblock
21450 #: ../fish/guestfish.pod:1039
21451 msgid ""
21452 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21453 "not specified, the external L<hexedit(1)> program is used."
21454 msgstr ""
21455
21456 #. type: =item
21457 #: ../fish/guestfish.pod:1043
21458 msgid "HOME"
21459 msgstr ""
21460
21461 #. type: textblock
21462 #: ../fish/guestfish.pod:1045
21463 msgid ""
21464 "If compiled with GNU readline support, various files in the home directory "
21465 "can be used.  See L</FILES>."
21466 msgstr ""
21467
21468 #. type: textblock
21469 #: ../fish/guestfish.pod:1054
21470 msgid ""
21471 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21472 "effect as using the B<-v> option."
21473 msgstr ""
21474
21475 #. type: textblock
21476 #: ../fish/guestfish.pod:1066
21477 msgid ""
21478 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21479 "the discussion of paths in L<guestfs(3)>."
21480 msgstr ""
21481
21482 #. type: textblock
21483 #: ../fish/guestfish.pod:1077
21484 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21485 msgstr ""
21486
21487 #. type: =item
21488 #: ../fish/guestfish.pod:1079
21489 msgid "PAGER"
21490 msgstr ""
21491
21492 #. type: textblock
21493 #: ../fish/guestfish.pod:1081
21494 msgid ""
21495 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21496 "C<more>."
21497 msgstr ""
21498
21499 #. type: =head1
21500 #: ../fish/guestfish.pod:1097 ../fuse/guestmount.pod:264
21501 msgid "FILES"
21502 msgstr ""
21503
21504 #. type: =item
21505 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:268
21506 msgid "$HOME/.libguestfs-tools.rc"
21507 msgstr ""
21508
21509 #. type: =item
21510 #: ../fish/guestfish.pod:1103 ../fuse/guestmount.pod:270
21511 msgid "/etc/libguestfs-tools.conf"
21512 msgstr ""
21513
21514 #. type: textblock
21515 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:272
21516 msgid ""
21517 "This configuration file controls the default read-only or read-write mode "
21518 "(I<--ro> or I<--rw>)."
21519 msgstr ""
21520
21521 #. type: textblock
21522 #: ../fish/guestfish.pod:1108
21523 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21524 msgstr ""
21525
21526 #. type: =item
21527 #: ../fish/guestfish.pod:1110
21528 msgid "$HOME/.guestfish"
21529 msgstr ""
21530
21531 #. type: textblock
21532 #: ../fish/guestfish.pod:1112
21533 msgid ""
21534 "If compiled with GNU readline support, then the command history is saved in "
21535 "this file."
21536 msgstr ""
21537
21538 #. type: =item
21539 #: ../fish/guestfish.pod:1115
21540 msgid "$HOME/.inputrc"
21541 msgstr ""
21542
21543 #. type: =item
21544 #: ../fish/guestfish.pod:1117
21545 msgid "/etc/inputrc"
21546 msgstr ""
21547
21548 #. type: textblock
21549 #: ../fish/guestfish.pod:1119
21550 msgid ""
21551 "If compiled with GNU readline support, then these files can be used to "
21552 "configure readline.  For further information, please see "
21553 "L<readline(3)/INITIALIZATION FILE>."
21554 msgstr ""
21555
21556 #. type: textblock
21557 #: ../fish/guestfish.pod:1123
21558 msgid "To write rules which only apply to guestfish, use:"
21559 msgstr ""
21560
21561 #. type: verbatim
21562 #: ../fish/guestfish.pod:1125
21563 #, no-wrap
21564 msgid ""
21565 " $if guestfish\n"
21566 " ...\n"
21567 " $endif\n"
21568 "\n"
21569 msgstr ""
21570
21571 #. type: textblock
21572 #: ../fish/guestfish.pod:1129
21573 msgid ""
21574 "Variables that you can set in inputrc that change the behaviour of guestfish "
21575 "in useful ways include:"
21576 msgstr ""
21577
21578 #. type: =item
21579 #: ../fish/guestfish.pod:1134
21580 msgid "completion-ignore-case (default: on)"
21581 msgstr ""
21582
21583 #. type: textblock
21584 #: ../fish/guestfish.pod:1136
21585 msgid ""
21586 "By default, guestfish will ignore case when tab-completing paths on the "
21587 "disk.  Use:"
21588 msgstr ""
21589
21590 #. type: verbatim
21591 #: ../fish/guestfish.pod:1139
21592 #, no-wrap
21593 msgid ""
21594 " set completion-ignore-case off\n"
21595 "\n"
21596 msgstr ""
21597
21598 #. type: textblock
21599 #: ../fish/guestfish.pod:1141
21600 msgid "to make guestfish case sensitive."
21601 msgstr ""
21602
21603 #. type: =item
21604 #: ../fish/guestfish.pod:1145
21605 msgid "test1.img"
21606 msgstr ""
21607
21608 #. type: =item
21609 #: ../fish/guestfish.pod:1147
21610 msgid "test2.img (etc)"
21611 msgstr ""
21612
21613 #. type: textblock
21614 #: ../fish/guestfish.pod:1149
21615 msgid ""
21616 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21617 "will be created in the file C<test1.img> in the current directory.  The "
21618 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21619 "the same name will be overwritten."
21620 msgstr ""
21621
21622 #. type: textblock
21623 #: ../fish/guestfish.pod:1158
21624 msgid ""
21625 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, "
21626 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
21627 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
21628 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
21629 "L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, "
21630 "L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<display(1)>, L<hexedit(1)>."
21631 msgstr ""
21632
21633 #. type: textblock
21634 #: ../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
21635 msgid ""
21636 "This program is free software; you can redistribute it and/or modify it "
21637 "under the terms of the GNU General Public License as published by the Free "
21638 "Software Foundation; either version 2 of the License, or (at your option) "
21639 "any later version."
21640 msgstr ""
21641
21642 #. type: textblock
21643 #: ../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
21644 msgid ""
21645 "This program is distributed in the hope that it will be useful, but WITHOUT "
21646 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21647 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21648 "more details."
21649 msgstr ""
21650
21651 #. type: textblock
21652 #: ../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
21653 msgid ""
21654 "You should have received a copy of the GNU General Public License along with "
21655 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21656 "Ave, Cambridge, MA 02139, USA."
21657 msgstr ""
21658
21659 #. type: =head2
21660 #: ../fish/guestfish-actions.pod:1
21661 msgid "add-cdrom"
21662 msgstr ""
21663
21664 #. type: verbatim
21665 #: ../fish/guestfish-actions.pod:3
21666 #, no-wrap
21667 msgid ""
21668 " add-cdrom filename\n"
21669 "\n"
21670 msgstr ""
21671
21672 #. type: textblock
21673 #: ../fish/guestfish-actions.pod:15
21674 msgid ""
21675 "This call checks for the existence of C<filename>.  This stops you from "
21676 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21677 "and C<http:> URLs.  To specify those, use the general L</config> call "
21678 "instead."
21679 msgstr ""
21680
21681 #. type: textblock
21682 #: ../fish/guestfish-actions.pod:22
21683 msgid ""
21684 "If you just want to add an ISO file (often you use this as an efficient way "
21685 "to transfer large files into the guest), then you should probably use "
21686 "L</add-drive-ro> instead."
21687 msgstr ""
21688
21689 #. type: =head2
21690 #: ../fish/guestfish-actions.pod:35
21691 msgid "add-domain"
21692 msgstr ""
21693
21694 #. type: =head2
21695 #: ../fish/guestfish-actions.pod:37
21696 msgid "domain"
21697 msgstr ""
21698
21699 #. type: verbatim
21700 #: ../fish/guestfish-actions.pod:39
21701 #, no-wrap
21702 msgid ""
21703 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] "
21704 "[allowuuid:..]\n"
21705 "\n"
21706 msgstr ""
21707
21708 #. type: textblock
21709 #: ../fish/guestfish-actions.pod:41
21710 msgid ""
21711 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21712 "It works by connecting to libvirt, requesting the domain and domain XML from "
21713 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21714 msgstr ""
21715
21716 #. type: textblock
21717 #: ../fish/guestfish-actions.pod:76
21718 msgid ""
21719 "The other optional parameters are passed directly through to "
21720 "L</add-drive-opts>."
21721 msgstr ""
21722
21723 #. type: textblock
21724 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143 ../fish/guestfish-actions.pod:1937 ../fish/guestfish-actions.pod:3087 ../fish/guestfish-actions.pod:3260
21725 msgid ""
21726 "This command has one or more optional arguments.  See L</OPTIONAL "
21727 "ARGUMENTS>."
21728 msgstr ""
21729
21730 #. type: =head2
21731 #: ../fish/guestfish-actions.pod:81
21732 msgid "add-drive"
21733 msgstr ""
21734
21735 #. type: verbatim
21736 #: ../fish/guestfish-actions.pod:83
21737 #, no-wrap
21738 msgid ""
21739 " add-drive filename\n"
21740 "\n"
21741 msgstr ""
21742
21743 #. type: textblock
21744 #: ../fish/guestfish-actions.pod:85
21745 msgid ""
21746 "This function is the equivalent of calling L</add-drive-opts> with no "
21747 "optional parameters, so the disk is added writable, with the format being "
21748 "detected automatically."
21749 msgstr ""
21750
21751 #. type: textblock
21752 #: ../fish/guestfish-actions.pod:89
21753 msgid ""
21754 "Automatic detection of the format opens you up to a potential security hole "
21755 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21756 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21757 "you should think about replacing calls to this function with calls to "
21758 "L</add-drive-opts>, and specifying the format."
21759 msgstr ""
21760
21761 #. type: =head2
21762 #: ../fish/guestfish-actions.pod:96
21763 msgid "add-drive-opts"
21764 msgstr ""
21765
21766 #. type: =head2
21767 #: ../fish/guestfish-actions.pod:98
21768 msgid "add"
21769 msgstr ""
21770
21771 #. type: verbatim
21772 #: ../fish/guestfish-actions.pod:100
21773 #, no-wrap
21774 msgid ""
21775 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21776 "\n"
21777 msgstr ""
21778
21779 #. type: textblock
21780 #: ../fish/guestfish-actions.pod:127
21781 msgid ""
21782 "This forces the image format.  If you omit this (or use L</add-drive> or "
21783 "L</add-drive-ro>) then the format is automatically detected.  Possible "
21784 "formats include C<raw> and C<qcow2>."
21785 msgstr ""
21786
21787 #. type: textblock
21788 #: ../fish/guestfish-actions.pod:138
21789 msgid ""
21790 "This rarely-used option lets you emulate the behaviour of the deprecated "
21791 "L</add-drive-with-if> call (q.v.)"
21792 msgstr ""
21793
21794 #. type: =head2
21795 #: ../fish/guestfish-actions.pod:145
21796 msgid "add-drive-ro"
21797 msgstr ""
21798
21799 #. type: =head2
21800 #: ../fish/guestfish-actions.pod:147
21801 msgid "add-ro"
21802 msgstr ""
21803
21804 #. type: verbatim
21805 #: ../fish/guestfish-actions.pod:149
21806 #, no-wrap
21807 msgid ""
21808 " add-drive-ro filename\n"
21809 "\n"
21810 msgstr ""
21811
21812 #. type: textblock
21813 #: ../fish/guestfish-actions.pod:151
21814 msgid ""
21815 "This function is the equivalent of calling L</add-drive-opts> with the "
21816 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
21817 "is added read-only, with the format being detected automatically."
21818 msgstr ""
21819
21820 #. type: =head2
21821 #: ../fish/guestfish-actions.pod:156
21822 msgid "add-drive-ro-with-if"
21823 msgstr ""
21824
21825 #. type: verbatim
21826 #: ../fish/guestfish-actions.pod:158
21827 #, no-wrap
21828 msgid ""
21829 " add-drive-ro-with-if filename iface\n"
21830 "\n"
21831 msgstr ""
21832
21833 #. type: textblock
21834 #: ../fish/guestfish-actions.pod:160
21835 msgid ""
21836 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
21837 "interface emulation to use at run time."
21838 msgstr ""
21839
21840 #. type: =head2
21841 #: ../fish/guestfish-actions.pod:170
21842 msgid "add-drive-with-if"
21843 msgstr ""
21844
21845 #. type: verbatim
21846 #: ../fish/guestfish-actions.pod:172
21847 #, no-wrap
21848 msgid ""
21849 " add-drive-with-if filename iface\n"
21850 "\n"
21851 msgstr ""
21852
21853 #. type: textblock
21854 #: ../fish/guestfish-actions.pod:174
21855 msgid ""
21856 "This is the same as L</add-drive> but it allows you to specify the QEMU "
21857 "interface emulation to use at run time."
21858 msgstr ""
21859
21860 #. type: =head2
21861 #: ../fish/guestfish-actions.pod:184
21862 msgid "aug-clear"
21863 msgstr ""
21864
21865 #. type: verbatim
21866 #: ../fish/guestfish-actions.pod:186
21867 #, no-wrap
21868 msgid ""
21869 " aug-clear augpath\n"
21870 "\n"
21871 msgstr ""
21872
21873 #. type: =head2
21874 #: ../fish/guestfish-actions.pod:191
21875 msgid "aug-close"
21876 msgstr ""
21877
21878 #. type: verbatim
21879 #: ../fish/guestfish-actions.pod:193
21880 #, no-wrap
21881 msgid ""
21882 " aug-close\n"
21883 "\n"
21884 msgstr ""
21885
21886 #. type: textblock
21887 #: ../fish/guestfish-actions.pod:195
21888 msgid ""
21889 "Close the current Augeas handle and free up any resources used by it.  After "
21890 "calling this, you have to call L</aug-init> again before you can use any "
21891 "other Augeas functions."
21892 msgstr ""
21893
21894 #. type: =head2
21895 #: ../fish/guestfish-actions.pod:200
21896 msgid "aug-defnode"
21897 msgstr ""
21898
21899 #. type: verbatim
21900 #: ../fish/guestfish-actions.pod:202
21901 #, no-wrap
21902 msgid ""
21903 " aug-defnode name expr val\n"
21904 "\n"
21905 msgstr ""
21906
21907 #. type: textblock
21908 #: ../fish/guestfish-actions.pod:207
21909 msgid ""
21910 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
21911 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
21912 "containing that single node."
21913 msgstr ""
21914
21915 #. type: =head2
21916 #: ../fish/guestfish-actions.pod:215
21917 msgid "aug-defvar"
21918 msgstr ""
21919
21920 #. type: verbatim
21921 #: ../fish/guestfish-actions.pod:217
21922 #, no-wrap
21923 msgid ""
21924 " aug-defvar name expr\n"
21925 "\n"
21926 msgstr ""
21927
21928 #. type: =head2
21929 #: ../fish/guestfish-actions.pod:226
21930 msgid "aug-get"
21931 msgstr ""
21932
21933 #. type: verbatim
21934 #: ../fish/guestfish-actions.pod:228
21935 #, no-wrap
21936 msgid ""
21937 " aug-get augpath\n"
21938 "\n"
21939 msgstr ""
21940
21941 #. type: =head2
21942 #: ../fish/guestfish-actions.pod:233
21943 msgid "aug-init"
21944 msgstr ""
21945
21946 #. type: verbatim
21947 #: ../fish/guestfish-actions.pod:235
21948 #, no-wrap
21949 msgid ""
21950 " aug-init root flags\n"
21951 "\n"
21952 msgstr ""
21953
21954 #. type: textblock
21955 #: ../fish/guestfish-actions.pod:241
21956 msgid "You must call this before using any other L</aug-*> commands."
21957 msgstr ""
21958
21959 #. type: textblock
21960 #: ../fish/guestfish-actions.pod:276
21961 msgid "Do not load the tree in L</aug-init>."
21962 msgstr ""
21963
21964 #. type: textblock
21965 #: ../fish/guestfish-actions.pod:280
21966 msgid "To close the handle, you can call L</aug-close>."
21967 msgstr ""
21968
21969 #. type: =head2
21970 #: ../fish/guestfish-actions.pod:284
21971 msgid "aug-insert"
21972 msgstr ""
21973
21974 #. type: verbatim
21975 #: ../fish/guestfish-actions.pod:286
21976 #, no-wrap
21977 msgid ""
21978 " aug-insert augpath label true|false\n"
21979 "\n"
21980 msgstr ""
21981
21982 #. type: =head2
21983 #: ../fish/guestfish-actions.pod:296
21984 msgid "aug-load"
21985 msgstr ""
21986
21987 #. type: verbatim
21988 #: ../fish/guestfish-actions.pod:298
21989 #, no-wrap
21990 msgid ""
21991 " aug-load\n"
21992 "\n"
21993 msgstr ""
21994
21995 #. type: =head2
21996 #: ../fish/guestfish-actions.pod:305
21997 msgid "aug-ls"
21998 msgstr ""
21999
22000 #. type: verbatim
22001 #: ../fish/guestfish-actions.pod:307
22002 #, no-wrap
22003 msgid ""
22004 " aug-ls augpath\n"
22005 "\n"
22006 msgstr ""
22007
22008 #. type: textblock
22009 #: ../fish/guestfish-actions.pod:309
22010 msgid ""
22011 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
22012 "resulting nodes into alphabetical order."
22013 msgstr ""
22014
22015 #. type: =head2
22016 #: ../fish/guestfish-actions.pod:312
22017 msgid "aug-match"
22018 msgstr ""
22019
22020 #. type: verbatim
22021 #: ../fish/guestfish-actions.pod:314
22022 #, no-wrap
22023 msgid ""
22024 " aug-match augpath\n"
22025 "\n"
22026 msgstr ""
22027
22028 #. type: =head2
22029 #: ../fish/guestfish-actions.pod:320
22030 msgid "aug-mv"
22031 msgstr ""
22032
22033 #. type: verbatim
22034 #: ../fish/guestfish-actions.pod:322
22035 #, no-wrap
22036 msgid ""
22037 " aug-mv src dest\n"
22038 "\n"
22039 msgstr ""
22040
22041 #. type: =head2
22042 #: ../fish/guestfish-actions.pod:327
22043 msgid "aug-rm"
22044 msgstr ""
22045
22046 #. type: verbatim
22047 #: ../fish/guestfish-actions.pod:329
22048 #, no-wrap
22049 msgid ""
22050 " aug-rm augpath\n"
22051 "\n"
22052 msgstr ""
22053
22054 #. type: =head2
22055 #: ../fish/guestfish-actions.pod:335
22056 msgid "aug-save"
22057 msgstr ""
22058
22059 #. type: verbatim
22060 #: ../fish/guestfish-actions.pod:337
22061 #, no-wrap
22062 msgid ""
22063 " aug-save\n"
22064 "\n"
22065 msgstr ""
22066
22067 #. type: textblock
22068 #: ../fish/guestfish-actions.pod:341
22069 msgid ""
22070 "The flags which were passed to L</aug-init> affect exactly how files are "
22071 "saved."
22072 msgstr ""
22073
22074 #. type: =head2
22075 #: ../fish/guestfish-actions.pod:344
22076 msgid "aug-set"
22077 msgstr ""
22078
22079 #. type: verbatim
22080 #: ../fish/guestfish-actions.pod:346
22081 #, no-wrap
22082 msgid ""
22083 " aug-set augpath val\n"
22084 "\n"
22085 msgstr ""
22086
22087 #. type: textblock
22088 #: ../fish/guestfish-actions.pod:350
22089 msgid ""
22090 "In the Augeas API, it is possible to clear a node by setting the value to "
22091 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22092 "this call.  Instead you must use the L</aug-clear> call."
22093 msgstr ""
22094
22095 #. type: =head2
22096 #: ../fish/guestfish-actions.pod:355
22097 msgid "available"
22098 msgstr ""
22099
22100 #. type: verbatim
22101 #: ../fish/guestfish-actions.pod:357
22102 #, no-wrap
22103 msgid ""
22104 " available 'groups ...'\n"
22105 "\n"
22106 msgstr ""
22107
22108 #. type: textblock
22109 #: ../fish/guestfish-actions.pod:363
22110 msgid ""
22111 "The libguestfs groups, and the functions that those groups correspond to, "
22112 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22113 "runtime by calling L</available-all-groups>."
22114 msgstr ""
22115
22116 #. type: textblock
22117 #: ../fish/guestfish-actions.pod:387
22118 msgid "You must call L</launch> before calling this function."
22119 msgstr ""
22120
22121 #. type: textblock
22122 #: ../fish/guestfish-actions.pod:409
22123 msgid ""
22124 "This call was added in version C<1.0.80>.  In previous versions of "
22125 "libguestfs all you could do would be to speculatively execute a command to "
22126 "find out if the daemon implemented it.  See also L</version>."
22127 msgstr ""
22128
22129 #. type: =head2
22130 #: ../fish/guestfish-actions.pod:416
22131 msgid "available-all-groups"
22132 msgstr ""
22133
22134 #. type: verbatim
22135 #: ../fish/guestfish-actions.pod:418
22136 #, no-wrap
22137 msgid ""
22138 " available-all-groups\n"
22139 "\n"
22140 msgstr ""
22141
22142 #. type: textblock
22143 #: ../fish/guestfish-actions.pod:420
22144 msgid ""
22145 "This command returns a list of all optional groups that this daemon knows "
22146 "about.  Note this returns both supported and unsupported groups.  To find "
22147 "out which ones the daemon can actually support you have to call "
22148 "L</available> on each member of the returned list."
22149 msgstr ""
22150
22151 #. type: textblock
22152 #: ../fish/guestfish-actions.pod:426
22153 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22154 msgstr ""
22155
22156 #. type: =head2
22157 #: ../fish/guestfish-actions.pod:428
22158 msgid "base64-in"
22159 msgstr ""
22160
22161 #. type: verbatim
22162 #: ../fish/guestfish-actions.pod:430
22163 #, no-wrap
22164 msgid ""
22165 " base64-in (base64file|-) filename\n"
22166 "\n"
22167 msgstr ""
22168
22169 #. type: textblock
22170 #: ../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:4533 ../fish/guestfish-actions.pod:4545 ../fish/guestfish-actions.pod:4556 ../fish/guestfish-actions.pod:4567 ../fish/guestfish-actions.pod:4619 ../fish/guestfish-actions.pod:4628 ../fish/guestfish-actions.pod:4682 ../fish/guestfish-actions.pod:4705
22171 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22172 msgstr ""
22173
22174 #. type: =head2
22175 #: ../fish/guestfish-actions.pod:437
22176 msgid "base64-out"
22177 msgstr ""
22178
22179 #. type: verbatim
22180 #: ../fish/guestfish-actions.pod:439
22181 #, no-wrap
22182 msgid ""
22183 " base64-out filename (base64file|-)\n"
22184 "\n"
22185 msgstr ""
22186
22187 #. type: =head2
22188 #: ../fish/guestfish-actions.pod:446
22189 msgid "blockdev-flushbufs"
22190 msgstr ""
22191
22192 #. type: verbatim
22193 #: ../fish/guestfish-actions.pod:448
22194 #, no-wrap
22195 msgid ""
22196 " blockdev-flushbufs device\n"
22197 "\n"
22198 msgstr ""
22199
22200 #. type: =head2
22201 #: ../fish/guestfish-actions.pod:455
22202 msgid "blockdev-getbsz"
22203 msgstr ""
22204
22205 #. type: verbatim
22206 #: ../fish/guestfish-actions.pod:457
22207 #, no-wrap
22208 msgid ""
22209 " blockdev-getbsz device\n"
22210 "\n"
22211 msgstr ""
22212
22213 #. type: =head2
22214 #: ../fish/guestfish-actions.pod:466
22215 msgid "blockdev-getro"
22216 msgstr ""
22217
22218 #. type: verbatim
22219 #: ../fish/guestfish-actions.pod:468
22220 #, no-wrap
22221 msgid ""
22222 " blockdev-getro device\n"
22223 "\n"
22224 msgstr ""
22225
22226 #. type: =head2
22227 #: ../fish/guestfish-actions.pod:475
22228 msgid "blockdev-getsize64"
22229 msgstr ""
22230
22231 #. type: verbatim
22232 #: ../fish/guestfish-actions.pod:477
22233 #, no-wrap
22234 msgid ""
22235 " blockdev-getsize64 device\n"
22236 "\n"
22237 msgstr ""
22238
22239 #. type: textblock
22240 #: ../fish/guestfish-actions.pod:481
22241 msgid "See also L</blockdev-getsz>."
22242 msgstr ""
22243
22244 #. type: =head2
22245 #: ../fish/guestfish-actions.pod:485
22246 msgid "blockdev-getss"
22247 msgstr ""
22248
22249 #. type: verbatim
22250 #: ../fish/guestfish-actions.pod:487
22251 #, no-wrap
22252 msgid ""
22253 " blockdev-getss device\n"
22254 "\n"
22255 msgstr ""
22256
22257 #. type: textblock
22258 #: ../fish/guestfish-actions.pod:492
22259 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22260 msgstr ""
22261
22262 #. type: =head2
22263 #: ../fish/guestfish-actions.pod:497
22264 msgid "blockdev-getsz"
22265 msgstr ""
22266
22267 #. type: verbatim
22268 #: ../fish/guestfish-actions.pod:499
22269 #, no-wrap
22270 msgid ""
22271 " blockdev-getsz device\n"
22272 "\n"
22273 msgstr ""
22274
22275 #. type: textblock
22276 #: ../fish/guestfish-actions.pod:504
22277 msgid ""
22278 "See also L</blockdev-getss> for the real sector size of the device, and "
22279 "L</blockdev-getsize64> for the more useful I<size in bytes>."
22280 msgstr ""
22281
22282 #. type: =head2
22283 #: ../fish/guestfish-actions.pod:510
22284 msgid "blockdev-rereadpt"
22285 msgstr ""
22286
22287 #. type: verbatim
22288 #: ../fish/guestfish-actions.pod:512
22289 #, no-wrap
22290 msgid ""
22291 " blockdev-rereadpt device\n"
22292 "\n"
22293 msgstr ""
22294
22295 #. type: =head2
22296 #: ../fish/guestfish-actions.pod:518
22297 msgid "blockdev-setbsz"
22298 msgstr ""
22299
22300 #. type: verbatim
22301 #: ../fish/guestfish-actions.pod:520
22302 #, no-wrap
22303 msgid ""
22304 " blockdev-setbsz device blocksize\n"
22305 "\n"
22306 msgstr ""
22307
22308 #. type: =head2
22309 #: ../fish/guestfish-actions.pod:529
22310 msgid "blockdev-setro"
22311 msgstr ""
22312
22313 #. type: verbatim
22314 #: ../fish/guestfish-actions.pod:531
22315 #, no-wrap
22316 msgid ""
22317 " blockdev-setro device\n"
22318 "\n"
22319 msgstr ""
22320
22321 #. type: =head2
22322 #: ../fish/guestfish-actions.pod:537
22323 msgid "blockdev-setrw"
22324 msgstr ""
22325
22326 #. type: verbatim
22327 #: ../fish/guestfish-actions.pod:539
22328 #, no-wrap
22329 msgid ""
22330 " blockdev-setrw device\n"
22331 "\n"
22332 msgstr ""
22333
22334 #. type: =head2
22335 #: ../fish/guestfish-actions.pod:545
22336 msgid "case-sensitive-path"
22337 msgstr ""
22338
22339 #. type: verbatim
22340 #: ../fish/guestfish-actions.pod:547
22341 #, no-wrap
22342 msgid ""
22343 " case-sensitive-path path\n"
22344 "\n"
22345 msgstr ""
22346
22347 #. type: textblock
22348 #: ../fish/guestfish-actions.pod:571
22349 msgid ""
22350 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
22351 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
22352 "how the directories were originally created under Windows)."
22353 msgstr ""
22354
22355 #. type: textblock
22356 #: ../fish/guestfish-actions.pod:579
22357 msgid "See also L</realpath>."
22358 msgstr ""
22359
22360 #. type: =head2
22361 #: ../fish/guestfish-actions.pod:581
22362 msgid "cat"
22363 msgstr ""
22364
22365 #. type: verbatim
22366 #: ../fish/guestfish-actions.pod:583
22367 #, no-wrap
22368 msgid ""
22369 " cat path\n"
22370 "\n"
22371 msgstr ""
22372
22373 #. type: textblock
22374 #: ../fish/guestfish-actions.pod:587
22375 msgid ""
22376 "Note that this function cannot correctly handle binary files (specifically, "
22377 "files containing C<\\0> character which is treated as end of string).  For "
22378 "those you need to use the L</read-file> or L</download> functions which have "
22379 "a more complex interface."
22380 msgstr ""
22381
22382 #. type: =head2
22383 #: ../fish/guestfish-actions.pod:595
22384 msgid "checksum"
22385 msgstr ""
22386
22387 #. type: verbatim
22388 #: ../fish/guestfish-actions.pod:597
22389 #, no-wrap
22390 msgid ""
22391 " checksum csumtype path\n"
22392 "\n"
22393 msgstr ""
22394
22395 #. type: textblock
22396 #: ../fish/guestfish-actions.pod:640
22397 msgid "To get the checksum for a device, use L</checksum-device>."
22398 msgstr ""
22399
22400 #. type: textblock
22401 #: ../fish/guestfish-actions.pod:642
22402 msgid "To get the checksums for many files, use L</checksums-out>."
22403 msgstr ""
22404
22405 #. type: =head2
22406 #: ../fish/guestfish-actions.pod:644
22407 msgid "checksum-device"
22408 msgstr ""
22409
22410 #. type: verbatim
22411 #: ../fish/guestfish-actions.pod:646
22412 #, no-wrap
22413 msgid ""
22414 " checksum-device csumtype device\n"
22415 "\n"
22416 msgstr ""
22417
22418 #. type: textblock
22419 #: ../fish/guestfish-actions.pod:648
22420 msgid ""
22421 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22422 "device named C<device>.  For the types of checksums supported see the "
22423 "L</checksum> command."
22424 msgstr ""
22425
22426 #. type: =head2
22427 #: ../fish/guestfish-actions.pod:652
22428 msgid "checksums-out"
22429 msgstr ""
22430
22431 #. type: verbatim
22432 #: ../fish/guestfish-actions.pod:654
22433 #, no-wrap
22434 msgid ""
22435 " checksums-out csumtype directory (sumsfile|-)\n"
22436 "\n"
22437 msgstr ""
22438
22439 #. type: =head2
22440 #: ../fish/guestfish-actions.pod:670
22441 msgid "chmod"
22442 msgstr ""
22443
22444 #. type: verbatim
22445 #: ../fish/guestfish-actions.pod:672
22446 #, no-wrap
22447 msgid ""
22448 " chmod mode path\n"
22449 "\n"
22450 msgstr ""
22451
22452 #. type: =head2
22453 #: ../fish/guestfish-actions.pod:683
22454 msgid "chown"
22455 msgstr ""
22456
22457 #. type: verbatim
22458 #: ../fish/guestfish-actions.pod:685
22459 #, no-wrap
22460 msgid ""
22461 " chown owner group path\n"
22462 "\n"
22463 msgstr ""
22464
22465 #. type: =head2
22466 #: ../fish/guestfish-actions.pod:693
22467 msgid "command"
22468 msgstr ""
22469
22470 #. type: verbatim
22471 #: ../fish/guestfish-actions.pod:695
22472 #, no-wrap
22473 msgid ""
22474 " command 'arguments ...'\n"
22475 "\n"
22476 msgstr ""
22477
22478 #. type: textblock
22479 #: ../fish/guestfish-actions.pod:702
22480 msgid ""
22481 "The single parameter is an argv-style list of arguments.  The first element "
22482 "is the name of the program to run.  Subsequent elements are parameters.  The "
22483 "list must be non-empty (ie. must contain a program name).  Note that the "
22484 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22485 msgstr ""
22486
22487 #. type: =head2
22488 #: ../fish/guestfish-actions.pod:730
22489 msgid "command-lines"
22490 msgstr ""
22491
22492 #. type: verbatim
22493 #: ../fish/guestfish-actions.pod:732
22494 #, no-wrap
22495 msgid ""
22496 " command-lines 'arguments ...'\n"
22497 "\n"
22498 msgstr ""
22499
22500 #. type: textblock
22501 #: ../fish/guestfish-actions.pod:734
22502 msgid "This is the same as L</command>, but splits the result into a list of lines."
22503 msgstr ""
22504
22505 #. type: textblock
22506 #: ../fish/guestfish-actions.pod:737
22507 msgid "See also: L</sh-lines>"
22508 msgstr ""
22509
22510 #. type: =head2
22511 #: ../fish/guestfish-actions.pod:742
22512 msgid "config"
22513 msgstr ""
22514
22515 #. type: verbatim
22516 #: ../fish/guestfish-actions.pod:744
22517 #, no-wrap
22518 msgid ""
22519 " config qemuparam qemuvalue\n"
22520 "\n"
22521 msgstr ""
22522
22523 #. type: =head2
22524 #: ../fish/guestfish-actions.pod:755
22525 msgid "copy-size"
22526 msgstr ""
22527
22528 #. type: verbatim
22529 #: ../fish/guestfish-actions.pod:757
22530 #, no-wrap
22531 msgid ""
22532 " copy-size src dest size\n"
22533 "\n"
22534 msgstr ""
22535
22536 #. type: =head2
22537 #: ../fish/guestfish-actions.pod:765
22538 msgid "cp"
22539 msgstr ""
22540
22541 #. type: verbatim
22542 #: ../fish/guestfish-actions.pod:767
22543 #, no-wrap
22544 msgid ""
22545 " cp src dest\n"
22546 "\n"
22547 msgstr ""
22548
22549 #. type: =head2
22550 #: ../fish/guestfish-actions.pod:772
22551 msgid "cp-a"
22552 msgstr ""
22553
22554 #. type: verbatim
22555 #: ../fish/guestfish-actions.pod:774
22556 #, no-wrap
22557 msgid ""
22558 " cp-a src dest\n"
22559 "\n"
22560 msgstr ""
22561
22562 #. type: =head2
22563 #: ../fish/guestfish-actions.pod:779
22564 msgid "dd"
22565 msgstr ""
22566
22567 #. type: verbatim
22568 #: ../fish/guestfish-actions.pod:781
22569 #, no-wrap
22570 msgid ""
22571 " dd src dest\n"
22572 "\n"
22573 msgstr ""
22574
22575 #. type: textblock
22576 #: ../fish/guestfish-actions.pod:788
22577 msgid ""
22578 "If the destination is a device, it must be as large or larger than the "
22579 "source file or device, otherwise the copy will fail.  This command cannot do "
22580 "partial copies (see L</copy-size>)."
22581 msgstr ""
22582
22583 #. type: =head2
22584 #: ../fish/guestfish-actions.pod:792
22585 msgid "df"
22586 msgstr ""
22587
22588 #. type: verbatim
22589 #: ../fish/guestfish-actions.pod:794
22590 #, no-wrap
22591 msgid ""
22592 " df\n"
22593 "\n"
22594 msgstr ""
22595
22596 #. type: textblock
22597 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
22598 msgid ""
22599 "This command is mostly useful for interactive sessions.  It is I<not> "
22600 "intended that you try to parse the output string.  Use L</statvfs> from "
22601 "programs."
22602 msgstr ""
22603
22604 #. type: =head2
22605 #: ../fish/guestfish-actions.pod:802
22606 msgid "df-h"
22607 msgstr ""
22608
22609 #. type: verbatim
22610 #: ../fish/guestfish-actions.pod:804
22611 #, no-wrap
22612 msgid ""
22613 " df-h\n"
22614 "\n"
22615 msgstr ""
22616
22617 #. type: =head2
22618 #: ../fish/guestfish-actions.pod:813
22619 msgid "dmesg"
22620 msgstr ""
22621
22622 #. type: verbatim
22623 #: ../fish/guestfish-actions.pod:815
22624 #, no-wrap
22625 msgid ""
22626 " dmesg\n"
22627 "\n"
22628 msgstr ""
22629
22630 #. type: textblock
22631 #: ../fish/guestfish-actions.pod:821
22632 msgid ""
22633 "Another way to get the same information is to enable verbose messages with "
22634 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22635 "before running the program."
22636 msgstr ""
22637
22638 #. type: =head2
22639 #: ../fish/guestfish-actions.pod:826
22640 msgid "download"
22641 msgstr ""
22642
22643 #. type: verbatim
22644 #: ../fish/guestfish-actions.pod:828
22645 #, no-wrap
22646 msgid ""
22647 " download remotefilename (filename|-)\n"
22648 "\n"
22649 msgstr ""
22650
22651 #. type: textblock
22652 #: ../fish/guestfish-actions.pod:835
22653 msgid "See also L</upload>, L</cat>."
22654 msgstr ""
22655
22656 #. type: =head2
22657 #: ../fish/guestfish-actions.pod:839
22658 msgid "download-offset"
22659 msgstr ""
22660
22661 #. type: verbatim
22662 #: ../fish/guestfish-actions.pod:841
22663 #, no-wrap
22664 msgid ""
22665 " download-offset remotefilename (filename|-) offset size\n"
22666 "\n"
22667 msgstr ""
22668
22669 #. type: textblock
22670 #: ../fish/guestfish-actions.pod:849
22671 msgid ""
22672 "Note that there is no limit on the amount of data that can be downloaded "
22673 "with this call, unlike with L</pread>, and this call always reads the full "
22674 "amount unless an error occurs."
22675 msgstr ""
22676
22677 #. type: textblock
22678 #: ../fish/guestfish-actions.pod:854
22679 msgid "See also L</download>, L</pread>."
22680 msgstr ""
22681
22682 #. type: =head2
22683 #: ../fish/guestfish-actions.pod:858
22684 msgid "drop-caches"
22685 msgstr ""
22686
22687 #. type: verbatim
22688 #: ../fish/guestfish-actions.pod:860
22689 #, no-wrap
22690 msgid ""
22691 " drop-caches whattodrop\n"
22692 "\n"
22693 msgstr ""
22694
22695 #. type: =head2
22696 #: ../fish/guestfish-actions.pod:872
22697 msgid "du"
22698 msgstr ""
22699
22700 #. type: verbatim
22701 #: ../fish/guestfish-actions.pod:874
22702 #, no-wrap
22703 msgid ""
22704 " du path\n"
22705 "\n"
22706 msgstr ""
22707
22708 #. type: =head2
22709 #: ../fish/guestfish-actions.pod:886
22710 msgid "e2fsck-f"
22711 msgstr ""
22712
22713 #. type: verbatim
22714 #: ../fish/guestfish-actions.pod:888
22715 #, no-wrap
22716 msgid ""
22717 " e2fsck-f device\n"
22718 "\n"
22719 msgstr ""
22720
22721 #. type: textblock
22722 #: ../fish/guestfish-actions.pod:894
22723 msgid ""
22724 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22725 "should use L</fsck>."
22726 msgstr ""
22727
22728 #. type: =head2
22729 #: ../fish/guestfish-actions.pod:897
22730 msgid "echo-daemon"
22731 msgstr ""
22732
22733 #. type: verbatim
22734 #: ../fish/guestfish-actions.pod:899
22735 #, no-wrap
22736 msgid ""
22737 " echo-daemon 'words ...'\n"
22738 "\n"
22739 msgstr ""
22740
22741 #. type: textblock
22742 #: ../fish/guestfish-actions.pod:906
22743 msgid "See also L</ping-daemon>."
22744 msgstr ""
22745
22746 #. type: =head2
22747 #: ../fish/guestfish-actions.pod:908
22748 msgid "egrep"
22749 msgstr ""
22750
22751 #. type: verbatim
22752 #: ../fish/guestfish-actions.pod:910
22753 #, no-wrap
22754 msgid ""
22755 " egrep regex path\n"
22756 "\n"
22757 msgstr ""
22758
22759 #. type: =head2
22760 #: ../fish/guestfish-actions.pod:918
22761 msgid "egrepi"
22762 msgstr ""
22763
22764 #. type: verbatim
22765 #: ../fish/guestfish-actions.pod:920
22766 #, no-wrap
22767 msgid ""
22768 " egrepi regex path\n"
22769 "\n"
22770 msgstr ""
22771
22772 #. type: =head2
22773 #: ../fish/guestfish-actions.pod:928
22774 msgid "equal"
22775 msgstr ""
22776
22777 #. type: verbatim
22778 #: ../fish/guestfish-actions.pod:930
22779 #, no-wrap
22780 msgid ""
22781 " equal file1 file2\n"
22782 "\n"
22783 msgstr ""
22784
22785 #. type: =head2
22786 #: ../fish/guestfish-actions.pod:937
22787 msgid "exists"
22788 msgstr ""
22789
22790 #. type: verbatim
22791 #: ../fish/guestfish-actions.pod:939
22792 #, no-wrap
22793 msgid ""
22794 " exists path\n"
22795 "\n"
22796 msgstr ""
22797
22798 #. type: textblock
22799 #: ../fish/guestfish-actions.pod:944
22800 msgid "See also L</is-file>, L</is-dir>, L</stat>."
22801 msgstr ""
22802
22803 #. type: =head2
22804 #: ../fish/guestfish-actions.pod:946
22805 msgid "fallocate"
22806 msgstr ""
22807
22808 #. type: verbatim
22809 #: ../fish/guestfish-actions.pod:948
22810 #, no-wrap
22811 msgid ""
22812 " fallocate path len\n"
22813 "\n"
22814 msgstr ""
22815
22816 #. type: =head2
22817 #: ../fish/guestfish-actions.pod:965
22818 msgid "fallocate64"
22819 msgstr ""
22820
22821 #. type: verbatim
22822 #: ../fish/guestfish-actions.pod:967
22823 #, no-wrap
22824 msgid ""
22825 " fallocate64 path len\n"
22826 "\n"
22827 msgstr ""
22828
22829 #. type: textblock
22830 #: ../fish/guestfish-actions.pod:973
22831 msgid ""
22832 "Note that this call allocates disk blocks for the file.  To create a sparse "
22833 "file use L</truncate-size> instead."
22834 msgstr ""
22835
22836 #. type: textblock
22837 #: ../fish/guestfish-actions.pod:976
22838 msgid ""
22839 "The deprecated call L</fallocate> does the same, but owing to an oversight "
22840 "it only allowed 30 bit lengths to be specified, effectively limiting the "
22841 "maximum size of files created through that call to 1GB."
22842 msgstr ""
22843
22844 #. type: =head2
22845 #: ../fish/guestfish-actions.pod:985
22846 msgid "fgrep"
22847 msgstr ""
22848
22849 #. type: verbatim
22850 #: ../fish/guestfish-actions.pod:987
22851 #, no-wrap
22852 msgid ""
22853 " fgrep pattern path\n"
22854 "\n"
22855 msgstr ""
22856
22857 #. type: =head2
22858 #: ../fish/guestfish-actions.pod:995
22859 msgid "fgrepi"
22860 msgstr ""
22861
22862 #. type: verbatim
22863 #: ../fish/guestfish-actions.pod:997
22864 #, no-wrap
22865 msgid ""
22866 " fgrepi pattern path\n"
22867 "\n"
22868 msgstr ""
22869
22870 #. type: =head2
22871 #: ../fish/guestfish-actions.pod:1005
22872 msgid "file"
22873 msgstr ""
22874
22875 #. type: verbatim
22876 #: ../fish/guestfish-actions.pod:1007
22877 #, no-wrap
22878 msgid ""
22879 " file path\n"
22880 "\n"
22881 msgstr ""
22882
22883 #. type: textblock
22884 #: ../fish/guestfish-actions.pod:1023
22885 msgid ""
22886 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
22887 "(etc), L</is-zero>."
22888 msgstr ""
22889
22890 #. type: =head2
22891 #: ../fish/guestfish-actions.pod:1026
22892 msgid "file-architecture"
22893 msgstr ""
22894
22895 #. type: verbatim
22896 #: ../fish/guestfish-actions.pod:1028
22897 #, no-wrap
22898 msgid ""
22899 " file-architecture filename\n"
22900 "\n"
22901 msgstr ""
22902
22903 #. type: =head2
22904 #: ../fish/guestfish-actions.pod:1131
22905 msgid "filesize"
22906 msgstr ""
22907
22908 #. type: verbatim
22909 #: ../fish/guestfish-actions.pod:1133
22910 #, no-wrap
22911 msgid ""
22912 " filesize file\n"
22913 "\n"
22914 msgstr ""
22915
22916 #. type: textblock
22917 #: ../fish/guestfish-actions.pod:1137
22918 msgid ""
22919 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
22920 "L</is-file> etc.  To get the size of block devices, use "
22921 "L</blockdev-getsize64>."
22922 msgstr ""
22923
22924 #. type: =head2
22925 #: ../fish/guestfish-actions.pod:1141
22926 msgid "fill"
22927 msgstr ""
22928
22929 #. type: verbatim
22930 #: ../fish/guestfish-actions.pod:1143
22931 #, no-wrap
22932 msgid ""
22933 " fill c len path\n"
22934 "\n"
22935 msgstr ""
22936
22937 #. type: textblock
22938 #: ../fish/guestfish-actions.pod:1149
22939 msgid ""
22940 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
22941 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
22942 "L</fill-pattern>."
22943 msgstr ""
22944
22945 #. type: =head2
22946 #: ../fish/guestfish-actions.pod:1154
22947 msgid "fill-pattern"
22948 msgstr ""
22949
22950 #. type: verbatim
22951 #: ../fish/guestfish-actions.pod:1156
22952 #, no-wrap
22953 msgid ""
22954 " fill-pattern pattern len path\n"
22955 "\n"
22956 msgstr ""
22957
22958 #. type: textblock
22959 #: ../fish/guestfish-actions.pod:1158
22960 msgid ""
22961 "This function is like L</fill> except that it creates a new file of length "
22962 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
22963 "is truncated if necessary to ensure the length of the file is exactly C<len> "
22964 "bytes."
22965 msgstr ""
22966
22967 #. type: =head2
22968 #: ../fish/guestfish-actions.pod:1163
22969 msgid "find"
22970 msgstr ""
22971
22972 #. type: verbatim
22973 #: ../fish/guestfish-actions.pod:1165
22974 #, no-wrap
22975 msgid ""
22976 " find directory\n"
22977 "\n"
22978 msgstr ""
22979
22980 #. type: textblock
22981 #: ../fish/guestfish-actions.pod:1179
22982 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
22983 msgstr ""
22984
22985 #. type: textblock
22986 #: ../fish/guestfish-actions.pod:1192
22987 msgid "See also L</find0>."
22988 msgstr ""
22989
22990 #. type: =head2
22991 #: ../fish/guestfish-actions.pod:1197
22992 msgid "find0"
22993 msgstr ""
22994
22995 #. type: verbatim
22996 #: ../fish/guestfish-actions.pod:1199
22997 #, no-wrap
22998 msgid ""
22999 " find0 directory (files|-)\n"
23000 "\n"
23001 msgstr ""
23002
23003 #. type: textblock
23004 #: ../fish/guestfish-actions.pod:1205
23005 msgid "This command works the same way as L</find> with the following exceptions:"
23006 msgstr ""
23007
23008 #. type: =head2
23009 #: ../fish/guestfish-actions.pod:1232
23010 msgid "findfs-label"
23011 msgstr ""
23012
23013 #. type: verbatim
23014 #: ../fish/guestfish-actions.pod:1234
23015 #, no-wrap
23016 msgid ""
23017 " findfs-label label\n"
23018 "\n"
23019 msgstr ""
23020
23021 #. type: textblock
23022 #: ../fish/guestfish-actions.pod:1240
23023 msgid "To find the label of a filesystem, use L</vfs-label>."
23024 msgstr ""
23025
23026 #. type: =head2
23027 #: ../fish/guestfish-actions.pod:1242
23028 msgid "findfs-uuid"
23029 msgstr ""
23030
23031 #. type: verbatim
23032 #: ../fish/guestfish-actions.pod:1244
23033 #, no-wrap
23034 msgid ""
23035 " findfs-uuid uuid\n"
23036 "\n"
23037 msgstr ""
23038
23039 #. type: textblock
23040 #: ../fish/guestfish-actions.pod:1250
23041 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23042 msgstr ""
23043
23044 #. type: =head2
23045 #: ../fish/guestfish-actions.pod:1252
23046 msgid "fsck"
23047 msgstr ""
23048
23049 #. type: verbatim
23050 #: ../fish/guestfish-actions.pod:1254
23051 #, no-wrap
23052 msgid ""
23053 " fsck fstype device\n"
23054 "\n"
23055 msgstr ""
23056
23057 #. type: =head2
23058 #: ../fish/guestfish-actions.pod:1284
23059 msgid "get-append"
23060 msgstr ""
23061
23062 #. type: verbatim
23063 #: ../fish/guestfish-actions.pod:1286
23064 #, no-wrap
23065 msgid ""
23066 " get-append\n"
23067 "\n"
23068 msgstr ""
23069
23070 #. type: =head2
23071 #: ../fish/guestfish-actions.pod:1293
23072 msgid "get-attach-method"
23073 msgstr ""
23074
23075 #. type: verbatim
23076 #: ../fish/guestfish-actions.pod:1295
23077 #, no-wrap
23078 msgid ""
23079 " get-attach-method\n"
23080 "\n"
23081 msgstr ""
23082
23083 #. type: textblock
23084 #: ../fish/guestfish-actions.pod:1297
23085 msgid "Return the current attach method.  See L</set-attach-method>."
23086 msgstr ""
23087
23088 #. type: =head2
23089 #: ../fish/guestfish-actions.pod:1299
23090 msgid "get-autosync"
23091 msgstr ""
23092
23093 #. type: verbatim
23094 #: ../fish/guestfish-actions.pod:1301
23095 #, no-wrap
23096 msgid ""
23097 " get-autosync\n"
23098 "\n"
23099 msgstr ""
23100
23101 #. type: =head2
23102 #: ../fish/guestfish-actions.pod:1305
23103 msgid "get-direct"
23104 msgstr ""
23105
23106 #. type: verbatim
23107 #: ../fish/guestfish-actions.pod:1307
23108 #, no-wrap
23109 msgid ""
23110 " get-direct\n"
23111 "\n"
23112 msgstr ""
23113
23114 #. type: =head2
23115 #: ../fish/guestfish-actions.pod:1311
23116 msgid "get-e2label"
23117 msgstr ""
23118
23119 #. type: verbatim
23120 #: ../fish/guestfish-actions.pod:1313
23121 #, no-wrap
23122 msgid ""
23123 " get-e2label device\n"
23124 "\n"
23125 msgstr ""
23126
23127 #. type: =head2
23128 #: ../fish/guestfish-actions.pod:1325
23129 msgid "get-e2uuid"
23130 msgstr ""
23131
23132 #. type: verbatim
23133 #: ../fish/guestfish-actions.pod:1327
23134 #, no-wrap
23135 msgid ""
23136 " get-e2uuid device\n"
23137 "\n"
23138 msgstr ""
23139
23140 #. type: =head2
23141 #: ../fish/guestfish-actions.pod:1339
23142 msgid "get-memsize"
23143 msgstr ""
23144
23145 #. type: verbatim
23146 #: ../fish/guestfish-actions.pod:1341
23147 #, no-wrap
23148 msgid ""
23149 " get-memsize\n"
23150 "\n"
23151 msgstr ""
23152
23153 #. type: textblock
23154 #: ../fish/guestfish-actions.pod:1346
23155 msgid ""
23156 "If L</set-memsize> was not called on this handle, and if "
23157 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23158 "value for memsize."
23159 msgstr ""
23160
23161 #. type: =head2
23162 #: ../fish/guestfish-actions.pod:1353
23163 msgid "get-network"
23164 msgstr ""
23165
23166 #. type: verbatim
23167 #: ../fish/guestfish-actions.pod:1355
23168 #, no-wrap
23169 msgid ""
23170 " get-network\n"
23171 "\n"
23172 msgstr ""
23173
23174 #. type: =head2
23175 #: ../fish/guestfish-actions.pod:1359
23176 msgid "get-path"
23177 msgstr ""
23178
23179 #. type: verbatim
23180 #: ../fish/guestfish-actions.pod:1361
23181 #, no-wrap
23182 msgid ""
23183 " get-path\n"
23184 "\n"
23185 msgstr ""
23186
23187 #. type: =head2
23188 #: ../fish/guestfish-actions.pod:1368
23189 msgid "get-pid"
23190 msgstr ""
23191
23192 #. type: =head2
23193 #: ../fish/guestfish-actions.pod:1370
23194 msgid "pid"
23195 msgstr ""
23196
23197 #. type: verbatim
23198 #: ../fish/guestfish-actions.pod:1372
23199 #, no-wrap
23200 msgid ""
23201 " get-pid\n"
23202 "\n"
23203 msgstr ""
23204
23205 #. type: =head2
23206 #: ../fish/guestfish-actions.pod:1379
23207 msgid "get-qemu"
23208 msgstr ""
23209
23210 #. type: verbatim
23211 #: ../fish/guestfish-actions.pod:1381
23212 #, no-wrap
23213 msgid ""
23214 " get-qemu\n"
23215 "\n"
23216 msgstr ""
23217
23218 #. type: =head2
23219 #: ../fish/guestfish-actions.pod:1388
23220 msgid "get-recovery-proc"
23221 msgstr ""
23222
23223 #. type: verbatim
23224 #: ../fish/guestfish-actions.pod:1390
23225 #, no-wrap
23226 msgid ""
23227 " get-recovery-proc\n"
23228 "\n"
23229 msgstr ""
23230
23231 #. type: =head2
23232 #: ../fish/guestfish-actions.pod:1394
23233 msgid "get-selinux"
23234 msgstr ""
23235
23236 #. type: verbatim
23237 #: ../fish/guestfish-actions.pod:1396
23238 #, no-wrap
23239 msgid ""
23240 " get-selinux\n"
23241 "\n"
23242 msgstr ""
23243
23244 #. type: textblock
23245 #: ../fish/guestfish-actions.pod:1398
23246 msgid ""
23247 "This returns the current setting of the selinux flag which is passed to the "
23248 "appliance at boot time.  See L</set-selinux>."
23249 msgstr ""
23250
23251 #. type: =head2
23252 #: ../fish/guestfish-actions.pod:1404
23253 msgid "get-state"
23254 msgstr ""
23255
23256 #. type: verbatim
23257 #: ../fish/guestfish-actions.pod:1406
23258 #, no-wrap
23259 msgid ""
23260 " get-state\n"
23261 "\n"
23262 msgstr ""
23263
23264 #. type: =head2
23265 #: ../fish/guestfish-actions.pod:1413
23266 msgid "get-trace"
23267 msgstr ""
23268
23269 #. type: verbatim
23270 #: ../fish/guestfish-actions.pod:1415
23271 #, no-wrap
23272 msgid ""
23273 " get-trace\n"
23274 "\n"
23275 msgstr ""
23276
23277 #. type: =head2
23278 #: ../fish/guestfish-actions.pod:1419
23279 msgid "get-umask"
23280 msgstr ""
23281
23282 #. type: verbatim
23283 #: ../fish/guestfish-actions.pod:1421
23284 #, no-wrap
23285 msgid ""
23286 " get-umask\n"
23287 "\n"
23288 msgstr ""
23289
23290 #. type: textblock
23291 #: ../fish/guestfish-actions.pod:1423
23292 msgid ""
23293 "Return the current umask.  By default the umask is C<022> unless it has been "
23294 "set by calling L</umask>."
23295 msgstr ""
23296
23297 #. type: =head2
23298 #: ../fish/guestfish-actions.pod:1426
23299 msgid "get-verbose"
23300 msgstr ""
23301
23302 #. type: verbatim
23303 #: ../fish/guestfish-actions.pod:1428
23304 #, no-wrap
23305 msgid ""
23306 " get-verbose\n"
23307 "\n"
23308 msgstr ""
23309
23310 #. type: =head2
23311 #: ../fish/guestfish-actions.pod:1432
23312 msgid "getcon"
23313 msgstr ""
23314
23315 #. type: verbatim
23316 #: ../fish/guestfish-actions.pod:1434
23317 #, no-wrap
23318 msgid ""
23319 " getcon\n"
23320 "\n"
23321 msgstr ""
23322
23323 #. type: textblock
23324 #: ../fish/guestfish-actions.pod:1438
23325 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23326 msgstr ""
23327
23328 #. type: =head2
23329 #: ../fish/guestfish-actions.pod:1441
23330 msgid "getxattr"
23331 msgstr ""
23332
23333 #. type: verbatim
23334 #: ../fish/guestfish-actions.pod:1443
23335 #, no-wrap
23336 msgid ""
23337 " getxattr path name\n"
23338 "\n"
23339 msgstr ""
23340
23341 #. type: textblock
23342 #: ../fish/guestfish-actions.pod:1445
23343 msgid ""
23344 "Get a single extended attribute from file C<path> named C<name>.  This call "
23345 "follows symlinks.  If you want to lookup an extended attribute for the "
23346 "symlink itself, use L</lgetxattr>."
23347 msgstr ""
23348
23349 #. type: textblock
23350 #: ../fish/guestfish-actions.pod:1449 ../fish/guestfish-actions.pod:2476
23351 msgid ""
23352 "Normally it is better to get all extended attributes from a file in one go "
23353 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23354 "buggy and do not provide a way to list out attributes.  For these "
23355 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23356 "attributes you want in advance and call this function."
23357 msgstr ""
23358
23359 #. type: textblock
23360 #: ../fish/guestfish-actions.pod:1459
23361 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23362 msgstr ""
23363
23364 #. type: =head2
23365 #: ../fish/guestfish-actions.pod:1461
23366 msgid "getxattrs"
23367 msgstr ""
23368
23369 #. type: verbatim
23370 #: ../fish/guestfish-actions.pod:1463
23371 #, no-wrap
23372 msgid ""
23373 " getxattrs path\n"
23374 "\n"
23375 msgstr ""
23376
23377 #. type: textblock
23378 #: ../fish/guestfish-actions.pod:1471
23379 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23380 msgstr ""
23381
23382 #. type: =head2
23383 #: ../fish/guestfish-actions.pod:1473
23384 msgid "glob-expand"
23385 msgstr ""
23386
23387 #. type: verbatim
23388 #: ../fish/guestfish-actions.pod:1475
23389 #, no-wrap
23390 msgid ""
23391 " glob-expand pattern\n"
23392 "\n"
23393 msgstr ""
23394
23395 #. type: =head2
23396 #: ../fish/guestfish-actions.pod:1488
23397 msgid "grep"
23398 msgstr ""
23399
23400 #. type: verbatim
23401 #: ../fish/guestfish-actions.pod:1490
23402 #, no-wrap
23403 msgid ""
23404 " grep regex path\n"
23405 "\n"
23406 msgstr ""
23407
23408 #. type: =head2
23409 #: ../fish/guestfish-actions.pod:1498
23410 msgid "grepi"
23411 msgstr ""
23412
23413 #. type: verbatim
23414 #: ../fish/guestfish-actions.pod:1500
23415 #, no-wrap
23416 msgid ""
23417 " grepi regex path\n"
23418 "\n"
23419 msgstr ""
23420
23421 #. type: =head2
23422 #: ../fish/guestfish-actions.pod:1508
23423 msgid "grub-install"
23424 msgstr ""
23425
23426 #. type: verbatim
23427 #: ../fish/guestfish-actions.pod:1510
23428 #, no-wrap
23429 msgid ""
23430 " grub-install root device\n"
23431 "\n"
23432 msgstr ""
23433
23434 #. type: =head2
23435 #: ../fish/guestfish-actions.pod:1526
23436 msgid "head"
23437 msgstr ""
23438
23439 #. type: verbatim
23440 #: ../fish/guestfish-actions.pod:1528
23441 #, no-wrap
23442 msgid ""
23443 " head path\n"
23444 "\n"
23445 msgstr ""
23446
23447 #. type: =head2
23448 #: ../fish/guestfish-actions.pod:1536
23449 msgid "head-n"
23450 msgstr ""
23451
23452 #. type: verbatim
23453 #: ../fish/guestfish-actions.pod:1538
23454 #, no-wrap
23455 msgid ""
23456 " head-n nrlines path\n"
23457 "\n"
23458 msgstr ""
23459
23460 #. type: =head2
23461 #: ../fish/guestfish-actions.pod:1551
23462 msgid "hexdump"
23463 msgstr ""
23464
23465 #. type: verbatim
23466 #: ../fish/guestfish-actions.pod:1553
23467 #, no-wrap
23468 msgid ""
23469 " hexdump path\n"
23470 "\n"
23471 msgstr ""
23472
23473 #. type: =head2
23474 #: ../fish/guestfish-actions.pod:1561
23475 msgid "initrd-cat"
23476 msgstr ""
23477
23478 #. type: verbatim
23479 #: ../fish/guestfish-actions.pod:1563
23480 #, no-wrap
23481 msgid ""
23482 " initrd-cat initrdpath filename\n"
23483 "\n"
23484 msgstr ""
23485
23486 #. type: textblock
23487 #: ../fish/guestfish-actions.pod:1575
23488 msgid "See also L</initrd-list>."
23489 msgstr ""
23490
23491 #. type: =head2
23492 #: ../fish/guestfish-actions.pod:1580
23493 msgid "initrd-list"
23494 msgstr ""
23495
23496 #. type: verbatim
23497 #: ../fish/guestfish-actions.pod:1582
23498 #, no-wrap
23499 msgid ""
23500 " initrd-list path\n"
23501 "\n"
23502 msgstr ""
23503
23504 #. type: =head2
23505 #: ../fish/guestfish-actions.pod:1594
23506 msgid "inotify-add-watch"
23507 msgstr ""
23508
23509 #. type: verbatim
23510 #: ../fish/guestfish-actions.pod:1596
23511 #, no-wrap
23512 msgid ""
23513 " inotify-add-watch path mask\n"
23514 "\n"
23515 msgstr ""
23516
23517 #. type: =head2
23518 #: ../fish/guestfish-actions.pod:1608
23519 msgid "inotify-close"
23520 msgstr ""
23521
23522 #. type: verbatim
23523 #: ../fish/guestfish-actions.pod:1610
23524 #, no-wrap
23525 msgid ""
23526 " inotify-close\n"
23527 "\n"
23528 msgstr ""
23529
23530 #. type: =head2
23531 #: ../fish/guestfish-actions.pod:1616
23532 msgid "inotify-files"
23533 msgstr ""
23534
23535 #. type: verbatim
23536 #: ../fish/guestfish-actions.pod:1618
23537 #, no-wrap
23538 msgid ""
23539 " inotify-files\n"
23540 "\n"
23541 msgstr ""
23542
23543 #. type: textblock
23544 #: ../fish/guestfish-actions.pod:1620
23545 msgid ""
23546 "This function is a helpful wrapper around L</inotify-read> which just "
23547 "returns a list of pathnames of objects that were touched.  The returned "
23548 "pathnames are sorted and deduplicated."
23549 msgstr ""
23550
23551 #. type: =head2
23552 #: ../fish/guestfish-actions.pod:1624
23553 msgid "inotify-init"
23554 msgstr ""
23555
23556 #. type: verbatim
23557 #: ../fish/guestfish-actions.pod:1626
23558 #, no-wrap
23559 msgid ""
23560 " inotify-init maxevents\n"
23561 "\n"
23562 msgstr ""
23563
23564 #. type: textblock
23565 #: ../fish/guestfish-actions.pod:1632
23566 msgid ""
23567 "C<maxevents> is the maximum number of events which will be queued up between "
23568 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23569 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23570 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23571 "but records the fact that it threw them away by setting a flag "
23572 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23573 msgstr ""
23574
23575 #. type: textblock
23576 #: ../fish/guestfish-actions.pod:1642
23577 msgid ""
23578 "Before any events are generated, you have to add some watches to the "
23579 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23580 "L</inotify-watch-all>."
23581 msgstr ""
23582
23583 #. type: textblock
23584 #: ../fish/guestfish-actions.pod:1648
23585 msgid ""
23586 "Queued up events should be read periodically by calling L</inotify-read> (or "
23587 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23588 "If you don't read the events out often enough then you risk the internal "
23589 "queue overflowing."
23590 msgstr ""
23591
23592 #. type: textblock
23593 #: ../fish/guestfish-actions.pod:1655
23594 msgid ""
23595 "The handle should be closed after use by calling L</inotify-close>.  This "
23596 "also removes any watches automatically."
23597 msgstr ""
23598
23599 #. type: =head2
23600 #: ../fish/guestfish-actions.pod:1664
23601 msgid "inotify-read"
23602 msgstr ""
23603
23604 #. type: verbatim
23605 #: ../fish/guestfish-actions.pod:1666
23606 #, no-wrap
23607 msgid ""
23608 " inotify-read\n"
23609 "\n"
23610 msgstr ""
23611
23612 #. type: =head2
23613 #: ../fish/guestfish-actions.pod:1679
23614 msgid "inotify-rm-watch"
23615 msgstr ""
23616
23617 #. type: verbatim
23618 #: ../fish/guestfish-actions.pod:1681
23619 #, no-wrap
23620 msgid ""
23621 " inotify-rm-watch wd\n"
23622 "\n"
23623 msgstr ""
23624
23625 #. type: textblock
23626 #: ../fish/guestfish-actions.pod:1683
23627 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23628 msgstr ""
23629
23630 #. type: =head2
23631 #: ../fish/guestfish-actions.pod:1686
23632 msgid "inspect-get-arch"
23633 msgstr ""
23634
23635 #. type: verbatim
23636 #: ../fish/guestfish-actions.pod:1688
23637 #, no-wrap
23638 msgid ""
23639 " inspect-get-arch root\n"
23640 "\n"
23641 msgstr ""
23642
23643 #. type: textblock
23644 #: ../fish/guestfish-actions.pod:1690
23645 msgid ""
23646 "This returns the architecture of the inspected operating system.  The "
23647 "possible return values are listed under L</file-architecture>."
23648 msgstr ""
23649
23650 #. type: =head2
23651 #: ../fish/guestfish-actions.pod:1699
23652 msgid "inspect-get-distro"
23653 msgstr ""
23654
23655 #. type: verbatim
23656 #: ../fish/guestfish-actions.pod:1701
23657 #, no-wrap
23658 msgid ""
23659 " inspect-get-distro root\n"
23660 "\n"
23661 msgstr ""
23662
23663 #. type: =head2
23664 #: ../fish/guestfish-actions.pod:1782
23665 msgid "inspect-get-drive-mappings"
23666 msgstr ""
23667
23668 #. type: verbatim
23669 #: ../fish/guestfish-actions.pod:1784
23670 #, no-wrap
23671 msgid ""
23672 " inspect-get-drive-mappings root\n"
23673 "\n"
23674 msgstr ""
23675
23676 #. type: textblock
23677 #: ../fish/guestfish-actions.pod:1811
23678 msgid ""
23679 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23680 "L</inspect-get-mountpoints>, L</inspect-get-filesystems>."
23681 msgstr ""
23682
23683 #. type: =head2
23684 #: ../fish/guestfish-actions.pod:1815
23685 msgid "inspect-get-filesystems"
23686 msgstr ""
23687
23688 #. type: verbatim
23689 #: ../fish/guestfish-actions.pod:1817
23690 #, no-wrap
23691 msgid ""
23692 " inspect-get-filesystems root\n"
23693 "\n"
23694 msgstr ""
23695
23696 #. type: textblock
23697 #: ../fish/guestfish-actions.pod:1827
23698 msgid ""
23699 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23700 "L</inspect-get-mountpoints>."
23701 msgstr ""
23702
23703 #. type: =head2
23704 #: ../fish/guestfish-actions.pod:1830
23705 msgid "inspect-get-format"
23706 msgstr ""
23707
23708 #. type: verbatim
23709 #: ../fish/guestfish-actions.pod:1832
23710 #, no-wrap
23711 msgid ""
23712 " inspect-get-format root\n"
23713 "\n"
23714 msgstr ""
23715
23716 #. type: =head2
23717 #: ../fish/guestfish-actions.pod:1861
23718 msgid "inspect-get-hostname"
23719 msgstr ""
23720
23721 #. type: verbatim
23722 #: ../fish/guestfish-actions.pod:1863
23723 #, no-wrap
23724 msgid ""
23725 " inspect-get-hostname root\n"
23726 "\n"
23727 msgstr ""
23728
23729 #. type: =head2
23730 #: ../fish/guestfish-actions.pod:1873
23731 msgid "inspect-get-icon"
23732 msgstr ""
23733
23734 #. type: verbatim
23735 #: ../fish/guestfish-actions.pod:1875
23736 #, no-wrap
23737 msgid ""
23738 " inspect-get-icon root [favicon:..] [highquality:..]\n"
23739 "\n"
23740 msgstr ""
23741
23742 #. type: =head2
23743 #: ../fish/guestfish-actions.pod:1939
23744 msgid "inspect-get-major-version"
23745 msgstr ""
23746
23747 #. type: verbatim
23748 #: ../fish/guestfish-actions.pod:1941
23749 #, no-wrap
23750 msgid ""
23751 " inspect-get-major-version root\n"
23752 "\n"
23753 msgstr ""
23754
23755 #. type: =head2
23756 #: ../fish/guestfish-actions.pod:1957
23757 msgid "inspect-get-minor-version"
23758 msgstr ""
23759
23760 #. type: verbatim
23761 #: ../fish/guestfish-actions.pod:1959
23762 #, no-wrap
23763 msgid ""
23764 " inspect-get-minor-version root\n"
23765 "\n"
23766 msgstr ""
23767
23768 #. type: textblock
23769 #: ../fish/guestfish-actions.pod:1966
23770 msgid ""
23771 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23772 "L</inspect-get-major-version>."
23773 msgstr ""
23774
23775 #. type: =head2
23776 #: ../fish/guestfish-actions.pod:1969
23777 msgid "inspect-get-mountpoints"
23778 msgstr ""
23779
23780 #. type: verbatim
23781 #: ../fish/guestfish-actions.pod:1971
23782 #, no-wrap
23783 msgid ""
23784 " inspect-get-mountpoints root\n"
23785 "\n"
23786 msgstr ""
23787
23788 #. type: textblock
23789 #: ../fish/guestfish-actions.pod:1990
23790 msgid ""
23791 "For operating systems like Windows which still use drive letters, this call "
23792 "will only return an entry for the first drive \"mounted on\" C</>.  For "
23793 "information about the mapping of drive letters to partitions, see "
23794 "L</inspect-get-drive-mappings>."
23795 msgstr ""
23796
23797 #. type: textblock
23798 #: ../fish/guestfish-actions.pod:1996
23799 msgid ""
23800 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23801 "L</inspect-get-filesystems>."
23802 msgstr ""
23803
23804 #. type: =head2
23805 #: ../fish/guestfish-actions.pod:1999
23806 msgid "inspect-get-package-format"
23807 msgstr ""
23808
23809 #. type: verbatim
23810 #: ../fish/guestfish-actions.pod:2001
23811 #, no-wrap
23812 msgid ""
23813 " inspect-get-package-format root\n"
23814 "\n"
23815 msgstr ""
23816
23817 #. type: textblock
23818 #: ../fish/guestfish-actions.pod:2003
23819 msgid ""
23820 "This function and L</inspect-get-package-management> return the package "
23821 "format and package management tool used by the inspected operating system.  "
23822 "For example for Fedora these functions would return C<rpm> (package format) "
23823 "and C<yum> (package management)."
23824 msgstr ""
23825
23826 #. type: =head2
23827 #: ../fish/guestfish-actions.pod:2018
23828 msgid "inspect-get-package-management"
23829 msgstr ""
23830
23831 #. type: verbatim
23832 #: ../fish/guestfish-actions.pod:2020
23833 #, no-wrap
23834 msgid ""
23835 " inspect-get-package-management root\n"
23836 "\n"
23837 msgstr ""
23838
23839 #. type: textblock
23840 #: ../fish/guestfish-actions.pod:2022
23841 msgid ""
23842 "L</inspect-get-package-format> and this function return the package format "
23843 "and package management tool used by the inspected operating system.  For "
23844 "example for Fedora these functions would return C<rpm> (package format) and "
23845 "C<yum> (package management)."
23846 msgstr ""
23847
23848 #. type: =head2
23849 #: ../fish/guestfish-actions.pod:2039
23850 msgid "inspect-get-product-name"
23851 msgstr ""
23852
23853 #. type: verbatim
23854 #: ../fish/guestfish-actions.pod:2041
23855 #, no-wrap
23856 msgid ""
23857 " inspect-get-product-name root\n"
23858 "\n"
23859 msgstr ""
23860
23861 #. type: =head2
23862 #: ../fish/guestfish-actions.pod:2053
23863 msgid "inspect-get-product-variant"
23864 msgstr ""
23865
23866 #. type: verbatim
23867 #: ../fish/guestfish-actions.pod:2055
23868 #, no-wrap
23869 msgid ""
23870 " inspect-get-product-variant root\n"
23871 "\n"
23872 msgstr ""
23873
23874 #. type: textblock
23875 #: ../fish/guestfish-actions.pod:2076
23876 msgid ""
23877 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23878 "L</inspect-get-product-name>, L</inspect-get-major-version>."
23879 msgstr ""
23880
23881 #. type: =head2
23882 #: ../fish/guestfish-actions.pod:2080
23883 msgid "inspect-get-roots"
23884 msgstr ""
23885
23886 #. type: verbatim
23887 #: ../fish/guestfish-actions.pod:2082
23888 #, no-wrap
23889 msgid ""
23890 " inspect-get-roots\n"
23891 "\n"
23892 msgstr ""
23893
23894 #. type: textblock
23895 #: ../fish/guestfish-actions.pod:2084
23896 msgid ""
23897 "This function is a convenient way to get the list of root devices, as "
23898 "returned from a previous call to L</inspect-os>, but without redoing the "
23899 "whole inspection process."
23900 msgstr ""
23901
23902 #. type: textblock
23903 #: ../fish/guestfish-actions.pod:2088
23904 msgid ""
23905 "This returns an empty list if either no root devices were found or the "
23906 "caller has not called L</inspect-os>."
23907 msgstr ""
23908
23909 #. type: =head2
23910 #: ../fish/guestfish-actions.pod:2093
23911 msgid "inspect-get-type"
23912 msgstr ""
23913
23914 #. type: verbatim
23915 #: ../fish/guestfish-actions.pod:2095
23916 #, no-wrap
23917 msgid ""
23918 " inspect-get-type root\n"
23919 "\n"
23920 msgstr ""
23921
23922 #. type: =head2
23923 #: ../fish/guestfish-actions.pod:2125
23924 msgid "inspect-get-windows-current-control-set"
23925 msgstr ""
23926
23927 #. type: verbatim
23928 #: ../fish/guestfish-actions.pod:2127
23929 #, no-wrap
23930 msgid ""
23931 " inspect-get-windows-current-control-set root\n"
23932 "\n"
23933 msgstr ""
23934
23935 #. type: =head2
23936 #: ../fish/guestfish-actions.pod:2138
23937 msgid "inspect-get-windows-systemroot"
23938 msgstr ""
23939
23940 #. type: verbatim
23941 #: ../fish/guestfish-actions.pod:2140
23942 #, no-wrap
23943 msgid ""
23944 " inspect-get-windows-systemroot root\n"
23945 "\n"
23946 msgstr ""
23947
23948 #. type: =head2
23949 #: ../fish/guestfish-actions.pod:2151
23950 msgid "inspect-is-live"
23951 msgstr ""
23952
23953 #. type: verbatim
23954 #: ../fish/guestfish-actions.pod:2153
23955 #, no-wrap
23956 msgid ""
23957 " inspect-is-live root\n"
23958 "\n"
23959 msgstr ""
23960
23961 #. type: textblock
23962 #: ../fish/guestfish-actions.pod:2155
23963 msgid ""
23964 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23965 "then this returns true if a live image was detected on the disk."
23966 msgstr ""
23967
23968 #. type: =head2
23969 #: ../fish/guestfish-actions.pod:2161
23970 msgid "inspect-is-multipart"
23971 msgstr ""
23972
23973 #. type: verbatim
23974 #: ../fish/guestfish-actions.pod:2163
23975 #, no-wrap
23976 msgid ""
23977 " inspect-is-multipart root\n"
23978 "\n"
23979 msgstr ""
23980
23981 #. type: textblock
23982 #: ../fish/guestfish-actions.pod:2165
23983 msgid ""
23984 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23985 "then this returns true if the disk is part of a set."
23986 msgstr ""
23987
23988 #. type: =head2
23989 #: ../fish/guestfish-actions.pod:2171
23990 msgid "inspect-is-netinst"
23991 msgstr ""
23992
23993 #. type: verbatim
23994 #: ../fish/guestfish-actions.pod:2173
23995 #, no-wrap
23996 msgid ""
23997 " inspect-is-netinst root\n"
23998 "\n"
23999 msgstr ""
24000
24001 #. type: textblock
24002 #: ../fish/guestfish-actions.pod:2175
24003 msgid ""
24004 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
24005 "then this returns true if the disk is a network installer, ie. not a "
24006 "self-contained install CD but one which is likely to require network access "
24007 "to complete the install."
24008 msgstr ""
24009
24010 #. type: =head2
24011 #: ../fish/guestfish-actions.pod:2183
24012 msgid "inspect-list-applications"
24013 msgstr ""
24014
24015 #. type: verbatim
24016 #: ../fish/guestfish-actions.pod:2185
24017 #, no-wrap
24018 msgid ""
24019 " inspect-list-applications root\n"
24020 "\n"
24021 msgstr ""
24022
24023 #. type: textblock
24024 #: ../fish/guestfish-actions.pod:2189
24025 msgid ""
24026 "I<Note:> This call works differently from other parts of the inspection "
24027 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24028 "then mount up the disks, before calling this.  Listing applications is a "
24029 "significantly more difficult operation which requires access to the full "
24030 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24031 "are just returning data cached in the libguestfs handle, this call actually "
24032 "reads parts of the mounted filesystems during the call."
24033 msgstr ""
24034
24035 #. type: =head2
24036 #: ../fish/guestfish-actions.pod:2279
24037 msgid "inspect-os"
24038 msgstr ""
24039
24040 #. type: verbatim
24041 #: ../fish/guestfish-actions.pod:2281
24042 #, no-wrap
24043 msgid ""
24044 " inspect-os\n"
24045 "\n"
24046 msgstr ""
24047
24048 #. type: textblock
24049 #: ../fish/guestfish-actions.pod:2296
24050 msgid ""
24051 "You can pass the root string(s) returned to other L</inspect-get-*> "
24052 "functions in order to query further information about each operating system, "
24053 "such as the name and version."
24054 msgstr ""
24055
24056 #. type: textblock
24057 #: ../fish/guestfish-actions.pod:2301
24058 msgid ""
24059 "This function uses other libguestfs features such as L</mount-ro> and "
24060 "L</umount-all> in order to mount and unmount filesystems and look at the "
24061 "contents.  This should be called with no disks currently mounted.  The "
24062 "function may also use Augeas, so any existing Augeas handle will be closed."
24063 msgstr ""
24064
24065 #. type: textblock
24066 #: ../fish/guestfish-actions.pod:2313 ../fish/guestfish-actions.pod:2511 ../fish/guestfish-actions.pod:2557
24067 msgid "See also L</list-filesystems>."
24068 msgstr ""
24069
24070 #. type: =head2
24071 #: ../fish/guestfish-actions.pod:2315
24072 msgid "is-blockdev"
24073 msgstr ""
24074
24075 #. type: verbatim
24076 #: ../fish/guestfish-actions.pod:2317
24077 #, no-wrap
24078 msgid ""
24079 " is-blockdev path\n"
24080 "\n"
24081 msgstr ""
24082
24083 #. type: textblock
24084 #: ../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
24085 msgid "See also L</stat>."
24086 msgstr ""
24087
24088 #. type: =head2
24089 #: ../fish/guestfish-actions.pod:2324
24090 msgid "is-busy"
24091 msgstr ""
24092
24093 #. type: verbatim
24094 #: ../fish/guestfish-actions.pod:2326
24095 #, no-wrap
24096 msgid ""
24097 " is-busy\n"
24098 "\n"
24099 msgstr ""
24100
24101 #. type: =head2
24102 #: ../fish/guestfish-actions.pod:2333
24103 msgid "is-chardev"
24104 msgstr ""
24105
24106 #. type: verbatim
24107 #: ../fish/guestfish-actions.pod:2335
24108 #, no-wrap
24109 msgid ""
24110 " is-chardev path\n"
24111 "\n"
24112 msgstr ""
24113
24114 #. type: =head2
24115 #: ../fish/guestfish-actions.pod:2342
24116 msgid "is-config"
24117 msgstr ""
24118
24119 #. type: verbatim
24120 #: ../fish/guestfish-actions.pod:2344
24121 #, no-wrap
24122 msgid ""
24123 " is-config\n"
24124 "\n"
24125 msgstr ""
24126
24127 #. type: =head2
24128 #: ../fish/guestfish-actions.pod:2351
24129 msgid "is-dir"
24130 msgstr ""
24131
24132 #. type: verbatim
24133 #: ../fish/guestfish-actions.pod:2353
24134 #, no-wrap
24135 msgid ""
24136 " is-dir path\n"
24137 "\n"
24138 msgstr ""
24139
24140 #. type: =head2
24141 #: ../fish/guestfish-actions.pod:2361
24142 msgid "is-fifo"
24143 msgstr ""
24144
24145 #. type: verbatim
24146 #: ../fish/guestfish-actions.pod:2363
24147 #, no-wrap
24148 msgid ""
24149 " is-fifo path\n"
24150 "\n"
24151 msgstr ""
24152
24153 #. type: =head2
24154 #: ../fish/guestfish-actions.pod:2370
24155 msgid "is-file"
24156 msgstr ""
24157
24158 #. type: verbatim
24159 #: ../fish/guestfish-actions.pod:2372
24160 #, no-wrap
24161 msgid ""
24162 " is-file path\n"
24163 "\n"
24164 msgstr ""
24165
24166 #. type: =head2
24167 #: ../fish/guestfish-actions.pod:2380
24168 msgid "is-launching"
24169 msgstr ""
24170
24171 #. type: verbatim
24172 #: ../fish/guestfish-actions.pod:2382
24173 #, no-wrap
24174 msgid ""
24175 " is-launching\n"
24176 "\n"
24177 msgstr ""
24178
24179 #. type: =head2
24180 #: ../fish/guestfish-actions.pod:2389
24181 msgid "is-lv"
24182 msgstr ""
24183
24184 #. type: verbatim
24185 #: ../fish/guestfish-actions.pod:2391
24186 #, no-wrap
24187 msgid ""
24188 " is-lv device\n"
24189 "\n"
24190 msgstr ""
24191
24192 #. type: =head2
24193 #: ../fish/guestfish-actions.pod:2396
24194 msgid "is-ready"
24195 msgstr ""
24196
24197 #. type: verbatim
24198 #: ../fish/guestfish-actions.pod:2398
24199 #, no-wrap
24200 msgid ""
24201 " is-ready\n"
24202 "\n"
24203 msgstr ""
24204
24205 #. type: =head2
24206 #: ../fish/guestfish-actions.pod:2405
24207 msgid "is-socket"
24208 msgstr ""
24209
24210 #. type: verbatim
24211 #: ../fish/guestfish-actions.pod:2407
24212 #, no-wrap
24213 msgid ""
24214 " is-socket path\n"
24215 "\n"
24216 msgstr ""
24217
24218 #. type: =head2
24219 #: ../fish/guestfish-actions.pod:2414
24220 msgid "is-symlink"
24221 msgstr ""
24222
24223 #. type: verbatim
24224 #: ../fish/guestfish-actions.pod:2416
24225 #, no-wrap
24226 msgid ""
24227 " is-symlink path\n"
24228 "\n"
24229 msgstr ""
24230
24231 #. type: =head2
24232 #: ../fish/guestfish-actions.pod:2423
24233 msgid "is-zero"
24234 msgstr ""
24235
24236 #. type: verbatim
24237 #: ../fish/guestfish-actions.pod:2425
24238 #, no-wrap
24239 msgid ""
24240 " is-zero path\n"
24241 "\n"
24242 msgstr ""
24243
24244 #. type: =head2
24245 #: ../fish/guestfish-actions.pod:2430
24246 msgid "is-zero-device"
24247 msgstr ""
24248
24249 #. type: verbatim
24250 #: ../fish/guestfish-actions.pod:2432
24251 #, no-wrap
24252 msgid ""
24253 " is-zero-device device\n"
24254 "\n"
24255 msgstr ""
24256
24257 #. type: =head2
24258 #: ../fish/guestfish-actions.pod:2438
24259 msgid "kill-subprocess"
24260 msgstr ""
24261
24262 #. type: verbatim
24263 #: ../fish/guestfish-actions.pod:2440
24264 #, no-wrap
24265 msgid ""
24266 " kill-subprocess\n"
24267 "\n"
24268 msgstr ""
24269
24270 #. type: =head2
24271 #: ../fish/guestfish-actions.pod:2444
24272 msgid "launch"
24273 msgstr ""
24274
24275 #. type: =head2
24276 #: ../fish/guestfish-actions.pod:2446
24277 msgid "run"
24278 msgstr ""
24279
24280 #. type: verbatim
24281 #: ../fish/guestfish-actions.pod:2448
24282 #, no-wrap
24283 msgid ""
24284 " launch\n"
24285 "\n"
24286 msgstr ""
24287
24288 #. type: =head2
24289 #: ../fish/guestfish-actions.pod:2456
24290 msgid "lchown"
24291 msgstr ""
24292
24293 #. type: verbatim
24294 #: ../fish/guestfish-actions.pod:2458
24295 #, no-wrap
24296 msgid ""
24297 " lchown owner group path\n"
24298 "\n"
24299 msgstr ""
24300
24301 #. type: textblock
24302 #: ../fish/guestfish-actions.pod:2460
24303 msgid ""
24304 "Change the file owner to C<owner> and group to C<group>.  This is like "
24305 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
24306 "the target."
24307 msgstr ""
24308
24309 #. type: =head2
24310 #: ../fish/guestfish-actions.pod:2468
24311 msgid "lgetxattr"
24312 msgstr ""
24313
24314 #. type: verbatim
24315 #: ../fish/guestfish-actions.pod:2470
24316 #, no-wrap
24317 msgid ""
24318 " lgetxattr path name\n"
24319 "\n"
24320 msgstr ""
24321
24322 #. type: textblock
24323 #: ../fish/guestfish-actions.pod:2486
24324 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24325 msgstr ""
24326
24327 #. type: =head2
24328 #: ../fish/guestfish-actions.pod:2488
24329 msgid "lgetxattrs"
24330 msgstr ""
24331
24332 #. type: verbatim
24333 #: ../fish/guestfish-actions.pod:2490
24334 #, no-wrap
24335 msgid ""
24336 " lgetxattrs path\n"
24337 "\n"
24338 msgstr ""
24339
24340 #. type: textblock
24341 #: ../fish/guestfish-actions.pod:2492
24342 msgid ""
24343 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24344 "it returns the extended attributes of the link itself."
24345 msgstr ""
24346
24347 #. type: =head2
24348 #: ../fish/guestfish-actions.pod:2496
24349 msgid "list-9p"
24350 msgstr ""
24351
24352 #. type: verbatim
24353 #: ../fish/guestfish-actions.pod:2498
24354 #, no-wrap
24355 msgid ""
24356 " list-9p\n"
24357 "\n"
24358 msgstr ""
24359
24360 #. type: =head2
24361 #: ../fish/guestfish-actions.pod:2503
24362 msgid "list-devices"
24363 msgstr ""
24364
24365 #. type: verbatim
24366 #: ../fish/guestfish-actions.pod:2505
24367 #, no-wrap
24368 msgid ""
24369 " list-devices\n"
24370 "\n"
24371 msgstr ""
24372
24373 #. type: =head2
24374 #: ../fish/guestfish-actions.pod:2513
24375 msgid "list-filesystems"
24376 msgstr ""
24377
24378 #. type: verbatim
24379 #: ../fish/guestfish-actions.pod:2515
24380 #, no-wrap
24381 msgid ""
24382 " list-filesystems\n"
24383 "\n"
24384 msgstr ""
24385
24386 #. type: textblock
24387 #: ../fish/guestfish-actions.pod:2534
24388 msgid ""
24389 "This command runs other libguestfs commands, which might include L</mount> "
24390 "and L</umount>, and therefore you should use this soon after launch and only "
24391 "when nothing is mounted."
24392 msgstr ""
24393
24394 #. type: textblock
24395 #: ../fish/guestfish-actions.pod:2538
24396 msgid ""
24397 "Not all of the filesystems returned will be mountable.  In particular, swap "
24398 "partitions are returned in the list.  Also this command does not check that "
24399 "each filesystem found is valid and mountable, and some filesystems might be "
24400 "mountable but require special options.  Filesystems may not all belong to a "
24401 "single logical operating system (use L</inspect-os> to look for OSes)."
24402 msgstr ""
24403
24404 #. type: =head2
24405 #: ../fish/guestfish-actions.pod:2546
24406 msgid "list-partitions"
24407 msgstr ""
24408
24409 #. type: verbatim
24410 #: ../fish/guestfish-actions.pod:2548
24411 #, no-wrap
24412 msgid ""
24413 " list-partitions\n"
24414 "\n"
24415 msgstr ""
24416
24417 #. type: textblock
24418 #: ../fish/guestfish-actions.pod:2554
24419 msgid ""
24420 "This does not return logical volumes.  For that you will need to call "
24421 "L</lvs>."
24422 msgstr ""
24423
24424 #. type: =head2
24425 #: ../fish/guestfish-actions.pod:2559
24426 msgid "ll"
24427 msgstr ""
24428
24429 #. type: verbatim
24430 #: ../fish/guestfish-actions.pod:2561
24431 #, no-wrap
24432 msgid ""
24433 " ll directory\n"
24434 "\n"
24435 msgstr ""
24436
24437 #. type: =head2
24438 #: ../fish/guestfish-actions.pod:2569
24439 msgid "ln"
24440 msgstr ""
24441
24442 #. type: verbatim
24443 #: ../fish/guestfish-actions.pod:2571
24444 #, no-wrap
24445 msgid ""
24446 " ln target linkname\n"
24447 "\n"
24448 msgstr ""
24449
24450 #. type: =head2
24451 #: ../fish/guestfish-actions.pod:2575
24452 msgid "ln-f"
24453 msgstr ""
24454
24455 #. type: verbatim
24456 #: ../fish/guestfish-actions.pod:2577
24457 #, no-wrap
24458 msgid ""
24459 " ln-f target linkname\n"
24460 "\n"
24461 msgstr ""
24462
24463 #. type: =head2
24464 #: ../fish/guestfish-actions.pod:2582
24465 msgid "ln-s"
24466 msgstr ""
24467
24468 #. type: verbatim
24469 #: ../fish/guestfish-actions.pod:2584
24470 #, no-wrap
24471 msgid ""
24472 " ln-s target linkname\n"
24473 "\n"
24474 msgstr ""
24475
24476 #. type: =head2
24477 #: ../fish/guestfish-actions.pod:2588
24478 msgid "ln-sf"
24479 msgstr ""
24480
24481 #. type: verbatim
24482 #: ../fish/guestfish-actions.pod:2590
24483 #, no-wrap
24484 msgid ""
24485 " ln-sf target linkname\n"
24486 "\n"
24487 msgstr ""
24488
24489 #. type: =head2
24490 #: ../fish/guestfish-actions.pod:2595
24491 msgid "lremovexattr"
24492 msgstr ""
24493
24494 #. type: verbatim
24495 #: ../fish/guestfish-actions.pod:2597
24496 #, no-wrap
24497 msgid ""
24498 " lremovexattr xattr path\n"
24499 "\n"
24500 msgstr ""
24501
24502 #. type: textblock
24503 #: ../fish/guestfish-actions.pod:2599
24504 msgid ""
24505 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24506 "it removes an extended attribute of the link itself."
24507 msgstr ""
24508
24509 #. type: =head2
24510 #: ../fish/guestfish-actions.pod:2603
24511 msgid "ls"
24512 msgstr ""
24513
24514 #. type: verbatim
24515 #: ../fish/guestfish-actions.pod:2605
24516 #, no-wrap
24517 msgid ""
24518 " ls directory\n"
24519 "\n"
24520 msgstr ""
24521
24522 #. type: textblock
24523 #: ../fish/guestfish-actions.pod:2611
24524 msgid ""
24525 "This command is mostly useful for interactive sessions.  Programs should "
24526 "probably use L</readdir> instead."
24527 msgstr ""
24528
24529 #. type: =head2
24530 #: ../fish/guestfish-actions.pod:2614
24531 msgid "lsetxattr"
24532 msgstr ""
24533
24534 #. type: verbatim
24535 #: ../fish/guestfish-actions.pod:2616
24536 #, no-wrap
24537 msgid ""
24538 " lsetxattr xattr val vallen path\n"
24539 "\n"
24540 msgstr ""
24541
24542 #. type: textblock
24543 #: ../fish/guestfish-actions.pod:2618
24544 msgid ""
24545 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24546 "sets an extended attribute of the link itself."
24547 msgstr ""
24548
24549 #. type: =head2
24550 #: ../fish/guestfish-actions.pod:2622
24551 msgid "lstat"
24552 msgstr ""
24553
24554 #. type: verbatim
24555 #: ../fish/guestfish-actions.pod:2624
24556 #, no-wrap
24557 msgid ""
24558 " lstat path\n"
24559 "\n"
24560 msgstr ""
24561
24562 #. type: textblock
24563 #: ../fish/guestfish-actions.pod:2628
24564 msgid ""
24565 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24566 "the link is stat-ed, not the file it refers to."
24567 msgstr ""
24568
24569 #. type: =head2
24570 #: ../fish/guestfish-actions.pod:2634
24571 msgid "lstatlist"
24572 msgstr ""
24573
24574 #. type: verbatim
24575 #: ../fish/guestfish-actions.pod:2636
24576 #, no-wrap
24577 msgid ""
24578 " lstatlist path 'names ...'\n"
24579 "\n"
24580 msgstr ""
24581
24582 #. type: textblock
24583 #: ../fish/guestfish-actions.pod:2638
24584 msgid ""
24585 "This call allows you to perform the L</lstat> operation on multiple files, "
24586 "where all files are in the directory C<path>.  C<names> is the list of files "
24587 "from this directory."
24588 msgstr ""
24589
24590 #. type: textblock
24591 #: ../fish/guestfish-actions.pod:2647
24592 msgid ""
24593 "This call is intended for programs that want to efficiently list a directory "
24594 "contents without making many round-trips.  See also L</lxattrlist> for a "
24595 "similarly efficient call for getting extended attributes.  Very long "
24596 "directory listings might cause the protocol message size to be exceeded, "
24597 "causing this call to fail.  The caller must split up such requests into "
24598 "smaller groups of names."
24599 msgstr ""
24600
24601 #. type: =head2
24602 #: ../fish/guestfish-actions.pod:2655
24603 msgid "luks-add-key"
24604 msgstr ""
24605
24606 #. type: verbatim
24607 #: ../fish/guestfish-actions.pod:2657
24608 #, no-wrap
24609 msgid ""
24610 " luks-add-key device keyslot\n"
24611 "\n"
24612 msgstr ""
24613
24614 #. type: textblock
24615 #: ../fish/guestfish-actions.pod:2664
24616 msgid ""
24617 "Note that if C<keyslot> already contains a key, then this command will "
24618 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24619 msgstr ""
24620
24621 #. type: textblock
24622 #: ../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
24623 msgid ""
24624 "This command has one or more key or passphrase parameters.  Guestfish will "
24625 "prompt for these separately."
24626 msgstr ""
24627
24628 #. type: =head2
24629 #: ../fish/guestfish-actions.pod:2671
24630 msgid "luks-close"
24631 msgstr ""
24632
24633 #. type: verbatim
24634 #: ../fish/guestfish-actions.pod:2673
24635 #, no-wrap
24636 msgid ""
24637 " luks-close device\n"
24638 "\n"
24639 msgstr ""
24640
24641 #. type: textblock
24642 #: ../fish/guestfish-actions.pod:2675
24643 msgid ""
24644 "This closes a LUKS device that was created earlier by L</luks-open> or "
24645 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
24646 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
24647 "underlying block device."
24648 msgstr ""
24649
24650 #. type: =head2
24651 #: ../fish/guestfish-actions.pod:2681
24652 msgid "luks-format"
24653 msgstr ""
24654
24655 #. type: verbatim
24656 #: ../fish/guestfish-actions.pod:2683
24657 #, no-wrap
24658 msgid ""
24659 " luks-format device keyslot\n"
24660 "\n"
24661 msgstr ""
24662
24663 #. type: =head2
24664 #: ../fish/guestfish-actions.pod:2696
24665 msgid "luks-format-cipher"
24666 msgstr ""
24667
24668 #. type: verbatim
24669 #: ../fish/guestfish-actions.pod:2698
24670 #, no-wrap
24671 msgid ""
24672 " luks-format-cipher device keyslot cipher\n"
24673 "\n"
24674 msgstr ""
24675
24676 #. type: textblock
24677 #: ../fish/guestfish-actions.pod:2700
24678 msgid ""
24679 "This command is the same as L</luks-format> but it also allows you to set "
24680 "the C<cipher> used."
24681 msgstr ""
24682
24683 #. type: =head2
24684 #: ../fish/guestfish-actions.pod:2709
24685 msgid "luks-kill-slot"
24686 msgstr ""
24687
24688 #. type: verbatim
24689 #: ../fish/guestfish-actions.pod:2711
24690 #, no-wrap
24691 msgid ""
24692 " luks-kill-slot device keyslot\n"
24693 "\n"
24694 msgstr ""
24695
24696 #. type: =head2
24697 #: ../fish/guestfish-actions.pod:2720
24698 msgid "luks-open"
24699 msgstr ""
24700
24701 #. type: verbatim
24702 #: ../fish/guestfish-actions.pod:2722
24703 #, no-wrap
24704 msgid ""
24705 " luks-open device mapname\n"
24706 "\n"
24707 msgstr ""
24708
24709 #. type: textblock
24710 #: ../fish/guestfish-actions.pod:2736
24711 msgid ""
24712 "If this block device contains LVM volume groups, then calling L</vgscan> "
24713 "followed by L</vg-activate-all> will make them visible."
24714 msgstr ""
24715
24716 #. type: =head2
24717 #: ../fish/guestfish-actions.pod:2743
24718 msgid "luks-open-ro"
24719 msgstr ""
24720
24721 #. type: verbatim
24722 #: ../fish/guestfish-actions.pod:2745
24723 #, no-wrap
24724 msgid ""
24725 " luks-open-ro device mapname\n"
24726 "\n"
24727 msgstr ""
24728
24729 #. type: textblock
24730 #: ../fish/guestfish-actions.pod:2747
24731 msgid ""
24732 "This is the same as L</luks-open> except that a read-only mapping is "
24733 "created."
24734 msgstr ""
24735
24736 #. type: =head2
24737 #: ../fish/guestfish-actions.pod:2753
24738 msgid "lvcreate"
24739 msgstr ""
24740
24741 #. type: verbatim
24742 #: ../fish/guestfish-actions.pod:2755
24743 #, no-wrap
24744 msgid ""
24745 " lvcreate logvol volgroup mbytes\n"
24746 "\n"
24747 msgstr ""
24748
24749 #. type: =head2
24750 #: ../fish/guestfish-actions.pod:2760
24751 msgid "lvm-canonical-lv-name"
24752 msgstr ""
24753
24754 #. type: verbatim
24755 #: ../fish/guestfish-actions.pod:2762
24756 #, no-wrap
24757 msgid ""
24758 " lvm-canonical-lv-name lvname\n"
24759 "\n"
24760 msgstr ""
24761
24762 #. type: textblock
24763 #: ../fish/guestfish-actions.pod:2771
24764 msgid "See also L</is-lv>."
24765 msgstr ""
24766
24767 #. type: =head2
24768 #: ../fish/guestfish-actions.pod:2773
24769 msgid "lvm-clear-filter"
24770 msgstr ""
24771
24772 #. type: verbatim
24773 #: ../fish/guestfish-actions.pod:2775
24774 #, no-wrap
24775 msgid ""
24776 " lvm-clear-filter\n"
24777 "\n"
24778 msgstr ""
24779
24780 #. type: textblock
24781 #: ../fish/guestfish-actions.pod:2777
24782 msgid ""
24783 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24784 "block device."
24785 msgstr ""
24786
24787 #. type: =head2
24788 #: ../fish/guestfish-actions.pod:2783
24789 msgid "lvm-remove-all"
24790 msgstr ""
24791
24792 #. type: verbatim
24793 #: ../fish/guestfish-actions.pod:2785
24794 #, no-wrap
24795 msgid ""
24796 " lvm-remove-all\n"
24797 "\n"
24798 msgstr ""
24799
24800 #. type: =head2
24801 #: ../fish/guestfish-actions.pod:2793
24802 msgid "lvm-set-filter"
24803 msgstr ""
24804
24805 #. type: verbatim
24806 #: ../fish/guestfish-actions.pod:2795
24807 #, no-wrap
24808 msgid ""
24809 " lvm-set-filter 'devices ...'\n"
24810 "\n"
24811 msgstr ""
24812
24813 #. type: =head2
24814 #: ../fish/guestfish-actions.pod:2820
24815 msgid "lvremove"
24816 msgstr ""
24817
24818 #. type: verbatim
24819 #: ../fish/guestfish-actions.pod:2822
24820 #, no-wrap
24821 msgid ""
24822 " lvremove device\n"
24823 "\n"
24824 msgstr ""
24825
24826 #. type: =head2
24827 #: ../fish/guestfish-actions.pod:2830
24828 msgid "lvrename"
24829 msgstr ""
24830
24831 #. type: verbatim
24832 #: ../fish/guestfish-actions.pod:2832
24833 #, no-wrap
24834 msgid ""
24835 " lvrename logvol newlogvol\n"
24836 "\n"
24837 msgstr ""
24838
24839 #. type: =head2
24840 #: ../fish/guestfish-actions.pod:2836
24841 msgid "lvresize"
24842 msgstr ""
24843
24844 #. type: verbatim
24845 #: ../fish/guestfish-actions.pod:2838
24846 #, no-wrap
24847 msgid ""
24848 " lvresize device mbytes\n"
24849 "\n"
24850 msgstr ""
24851
24852 #. type: =head2
24853 #: ../fish/guestfish-actions.pod:2844
24854 msgid "lvresize-free"
24855 msgstr ""
24856
24857 #. type: verbatim
24858 #: ../fish/guestfish-actions.pod:2846
24859 #, no-wrap
24860 msgid ""
24861 " lvresize-free lv percent\n"
24862 "\n"
24863 msgstr ""
24864
24865 #. type: =head2
24866 #: ../fish/guestfish-actions.pod:2854
24867 msgid "lvs"
24868 msgstr ""
24869
24870 #. type: verbatim
24871 #: ../fish/guestfish-actions.pod:2856
24872 #, no-wrap
24873 msgid ""
24874 " lvs\n"
24875 "\n"
24876 msgstr ""
24877
24878 #. type: textblock
24879 #: ../fish/guestfish-actions.pod:2864
24880 msgid "See also L</lvs-full>, L</list-filesystems>."
24881 msgstr ""
24882
24883 #. type: =head2
24884 #: ../fish/guestfish-actions.pod:2866
24885 msgid "lvs-full"
24886 msgstr ""
24887
24888 #. type: verbatim
24889 #: ../fish/guestfish-actions.pod:2868
24890 #, no-wrap
24891 msgid ""
24892 " lvs-full\n"
24893 "\n"
24894 msgstr ""
24895
24896 #. type: =head2
24897 #: ../fish/guestfish-actions.pod:2873
24898 msgid "lvuuid"
24899 msgstr ""
24900
24901 #. type: verbatim
24902 #: ../fish/guestfish-actions.pod:2875
24903 #, no-wrap
24904 msgid ""
24905 " lvuuid device\n"
24906 "\n"
24907 msgstr ""
24908
24909 #. type: =head2
24910 #: ../fish/guestfish-actions.pod:2879
24911 msgid "lxattrlist"
24912 msgstr ""
24913
24914 #. type: verbatim
24915 #: ../fish/guestfish-actions.pod:2881
24916 #, no-wrap
24917 msgid ""
24918 " lxattrlist path 'names ...'\n"
24919 "\n"
24920 msgstr ""
24921
24922 #. type: textblock
24923 #: ../fish/guestfish-actions.pod:2897
24924 msgid ""
24925 "This call is intended for programs that want to efficiently list a directory "
24926 "contents without making many round-trips.  See also L</lstatlist> for a "
24927 "similarly efficient call for getting standard stats.  Very long directory "
24928 "listings might cause the protocol message size to be exceeded, causing this "
24929 "call to fail.  The caller must split up such requests into smaller groups of "
24930 "names."
24931 msgstr ""
24932
24933 #. type: =head2
24934 #: ../fish/guestfish-actions.pod:2905
24935 msgid "mkdir"
24936 msgstr ""
24937
24938 #. type: verbatim
24939 #: ../fish/guestfish-actions.pod:2907
24940 #, no-wrap
24941 msgid ""
24942 " mkdir path\n"
24943 "\n"
24944 msgstr ""
24945
24946 #. type: =head2
24947 #: ../fish/guestfish-actions.pod:2911
24948 msgid "mkdir-mode"
24949 msgstr ""
24950
24951 #. type: verbatim
24952 #: ../fish/guestfish-actions.pod:2913
24953 #, no-wrap
24954 msgid ""
24955 " mkdir-mode path mode\n"
24956 "\n"
24957 msgstr ""
24958
24959 #. type: textblock
24960 #: ../fish/guestfish-actions.pod:2922
24961 msgid "See also L</mkdir>, L</umask>"
24962 msgstr ""
24963
24964 #. type: =head2
24965 #: ../fish/guestfish-actions.pod:2924
24966 msgid "mkdir-p"
24967 msgstr ""
24968
24969 #. type: verbatim
24970 #: ../fish/guestfish-actions.pod:2926
24971 #, no-wrap
24972 msgid ""
24973 " mkdir-p path\n"
24974 "\n"
24975 msgstr ""
24976
24977 #. type: =head2
24978 #: ../fish/guestfish-actions.pod:2931
24979 msgid "mkdtemp"
24980 msgstr ""
24981
24982 #. type: verbatim
24983 #: ../fish/guestfish-actions.pod:2933
24984 #, no-wrap
24985 msgid ""
24986 " mkdtemp template\n"
24987 "\n"
24988 msgstr ""
24989
24990 #. type: =head2
24991 #: ../fish/guestfish-actions.pod:2954
24992 msgid "mke2fs-J"
24993 msgstr ""
24994
24995 #. type: verbatim
24996 #: ../fish/guestfish-actions.pod:2956
24997 #, no-wrap
24998 msgid ""
24999 " mke2fs-J fstype blocksize device journal\n"
25000 "\n"
25001 msgstr ""
25002
25003 #. type: textblock
25004 #: ../fish/guestfish-actions.pod:2964
25005 msgid "See also L</mke2journal>."
25006 msgstr ""
25007
25008 #. type: =head2
25009 #: ../fish/guestfish-actions.pod:2966
25010 msgid "mke2fs-JL"
25011 msgstr ""
25012
25013 #. type: verbatim
25014 #: ../fish/guestfish-actions.pod:2968
25015 #, no-wrap
25016 msgid ""
25017 " mke2fs-JL fstype blocksize device label\n"
25018 "\n"
25019 msgstr ""
25020
25021 #. type: textblock
25022 #: ../fish/guestfish-actions.pod:2973
25023 msgid "See also L</mke2journal-L>."
25024 msgstr ""
25025
25026 #. type: =head2
25027 #: ../fish/guestfish-actions.pod:2975
25028 msgid "mke2fs-JU"
25029 msgstr ""
25030
25031 #. type: verbatim
25032 #: ../fish/guestfish-actions.pod:2977
25033 #, no-wrap
25034 msgid ""
25035 " mke2fs-JU fstype blocksize device uuid\n"
25036 "\n"
25037 msgstr ""
25038
25039 #. type: textblock
25040 #: ../fish/guestfish-actions.pod:2982
25041 msgid "See also L</mke2journal-U>."
25042 msgstr ""
25043
25044 #. type: =head2
25045 #: ../fish/guestfish-actions.pod:2984
25046 msgid "mke2journal"
25047 msgstr ""
25048
25049 #. type: verbatim
25050 #: ../fish/guestfish-actions.pod:2986
25051 #, no-wrap
25052 msgid ""
25053 " mke2journal blocksize device\n"
25054 "\n"
25055 msgstr ""
25056
25057 #. type: =head2
25058 #: ../fish/guestfish-actions.pod:2993
25059 msgid "mke2journal-L"
25060 msgstr ""
25061
25062 #. type: verbatim
25063 #: ../fish/guestfish-actions.pod:2995
25064 #, no-wrap
25065 msgid ""
25066 " mke2journal-L blocksize label device\n"
25067 "\n"
25068 msgstr ""
25069
25070 #. type: =head2
25071 #: ../fish/guestfish-actions.pod:2999
25072 msgid "mke2journal-U"
25073 msgstr ""
25074
25075 #. type: verbatim
25076 #: ../fish/guestfish-actions.pod:3001
25077 #, no-wrap
25078 msgid ""
25079 " mke2journal-U blocksize uuid device\n"
25080 "\n"
25081 msgstr ""
25082
25083 #. type: =head2
25084 #: ../fish/guestfish-actions.pod:3005
25085 msgid "mkfifo"
25086 msgstr ""
25087
25088 #. type: verbatim
25089 #: ../fish/guestfish-actions.pod:3007
25090 #, no-wrap
25091 msgid ""
25092 " mkfifo mode path\n"
25093 "\n"
25094 msgstr ""
25095
25096 #. type: textblock
25097 #: ../fish/guestfish-actions.pod:3009
25098 msgid ""
25099 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25100 "is just a convenient wrapper around L</mknod>."
25101 msgstr ""
25102
25103 #. type: =head2
25104 #: ../fish/guestfish-actions.pod:3015
25105 msgid "mkfs"
25106 msgstr ""
25107
25108 #. type: verbatim
25109 #: ../fish/guestfish-actions.pod:3017
25110 #, no-wrap
25111 msgid ""
25112 " mkfs fstype device\n"
25113 "\n"
25114 msgstr ""
25115
25116 #. type: =head2
25117 #: ../fish/guestfish-actions.pod:3023
25118 msgid "mkfs-b"
25119 msgstr ""
25120
25121 #. type: verbatim
25122 #: ../fish/guestfish-actions.pod:3025
25123 #, no-wrap
25124 msgid ""
25125 " mkfs-b fstype blocksize device\n"
25126 "\n"
25127 msgstr ""
25128
25129 #. type: textblock
25130 #: ../fish/guestfish-actions.pod:3027
25131 msgid ""
25132 "This call is similar to L</mkfs>, but it allows you to control the block "
25133 "size of the resulting filesystem.  Supported block sizes depend on the "
25134 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25135 msgstr ""
25136
25137 #. type: =head2
25138 #: ../fish/guestfish-actions.pod:3042
25139 msgid "mkfs-opts"
25140 msgstr ""
25141
25142 #. type: verbatim
25143 #: ../fish/guestfish-actions.pod:3044
25144 #, no-wrap
25145 msgid ""
25146 " mkfs-opts fstype device [blocksize:..] [features:..] [inode:..] "
25147 "[sectorsize:..]\n"
25148 "\n"
25149 msgstr ""
25150
25151 #. type: =head2
25152 #: ../fish/guestfish-actions.pod:3089
25153 msgid "mkmountpoint"
25154 msgstr ""
25155
25156 #. type: verbatim
25157 #: ../fish/guestfish-actions.pod:3091
25158 #, no-wrap
25159 msgid ""
25160 " mkmountpoint exemptpath\n"
25161 "\n"
25162 msgstr ""
25163
25164 #. type: textblock
25165 #: ../fish/guestfish-actions.pod:3093
25166 msgid ""
25167 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25168 "to create extra mountpoints before mounting the first filesystem."
25169 msgstr ""
25170
25171 #. type: textblock
25172 #: ../fish/guestfish-actions.pod:3117
25173 msgid ""
25174 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25175 "unexpected errors if you try to mix these calls.  It is safest to manually "
25176 "unmount filesystems and remove mountpoints after use."
25177 msgstr ""
25178
25179 #. type: textblock
25180 #: ../fish/guestfish-actions.pod:3121
25181 msgid ""
25182 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25183 "for this to work for manual mountpoints, you must ensure that the innermost "
25184 "mountpoints have the longest pathnames, as in the example code above."
25185 msgstr ""
25186
25187 #. type: textblock
25188 #: ../fish/guestfish-actions.pod:3128
25189 msgid ""
25190 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25191 "L</umount-all> to be called when the handle is closed which can also trigger "
25192 "these issues."
25193 msgstr ""
25194
25195 #. type: =head2
25196 #: ../fish/guestfish-actions.pod:3132
25197 msgid "mknod"
25198 msgstr ""
25199
25200 #. type: verbatim
25201 #: ../fish/guestfish-actions.pod:3134
25202 #, no-wrap
25203 msgid ""
25204 " mknod mode devmajor devminor path\n"
25205 "\n"
25206 msgstr ""
25207
25208 #. type: textblock
25209 #: ../fish/guestfish-actions.pod:3144
25210 msgid ""
25211 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25212 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25213 "regular file).  These constants are available in the standard Linux header "
25214 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25215 "wrappers around this command which bitwise OR in the appropriate constant "
25216 "for you."
25217 msgstr ""
25218
25219 #. type: =head2
25220 #: ../fish/guestfish-actions.pod:3154
25221 msgid "mknod-b"
25222 msgstr ""
25223
25224 #. type: verbatim
25225 #: ../fish/guestfish-actions.pod:3156
25226 #, no-wrap
25227 msgid ""
25228 " mknod-b mode devmajor devminor path\n"
25229 "\n"
25230 msgstr ""
25231
25232 #. type: textblock
25233 #: ../fish/guestfish-actions.pod:3158
25234 msgid ""
25235 "This call creates a block device node called C<path> with mode C<mode> and "
25236 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25237 "wrapper around L</mknod>."
25238 msgstr ""
25239
25240 #. type: =head2
25241 #: ../fish/guestfish-actions.pod:3164
25242 msgid "mknod-c"
25243 msgstr ""
25244
25245 #. type: verbatim
25246 #: ../fish/guestfish-actions.pod:3166
25247 #, no-wrap
25248 msgid ""
25249 " mknod-c mode devmajor devminor path\n"
25250 "\n"
25251 msgstr ""
25252
25253 #. type: textblock
25254 #: ../fish/guestfish-actions.pod:3168
25255 msgid ""
25256 "This call creates a char device node called C<path> with mode C<mode> and "
25257 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25258 "wrapper around L</mknod>."
25259 msgstr ""
25260
25261 #. type: =head2
25262 #: ../fish/guestfish-actions.pod:3174
25263 msgid "mkswap"
25264 msgstr ""
25265
25266 #. type: verbatim
25267 #: ../fish/guestfish-actions.pod:3176
25268 #, no-wrap
25269 msgid ""
25270 " mkswap device\n"
25271 "\n"
25272 msgstr ""
25273
25274 #. type: =head2
25275 #: ../fish/guestfish-actions.pod:3180
25276 msgid "mkswap-L"
25277 msgstr ""
25278
25279 #. type: verbatim
25280 #: ../fish/guestfish-actions.pod:3182
25281 #, no-wrap
25282 msgid ""
25283 " mkswap-L label device\n"
25284 "\n"
25285 msgstr ""
25286
25287 #. type: =head2
25288 #: ../fish/guestfish-actions.pod:3190
25289 msgid "mkswap-U"
25290 msgstr ""
25291
25292 #. type: verbatim
25293 #: ../fish/guestfish-actions.pod:3192
25294 #, no-wrap
25295 msgid ""
25296 " mkswap-U uuid device\n"
25297 "\n"
25298 msgstr ""
25299
25300 #. type: =head2
25301 #: ../fish/guestfish-actions.pod:3196
25302 msgid "mkswap-file"
25303 msgstr ""
25304
25305 #. type: verbatim
25306 #: ../fish/guestfish-actions.pod:3198
25307 #, no-wrap
25308 msgid ""
25309 " mkswap-file path\n"
25310 "\n"
25311 msgstr ""
25312
25313 #. type: textblock
25314 #: ../fish/guestfish-actions.pod:3202
25315 msgid ""
25316 "This command just writes a swap file signature to an existing file.  To "
25317 "create the file itself, use something like L</fallocate>."
25318 msgstr ""
25319
25320 #. type: =head2
25321 #: ../fish/guestfish-actions.pod:3205
25322 msgid "modprobe"
25323 msgstr ""
25324
25325 #. type: verbatim
25326 #: ../fish/guestfish-actions.pod:3207
25327 #, no-wrap
25328 msgid ""
25329 " modprobe modulename\n"
25330 "\n"
25331 msgstr ""
25332
25333 #. type: =head2
25334 #: ../fish/guestfish-actions.pod:3214
25335 msgid "mount"
25336 msgstr ""
25337
25338 #. type: verbatim
25339 #: ../fish/guestfish-actions.pod:3216
25340 #, no-wrap
25341 msgid ""
25342 " mount device mountpoint\n"
25343 "\n"
25344 msgstr ""
25345
25346 #. type: textblock
25347 #: ../fish/guestfish-actions.pod:3232
25348 msgid ""
25349 "B<Important note:> When you use this call, the filesystem options C<sync> "
25350 "and C<noatime> are set implicitly.  This was originally done because we "
25351 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25352 "very large negative performance impact and negligible effect on "
25353 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25354 "code that needs performance, and instead use L</mount-options> (use an empty "
25355 "string for the first parameter if you don't want any options)."
25356 msgstr ""
25357
25358 #. type: =head2
25359 #: ../fish/guestfish-actions.pod:3249
25360 msgid "mount-9p"
25361 msgstr ""
25362
25363 #. type: verbatim
25364 #: ../fish/guestfish-actions.pod:3251
25365 #, no-wrap
25366 msgid ""
25367 " mount-9p mounttag mountpoint [options:..]\n"
25368 "\n"
25369 msgstr ""
25370
25371 #. type: =head2
25372 #: ../fish/guestfish-actions.pod:3262
25373 msgid "mount-loop"
25374 msgstr ""
25375
25376 #. type: verbatim
25377 #: ../fish/guestfish-actions.pod:3264
25378 #, no-wrap
25379 msgid ""
25380 " mount-loop file mountpoint\n"
25381 "\n"
25382 msgstr ""
25383
25384 #. type: =head2
25385 #: ../fish/guestfish-actions.pod:3270
25386 msgid "mount-options"
25387 msgstr ""
25388
25389 #. type: verbatim
25390 #: ../fish/guestfish-actions.pod:3272
25391 #, no-wrap
25392 msgid ""
25393 " mount-options options device mountpoint\n"
25394 "\n"
25395 msgstr ""
25396
25397 #. type: textblock
25398 #: ../fish/guestfish-actions.pod:3274
25399 msgid ""
25400 "This is the same as the L</mount> command, but it allows you to set the "
25401 "mount options as for the L<mount(8)> I<-o> flag."
25402 msgstr ""
25403
25404 #. type: =head2
25405 #: ../fish/guestfish-actions.pod:3282
25406 msgid "mount-ro"
25407 msgstr ""
25408
25409 #. type: verbatim
25410 #: ../fish/guestfish-actions.pod:3284
25411 #, no-wrap
25412 msgid ""
25413 " mount-ro device mountpoint\n"
25414 "\n"
25415 msgstr ""
25416
25417 #. type: textblock
25418 #: ../fish/guestfish-actions.pod:3286
25419 msgid ""
25420 "This is the same as the L</mount> command, but it mounts the filesystem with "
25421 "the read-only (I<-o ro>) flag."
25422 msgstr ""
25423
25424 #. type: =head2
25425 #: ../fish/guestfish-actions.pod:3289
25426 msgid "mount-vfs"
25427 msgstr ""
25428
25429 #. type: verbatim
25430 #: ../fish/guestfish-actions.pod:3291
25431 #, no-wrap
25432 msgid ""
25433 " mount-vfs options vfstype device mountpoint\n"
25434 "\n"
25435 msgstr ""
25436
25437 #. type: textblock
25438 #: ../fish/guestfish-actions.pod:3293
25439 msgid ""
25440 "This is the same as the L</mount> command, but it allows you to set both the "
25441 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25442 msgstr ""
25443
25444 #. type: =head2
25445 #: ../fish/guestfish-actions.pod:3297
25446 msgid "mountpoints"
25447 msgstr ""
25448
25449 #. type: verbatim
25450 #: ../fish/guestfish-actions.pod:3299
25451 #, no-wrap
25452 msgid ""
25453 " mountpoints\n"
25454 "\n"
25455 msgstr ""
25456
25457 #. type: textblock
25458 #: ../fish/guestfish-actions.pod:3301
25459 msgid ""
25460 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25461 "This one returns a hash table (map) of device name to directory where the "
25462 "device is mounted."
25463 msgstr ""
25464
25465 #. type: =head2
25466 #: ../fish/guestfish-actions.pod:3305
25467 msgid "mounts"
25468 msgstr ""
25469
25470 #. type: verbatim
25471 #: ../fish/guestfish-actions.pod:3307
25472 #, no-wrap
25473 msgid ""
25474 " mounts\n"
25475 "\n"
25476 msgstr ""
25477
25478 #. type: textblock
25479 #: ../fish/guestfish-actions.pod:3314
25480 msgid "See also: L</mountpoints>"
25481 msgstr ""
25482
25483 #. type: =head2
25484 #: ../fish/guestfish-actions.pod:3316
25485 msgid "mv"
25486 msgstr ""
25487
25488 #. type: verbatim
25489 #: ../fish/guestfish-actions.pod:3318
25490 #, no-wrap
25491 msgid ""
25492 " mv src dest\n"
25493 "\n"
25494 msgstr ""
25495
25496 #. type: =head2
25497 #: ../fish/guestfish-actions.pod:3323
25498 msgid "ntfs-3g-probe"
25499 msgstr ""
25500
25501 #. type: verbatim
25502 #: ../fish/guestfish-actions.pod:3325
25503 #, no-wrap
25504 msgid ""
25505 " ntfs-3g-probe true|false device\n"
25506 "\n"
25507 msgstr ""
25508
25509 #. type: =head2
25510 #: ../fish/guestfish-actions.pod:3339
25511 msgid "ntfsresize"
25512 msgstr ""
25513
25514 #. type: verbatim
25515 #: ../fish/guestfish-actions.pod:3341
25516 #, no-wrap
25517 msgid ""
25518 " ntfsresize device\n"
25519 "\n"
25520 msgstr ""
25521
25522 #. type: =head2
25523 #: ../fish/guestfish-actions.pod:3347
25524 msgid "ntfsresize-size"
25525 msgstr ""
25526
25527 #. type: verbatim
25528 #: ../fish/guestfish-actions.pod:3349
25529 #, no-wrap
25530 msgid ""
25531 " ntfsresize-size device size\n"
25532 "\n"
25533 msgstr ""
25534
25535 #. type: textblock
25536 #: ../fish/guestfish-actions.pod:3351
25537 msgid ""
25538 "This command is the same as L</ntfsresize> except that it allows you to "
25539 "specify the new size (in bytes) explicitly."
25540 msgstr ""
25541
25542 #. type: =head2
25543 #: ../fish/guestfish-actions.pod:3354
25544 msgid "part-add"
25545 msgstr ""
25546
25547 #. type: verbatim
25548 #: ../fish/guestfish-actions.pod:3356
25549 #, no-wrap
25550 msgid ""
25551 " part-add device prlogex startsect endsect\n"
25552 "\n"
25553 msgstr ""
25554
25555 #. type: textblock
25556 #: ../fish/guestfish-actions.pod:3358
25557 msgid ""
25558 "This command adds a partition to C<device>.  If there is no partition table "
25559 "on the device, call L</part-init> first."
25560 msgstr ""
25561
25562 #. type: textblock
25563 #: ../fish/guestfish-actions.pod:3370
25564 msgid ""
25565 "Creating a partition which covers the whole disk is not so easy.  Use "
25566 "L</part-disk> to do that."
25567 msgstr ""
25568
25569 #. type: =head2
25570 #: ../fish/guestfish-actions.pod:3373
25571 msgid "part-del"
25572 msgstr ""
25573
25574 #. type: verbatim
25575 #: ../fish/guestfish-actions.pod:3375
25576 #, no-wrap
25577 msgid ""
25578 " part-del device partnum\n"
25579 "\n"
25580 msgstr ""
25581
25582 #. type: =head2
25583 #: ../fish/guestfish-actions.pod:3383
25584 msgid "part-disk"
25585 msgstr ""
25586
25587 #. type: verbatim
25588 #: ../fish/guestfish-actions.pod:3385
25589 #, no-wrap
25590 msgid ""
25591 " part-disk device parttype\n"
25592 "\n"
25593 msgstr ""
25594
25595 #. type: textblock
25596 #: ../fish/guestfish-actions.pod:3387
25597 msgid ""
25598 "This command is simply a combination of L</part-init> followed by "
25599 "L</part-add> to create a single primary partition covering the whole disk."
25600 msgstr ""
25601
25602 #. type: textblock
25603 #: ../fish/guestfish-actions.pod:3391
25604 msgid ""
25605 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25606 "possible values are described in L</part-init>."
25607 msgstr ""
25608
25609 #. type: =head2
25610 #: ../fish/guestfish-actions.pod:3397
25611 msgid "part-get-bootable"
25612 msgstr ""
25613
25614 #. type: verbatim
25615 #: ../fish/guestfish-actions.pod:3399
25616 #, no-wrap
25617 msgid ""
25618 " part-get-bootable device partnum\n"
25619 "\n"
25620 msgstr ""
25621
25622 #. type: textblock
25623 #: ../fish/guestfish-actions.pod:3404
25624 msgid "See also L</part-set-bootable>."
25625 msgstr ""
25626
25627 #. type: =head2
25628 #: ../fish/guestfish-actions.pod:3406
25629 msgid "part-get-mbr-id"
25630 msgstr ""
25631
25632 #. type: verbatim
25633 #: ../fish/guestfish-actions.pod:3408
25634 #, no-wrap
25635 msgid ""
25636 " part-get-mbr-id device partnum\n"
25637 "\n"
25638 msgstr ""
25639
25640 #. type: textblock
25641 #: ../fish/guestfish-actions.pod:3413 ../fish/guestfish-actions.pod:3551
25642 msgid ""
25643 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25644 "undefined results for other partition table types (see "
25645 "L</part-get-parttype>)."
25646 msgstr ""
25647
25648 #. type: =head2
25649 #: ../fish/guestfish-actions.pod:3417
25650 msgid "part-get-parttype"
25651 msgstr ""
25652
25653 #. type: verbatim
25654 #: ../fish/guestfish-actions.pod:3419
25655 #, no-wrap
25656 msgid ""
25657 " part-get-parttype device\n"
25658 "\n"
25659 msgstr ""
25660
25661 #. type: textblock
25662 #: ../fish/guestfish-actions.pod:3424
25663 msgid ""
25664 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25665 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25666 "possible, although unusual.  See L</part-init> for a full list."
25667 msgstr ""
25668
25669 #. type: =head2
25670 #: ../fish/guestfish-actions.pod:3429
25671 msgid "part-init"
25672 msgstr ""
25673
25674 #. type: verbatim
25675 #: ../fish/guestfish-actions.pod:3431
25676 #, no-wrap
25677 msgid ""
25678 " part-init device parttype\n"
25679 "\n"
25680 msgstr ""
25681
25682 #. type: textblock
25683 #: ../fish/guestfish-actions.pod:3437
25684 msgid ""
25685 "Initially there are no partitions.  Following this, you should call "
25686 "L</part-add> for each partition required."
25687 msgstr ""
25688
25689 #. type: =head2
25690 #: ../fish/guestfish-actions.pod:3500
25691 msgid "part-list"
25692 msgstr ""
25693
25694 #. type: verbatim
25695 #: ../fish/guestfish-actions.pod:3502
25696 #, no-wrap
25697 msgid ""
25698 " part-list device\n"
25699 "\n"
25700 msgstr ""
25701
25702 #. type: textblock
25703 #: ../fish/guestfish-actions.pod:3517
25704 msgid ""
25705 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25706 "the device's sector size, see L</blockdev-getss>."
25707 msgstr ""
25708
25709 #. type: =head2
25710 #: ../fish/guestfish-actions.pod:3530
25711 msgid "part-set-bootable"
25712 msgstr ""
25713
25714 #. type: verbatim
25715 #: ../fish/guestfish-actions.pod:3532
25716 #, no-wrap
25717 msgid ""
25718 " part-set-bootable device partnum true|false\n"
25719 "\n"
25720 msgstr ""
25721
25722 #. type: =head2
25723 #: ../fish/guestfish-actions.pod:3541
25724 msgid "part-set-mbr-id"
25725 msgstr ""
25726
25727 #. type: verbatim
25728 #: ../fish/guestfish-actions.pod:3543
25729 #, no-wrap
25730 msgid ""
25731 " part-set-mbr-id device partnum idbyte\n"
25732 "\n"
25733 msgstr ""
25734
25735 #. type: =head2
25736 #: ../fish/guestfish-actions.pod:3555
25737 msgid "part-set-name"
25738 msgstr ""
25739
25740 #. type: verbatim
25741 #: ../fish/guestfish-actions.pod:3557
25742 #, no-wrap
25743 msgid ""
25744 " part-set-name device partnum name\n"
25745 "\n"
25746 msgstr ""
25747
25748 #. type: =head2
25749 #: ../fish/guestfish-actions.pod:3565
25750 msgid "part-to-dev"
25751 msgstr ""
25752
25753 #. type: verbatim
25754 #: ../fish/guestfish-actions.pod:3567
25755 #, no-wrap
25756 msgid ""
25757 " part-to-dev partition\n"
25758 "\n"
25759 msgstr ""
25760
25761 #. type: textblock
25762 #: ../fish/guestfish-actions.pod:3573
25763 msgid ""
25764 "The named partition must exist, for example as a string returned from "
25765 "L</list-partitions>."
25766 msgstr ""
25767
25768 #. type: =head2
25769 #: ../fish/guestfish-actions.pod:3576
25770 msgid "ping-daemon"
25771 msgstr ""
25772
25773 #. type: verbatim
25774 #: ../fish/guestfish-actions.pod:3578
25775 #, no-wrap
25776 msgid ""
25777 " ping-daemon\n"
25778 "\n"
25779 msgstr ""
25780
25781 #. type: =head2
25782 #: ../fish/guestfish-actions.pod:3585
25783 msgid "pread"
25784 msgstr ""
25785
25786 #. type: verbatim
25787 #: ../fish/guestfish-actions.pod:3587
25788 #, no-wrap
25789 msgid ""
25790 " pread path count offset\n"
25791 "\n"
25792 msgstr ""
25793
25794 #. type: textblock
25795 #: ../fish/guestfish-actions.pod:3595
25796 msgid "See also L</pwrite>, L</pread-device>."
25797 msgstr ""
25798
25799 #. type: =head2
25800 #: ../fish/guestfish-actions.pod:3600
25801 msgid "pread-device"
25802 msgstr ""
25803
25804 #. type: verbatim
25805 #: ../fish/guestfish-actions.pod:3602
25806 #, no-wrap
25807 msgid ""
25808 " pread-device device count offset\n"
25809 "\n"
25810 msgstr ""
25811
25812 #. type: textblock
25813 #: ../fish/guestfish-actions.pod:3610
25814 msgid "See also L</pread>."
25815 msgstr ""
25816
25817 #. type: =head2
25818 #: ../fish/guestfish-actions.pod:3615
25819 msgid "pvcreate"
25820 msgstr ""
25821
25822 #. type: verbatim
25823 #: ../fish/guestfish-actions.pod:3617
25824 #, no-wrap
25825 msgid ""
25826 " pvcreate device\n"
25827 "\n"
25828 msgstr ""
25829
25830 #. type: =head2
25831 #: ../fish/guestfish-actions.pod:3623
25832 msgid "pvremove"
25833 msgstr ""
25834
25835 #. type: verbatim
25836 #: ../fish/guestfish-actions.pod:3625
25837 #, no-wrap
25838 msgid ""
25839 " pvremove device\n"
25840 "\n"
25841 msgstr ""
25842
25843 #. type: =head2
25844 #: ../fish/guestfish-actions.pod:3634
25845 msgid "pvresize"
25846 msgstr ""
25847
25848 #. type: verbatim
25849 #: ../fish/guestfish-actions.pod:3636
25850 #, no-wrap
25851 msgid ""
25852 " pvresize device\n"
25853 "\n"
25854 msgstr ""
25855
25856 #. type: =head2
25857 #: ../fish/guestfish-actions.pod:3641
25858 msgid "pvresize-size"
25859 msgstr ""
25860
25861 #. type: verbatim
25862 #: ../fish/guestfish-actions.pod:3643
25863 #, no-wrap
25864 msgid ""
25865 " pvresize-size device size\n"
25866 "\n"
25867 msgstr ""
25868
25869 #. type: textblock
25870 #: ../fish/guestfish-actions.pod:3645
25871 msgid ""
25872 "This command is the same as L</pvresize> except that it allows you to "
25873 "specify the new size (in bytes) explicitly."
25874 msgstr ""
25875
25876 #. type: =head2
25877 #: ../fish/guestfish-actions.pod:3648
25878 msgid "pvs"
25879 msgstr ""
25880
25881 #. type: verbatim
25882 #: ../fish/guestfish-actions.pod:3650
25883 #, no-wrap
25884 msgid ""
25885 " pvs\n"
25886 "\n"
25887 msgstr ""
25888
25889 #. type: textblock
25890 #: ../fish/guestfish-actions.pod:3658
25891 msgid "See also L</pvs-full>."
25892 msgstr ""
25893
25894 #. type: =head2
25895 #: ../fish/guestfish-actions.pod:3660
25896 msgid "pvs-full"
25897 msgstr ""
25898
25899 #. type: verbatim
25900 #: ../fish/guestfish-actions.pod:3662
25901 #, no-wrap
25902 msgid ""
25903 " pvs-full\n"
25904 "\n"
25905 msgstr ""
25906
25907 #. type: =head2
25908 #: ../fish/guestfish-actions.pod:3667
25909 msgid "pvuuid"
25910 msgstr ""
25911
25912 #. type: verbatim
25913 #: ../fish/guestfish-actions.pod:3669
25914 #, no-wrap
25915 msgid ""
25916 " pvuuid device\n"
25917 "\n"
25918 msgstr ""
25919
25920 #. type: =head2
25921 #: ../fish/guestfish-actions.pod:3673
25922 msgid "pwrite"
25923 msgstr ""
25924
25925 #. type: verbatim
25926 #: ../fish/guestfish-actions.pod:3675
25927 #, no-wrap
25928 msgid ""
25929 " pwrite path content offset\n"
25930 "\n"
25931 msgstr ""
25932
25933 #. type: textblock
25934 #: ../fish/guestfish-actions.pod:3686
25935 msgid "See also L</pread>, L</pwrite-device>."
25936 msgstr ""
25937
25938 #. type: =head2
25939 #: ../fish/guestfish-actions.pod:3691
25940 msgid "pwrite-device"
25941 msgstr ""
25942
25943 #. type: verbatim
25944 #: ../fish/guestfish-actions.pod:3693
25945 #, no-wrap
25946 msgid ""
25947 " pwrite-device device content offset\n"
25948 "\n"
25949 msgstr ""
25950
25951 #. type: textblock
25952 #: ../fish/guestfish-actions.pod:3703
25953 msgid "See also L</pwrite>."
25954 msgstr ""
25955
25956 #. type: =head2
25957 #: ../fish/guestfish-actions.pod:3708
25958 msgid "read-file"
25959 msgstr ""
25960
25961 #. type: verbatim
25962 #: ../fish/guestfish-actions.pod:3710
25963 #, no-wrap
25964 msgid ""
25965 " read-file path\n"
25966 "\n"
25967 msgstr ""
25968
25969 #. type: textblock
25970 #: ../fish/guestfish-actions.pod:3715
25971 msgid ""
25972 "Unlike L</cat>, this function can correctly handle files that contain "
25973 "embedded ASCII NUL characters.  However unlike L</download>, this function "
25974 "is limited in the total size of file that can be handled."
25975 msgstr ""
25976
25977 #. type: =head2
25978 #: ../fish/guestfish-actions.pod:3723
25979 msgid "read-lines"
25980 msgstr ""
25981
25982 #. type: verbatim
25983 #: ../fish/guestfish-actions.pod:3725
25984 #, no-wrap
25985 msgid ""
25986 " read-lines path\n"
25987 "\n"
25988 msgstr ""
25989
25990 #. type: textblock
25991 #: ../fish/guestfish-actions.pod:3732
25992 msgid ""
25993 "Note that this function cannot correctly handle binary files (specifically, "
25994 "files containing C<\\0> character which is treated as end of line).  For "
25995 "those you need to use the L</read-file> function which has a more complex "
25996 "interface."
25997 msgstr ""
25998
25999 #. type: =head2
26000 #: ../fish/guestfish-actions.pod:3737
26001 msgid "readdir"
26002 msgstr ""
26003
26004 #. type: verbatim
26005 #: ../fish/guestfish-actions.pod:3739
26006 #, no-wrap
26007 msgid ""
26008 " readdir dir\n"
26009 "\n"
26010 msgstr ""
26011
26012 #. type: textblock
26013 #: ../fish/guestfish-actions.pod:3791
26014 msgid ""
26015 "This function is primarily intended for use by programs.  To get a simple "
26016 "list of names, use L</ls>.  To get a printable directory for human "
26017 "consumption, use L</ll>."
26018 msgstr ""
26019
26020 #. type: =head2
26021 #: ../fish/guestfish-actions.pod:3795
26022 msgid "readlink"
26023 msgstr ""
26024
26025 #. type: verbatim
26026 #: ../fish/guestfish-actions.pod:3797
26027 #, no-wrap
26028 msgid ""
26029 " readlink path\n"
26030 "\n"
26031 msgstr ""
26032
26033 #. type: =head2
26034 #: ../fish/guestfish-actions.pod:3801
26035 msgid "readlinklist"
26036 msgstr ""
26037
26038 #. type: verbatim
26039 #: ../fish/guestfish-actions.pod:3803
26040 #, no-wrap
26041 msgid ""
26042 " readlinklist path 'names ...'\n"
26043 "\n"
26044 msgstr ""
26045
26046 #. type: =head2
26047 #: ../fish/guestfish-actions.pod:3827
26048 msgid "realpath"
26049 msgstr ""
26050
26051 #. type: verbatim
26052 #: ../fish/guestfish-actions.pod:3829
26053 #, no-wrap
26054 msgid ""
26055 " realpath path\n"
26056 "\n"
26057 msgstr ""
26058
26059 #. type: =head2
26060 #: ../fish/guestfish-actions.pod:3834
26061 msgid "removexattr"
26062 msgstr ""
26063
26064 #. type: verbatim
26065 #: ../fish/guestfish-actions.pod:3836
26066 #, no-wrap
26067 msgid ""
26068 " removexattr xattr path\n"
26069 "\n"
26070 msgstr ""
26071
26072 #. type: textblock
26073 #: ../fish/guestfish-actions.pod:3841
26074 msgid "See also: L</lremovexattr>, L<attr(5)>."
26075 msgstr ""
26076
26077 #. type: =head2
26078 #: ../fish/guestfish-actions.pod:3843
26079 msgid "resize2fs"
26080 msgstr ""
26081
26082 #. type: verbatim
26083 #: ../fish/guestfish-actions.pod:3845
26084 #, no-wrap
26085 msgid ""
26086 " resize2fs device\n"
26087 "\n"
26088 msgstr ""
26089
26090 #. type: textblock
26091 #: ../fish/guestfish-actions.pod:3850
26092 msgid ""
26093 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26094 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26095 "gives an error about this and sometimes not.  In any case, it is always safe "
26096 "to call L</e2fsck-f> before calling this function."
26097 msgstr ""
26098
26099 #. type: =head2
26100 #: ../fish/guestfish-actions.pod:3856
26101 msgid "resize2fs-M"
26102 msgstr ""
26103
26104 #. type: verbatim
26105 #: ../fish/guestfish-actions.pod:3858
26106 #, no-wrap
26107 msgid ""
26108 " resize2fs-M device\n"
26109 "\n"
26110 msgstr ""
26111
26112 #. type: textblock
26113 #: ../fish/guestfish-actions.pod:3860
26114 msgid ""
26115 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26116 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26117 "command."
26118 msgstr ""
26119
26120 #. type: textblock
26121 #: ../fish/guestfish-actions.pod:3864
26122 msgid ""
26123 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26124 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26125 "multiplied together, give the resulting size of the minimal filesystem in "
26126 "bytes."
26127 msgstr ""
26128
26129 #. type: =head2
26130 #: ../fish/guestfish-actions.pod:3869
26131 msgid "resize2fs-size"
26132 msgstr ""
26133
26134 #. type: verbatim
26135 #: ../fish/guestfish-actions.pod:3871
26136 #, no-wrap
26137 msgid ""
26138 " resize2fs-size device size\n"
26139 "\n"
26140 msgstr ""
26141
26142 #. type: textblock
26143 #: ../fish/guestfish-actions.pod:3873
26144 msgid ""
26145 "This command is the same as L</resize2fs> except that it allows you to "
26146 "specify the new size (in bytes) explicitly."
26147 msgstr ""
26148
26149 #. type: =head2
26150 #: ../fish/guestfish-actions.pod:3876
26151 msgid "rm"
26152 msgstr ""
26153
26154 #. type: verbatim
26155 #: ../fish/guestfish-actions.pod:3878
26156 #, no-wrap
26157 msgid ""
26158 " rm path\n"
26159 "\n"
26160 msgstr ""
26161
26162 #. type: =head2
26163 #: ../fish/guestfish-actions.pod:3882
26164 msgid "rm-rf"
26165 msgstr ""
26166
26167 #. type: verbatim
26168 #: ../fish/guestfish-actions.pod:3884
26169 #, no-wrap
26170 msgid ""
26171 " rm-rf path\n"
26172 "\n"
26173 msgstr ""
26174
26175 #. type: =head2
26176 #: ../fish/guestfish-actions.pod:3890
26177 msgid "rmdir"
26178 msgstr ""
26179
26180 #. type: verbatim
26181 #: ../fish/guestfish-actions.pod:3892
26182 #, no-wrap
26183 msgid ""
26184 " rmdir path\n"
26185 "\n"
26186 msgstr ""
26187
26188 #. type: =head2
26189 #: ../fish/guestfish-actions.pod:3896
26190 msgid "rmmountpoint"
26191 msgstr ""
26192
26193 #. type: verbatim
26194 #: ../fish/guestfish-actions.pod:3898
26195 #, no-wrap
26196 msgid ""
26197 " rmmountpoint exemptpath\n"
26198 "\n"
26199 msgstr ""
26200
26201 #. type: textblock
26202 #: ../fish/guestfish-actions.pod:3900
26203 msgid ""
26204 "This calls removes a mountpoint that was previously created with "
26205 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
26206 msgstr ""
26207
26208 #. type: =head2
26209 #: ../fish/guestfish-actions.pod:3904
26210 msgid "scrub-device"
26211 msgstr ""
26212
26213 #. type: verbatim
26214 #: ../fish/guestfish-actions.pod:3906
26215 #, no-wrap
26216 msgid ""
26217 " scrub-device device\n"
26218 "\n"
26219 msgstr ""
26220
26221 #. type: =head2
26222 #: ../fish/guestfish-actions.pod:3917
26223 msgid "scrub-file"
26224 msgstr ""
26225
26226 #. type: verbatim
26227 #: ../fish/guestfish-actions.pod:3919
26228 #, no-wrap
26229 msgid ""
26230 " scrub-file file\n"
26231 "\n"
26232 msgstr ""
26233
26234 #. type: =head2
26235 #: ../fish/guestfish-actions.pod:3929
26236 msgid "scrub-freespace"
26237 msgstr ""
26238
26239 #. type: verbatim
26240 #: ../fish/guestfish-actions.pod:3931
26241 #, no-wrap
26242 msgid ""
26243 " scrub-freespace dir\n"
26244 "\n"
26245 msgstr ""
26246
26247 #. type: textblock
26248 #: ../fish/guestfish-actions.pod:3933
26249 msgid ""
26250 "This command creates the directory C<dir> and then fills it with files until "
26251 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26252 "deletes them.  The intention is to scrub any free space on the partition "
26253 "containing C<dir>."
26254 msgstr ""
26255
26256 #. type: =head2
26257 #: ../fish/guestfish-actions.pod:3942
26258 msgid "set-append"
26259 msgstr ""
26260
26261 #. type: =head2
26262 #: ../fish/guestfish-actions.pod:3944
26263 msgid "append"
26264 msgstr ""
26265
26266 #. type: verbatim
26267 #: ../fish/guestfish-actions.pod:3946
26268 #, no-wrap
26269 msgid ""
26270 " set-append append\n"
26271 "\n"
26272 msgstr ""
26273
26274 #. type: =head2
26275 #: ../fish/guestfish-actions.pod:3957
26276 msgid "set-attach-method"
26277 msgstr ""
26278
26279 #. type: =head2
26280 #: ../fish/guestfish-actions.pod:3959
26281 msgid "attach-method"
26282 msgstr ""
26283
26284 #. type: verbatim
26285 #: ../fish/guestfish-actions.pod:3961
26286 #, no-wrap
26287 msgid ""
26288 " set-attach-method attachmethod\n"
26289 "\n"
26290 msgstr ""
26291
26292 #. type: =head2
26293 #: ../fish/guestfish-actions.pod:3983
26294 msgid "set-autosync"
26295 msgstr ""
26296
26297 #. type: =head2
26298 #: ../fish/guestfish-actions.pod:3985
26299 msgid "autosync"
26300 msgstr ""
26301
26302 #. type: verbatim
26303 #: ../fish/guestfish-actions.pod:3987
26304 #, no-wrap
26305 msgid ""
26306 " set-autosync true|false\n"
26307 "\n"
26308 msgstr ""
26309
26310 #. type: =head2
26311 #: ../fish/guestfish-actions.pod:3997
26312 msgid "set-direct"
26313 msgstr ""
26314
26315 #. type: =head2
26316 #: ../fish/guestfish-actions.pod:3999
26317 msgid "direct"
26318 msgstr ""
26319
26320 #. type: verbatim
26321 #: ../fish/guestfish-actions.pod:4001
26322 #, no-wrap
26323 msgid ""
26324 " set-direct true|false\n"
26325 "\n"
26326 msgstr ""
26327
26328 #. type: textblock
26329 #: ../fish/guestfish-actions.pod:4007
26330 msgid ""
26331 "One consequence of this is that log messages aren't caught by the library "
26332 "and handled by L</set-log-message-callback>, but go straight to stdout."
26333 msgstr ""
26334
26335 #. type: =head2
26336 #: ../fish/guestfish-actions.pod:4016
26337 msgid "set-e2label"
26338 msgstr ""
26339
26340 #. type: verbatim
26341 #: ../fish/guestfish-actions.pod:4018
26342 #, no-wrap
26343 msgid ""
26344 " set-e2label device label\n"
26345 "\n"
26346 msgstr ""
26347
26348 #. type: textblock
26349 #: ../fish/guestfish-actions.pod:4024
26350 msgid ""
26351 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26352 "label on a filesystem."
26353 msgstr ""
26354
26355 #. type: =head2
26356 #: ../fish/guestfish-actions.pod:4027
26357 msgid "set-e2uuid"
26358 msgstr ""
26359
26360 #. type: verbatim
26361 #: ../fish/guestfish-actions.pod:4029
26362 #, no-wrap
26363 msgid ""
26364 " set-e2uuid device uuid\n"
26365 "\n"
26366 msgstr ""
26367
26368 #. type: textblock
26369 #: ../fish/guestfish-actions.pod:4036
26370 msgid ""
26371 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26372 "UUID of a filesystem."
26373 msgstr ""
26374
26375 #. type: =head2
26376 #: ../fish/guestfish-actions.pod:4039
26377 msgid "set-memsize"
26378 msgstr ""
26379
26380 #. type: =head2
26381 #: ../fish/guestfish-actions.pod:4041
26382 msgid "memsize"
26383 msgstr ""
26384
26385 #. type: verbatim
26386 #: ../fish/guestfish-actions.pod:4043
26387 #, no-wrap
26388 msgid ""
26389 " set-memsize memsize\n"
26390 "\n"
26391 msgstr ""
26392
26393 #. type: textblock
26394 #: ../fish/guestfish-actions.pod:4045
26395 msgid ""
26396 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26397 "This only has any effect if called before L</launch>."
26398 msgstr ""
26399
26400 #. type: =head2
26401 #: ../fish/guestfish-actions.pod:4056
26402 msgid "set-network"
26403 msgstr ""
26404
26405 #. type: =head2
26406 #: ../fish/guestfish-actions.pod:4058
26407 msgid "network"
26408 msgstr ""
26409
26410 #. type: verbatim
26411 #: ../fish/guestfish-actions.pod:4060
26412 #, no-wrap
26413 msgid ""
26414 " set-network true|false\n"
26415 "\n"
26416 msgstr ""
26417
26418 #. type: textblock
26419 #: ../fish/guestfish-actions.pod:4068
26420 msgid "You must call this before calling L</launch>, otherwise it has no effect."
26421 msgstr ""
26422
26423 #. type: =head2
26424 #: ../fish/guestfish-actions.pod:4071
26425 msgid "set-path"
26426 msgstr ""
26427
26428 #. type: =head2
26429 #: ../fish/guestfish-actions.pod:4073
26430 msgid "path"
26431 msgstr ""
26432
26433 #. type: verbatim
26434 #: ../fish/guestfish-actions.pod:4075
26435 #, no-wrap
26436 msgid ""
26437 " set-path searchpath\n"
26438 "\n"
26439 msgstr ""
26440
26441 #. type: =head2
26442 #: ../fish/guestfish-actions.pod:4084
26443 msgid "set-qemu"
26444 msgstr ""
26445
26446 #. type: =head2
26447 #: ../fish/guestfish-actions.pod:4086
26448 msgid "qemu"
26449 msgstr ""
26450
26451 #. type: verbatim
26452 #: ../fish/guestfish-actions.pod:4088
26453 #, no-wrap
26454 msgid ""
26455 " set-qemu qemu\n"
26456 "\n"
26457 msgstr ""
26458
26459 #. type: =head2
26460 #: ../fish/guestfish-actions.pod:4108
26461 msgid "set-recovery-proc"
26462 msgstr ""
26463
26464 #. type: =head2
26465 #: ../fish/guestfish-actions.pod:4110
26466 msgid "recovery-proc"
26467 msgstr ""
26468
26469 #. type: verbatim
26470 #: ../fish/guestfish-actions.pod:4112
26471 #, no-wrap
26472 msgid ""
26473 " set-recovery-proc true|false\n"
26474 "\n"
26475 msgstr ""
26476
26477 #. type: textblock
26478 #: ../fish/guestfish-actions.pod:4114
26479 msgid ""
26480 "If this is called with the parameter C<false> then L</launch> does not "
26481 "create a recovery process.  The purpose of the recovery process is to stop "
26482 "runaway qemu processes in the case where the main program aborts abruptly."
26483 msgstr ""
26484
26485 #. type: textblock
26486 #: ../fish/guestfish-actions.pod:4119
26487 msgid ""
26488 "This only has any effect if called before L</launch>, and the default is "
26489 "true."
26490 msgstr ""
26491
26492 #. type: =head2
26493 #: ../fish/guestfish-actions.pod:4128
26494 msgid "set-selinux"
26495 msgstr ""
26496
26497 #. type: =head2
26498 #: ../fish/guestfish-actions.pod:4130
26499 msgid "selinux"
26500 msgstr ""
26501
26502 #. type: verbatim
26503 #: ../fish/guestfish-actions.pod:4132
26504 #, no-wrap
26505 msgid ""
26506 " set-selinux true|false\n"
26507 "\n"
26508 msgstr ""
26509
26510 #. type: =head2
26511 #: ../fish/guestfish-actions.pod:4143
26512 msgid "set-trace"
26513 msgstr ""
26514
26515 #. type: =head2
26516 #: ../fish/guestfish-actions.pod:4145
26517 msgid "trace"
26518 msgstr ""
26519
26520 #. type: verbatim
26521 #: ../fish/guestfish-actions.pod:4147
26522 #, no-wrap
26523 msgid ""
26524 " set-trace true|false\n"
26525 "\n"
26526 msgstr ""
26527
26528 #. type: textblock
26529 #: ../fish/guestfish-actions.pod:4159
26530 msgid ""
26531 "Trace messages are normally sent to C<stderr>, unless you register a "
26532 "callback to send them somewhere else (see L</set-event-callback>)."
26533 msgstr ""
26534
26535 #. type: =head2
26536 #: ../fish/guestfish-actions.pod:4163
26537 msgid "set-verbose"
26538 msgstr ""
26539
26540 #. type: =head2
26541 #: ../fish/guestfish-actions.pod:4165
26542 msgid "verbose"
26543 msgstr ""
26544
26545 #. type: verbatim
26546 #: ../fish/guestfish-actions.pod:4167
26547 #, no-wrap
26548 msgid ""
26549 " set-verbose true|false\n"
26550 "\n"
26551 msgstr ""
26552
26553 #. type: textblock
26554 #: ../fish/guestfish-actions.pod:4174
26555 msgid ""
26556 "Verbose messages are normally sent to C<stderr>, unless you register a "
26557 "callback to send them somewhere else (see L</set-event-callback>)."
26558 msgstr ""
26559
26560 #. type: =head2
26561 #: ../fish/guestfish-actions.pod:4178
26562 msgid "setcon"
26563 msgstr ""
26564
26565 #. type: verbatim
26566 #: ../fish/guestfish-actions.pod:4180
26567 #, no-wrap
26568 msgid ""
26569 " setcon context\n"
26570 "\n"
26571 msgstr ""
26572
26573 #. type: =head2
26574 #: ../fish/guestfish-actions.pod:4187
26575 msgid "setxattr"
26576 msgstr ""
26577
26578 #. type: verbatim
26579 #: ../fish/guestfish-actions.pod:4189
26580 #, no-wrap
26581 msgid ""
26582 " setxattr xattr val vallen path\n"
26583 "\n"
26584 msgstr ""
26585
26586 #. type: textblock
26587 #: ../fish/guestfish-actions.pod:4195
26588 msgid "See also: L</lsetxattr>, L<attr(5)>."
26589 msgstr ""
26590
26591 #. type: =head2
26592 #: ../fish/guestfish-actions.pod:4197
26593 msgid "sfdisk"
26594 msgstr ""
26595
26596 #. type: verbatim
26597 #: ../fish/guestfish-actions.pod:4199
26598 #, no-wrap
26599 msgid ""
26600 " sfdisk device cyls heads sectors 'lines ...'\n"
26601 "\n"
26602 msgstr ""
26603
26604 #. type: textblock
26605 #: ../fish/guestfish-actions.pod:4221
26606 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26607 msgstr ""
26608
26609 #. type: =head2
26610 #: ../fish/guestfish-actions.pod:4234
26611 msgid "sfdiskM"
26612 msgstr ""
26613
26614 #. type: verbatim
26615 #: ../fish/guestfish-actions.pod:4236
26616 #, no-wrap
26617 msgid ""
26618 " sfdiskM device 'lines ...'\n"
26619 "\n"
26620 msgstr ""
26621
26622 #. type: textblock
26623 #: ../fish/guestfish-actions.pod:4238
26624 msgid ""
26625 "This is a simplified interface to the L</sfdisk> command, where partition "
26626 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26627 "you don't need to specify the cyls, heads and sectors parameters which were "
26628 "rarely if ever used anyway."
26629 msgstr ""
26630
26631 #. type: textblock
26632 #: ../fish/guestfish-actions.pod:4244
26633 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26634 msgstr ""
26635
26636 #. type: =head2
26637 #: ../fish/guestfish-actions.pod:4257
26638 msgid "sfdisk-N"
26639 msgstr ""
26640
26641 #. type: verbatim
26642 #: ../fish/guestfish-actions.pod:4259
26643 #, no-wrap
26644 msgid ""
26645 " sfdisk-N device partnum cyls heads sectors line\n"
26646 "\n"
26647 msgstr ""
26648
26649 #. type: textblock
26650 #: ../fish/guestfish-actions.pod:4264
26651 msgid ""
26652 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26653 "cyls/heads/sectors parameters."
26654 msgstr ""
26655
26656 #. type: textblock
26657 #: ../fish/guestfish-actions.pod:4267
26658 msgid "See also: L</part-add>"
26659 msgstr ""
26660
26661 #. type: =head2
26662 #: ../fish/guestfish-actions.pod:4279
26663 msgid "sfdisk-disk-geometry"
26664 msgstr ""
26665
26666 #. type: verbatim
26667 #: ../fish/guestfish-actions.pod:4281
26668 #, no-wrap
26669 msgid ""
26670 " sfdisk-disk-geometry device\n"
26671 "\n"
26672 msgstr ""
26673
26674 #. type: textblock
26675 #: ../fish/guestfish-actions.pod:4283
26676 msgid ""
26677 "This displays the disk geometry of C<device> read from the partition table.  "
26678 "Especially in the case where the underlying block device has been resized, "
26679 "this can be different from the kernel's idea of the geometry (see "
26680 "L</sfdisk-kernel-geometry>)."
26681 msgstr ""
26682
26683 #. type: =head2
26684 #: ../fish/guestfish-actions.pod:4291
26685 msgid "sfdisk-kernel-geometry"
26686 msgstr ""
26687
26688 #. type: verbatim
26689 #: ../fish/guestfish-actions.pod:4293
26690 #, no-wrap
26691 msgid ""
26692 " sfdisk-kernel-geometry device\n"
26693 "\n"
26694 msgstr ""
26695
26696 #. type: =head2
26697 #: ../fish/guestfish-actions.pod:4300
26698 msgid "sfdisk-l"
26699 msgstr ""
26700
26701 #. type: verbatim
26702 #: ../fish/guestfish-actions.pod:4302
26703 #, no-wrap
26704 msgid ""
26705 " sfdisk-l device\n"
26706 "\n"
26707 msgstr ""
26708
26709 #. type: textblock
26710 #: ../fish/guestfish-actions.pod:4308
26711 msgid "See also: L</part-list>"
26712 msgstr ""
26713
26714 #. type: =head2
26715 #: ../fish/guestfish-actions.pod:4317
26716 msgid "sh"
26717 msgstr ""
26718
26719 #. type: verbatim
26720 #: ../fish/guestfish-actions.pod:4319
26721 #, no-wrap
26722 msgid ""
26723 " sh command\n"
26724 "\n"
26725 msgstr ""
26726
26727 #. type: textblock
26728 #: ../fish/guestfish-actions.pod:4324
26729 msgid "This is like L</command>, but passes the command to:"
26730 msgstr ""
26731
26732 #. type: textblock
26733 #: ../fish/guestfish-actions.pod:4332
26734 msgid "All the provisos about L</command> apply to this call."
26735 msgstr ""
26736
26737 #. type: =head2
26738 #: ../fish/guestfish-actions.pod:4334
26739 msgid "sh-lines"
26740 msgstr ""
26741
26742 #. type: verbatim
26743 #: ../fish/guestfish-actions.pod:4336
26744 #, no-wrap
26745 msgid ""
26746 " sh-lines command\n"
26747 "\n"
26748 msgstr ""
26749
26750 #. type: textblock
26751 #: ../fish/guestfish-actions.pod:4338
26752 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26753 msgstr ""
26754
26755 #. type: textblock
26756 #: ../fish/guestfish-actions.pod:4341
26757 msgid "See also: L</command-lines>"
26758 msgstr ""
26759
26760 #. type: =head2
26761 #: ../fish/guestfish-actions.pod:4343
26762 msgid "sleep"
26763 msgstr ""
26764
26765 #. type: verbatim
26766 #: ../fish/guestfish-actions.pod:4345
26767 #, no-wrap
26768 msgid ""
26769 " sleep secs\n"
26770 "\n"
26771 msgstr ""
26772
26773 #. type: =head2
26774 #: ../fish/guestfish-actions.pod:4349
26775 msgid "stat"
26776 msgstr ""
26777
26778 #. type: verbatim
26779 #: ../fish/guestfish-actions.pod:4351
26780 #, no-wrap
26781 msgid ""
26782 " stat path\n"
26783 "\n"
26784 msgstr ""
26785
26786 #. type: =head2
26787 #: ../fish/guestfish-actions.pod:4357
26788 msgid "statvfs"
26789 msgstr ""
26790
26791 #. type: verbatim
26792 #: ../fish/guestfish-actions.pod:4359
26793 #, no-wrap
26794 msgid ""
26795 " statvfs path\n"
26796 "\n"
26797 msgstr ""
26798
26799 #. type: =head2
26800 #: ../fish/guestfish-actions.pod:4367
26801 msgid "strings"
26802 msgstr ""
26803
26804 #. type: verbatim
26805 #: ../fish/guestfish-actions.pod:4369
26806 #, no-wrap
26807 msgid ""
26808 " strings path\n"
26809 "\n"
26810 msgstr ""
26811
26812 #. type: =head2
26813 #: ../fish/guestfish-actions.pod:4377
26814 msgid "strings-e"
26815 msgstr ""
26816
26817 #. type: verbatim
26818 #: ../fish/guestfish-actions.pod:4379
26819 #, no-wrap
26820 msgid ""
26821 " strings-e encoding path\n"
26822 "\n"
26823 msgstr ""
26824
26825 #. type: textblock
26826 #: ../fish/guestfish-actions.pod:4381
26827 msgid ""
26828 "This is like the L</strings> command, but allows you to specify the encoding "
26829 "of strings that are looked for in the source file C<path>."
26830 msgstr ""
26831
26832 #. type: textblock
26833 #: ../fish/guestfish-actions.pod:4391
26834 msgid ""
26835 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
26836 "ISO-8859-X (this is what L</strings> uses)."
26837 msgstr ""
26838
26839 #. type: =head2
26840 #: ../fish/guestfish-actions.pod:4423
26841 msgid "swapoff-device"
26842 msgstr ""
26843
26844 #. type: verbatim
26845 #: ../fish/guestfish-actions.pod:4425
26846 #, no-wrap
26847 msgid ""
26848 " swapoff-device device\n"
26849 "\n"
26850 msgstr ""
26851
26852 #. type: textblock
26853 #: ../fish/guestfish-actions.pod:4427
26854 msgid ""
26855 "This command disables the libguestfs appliance swap device or partition "
26856 "named C<device>.  See L</swapon-device>."
26857 msgstr ""
26858
26859 #. type: =head2
26860 #: ../fish/guestfish-actions.pod:4431
26861 msgid "swapoff-file"
26862 msgstr ""
26863
26864 #. type: verbatim
26865 #: ../fish/guestfish-actions.pod:4433
26866 #, no-wrap
26867 msgid ""
26868 " swapoff-file file\n"
26869 "\n"
26870 msgstr ""
26871
26872 #. type: =head2
26873 #: ../fish/guestfish-actions.pod:4437
26874 msgid "swapoff-label"
26875 msgstr ""
26876
26877 #. type: verbatim
26878 #: ../fish/guestfish-actions.pod:4439
26879 #, no-wrap
26880 msgid ""
26881 " swapoff-label label\n"
26882 "\n"
26883 msgstr ""
26884
26885 #. type: =head2
26886 #: ../fish/guestfish-actions.pod:4444
26887 msgid "swapoff-uuid"
26888 msgstr ""
26889
26890 #. type: verbatim
26891 #: ../fish/guestfish-actions.pod:4446
26892 #, no-wrap
26893 msgid ""
26894 " swapoff-uuid uuid\n"
26895 "\n"
26896 msgstr ""
26897
26898 #. type: =head2
26899 #: ../fish/guestfish-actions.pod:4451
26900 msgid "swapon-device"
26901 msgstr ""
26902
26903 #. type: verbatim
26904 #: ../fish/guestfish-actions.pod:4453
26905 #, no-wrap
26906 msgid ""
26907 " swapon-device device\n"
26908 "\n"
26909 msgstr ""
26910
26911 #. type: textblock
26912 #: ../fish/guestfish-actions.pod:4455
26913 msgid ""
26914 "This command enables the libguestfs appliance to use the swap device or "
26915 "partition named C<device>.  The increased memory is made available for all "
26916 "commands, for example those run using L</command> or L</sh>."
26917 msgstr ""
26918
26919 #. type: =head2
26920 #: ../fish/guestfish-actions.pod:4467
26921 msgid "swapon-file"
26922 msgstr ""
26923
26924 #. type: verbatim
26925 #: ../fish/guestfish-actions.pod:4469
26926 #, no-wrap
26927 msgid ""
26928 " swapon-file file\n"
26929 "\n"
26930 msgstr ""
26931
26932 #. type: textblock
26933 #: ../fish/guestfish-actions.pod:4471
26934 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
26935 msgstr ""
26936
26937 #. type: =head2
26938 #: ../fish/guestfish-actions.pod:4474
26939 msgid "swapon-label"
26940 msgstr ""
26941
26942 #. type: verbatim
26943 #: ../fish/guestfish-actions.pod:4476
26944 #, no-wrap
26945 msgid ""
26946 " swapon-label label\n"
26947 "\n"
26948 msgstr ""
26949
26950 #. type: textblock
26951 #: ../fish/guestfish-actions.pod:4478
26952 msgid ""
26953 "This command enables swap to a labeled swap partition.  See "
26954 "L</swapon-device> for other notes."
26955 msgstr ""
26956
26957 #. type: =head2
26958 #: ../fish/guestfish-actions.pod:4481
26959 msgid "swapon-uuid"
26960 msgstr ""
26961
26962 #. type: verbatim
26963 #: ../fish/guestfish-actions.pod:4483
26964 #, no-wrap
26965 msgid ""
26966 " swapon-uuid uuid\n"
26967 "\n"
26968 msgstr ""
26969
26970 #. type: textblock
26971 #: ../fish/guestfish-actions.pod:4485
26972 msgid ""
26973 "This command enables swap to a swap partition with the given UUID.  See "
26974 "L</swapon-device> for other notes."
26975 msgstr ""
26976
26977 #. type: =head2
26978 #: ../fish/guestfish-actions.pod:4488
26979 msgid "sync"
26980 msgstr ""
26981
26982 #. type: verbatim
26983 #: ../fish/guestfish-actions.pod:4490
26984 #, no-wrap
26985 msgid ""
26986 " sync\n"
26987 "\n"
26988 msgstr ""
26989
26990 #. type: =head2
26991 #: ../fish/guestfish-actions.pod:4498
26992 msgid "tail"
26993 msgstr ""
26994
26995 #. type: verbatim
26996 #: ../fish/guestfish-actions.pod:4500
26997 #, no-wrap
26998 msgid ""
26999 " tail path\n"
27000 "\n"
27001 msgstr ""
27002
27003 #. type: =head2
27004 #: ../fish/guestfish-actions.pod:4508
27005 msgid "tail-n"
27006 msgstr ""
27007
27008 #. type: verbatim
27009 #: ../fish/guestfish-actions.pod:4510
27010 #, no-wrap
27011 msgid ""
27012 " tail-n nrlines path\n"
27013 "\n"
27014 msgstr ""
27015
27016 #. type: =head2
27017 #: ../fish/guestfish-actions.pod:4523
27018 msgid "tar-in"
27019 msgstr ""
27020
27021 #. type: verbatim
27022 #: ../fish/guestfish-actions.pod:4525
27023 #, no-wrap
27024 msgid ""
27025 " tar-in (tarfile|-) directory\n"
27026 "\n"
27027 msgstr ""
27028
27029 #. type: textblock
27030 #: ../fish/guestfish-actions.pod:4530
27031 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27032 msgstr ""
27033
27034 #. type: =head2
27035 #: ../fish/guestfish-actions.pod:4535
27036 msgid "tar-out"
27037 msgstr ""
27038
27039 #. type: verbatim
27040 #: ../fish/guestfish-actions.pod:4537
27041 #, no-wrap
27042 msgid ""
27043 " tar-out directory (tarfile|-)\n"
27044 "\n"
27045 msgstr ""
27046
27047 #. type: textblock
27048 #: ../fish/guestfish-actions.pod:4542
27049 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27050 msgstr ""
27051
27052 #. type: =head2
27053 #: ../fish/guestfish-actions.pod:4547
27054 msgid "tgz-in"
27055 msgstr ""
27056
27057 #. type: verbatim
27058 #: ../fish/guestfish-actions.pod:4549
27059 #, no-wrap
27060 msgid ""
27061 " tgz-in (tarball|-) directory\n"
27062 "\n"
27063 msgstr ""
27064
27065 #. type: textblock
27066 #: ../fish/guestfish-actions.pod:4554
27067 msgid "To upload an uncompressed tarball, use L</tar-in>."
27068 msgstr ""
27069
27070 #. type: =head2
27071 #: ../fish/guestfish-actions.pod:4558
27072 msgid "tgz-out"
27073 msgstr ""
27074
27075 #. type: verbatim
27076 #: ../fish/guestfish-actions.pod:4560
27077 #, no-wrap
27078 msgid ""
27079 " tgz-out directory (tarball|-)\n"
27080 "\n"
27081 msgstr ""
27082
27083 #. type: textblock
27084 #: ../fish/guestfish-actions.pod:4565
27085 msgid "To download an uncompressed tarball, use L</tar-out>."
27086 msgstr ""
27087
27088 #. type: =head2
27089 #: ../fish/guestfish-actions.pod:4569
27090 msgid "touch"
27091 msgstr ""
27092
27093 #. type: verbatim
27094 #: ../fish/guestfish-actions.pod:4571
27095 #, no-wrap
27096 msgid ""
27097 " touch path\n"
27098 "\n"
27099 msgstr ""
27100
27101 #. type: =head2
27102 #: ../fish/guestfish-actions.pod:4580
27103 msgid "truncate"
27104 msgstr ""
27105
27106 #. type: verbatim
27107 #: ../fish/guestfish-actions.pod:4582
27108 #, no-wrap
27109 msgid ""
27110 " truncate path\n"
27111 "\n"
27112 msgstr ""
27113
27114 #. type: =head2
27115 #: ../fish/guestfish-actions.pod:4587
27116 msgid "truncate-size"
27117 msgstr ""
27118
27119 #. type: verbatim
27120 #: ../fish/guestfish-actions.pod:4589
27121 #, no-wrap
27122 msgid ""
27123 " truncate-size path size\n"
27124 "\n"
27125 msgstr ""
27126
27127 #. type: textblock
27128 #: ../fish/guestfish-actions.pod:4594
27129 msgid ""
27130 "If the current file size is less than C<size> then the file is extended to "
27131 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27132 "blocks are not allocated for the file until you write to it).  To create a "
27133 "non-sparse file of zeroes, use L</fallocate64> instead."
27134 msgstr ""
27135
27136 #. type: =head2
27137 #: ../fish/guestfish-actions.pod:4600
27138 msgid "tune2fs-l"
27139 msgstr ""
27140
27141 #. type: verbatim
27142 #: ../fish/guestfish-actions.pod:4602
27143 #, no-wrap
27144 msgid ""
27145 " tune2fs-l device\n"
27146 "\n"
27147 msgstr ""
27148
27149 #. type: =head2
27150 #: ../fish/guestfish-actions.pod:4612
27151 msgid "txz-in"
27152 msgstr ""
27153
27154 #. type: verbatim
27155 #: ../fish/guestfish-actions.pod:4614
27156 #, no-wrap
27157 msgid ""
27158 " txz-in (tarball|-) directory\n"
27159 "\n"
27160 msgstr ""
27161
27162 #. type: =head2
27163 #: ../fish/guestfish-actions.pod:4621
27164 msgid "txz-out"
27165 msgstr ""
27166
27167 #. type: verbatim
27168 #: ../fish/guestfish-actions.pod:4623
27169 #, no-wrap
27170 msgid ""
27171 " txz-out directory (tarball|-)\n"
27172 "\n"
27173 msgstr ""
27174
27175 #. type: =head2
27176 #: ../fish/guestfish-actions.pod:4630
27177 msgid "umask"
27178 msgstr ""
27179
27180 #. type: verbatim
27181 #: ../fish/guestfish-actions.pod:4632
27182 #, no-wrap
27183 msgid ""
27184 " umask mask\n"
27185 "\n"
27186 msgstr ""
27187
27188 #. type: textblock
27189 #: ../fish/guestfish-actions.pod:4646
27190 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27191 msgstr ""
27192
27193 #. type: =head2
27194 #: ../fish/guestfish-actions.pod:4651
27195 msgid "umount"
27196 msgstr ""
27197
27198 #. type: =head2
27199 #: ../fish/guestfish-actions.pod:4653
27200 msgid "unmount"
27201 msgstr ""
27202
27203 #. type: verbatim
27204 #: ../fish/guestfish-actions.pod:4655
27205 #, no-wrap
27206 msgid ""
27207 " umount pathordevice\n"
27208 "\n"
27209 msgstr ""
27210
27211 #. type: =head2
27212 #: ../fish/guestfish-actions.pod:4661
27213 msgid "umount-all"
27214 msgstr ""
27215
27216 #. type: =head2
27217 #: ../fish/guestfish-actions.pod:4663
27218 msgid "unmount-all"
27219 msgstr ""
27220
27221 #. type: verbatim
27222 #: ../fish/guestfish-actions.pod:4665
27223 #, no-wrap
27224 msgid ""
27225 " umount-all\n"
27226 "\n"
27227 msgstr ""
27228
27229 #. type: =head2
27230 #: ../fish/guestfish-actions.pod:4671
27231 msgid "upload"
27232 msgstr ""
27233
27234 #. type: verbatim
27235 #: ../fish/guestfish-actions.pod:4673
27236 #, no-wrap
27237 msgid ""
27238 " upload (filename|-) remotefilename\n"
27239 "\n"
27240 msgstr ""
27241
27242 #. type: textblock
27243 #: ../fish/guestfish-actions.pod:4680
27244 msgid "See also L</download>."
27245 msgstr ""
27246
27247 #. type: =head2
27248 #: ../fish/guestfish-actions.pod:4684
27249 msgid "upload-offset"
27250 msgstr ""
27251
27252 #. type: verbatim
27253 #: ../fish/guestfish-actions.pod:4686
27254 #, no-wrap
27255 msgid ""
27256 " upload-offset (filename|-) remotefilename offset\n"
27257 "\n"
27258 msgstr ""
27259
27260 #. type: textblock
27261 #: ../fish/guestfish-actions.pod:4698
27262 msgid ""
27263 "Note that there is no limit on the amount of data that can be uploaded with "
27264 "this call, unlike with L</pwrite>, and this call always writes the full "
27265 "amount unless an error occurs."
27266 msgstr ""
27267
27268 #. type: textblock
27269 #: ../fish/guestfish-actions.pod:4703
27270 msgid "See also L</upload>, L</pwrite>."
27271 msgstr ""
27272
27273 #. type: =head2
27274 #: ../fish/guestfish-actions.pod:4707
27275 msgid "utimens"
27276 msgstr ""
27277
27278 #. type: verbatim
27279 #: ../fish/guestfish-actions.pod:4709
27280 #, no-wrap
27281 msgid ""
27282 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27283 "\n"
27284 msgstr ""
27285
27286 #. type: =head2
27287 #: ../fish/guestfish-actions.pod:4728
27288 msgid "version"
27289 msgstr ""
27290
27291 #. type: verbatim
27292 #: ../fish/guestfish-actions.pod:4730
27293 #, no-wrap
27294 msgid ""
27295 " version\n"
27296 "\n"
27297 msgstr ""
27298
27299 #. type: textblock
27300 #: ../fish/guestfish-actions.pod:4757
27301 msgid ""
27302 "I<Note:> Don't use this call to test for availability of features.  In "
27303 "enterprise distributions we backport features from later versions into "
27304 "earlier versions, making this an unreliable way to test for features.  Use "
27305 "L</available> instead."
27306 msgstr ""
27307
27308 #. type: =head2
27309 #: ../fish/guestfish-actions.pod:4763
27310 msgid "vfs-label"
27311 msgstr ""
27312
27313 #. type: verbatim
27314 #: ../fish/guestfish-actions.pod:4765
27315 #, no-wrap
27316 msgid ""
27317 " vfs-label device\n"
27318 "\n"
27319 msgstr ""
27320
27321 #. type: textblock
27322 #: ../fish/guestfish-actions.pod:4772
27323 msgid "To find a filesystem from the label, use L</findfs-label>."
27324 msgstr ""
27325
27326 #. type: =head2
27327 #: ../fish/guestfish-actions.pod:4774
27328 msgid "vfs-type"
27329 msgstr ""
27330
27331 #. type: verbatim
27332 #: ../fish/guestfish-actions.pod:4776
27333 #, no-wrap
27334 msgid ""
27335 " vfs-type device\n"
27336 "\n"
27337 msgstr ""
27338
27339 #. type: =head2
27340 #: ../fish/guestfish-actions.pod:4786
27341 msgid "vfs-uuid"
27342 msgstr ""
27343
27344 #. type: verbatim
27345 #: ../fish/guestfish-actions.pod:4788
27346 #, no-wrap
27347 msgid ""
27348 " vfs-uuid device\n"
27349 "\n"
27350 msgstr ""
27351
27352 #. type: textblock
27353 #: ../fish/guestfish-actions.pod:4795
27354 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27355 msgstr ""
27356
27357 #. type: =head2
27358 #: ../fish/guestfish-actions.pod:4797
27359 msgid "vg-activate"
27360 msgstr ""
27361
27362 #. type: verbatim
27363 #: ../fish/guestfish-actions.pod:4799
27364 #, no-wrap
27365 msgid ""
27366 " vg-activate true|false 'volgroups ...'\n"
27367 "\n"
27368 msgstr ""
27369
27370 #. type: =head2
27371 #: ../fish/guestfish-actions.pod:4812
27372 msgid "vg-activate-all"
27373 msgstr ""
27374
27375 #. type: verbatim
27376 #: ../fish/guestfish-actions.pod:4814
27377 #, no-wrap
27378 msgid ""
27379 " vg-activate-all true|false\n"
27380 "\n"
27381 msgstr ""
27382
27383 #. type: =head2
27384 #: ../fish/guestfish-actions.pod:4824
27385 msgid "vgcreate"
27386 msgstr ""
27387
27388 #. type: verbatim
27389 #: ../fish/guestfish-actions.pod:4826
27390 #, no-wrap
27391 msgid ""
27392 " vgcreate volgroup 'physvols ...'\n"
27393 "\n"
27394 msgstr ""
27395
27396 #. type: =head2
27397 #: ../fish/guestfish-actions.pod:4831
27398 msgid "vglvuuids"
27399 msgstr ""
27400
27401 #. type: verbatim
27402 #: ../fish/guestfish-actions.pod:4833
27403 #, no-wrap
27404 msgid ""
27405 " vglvuuids vgname\n"
27406 "\n"
27407 msgstr ""
27408
27409 #. type: textblock
27410 #: ../fish/guestfish-actions.pod:4838
27411 msgid ""
27412 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27413 "logical volumes and volume groups."
27414 msgstr ""
27415
27416 #. type: textblock
27417 #: ../fish/guestfish-actions.pod:4841
27418 msgid "See also L</vgpvuuids>."
27419 msgstr ""
27420
27421 #. type: =head2
27422 #: ../fish/guestfish-actions.pod:4843
27423 msgid "vgpvuuids"
27424 msgstr ""
27425
27426 #. type: verbatim
27427 #: ../fish/guestfish-actions.pod:4845
27428 #, no-wrap
27429 msgid ""
27430 " vgpvuuids vgname\n"
27431 "\n"
27432 msgstr ""
27433
27434 #. type: textblock
27435 #: ../fish/guestfish-actions.pod:4850
27436 msgid ""
27437 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27438 "physical volumes and volume groups."
27439 msgstr ""
27440
27441 #. type: textblock
27442 #: ../fish/guestfish-actions.pod:4853
27443 msgid "See also L</vglvuuids>."
27444 msgstr ""
27445
27446 #. type: =head2
27447 #: ../fish/guestfish-actions.pod:4855
27448 msgid "vgremove"
27449 msgstr ""
27450
27451 #. type: verbatim
27452 #: ../fish/guestfish-actions.pod:4857
27453 #, no-wrap
27454 msgid ""
27455 " vgremove vgname\n"
27456 "\n"
27457 msgstr ""
27458
27459 #. type: =head2
27460 #: ../fish/guestfish-actions.pod:4864
27461 msgid "vgrename"
27462 msgstr ""
27463
27464 #. type: verbatim
27465 #: ../fish/guestfish-actions.pod:4866
27466 #, no-wrap
27467 msgid ""
27468 " vgrename volgroup newvolgroup\n"
27469 "\n"
27470 msgstr ""
27471
27472 #. type: =head2
27473 #: ../fish/guestfish-actions.pod:4870
27474 msgid "vgs"
27475 msgstr ""
27476
27477 #. type: verbatim
27478 #: ../fish/guestfish-actions.pod:4872
27479 #, no-wrap
27480 msgid ""
27481 " vgs\n"
27482 "\n"
27483 msgstr ""
27484
27485 #. type: textblock
27486 #: ../fish/guestfish-actions.pod:4880
27487 msgid "See also L</vgs-full>."
27488 msgstr ""
27489
27490 #. type: =head2
27491 #: ../fish/guestfish-actions.pod:4882
27492 msgid "vgs-full"
27493 msgstr ""
27494
27495 #. type: verbatim
27496 #: ../fish/guestfish-actions.pod:4884
27497 #, no-wrap
27498 msgid ""
27499 " vgs-full\n"
27500 "\n"
27501 msgstr ""
27502
27503 #. type: =head2
27504 #: ../fish/guestfish-actions.pod:4889
27505 msgid "vgscan"
27506 msgstr ""
27507
27508 #. type: verbatim
27509 #: ../fish/guestfish-actions.pod:4891
27510 #, no-wrap
27511 msgid ""
27512 " vgscan\n"
27513 "\n"
27514 msgstr ""
27515
27516 #. type: =head2
27517 #: ../fish/guestfish-actions.pod:4896
27518 msgid "vguuid"
27519 msgstr ""
27520
27521 #. type: verbatim
27522 #: ../fish/guestfish-actions.pod:4898
27523 #, no-wrap
27524 msgid ""
27525 " vguuid vgname\n"
27526 "\n"
27527 msgstr ""
27528
27529 #. type: =head2
27530 #: ../fish/guestfish-actions.pod:4902
27531 msgid "wc-c"
27532 msgstr ""
27533
27534 #. type: verbatim
27535 #: ../fish/guestfish-actions.pod:4904
27536 #, no-wrap
27537 msgid ""
27538 " wc-c path\n"
27539 "\n"
27540 msgstr ""
27541
27542 #. type: =head2
27543 #: ../fish/guestfish-actions.pod:4909
27544 msgid "wc-l"
27545 msgstr ""
27546
27547 #. type: verbatim
27548 #: ../fish/guestfish-actions.pod:4911
27549 #, no-wrap
27550 msgid ""
27551 " wc-l path\n"
27552 "\n"
27553 msgstr ""
27554
27555 #. type: =head2
27556 #: ../fish/guestfish-actions.pod:4916
27557 msgid "wc-w"
27558 msgstr ""
27559
27560 #. type: verbatim
27561 #: ../fish/guestfish-actions.pod:4918
27562 #, no-wrap
27563 msgid ""
27564 " wc-w path\n"
27565 "\n"
27566 msgstr ""
27567
27568 #. type: =head2
27569 #: ../fish/guestfish-actions.pod:4923
27570 msgid "write"
27571 msgstr ""
27572
27573 #. type: verbatim
27574 #: ../fish/guestfish-actions.pod:4925
27575 #, no-wrap
27576 msgid ""
27577 " write path content\n"
27578 "\n"
27579 msgstr ""
27580
27581 #. type: =head2
27582 #: ../fish/guestfish-actions.pod:4933
27583 msgid "write-file"
27584 msgstr ""
27585
27586 #. type: verbatim
27587 #: ../fish/guestfish-actions.pod:4935
27588 #, no-wrap
27589 msgid ""
27590 " write-file path content size\n"
27591 "\n"
27592 msgstr ""
27593
27594 #. type: =head2
27595 #: ../fish/guestfish-actions.pod:4958
27596 msgid "zegrep"
27597 msgstr ""
27598
27599 #. type: verbatim
27600 #: ../fish/guestfish-actions.pod:4960
27601 #, no-wrap
27602 msgid ""
27603 " zegrep regex path\n"
27604 "\n"
27605 msgstr ""
27606
27607 #. type: =head2
27608 #: ../fish/guestfish-actions.pod:4968
27609 msgid "zegrepi"
27610 msgstr ""
27611
27612 #. type: verbatim
27613 #: ../fish/guestfish-actions.pod:4970
27614 #, no-wrap
27615 msgid ""
27616 " zegrepi regex path\n"
27617 "\n"
27618 msgstr ""
27619
27620 #. type: =head2
27621 #: ../fish/guestfish-actions.pod:4978
27622 msgid "zero"
27623 msgstr ""
27624
27625 #. type: verbatim
27626 #: ../fish/guestfish-actions.pod:4980
27627 #, no-wrap
27628 msgid ""
27629 " zero device\n"
27630 "\n"
27631 msgstr ""
27632
27633 #. type: textblock
27634 #: ../fish/guestfish-actions.pod:4988
27635 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
27636 msgstr ""
27637
27638 #. type: =head2
27639 #: ../fish/guestfish-actions.pod:4991
27640 msgid "zero-device"
27641 msgstr ""
27642
27643 #. type: verbatim
27644 #: ../fish/guestfish-actions.pod:4993
27645 #, no-wrap
27646 msgid ""
27647 " zero-device device\n"
27648 "\n"
27649 msgstr ""
27650
27651 #. type: textblock
27652 #: ../fish/guestfish-actions.pod:4995
27653 msgid ""
27654 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27655 "which just zeroes the first few blocks of a device."
27656 msgstr ""
27657
27658 #. type: =head2
27659 #: ../fish/guestfish-actions.pod:5002
27660 msgid "zerofree"
27661 msgstr ""
27662
27663 #. type: verbatim
27664 #: ../fish/guestfish-actions.pod:5004
27665 #, no-wrap
27666 msgid ""
27667 " zerofree device\n"
27668 "\n"
27669 msgstr ""
27670
27671 #. type: =head2
27672 #: ../fish/guestfish-actions.pod:5017
27673 msgid "zfgrep"
27674 msgstr ""
27675
27676 #. type: verbatim
27677 #: ../fish/guestfish-actions.pod:5019
27678 #, no-wrap
27679 msgid ""
27680 " zfgrep pattern path\n"
27681 "\n"
27682 msgstr ""
27683
27684 #. type: =head2
27685 #: ../fish/guestfish-actions.pod:5027
27686 msgid "zfgrepi"
27687 msgstr ""
27688
27689 #. type: verbatim
27690 #: ../fish/guestfish-actions.pod:5029
27691 #, no-wrap
27692 msgid ""
27693 " zfgrepi pattern path\n"
27694 "\n"
27695 msgstr ""
27696
27697 #. type: =head2
27698 #: ../fish/guestfish-actions.pod:5037
27699 msgid "zfile"
27700 msgstr ""
27701
27702 #. type: verbatim
27703 #: ../fish/guestfish-actions.pod:5039
27704 #, no-wrap
27705 msgid ""
27706 " zfile meth path\n"
27707 "\n"
27708 msgstr ""
27709
27710 #. type: textblock
27711 #: ../fish/guestfish-actions.pod:5046
27712 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
27713 msgstr ""
27714
27715 #. type: =head2
27716 #: ../fish/guestfish-actions.pod:5056
27717 msgid "zgrep"
27718 msgstr ""
27719
27720 #. type: verbatim
27721 #: ../fish/guestfish-actions.pod:5058
27722 #, no-wrap
27723 msgid ""
27724 " zgrep regex path\n"
27725 "\n"
27726 msgstr ""
27727
27728 #. type: =head2
27729 #: ../fish/guestfish-actions.pod:5066
27730 msgid "zgrepi"
27731 msgstr ""
27732
27733 #. type: verbatim
27734 #: ../fish/guestfish-actions.pod:5068
27735 #, no-wrap
27736 msgid ""
27737 " zgrepi regex path\n"
27738 "\n"
27739 msgstr ""
27740
27741 #. type: =head2
27742 #: ../fish/guestfish-commands.pod:1
27743 msgid "alloc"
27744 msgstr ""
27745
27746 #. type: =head2
27747 #: ../fish/guestfish-commands.pod:3
27748 msgid "allocate"
27749 msgstr ""
27750
27751 #. type: verbatim
27752 #: ../fish/guestfish-commands.pod:5
27753 #, no-wrap
27754 msgid ""
27755 " alloc filename size\n"
27756 "\n"
27757 msgstr ""
27758
27759 #. type: textblock
27760 #: ../fish/guestfish-commands.pod:7
27761 msgid ""
27762 "This creates an empty (zeroed) file of the given size, and then adds so it "
27763 "can be further examined."
27764 msgstr ""
27765
27766 #. type: textblock
27767 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
27768 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27769 msgstr ""
27770
27771 #. type: textblock
27772 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
27773 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27774 msgstr ""
27775
27776 #. type: textblock
27777 #: ../fish/guestfish-commands.pod:14
27778 msgid ""
27779 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
27780 "image, see L</PREPARED DISK IMAGES>."
27781 msgstr ""
27782
27783 #. type: =head2
27784 #: ../fish/guestfish-commands.pod:17
27785 msgid "copy-in"
27786 msgstr ""
27787
27788 #. type: verbatim
27789 #: ../fish/guestfish-commands.pod:19
27790 #, no-wrap
27791 msgid ""
27792 " copy-in local [local ...] /remotedir\n"
27793 "\n"
27794 msgstr ""
27795
27796 #. type: textblock
27797 #: ../fish/guestfish-commands.pod:21
27798 msgid ""
27799 "C<copy-in> copies local files or directories recursively into the disk "
27800 "image, placing them in the directory called C</remotedir> (which must "
27801 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
27802 "other commands as necessary."
27803 msgstr ""
27804
27805 #. type: textblock
27806 #: ../fish/guestfish-commands.pod:26
27807 msgid ""
27808 "Multiple local files and directories can be specified, but the last "
27809 "parameter must always be a remote directory.  Wildcards cannot be used."
27810 msgstr ""
27811
27812 #. type: =head2
27813 #: ../fish/guestfish-commands.pod:30
27814 msgid "copy-out"
27815 msgstr ""
27816
27817 #. type: verbatim
27818 #: ../fish/guestfish-commands.pod:32
27819 #, no-wrap
27820 msgid ""
27821 " copy-out remote [remote ...] localdir\n"
27822 "\n"
27823 msgstr ""
27824
27825 #. type: textblock
27826 #: ../fish/guestfish-commands.pod:34
27827 msgid ""
27828 "C<copy-out> copies remote files or directories recursively out of the disk "
27829 "image, placing them on the host disk in a local directory called C<localdir> "
27830 "(which must exist).  This guestfish meta-command turns into a sequence of "
27831 "L</download>, L</tar-out> and other commands as necessary."
27832 msgstr ""
27833
27834 #. type: textblock
27835 #: ../fish/guestfish-commands.pod:40
27836 msgid ""
27837 "Multiple remote files and directories can be specified, but the last "
27838 "parameter must always be a local directory.  To download to the current "
27839 "directory, use C<.> as in:"
27840 msgstr ""
27841
27842 #. type: verbatim
27843 #: ../fish/guestfish-commands.pod:44
27844 #, no-wrap
27845 msgid ""
27846 " copy-out /home .\n"
27847 "\n"
27848 msgstr ""
27849
27850 #. type: textblock
27851 #: ../fish/guestfish-commands.pod:46
27852 msgid ""
27853 "Wildcards cannot be used in the ordinary command, but you can use them with "
27854 "the help of L</glob> like this:"
27855 msgstr ""
27856
27857 #. type: verbatim
27858 #: ../fish/guestfish-commands.pod:49
27859 #, no-wrap
27860 msgid ""
27861 " glob copy-out /home/* .\n"
27862 "\n"
27863 msgstr ""
27864
27865 #. type: =head2
27866 #: ../fish/guestfish-commands.pod:51
27867 msgid "display"
27868 msgstr ""
27869
27870 #. type: verbatim
27871 #: ../fish/guestfish-commands.pod:53
27872 #, no-wrap
27873 msgid ""
27874 " display filename\n"
27875 "\n"
27876 msgstr ""
27877
27878 #. type: textblock
27879 #: ../fish/guestfish-commands.pod:55
27880 msgid ""
27881 "Use C<display> (a graphical display program) to display an image file.  It "
27882 "downloads the file, and runs C<display> on it."
27883 msgstr ""
27884
27885 #. type: textblock
27886 #: ../fish/guestfish-commands.pod:58
27887 msgid ""
27888 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
27889 "environment variable.  For example to use the GNOME display program:"
27890 msgstr ""
27891
27892 #. type: verbatim
27893 #: ../fish/guestfish-commands.pod:61
27894 #, no-wrap
27895 msgid ""
27896 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
27897 "\n"
27898 msgstr ""
27899
27900 #. type: textblock
27901 #: ../fish/guestfish-commands.pod:63
27902 msgid "See also L<display(1)>."
27903 msgstr ""
27904
27905 #. type: =head2
27906 #: ../fish/guestfish-commands.pod:65
27907 msgid "echo"
27908 msgstr ""
27909
27910 #. type: verbatim
27911 #: ../fish/guestfish-commands.pod:67
27912 #, no-wrap
27913 msgid ""
27914 " echo [params ...]\n"
27915 "\n"
27916 msgstr ""
27917
27918 #. type: textblock
27919 #: ../fish/guestfish-commands.pod:69
27920 msgid "This echos the parameters to the terminal."
27921 msgstr ""
27922
27923 #. type: =head2
27924 #: ../fish/guestfish-commands.pod:71
27925 msgid "edit"
27926 msgstr ""
27927
27928 #. type: =head2
27929 #: ../fish/guestfish-commands.pod:73
27930 msgid "vi"
27931 msgstr ""
27932
27933 #. type: =head2
27934 #: ../fish/guestfish-commands.pod:75
27935 msgid "emacs"
27936 msgstr ""
27937
27938 #. type: verbatim
27939 #: ../fish/guestfish-commands.pod:77
27940 #, no-wrap
27941 msgid ""
27942 " edit filename\n"
27943 "\n"
27944 msgstr ""
27945
27946 #. type: textblock
27947 #: ../fish/guestfish-commands.pod:79
27948 msgid ""
27949 "This is used to edit a file.  It downloads the file, edits it locally using "
27950 "your editor, then uploads the result."
27951 msgstr ""
27952
27953 #. type: textblock
27954 #: ../fish/guestfish-commands.pod:82
27955 msgid ""
27956 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
27957 "or C<emacs> you will get those corresponding editors."
27958 msgstr ""
27959
27960 #. type: =head2
27961 #: ../fish/guestfish-commands.pod:86
27962 msgid "glob"
27963 msgstr ""
27964
27965 #. type: verbatim
27966 #: ../fish/guestfish-commands.pod:88
27967 #, no-wrap
27968 msgid ""
27969 " glob command args...\n"
27970 "\n"
27971 msgstr ""
27972
27973 #. type: textblock
27974 #: ../fish/guestfish-commands.pod:90
27975 msgid ""
27976 "Expand wildcards in any paths in the args list, and run C<command> "
27977 "repeatedly on each matching path."
27978 msgstr ""
27979
27980 #. type: textblock
27981 #: ../fish/guestfish-commands.pod:93
27982 msgid "See L</WILDCARDS AND GLOBBING>."
27983 msgstr ""
27984
27985 #. type: =head2
27986 #: ../fish/guestfish-commands.pod:95
27987 msgid "hexedit"
27988 msgstr ""
27989
27990 #. type: verbatim
27991 #: ../fish/guestfish-commands.pod:97
27992 #, no-wrap
27993 msgid ""
27994 " hexedit <filename|device>\n"
27995 " hexedit <filename|device> <max>\n"
27996 " hexedit <filename|device> <start> <max>\n"
27997 "\n"
27998 msgstr ""
27999
28000 #. type: textblock
28001 #: ../fish/guestfish-commands.pod:101
28002 msgid ""
28003 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
28004 "device."
28005 msgstr ""
28006
28007 #. type: textblock
28008 #: ../fish/guestfish-commands.pod:104
28009 msgid ""
28010 "This command works by downloading potentially the whole file or device, "
28011 "editing it locally, then uploading it.  If the file or device is large, you "
28012 "have to specify which part you wish to edit by using C<max> and/or C<start> "
28013 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
28014 "usual modifiers allowed such as C<1M> (1 megabyte)."
28015 msgstr ""
28016
28017 #. type: textblock
28018 #: ../fish/guestfish-commands.pod:111
28019 msgid "For example to edit the first few sectors of a disk you might do:"
28020 msgstr ""
28021
28022 #. type: verbatim
28023 #: ../fish/guestfish-commands.pod:114
28024 #, no-wrap
28025 msgid ""
28026 " hexedit /dev/sda 1M\n"
28027 "\n"
28028 msgstr ""
28029
28030 #. type: textblock
28031 #: ../fish/guestfish-commands.pod:116
28032 msgid ""
28033 "which would allow you to edit anywhere within the first megabyte of the "
28034 "disk."
28035 msgstr ""
28036
28037 #. type: textblock
28038 #: ../fish/guestfish-commands.pod:119
28039 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28040 msgstr ""
28041
28042 #. type: verbatim
28043 #: ../fish/guestfish-commands.pod:121
28044 #, no-wrap
28045 msgid ""
28046 " hexedit /dev/sda1 0x400 0x400\n"
28047 "\n"
28048 msgstr ""
28049
28050 #. type: textblock
28051 #: ../fish/guestfish-commands.pod:123
28052 msgid "(assuming the superblock is in the standard location)."
28053 msgstr ""
28054
28055 #. type: textblock
28056 #: ../fish/guestfish-commands.pod:125
28057 msgid ""
28058 "This command requires the external L<hexedit(1)> program.  You can specify "
28059 "another program to use by setting the C<HEXEDITOR> environment variable."
28060 msgstr ""
28061
28062 #. type: textblock
28063 #: ../fish/guestfish-commands.pod:129
28064 msgid "See also L</hexdump>."
28065 msgstr ""
28066
28067 #. type: =head2
28068 #: ../fish/guestfish-commands.pod:131
28069 msgid "lcd"
28070 msgstr ""
28071
28072 #. type: verbatim
28073 #: ../fish/guestfish-commands.pod:133
28074 #, no-wrap
28075 msgid ""
28076 " lcd directory\n"
28077 "\n"
28078 msgstr ""
28079
28080 #. type: textblock
28081 #: ../fish/guestfish-commands.pod:135
28082 msgid "Change the local directory, ie. the current directory of guestfish itself."
28083 msgstr ""
28084
28085 #. type: textblock
28086 #: ../fish/guestfish-commands.pod:138
28087 msgid "Note that C<!cd> won't do what you might expect."
28088 msgstr ""
28089
28090 #. type: =head2
28091 #: ../fish/guestfish-commands.pod:140
28092 msgid "man"
28093 msgstr ""
28094
28095 #. type: =head2
28096 #: ../fish/guestfish-commands.pod:142
28097 msgid "manual"
28098 msgstr ""
28099
28100 #. type: verbatim
28101 #: ../fish/guestfish-commands.pod:144
28102 #, no-wrap
28103 msgid ""
28104 "  man\n"
28105 "\n"
28106 msgstr ""
28107
28108 #. type: textblock
28109 #: ../fish/guestfish-commands.pod:146
28110 msgid "Opens the manual page for guestfish."
28111 msgstr ""
28112
28113 #. type: =head2
28114 #: ../fish/guestfish-commands.pod:148
28115 msgid "more"
28116 msgstr ""
28117
28118 #. type: =head2
28119 #: ../fish/guestfish-commands.pod:150
28120 msgid "less"
28121 msgstr ""
28122
28123 #. type: verbatim
28124 #: ../fish/guestfish-commands.pod:152
28125 #, no-wrap
28126 msgid ""
28127 " more filename\n"
28128 "\n"
28129 msgstr ""
28130
28131 #. type: verbatim
28132 #: ../fish/guestfish-commands.pod:154
28133 #, no-wrap
28134 msgid ""
28135 " less filename\n"
28136 "\n"
28137 msgstr ""
28138
28139 #. type: textblock
28140 #: ../fish/guestfish-commands.pod:156
28141 msgid "This is used to view a file."
28142 msgstr ""
28143
28144 #. type: textblock
28145 #: ../fish/guestfish-commands.pod:158
28146 msgid ""
28147 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28148 "C<less> you will get the C<less> command specifically."
28149 msgstr ""
28150
28151 #. type: =head2
28152 #: ../fish/guestfish-commands.pod:161
28153 msgid "reopen"
28154 msgstr ""
28155
28156 #. type: verbatim
28157 #: ../fish/guestfish-commands.pod:163
28158 #, no-wrap
28159 msgid ""
28160 "  reopen\n"
28161 "\n"
28162 msgstr ""
28163
28164 #. type: textblock
28165 #: ../fish/guestfish-commands.pod:165
28166 msgid ""
28167 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28168 "normally, because the handle is closed properly when guestfish exits.  "
28169 "However this is occasionally useful for testing."
28170 msgstr ""
28171
28172 #. type: =head2
28173 #: ../fish/guestfish-commands.pod:169
28174 msgid "sparse"
28175 msgstr ""
28176
28177 #. type: verbatim
28178 #: ../fish/guestfish-commands.pod:171
28179 #, no-wrap
28180 msgid ""
28181 " sparse filename size\n"
28182 "\n"
28183 msgstr ""
28184
28185 #. type: textblock
28186 #: ../fish/guestfish-commands.pod:173
28187 msgid ""
28188 "This creates an empty sparse file of the given size, and then adds so it can "
28189 "be further examined."
28190 msgstr ""
28191
28192 #. type: textblock
28193 #: ../fish/guestfish-commands.pod:176
28194 msgid ""
28195 "In all respects it works the same as the L</alloc> command, except that the "
28196 "image file is allocated sparsely, which means that disk blocks are not "
28197 "assigned to the file until they are needed.  Sparse disk files only use "
28198 "space when written to, but they are slower and there is a danger you could "
28199 "run out of real disk space during a write operation."
28200 msgstr ""
28201
28202 #. type: =head2
28203 #: ../fish/guestfish-commands.pod:186
28204 msgid "supported"
28205 msgstr ""
28206
28207 #. type: verbatim
28208 #: ../fish/guestfish-commands.pod:188
28209 #, no-wrap
28210 msgid ""
28211 " supported\n"
28212 "\n"
28213 msgstr ""
28214
28215 #. type: textblock
28216 #: ../fish/guestfish-commands.pod:190
28217 msgid ""
28218 "This command returns a list of the optional groups known to the daemon, and "
28219 "indicates which ones are supported by this build of the libguestfs "
28220 "appliance."
28221 msgstr ""
28222
28223 #. type: textblock
28224 #: ../fish/guestfish-commands.pod:194
28225 msgid "See also L<guestfs(3)/AVAILABILITY>."
28226 msgstr ""
28227
28228 #. type: =head2
28229 #: ../fish/guestfish-commands.pod:196
28230 msgid "time"
28231 msgstr ""
28232
28233 #. type: verbatim
28234 #: ../fish/guestfish-commands.pod:198
28235 #, no-wrap
28236 msgid ""
28237 " time command args...\n"
28238 "\n"
28239 msgstr ""
28240
28241 #. type: textblock
28242 #: ../fish/guestfish-commands.pod:200
28243 msgid ""
28244 "Run the command as usual, but print the elapsed time afterwards.  This can "
28245 "be useful for benchmarking operations."
28246 msgstr ""
28247
28248 #. type: textblock
28249 #: ../test-tool/libguestfs-test-tool.pod:5
28250 msgid "libguestfs-test-tool - End user tests for libguestfs"
28251 msgstr ""
28252
28253 #. type: verbatim
28254 #: ../test-tool/libguestfs-test-tool.pod:9
28255 #, no-wrap
28256 msgid ""
28257 " libguestfs-test-tool [--options]\n"
28258 "\n"
28259 msgstr ""
28260
28261 #. type: textblock
28262 #: ../test-tool/libguestfs-test-tool.pod:13
28263 msgid ""
28264 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28265 "and developers, to allow them to check basic libguestfs functionality is "
28266 "working.  This is needed because libguestfs occasionally breaks for reasons "
28267 "beyond our control: usually because of changes in the underlying qemu or "
28268 "kernel packages, or the host environment."
28269 msgstr ""
28270
28271 #. type: textblock
28272 #: ../test-tool/libguestfs-test-tool.pod:20
28273 msgid "If you suspect a problem in libguestfs, then just run:"
28274 msgstr ""
28275
28276 #. type: verbatim
28277 #: ../test-tool/libguestfs-test-tool.pod:22
28278 #, no-wrap
28279 msgid ""
28280 " libguestfs-test-tool\n"
28281 "\n"
28282 msgstr ""
28283
28284 #. type: textblock
28285 #: ../test-tool/libguestfs-test-tool.pod:24
28286 msgid "It will print lots of diagnostic messages."
28287 msgstr ""
28288
28289 #. type: textblock
28290 #: ../test-tool/libguestfs-test-tool.pod:26
28291 msgid "If it runs to completion successfully, you will see this near the end:"
28292 msgstr ""
28293
28294 #. type: verbatim
28295 #: ../test-tool/libguestfs-test-tool.pod:28
28296 #, no-wrap
28297 msgid ""
28298 " ===== TEST FINISHED OK =====\n"
28299 "\n"
28300 msgstr ""
28301
28302 #. type: textblock
28303 #: ../test-tool/libguestfs-test-tool.pod:30
28304 msgid "and the test tool will exit with code 0."
28305 msgstr ""
28306
28307 #. type: textblock
28308 #: ../test-tool/libguestfs-test-tool.pod:32
28309 msgid ""
28310 "If it fails (and/or exits with non-zero error code), please paste the "
28311 "B<complete, unedited> output of the test tool into a bug report.  More "
28312 "information about reporting bugs can be found on the "
28313 "L<http://libguestfs.org/> website."
28314 msgstr ""
28315
28316 #. type: =item
28317 #: ../test-tool/libguestfs-test-tool.pod:41
28318 msgid "I<--help>"
28319 msgstr ""
28320
28321 #. type: textblock
28322 #: ../test-tool/libguestfs-test-tool.pod:43
28323 msgid "Display short usage information and exit."
28324 msgstr ""
28325
28326 #. type: =item
28327 #: ../test-tool/libguestfs-test-tool.pod:45
28328 msgid "I<--qemu qemu_binary>"
28329 msgstr ""
28330
28331 #. type: textblock
28332 #: ../test-tool/libguestfs-test-tool.pod:47
28333 msgid ""
28334 "If you have downloaded another qemu binary, point this option at the full "
28335 "path of the binary to try it."
28336 msgstr ""
28337
28338 #. type: =item
28339 #: ../test-tool/libguestfs-test-tool.pod:50
28340 msgid "I<--qemudir qemu_source_dir>"
28341 msgstr ""
28342
28343 #. type: textblock
28344 #: ../test-tool/libguestfs-test-tool.pod:52
28345 msgid ""
28346 "If you have compiled qemu from source, point this option at the source "
28347 "directory to try it."
28348 msgstr ""
28349
28350 #. type: =item
28351 #: ../test-tool/libguestfs-test-tool.pod:55
28352 msgid "I<--timeout N>"
28353 msgstr ""
28354
28355 #. type: textblock
28356 #: ../test-tool/libguestfs-test-tool.pod:57
28357 msgid ""
28358 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28359 "does not usually need to be adjusted unless your machine is very slow."
28360 msgstr ""
28361
28362 #. type: =head1
28363 #: ../test-tool/libguestfs-test-tool.pod:63
28364 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28365 msgstr ""
28366
28367 #. type: textblock
28368 #: ../test-tool/libguestfs-test-tool.pod:65
28369 msgid ""
28370 "If you have compiled another version of qemu from source and would like to "
28371 "try that, then you can use the I<--qemudir> option to point to the qemu "
28372 "source directory."
28373 msgstr ""
28374
28375 #. type: textblock
28376 #: ../test-tool/libguestfs-test-tool.pod:69
28377 msgid ""
28378 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28379 "option to point to the binary."
28380 msgstr ""
28381
28382 #. type: textblock
28383 #: ../test-tool/libguestfs-test-tool.pod:72
28384 msgid ""
28385 "When using an alternate qemu with libguestfs, usually you would need to "
28386 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
28387 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
28388 "when you use either of the I<--qemudir> or I<--qemu> options."
28389 msgstr ""
28390
28391 #. type: textblock
28392 #: ../test-tool/libguestfs-test-tool.pod:79
28393 msgid ""
28394 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28395 "I<1> if there was an error."
28396 msgstr ""
28397
28398 #. type: textblock
28399 #: ../test-tool/libguestfs-test-tool.pod:84
28400 msgid ""
28401 "For the full list of environment variables which may affect libguestfs, "
28402 "please see the L<guestfs(3)> manual page."
28403 msgstr ""
28404
28405 #. type: textblock
28406 #: ../test-tool/libguestfs-test-tool.pod:89
28407 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28408 msgstr ""
28409
28410 #. type: textblock
28411 #: ../fuse/guestmount.pod:5
28412 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28413 msgstr ""
28414
28415 #. type: verbatim
28416 #: ../fuse/guestmount.pod:9
28417 #, no-wrap
28418 msgid ""
28419 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28420 "\n"
28421 msgstr ""
28422
28423 #. type: verbatim
28424 #: ../fuse/guestmount.pod:11
28425 #, no-wrap
28426 msgid ""
28427 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28428 "\n"
28429 msgstr ""
28430
28431 #. type: verbatim
28432 #: ../fuse/guestmount.pod:13
28433 #, no-wrap
28434 msgid ""
28435 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28436 "\n"
28437 msgstr ""
28438
28439 #. type: textblock
28440 #: ../fuse/guestmount.pod:17
28441 msgid ""
28442 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28443 "machines.  If you do this, you risk disk corruption in the VM."
28444 msgstr ""
28445
28446 #. type: textblock
28447 #: ../fuse/guestmount.pod:22
28448 msgid ""
28449 "The guestmount program can be used to mount virtual machine filesystems and "
28450 "other disk images on the host.  It uses libguestfs for access to the guest "
28451 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28452 "a mountable device."
28453 msgstr ""
28454
28455 #. type: textblock
28456 #: ../fuse/guestmount.pod:27
28457 msgid ""
28458 "Along with other options, you have to give at least one device (I<-a> "
28459 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28460 "option) or use the I<-i> inspection option.  How this works is better "
28461 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28462 "below."
28463 msgstr ""
28464
28465 #. type: textblock
28466 #: ../fuse/guestmount.pod:33
28467 msgid ""
28468 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28469 "by you, and the filesystem will not be visible to any other users unless you "
28470 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28471 "the filesystem, use the C<fusermount -u> command."
28472 msgstr ""
28473
28474 #. type: textblock
28475 #: ../fuse/guestmount.pod:41
28476 msgid ""
28477 "For a typical Windows guest which has its main filesystem on the first "
28478 "partition:"
28479 msgstr ""
28480
28481 #. type: verbatim
28482 #: ../fuse/guestmount.pod:44
28483 #, no-wrap
28484 msgid ""
28485 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28486 "\n"
28487 msgstr ""
28488
28489 #. type: textblock
28490 #: ../fuse/guestmount.pod:46
28491 msgid ""
28492 "For a typical Linux guest which has a /boot filesystem on the first "
28493 "partition, and the root filesystem on a logical volume:"
28494 msgstr ""
28495
28496 #. type: verbatim
28497 #: ../fuse/guestmount.pod:49
28498 #, no-wrap
28499 msgid ""
28500 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28501 "\n"
28502 msgstr ""
28503
28504 #. type: textblock
28505 #: ../fuse/guestmount.pod:51
28506 msgid "To get libguestfs to detect guest mountpoints for you:"
28507 msgstr ""
28508
28509 #. type: verbatim
28510 #: ../fuse/guestmount.pod:53
28511 #, no-wrap
28512 msgid ""
28513 " guestmount -a guest.img -i --ro /mnt\n"
28514 "\n"
28515 msgstr ""
28516
28517 #. type: textblock
28518 #: ../fuse/guestmount.pod:55
28519 msgid "For a libvirt guest called \"Guest\" you could do:"
28520 msgstr ""
28521
28522 #. type: verbatim
28523 #: ../fuse/guestmount.pod:57
28524 #, no-wrap
28525 msgid ""
28526 " guestmount -d Guest -i --ro /mnt\n"
28527 "\n"
28528 msgstr ""
28529
28530 #. type: textblock
28531 #: ../fuse/guestmount.pod:59
28532 msgid ""
28533 "If you don't know what filesystems are contained in a guest or disk image, "
28534 "use L<virt-filesystems(1)> first:"
28535 msgstr ""
28536
28537 #. type: verbatim
28538 #: ../fuse/guestmount.pod:62
28539 #, no-wrap
28540 msgid ""
28541 " virt-filesystems MyGuest\n"
28542 "\n"
28543 msgstr ""
28544
28545 #. type: textblock
28546 #: ../fuse/guestmount.pod:64
28547 msgid ""
28548 "If you want to trace the libguestfs calls but without excessive debugging "
28549 "information, we recommend:"
28550 msgstr ""
28551
28552 #. type: verbatim
28553 #: ../fuse/guestmount.pod:67
28554 #, no-wrap
28555 msgid ""
28556 " guestmount [...] --trace /mnt\n"
28557 "\n"
28558 msgstr ""
28559
28560 #. type: textblock
28561 #: ../fuse/guestmount.pod:69
28562 msgid "If you want to debug the program, we recommend:"
28563 msgstr ""
28564
28565 #. type: verbatim
28566 #: ../fuse/guestmount.pod:71
28567 #, no-wrap
28568 msgid ""
28569 " guestmount [...] --trace --verbose /mnt\n"
28570 "\n"
28571 msgstr ""
28572
28573 #. type: =head1
28574 #: ../fuse/guestmount.pod:73
28575 msgid "NOTES"
28576 msgstr ""
28577
28578 #. type: =head2
28579 #: ../fuse/guestmount.pod:75
28580 msgid "Other users cannot see the filesystem by default"
28581 msgstr ""
28582
28583 #. type: textblock
28584 #: ../fuse/guestmount.pod:77
28585 msgid ""
28586 "If you mount a filesystem as one user (eg. root), then other users will not "
28587 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
28588 "option when mounting:"
28589 msgstr ""
28590
28591 #. type: verbatim
28592 #: ../fuse/guestmount.pod:81
28593 #, no-wrap
28594 msgid ""
28595 " sudo guestmount [...] -o allow_other /mnt\n"
28596 "\n"
28597 msgstr ""
28598
28599 #. type: =item
28600 #: ../fuse/guestmount.pod:87
28601 msgid "B<-a image> | B<--add image>"
28602 msgstr ""
28603
28604 #. type: textblock
28605 #: ../fuse/guestmount.pod:89
28606 msgid "Add a block device or virtual machine image."
28607 msgstr ""
28608
28609 #. type: =item
28610 #: ../fuse/guestmount.pod:94
28611 msgid "B<-c URI> | B<--connect URI>"
28612 msgstr ""
28613
28614 #. type: =item
28615 #: ../fuse/guestmount.pod:100
28616 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28617 msgstr ""
28618
28619 #. type: =item
28620 #: ../fuse/guestmount.pod:108
28621 msgid "B<--dir-cache-timeout N>"
28622 msgstr ""
28623
28624 #. type: textblock
28625 #: ../fuse/guestmount.pod:110
28626 msgid ""
28627 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28628 "seconds.  The readdir cache [actually, there are several semi-independent "
28629 "caches] is populated after a readdir(2) call with the stat and extended "
28630 "attributes of the files in the directory, in anticipation that they will be "
28631 "requested soon after."
28632 msgstr ""
28633
28634 #. type: textblock
28635 #: ../fuse/guestmount.pod:116
28636 msgid ""
28637 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28638 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28639 "requests, only cache existing ones."
28640 msgstr ""
28641
28642 #. type: =item
28643 #: ../fuse/guestmount.pod:127
28644 msgid "B<--format=raw|qcow2|..> | B<--format>"
28645 msgstr ""
28646
28647 #. type: textblock
28648 #: ../fuse/guestmount.pod:134
28649 msgid ""
28650 "If you have untrusted raw-format guest disk images, you should use this "
28651 "option to specify the disk format.  This avoids a possible security problem "
28652 "with malicious guests (CVE-2010-3851).  See also "
28653 "L<guestfs(3)/guestfs_add_drive_opts>."
28654 msgstr ""
28655
28656 #. type: =item
28657 #: ../fuse/guestmount.pod:139
28658 msgid "B<--fuse-help>"
28659 msgstr ""
28660
28661 #. type: textblock
28662 #: ../fuse/guestmount.pod:141
28663 msgid "Display help on special FUSE options (see I<-o> below)."
28664 msgstr ""
28665
28666 #. type: textblock
28667 #: ../fuse/guestmount.pod:145
28668 msgid "Display brief help and exit."
28669 msgstr ""
28670
28671 #. type: =item
28672 #: ../fuse/guestmount.pod:147
28673 msgid "B<-i> | B<--inspector>"
28674 msgstr ""
28675
28676 #. type: textblock
28677 #: ../fuse/guestmount.pod:167
28678 msgid ""
28679 "Mount the named partition or logical volume on the given mountpoint B<in the "
28680 "guest> (this has nothing to do with mountpoints in the host)."
28681 msgstr ""
28682
28683 #. type: textblock
28684 #: ../fuse/guestmount.pod:170
28685 msgid ""
28686 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28687 "something on C</>."
28688 msgstr ""
28689
28690 #. type: =item
28691 #: ../fuse/guestmount.pod:183
28692 msgid "B<-n> | B<--no-sync>"
28693 msgstr ""
28694
28695 #. type: textblock
28696 #: ../fuse/guestmount.pod:185
28697 msgid ""
28698 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28699 "unmounted.  If you specify this option, then we don't attempt to sync the "
28700 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28701 msgstr ""
28702
28703 #. type: =item
28704 #: ../fuse/guestmount.pod:190
28705 msgid "B<-o option> | B<--option option>"
28706 msgstr ""
28707
28708 #. type: textblock
28709 #: ../fuse/guestmount.pod:192
28710 msgid "Pass extra options to FUSE."
28711 msgstr ""
28712
28713 #. type: textblock
28714 #: ../fuse/guestmount.pod:194
28715 msgid ""
28716 "To get a list of all the extra options supported by FUSE, use the command "
28717 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28718 "of them are a good idea."
28719 msgstr ""
28720
28721 #. type: verbatim
28722 #: ../fuse/guestmount.pod:198
28723 #, no-wrap
28724 msgid ""
28725 " guestmount --fuse-help\n"
28726 "\n"
28727 msgstr ""
28728
28729 #. type: textblock
28730 #: ../fuse/guestmount.pod:200
28731 msgid "Some potentially useful FUSE options:"
28732 msgstr ""
28733
28734 #. type: =item
28735 #: ../fuse/guestmount.pod:204
28736 msgid "B<-o allow_other>"
28737 msgstr ""
28738
28739 #. type: textblock
28740 #: ../fuse/guestmount.pod:206
28741 msgid "Allow other users to see the filesystem."
28742 msgstr ""
28743
28744 #. type: =item
28745 #: ../fuse/guestmount.pod:208
28746 msgid "B<-o attr_timeout=N>"
28747 msgstr ""
28748
28749 #. type: textblock
28750 #: ../fuse/guestmount.pod:210
28751 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28752 msgstr ""
28753
28754 #. type: =item
28755 #: ../fuse/guestmount.pod:212
28756 msgid "B<-o kernel_cache>"
28757 msgstr ""
28758
28759 #. type: textblock
28760 #: ../fuse/guestmount.pod:214
28761 msgid ""
28762 "Allow the kernel to cache files (reduces the number of reads that have to go "
28763 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28764 "afford the extra memory usage."
28765 msgstr ""
28766
28767 #. type: =item
28768 #: ../fuse/guestmount.pod:218
28769 msgid "B<-o uid=N> B<-o gid=N>"
28770 msgstr ""
28771
28772 #. type: textblock
28773 #: ../fuse/guestmount.pod:220
28774 msgid ""
28775 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28776 "the chosen values."
28777 msgstr ""
28778
28779 #. type: =item
28780 #: ../fuse/guestmount.pod:225
28781 msgid "B<-r> | B<--ro>"
28782 msgstr ""
28783
28784 #. type: textblock
28785 #: ../fuse/guestmount.pod:227
28786 msgid ""
28787 "Add devices and mount everything read-only.  Also disallow writes and make "
28788 "the disk appear read-only to FUSE."
28789 msgstr ""
28790
28791 #. type: textblock
28792 #: ../fuse/guestmount.pod:230
28793 msgid ""
28794 "This is highly recommended if you are not going to edit the guest disk.  If "
28795 "the guest is running and this option is I<not> supplied, then there is a "
28796 "strong risk of disk corruption in the guest.  We try to prevent this from "
28797 "happening, but it is not always possible."
28798 msgstr ""
28799
28800 #. type: textblock
28801 #: ../fuse/guestmount.pod:235
28802 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28803 msgstr ""
28804
28805 #. type: textblock
28806 #: ../fuse/guestmount.pod:239
28807 msgid "Enable SELinux support for the guest."
28808 msgstr ""
28809
28810 #. type: =item
28811 #: ../fuse/guestmount.pod:241
28812 msgid "B<-v> | B<--verbose>"
28813 msgstr ""
28814
28815 #. type: textblock
28816 #: ../fuse/guestmount.pod:243
28817 msgid "Enable verbose messages from underlying libguestfs."
28818 msgstr ""
28819
28820 #. type: =item
28821 #: ../fuse/guestmount.pod:245
28822 msgid "B<-V> | B<--version>"
28823 msgstr ""
28824
28825 #. type: textblock
28826 #: ../fuse/guestmount.pod:247
28827 msgid "Display the program version and exit."
28828 msgstr ""
28829
28830 #. type: =item
28831 #: ../fuse/guestmount.pod:249
28832 msgid "B<-w> | B<--rw>"
28833 msgstr ""
28834
28835 #. type: textblock
28836 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
28837 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28838 msgstr ""
28839
28840 #. type: =item
28841 #: ../fuse/guestmount.pod:256
28842 msgid "B<-x> | B<--trace>"
28843 msgstr ""
28844
28845 #. type: textblock
28846 #: ../fuse/guestmount.pod:258
28847 msgid "Trace libguestfs calls and entry into each FUSE function."
28848 msgstr ""
28849
28850 #. type: textblock
28851 #: ../fuse/guestmount.pod:260
28852 msgid "This also stops the daemon from forking into the background."
28853 msgstr ""
28854
28855 #. type: textblock
28856 #: ../fuse/guestmount.pod:281
28857 msgid ""
28858 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
28859 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
28860 "L<http://fuse.sf.net/>."
28861 msgstr ""
28862
28863 #. type: textblock
28864 #: ../fuse/guestmount.pod:296
28865 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
28866 msgstr ""
28867
28868 #. type: textblock
28869 #: ../tools/virt-win-reg.pl:37
28870 msgid ""
28871 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
28872 "guest"
28873 msgstr ""
28874
28875 #. type: verbatim
28876 #: ../tools/virt-win-reg.pl:41
28877 #, no-wrap
28878 msgid ""
28879 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
28880 "\n"
28881 msgstr ""
28882
28883 #. type: verbatim
28884 #: ../tools/virt-win-reg.pl:43
28885 #, no-wrap
28886 msgid ""
28887 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
28888 "\n"
28889 msgstr ""
28890
28891 #. type: verbatim
28892 #: ../tools/virt-win-reg.pl:45
28893 #, no-wrap
28894 msgid ""
28895 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
28896 "\n"
28897 msgstr ""
28898
28899 #. type: verbatim
28900 #: ../tools/virt-win-reg.pl:47
28901 #, no-wrap
28902 msgid ""
28903 " virt-win-reg --merge domname [input.reg ...]\n"
28904 "\n"
28905 msgstr ""
28906
28907 #. type: verbatim
28908 #: ../tools/virt-win-reg.pl:49
28909 #, no-wrap
28910 msgid ""
28911 " virt-win-reg [--options] disk.img ... # instead of domname\n"
28912 "\n"
28913 msgstr ""
28914
28915 #. type: textblock
28916 #: ../tools/virt-win-reg.pl:53
28917 msgid ""
28918 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
28919 "virtual machines.  If you do this, you I<will> get irreversible disk "
28920 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
28921 "but doesn't catch all cases."
28922 msgstr ""
28923
28924 #. type: textblock
28925 #: ../tools/virt-win-reg.pl:58
28926 msgid ""
28927 "Modifying the Windows Registry is an inherently risky operation.  The format "
28928 "is deliberately obscure and undocumented, and Registry changes can leave the "
28929 "system unbootable.  Therefore when using the I<--merge> option, make sure "
28930 "you have a reliable backup first."
28931 msgstr ""
28932
28933 #. type: textblock
28934 #: ../tools/virt-win-reg.pl:65
28935 msgid ""
28936 "This program can export and merge Windows Registry entries from a Windows "
28937 "guest."
28938 msgstr ""
28939
28940 #. type: textblock
28941 #: ../tools/virt-win-reg.pl:68
28942 msgid ""
28943 "The first parameter is the libvirt guest name or the raw disk image of a "
28944 "Windows guest."
28945 msgstr ""
28946
28947 #. type: textblock
28948 #: ../tools/virt-win-reg.pl:71
28949 msgid ""
28950 "If I<--merge> is I<not> specified, then the chosen registry key is "
28951 "displayed/exported (recursively).  For example:"
28952 msgstr ""
28953
28954 #. type: verbatim
28955 #: ../tools/virt-win-reg.pl:74
28956 #, no-wrap
28957 msgid ""
28958 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
28959 "\n"
28960 msgstr ""
28961
28962 #. type: textblock
28963 #: ../tools/virt-win-reg.pl:76
28964 msgid "You can also display single values from within registry keys, for example:"
28965 msgstr ""
28966
28967 #. type: verbatim
28968 #: ../tools/virt-win-reg.pl:79
28969 #, no-wrap
28970 msgid ""
28971 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
28972 " $ virt-win-reg Windows7 $cvkey ProductName\n"
28973 " Windows 7 Enterprise\n"
28974 "\n"
28975 msgstr ""
28976
28977 #. type: textblock
28978 #: ../tools/virt-win-reg.pl:83
28979 msgid ""
28980 "With I<--merge>, you can merge a textual regedit file into the Windows "
28981 "Registry:"
28982 msgstr ""
28983
28984 #. type: verbatim
28985 #: ../tools/virt-win-reg.pl:86
28986 #, no-wrap
28987 msgid ""
28988 " $ virt-win-reg --merge Windows7 changes.reg\n"
28989 "\n"
28990 msgstr ""
28991
28992 #. type: =head1
28993 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
28994 msgid "NOTE"
28995 msgstr ""
28996
28997 #. type: textblock
28998 #: ../tools/virt-win-reg.pl:90
28999 msgid ""
29000 "This program is only meant for simple access to the registry.  If you want "
29001 "to do complicated things with the registry, we suggest you download the "
29002 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
29003 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
29004 "L<hivexregedit(1)>."
29005 msgstr ""
29006
29007 #. type: textblock
29008 #: ../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
29009 msgid "Display brief help."
29010 msgstr ""
29011
29012 #. type: textblock
29013 #: ../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
29014 msgid "Display version number and exit."
29015 msgstr ""
29016
29017 #. type: =item
29018 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
29019 msgid "B<--debug>"
29020 msgstr ""
29021
29022 #. type: textblock
29023 #: ../tools/virt-win-reg.pl:122
29024 msgid "Enable debugging messages."
29025 msgstr ""
29026
29027 #. type: =item
29028 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
29029 msgid "B<--connect URI> | B<-c URI>"
29030 msgstr ""
29031
29032 #. type: textblock
29033 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
29034 msgid ""
29035 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29036 "to the default libvirt hypervisor."
29037 msgstr ""
29038
29039 #. type: textblock
29040 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
29041 msgid ""
29042 "If you specify guest block devices directly, then libvirt is not used at "
29043 "all."
29044 msgstr ""
29045
29046 #. type: =item
29047 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
29048 msgid "B<--format> raw"
29049 msgstr ""
29050
29051 #. type: textblock
29052 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
29053 msgid ""
29054 "Specify the format of disk images given on the command line.  If this is "
29055 "omitted then the format is autodetected from the content of the disk image."
29056 msgstr ""
29057
29058 #. type: textblock
29059 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
29060 msgid ""
29061 "If disk images are requested from libvirt, then this program asks libvirt "
29062 "for this information.  In this case, the value of the format parameter is "
29063 "ignored."
29064 msgstr ""
29065
29066 #. type: textblock
29067 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
29068 msgid ""
29069 "If working with untrusted raw-format guest disk images, you should ensure "
29070 "the format is always specified."
29071 msgstr ""
29072
29073 #. type: =item
29074 #: ../tools/virt-win-reg.pl:157
29075 msgid "B<--merge>"
29076 msgstr ""
29077
29078 #. type: textblock
29079 #: ../tools/virt-win-reg.pl:159
29080 msgid ""
29081 "In merge mode, this merges a textual regedit file into the Windows Registry "
29082 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29083 "displays or exports Registry entries instead."
29084 msgstr ""
29085
29086 #. type: textblock
29087 #: ../tools/virt-win-reg.pl:163
29088 msgid ""
29089 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29090 "result in disk corruption.  However exporting (without this flag)  is always "
29091 "safe."
29092 msgstr ""
29093
29094 #. type: =item
29095 #: ../tools/virt-win-reg.pl:171
29096 msgid "B<--encoding> UTF-16LE|ASCII"
29097 msgstr ""
29098
29099 #. type: textblock
29100 #: ../tools/virt-win-reg.pl:173
29101 msgid ""
29102 "When merging (only), you may need to specify the encoding for strings to be "
29103 "used in the hive file.  This is explained in detail in "
29104 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
29105 msgstr ""
29106
29107 #. type: textblock
29108 #: ../tools/virt-win-reg.pl:177
29109 msgid ""
29110 "The default is to use UTF-16LE, which should work with recent versions of "
29111 "Windows."
29112 msgstr ""
29113
29114 #. type: =item
29115 #: ../tools/virt-win-reg.pl:184
29116 msgid "B<--unsafe-printable-strings>"
29117 msgstr ""
29118
29119 #. type: textblock
29120 #: ../tools/virt-win-reg.pl:186
29121 msgid ""
29122 "When exporting (only), assume strings are UTF-16LE and print them as strings "
29123 "instead of hex sequences.  Remove the final zero codepoint from strings if "
29124 "present."
29125 msgstr ""
29126
29127 #. type: textblock
29128 #: ../tools/virt-win-reg.pl:190
29129 msgid ""
29130 "This is unsafe and does not preserve the fidelity of strings in the original "
29131 "Registry for various reasons:"
29132 msgstr ""
29133
29134 #. type: textblock
29135 #: ../tools/virt-win-reg.pl:197
29136 msgid ""
29137 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
29138 "other encodings will be corrupted by this transformation."
29139 msgstr ""
29140
29141 #. type: textblock
29142 #: ../tools/virt-win-reg.pl:202
29143 msgid ""
29144 "Assumes that everything which has type 1 or 2 is really a string and that "
29145 "everything else is not a string, but the type field in real Registries is "
29146 "not reliable."
29147 msgstr ""
29148
29149 #. type: textblock
29150 #: ../tools/virt-win-reg.pl:208
29151 msgid ""
29152 "Loses information about whether a zero codepoint followed the string in the "
29153 "Registry or not."
29154 msgstr ""
29155
29156 #. type: textblock
29157 #: ../tools/virt-win-reg.pl:213
29158 msgid ""
29159 "This all happens because the Registry itself contains no information about "
29160 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
29161 msgstr ""
29162
29163 #. type: textblock
29164 #: ../tools/virt-win-reg.pl:217
29165 msgid ""
29166 "You should only use this option for quick hacking and debugging of the "
29167 "Registry contents, and I<never> use it if the output is going to be passed "
29168 "into another program or stored in another Registry."
29169 msgstr ""
29170
29171 #. type: =head1
29172 #: ../tools/virt-win-reg.pl:554
29173 msgid "SUPPORTED SYSTEMS"
29174 msgstr ""
29175
29176 #. type: textblock
29177 #: ../tools/virt-win-reg.pl:556
29178 msgid ""
29179 "The program currently supports Windows NT-derived guests starting with "
29180 "Windows XP through to at least Windows 7."
29181 msgstr ""
29182
29183 #. type: textblock
29184 #: ../tools/virt-win-reg.pl:559
29185 msgid "The following Registry keys are supported:"
29186 msgstr ""
29187
29188 #. type: =item
29189 #: ../tools/virt-win-reg.pl:563
29190 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
29191 msgstr ""
29192
29193 #. type: =item
29194 #: ../tools/virt-win-reg.pl:565
29195 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
29196 msgstr ""
29197
29198 #. type: =item
29199 #: ../tools/virt-win-reg.pl:567
29200 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
29201 msgstr ""
29202
29203 #. type: =item
29204 #: ../tools/virt-win-reg.pl:569
29205 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
29206 msgstr ""
29207
29208 #. type: =item
29209 #: ../tools/virt-win-reg.pl:571
29210 msgid "C<HKEY_USERS\\.DEFAULT>"
29211 msgstr ""
29212
29213 #. type: =item
29214 #: ../tools/virt-win-reg.pl:573
29215 msgid "C<HKEY_USERS\\I<SID>>"
29216 msgstr ""
29217
29218 #. type: textblock
29219 #: ../tools/virt-win-reg.pl:575
29220 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
29221 msgstr ""
29222
29223 #. type: =item
29224 #: ../tools/virt-win-reg.pl:577
29225 msgid "C<HKEY_USERS\\I<username>>"
29226 msgstr ""
29227
29228 #. type: textblock
29229 #: ../tools/virt-win-reg.pl:579
29230 msgid "where I<username> is a local user name (this is a libguestfs extension)."
29231 msgstr ""
29232
29233 #. type: textblock
29234 #: ../tools/virt-win-reg.pl:583
29235 msgid ""
29236 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29237 "C<HKEY_USERS>."
29238 msgstr ""
29239
29240 #. type: textblock
29241 #: ../tools/virt-win-reg.pl:586
29242 msgid ""
29243 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
29244 "supported (there is no \"current user\")."
29245 msgstr ""
29246
29247 #. type: =head1
29248 #: ../tools/virt-win-reg.pl:589
29249 msgid "ENCODING"
29250 msgstr ""
29251
29252 #. type: textblock
29253 #: ../tools/virt-win-reg.pl:591
29254 msgid ""
29255 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29256 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
29257 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
29258 "with Windows-style line endings, you may need to reencode the whole file "
29259 "before or after processing."
29260 msgstr ""
29261
29262 #. type: textblock
29263 #: ../tools/virt-win-reg.pl:597
29264 msgid ""
29265 "To reencode a file from Windows format to Linux (before processing it with "
29266 "the I<--merge> option), you would do something like this:"
29267 msgstr ""
29268
29269 #. type: verbatim
29270 #: ../tools/virt-win-reg.pl:600
29271 #, no-wrap
29272 msgid ""
29273 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29274 "\n"
29275 msgstr ""
29276
29277 #. type: textblock
29278 #: ../tools/virt-win-reg.pl:602
29279 msgid ""
29280 "To go in the opposite direction, after exporting and before sending the file "
29281 "to a Windows user, do something like this:"
29282 msgstr ""
29283
29284 #. type: verbatim
29285 #: ../tools/virt-win-reg.pl:605
29286 #, no-wrap
29287 msgid ""
29288 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29289 "\n"
29290 msgstr ""
29291
29292 #. type: textblock
29293 #: ../tools/virt-win-reg.pl:607
29294 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29295 msgstr ""
29296
29297 #. type: textblock
29298 #: ../tools/virt-win-reg.pl:609
29299 msgid ""
29300 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29301 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
29302 "Windows-style (CRLF) line endings, like this:"
29303 msgstr ""
29304
29305 #. type: verbatim
29306 #: ../tools/virt-win-reg.pl:613
29307 #, no-wrap
29308 msgid ""
29309 " $ file software.reg\n"
29310 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29311 " with CRLF line terminators\n"
29312 "\n"
29313 msgstr ""
29314
29315 #. type: textblock
29316 #: ../tools/virt-win-reg.pl:617
29317 msgid "This file would need conversion before you could I<--merge> it."
29318 msgstr ""
29319
29320 #. type: =head1
29321 #: ../tools/virt-win-reg.pl:619
29322 msgid "CurrentControlSet etc."
29323 msgstr ""
29324
29325 #. type: textblock
29326 #: ../tools/virt-win-reg.pl:621
29327 msgid ""
29328 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29329 "Registry at the level of the hive file, and therefore you cannot modify "
29330 "these."
29331 msgstr ""
29332
29333 #. type: textblock
29334 #: ../tools/virt-win-reg.pl:625
29335 msgid ""
29336 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29337 "circumstances it might refer to another control set.  The way to find out is "
29338 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29339 msgstr ""
29340
29341 #. type: verbatim
29342 #: ../tools/virt-win-reg.pl:629
29343 #, no-wrap
29344 msgid ""
29345 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29346 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29347 " \"Current\"=dword:00000001\n"
29348 " \"Default\"=dword:00000001\n"
29349 " \"Failed\"=dword:00000000\n"
29350 " \"LastKnownGood\"=dword:00000002\n"
29351 "\n"
29352 msgstr ""
29353
29354 #. type: textblock
29355 #: ../tools/virt-win-reg.pl:636
29356 msgid "\"Current\" is the one which Windows will choose when it boots."
29357 msgstr ""
29358
29359 #. type: textblock
29360 #: ../tools/virt-win-reg.pl:638
29361 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
29362 msgstr ""
29363
29364 #. type: =head1
29365 #: ../tools/virt-win-reg.pl:641
29366 msgid "WINDOWS TIPS"
29367 msgstr ""
29368
29369 #. type: textblock
29370 #: ../tools/virt-win-reg.pl:643
29371 msgid ""
29372 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29373 "be shut off, else you will get disk corruption."
29374 msgstr ""
29375
29376 #. type: =head2
29377 #: ../tools/virt-win-reg.pl:646
29378 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29379 msgstr ""
29380
29381 #. type: textblock
29382 #: ../tools/virt-win-reg.pl:648
29383 msgid ""
29384 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29385 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29386 "is uploaded into C<C:\\>:"
29387 msgstr ""
29388
29389 #. type: verbatim
29390 #: ../tools/virt-win-reg.pl:652
29391 #, no-wrap
29392 msgid ""
29393 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29394 "\n"
29395 msgstr ""
29396
29397 #. type: textblock
29398 #: ../tools/virt-win-reg.pl:654
29399 msgid "Prepare a regedit file containing the registry change:"
29400 msgstr ""
29401
29402 #. type: verbatim
29403 #: ../tools/virt-win-reg.pl:656
29404 #, no-wrap
29405 msgid ""
29406 " cat > test.reg <<'EOF'\n"
29407 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29408 " \"Test\"=\"c:\\\\test.bat\"\n"
29409 " EOF\n"
29410 "\n"
29411 msgstr ""
29412
29413 #. type: textblock
29414 #: ../tools/virt-win-reg.pl:661
29415 msgid ""
29416 "In this example we use the key C<RunOnce> which means that the script will "
29417 "run precisely once when the first user logs in.  If you want it to run every "
29418 "time a user logs in, replace C<RunOnce> with C<Run>."
29419 msgstr ""
29420
29421 #. type: textblock
29422 #: ../tools/virt-win-reg.pl:665
29423 msgid "Now update the registry:"
29424 msgstr ""
29425
29426 #. type: verbatim
29427 #: ../tools/virt-win-reg.pl:667
29428 #, no-wrap
29429 msgid ""
29430 " virt-win-reg --merge WindowsGuest test.reg\n"
29431 "\n"
29432 msgstr ""
29433
29434 #. type: =head2
29435 #: ../tools/virt-win-reg.pl:669
29436 msgid "INSTALLING A SERVICE"
29437 msgstr ""
29438
29439 #. type: textblock
29440 #: ../tools/virt-win-reg.pl:671
29441 msgid ""
29442 "This section assumes you are familiar with Windows services, and you either "
29443 "have a program which handles the Windows Service Control Protocol directly "
29444 "or you want to run any program using a service wrapper like SrvAny or the "
29445 "free RHSrvAny."
29446 msgstr ""
29447
29448 #. type: textblock
29449 #: ../tools/virt-win-reg.pl:676
29450 msgid ""
29451 "First upload the program and optionally the service wrapper.  In this case "
29452 "the test program is called C<test.exe> and we are using the RHSrvAny "
29453 "wrapper:"
29454 msgstr ""
29455
29456 #. type: verbatim
29457 #: ../tools/virt-win-reg.pl:680
29458 #, no-wrap
29459 msgid ""
29460 " guestfish -i -d WindowsGuest <<EOF\n"
29461 "   upload rhsrvany.exe /rhsrvany.exe\n"
29462 "   upload test.exe /test.exe\n"
29463 " EOF\n"
29464 "\n"
29465 msgstr ""
29466
29467 #. type: textblock
29468 #: ../tools/virt-win-reg.pl:685
29469 msgid ""
29470 "Prepare a regedit file containing the registry changes.  In this example, "
29471 "the first registry change is needed for the service itself or the service "
29472 "wrapper (if used).  The second registry change is only needed because I am "
29473 "using the RHSrvAny service wrapper."
29474 msgstr ""
29475
29476 #. type: verbatim
29477 #: ../tools/virt-win-reg.pl:690
29478 #, no-wrap
29479 msgid ""
29480 " cat > service.reg <<'EOF'\n"
29481 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
29482 " \"Type\"=dword:00000010\n"
29483 " \"Start\"=dword:00000002\n"
29484 " \"ErrorControl\"=dword:00000001\n"
29485 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
29486 " \"DisplayName\"=\"RHSrvAny\"\n"
29487 " \"ObjectName\"=\"NetworkService\"\n"
29488 " \n"
29489 msgstr ""
29490
29491 #. type: verbatim
29492 #: ../tools/virt-win-reg.pl:699
29493 #, no-wrap
29494 msgid ""
29495 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
29496 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
29497 " \"PWD\"=\"c:\\\\Temp\"\n"
29498 " EOF\n"
29499 "\n"
29500 msgstr ""
29501
29502 #. type: textblock
29503 #: ../tools/virt-win-reg.pl:710
29504 msgid ""
29505 "For use of C<ControlSet001> see the section above in this manual page.  You "
29506 "may need to adjust this according to the control set that is in use by the "
29507 "guest."
29508 msgstr ""
29509
29510 #. type: textblock
29511 #: ../tools/virt-win-reg.pl:716
29512 msgid ""
29513 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
29514 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
29515 "privileged account."
29516 msgstr ""
29517
29518 #. type: textblock
29519 #: ../tools/virt-win-reg.pl:722
29520 msgid ""
29521 "For the meaning of the magic numbers, see this Microsoft KB article: "
29522 "L<http://support.microsoft.com/kb/103000>."
29523 msgstr ""
29524
29525 #. type: textblock
29526 #: ../tools/virt-win-reg.pl:727
29527 msgid "Update the registry:"
29528 msgstr ""
29529
29530 #. type: verbatim
29531 #: ../tools/virt-win-reg.pl:729
29532 #, no-wrap
29533 msgid ""
29534 " virt-win-reg --merge WindowsGuest service.reg\n"
29535 "\n"
29536 msgstr ""
29537
29538 #. type: =head1
29539 #: ../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
29540 msgid "SHELL QUOTING"
29541 msgstr ""
29542
29543 #. type: textblock
29544 #: ../tools/virt-win-reg.pl:733
29545 msgid ""
29546 "Be careful when passing parameters containing C<\\> (backslash) in the "
29547 "shell.  Usually you will have to use 'single quotes' or double backslashes "
29548 "(but not both) to protect them from the shell."
29549 msgstr ""
29550
29551 #. type: textblock
29552 #: ../tools/virt-win-reg.pl:737
29553 msgid "Paths and value names are case-insensitive."
29554 msgstr ""
29555
29556 #. type: textblock
29557 #: ../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
29558 msgid ""
29559 "Libvirt guest names can contain arbitrary characters, some of which have "
29560 "meaning to the shell such as C<#> and space.  You may need to quote or "
29561 "escape these characters on the command line.  See the shell manual page "
29562 "L<sh(1)> for details."
29563 msgstr ""
29564
29565 #. type: textblock
29566 #: ../tools/virt-win-reg.pl:746
29567 msgid ""
29568 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
29569 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
29570 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
29571 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29572 msgstr ""
29573
29574 #. type: textblock
29575 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
29576 msgid ""
29577 "When reporting bugs, please enable debugging and capture the I<complete> "
29578 "output:"
29579 msgstr ""
29580
29581 #. type: verbatim
29582 #: ../tools/virt-win-reg.pl:764
29583 #, no-wrap
29584 msgid ""
29585 " export LIBGUESTFS_DEBUG=1\n"
29586 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
29587 "\n"
29588 msgstr ""
29589
29590 #. type: textblock
29591 #: ../tools/virt-win-reg.pl:767
29592 msgid ""
29593 "Attach /tmp/virt-win-reg.log to a new bug report at "
29594 "L<https://bugzilla.redhat.com/>"
29595 msgstr ""
29596
29597 #. type: =head1
29598 #: ../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
29599 msgid "AUTHOR"
29600 msgstr ""
29601
29602 #. type: textblock
29603 #: ../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
29604 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29605 msgstr ""
29606
29607 #. type: textblock
29608 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
29609 msgid "Copyright (C) 2010 Red Hat Inc."
29610 msgstr ""
29611
29612 #. type: textblock
29613 #: ../tools/virt-list-filesystems.pl:32
29614 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
29615 msgstr ""
29616
29617 #. type: verbatim
29618 #: ../tools/virt-list-filesystems.pl:36
29619 #, no-wrap
29620 msgid ""
29621 " virt-list-filesystems [--options] domname\n"
29622 "\n"
29623 msgstr ""
29624
29625 #. type: verbatim
29626 #: ../tools/virt-list-filesystems.pl:38
29627 #, no-wrap
29628 msgid ""
29629 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29630 "\n"
29631 msgstr ""
29632
29633 #. type: textblock
29634 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29635 msgid ""
29636 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29637 "replacement."
29638 msgstr ""
29639
29640 #. type: textblock
29641 #: ../tools/virt-list-filesystems.pl:45
29642 msgid ""
29643 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29644 "are contained in a virtual machine or disk image."
29645 msgstr ""
29646
29647 #. type: textblock
29648 #: ../tools/virt-list-filesystems.pl:49
29649 msgid ""
29650 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29651 "functionality.  For more complex cases you should look at the "
29652 "L<guestfish(1)> tool."
29653 msgstr ""
29654
29655 #. type: =item
29656 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
29657 msgid "B<-l> | B<--long>"
29658 msgstr ""
29659
29660 #. type: textblock
29661 #: ../tools/virt-list-filesystems.pl:108
29662 msgid ""
29663 "With this option, C<virt-list-filesystems> displays the type of each "
29664 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
29665 msgstr ""
29666
29667 #. type: =item
29668 #: ../tools/virt-list-filesystems.pl:115
29669 msgid "B<-a> | B<--all>"
29670 msgstr ""
29671
29672 #. type: textblock
29673 #: ../tools/virt-list-filesystems.pl:117
29674 msgid ""
29675 "Normally we only show mountable filesystems.  If this option is given then "
29676 "swap devices are shown too."
29677 msgstr ""
29678
29679 #. type: textblock
29680 #: ../tools/virt-list-filesystems.pl:191
29681 msgid ""
29682 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
29683 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
29684 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29685 msgstr ""
29686
29687 #. type: textblock
29688 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
29689 msgid "Copyright (C) 2009 Red Hat Inc."
29690 msgstr ""
29691
29692 #. type: textblock
29693 #: ../tools/virt-tar.pl:33
29694 msgid "virt-tar - Extract or upload files to a virtual machine"
29695 msgstr ""
29696
29697 #. type: verbatim
29698 #: ../tools/virt-tar.pl:37
29699 #, no-wrap
29700 msgid ""
29701 " virt-tar [--options] -x domname directory tarball\n"
29702 "\n"
29703 msgstr ""
29704
29705 #. type: verbatim
29706 #: ../tools/virt-tar.pl:39
29707 #, no-wrap
29708 msgid ""
29709 " virt-tar [--options] -u domname tarball directory\n"
29710 "\n"
29711 msgstr ""
29712
29713 #. type: verbatim
29714 #: ../tools/virt-tar.pl:41
29715 #, no-wrap
29716 msgid ""
29717 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
29718 "\n"
29719 msgstr ""
29720
29721 #. type: verbatim
29722 #: ../tools/virt-tar.pl:43
29723 #, no-wrap
29724 msgid ""
29725 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
29726 "\n"
29727 msgstr ""
29728
29729 #. type: textblock
29730 #: ../tools/virt-tar.pl:47
29731 msgid ""
29732 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, "
29733 "L<virt-tar-in(1)>, L<virt-tar-out(1)> as replacements."
29734 msgstr ""
29735
29736 #. type: textblock
29737 #: ../tools/virt-tar.pl:52
29738 msgid "Download C</home> from the VM into a local tarball:"
29739 msgstr ""
29740
29741 #. type: verbatim
29742 #: ../tools/virt-tar.pl:54
29743 #, no-wrap
29744 msgid ""
29745 " virt-tar -x domname /home home.tar\n"
29746 "\n"
29747 msgstr ""
29748
29749 #. type: verbatim
29750 #: ../tools/virt-tar.pl:56
29751 #, no-wrap
29752 msgid ""
29753 " virt-tar -zx domname /home home.tar.gz\n"
29754 "\n"
29755 msgstr ""
29756
29757 #. type: textblock
29758 #: ../tools/virt-tar.pl:58
29759 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29760 msgstr ""
29761
29762 #. type: verbatim
29763 #: ../tools/virt-tar.pl:60
29764 #, no-wrap
29765 msgid ""
29766 " virt-tar -u domname uploadstuff.tar /tmp\n"
29767 "\n"
29768 msgstr ""
29769
29770 #. type: verbatim
29771 #: ../tools/virt-tar.pl:62
29772 #, no-wrap
29773 msgid ""
29774 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
29775 "\n"
29776 msgstr ""
29777
29778 #. type: textblock
29779 #: ../tools/virt-tar.pl:66
29780 msgid ""
29781 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
29782 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
29783 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
29784 msgstr ""
29785
29786 #. type: textblock
29787 #: ../tools/virt-tar.pl:71
29788 msgid ""
29789 "You can use I<-x> (extract) on live virtual machines, but you might get "
29790 "inconsistent results or errors if there is filesystem activity inside the "
29791 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
29792 "work, but the only way to guarantee consistent results is if the virtual "
29793 "machine is shut down."
29794 msgstr ""
29795
29796 #. type: textblock
29797 #: ../tools/virt-tar.pl:79
29798 msgid ""
29799 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
29800 "parts of a guest filesystem.  There are many possibilities: making backups, "
29801 "uploading data files, snooping on guest activity, fixing or customizing "
29802 "guests, etc."
29803 msgstr ""
29804
29805 #. type: textblock
29806 #: ../tools/virt-tar.pl:84
29807 msgid ""
29808 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
29809 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
29810 "should look at the L<guestfish(1)> tool."
29811 msgstr ""
29812
29813 #. type: textblock
29814 #: ../tools/virt-tar.pl:88
29815 msgid ""
29816 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
29817 "its contents (recursively) from the virtual machine into a local tarball.  "
29818 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
29819 "virtual machine.  You cannot use these two options together."
29820 msgstr ""
29821
29822 #. type: textblock
29823 #: ../tools/virt-tar.pl:94
29824 msgid ""
29825 "In addition, you may need to use the I<-z> (gZip) option to enable "
29826 "compression.  When uploading, you have to specify I<-z> if the upload file "
29827 "is compressed because virt-tar won't detect this on its own."
29828 msgstr ""
29829
29830 #. type: textblock
29831 #: ../tools/virt-tar.pl:98
29832 msgid ""
29833 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
29834 "example it cannot do PKZip files or bzip2 compression.  If you want that "
29835 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
29836 "the L<libguestfs(3)> API)."
29837 msgstr ""
29838
29839 #. type: =item
29840 #: ../tools/virt-tar.pl:156
29841 msgid "B<-x> | B<--extract> | B<--download>"
29842 msgstr ""
29843
29844 #. type: =item
29845 #: ../tools/virt-tar.pl:158
29846 msgid "B<-u> | B<--upload>"
29847 msgstr ""
29848
29849 #. type: textblock
29850 #: ../tools/virt-tar.pl:160
29851 msgid ""
29852 "Use I<-x> to extract (download) a directory from a virtual machine to a "
29853 "local tarball."
29854 msgstr ""
29855
29856 #. type: textblock
29857 #: ../tools/virt-tar.pl:163
29858 msgid ""
29859 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
29860 "Please read the L</WARNING> section above before using this option."
29861 msgstr ""
29862
29863 #. type: textblock
29864 #: ../tools/virt-tar.pl:167
29865 msgid "You must specify exactly one of these options."
29866 msgstr ""
29867
29868 #. type: =item
29869 #: ../tools/virt-tar.pl:173
29870 msgid "B<-z> | B<--gzip>"
29871 msgstr ""
29872
29873 #. type: textblock
29874 #: ../tools/virt-tar.pl:175
29875 msgid "Specify that the input or output tarball is gzip-compressed."
29876 msgstr ""
29877
29878 #. type: textblock
29879 #: ../tools/virt-tar.pl:288
29880 msgid ""
29881 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29882 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
29883 "L<virt-tar-out(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, "
29884 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29885 msgstr ""
29886
29887 #. type: textblock
29888 #: ../tools/virt-make-fs.pl:37
29889 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
29890 msgstr ""
29891
29892 #. type: verbatim
29893 #: ../tools/virt-make-fs.pl:41
29894 #, no-wrap
29895 msgid ""
29896 " virt-make-fs [--options] input.tar output.img\n"
29897 "\n"
29898 msgstr ""
29899
29900 #. type: verbatim
29901 #: ../tools/virt-make-fs.pl:43
29902 #, no-wrap
29903 msgid ""
29904 " virt-make-fs [--options] input.tar.gz output.img\n"
29905 "\n"
29906 msgstr ""
29907
29908 #. type: verbatim
29909 #: ../tools/virt-make-fs.pl:45
29910 #, no-wrap
29911 msgid ""
29912 " virt-make-fs [--options] directory output.img\n"
29913 "\n"
29914 msgstr ""
29915
29916 #. type: textblock
29917 #: ../tools/virt-make-fs.pl:49
29918 msgid ""
29919 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
29920 "archive or some files in a directory.  It is similar to tools like "
29921 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
29922 "it can create common filesystem types like ext2/3 or NTFS, which can be "
29923 "useful if you want to attach these filesystems to existing virtual machines "
29924 "(eg. to import large amounts of read-only data to a VM)."
29925 msgstr ""
29926
29927 #. type: textblock
29928 #: ../tools/virt-make-fs.pl:57
29929 msgid "Basic usage is:"
29930 msgstr ""
29931
29932 #. type: verbatim
29933 #: ../tools/virt-make-fs.pl:59
29934 #, no-wrap
29935 msgid ""
29936 " virt-make-fs input output\n"
29937 "\n"
29938 msgstr ""
29939
29940 #. type: textblock
29941 #: ../tools/virt-make-fs.pl:61
29942 msgid ""
29943 "where C<input> is either a directory containing files that you want to add, "
29944 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
29945 "C<output> is a disk image.  The input type is detected automatically.  The "
29946 "output disk image defaults to a raw ext2 image unless you specify extra "
29947 "flags (see L</OPTIONS> below)."
29948 msgstr ""
29949
29950 #. type: =head2
29951 #: ../tools/virt-make-fs.pl:67
29952 msgid "EXTRA SPACE"
29953 msgstr ""
29954
29955 #. type: textblock
29956 #: ../tools/virt-make-fs.pl:69
29957 msgid ""
29958 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
29959 "the files that it contains, but might have extra space.  Depending on how "
29960 "you are going to use the output, you might think this extra space is wasted "
29961 "and want to minimize it, or you might want to leave space so that more files "
29962 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
29963 "but you can use the I<--size> flag to leave space in the filesystem if you "
29964 "want it."
29965 msgstr ""
29966
29967 #. type: textblock
29968 #: ../tools/virt-make-fs.pl:77
29969 msgid ""
29970 "An alternative way to leave extra space but not make the output image any "
29971 "bigger is to use an alternative disk image format (instead of the default "
29972 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
29973 "image format (check your hypervisor supports this before using it).  This "
29974 "allows you to choose a large I<--size> but the extra space won't actually be "
29975 "allocated in the image until you try to store something in it."
29976 msgstr ""
29977
29978 #. type: textblock
29979 #: ../tools/virt-make-fs.pl:85
29980 msgid ""
29981 "Don't forget that you can also use local commands including L<resize2fs(8)> "
29982 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
29983 "to build another image from scratch."
29984 msgstr ""
29985
29986 #. type: =head3
29987 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
29988 msgid "EXAMPLE"
29989 msgstr ""
29990
29991 #. type: verbatim
29992 #: ../tools/virt-make-fs.pl:91
29993 #, no-wrap
29994 msgid ""
29995 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
29996 "\n"
29997 msgstr ""
29998
29999 #. type: =head2
30000 #: ../tools/virt-make-fs.pl:93
30001 msgid "FILESYSTEM TYPE"
30002 msgstr ""
30003
30004 #. type: textblock
30005 #: ../tools/virt-make-fs.pl:95
30006 msgid ""
30007 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
30008 "libguestfs supports can be used (but I<not> read-only formats like "
30009 "ISO9660).  Here are some of the more common choices:"
30010 msgstr ""
30011
30012 #. type: =item
30013 #: ../tools/virt-make-fs.pl:101
30014 msgid "I<ext3>"
30015 msgstr ""
30016
30017 #. type: textblock
30018 #: ../tools/virt-make-fs.pl:103
30019 msgid ""
30020 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
30021 "you are not going to use the filesystem in a way that requires the journal, "
30022 "then this is just wasted overhead."
30023 msgstr ""
30024
30025 #. type: =item
30026 #: ../tools/virt-make-fs.pl:107
30027 msgid "I<ntfs> or I<vfat>"
30028 msgstr ""
30029
30030 #. type: textblock
30031 #: ../tools/virt-make-fs.pl:109
30032 msgid "Useful if exporting data to a Windows guest."
30033 msgstr ""
30034
30035 #. type: textblock
30036 #: ../tools/virt-make-fs.pl:111
30037 msgid ""
30038 "I<Note for vfat>: The tar archive or local directory must only contain files "
30039 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30040 "program running within libguestfs is unable to change the ownership of "
30041 "non-root files, since vfat itself does not support this."
30042 msgstr ""
30043
30044 #. type: =item
30045 #: ../tools/virt-make-fs.pl:116
30046 msgid "I<minix>"
30047 msgstr ""
30048
30049 #. type: textblock
30050 #: ../tools/virt-make-fs.pl:118
30051 msgid ""
30052 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30053 "total filesystem size."
30054 msgstr ""
30055
30056 #. type: verbatim
30057 #: ../tools/virt-make-fs.pl:125
30058 #, no-wrap
30059 msgid ""
30060 " virt-make-fs --type=minix input minixfs.img\n"
30061 "\n"
30062 msgstr ""
30063
30064 #. type: =head2
30065 #: ../tools/virt-make-fs.pl:127
30066 msgid "TO PARTITION OR NOT TO PARTITION"
30067 msgstr ""
30068
30069 #. type: textblock
30070 #: ../tools/virt-make-fs.pl:129
30071 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30072 msgstr ""
30073
30074 #. type: textblock
30075 #: ../tools/virt-make-fs.pl:131
30076 msgid ""
30077 "Adding a partition can make the disk image more compatible with certain "
30078 "virtualized operating systems which don't expect to see a filesystem "
30079 "directly located on a block device (Linux doesn't care and will happily "
30080 "handle both types)."
30081 msgstr ""
30082
30083 #. type: textblock
30084 #: ../tools/virt-make-fs.pl:136
30085 msgid ""
30086 "On the other hand, if you have a partition table then the output image is no "
30087 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30088 "directly on a partitioned disk image.  (However libguestfs tools such as "
30089 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30090 msgstr ""
30091
30092 #. type: textblock
30093 #: ../tools/virt-make-fs.pl:144
30094 msgid "Add an MBR partition:"
30095 msgstr ""
30096
30097 #. type: verbatim
30098 #: ../tools/virt-make-fs.pl:146
30099 #, no-wrap
30100 msgid ""
30101 " virt-make-fs --partition -- input disk.img\n"
30102 "\n"
30103 msgstr ""
30104
30105 #. type: textblock
30106 #: ../tools/virt-make-fs.pl:148
30107 msgid ""
30108 "If the output disk image could be terabyte-sized or larger, it's better to "
30109 "use an EFI/GPT-compatible partition table:"
30110 msgstr ""
30111
30112 #. type: verbatim
30113 #: ../tools/virt-make-fs.pl:151
30114 #, no-wrap
30115 msgid ""
30116 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30117 "\n"
30118 msgstr ""
30119
30120 #. type: textblock
30121 #: ../tools/virt-make-fs.pl:179
30122 msgid "Enable debugging information."
30123 msgstr ""
30124
30125 #. type: =item
30126 #: ../tools/virt-make-fs.pl:185
30127 msgid "B<--size=E<lt>NE<gt>>"
30128 msgstr ""
30129
30130 #. type: =item
30131 #: ../tools/virt-make-fs.pl:187
30132 msgid "B<--size=+E<lt>NE<gt>>"
30133 msgstr ""
30134
30135 #. type: =item
30136 #: ../tools/virt-make-fs.pl:189
30137 msgid "B<-s E<lt>NE<gt>>"
30138 msgstr ""
30139
30140 #. type: =item
30141 #: ../tools/virt-make-fs.pl:191
30142 msgid "B<-s +E<lt>NE<gt>>"
30143 msgstr ""
30144
30145 #. type: textblock
30146 #: ../tools/virt-make-fs.pl:193
30147 msgid "Use the I<--size> (or I<-s>) option to choose the size of the output image."
30148 msgstr ""
30149
30150 #. type: textblock
30151 #: ../tools/virt-make-fs.pl:196
30152 msgid ""
30153 "If this option is I<not> given, then the output image will be just large "
30154 "enough to contain all the files, with not much wasted space."
30155 msgstr ""
30156
30157 #. type: textblock
30158 #: ../tools/virt-make-fs.pl:199
30159 msgid ""
30160 "To choose a fixed size output disk, specify an absolute number followed by "
30161 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30162 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30163 "files, else you will get an error."
30164 msgstr ""
30165
30166 #. type: textblock
30167 #: ../tools/virt-make-fs.pl:204
30168 msgid ""
30169 "To leave extra space, specify C<+> (plus sign) and a number followed by "
30170 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30171 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
30172 "the input files, and (approximately) an extra 200 MB free space."
30173 msgstr ""
30174
30175 #. type: textblock
30176 #: ../tools/virt-make-fs.pl:210
30177 msgid ""
30178 "Note that virt-make-fs estimates free space, and therefore will not produce "
30179 "filesystems containing precisely the free space requested.  (It is much more "
30180 "expensive and time-consuming to produce a filesystem which has precisely the "
30181 "desired free space)."
30182 msgstr ""
30183
30184 #. type: =item
30185 #: ../tools/virt-make-fs.pl:219
30186 msgid "B<--format=E<lt>fmtE<gt>>"
30187 msgstr ""
30188
30189 #. type: =item
30190 #: ../tools/virt-make-fs.pl:221
30191 msgid "B<-F E<lt>fmtE<gt>>"
30192 msgstr ""
30193
30194 #. type: textblock
30195 #: ../tools/virt-make-fs.pl:223
30196 msgid "Choose the output disk image format."
30197 msgstr ""
30198
30199 #. type: textblock
30200 #: ../tools/virt-make-fs.pl:225
30201 msgid "The default is C<raw> (raw disk image)."
30202 msgstr ""
30203
30204 #. type: textblock
30205 #: ../tools/virt-make-fs.pl:227
30206 msgid ""
30207 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30208 "that would really make sense here is C<qcow2>."
30209 msgstr ""
30210
30211 #. type: =item
30212 #: ../tools/virt-make-fs.pl:234
30213 msgid "B<--type=E<lt>fsE<gt>>"
30214 msgstr ""
30215
30216 #. type: =item
30217 #: ../tools/virt-make-fs.pl:236
30218 msgid "B<-t E<lt>fsE<gt>>"
30219 msgstr ""
30220
30221 #. type: textblock
30222 #: ../tools/virt-make-fs.pl:238
30223 msgid "Choose the output filesystem type."
30224 msgstr ""
30225
30226 #. type: textblock
30227 #: ../tools/virt-make-fs.pl:240
30228 msgid "The default is C<ext2>."
30229 msgstr ""
30230
30231 #. type: textblock
30232 #: ../tools/virt-make-fs.pl:242
30233 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
30234 msgstr ""
30235
30236 #. type: =item
30237 #: ../tools/virt-make-fs.pl:249
30238 msgid "B<--partition>"
30239 msgstr ""
30240
30241 #. type: =item
30242 #: ../tools/virt-make-fs.pl:251
30243 msgid "B<--partition=E<lt>parttypeE<gt>>"
30244 msgstr ""
30245
30246 #. type: textblock
30247 #: ../tools/virt-make-fs.pl:253
30248 msgid ""
30249 "If specified, this flag adds an MBR partition table to the output disk "
30250 "image."
30251 msgstr ""
30252
30253 #. type: textblock
30254 #: ../tools/virt-make-fs.pl:256
30255 msgid ""
30256 "You can change the partition table type, eg. I<--partition=gpt> for large "
30257 "disks."
30258 msgstr ""
30259
30260 #. type: textblock
30261 #: ../tools/virt-make-fs.pl:259
30262 msgid ""
30263 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
30264 "might consider the next parameter to be the partition type.  For example:"
30265 msgstr ""
30266
30267 #. type: verbatim
30268 #: ../tools/virt-make-fs.pl:263
30269 #, no-wrap
30270 msgid ""
30271 " virt-make-fs --partition input.tar ...\n"
30272 "\n"
30273 msgstr ""
30274
30275 #. type: textblock
30276 #: ../tools/virt-make-fs.pl:265
30277 msgid ""
30278 "would cause virt-make-fs to think you wanted to use a partition type of "
30279 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
30280 "dash) between options and the input file argument:"
30281 msgstr ""
30282
30283 #. type: verbatim
30284 #: ../tools/virt-make-fs.pl:269
30285 #, no-wrap
30286 msgid ""
30287 " virt-make-fs --partition -- input.tar ...\n"
30288 "\n"
30289 msgstr ""
30290
30291 #. type: textblock
30292 #: ../tools/virt-make-fs.pl:541
30293 msgid ""
30294 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30295 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
30296 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30297 msgstr ""
30298
30299 #. type: verbatim
30300 #: ../tools/virt-make-fs.pl:558
30301 #, no-wrap
30302 msgid ""
30303 " export LIBGUESTFS_DEBUG=1\n"
30304 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30305 "\n"
30306 msgstr ""
30307
30308 #. type: textblock
30309 #: ../tools/virt-make-fs.pl:561
30310 msgid ""
30311 "Attach /tmp/virt-make-fs.log to a new bug report at "
30312 "L<https://bugzilla.redhat.com/>"
30313 msgstr ""
30314
30315 #. type: textblock
30316 #: ../tools/virt-list-partitions.pl:32
30317 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
30318 msgstr ""
30319
30320 #. type: verbatim
30321 #: ../tools/virt-list-partitions.pl:36
30322 #, no-wrap
30323 msgid ""
30324 " virt-list-partitions [--options] domname\n"
30325 "\n"
30326 msgstr ""
30327
30328 #. type: verbatim
30329 #: ../tools/virt-list-partitions.pl:38
30330 #, no-wrap
30331 msgid ""
30332 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30333 "\n"
30334 msgstr ""
30335
30336 #. type: textblock
30337 #: ../tools/virt-list-partitions.pl:45
30338 msgid ""
30339 "C<virt-list-partitions> is a command line tool to list the partitions that "
30340 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30341 "first step to using L<virt-resize(1)>."
30342 msgstr ""
30343
30344 #. type: textblock
30345 #: ../tools/virt-list-partitions.pl:50
30346 msgid ""
30347 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30348 "functionality.  For more complex cases you should look at the "
30349 "L<guestfish(1)> tool."
30350 msgstr ""
30351
30352 #. type: =item
30353 #: ../tools/virt-list-partitions.pl:107
30354 msgid "B<-h> | B<--human-readable>"
30355 msgstr ""
30356
30357 #. type: textblock
30358 #: ../tools/virt-list-partitions.pl:109
30359 msgid "Show sizes in human-readable form (eg. \"1G\")."
30360 msgstr ""
30361
30362 #. type: textblock
30363 #: ../tools/virt-list-partitions.pl:117
30364 msgid ""
30365 "With this option, C<virt-list-partitions> displays the type and size of each "
30366 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30367 msgstr ""
30368
30369 #. type: =item
30370 #: ../tools/virt-list-partitions.pl:124
30371 msgid "B<-t> | B<--total>"
30372 msgstr ""
30373
30374 #. type: textblock
30375 #: ../tools/virt-list-partitions.pl:126
30376 msgid "Display the total size of each block device (as a separate row or rows)."
30377 msgstr ""
30378
30379 #. type: textblock
30380 #: ../tools/virt-list-partitions.pl:259
30381 msgid ""
30382 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
30383 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
30384 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30385 msgstr ""
30386
30387 #. type: textblock
30388 #: ../tools/virt-list-partitions.pl:275
30389 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30390 msgstr ""