3b5abd11800ec603185a154b279495047587e6b2
[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.13\n"
10 "Report-Msgid-Bugs-To: libguestfs@redhat.com\n"
11 "POT-Creation-Date: 2011-06-30 15:51+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:5979 ../fish/guestfish-actions.pod:3958
5037 msgid "C<appliance>"
5038 msgstr ""
5039
5040 #. type: textblock
5041 #: ../src/guestfs.pod:2650
5042 msgid "The libguestfs appliance, build scripts and so on."
5043 msgstr ""
5044
5045 #. type: =item
5046 #: ../src/guestfs.pod:2652
5047 msgid "C<capitests>"
5048 msgstr ""
5049
5050 #. type: textblock
5051 #: ../src/guestfs.pod:2654
5052 msgid "Automated tests of the C API."
5053 msgstr ""
5054
5055 #. type: =item
5056 #: ../src/guestfs.pod:2656
5057 msgid "C<cat>"
5058 msgstr ""
5059
5060 #. type: textblock
5061 #: ../src/guestfs.pod:2658
5062 msgid ""
5063 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5064 "documentation."
5065 msgstr ""
5066
5067 #. type: =item
5068 #: ../src/guestfs.pod:2661
5069 msgid "C<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:4588 ../src/guestfs-actions.pod:4661 ../src/guestfs-actions.pod:4692 ../src/guestfs-actions.pod:4711 ../src/guestfs-actions.pod:4730 ../src/guestfs-actions.pod:4742 ../src/guestfs-actions.pod:4759 ../src/guestfs-actions.pod:4772 ../src/guestfs-actions.pod:4787 ../src/guestfs-actions.pod:4802 ../src/guestfs-actions.pod:4837 ../src/guestfs-actions.pod:4870 ../src/guestfs-actions.pod:4909 ../src/guestfs-actions.pod:4929 ../src/guestfs-actions.pod:4943 ../src/guestfs-actions.pod:4960 ../src/guestfs-actions.pod:5009 ../src/guestfs-actions.pod:5046 ../src/guestfs-actions.pod:5060 ../src/guestfs-actions.pod:5088 ../src/guestfs-actions.pod:5105 ../src/guestfs-actions.pod:5123 ../src/guestfs-actions.pod:5257 ../src/guestfs-actions.pod:5314 ../src/guestfs-actions.pod:5336 ../src/guestfs-actions.pod:5354 ../src/guestfs-actions.pod:5386 ../src/guestfs-actions.pod:5452 ../src/guestfs-actions.pod:5469 ../src/guestfs-actions.pod:5482 ../src/guestfs-actions.pod:5496 ../src/guestfs-actions.pod:5785 ../src/guestfs-actions.pod:5804 ../src/guestfs-actions.pod:5823 ../src/guestfs-actions.pod:5837 ../src/guestfs-actions.pod:5849 ../src/guestfs-actions.pod:5863 ../src/guestfs-actions.pod:5875 ../src/guestfs-actions.pod:5889 ../src/guestfs-actions.pod:5905 ../src/guestfs-actions.pod:5926 ../src/guestfs-actions.pod:5945 ../src/guestfs-actions.pod:5964 ../src/guestfs-actions.pod:5994 ../src/guestfs-actions.pod:6012 ../src/guestfs-actions.pod:6035 ../src/guestfs-actions.pod:6053 ../src/guestfs-actions.pod:6072 ../src/guestfs-actions.pod:6093 ../src/guestfs-actions.pod:6112 ../src/guestfs-actions.pod:6129 ../src/guestfs-actions.pod:6157 ../src/guestfs-actions.pod:6181 ../src/guestfs-actions.pod:6200 ../src/guestfs-actions.pod:6224 ../src/guestfs-actions.pod:6243 ../src/guestfs-actions.pod:6258 ../src/guestfs-actions.pod:6277 ../src/guestfs-actions.pod:6314 ../src/guestfs-actions.pod:6344 ../src/guestfs-actions.pod:6377 ../src/guestfs-actions.pod:6499 ../src/guestfs-actions.pod:6620 ../src/guestfs-actions.pod:6632 ../src/guestfs-actions.pod:6645 ../src/guestfs-actions.pod:6658 ../src/guestfs-actions.pod:6680 ../src/guestfs-actions.pod:6693 ../src/guestfs-actions.pod:6706 ../src/guestfs-actions.pod:6719 ../src/guestfs-actions.pod:6734 ../src/guestfs-actions.pod:6793 ../src/guestfs-actions.pod:6810 ../src/guestfs-actions.pod:6826 ../src/guestfs-actions.pod:6842 ../src/guestfs-actions.pod:6859 ../src/guestfs-actions.pod:6872 ../src/guestfs-actions.pod:6892 ../src/guestfs-actions.pod:6928 ../src/guestfs-actions.pod:6942 ../src/guestfs-actions.pod:6983 ../src/guestfs-actions.pod:6996 ../src/guestfs-actions.pod:7014 ../src/guestfs-actions.pod:7048 ../src/guestfs-actions.pod:7084 ../src/guestfs-actions.pod:7203 ../src/guestfs-actions.pod:7221 ../src/guestfs-actions.pod:7235 ../src/guestfs-actions.pod:7290 ../src/guestfs-actions.pod:7303 ../src/guestfs-actions.pod:7348 ../src/guestfs-actions.pod:7381 ../src/guestfs-actions.pod:7442 ../src/guestfs-actions.pod:7468 ../src/guestfs-actions.pod:7535 ../src/guestfs-actions.pod:7554 ../src/guestfs-actions.pod:7583
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:4842 ../src/guestfs-actions.pod:6322 ../src/guestfs-actions.pod:6352 ../src/guestfs-actions.pod:6385 ../src/guestfs-actions.pod:6444 ../src/guestfs-actions.pod:7386 ../src/guestfs-actions.pod:7476 ../src/guestfs-actions.pod:7646 ../fish/guestfish-actions.pod:31 ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180 ../fish/guestfish-actions.pod:961 ../fish/guestfish-actions.pod:1321 ../fish/guestfish-actions.pod:1335 ../fish/guestfish-actions.pod:3038 ../fish/guestfish-actions.pod:3235 ../fish/guestfish-actions.pod:4220 ../fish/guestfish-actions.pod:4243 ../fish/guestfish-actions.pod:4265 ../fish/guestfish-actions.pod:4303 ../fish/guestfish-actions.pod:4944 ../fish/guestfish-actions.pod:5042
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:4846 ../src/guestfs-actions.pod:6014 ../src/guestfs-actions.pod:6131 ../src/guestfs-actions.pod:6245 ../src/guestfs-actions.pod:6736 ../src/guestfs-actions.pod:6861 ../src/guestfs-actions.pod:7390
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:4856
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:5032 ../src/guestfs-actions.pod:5160 ../src/guestfs-actions.pod:5566 ../src/guestfs-actions.pod:5592 ../src/guestfs-actions.pod:6969 ../src/guestfs-actions.pod:7401 ../src/guestfs-actions.pod:7414 ../src/guestfs-actions.pod:7427
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:4602 ../src/guestfs-actions.pod:4614 ../src/guestfs-actions.pod:4884 ../src/guestfs-actions.pod:4896
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:4560 ../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:5643
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:5178 ../src/guestfs-actions.pod:5371 ../src/guestfs-actions.pod:5541 ../src/guestfs-actions.pod:5719 ../src/guestfs-actions.pod:5768 ../src/guestfs-actions.pod:6405 ../src/guestfs-actions.pod:6421 ../src/guestfs-actions.pod:6438 ../src/guestfs-actions.pod:6469 ../src/guestfs-actions.pod:7143 ../src/guestfs-actions.pod:7162 ../src/guestfs-actions.pod:7180 ../src/guestfs-actions.pod:7360 ../src/guestfs-actions.pod:7640
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:4993 ../src/guestfs-actions.pod:5513 ../src/guestfs-actions.pod:5639 ../src/guestfs-actions.pod:5753 ../src/guestfs-actions.pod:6485 ../src/guestfs-actions.pod:6546 ../src/guestfs-actions.pod:6601 ../src/guestfs-actions.pod:6747 ../src/guestfs-actions.pod:6771 ../src/guestfs-actions.pod:7253 ../src/guestfs-actions.pod:7273 ../src/guestfs-actions.pod:7320 ../src/guestfs-actions.pod:7492 ../src/guestfs-actions.pod:7511 ../src/guestfs-actions.pod:7597 ../src/guestfs-actions.pod:7616 ../src/guestfs-actions.pod:7662 ../src/guestfs-actions.pod:7681
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:4997 ../src/guestfs-actions.pod:5454 ../src/guestfs-actions.pod:5851 ../src/guestfs-actions.pod:5865 ../src/guestfs-actions.pod:5877 ../src/guestfs-actions.pod:6326 ../src/guestfs-actions.pod:6985 ../src/guestfs-actions.pod:6998 ../src/guestfs-actions.pod:7237 ../src/guestfs-actions.pod:7480
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:5142
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:7165
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:5629 ../fish/guestfish-actions.pod:585 ../fish/guestfish-actions.pod:3717
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:5411 ../src/guestfs-actions.pod:5437 ../src/guestfs-actions.pod:5568 ../src/guestfs-actions.pod:5594 ../src/guestfs-actions.pod:5618 ../src/guestfs-actions.pod:6550 ../src/guestfs-actions.pod:6605 ../src/guestfs-actions.pod:6751 ../src/guestfs-actions.pod:6775 ../src/guestfs-actions.pod:7444 ../src/guestfs-actions.pod:7470 ../src/guestfs-actions.pod:7496 ../src/guestfs-actions.pod:7515 ../src/guestfs-actions.pod:7601 ../src/guestfs-actions.pod:7620 ../src/guestfs-actions.pod:7666 ../src/guestfs-actions.pod:7685 ../fish/guestfish-actions.pod:592 ../fish/guestfish-actions.pod:727 ../fish/guestfish-actions.pod:739 ../fish/guestfish-actions.pod:915 ../fish/guestfish-actions.pod:925 ../fish/guestfish-actions.pod:992 ../fish/guestfish-actions.pod:1002 ../fish/guestfish-actions.pod:1194 ../fish/guestfish-actions.pod:1495 ../fish/guestfish-actions.pod:1505 ../fish/guestfish-actions.pod:1533 ../fish/guestfish-actions.pod:1548 ../fish/guestfish-actions.pod:1558 ../fish/guestfish-actions.pod:1577 ../fish/guestfish-actions.pod:3587 ../fish/guestfish-actions.pod:3602 ../fish/guestfish-actions.pod:3678 ../fish/guestfish-actions.pod:3695 ../fish/guestfish-actions.pod:3710 ../fish/guestfish-actions.pod:4364 ../fish/guestfish-actions.pod:4410 ../fish/guestfish-actions.pod:4495 ../fish/guestfish-actions.pod:4510 ../fish/guestfish-actions.pod:4920 ../fish/guestfish-actions.pod:4938 ../fish/guestfish-actions.pod:4955 ../fish/guestfish-actions.pod:4965 ../fish/guestfish-actions.pod:5014 ../fish/guestfish-actions.pod:5024 ../fish/guestfish-actions.pod:5053 ../fish/guestfish-actions.pod:5063
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:5517 ../src/guestfs-actions.pod:5531 ../src/guestfs-actions.pod:7324 ../src/guestfs-actions.pod:7338
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:7021
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:5048 ../src/guestfs-actions.pod:5107 ../src/guestfs-actions.pod:5144 ../src/guestfs-actions.pod:5162 ../src/guestfs-actions.pod:5338 ../src/guestfs-actions.pod:6930 ../src/guestfs-actions.pod:6944 ../src/guestfs-actions.pod:7350
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:4690 ../src/guestfs-actions.pod:4709 ../src/guestfs-actions.pod:4728 ../fish/guestfish-actions.pod:681 ../fish/guestfish-actions.pod:3013 ../fish/guestfish-actions.pod:3142 ../fish/guestfish-actions.pod:3152 ../fish/guestfish-actions.pod:3162
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:7016 ../src/guestfs-actions.pod:7050 ../src/guestfs-actions.pod:7537 ../src/guestfs-actions.pod:7556
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:5544 ../src/guestfs-actions.pod:7257 ../src/guestfs-actions.pod:7277 ../src/guestfs-actions.pod:7363
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:5011 ../src/guestfs-actions.pod:5388
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:4911 ../src/guestfs-actions.pod:6754 ../src/guestfs-actions.pod:6778 ../src/guestfs-actions.pod:7403 ../src/guestfs-actions.pod:7416 ../src/guestfs-actions.pod:7429
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:7010 ../fish/guestfish-actions.pod:833 ../fish/guestfish-actions.pod:4668
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:7055
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:6226
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:4789 ../src/guestfs-actions.pod:5722 ../src/guestfs-actions.pod:5771 ../src/guestfs-actions.pod:6622 ../src/guestfs-actions.pod:6634 ../src/guestfs-actions.pod:6647 ../src/guestfs-actions.pod:6660 ../src/guestfs-actions.pod:6682 ../src/guestfs-actions.pod:6695 ../src/guestfs-actions.pod:6708 ../src/guestfs-actions.pod:6721 ../src/guestfs-actions.pod:7499 ../src/guestfs-actions.pod:7518 ../src/guestfs-actions.pod:7604 ../src/guestfs-actions.pod:7623 ../src/guestfs-actions.pod:7669 ../src/guestfs-actions.pod:7688
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:5806
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:7542
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:5484 ../src/guestfs-actions.pod:5966 ../src/guestfs-actions.pod:6389 ../src/guestfs-actions.pod:6408 ../src/guestfs-actions.pod:6424 ../src/guestfs-actions.pod:6448 ../src/guestfs-actions.pod:7205 ../src/guestfs-actions.pod:7223 ../src/guestfs-actions.pod:7585
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:5996
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:6037
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:6055 ../src/guestfs-actions.pod:6074
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:6090 ../src/guestfs-actions.pod:6197 ../fish/guestfish-actions.pod:1350 ../fish/guestfish-actions.pod:1401 ../fish/guestfish-actions.pod:4043 ../fish/guestfish-actions.pod:4130
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:4694 ../src/guestfs-actions.pod:4713 ../src/guestfs-actions.pod:4732 ../src/guestfs-actions.pod:4744 ../src/guestfs-actions.pod:4761 ../src/guestfs-actions.pod:4774 ../src/guestfs-actions.pod:5709 ../src/guestfs-actions.pod:6095 ../src/guestfs-actions.pod:6356 ../src/guestfs-actions.pod:6971
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:6114
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:6159
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:5414 ../src/guestfs-actions.pod:5757 ../src/guestfs-actions.pod:6183 ../src/guestfs-actions.pod:6874 ../src/guestfs-actions.pod:6894 ../src/guestfs-actions.pod:7086
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:6202 ../src/guestfs-actions.pod:6260
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:5407 ../src/guestfs-actions.pod:5433 ../src/guestfs-actions.pod:5614
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:5787 ../src/guestfs-actions.pod:6279 ../src/guestfs-actions.pod:7650
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:6472 ../src/guestfs-actions.pod:6489
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:6769 ../fish/guestfish-actions.pod:1546 ../fish/guestfish-actions.pod:4508
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:6553 ../src/guestfs-actions.pod:6608
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:4973 ../src/guestfs-actions.pod:6910
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:5825
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:4872
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:5374
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:6509 ../fish/guestfish-actions.pod:2626 ../fish/guestfish-actions.pod:4343
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:6513
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:6517 ../src/guestfs-actions.pod:6535 ../src/guestfs-actions.pod:6916
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:5125 ../src/guestfs-actions.pod:5907 ../src/guestfs-actions.pod:6316 ../src/guestfs-actions.pod:6346 ../src/guestfs-actions.pod:6379 ../src/guestfs-actions.pod:7561 ../fish/guestfish-actions.pod:2693 ../fish/guestfish-actions.pod:2706 ../fish/guestfish-actions.pod:2790 ../fish/guestfish-actions.pod:3384 ../fish/guestfish-actions.pod:3904 ../fish/guestfish-actions.pod:4214 ../fish/guestfish-actions.pod:4237 ../fish/guestfish-actions.pod:4259 ../fish/guestfish-actions.pod:4989
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:5471 ../src/guestfs-actions.pod:7292
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:7305
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:4804
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:4570 ../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 "\n"
13320 msgstr ""
13321
13322 #. type: textblock
13323 #: ../src/guestfs-actions.pod:4557 ../fish/guestfish-actions.pod:3046
13324 msgid ""
13325 "This function creates a filesystem on C<device>.  The filesystem type is "
13326 "C<fstype>, for example C<ext3>."
13327 msgstr ""
13328
13329 #. type: =item
13330 #: ../src/guestfs-actions.pod:4564 ../fish/guestfish-actions.pod:3053
13331 msgid "C<blocksize>"
13332 msgstr ""
13333
13334 #. type: textblock
13335 #: ../src/guestfs-actions.pod:4566 ../fish/guestfish-actions.pod:3055
13336 msgid ""
13337 "The filesystem block size.  Supported block sizes depend on the filesystem "
13338 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
13339 "filesystems."
13340 msgstr ""
13341
13342 #. type: textblock
13343 #: ../src/guestfs-actions.pod:4573 ../fish/guestfish-actions.pod:3062
13344 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
13345 msgstr ""
13346
13347 #. type: =item
13348 #: ../src/guestfs-actions.pod:4575 ../fish/guestfish-actions.pod:3064
13349 msgid "C<features>"
13350 msgstr ""
13351
13352 #. type: textblock
13353 #: ../src/guestfs-actions.pod:4577 ../fish/guestfish-actions.pod:3066
13354 msgid "This passes the I<-O> parameter to the external mkfs program."
13355 msgstr ""
13356
13357 #. type: textblock
13358 #: ../src/guestfs-actions.pod:4579 ../fish/guestfish-actions.pod:3068
13359 msgid ""
13360 "For certain filesystem types, this allows extra filesystem features to be "
13361 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
13362 msgstr ""
13363
13364 #. type: textblock
13365 #: ../src/guestfs-actions.pod:4583 ../fish/guestfish-actions.pod:3072
13366 msgid ""
13367 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem "
13368 "type."
13369 msgstr ""
13370
13371 #. type: textblock
13372 #: ../src/guestfs-actions.pod:4590
13373 msgid "(Added in 1.7.19)"
13374 msgstr ""
13375
13376 #. type: =head2
13377 #: ../src/guestfs-actions.pod:4592
13378 msgid "guestfs_mkfs_opts_va"
13379 msgstr ""
13380
13381 #. type: verbatim
13382 #: ../src/guestfs-actions.pod:4594
13383 #, no-wrap
13384 msgid ""
13385 " int\n"
13386 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
13387 "                       const char *fstype,\n"
13388 "                       const char *device,\n"
13389 "                       va_list args);\n"
13390 "\n"
13391 msgstr ""
13392
13393 #. type: textblock
13394 #: ../src/guestfs-actions.pod:4600
13395 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
13396 msgstr ""
13397
13398 #. type: =head2
13399 #: ../src/guestfs-actions.pod:4604
13400 msgid "guestfs_mkfs_opts_argv"
13401 msgstr ""
13402
13403 #. type: verbatim
13404 #: ../src/guestfs-actions.pod:4606
13405 #, no-wrap
13406 msgid ""
13407 " int\n"
13408 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
13409 "                         const char *fstype,\n"
13410 "                         const char *device,\n"
13411 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
13412 "\n"
13413 msgstr ""
13414
13415 #. type: textblock
13416 #: ../src/guestfs-actions.pod:4612
13417 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
13418 msgstr ""
13419
13420 #. type: =head2
13421 #: ../src/guestfs-actions.pod:4616
13422 msgid "guestfs_mkmountpoint"
13423 msgstr ""
13424
13425 #. type: verbatim
13426 #: ../src/guestfs-actions.pod:4618
13427 #, no-wrap
13428 msgid ""
13429 " int\n"
13430 " guestfs_mkmountpoint (guestfs_h *g,\n"
13431 "                       const char *exemptpath);\n"
13432 "\n"
13433 msgstr ""
13434
13435 #. type: textblock
13436 #: ../src/guestfs-actions.pod:4622
13437 msgid ""
13438 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
13439 "that can be used to create extra mountpoints before mounting the first "
13440 "filesystem."
13441 msgstr ""
13442
13443 #. type: textblock
13444 #: ../src/guestfs-actions.pod:4626 ../fish/guestfish-actions.pod:3087
13445 msgid ""
13446 "These calls are I<only> necessary in some very limited circumstances, mainly "
13447 "the case where you want to mount a mix of unrelated and/or read-only "
13448 "filesystems together."
13449 msgstr ""
13450
13451 #. type: textblock
13452 #: ../src/guestfs-actions.pod:4630 ../fish/guestfish-actions.pod:3091
13453 msgid ""
13454 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
13455 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
13456 "inside that.  You can unpack this as follows in guestfish:"
13457 msgstr ""
13458
13459 #. type: verbatim
13460 #: ../src/guestfs-actions.pod:4635 ../fish/guestfish-actions.pod:3096
13461 #, no-wrap
13462 msgid ""
13463 " add-ro Fedora-11-i686-Live.iso\n"
13464 " run\n"
13465 " mkmountpoint /cd\n"
13466 " mkmountpoint /sqsh\n"
13467 " mkmountpoint /ext3fs\n"
13468 " mount /dev/sda /cd\n"
13469 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
13470 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
13471 "\n"
13472 msgstr ""
13473
13474 #. type: textblock
13475 #: ../src/guestfs-actions.pod:4644 ../fish/guestfish-actions.pod:3105
13476 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
13477 msgstr ""
13478
13479 #. type: textblock
13480 #: ../src/guestfs-actions.pod:4646
13481 msgid ""
13482 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
13483 "may get unexpected errors if you try to mix these calls.  It is safest to "
13484 "manually unmount filesystems and remove mountpoints after use."
13485 msgstr ""
13486
13487 #. type: textblock
13488 #: ../src/guestfs-actions.pod:4650
13489 msgid ""
13490 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
13491 "first, so for this to work for manual mountpoints, you must ensure that the "
13492 "innermost mountpoints have the longest pathnames, as in the example code "
13493 "above."
13494 msgstr ""
13495
13496 #. type: textblock
13497 #: ../src/guestfs-actions.pod:4655 ../fish/guestfish-actions.pod:3116
13498 msgid "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
13499 msgstr ""
13500
13501 #. type: textblock
13502 #: ../src/guestfs-actions.pod:4657
13503 msgid ""
13504 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
13505 "can cause C<guestfs_umount_all> to be called when the handle is closed which "
13506 "can also trigger these issues."
13507 msgstr ""
13508
13509 #. type: textblock
13510 #: ../src/guestfs-actions.pod:4663 ../src/guestfs-actions.pod:4979 ../src/guestfs-actions.pod:5891
13511 msgid "(Added in 1.0.62)"
13512 msgstr ""
13513
13514 #. type: =head2
13515 #: ../src/guestfs-actions.pod:4665
13516 msgid "guestfs_mknod"
13517 msgstr ""
13518
13519 #. type: verbatim
13520 #: ../src/guestfs-actions.pod:4667
13521 #, no-wrap
13522 msgid ""
13523 " int\n"
13524 " guestfs_mknod (guestfs_h *g,\n"
13525 "                int mode,\n"
13526 "                int devmajor,\n"
13527 "                int devminor,\n"
13528 "                const char *path);\n"
13529 "\n"
13530 msgstr ""
13531
13532 #. type: textblock
13533 #: ../src/guestfs-actions.pod:4674 ../fish/guestfish-actions.pod:3126
13534 msgid ""
13535 "This call creates block or character special devices, or named pipes "
13536 "(FIFOs)."
13537 msgstr ""
13538
13539 #. type: textblock
13540 #: ../src/guestfs-actions.pod:4677 ../fish/guestfish-actions.pod:3129
13541 msgid ""
13542 "The C<mode> parameter should be the mode, using the standard constants.  "
13543 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
13544 "used when creating block and character special devices."
13545 msgstr ""
13546
13547 #. type: textblock
13548 #: ../src/guestfs-actions.pod:4682
13549 msgid ""
13550 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
13551 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
13552 "regular file).  These constants are available in the standard Linux header "
13553 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
13554 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in "
13555 "the appropriate constant for you."
13556 msgstr ""
13557
13558 #. type: =head2
13559 #: ../src/guestfs-actions.pod:4696
13560 msgid "guestfs_mknod_b"
13561 msgstr ""
13562
13563 #. type: verbatim
13564 #: ../src/guestfs-actions.pod:4698
13565 #, no-wrap
13566 msgid ""
13567 " int\n"
13568 " guestfs_mknod_b (guestfs_h *g,\n"
13569 "                  int mode,\n"
13570 "                  int devmajor,\n"
13571 "                  int devminor,\n"
13572 "                  const char *path);\n"
13573 "\n"
13574 msgstr ""
13575
13576 #. type: textblock
13577 #: ../src/guestfs-actions.pod:4705
13578 msgid ""
13579 "This call creates a block device node called C<path> with mode C<mode> and "
13580 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
13581 "wrapper around C<guestfs_mknod>."
13582 msgstr ""
13583
13584 #. type: =head2
13585 #: ../src/guestfs-actions.pod:4715
13586 msgid "guestfs_mknod_c"
13587 msgstr ""
13588
13589 #. type: verbatim
13590 #: ../src/guestfs-actions.pod:4717
13591 #, no-wrap
13592 msgid ""
13593 " int\n"
13594 " guestfs_mknod_c (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:4724
13604 msgid ""
13605 "This call creates a char 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:4734
13612 msgid "guestfs_mkswap"
13613 msgstr ""
13614
13615 #. type: verbatim
13616 #: ../src/guestfs-actions.pod:4736
13617 #, no-wrap
13618 msgid ""
13619 " int\n"
13620 " guestfs_mkswap (guestfs_h *g,\n"
13621 "                 const char *device);\n"
13622 "\n"
13623 msgstr ""
13624
13625 #. type: textblock
13626 #: ../src/guestfs-actions.pod:4740 ../fish/guestfish-actions.pod:3168
13627 msgid "Create a swap partition on C<device>."
13628 msgstr ""
13629
13630 #. type: =head2
13631 #: ../src/guestfs-actions.pod:4746
13632 msgid "guestfs_mkswap_L"
13633 msgstr ""
13634
13635 #. type: verbatim
13636 #: ../src/guestfs-actions.pod:4748
13637 #, no-wrap
13638 msgid ""
13639 " int\n"
13640 " guestfs_mkswap_L (guestfs_h *g,\n"
13641 "                   const char *label,\n"
13642 "                   const char *device);\n"
13643 "\n"
13644 msgstr ""
13645
13646 #. type: textblock
13647 #: ../src/guestfs-actions.pod:4753 ../fish/guestfish-actions.pod:3174
13648 msgid "Create a swap partition on C<device> with label C<label>."
13649 msgstr ""
13650
13651 #. type: textblock
13652 #: ../src/guestfs-actions.pod:4755 ../fish/guestfish-actions.pod:3176
13653 msgid ""
13654 "Note that you cannot attach a swap label to a block device "
13655 "(eg. C</dev/sda>), just to a partition.  This appears to be a limitation of "
13656 "the kernel or swap tools."
13657 msgstr ""
13658
13659 #. type: =head2
13660 #: ../src/guestfs-actions.pod:4763
13661 msgid "guestfs_mkswap_U"
13662 msgstr ""
13663
13664 #. type: verbatim
13665 #: ../src/guestfs-actions.pod:4765
13666 #, no-wrap
13667 msgid ""
13668 " int\n"
13669 " guestfs_mkswap_U (guestfs_h *g,\n"
13670 "                   const char *uuid,\n"
13671 "                   const char *device);\n"
13672 "\n"
13673 msgstr ""
13674
13675 #. type: textblock
13676 #: ../src/guestfs-actions.pod:4770 ../fish/guestfish-actions.pod:3184
13677 msgid "Create a swap partition on C<device> with UUID C<uuid>."
13678 msgstr ""
13679
13680 #. type: =head2
13681 #: ../src/guestfs-actions.pod:4776
13682 msgid "guestfs_mkswap_file"
13683 msgstr ""
13684
13685 #. type: verbatim
13686 #: ../src/guestfs-actions.pod:4778
13687 #, no-wrap
13688 msgid ""
13689 " int\n"
13690 " guestfs_mkswap_file (guestfs_h *g,\n"
13691 "                      const char *path);\n"
13692 "\n"
13693 msgstr ""
13694
13695 #. type: textblock
13696 #: ../src/guestfs-actions.pod:4782 ../fish/guestfish-actions.pod:3190
13697 msgid "Create a swap file."
13698 msgstr ""
13699
13700 #. type: textblock
13701 #: ../src/guestfs-actions.pod:4784
13702 msgid ""
13703 "This command just writes a swap file signature to an existing file.  To "
13704 "create the file itself, use something like C<guestfs_fallocate>."
13705 msgstr ""
13706
13707 #. type: =head2
13708 #: ../src/guestfs-actions.pod:4791
13709 msgid "guestfs_modprobe"
13710 msgstr ""
13711
13712 #. type: verbatim
13713 #: ../src/guestfs-actions.pod:4793
13714 #, no-wrap
13715 msgid ""
13716 " int\n"
13717 " guestfs_modprobe (guestfs_h *g,\n"
13718 "                   const char *modulename);\n"
13719 "\n"
13720 msgstr ""
13721
13722 #. type: textblock
13723 #: ../src/guestfs-actions.pod:4797 ../fish/guestfish-actions.pod:3199
13724 msgid "This loads a kernel module in the appliance."
13725 msgstr ""
13726
13727 #. type: textblock
13728 #: ../src/guestfs-actions.pod:4799 ../fish/guestfish-actions.pod:3201
13729 msgid ""
13730 "The kernel module must have been whitelisted when libguestfs was built (see "
13731 "C<appliance/kmod.whitelist.in> in the source)."
13732 msgstr ""
13733
13734 #. type: =head2
13735 #: ../src/guestfs-actions.pod:4806
13736 msgid "guestfs_mount"
13737 msgstr ""
13738
13739 #. type: verbatim
13740 #: ../src/guestfs-actions.pod:4808
13741 #, no-wrap
13742 msgid ""
13743 " int\n"
13744 " guestfs_mount (guestfs_h *g,\n"
13745 "                const char *device,\n"
13746 "                const char *mountpoint);\n"
13747 "\n"
13748 msgstr ""
13749
13750 #. type: textblock
13751 #: ../src/guestfs-actions.pod:4813 ../fish/guestfish-actions.pod:3208
13752 msgid ""
13753 "Mount a guest disk at a position in the filesystem.  Block devices are named "
13754 "C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
13755 "those block devices contain partitions, they will have the usual names "
13756 "(eg. C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
13757 msgstr ""
13758
13759 #. type: textblock
13760 #: ../src/guestfs-actions.pod:4819 ../fish/guestfish-actions.pod:3214
13761 msgid ""
13762 "The rules are the same as for L<mount(2)>: A filesystem must first be "
13763 "mounted on C</> before others can be mounted.  Other filesystems can only be "
13764 "mounted on directories which already exist."
13765 msgstr ""
13766
13767 #. type: textblock
13768 #: ../src/guestfs-actions.pod:4824 ../fish/guestfish-actions.pod:3219
13769 msgid ""
13770 "The mounted filesystem is writable, if we have sufficient permissions on the "
13771 "underlying device."
13772 msgstr ""
13773
13774 #. type: textblock
13775 #: ../src/guestfs-actions.pod:4827
13776 msgid ""
13777 "B<Important note:> When you use this call, the filesystem options C<sync> "
13778 "and C<noatime> are set implicitly.  This was originally done because we "
13779 "thought it would improve reliability, but it turns out that I<-o sync> has a "
13780 "very large negative performance impact and negligible effect on "
13781 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
13782 "in any code that needs performance, and instead use C<guestfs_mount_options> "
13783 "(use an empty string for the first parameter if you don't want any options)."
13784 msgstr ""
13785
13786 #. type: textblock
13787 #: ../src/guestfs-actions.pod:4839 ../fish/guestfish-actions.pod:3232
13788 msgid ""
13789 "This function is deprecated.  In new code, use the C<mount_options> call "
13790 "instead."
13791 msgstr ""
13792
13793 #. type: =head2
13794 #: ../src/guestfs-actions.pod:4848
13795 msgid "guestfs_mount_9p"
13796 msgstr ""
13797
13798 #. type: verbatim
13799 #: ../src/guestfs-actions.pod:4850
13800 #, no-wrap
13801 msgid ""
13802 " int\n"
13803 " guestfs_mount_9p (guestfs_h *g,\n"
13804 "                   const char *mounttag,\n"
13805 "                   const char *mountpoint,\n"
13806 "                   ...);\n"
13807 "\n"
13808 msgstr ""
13809
13810 #. type: verbatim
13811 #: ../src/guestfs-actions.pod:4861
13812 #, no-wrap
13813 msgid ""
13814 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
13815 "\n"
13816 msgstr ""
13817
13818 #. type: textblock
13819 #: ../src/guestfs-actions.pod:4863 ../fish/guestfish-actions.pod:3243
13820 msgid ""
13821 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
13822 "C<mountpoint>."
13823 msgstr ""
13824
13825 #. type: textblock
13826 #: ../src/guestfs-actions.pod:4866 ../fish/guestfish-actions.pod:3246
13827 msgid ""
13828 "If required, C<trans=virtio> will be automatically added to the options.  "
13829 "Any other options required can be passed in the optional C<options> "
13830 "parameter."
13831 msgstr ""
13832
13833 #. type: =head2
13834 #: ../src/guestfs-actions.pod:4874
13835 msgid "guestfs_mount_9p_va"
13836 msgstr ""
13837
13838 #. type: verbatim
13839 #: ../src/guestfs-actions.pod:4876
13840 #, no-wrap
13841 msgid ""
13842 " int\n"
13843 " guestfs_mount_9p_va (guestfs_h *g,\n"
13844 "                      const char *mounttag,\n"
13845 "                      const char *mountpoint,\n"
13846 "                      va_list args);\n"
13847 "\n"
13848 msgstr ""
13849
13850 #. type: textblock
13851 #: ../src/guestfs-actions.pod:4882
13852 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
13853 msgstr ""
13854
13855 #. type: =head2
13856 #: ../src/guestfs-actions.pod:4886
13857 msgid "guestfs_mount_9p_argv"
13858 msgstr ""
13859
13860 #. type: verbatim
13861 #: ../src/guestfs-actions.pod:4888
13862 #, no-wrap
13863 msgid ""
13864 " int\n"
13865 " guestfs_mount_9p_argv (guestfs_h *g,\n"
13866 "                        const char *mounttag,\n"
13867 "                        const char *mountpoint,\n"
13868 "                        const struct guestfs_mount_9p_argv *optargs);\n"
13869 "\n"
13870 msgstr ""
13871
13872 #. type: textblock
13873 #: ../src/guestfs-actions.pod:4894
13874 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
13875 msgstr ""
13876
13877 #. type: =head2
13878 #: ../src/guestfs-actions.pod:4898
13879 msgid "guestfs_mount_loop"
13880 msgstr ""
13881
13882 #. type: verbatim
13883 #: ../src/guestfs-actions.pod:4900
13884 #, no-wrap
13885 msgid ""
13886 " int\n"
13887 " guestfs_mount_loop (guestfs_h *g,\n"
13888 "                     const char *file,\n"
13889 "                     const char *mountpoint);\n"
13890 "\n"
13891 msgstr ""
13892
13893 #. type: textblock
13894 #: ../src/guestfs-actions.pod:4905 ../fish/guestfish-actions.pod:3256
13895 msgid ""
13896 "This command lets you mount C<file> (a filesystem image in a file) on a "
13897 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
13898 "mountpoint>."
13899 msgstr ""
13900
13901 #. type: =head2
13902 #: ../src/guestfs-actions.pod:4913
13903 msgid "guestfs_mount_options"
13904 msgstr ""
13905
13906 #. type: verbatim
13907 #: ../src/guestfs-actions.pod:4915
13908 #, no-wrap
13909 msgid ""
13910 " int\n"
13911 " guestfs_mount_options (guestfs_h *g,\n"
13912 "                        const char *options,\n"
13913 "                        const char *device,\n"
13914 "                        const char *mountpoint);\n"
13915 "\n"
13916 msgstr ""
13917
13918 #. type: textblock
13919 #: ../src/guestfs-actions.pod:4921
13920 msgid ""
13921 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13922 "the mount options as for the L<mount(8)> I<-o> flag."
13923 msgstr ""
13924
13925 #. type: textblock
13926 #: ../src/guestfs-actions.pod:4925 ../fish/guestfish-actions.pod:3268
13927 msgid ""
13928 "If the C<options> parameter is an empty string, then no options are passed "
13929 "(all options default to whatever the filesystem uses)."
13930 msgstr ""
13931
13932 #. type: textblock
13933 #: ../src/guestfs-actions.pod:4931 ../src/guestfs-actions.pod:4945 ../src/guestfs-actions.pod:4962
13934 msgid "(Added in 1.0.10)"
13935 msgstr ""
13936
13937 #. type: =head2
13938 #: ../src/guestfs-actions.pod:4933
13939 msgid "guestfs_mount_ro"
13940 msgstr ""
13941
13942 #. type: verbatim
13943 #: ../src/guestfs-actions.pod:4935
13944 #, no-wrap
13945 msgid ""
13946 " int\n"
13947 " guestfs_mount_ro (guestfs_h *g,\n"
13948 "                   const char *device,\n"
13949 "                   const char *mountpoint);\n"
13950 "\n"
13951 msgstr ""
13952
13953 #. type: textblock
13954 #: ../src/guestfs-actions.pod:4940
13955 msgid ""
13956 "This is the same as the C<guestfs_mount> command, but it mounts the "
13957 "filesystem with the read-only (I<-o ro>) flag."
13958 msgstr ""
13959
13960 #. type: =head2
13961 #: ../src/guestfs-actions.pod:4947
13962 msgid "guestfs_mount_vfs"
13963 msgstr ""
13964
13965 #. type: verbatim
13966 #: ../src/guestfs-actions.pod:4949
13967 #, no-wrap
13968 msgid ""
13969 " int\n"
13970 " guestfs_mount_vfs (guestfs_h *g,\n"
13971 "                    const char *options,\n"
13972 "                    const char *vfstype,\n"
13973 "                    const char *device,\n"
13974 "                    const char *mountpoint);\n"
13975 "\n"
13976 msgstr ""
13977
13978 #. type: textblock
13979 #: ../src/guestfs-actions.pod:4956
13980 msgid ""
13981 "This is the same as the C<guestfs_mount> command, but it allows you to set "
13982 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
13983 "I<-t> flags."
13984 msgstr ""
13985
13986 #. type: =head2
13987 #: ../src/guestfs-actions.pod:4964
13988 msgid "guestfs_mountpoints"
13989 msgstr ""
13990
13991 #. type: verbatim
13992 #: ../src/guestfs-actions.pod:4966
13993 #, no-wrap
13994 msgid ""
13995 " char **\n"
13996 " guestfs_mountpoints (guestfs_h *g);\n"
13997 "\n"
13998 msgstr ""
13999
14000 #. type: textblock
14001 #: ../src/guestfs-actions.pod:4969
14002 msgid ""
14003 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14004 "devices.  This one returns a hash table (map) of device name to directory "
14005 "where the device is mounted."
14006 msgstr ""
14007
14008 #. type: =head2
14009 #: ../src/guestfs-actions.pod:4981
14010 msgid "guestfs_mounts"
14011 msgstr ""
14012
14013 #. type: verbatim
14014 #: ../src/guestfs-actions.pod:4983
14015 #, no-wrap
14016 msgid ""
14017 " char **\n"
14018 " guestfs_mounts (guestfs_h *g);\n"
14019 "\n"
14020 msgstr ""
14021
14022 #. type: textblock
14023 #: ../src/guestfs-actions.pod:4986 ../fish/guestfish-actions.pod:3299
14024 msgid ""
14025 "This returns the list of currently mounted filesystems.  It returns the list "
14026 "of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14027 msgstr ""
14028
14029 #. type: textblock
14030 #: ../src/guestfs-actions.pod:4989 ../fish/guestfish-actions.pod:3302
14031 msgid "Some internal mounts are not shown."
14032 msgstr ""
14033
14034 #. type: textblock
14035 #: ../src/guestfs-actions.pod:4991
14036 msgid "See also: C<guestfs_mountpoints>"
14037 msgstr ""
14038
14039 #. type: =head2
14040 #: ../src/guestfs-actions.pod:4999
14041 msgid "guestfs_mv"
14042 msgstr ""
14043
14044 #. type: verbatim
14045 #: ../src/guestfs-actions.pod:5001
14046 #, no-wrap
14047 msgid ""
14048 " int\n"
14049 " guestfs_mv (guestfs_h *g,\n"
14050 "             const char *src,\n"
14051 "             const char *dest);\n"
14052 "\n"
14053 msgstr ""
14054
14055 #. type: textblock
14056 #: ../src/guestfs-actions.pod:5006 ../fish/guestfish-actions.pod:3310
14057 msgid ""
14058 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14059 "destination filename or destination directory."
14060 msgstr ""
14061
14062 #. type: =head2
14063 #: ../src/guestfs-actions.pod:5013
14064 msgid "guestfs_ntfs_3g_probe"
14065 msgstr ""
14066
14067 #. type: verbatim
14068 #: ../src/guestfs-actions.pod:5015
14069 #, no-wrap
14070 msgid ""
14071 " int\n"
14072 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14073 "                        int rw,\n"
14074 "                        const char *device);\n"
14075 "\n"
14076 msgstr ""
14077
14078 #. type: textblock
14079 #: ../src/guestfs-actions.pod:5020 ../fish/guestfish-actions.pod:3317
14080 msgid ""
14081 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14082 "C<device> for mountability.  (Not all NTFS volumes can be mounted "
14083 "read-write, and some cannot be mounted at all)."
14084 msgstr ""
14085
14086 #. type: textblock
14087 #: ../src/guestfs-actions.pod:5024 ../fish/guestfish-actions.pod:3321
14088 msgid ""
14089 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14090 "can be mounted read-write.  Set it to false if you want to test if the "
14091 "volume can be mounted read-only."
14092 msgstr ""
14093
14094 #. type: textblock
14095 #: ../src/guestfs-actions.pod:5028 ../fish/guestfish-actions.pod:3325
14096 msgid ""
14097 "The return value is an integer which C<0> if the operation would succeed, or "
14098 "some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14099 msgstr ""
14100
14101 #. type: textblock
14102 #: ../src/guestfs-actions.pod:5034
14103 msgid "(Added in 1.0.43)"
14104 msgstr ""
14105
14106 #. type: =head2
14107 #: ../src/guestfs-actions.pod:5036
14108 msgid "guestfs_ntfsresize"
14109 msgstr ""
14110
14111 #. type: verbatim
14112 #: ../src/guestfs-actions.pod:5038
14113 #, no-wrap
14114 msgid ""
14115 " int\n"
14116 " guestfs_ntfsresize (guestfs_h *g,\n"
14117 "                     const char *device);\n"
14118 "\n"
14119 msgstr ""
14120
14121 #. type: textblock
14122 #: ../src/guestfs-actions.pod:5042 ../fish/guestfish-actions.pod:3333
14123 msgid ""
14124 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14125 "size of the underlying device.  See also L<ntfsresize(8)>."
14126 msgstr ""
14127
14128 #. type: =head2
14129 #: ../src/guestfs-actions.pod:5050
14130 msgid "guestfs_ntfsresize_size"
14131 msgstr ""
14132
14133 #. type: verbatim
14134 #: ../src/guestfs-actions.pod:5052
14135 #, no-wrap
14136 msgid ""
14137 " int\n"
14138 " guestfs_ntfsresize_size (guestfs_h *g,\n"
14139 "                          const char *device,\n"
14140 "                          int64_t size);\n"
14141 "\n"
14142 msgstr ""
14143
14144 #. type: textblock
14145 #: ../src/guestfs-actions.pod:5057
14146 msgid ""
14147 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
14148 "to specify the new size (in bytes) explicitly."
14149 msgstr ""
14150
14151 #. type: textblock
14152 #: ../src/guestfs-actions.pod:5062 ../src/guestfs-actions.pod:5498 ../src/guestfs-actions.pod:5571 ../src/guestfs-actions.pod:5839 ../src/guestfs-actions.pod:7447
14153 msgid "(Added in 1.3.14)"
14154 msgstr ""
14155
14156 #. type: =head2
14157 #: ../src/guestfs-actions.pod:5064
14158 msgid "guestfs_part_add"
14159 msgstr ""
14160
14161 #. type: verbatim
14162 #: ../src/guestfs-actions.pod:5066
14163 #, no-wrap
14164 msgid ""
14165 " int\n"
14166 " guestfs_part_add (guestfs_h *g,\n"
14167 "                   const char *device,\n"
14168 "                   const char *prlogex,\n"
14169 "                   int64_t startsect,\n"
14170 "                   int64_t endsect);\n"
14171 "\n"
14172 msgstr ""
14173
14174 #. type: textblock
14175 #: ../src/guestfs-actions.pod:5073
14176 msgid ""
14177 "This command adds a partition to C<device>.  If there is no partition table "
14178 "on the device, call C<guestfs_part_init> first."
14179 msgstr ""
14180
14181 #. type: textblock
14182 #: ../src/guestfs-actions.pod:5076 ../fish/guestfish-actions.pod:3351
14183 msgid ""
14184 "The C<prlogex> parameter is the type of partition.  Normally you should pass "
14185 "C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
14186 "C<logical>) and C<e> (or C<extended>) partition types."
14187 msgstr ""
14188
14189 #. type: textblock
14190 #: ../src/guestfs-actions.pod:5081 ../fish/guestfish-actions.pod:3356
14191 msgid ""
14192 "C<startsect> and C<endsect> are the start and end of the partition in "
14193 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
14194 "from the end of the disk (C<-1> is the last sector)."
14195 msgstr ""
14196
14197 #. type: textblock
14198 #: ../src/guestfs-actions.pod:5085
14199 msgid ""
14200 "Creating a partition which covers the whole disk is not so easy.  Use "
14201 "C<guestfs_part_disk> to do that."
14202 msgstr ""
14203
14204 #. type: textblock
14205 #: ../src/guestfs-actions.pod:5090 ../src/guestfs-actions.pod:5128 ../src/guestfs-actions.pod:5181 ../src/guestfs-actions.pod:5259 ../src/guestfs-actions.pod:5297 ../src/guestfs-actions.pod:5316 ../src/guestfs-actions.pod:5356
14206 msgid "(Added in 1.0.78)"
14207 msgstr ""
14208
14209 #. type: =head2
14210 #: ../src/guestfs-actions.pod:5092
14211 msgid "guestfs_part_del"
14212 msgstr ""
14213
14214 #. type: verbatim
14215 #: ../src/guestfs-actions.pod:5094
14216 #, no-wrap
14217 msgid ""
14218 " int\n"
14219 " guestfs_part_del (guestfs_h *g,\n"
14220 "                   const char *device,\n"
14221 "                   int partnum);\n"
14222 "\n"
14223 msgstr ""
14224
14225 #. type: textblock
14226 #: ../src/guestfs-actions.pod:5099 ../fish/guestfish-actions.pod:3367
14227 msgid "This command deletes the partition numbered C<partnum> on C<device>."
14228 msgstr ""
14229
14230 #. type: textblock
14231 #: ../src/guestfs-actions.pod:5101 ../fish/guestfish-actions.pod:3369
14232 msgid ""
14233 "Note that in the case of MBR partitioning, deleting an extended partition "
14234 "also deletes any logical partitions it contains."
14235 msgstr ""
14236
14237 #. type: =head2
14238 #: ../src/guestfs-actions.pod:5109
14239 msgid "guestfs_part_disk"
14240 msgstr ""
14241
14242 #. type: verbatim
14243 #: ../src/guestfs-actions.pod:5111
14244 #, no-wrap
14245 msgid ""
14246 " int\n"
14247 " guestfs_part_disk (guestfs_h *g,\n"
14248 "                    const char *device,\n"
14249 "                    const char *parttype);\n"
14250 "\n"
14251 msgstr ""
14252
14253 #. type: textblock
14254 #: ../src/guestfs-actions.pod:5116
14255 msgid ""
14256 "This command is simply a combination of C<guestfs_part_init> followed by "
14257 "C<guestfs_part_add> to create a single primary partition covering the whole "
14258 "disk."
14259 msgstr ""
14260
14261 #. type: textblock
14262 #: ../src/guestfs-actions.pod:5120
14263 msgid ""
14264 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
14265 "possible values are described in C<guestfs_part_init>."
14266 msgstr ""
14267
14268 #. type: =head2
14269 #: ../src/guestfs-actions.pod:5130
14270 msgid "guestfs_part_get_bootable"
14271 msgstr ""
14272
14273 #. type: verbatim
14274 #: ../src/guestfs-actions.pod:5132
14275 #, no-wrap
14276 msgid ""
14277 " int\n"
14278 " guestfs_part_get_bootable (guestfs_h *g,\n"
14279 "                            const char *device,\n"
14280 "                            int partnum);\n"
14281 "\n"
14282 msgstr ""
14283
14284 #. type: textblock
14285 #: ../src/guestfs-actions.pod:5137 ../fish/guestfish-actions.pod:3391
14286 msgid ""
14287 "This command returns true if the partition C<partnum> on C<device> has the "
14288 "bootable flag set."
14289 msgstr ""
14290
14291 #. type: textblock
14292 #: ../src/guestfs-actions.pod:5140
14293 msgid "See also C<guestfs_part_set_bootable>."
14294 msgstr ""
14295
14296 #. type: =head2
14297 #: ../src/guestfs-actions.pod:5146
14298 msgid "guestfs_part_get_mbr_id"
14299 msgstr ""
14300
14301 #. type: verbatim
14302 #: ../src/guestfs-actions.pod:5148
14303 #, no-wrap
14304 msgid ""
14305 " int\n"
14306 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
14307 "                          const char *device,\n"
14308 "                          int partnum);\n"
14309 "\n"
14310 msgstr ""
14311
14312 #. type: textblock
14313 #: ../src/guestfs-actions.pod:5153 ../fish/guestfish-actions.pod:3400
14314 msgid ""
14315 "Returns the MBR type byte (also known as the ID byte) from the numbered "
14316 "partition C<partnum>."
14317 msgstr ""
14318
14319 #. type: textblock
14320 #: ../src/guestfs-actions.pod:5156 ../src/guestfs-actions.pod:5332
14321 msgid ""
14322 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
14323 "undefined results for other partition table types (see "
14324 "C<guestfs_part_get_parttype>)."
14325 msgstr ""
14326
14327 #. type: =head2
14328 #: ../src/guestfs-actions.pod:5164
14329 msgid "guestfs_part_get_parttype"
14330 msgstr ""
14331
14332 #. type: verbatim
14333 #: ../src/guestfs-actions.pod:5166
14334 #, no-wrap
14335 msgid ""
14336 " char *\n"
14337 " guestfs_part_get_parttype (guestfs_h *g,\n"
14338 "                            const char *device);\n"
14339 "\n"
14340 msgstr ""
14341
14342 #. type: textblock
14343 #: ../src/guestfs-actions.pod:5170 ../fish/guestfish-actions.pod:3411
14344 msgid ""
14345 "This command examines the partition table on C<device> and returns the "
14346 "partition table type (format) being used."
14347 msgstr ""
14348
14349 #. type: textblock
14350 #: ../src/guestfs-actions.pod:5173
14351 msgid ""
14352 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
14353 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
14354 "possible, although unusual.  See C<guestfs_part_init> for a full list."
14355 msgstr ""
14356
14357 #. type: =head2
14358 #: ../src/guestfs-actions.pod:5183
14359 msgid "guestfs_part_init"
14360 msgstr ""
14361
14362 #. type: verbatim
14363 #: ../src/guestfs-actions.pod:5185
14364 #, no-wrap
14365 msgid ""
14366 " int\n"
14367 " guestfs_part_init (guestfs_h *g,\n"
14368 "                    const char *device,\n"
14369 "                    const char *parttype);\n"
14370 "\n"
14371 msgstr ""
14372
14373 #. type: textblock
14374 #: ../src/guestfs-actions.pod:5190 ../fish/guestfish-actions.pod:3423
14375 msgid ""
14376 "This creates an empty partition table on C<device> of one of the partition "
14377 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt> "
14378 "(for large disks)."
14379 msgstr ""
14380
14381 #. type: textblock
14382 #: ../src/guestfs-actions.pod:5194
14383 msgid ""
14384 "Initially there are no partitions.  Following this, you should call "
14385 "C<guestfs_part_add> for each partition required."
14386 msgstr ""
14387
14388 #. type: textblock
14389 #: ../src/guestfs-actions.pod:5197 ../fish/guestfish-actions.pod:3430
14390 msgid "Possible values for C<parttype> are:"
14391 msgstr ""
14392
14393 #. type: =item
14394 #: ../src/guestfs-actions.pod:5201 ../fish/guestfish-actions.pod:3434
14395 msgid "B<efi> | B<gpt>"
14396 msgstr ""
14397
14398 #. type: textblock
14399 #: ../src/guestfs-actions.pod:5203 ../fish/guestfish-actions.pod:3436
14400 msgid "Intel EFI / GPT partition table."
14401 msgstr ""
14402
14403 #. type: textblock
14404 #: ../src/guestfs-actions.pod:5205 ../fish/guestfish-actions.pod:3438
14405 msgid ""
14406 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
14407 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
14408 "the C<mbr> format."
14409 msgstr ""
14410
14411 #. type: =item
14412 #: ../src/guestfs-actions.pod:5209 ../fish/guestfish-actions.pod:3442
14413 msgid "B<mbr> | B<msdos>"
14414 msgstr ""
14415
14416 #. type: textblock
14417 #: ../src/guestfs-actions.pod:5211 ../fish/guestfish-actions.pod:3444
14418 msgid ""
14419 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
14420 "Windows.  This partition type will B<only> work for device sizes up to 2 "
14421 "TB.  For large disks we recommend using C<gpt>."
14422 msgstr ""
14423
14424 #. type: textblock
14425 #: ../src/guestfs-actions.pod:5218 ../fish/guestfish-actions.pod:3451
14426 msgid "Other partition table types that may work but are not supported include:"
14427 msgstr ""
14428
14429 #. type: =item
14430 #: ../src/guestfs-actions.pod:5223 ../fish/guestfish-actions.pod:3456
14431 msgid "B<aix>"
14432 msgstr ""
14433
14434 #. type: textblock
14435 #: ../src/guestfs-actions.pod:5225 ../fish/guestfish-actions.pod:3458
14436 msgid "AIX disk labels."
14437 msgstr ""
14438
14439 #. type: =item
14440 #: ../src/guestfs-actions.pod:5227 ../fish/guestfish-actions.pod:3460
14441 msgid "B<amiga> | B<rdb>"
14442 msgstr ""
14443
14444 #. type: textblock
14445 #: ../src/guestfs-actions.pod:5229 ../fish/guestfish-actions.pod:3462
14446 msgid "Amiga \"Rigid Disk Block\" format."
14447 msgstr ""
14448
14449 #. type: =item
14450 #: ../src/guestfs-actions.pod:5231 ../fish/guestfish-actions.pod:3464
14451 msgid "B<bsd>"
14452 msgstr ""
14453
14454 #. type: textblock
14455 #: ../src/guestfs-actions.pod:5233 ../fish/guestfish-actions.pod:3466
14456 msgid "BSD disk labels."
14457 msgstr ""
14458
14459 #. type: =item
14460 #: ../src/guestfs-actions.pod:5235 ../fish/guestfish-actions.pod:3468
14461 msgid "B<dasd>"
14462 msgstr ""
14463
14464 #. type: textblock
14465 #: ../src/guestfs-actions.pod:5237 ../fish/guestfish-actions.pod:3470
14466 msgid "DASD, used on IBM mainframes."
14467 msgstr ""
14468
14469 #. type: =item
14470 #: ../src/guestfs-actions.pod:5239 ../fish/guestfish-actions.pod:3472
14471 msgid "B<dvh>"
14472 msgstr ""
14473
14474 #. type: textblock
14475 #: ../src/guestfs-actions.pod:5241 ../fish/guestfish-actions.pod:3474
14476 msgid "MIPS/SGI volumes."
14477 msgstr ""
14478
14479 #. type: =item
14480 #: ../src/guestfs-actions.pod:5243 ../fish/guestfish-actions.pod:3476
14481 msgid "B<mac>"
14482 msgstr ""
14483
14484 #. type: textblock
14485 #: ../src/guestfs-actions.pod:5245 ../fish/guestfish-actions.pod:3478
14486 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
14487 msgstr ""
14488
14489 #. type: =item
14490 #: ../src/guestfs-actions.pod:5247 ../fish/guestfish-actions.pod:3480
14491 msgid "B<pc98>"
14492 msgstr ""
14493
14494 #. type: textblock
14495 #: ../src/guestfs-actions.pod:5249 ../fish/guestfish-actions.pod:3482
14496 msgid "NEC PC-98 format, common in Japan apparently."
14497 msgstr ""
14498
14499 #. type: =item
14500 #: ../src/guestfs-actions.pod:5251 ../fish/guestfish-actions.pod:3484
14501 msgid "B<sun>"
14502 msgstr ""
14503
14504 #. type: textblock
14505 #: ../src/guestfs-actions.pod:5253 ../fish/guestfish-actions.pod:3486
14506 msgid "Sun disk labels."
14507 msgstr ""
14508
14509 #. type: =head2
14510 #: ../src/guestfs-actions.pod:5261
14511 msgid "guestfs_part_list"
14512 msgstr ""
14513
14514 #. type: verbatim
14515 #: ../src/guestfs-actions.pod:5263
14516 #, no-wrap
14517 msgid ""
14518 " struct guestfs_partition_list *\n"
14519 " guestfs_part_list (guestfs_h *g,\n"
14520 "                    const char *device);\n"
14521 "\n"
14522 msgstr ""
14523
14524 #. type: textblock
14525 #: ../src/guestfs-actions.pod:5267 ../fish/guestfish-actions.pod:3494
14526 msgid ""
14527 "This command parses the partition table on C<device> and returns the list of "
14528 "partitions found."
14529 msgstr ""
14530
14531 #. type: textblock
14532 #: ../src/guestfs-actions.pod:5270 ../fish/guestfish-actions.pod:3497
14533 msgid "The fields in the returned structure are:"
14534 msgstr ""
14535
14536 #. type: =item
14537 #: ../src/guestfs-actions.pod:5274 ../fish/guestfish-actions.pod:3501
14538 msgid "B<part_num>"
14539 msgstr ""
14540
14541 #. type: textblock
14542 #: ../src/guestfs-actions.pod:5276 ../fish/guestfish-actions.pod:3503
14543 msgid "Partition number, counting from 1."
14544 msgstr ""
14545
14546 #. type: =item
14547 #: ../src/guestfs-actions.pod:5278 ../fish/guestfish-actions.pod:3505
14548 msgid "B<part_start>"
14549 msgstr ""
14550
14551 #. type: textblock
14552 #: ../src/guestfs-actions.pod:5280
14553 msgid ""
14554 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
14555 "the device's sector size, see C<guestfs_blockdev_getss>."
14556 msgstr ""
14557
14558 #. type: =item
14559 #: ../src/guestfs-actions.pod:5283 ../fish/guestfish-actions.pod:3510
14560 msgid "B<part_end>"
14561 msgstr ""
14562
14563 #. type: textblock
14564 #: ../src/guestfs-actions.pod:5285 ../fish/guestfish-actions.pod:3512
14565 msgid "End of the partition in bytes."
14566 msgstr ""
14567
14568 #. type: =item
14569 #: ../src/guestfs-actions.pod:5287 ../fish/guestfish-actions.pod:3514
14570 msgid "B<part_size>"
14571 msgstr ""
14572
14573 #. type: textblock
14574 #: ../src/guestfs-actions.pod:5289 ../fish/guestfish-actions.pod:3516
14575 msgid "Size of the partition in bytes."
14576 msgstr ""
14577
14578 #. type: textblock
14579 #: ../src/guestfs-actions.pod:5293
14580 msgid ""
14581 "This function returns a C<struct guestfs_partition_list *>, or NULL if there "
14582 "was an error.  I<The caller must call C<guestfs_free_partition_list> after "
14583 "use>."
14584 msgstr ""
14585
14586 #. type: =head2
14587 #: ../src/guestfs-actions.pod:5299
14588 msgid "guestfs_part_set_bootable"
14589 msgstr ""
14590
14591 #. type: verbatim
14592 #: ../src/guestfs-actions.pod:5301
14593 #, no-wrap
14594 msgid ""
14595 " int\n"
14596 " guestfs_part_set_bootable (guestfs_h *g,\n"
14597 "                            const char *device,\n"
14598 "                            int partnum,\n"
14599 "                            int bootable);\n"
14600 "\n"
14601 msgstr ""
14602
14603 #. type: textblock
14604 #: ../src/guestfs-actions.pod:5307 ../fish/guestfish-actions.pod:3524
14605 msgid ""
14606 "This sets the bootable flag on partition numbered C<partnum> on device "
14607 "C<device>.  Note that partitions are numbered from 1."
14608 msgstr ""
14609
14610 #. type: textblock
14611 #: ../src/guestfs-actions.pod:5310 ../fish/guestfish-actions.pod:3527
14612 msgid ""
14613 "The bootable flag is used by some operating systems (notably Windows) to "
14614 "determine which partition to boot from.  It is by no means universally "
14615 "recognized."
14616 msgstr ""
14617
14618 #. type: =head2
14619 #: ../src/guestfs-actions.pod:5318
14620 msgid "guestfs_part_set_mbr_id"
14621 msgstr ""
14622
14623 #. type: verbatim
14624 #: ../src/guestfs-actions.pod:5320
14625 #, no-wrap
14626 msgid ""
14627 " int\n"
14628 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
14629 "                          const char *device,\n"
14630 "                          int partnum,\n"
14631 "                          int idbyte);\n"
14632 "\n"
14633 msgstr ""
14634
14635 #. type: textblock
14636 #: ../src/guestfs-actions.pod:5326 ../fish/guestfish-actions.pod:3535
14637 msgid ""
14638 "Sets the MBR type byte (also known as the ID byte) of the numbered partition "
14639 "C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
14640 "documentation are in fact hexadecimal numbers, but usually documented "
14641 "without any leading \"0x\" which might be confusing."
14642 msgstr ""
14643
14644 #. type: =head2
14645 #: ../src/guestfs-actions.pod:5340
14646 msgid "guestfs_part_set_name"
14647 msgstr ""
14648
14649 #. type: verbatim
14650 #: ../src/guestfs-actions.pod:5342
14651 #, no-wrap
14652 msgid ""
14653 " int\n"
14654 " guestfs_part_set_name (guestfs_h *g,\n"
14655 "                        const char *device,\n"
14656 "                        int partnum,\n"
14657 "                        const char *name);\n"
14658 "\n"
14659 msgstr ""
14660
14661 #. type: textblock
14662 #: ../src/guestfs-actions.pod:5348 ../fish/guestfish-actions.pod:3549
14663 msgid ""
14664 "This sets the partition name on partition numbered C<partnum> on device "
14665 "C<device>.  Note that partitions are numbered from 1."
14666 msgstr ""
14667
14668 #. type: textblock
14669 #: ../src/guestfs-actions.pod:5351 ../fish/guestfish-actions.pod:3552
14670 msgid ""
14671 "The partition name can only be set on certain types of partition table.  "
14672 "This works on C<gpt> but not on C<mbr> partitions."
14673 msgstr ""
14674
14675 #. type: =head2
14676 #: ../src/guestfs-actions.pod:5358
14677 msgid "guestfs_part_to_dev"
14678 msgstr ""
14679
14680 #. type: verbatim
14681 #: ../src/guestfs-actions.pod:5360
14682 #, no-wrap
14683 msgid ""
14684 " char *\n"
14685 " guestfs_part_to_dev (guestfs_h *g,\n"
14686 "                      const char *partition);\n"
14687 "\n"
14688 msgstr ""
14689
14690 #. type: textblock
14691 #: ../src/guestfs-actions.pod:5364 ../fish/guestfish-actions.pod:3559
14692 msgid ""
14693 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
14694 "partition number, returning the device name (eg. \"/dev/sdb\")."
14695 msgstr ""
14696
14697 #. type: textblock
14698 #: ../src/guestfs-actions.pod:5368
14699 msgid ""
14700 "The named partition must exist, for example as a string returned from "
14701 "C<guestfs_list_partitions>."
14702 msgstr ""
14703
14704 #. type: =head2
14705 #: ../src/guestfs-actions.pod:5376
14706 msgid "guestfs_ping_daemon"
14707 msgstr ""
14708
14709 #. type: verbatim
14710 #: ../src/guestfs-actions.pod:5378
14711 #, no-wrap
14712 msgid ""
14713 " int\n"
14714 " guestfs_ping_daemon (guestfs_h *g);\n"
14715 "\n"
14716 msgstr ""
14717
14718 #. type: textblock
14719 #: ../src/guestfs-actions.pod:5381 ../fish/guestfish-actions.pod:3570
14720 msgid ""
14721 "This is a test probe into the guestfs daemon running inside the qemu "
14722 "subprocess.  Calling this function checks that the daemon responds to the "
14723 "ping message, without affecting the daemon or attached block device(s) in "
14724 "any other way."
14725 msgstr ""
14726
14727 #. type: =head2
14728 #: ../src/guestfs-actions.pod:5390
14729 msgid "guestfs_pread"
14730 msgstr ""
14731
14732 #. type: verbatim
14733 #: ../src/guestfs-actions.pod:5392
14734 #, no-wrap
14735 msgid ""
14736 " char *\n"
14737 " guestfs_pread (guestfs_h *g,\n"
14738 "                const char *path,\n"
14739 "                int count,\n"
14740 "                int64_t offset,\n"
14741 "                size_t *size_r);\n"
14742 "\n"
14743 msgstr ""
14744
14745 #. type: textblock
14746 #: ../src/guestfs-actions.pod:5399 ../fish/guestfish-actions.pod:3579
14747 msgid ""
14748 "This command lets you read part of a file.  It reads C<count> bytes of the "
14749 "file, starting at C<offset>, from file C<path>."
14750 msgstr ""
14751
14752 #. type: textblock
14753 #: ../src/guestfs-actions.pod:5402 ../src/guestfs-actions.pod:5428 ../fish/guestfish-actions.pod:3582 ../fish/guestfish-actions.pod:3597
14754 msgid ""
14755 "This may read fewer bytes than requested.  For further details see the "
14756 "L<pread(2)> system call."
14757 msgstr ""
14758
14759 #. type: textblock
14760 #: ../src/guestfs-actions.pod:5405
14761 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
14762 msgstr ""
14763
14764 #. type: =head2
14765 #: ../src/guestfs-actions.pod:5416
14766 msgid "guestfs_pread_device"
14767 msgstr ""
14768
14769 #. type: verbatim
14770 #: ../src/guestfs-actions.pod:5418
14771 #, no-wrap
14772 msgid ""
14773 " char *\n"
14774 " guestfs_pread_device (guestfs_h *g,\n"
14775 "                       const char *device,\n"
14776 "                       int count,\n"
14777 "                       int64_t offset,\n"
14778 "                       size_t *size_r);\n"
14779 "\n"
14780 msgstr ""
14781
14782 #. type: textblock
14783 #: ../src/guestfs-actions.pod:5425 ../fish/guestfish-actions.pod:3594
14784 msgid ""
14785 "This command lets you read part of a file.  It reads C<count> bytes of "
14786 "C<device>, starting at C<offset>."
14787 msgstr ""
14788
14789 #. type: textblock
14790 #: ../src/guestfs-actions.pod:5431
14791 msgid "See also C<guestfs_pread>."
14792 msgstr ""
14793
14794 #. type: textblock
14795 #: ../src/guestfs-actions.pod:5440
14796 msgid "(Added in 1.5.21)"
14797 msgstr ""
14798
14799 #. type: =head2
14800 #: ../src/guestfs-actions.pod:5442
14801 msgid "guestfs_pvcreate"
14802 msgstr ""
14803
14804 #. type: verbatim
14805 #: ../src/guestfs-actions.pod:5444
14806 #, no-wrap
14807 msgid ""
14808 " int\n"
14809 " guestfs_pvcreate (guestfs_h *g,\n"
14810 "                   const char *device);\n"
14811 "\n"
14812 msgstr ""
14813
14814 #. type: textblock
14815 #: ../src/guestfs-actions.pod:5448 ../fish/guestfish-actions.pod:3609
14816 msgid ""
14817 "This creates an LVM physical volume on the named C<device>, where C<device> "
14818 "should usually be a partition name such as C</dev/sda1>."
14819 msgstr ""
14820
14821 #. type: =head2
14822 #: ../src/guestfs-actions.pod:5456
14823 msgid "guestfs_pvremove"
14824 msgstr ""
14825
14826 #. type: verbatim
14827 #: ../src/guestfs-actions.pod:5458
14828 #, no-wrap
14829 msgid ""
14830 " int\n"
14831 " guestfs_pvremove (guestfs_h *g,\n"
14832 "                   const char *device);\n"
14833 "\n"
14834 msgstr ""
14835
14836 #. type: textblock
14837 #: ../src/guestfs-actions.pod:5462 ../fish/guestfish-actions.pod:3617
14838 msgid ""
14839 "This wipes a physical volume C<device> so that LVM will no longer recognise "
14840 "it."
14841 msgstr ""
14842
14843 #. type: textblock
14844 #: ../src/guestfs-actions.pod:5465 ../fish/guestfish-actions.pod:3620
14845 msgid ""
14846 "The implementation uses the C<pvremove> command which refuses to wipe "
14847 "physical volumes that contain any volume groups, so you have to remove those "
14848 "first."
14849 msgstr ""
14850
14851 #. type: =head2
14852 #: ../src/guestfs-actions.pod:5473
14853 msgid "guestfs_pvresize"
14854 msgstr ""
14855
14856 #. type: verbatim
14857 #: ../src/guestfs-actions.pod:5475
14858 #, no-wrap
14859 msgid ""
14860 " int\n"
14861 " guestfs_pvresize (guestfs_h *g,\n"
14862 "                   const char *device);\n"
14863 "\n"
14864 msgstr ""
14865
14866 #. type: textblock
14867 #: ../src/guestfs-actions.pod:5479 ../fish/guestfish-actions.pod:3628
14868 msgid ""
14869 "This resizes (expands or shrinks) an existing LVM physical volume to match "
14870 "the new size of the underlying device."
14871 msgstr ""
14872
14873 #. type: =head2
14874 #: ../src/guestfs-actions.pod:5486
14875 msgid "guestfs_pvresize_size"
14876 msgstr ""
14877
14878 #. type: verbatim
14879 #: ../src/guestfs-actions.pod:5488
14880 #, no-wrap
14881 msgid ""
14882 " int\n"
14883 " guestfs_pvresize_size (guestfs_h *g,\n"
14884 "                        const char *device,\n"
14885 "                        int64_t size);\n"
14886 "\n"
14887 msgstr ""
14888
14889 #. type: textblock
14890 #: ../src/guestfs-actions.pod:5493
14891 msgid ""
14892 "This command is the same as C<guestfs_pvresize> except that it allows you to "
14893 "specify the new size (in bytes) explicitly."
14894 msgstr ""
14895
14896 #. type: =head2
14897 #: ../src/guestfs-actions.pod:5500
14898 msgid "guestfs_pvs"
14899 msgstr ""
14900
14901 #. type: verbatim
14902 #: ../src/guestfs-actions.pod:5502
14903 #, no-wrap
14904 msgid ""
14905 " char **\n"
14906 " guestfs_pvs (guestfs_h *g);\n"
14907 "\n"
14908 msgstr ""
14909
14910 #. type: textblock
14911 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3642
14912 msgid ""
14913 "List all the physical volumes detected.  This is the equivalent of the "
14914 "L<pvs(8)> command."
14915 msgstr ""
14916
14917 #. type: textblock
14918 #: ../src/guestfs-actions.pod:5508 ../fish/guestfish-actions.pod:3645
14919 msgid ""
14920 "This returns a list of just the device names that contain PVs "
14921 "(eg. C</dev/sda2>)."
14922 msgstr ""
14923
14924 #. type: textblock
14925 #: ../src/guestfs-actions.pod:5511
14926 msgid "See also C<guestfs_pvs_full>."
14927 msgstr ""
14928
14929 #. type: =head2
14930 #: ../src/guestfs-actions.pod:5519
14931 msgid "guestfs_pvs_full"
14932 msgstr ""
14933
14934 #. type: verbatim
14935 #: ../src/guestfs-actions.pod:5521
14936 #, no-wrap
14937 msgid ""
14938 " struct guestfs_lvm_pv_list *\n"
14939 " guestfs_pvs_full (guestfs_h *g);\n"
14940 "\n"
14941 msgstr ""
14942
14943 #. type: textblock
14944 #: ../src/guestfs-actions.pod:5524 ../fish/guestfish-actions.pod:3654
14945 msgid ""
14946 "List all the physical volumes detected.  This is the equivalent of the "
14947 "L<pvs(8)> command.  The \"full\" version includes all fields."
14948 msgstr ""
14949
14950 #. type: textblock
14951 #: ../src/guestfs-actions.pod:5527
14952 msgid ""
14953 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
14954 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
14955 "use>."
14956 msgstr ""
14957
14958 #. type: =head2
14959 #: ../src/guestfs-actions.pod:5533
14960 msgid "guestfs_pvuuid"
14961 msgstr ""
14962
14963 #. type: verbatim
14964 #: ../src/guestfs-actions.pod:5535
14965 #, no-wrap
14966 msgid ""
14967 " char *\n"
14968 " guestfs_pvuuid (guestfs_h *g,\n"
14969 "                 const char *device);\n"
14970 "\n"
14971 msgstr ""
14972
14973 #. type: textblock
14974 #: ../src/guestfs-actions.pod:5539 ../fish/guestfish-actions.pod:3661
14975 msgid "This command returns the UUID of the LVM PV C<device>."
14976 msgstr ""
14977
14978 #. type: =head2
14979 #: ../src/guestfs-actions.pod:5546
14980 msgid "guestfs_pwrite"
14981 msgstr ""
14982
14983 #. type: verbatim
14984 #: ../src/guestfs-actions.pod:5548
14985 #, no-wrap
14986 msgid ""
14987 " int\n"
14988 " guestfs_pwrite (guestfs_h *g,\n"
14989 "                 const char *path,\n"
14990 "                 const char *content,\n"
14991 "                 size_t content_size,\n"
14992 "                 int64_t offset);\n"
14993 "\n"
14994 msgstr ""
14995
14996 #. type: textblock
14997 #: ../src/guestfs-actions.pod:5555 ../fish/guestfish-actions.pod:3667
14998 msgid ""
14999 "This command writes to part of a file.  It writes the data buffer C<content> "
15000 "to the file C<path> starting at offset C<offset>."
15001 msgstr ""
15002
15003 #. type: textblock
15004 #: ../src/guestfs-actions.pod:5558 ../fish/guestfish-actions.pod:3670
15005 msgid ""
15006 "This command implements the L<pwrite(2)> system call, and like that system "
15007 "call it may not write the full data requested.  The return value is the "
15008 "number of bytes that were actually written to the file.  This could even be "
15009 "0, although short writes are unlikely for regular files in ordinary "
15010 "circumstances."
15011 msgstr ""
15012
15013 #. type: textblock
15014 #: ../src/guestfs-actions.pod:5564
15015 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15016 msgstr ""
15017
15018 #. type: =head2
15019 #: ../src/guestfs-actions.pod:5573
15020 msgid "guestfs_pwrite_device"
15021 msgstr ""
15022
15023 #. type: verbatim
15024 #: ../src/guestfs-actions.pod:5575
15025 #, no-wrap
15026 msgid ""
15027 " int\n"
15028 " guestfs_pwrite_device (guestfs_h *g,\n"
15029 "                        const char *device,\n"
15030 "                        const char *content,\n"
15031 "                        size_t content_size,\n"
15032 "                        int64_t offset);\n"
15033 "\n"
15034 msgstr ""
15035
15036 #. type: textblock
15037 #: ../src/guestfs-actions.pod:5582 ../fish/guestfish-actions.pod:3685
15038 msgid ""
15039 "This command writes to part of a device.  It writes the data buffer "
15040 "C<content> to C<device> starting at offset C<offset>."
15041 msgstr ""
15042
15043 #. type: textblock
15044 #: ../src/guestfs-actions.pod:5585 ../fish/guestfish-actions.pod:3688
15045 msgid ""
15046 "This command implements the L<pwrite(2)> system call, and like that system "
15047 "call it may not write the full data requested (although short writes to disk "
15048 "devices and partitions are probably impossible with standard Linux kernels)."
15049 msgstr ""
15050
15051 #. type: textblock
15052 #: ../src/guestfs-actions.pod:5590
15053 msgid "See also C<guestfs_pwrite>."
15054 msgstr ""
15055
15056 #. type: textblock
15057 #: ../src/guestfs-actions.pod:5597
15058 msgid "(Added in 1.5.20)"
15059 msgstr ""
15060
15061 #. type: =head2
15062 #: ../src/guestfs-actions.pod:5599
15063 msgid "guestfs_read_file"
15064 msgstr ""
15065
15066 #. type: verbatim
15067 #: ../src/guestfs-actions.pod:5601
15068 #, no-wrap
15069 msgid ""
15070 " char *\n"
15071 " guestfs_read_file (guestfs_h *g,\n"
15072 "                    const char *path,\n"
15073 "                    size_t *size_r);\n"
15074 "\n"
15075 msgstr ""
15076
15077 #. type: textblock
15078 #: ../src/guestfs-actions.pod:5606 ../fish/guestfish-actions.pod:3702
15079 msgid "This calls returns the contents of the file C<path> as a buffer."
15080 msgstr ""
15081
15082 #. type: textblock
15083 #: ../src/guestfs-actions.pod:5609
15084 msgid ""
15085 "Unlike C<guestfs_cat>, this function can correctly handle files that contain "
15086 "embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
15087 "function is limited in the total size of file that can be handled."
15088 msgstr ""
15089
15090 #. type: textblock
15091 #: ../src/guestfs-actions.pod:5621
15092 msgid "(Added in 1.0.63)"
15093 msgstr ""
15094
15095 #. type: =head2
15096 #: ../src/guestfs-actions.pod:5623
15097 msgid "guestfs_read_lines"
15098 msgstr ""
15099
15100 #. type: verbatim
15101 #: ../src/guestfs-actions.pod:5625
15102 #, no-wrap
15103 msgid ""
15104 " char **\n"
15105 " guestfs_read_lines (guestfs_h *g,\n"
15106 "                     const char *path);\n"
15107 "\n"
15108 msgstr ""
15109
15110 #. type: textblock
15111 #: ../src/guestfs-actions.pod:5631 ../fish/guestfish-actions.pod:3719
15112 msgid ""
15113 "The file contents are returned as a list of lines.  Trailing C<LF> and "
15114 "C<CRLF> character sequences are I<not> returned."
15115 msgstr ""
15116
15117 #. type: textblock
15118 #: ../src/guestfs-actions.pod:5634
15119 msgid ""
15120 "Note that this function cannot correctly handle binary files (specifically, "
15121 "files containing C<\\0> character which is treated as end of line).  For "
15122 "those you need to use the C<guestfs_read_file> function which has a more "
15123 "complex interface."
15124 msgstr ""
15125
15126 #. type: =head2
15127 #: ../src/guestfs-actions.pod:5645
15128 msgid "guestfs_readdir"
15129 msgstr ""
15130
15131 #. type: verbatim
15132 #: ../src/guestfs-actions.pod:5647
15133 #, no-wrap
15134 msgid ""
15135 " struct guestfs_dirent_list *\n"
15136 " guestfs_readdir (guestfs_h *g,\n"
15137 "                  const char *dir);\n"
15138 "\n"
15139 msgstr ""
15140
15141 #. type: textblock
15142 #: ../src/guestfs-actions.pod:5651 ../fish/guestfish-actions.pod:3731
15143 msgid "This returns the list of directory entries in directory C<dir>."
15144 msgstr ""
15145
15146 #. type: textblock
15147 #: ../src/guestfs-actions.pod:5653 ../fish/guestfish-actions.pod:3733
15148 msgid ""
15149 "All entries in the directory are returned, including C<.> and C<..>.  The "
15150 "entries are I<not> sorted, but returned in the same order as the underlying "
15151 "filesystem."
15152 msgstr ""
15153
15154 #. type: textblock
15155 #: ../src/guestfs-actions.pod:5657 ../fish/guestfish-actions.pod:3737
15156 msgid ""
15157 "Also this call returns basic file type information about each file.  The "
15158 "C<ftyp> field will contain one of the following characters:"
15159 msgstr ""
15160
15161 #. type: =item
15162 #: ../src/guestfs-actions.pod:5662 ../fish/guestfish-actions.pod:3742
15163 msgid "'b'"
15164 msgstr ""
15165
15166 #. type: textblock
15167 #: ../src/guestfs-actions.pod:5664 ../fish/guestfish-actions.pod:3744
15168 msgid "Block special"
15169 msgstr ""
15170
15171 #. type: =item
15172 #: ../src/guestfs-actions.pod:5666 ../fish/guestfish-actions.pod:3746
15173 msgid "'c'"
15174 msgstr ""
15175
15176 #. type: textblock
15177 #: ../src/guestfs-actions.pod:5668 ../fish/guestfish-actions.pod:3748
15178 msgid "Char special"
15179 msgstr ""
15180
15181 #. type: =item
15182 #: ../src/guestfs-actions.pod:5670 ../fish/guestfish-actions.pod:3750
15183 msgid "'d'"
15184 msgstr ""
15185
15186 #. type: textblock
15187 #: ../src/guestfs-actions.pod:5672 ../fish/guestfish-actions.pod:3752
15188 msgid "Directory"
15189 msgstr ""
15190
15191 #. type: =item
15192 #: ../src/guestfs-actions.pod:5674 ../fish/guestfish-actions.pod:3754
15193 msgid "'f'"
15194 msgstr ""
15195
15196 #. type: textblock
15197 #: ../src/guestfs-actions.pod:5676 ../fish/guestfish-actions.pod:3756
15198 msgid "FIFO (named pipe)"
15199 msgstr ""
15200
15201 #. type: =item
15202 #: ../src/guestfs-actions.pod:5678 ../fish/guestfish-actions.pod:3758
15203 msgid "'l'"
15204 msgstr ""
15205
15206 #. type: textblock
15207 #: ../src/guestfs-actions.pod:5680 ../fish/guestfish-actions.pod:3760
15208 msgid "Symbolic link"
15209 msgstr ""
15210
15211 #. type: =item
15212 #: ../src/guestfs-actions.pod:5682 ../fish/guestfish-actions.pod:3762
15213 msgid "'r'"
15214 msgstr ""
15215
15216 #. type: textblock
15217 #: ../src/guestfs-actions.pod:5684 ../fish/guestfish-actions.pod:3764
15218 msgid "Regular file"
15219 msgstr ""
15220
15221 #. type: =item
15222 #: ../src/guestfs-actions.pod:5686 ../fish/guestfish-actions.pod:3766
15223 msgid "'s'"
15224 msgstr ""
15225
15226 #. type: textblock
15227 #: ../src/guestfs-actions.pod:5688 ../fish/guestfish-actions.pod:3768
15228 msgid "Socket"
15229 msgstr ""
15230
15231 #. type: =item
15232 #: ../src/guestfs-actions.pod:5690 ../fish/guestfish-actions.pod:3770
15233 msgid "'u'"
15234 msgstr ""
15235
15236 #. type: textblock
15237 #: ../src/guestfs-actions.pod:5692 ../fish/guestfish-actions.pod:3772
15238 msgid "Unknown file type"
15239 msgstr ""
15240
15241 #. type: =item
15242 #: ../src/guestfs-actions.pod:5694 ../fish/guestfish-actions.pod:3774
15243 msgid "'?'"
15244 msgstr ""
15245
15246 #. type: textblock
15247 #: ../src/guestfs-actions.pod:5696 ../fish/guestfish-actions.pod:3776
15248 msgid "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
15249 msgstr ""
15250
15251 #. type: textblock
15252 #: ../src/guestfs-actions.pod:5701
15253 msgid ""
15254 "This function is primarily intended for use by programs.  To get a simple "
15255 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
15256 "consumption, use C<guestfs_ll>."
15257 msgstr ""
15258
15259 #. type: textblock
15260 #: ../src/guestfs-actions.pod:5705
15261 msgid ""
15262 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
15263 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
15264 "use>."
15265 msgstr ""
15266
15267 #. type: =head2
15268 #: ../src/guestfs-actions.pod:5711
15269 msgid "guestfs_readlink"
15270 msgstr ""
15271
15272 #. type: verbatim
15273 #: ../src/guestfs-actions.pod:5713
15274 #, no-wrap
15275 msgid ""
15276 " char *\n"
15277 " guestfs_readlink (guestfs_h *g,\n"
15278 "                   const char *path);\n"
15279 "\n"
15280 msgstr ""
15281
15282 #. type: textblock
15283 #: ../src/guestfs-actions.pod:5717 ../fish/guestfish-actions.pod:3789
15284 msgid "This command reads the target of a symbolic link."
15285 msgstr ""
15286
15287 #. type: =head2
15288 #: ../src/guestfs-actions.pod:5724
15289 msgid "guestfs_readlinklist"
15290 msgstr ""
15291
15292 #. type: verbatim
15293 #: ../src/guestfs-actions.pod:5726
15294 #, no-wrap
15295 msgid ""
15296 " char **\n"
15297 " guestfs_readlinklist (guestfs_h *g,\n"
15298 "                       const char *path,\n"
15299 "                       char *const *names);\n"
15300 "\n"
15301 msgstr ""
15302
15303 #. type: textblock
15304 #: ../src/guestfs-actions.pod:5731 ../fish/guestfish-actions.pod:3795
15305 msgid ""
15306 "This call allows you to do a C<readlink> operation on multiple files, where "
15307 "all files are in the directory C<path>.  C<names> is the list of files from "
15308 "this directory."
15309 msgstr ""
15310
15311 #. type: textblock
15312 #: ../src/guestfs-actions.pod:5735 ../fish/guestfish-actions.pod:3799
15313 msgid ""
15314 "On return you get a list of strings, with a one-to-one correspondence to the "
15315 "C<names> list.  Each string is the value of the symbolic link."
15316 msgstr ""
15317
15318 #. type: textblock
15319 #: ../src/guestfs-actions.pod:5739 ../fish/guestfish-actions.pod:3803
15320 msgid ""
15321 "If the C<readlink(2)> operation fails on any name, then the corresponding "
15322 "result string is the empty string C<\"\">.  However the whole operation is "
15323 "completed even if there were C<readlink(2)> errors, and so you can call this "
15324 "function with names where you don't know if they are symbolic links already "
15325 "(albeit slightly less efficient)."
15326 msgstr ""
15327
15328 #. type: textblock
15329 #: ../src/guestfs-actions.pod:5746 ../fish/guestfish-actions.pod:3810
15330 msgid ""
15331 "This call is intended for programs that want to efficiently list a directory "
15332 "contents without making many round-trips.  Very long directory listings "
15333 "might cause the protocol message size to be exceeded, causing this call to "
15334 "fail.  The caller must split up such requests into smaller groups of names."
15335 msgstr ""
15336
15337 #. type: =head2
15338 #: ../src/guestfs-actions.pod:5759
15339 msgid "guestfs_realpath"
15340 msgstr ""
15341
15342 #. type: verbatim
15343 #: ../src/guestfs-actions.pod:5761
15344 #, no-wrap
15345 msgid ""
15346 " char *\n"
15347 " guestfs_realpath (guestfs_h *g,\n"
15348 "                   const char *path);\n"
15349 "\n"
15350 msgstr ""
15351
15352 #. type: textblock
15353 #: ../src/guestfs-actions.pod:5765 ../fish/guestfish-actions.pod:3821
15354 msgid ""
15355 "Return the canonicalized absolute pathname of C<path>.  The returned path "
15356 "has no C<.>, C<..> or symbolic link path elements."
15357 msgstr ""
15358
15359 #. type: =head2
15360 #: ../src/guestfs-actions.pod:5773
15361 msgid "guestfs_removexattr"
15362 msgstr ""
15363
15364 #. type: verbatim
15365 #: ../src/guestfs-actions.pod:5775
15366 #, no-wrap
15367 msgid ""
15368 " int\n"
15369 " guestfs_removexattr (guestfs_h *g,\n"
15370 "                      const char *xattr,\n"
15371 "                      const char *path);\n"
15372 "\n"
15373 msgstr ""
15374
15375 #. type: textblock
15376 #: ../src/guestfs-actions.pod:5780 ../fish/guestfish-actions.pod:3828
15377 msgid "This call removes the extended attribute named C<xattr> of the file C<path>."
15378 msgstr ""
15379
15380 #. type: textblock
15381 #: ../src/guestfs-actions.pod:5783
15382 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
15383 msgstr ""
15384
15385 #. type: =head2
15386 #: ../src/guestfs-actions.pod:5789
15387 msgid "guestfs_resize2fs"
15388 msgstr ""
15389
15390 #. type: verbatim
15391 #: ../src/guestfs-actions.pod:5791
15392 #, no-wrap
15393 msgid ""
15394 " int\n"
15395 " guestfs_resize2fs (guestfs_h *g,\n"
15396 "                    const char *device);\n"
15397 "\n"
15398 msgstr ""
15399
15400 #. type: textblock
15401 #: ../src/guestfs-actions.pod:5795 ../fish/guestfish-actions.pod:3837
15402 msgid ""
15403 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
15404 "underlying device."
15405 msgstr ""
15406
15407 #. type: textblock
15408 #: ../src/guestfs-actions.pod:5798
15409 msgid ""
15410 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
15411 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
15412 "sometimes gives an error about this and sometimes not.  In any case, it is "
15413 "always safe to call C<guestfs_e2fsck_f> before calling this function."
15414 msgstr ""
15415
15416 #. type: =head2
15417 #: ../src/guestfs-actions.pod:5808
15418 msgid "guestfs_resize2fs_M"
15419 msgstr ""
15420
15421 #. type: verbatim
15422 #: ../src/guestfs-actions.pod:5810
15423 #, no-wrap
15424 msgid ""
15425 " int\n"
15426 " guestfs_resize2fs_M (guestfs_h *g,\n"
15427 "                      const char *device);\n"
15428 "\n"
15429 msgstr ""
15430
15431 #. type: textblock
15432 #: ../src/guestfs-actions.pod:5814
15433 msgid ""
15434 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
15435 "resized to its minimum size.  This works like the I<-M> option to the "
15436 "C<resize2fs> command."
15437 msgstr ""
15438
15439 #. type: textblock
15440 #: ../src/guestfs-actions.pod:5818
15441 msgid ""
15442 "To get the resulting size of the filesystem you should call "
15443 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
15444 "These two numbers, multiplied together, give the resulting size of the "
15445 "minimal filesystem in bytes."
15446 msgstr ""
15447
15448 #. type: =head2
15449 #: ../src/guestfs-actions.pod:5827
15450 msgid "guestfs_resize2fs_size"
15451 msgstr ""
15452
15453 #. type: verbatim
15454 #: ../src/guestfs-actions.pod:5829
15455 #, no-wrap
15456 msgid ""
15457 " int\n"
15458 " guestfs_resize2fs_size (guestfs_h *g,\n"
15459 "                         const char *device,\n"
15460 "                         int64_t size);\n"
15461 "\n"
15462 msgstr ""
15463
15464 #. type: textblock
15465 #: ../src/guestfs-actions.pod:5834
15466 msgid ""
15467 "This command is the same as C<guestfs_resize2fs> except that it allows you "
15468 "to specify the new size (in bytes) explicitly."
15469 msgstr ""
15470
15471 #. type: =head2
15472 #: ../src/guestfs-actions.pod:5841
15473 msgid "guestfs_rm"
15474 msgstr ""
15475
15476 #. type: verbatim
15477 #: ../src/guestfs-actions.pod:5843
15478 #, no-wrap
15479 msgid ""
15480 " int\n"
15481 " guestfs_rm (guestfs_h *g,\n"
15482 "             const char *path);\n"
15483 "\n"
15484 msgstr ""
15485
15486 #. type: textblock
15487 #: ../src/guestfs-actions.pod:5847 ../fish/guestfish-actions.pod:3870
15488 msgid "Remove the single file C<path>."
15489 msgstr ""
15490
15491 #. type: =head2
15492 #: ../src/guestfs-actions.pod:5853
15493 msgid "guestfs_rm_rf"
15494 msgstr ""
15495
15496 #. type: verbatim
15497 #: ../src/guestfs-actions.pod:5855
15498 #, no-wrap
15499 msgid ""
15500 " int\n"
15501 " guestfs_rm_rf (guestfs_h *g,\n"
15502 "                const char *path);\n"
15503 "\n"
15504 msgstr ""
15505
15506 #. type: textblock
15507 #: ../src/guestfs-actions.pod:5859 ../fish/guestfish-actions.pod:3876
15508 msgid ""
15509 "Remove the file or directory C<path>, recursively removing the contents if "
15510 "its a directory.  This is like the C<rm -rf> shell command."
15511 msgstr ""
15512
15513 #. type: =head2
15514 #: ../src/guestfs-actions.pod:5867
15515 msgid "guestfs_rmdir"
15516 msgstr ""
15517
15518 #. type: verbatim
15519 #: ../src/guestfs-actions.pod:5869
15520 #, no-wrap
15521 msgid ""
15522 " int\n"
15523 " guestfs_rmdir (guestfs_h *g,\n"
15524 "                const char *path);\n"
15525 "\n"
15526 msgstr ""
15527
15528 #. type: textblock
15529 #: ../src/guestfs-actions.pod:5873 ../fish/guestfish-actions.pod:3884
15530 msgid "Remove the single directory C<path>."
15531 msgstr ""
15532
15533 #. type: =head2
15534 #: ../src/guestfs-actions.pod:5879
15535 msgid "guestfs_rmmountpoint"
15536 msgstr ""
15537
15538 #. type: verbatim
15539 #: ../src/guestfs-actions.pod:5881
15540 #, no-wrap
15541 msgid ""
15542 " int\n"
15543 " guestfs_rmmountpoint (guestfs_h *g,\n"
15544 "                       const char *exemptpath);\n"
15545 "\n"
15546 msgstr ""
15547
15548 #. type: textblock
15549 #: ../src/guestfs-actions.pod:5885
15550 msgid ""
15551 "This calls removes a mountpoint that was previously created with "
15552 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
15553 msgstr ""
15554
15555 #. type: =head2
15556 #: ../src/guestfs-actions.pod:5893
15557 msgid "guestfs_scrub_device"
15558 msgstr ""
15559
15560 #. type: verbatim
15561 #: ../src/guestfs-actions.pod:5895
15562 #, no-wrap
15563 msgid ""
15564 " int\n"
15565 " guestfs_scrub_device (guestfs_h *g,\n"
15566 "                       const char *device);\n"
15567 "\n"
15568 msgstr ""
15569
15570 #. type: textblock
15571 #: ../src/guestfs-actions.pod:5899 ../fish/guestfish-actions.pod:3898
15572 msgid ""
15573 "This command writes patterns over C<device> to make data retrieval more "
15574 "difficult."
15575 msgstr ""
15576
15577 #. type: textblock
15578 #: ../src/guestfs-actions.pod:5902 ../src/guestfs-actions.pod:5923 ../src/guestfs-actions.pod:5942 ../fish/guestfish-actions.pod:3901 ../fish/guestfish-actions.pod:3916 ../fish/guestfish-actions.pod:3929
15579 msgid ""
15580 "It is an interface to the L<scrub(1)> program.  See that manual page for "
15581 "more details."
15582 msgstr ""
15583
15584 #. type: textblock
15585 #: ../src/guestfs-actions.pod:5910 ../src/guestfs-actions.pod:5928 ../src/guestfs-actions.pod:5947
15586 msgid "(Added in 1.0.52)"
15587 msgstr ""
15588
15589 #. type: =head2
15590 #: ../src/guestfs-actions.pod:5912
15591 msgid "guestfs_scrub_file"
15592 msgstr ""
15593
15594 #. type: verbatim
15595 #: ../src/guestfs-actions.pod:5914
15596 #, no-wrap
15597 msgid ""
15598 " int\n"
15599 " guestfs_scrub_file (guestfs_h *g,\n"
15600 "                     const char *file);\n"
15601 "\n"
15602 msgstr ""
15603
15604 #. type: textblock
15605 #: ../src/guestfs-actions.pod:5918 ../fish/guestfish-actions.pod:3911
15606 msgid ""
15607 "This command writes patterns over a file to make data retrieval more "
15608 "difficult."
15609 msgstr ""
15610
15611 #. type: textblock
15612 #: ../src/guestfs-actions.pod:5921 ../fish/guestfish-actions.pod:3914
15613 msgid "The file is I<removed> after scrubbing."
15614 msgstr ""
15615
15616 #. type: =head2
15617 #: ../src/guestfs-actions.pod:5930
15618 msgid "guestfs_scrub_freespace"
15619 msgstr ""
15620
15621 #. type: verbatim
15622 #: ../src/guestfs-actions.pod:5932
15623 #, no-wrap
15624 msgid ""
15625 " int\n"
15626 " guestfs_scrub_freespace (guestfs_h *g,\n"
15627 "                          const char *dir);\n"
15628 "\n"
15629 msgstr ""
15630
15631 #. type: textblock
15632 #: ../src/guestfs-actions.pod:5936
15633 msgid ""
15634 "This command creates the directory C<dir> and then fills it with files until "
15635 "the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
15636 "and deletes them.  The intention is to scrub any free space on the partition "
15637 "containing C<dir>."
15638 msgstr ""
15639
15640 #. type: =head2
15641 #: ../src/guestfs-actions.pod:5949
15642 msgid "guestfs_set_append"
15643 msgstr ""
15644
15645 #. type: verbatim
15646 #: ../src/guestfs-actions.pod:5951
15647 #, no-wrap
15648 msgid ""
15649 " int\n"
15650 " guestfs_set_append (guestfs_h *g,\n"
15651 "                     const char *append);\n"
15652 "\n"
15653 msgstr ""
15654
15655 #. type: textblock
15656 #: ../src/guestfs-actions.pod:5955 ../fish/guestfish-actions.pod:3938
15657 msgid ""
15658 "This function is used to add additional options to the guest kernel command "
15659 "line."
15660 msgstr ""
15661
15662 #. type: textblock
15663 #: ../src/guestfs-actions.pod:5958 ../fish/guestfish-actions.pod:3941
15664 msgid ""
15665 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
15666 "environment variable."
15667 msgstr ""
15668
15669 #. type: textblock
15670 #: ../src/guestfs-actions.pod:5961 ../fish/guestfish-actions.pod:3944
15671 msgid ""
15672 "Setting C<append> to C<NULL> means I<no> additional options are passed "
15673 "(libguestfs always adds a few of its own)."
15674 msgstr ""
15675
15676 #. type: =head2
15677 #: ../src/guestfs-actions.pod:5968
15678 msgid "guestfs_set_attach_method"
15679 msgstr ""
15680
15681 #. type: verbatim
15682 #: ../src/guestfs-actions.pod:5970
15683 #, no-wrap
15684 msgid ""
15685 " int\n"
15686 " guestfs_set_attach_method (guestfs_h *g,\n"
15687 "                            const char *attachmethod);\n"
15688 "\n"
15689 msgstr ""
15690
15691 #. type: textblock
15692 #: ../src/guestfs-actions.pod:5974 ../fish/guestfish-actions.pod:3953
15693 msgid ""
15694 "Set the method that libguestfs uses to connect to the back end guestfsd "
15695 "daemon.  Possible methods are:"
15696 msgstr ""
15697
15698 #. type: textblock
15699 #: ../src/guestfs-actions.pod:5981 ../fish/guestfish-actions.pod:3960
15700 msgid ""
15701 "Launch an appliance and connect to it.  This is the ordinary method and the "
15702 "default."
15703 msgstr ""
15704
15705 #. type: =item
15706 #: ../src/guestfs-actions.pod:5984 ../fish/guestfish-actions.pod:3963
15707 msgid "C<unix:I<path>>"
15708 msgstr ""
15709
15710 #. type: textblock
15711 #: ../src/guestfs-actions.pod:5986 ../fish/guestfish-actions.pod:3965
15712 msgid "Connect to the Unix domain socket I<path>."
15713 msgstr ""
15714
15715 #. type: textblock
15716 #: ../src/guestfs-actions.pod:5988 ../fish/guestfish-actions.pod:3967
15717 msgid ""
15718 "This method lets you connect to an existing daemon or (using virtio-serial) "
15719 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
15720 "RUNNING DAEMONS>."
15721 msgstr ""
15722
15723 #. type: =head2
15724 #: ../src/guestfs-actions.pod:5998
15725 msgid "guestfs_set_autosync"
15726 msgstr ""
15727
15728 #. type: verbatim
15729 #: ../src/guestfs-actions.pod:6000
15730 #, no-wrap
15731 msgid ""
15732 " int\n"
15733 " guestfs_set_autosync (guestfs_h *g,\n"
15734 "                       int autosync);\n"
15735 "\n"
15736 msgstr ""
15737
15738 #. type: textblock
15739 #: ../src/guestfs-actions.pod:6004 ../fish/guestfish-actions.pod:3979
15740 msgid ""
15741 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
15742 "effort attempt to make filesystems consistent and synchronized when the "
15743 "handle is closed (also if the program exits without closing handles)."
15744 msgstr ""
15745
15746 #. type: textblock
15747 #: ../src/guestfs-actions.pod:6009 ../fish/guestfish-actions.pod:3984
15748 msgid ""
15749 "This is enabled by default (since libguestfs 1.5.24, previously it was "
15750 "disabled by default)."
15751 msgstr ""
15752
15753 #. type: =head2
15754 #: ../src/guestfs-actions.pod:6016
15755 msgid "guestfs_set_direct"
15756 msgstr ""
15757
15758 #. type: verbatim
15759 #: ../src/guestfs-actions.pod:6018
15760 #, no-wrap
15761 msgid ""
15762 " int\n"
15763 " guestfs_set_direct (guestfs_h *g,\n"
15764 "                     int direct);\n"
15765 "\n"
15766 msgstr ""
15767
15768 #. type: textblock
15769 #: ../src/guestfs-actions.pod:6022 ../fish/guestfish-actions.pod:3993
15770 msgid ""
15771 "If the direct appliance mode flag is enabled, then stdin and stdout are "
15772 "passed directly through to the appliance once it is launched."
15773 msgstr ""
15774
15775 #. type: textblock
15776 #: ../src/guestfs-actions.pod:6026
15777 msgid ""
15778 "One consequence of this is that log messages aren't caught by the library "
15779 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
15780 "stdout."
15781 msgstr ""
15782
15783 #. type: textblock
15784 #: ../src/guestfs-actions.pod:6030 ../fish/guestfish-actions.pod:4001
15785 msgid "You probably don't want to use this unless you know what you are doing."
15786 msgstr ""
15787
15788 #. type: textblock
15789 #: ../src/guestfs-actions.pod:6033 ../fish/guestfish-actions.pod:4004
15790 msgid "The default is disabled."
15791 msgstr ""
15792
15793 #. type: =head2
15794 #: ../src/guestfs-actions.pod:6039
15795 msgid "guestfs_set_e2label"
15796 msgstr ""
15797
15798 #. type: verbatim
15799 #: ../src/guestfs-actions.pod:6041
15800 #, no-wrap
15801 msgid ""
15802 " int\n"
15803 " guestfs_set_e2label (guestfs_h *g,\n"
15804 "                      const char *device,\n"
15805 "                      const char *label);\n"
15806 "\n"
15807 msgstr ""
15808
15809 #. type: textblock
15810 #: ../src/guestfs-actions.pod:6046 ../fish/guestfish-actions.pod:4010
15811 msgid ""
15812 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
15813 "C<label>.  Filesystem labels are limited to 16 characters."
15814 msgstr ""
15815
15816 #. type: textblock
15817 #: ../src/guestfs-actions.pod:6050
15818 msgid ""
15819 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
15820 "the existing label on a filesystem."
15821 msgstr ""
15822
15823 #. type: =head2
15824 #: ../src/guestfs-actions.pod:6057
15825 msgid "guestfs_set_e2uuid"
15826 msgstr ""
15827
15828 #. type: verbatim
15829 #: ../src/guestfs-actions.pod:6059
15830 #, no-wrap
15831 msgid ""
15832 " int\n"
15833 " guestfs_set_e2uuid (guestfs_h *g,\n"
15834 "                     const char *device,\n"
15835 "                     const char *uuid);\n"
15836 "\n"
15837 msgstr ""
15838
15839 #. type: textblock
15840 #: ../src/guestfs-actions.pod:6064 ../fish/guestfish-actions.pod:4021
15841 msgid ""
15842 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
15843 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
15844 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
15845 msgstr ""
15846
15847 #. type: textblock
15848 #: ../src/guestfs-actions.pod:6069
15849 msgid ""
15850 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
15851 "the existing UUID of a filesystem."
15852 msgstr ""
15853
15854 #. type: =head2
15855 #: ../src/guestfs-actions.pod:6076
15856 msgid "guestfs_set_memsize"
15857 msgstr ""
15858
15859 #. type: verbatim
15860 #: ../src/guestfs-actions.pod:6078
15861 #, no-wrap
15862 msgid ""
15863 " int\n"
15864 " guestfs_set_memsize (guestfs_h *g,\n"
15865 "                      int memsize);\n"
15866 "\n"
15867 msgstr ""
15868
15869 #. type: textblock
15870 #: ../src/guestfs-actions.pod:6082
15871 msgid ""
15872 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
15873 "This only has any effect if called before C<guestfs_launch>."
15874 msgstr ""
15875
15876 #. type: textblock
15877 #: ../src/guestfs-actions.pod:6086 ../fish/guestfish-actions.pod:4039
15878 msgid ""
15879 "You can also change this by setting the environment variable "
15880 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
15881 msgstr ""
15882
15883 #. type: =head2
15884 #: ../src/guestfs-actions.pod:6097
15885 msgid "guestfs_set_network"
15886 msgstr ""
15887
15888 #. type: verbatim
15889 #: ../src/guestfs-actions.pod:6099
15890 #, no-wrap
15891 msgid ""
15892 " int\n"
15893 " guestfs_set_network (guestfs_h *g,\n"
15894 "                      int network);\n"
15895 "\n"
15896 msgstr ""
15897
15898 #. type: textblock
15899 #: ../src/guestfs-actions.pod:6103 ../fish/guestfish-actions.pod:4052
15900 msgid ""
15901 "If C<network> is true, then the network is enabled in the libguestfs "
15902 "appliance.  The default is false."
15903 msgstr ""
15904
15905 #. type: textblock
15906 #: ../src/guestfs-actions.pod:6106 ../fish/guestfish-actions.pod:4055
15907 msgid ""
15908 "This affects whether commands are able to access the network (see "
15909 "L<guestfs(3)/RUNNING COMMANDS>)."
15910 msgstr ""
15911
15912 #. type: textblock
15913 #: ../src/guestfs-actions.pod:6109
15914 msgid ""
15915 "You must call this before calling C<guestfs_launch>, otherwise it has no "
15916 "effect."
15917 msgstr ""
15918
15919 #. type: =head2
15920 #: ../src/guestfs-actions.pod:6116
15921 msgid "guestfs_set_path"
15922 msgstr ""
15923
15924 #. type: verbatim
15925 #: ../src/guestfs-actions.pod:6118
15926 #, no-wrap
15927 msgid ""
15928 " int\n"
15929 " guestfs_set_path (guestfs_h *g,\n"
15930 "                   const char *searchpath);\n"
15931 "\n"
15932 msgstr ""
15933
15934 #. type: textblock
15935 #: ../src/guestfs-actions.pod:6122 ../fish/guestfish-actions.pod:4067
15936 msgid "Set the path that libguestfs searches for kernel and initrd.img."
15937 msgstr ""
15938
15939 #. type: textblock
15940 #: ../src/guestfs-actions.pod:6124 ../fish/guestfish-actions.pod:4069
15941 msgid ""
15942 "The default is C<$libdir/guestfs> unless overridden by setting "
15943 "C<LIBGUESTFS_PATH> environment variable."
15944 msgstr ""
15945
15946 #. type: textblock
15947 #: ../src/guestfs-actions.pod:6127 ../fish/guestfish-actions.pod:4072
15948 msgid "Setting C<path> to C<NULL> restores the default path."
15949 msgstr ""
15950
15951 #. type: =head2
15952 #: ../src/guestfs-actions.pod:6133
15953 msgid "guestfs_set_qemu"
15954 msgstr ""
15955
15956 #. type: verbatim
15957 #: ../src/guestfs-actions.pod:6135
15958 #, no-wrap
15959 msgid ""
15960 " int\n"
15961 " guestfs_set_qemu (guestfs_h *g,\n"
15962 "                   const char *qemu);\n"
15963 "\n"
15964 msgstr ""
15965
15966 #. type: textblock
15967 #: ../src/guestfs-actions.pod:6139 ../fish/guestfish-actions.pod:4080
15968 msgid "Set the qemu binary that we will use."
15969 msgstr ""
15970
15971 #. type: textblock
15972 #: ../src/guestfs-actions.pod:6141 ../fish/guestfish-actions.pod:4082
15973 msgid "The default is chosen when the library was compiled by the configure script."
15974 msgstr ""
15975
15976 #. type: textblock
15977 #: ../src/guestfs-actions.pod:6144 ../fish/guestfish-actions.pod:4085
15978 msgid ""
15979 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
15980 "variable."
15981 msgstr ""
15982
15983 #. type: textblock
15984 #: ../src/guestfs-actions.pod:6147 ../fish/guestfish-actions.pod:4088
15985 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
15986 msgstr ""
15987
15988 #. type: textblock
15989 #: ../src/guestfs-actions.pod:6149 ../fish/guestfish-actions.pod:4090
15990 msgid ""
15991 "Note that you should call this function as early as possible after creating "
15992 "the handle.  This is because some pre-launch operations depend on testing "
15993 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
15994 "don't retest features, and so you might see inconsistent results.  Using the "
15995 "environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
15996 "the qemu binary at the same time as the handle is created."
15997 msgstr ""
15998
15999 #. type: =head2
16000 #: ../src/guestfs-actions.pod:6161
16001 msgid "guestfs_set_recovery_proc"
16002 msgstr ""
16003
16004 #. type: verbatim
16005 #: ../src/guestfs-actions.pod:6163
16006 #, no-wrap
16007 msgid ""
16008 " int\n"
16009 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16010 "                            int recoveryproc);\n"
16011 "\n"
16012 msgstr ""
16013
16014 #. type: textblock
16015 #: ../src/guestfs-actions.pod:6167
16016 msgid ""
16017 "If this is called with the parameter C<false> then C<guestfs_launch> does "
16018 "not create a recovery process.  The purpose of the recovery process is to "
16019 "stop runaway qemu processes in the case where the main program aborts "
16020 "abruptly."
16021 msgstr ""
16022
16023 #. type: textblock
16024 #: ../src/guestfs-actions.pod:6172
16025 msgid ""
16026 "This only has any effect if called before C<guestfs_launch>, and the default "
16027 "is true."
16028 msgstr ""
16029
16030 #. type: textblock
16031 #: ../src/guestfs-actions.pod:6175 ../fish/guestfish-actions.pod:4112
16032 msgid ""
16033 "About the only time when you would want to disable this is if the main "
16034 "process will fork itself into the background (\"daemonize\" itself).  In "
16035 "this case the recovery process thinks that the main program has disappeared "
16036 "and so kills qemu, which is not very helpful."
16037 msgstr ""
16038
16039 #. type: =head2
16040 #: ../src/guestfs-actions.pod:6185
16041 msgid "guestfs_set_selinux"
16042 msgstr ""
16043
16044 #. type: verbatim
16045 #: ../src/guestfs-actions.pod:6187
16046 #, no-wrap
16047 msgid ""
16048 " int\n"
16049 " guestfs_set_selinux (guestfs_h *g,\n"
16050 "                      int selinux);\n"
16051 "\n"
16052 msgstr ""
16053
16054 #. type: textblock
16055 #: ../src/guestfs-actions.pod:6191 ../fish/guestfish-actions.pod:4124
16056 msgid ""
16057 "This sets the selinux flag that is passed to the appliance at boot time.  "
16058 "The default is C<selinux=0> (disabled)."
16059 msgstr ""
16060
16061 #. type: textblock
16062 #: ../src/guestfs-actions.pod:6194 ../fish/guestfish-actions.pod:4127
16063 msgid ""
16064 "Note that if SELinux is enabled, it is always in Permissive mode "
16065 "(C<enforcing=0>)."
16066 msgstr ""
16067
16068 #. type: =head2
16069 #: ../src/guestfs-actions.pod:6204
16070 msgid "guestfs_set_trace"
16071 msgstr ""
16072
16073 #. type: verbatim
16074 #: ../src/guestfs-actions.pod:6206
16075 #, no-wrap
16076 msgid ""
16077 " int\n"
16078 " guestfs_set_trace (guestfs_h *g,\n"
16079 "                    int trace);\n"
16080 "\n"
16081 msgstr ""
16082
16083 #. type: textblock
16084 #: ../src/guestfs-actions.pod:6210 ../fish/guestfish-actions.pod:4139
16085 msgid ""
16086 "If the command trace flag is set to 1, then libguestfs calls, parameters and "
16087 "return values are traced."
16088 msgstr ""
16089
16090 #. type: textblock
16091 #: ../src/guestfs-actions.pod:6213 ../fish/guestfish-actions.pod:4142
16092 msgid ""
16093 "If you want to trace C API calls into libguestfs (and other libraries) then "
16094 "possibly a better way is to use the external ltrace(1) command."
16095 msgstr ""
16096
16097 #. type: textblock
16098 #: ../src/guestfs-actions.pod:6217 ../fish/guestfish-actions.pod:4146
16099 msgid ""
16100 "Command traces are disabled unless the environment variable "
16101 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
16102 msgstr ""
16103
16104 #. type: textblock
16105 #: ../src/guestfs-actions.pod:6220
16106 msgid ""
16107 "Trace messages are normally sent to C<stderr>, unless you register a "
16108 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16109 msgstr ""
16110
16111 #. type: =head2
16112 #: ../src/guestfs-actions.pod:6228
16113 msgid "guestfs_set_verbose"
16114 msgstr ""
16115
16116 #. type: verbatim
16117 #: ../src/guestfs-actions.pod:6230
16118 #, no-wrap
16119 msgid ""
16120 " int\n"
16121 " guestfs_set_verbose (guestfs_h *g,\n"
16122 "                      int verbose);\n"
16123 "\n"
16124 msgstr ""
16125
16126 #. type: textblock
16127 #: ../src/guestfs-actions.pod:6234 ../fish/guestfish-actions.pod:4159
16128 msgid "If C<verbose> is true, this turns on verbose messages."
16129 msgstr ""
16130
16131 #. type: textblock
16132 #: ../src/guestfs-actions.pod:6236 ../fish/guestfish-actions.pod:4161
16133 msgid ""
16134 "Verbose messages are disabled unless the environment variable "
16135 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
16136 msgstr ""
16137
16138 #. type: textblock
16139 #: ../src/guestfs-actions.pod:6239
16140 msgid ""
16141 "Verbose messages are normally sent to C<stderr>, unless you register a "
16142 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
16143 msgstr ""
16144
16145 #. type: =head2
16146 #: ../src/guestfs-actions.pod:6247
16147 msgid "guestfs_setcon"
16148 msgstr ""
16149
16150 #. type: verbatim
16151 #: ../src/guestfs-actions.pod:6249
16152 #, no-wrap
16153 msgid ""
16154 " int\n"
16155 " guestfs_setcon (guestfs_h *g,\n"
16156 "                 const char *context);\n"
16157 "\n"
16158 msgstr ""
16159
16160 #. type: textblock
16161 #: ../src/guestfs-actions.pod:6253 ../fish/guestfish-actions.pod:4172
16162 msgid ""
16163 "This sets the SELinux security context of the daemon to the string "
16164 "C<context>."
16165 msgstr ""
16166
16167 #. type: textblock
16168 #: ../src/guestfs-actions.pod:6256 ../fish/guestfish-actions.pod:4175
16169 msgid "See the documentation about SELINUX in L<guestfs(3)>."
16170 msgstr ""
16171
16172 #. type: =head2
16173 #: ../src/guestfs-actions.pod:6262
16174 msgid "guestfs_setxattr"
16175 msgstr ""
16176
16177 #. type: verbatim
16178 #: ../src/guestfs-actions.pod:6264
16179 #, no-wrap
16180 msgid ""
16181 " int\n"
16182 " guestfs_setxattr (guestfs_h *g,\n"
16183 "                   const char *xattr,\n"
16184 "                   const char *val,\n"
16185 "                   int vallen,\n"
16186 "                   const char *path);\n"
16187 "\n"
16188 msgstr ""
16189
16190 #. type: textblock
16191 #: ../src/guestfs-actions.pod:6271 ../fish/guestfish-actions.pod:4181
16192 msgid ""
16193 "This call sets the extended attribute named C<xattr> of the file C<path> to "
16194 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
16195 msgstr ""
16196
16197 #. type: textblock
16198 #: ../src/guestfs-actions.pod:6275
16199 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
16200 msgstr ""
16201
16202 #. type: =head2
16203 #: ../src/guestfs-actions.pod:6281
16204 msgid "guestfs_sfdisk"
16205 msgstr ""
16206
16207 #. type: verbatim
16208 #: ../src/guestfs-actions.pod:6283
16209 #, no-wrap
16210 msgid ""
16211 " int\n"
16212 " guestfs_sfdisk (guestfs_h *g,\n"
16213 "                 const char *device,\n"
16214 "                 int cyls,\n"
16215 "                 int heads,\n"
16216 "                 int sectors,\n"
16217 "                 char *const *lines);\n"
16218 "\n"
16219 msgstr ""
16220
16221 #. type: textblock
16222 #: ../src/guestfs-actions.pod:6291 ../fish/guestfish-actions.pod:4191
16223 msgid ""
16224 "This is a direct interface to the L<sfdisk(8)> program for creating "
16225 "partitions on block devices."
16226 msgstr ""
16227
16228 #. type: textblock
16229 #: ../src/guestfs-actions.pod:6294 ../fish/guestfish-actions.pod:4194
16230 msgid "C<device> should be a block device, for example C</dev/sda>."
16231 msgstr ""
16232
16233 #. type: textblock
16234 #: ../src/guestfs-actions.pod:6296 ../fish/guestfish-actions.pod:4196
16235 msgid ""
16236 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
16237 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
16238 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
16239 "corresponding parameter is omitted.  Usually for 'large' disks, you can just "
16240 "pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather, "
16241 "the kernel) cannot work out the right geometry and you will need to tell it."
16242 msgstr ""
16243
16244 #. type: textblock
16245 #: ../src/guestfs-actions.pod:6304 ../fish/guestfish-actions.pod:4204
16246 msgid ""
16247 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information "
16248 "refer to the L<sfdisk(8)> manpage."
16249 msgstr ""
16250
16251 #. type: textblock
16252 #: ../src/guestfs-actions.pod:6307 ../fish/guestfish-actions.pod:4207
16253 msgid ""
16254 "To create a single partition occupying the whole disk, you would pass "
16255 "C<lines> as a single element list, when the single element being the string "
16256 "C<,> (comma)."
16257 msgstr ""
16258
16259 #. type: textblock
16260 #: ../src/guestfs-actions.pod:6311
16261 msgid "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
16262 msgstr ""
16263
16264 #. type: textblock
16265 #: ../src/guestfs-actions.pod:6319 ../src/guestfs-actions.pod:6349 ../src/guestfs-actions.pod:6382 ../fish/guestfish-actions.pod:4217 ../fish/guestfish-actions.pod:4240 ../fish/guestfish-actions.pod:4262
16266 msgid "This function is deprecated.  In new code, use the C<part_add> call instead."
16267 msgstr ""
16268
16269 #. type: =head2
16270 #: ../src/guestfs-actions.pod:6328
16271 msgid "guestfs_sfdiskM"
16272 msgstr ""
16273
16274 #. type: verbatim
16275 #: ../src/guestfs-actions.pod:6330
16276 #, no-wrap
16277 msgid ""
16278 " int\n"
16279 " guestfs_sfdiskM (guestfs_h *g,\n"
16280 "                  const char *device,\n"
16281 "                  char *const *lines);\n"
16282 "\n"
16283 msgstr ""
16284
16285 #. type: textblock
16286 #: ../src/guestfs-actions.pod:6335
16287 msgid ""
16288 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
16289 "partition sizes are specified in megabytes only (rounded to the nearest "
16290 "cylinder) and you don't need to specify the cyls, heads and sectors "
16291 "parameters which were rarely if ever used anyway."
16292 msgstr ""
16293
16294 #. type: textblock
16295 #: ../src/guestfs-actions.pod:6341
16296 msgid ""
16297 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
16298 "C<guestfs_part_disk>"
16299 msgstr ""
16300
16301 #. type: =head2
16302 #: ../src/guestfs-actions.pod:6358
16303 msgid "guestfs_sfdisk_N"
16304 msgstr ""
16305
16306 #. type: verbatim
16307 #: ../src/guestfs-actions.pod:6360
16308 #, no-wrap
16309 msgid ""
16310 " int\n"
16311 " guestfs_sfdisk_N (guestfs_h *g,\n"
16312 "                   const char *device,\n"
16313 "                   int partnum,\n"
16314 "                   int cyls,\n"
16315 "                   int heads,\n"
16316 "                   int sectors,\n"
16317 "                   const char *line);\n"
16318 "\n"
16319 msgstr ""
16320
16321 #. type: textblock
16322 #: ../src/guestfs-actions.pod:6369 ../fish/guestfish-actions.pod:4251
16323 msgid ""
16324 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
16325 "(note: C<n> counts from 1)."
16326 msgstr ""
16327
16328 #. type: textblock
16329 #: ../src/guestfs-actions.pod:6372
16330 msgid ""
16331 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
16332 "for the cyls/heads/sectors parameters."
16333 msgstr ""
16334
16335 #. type: textblock
16336 #: ../src/guestfs-actions.pod:6375
16337 msgid "See also: C<guestfs_part_add>"
16338 msgstr ""
16339
16340 #. type: =head2
16341 #: ../src/guestfs-actions.pod:6391
16342 msgid "guestfs_sfdisk_disk_geometry"
16343 msgstr ""
16344
16345 #. type: verbatim
16346 #: ../src/guestfs-actions.pod:6393
16347 #, no-wrap
16348 msgid ""
16349 " char *\n"
16350 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
16351 "                               const char *device);\n"
16352 "\n"
16353 msgstr ""
16354
16355 #. type: textblock
16356 #: ../src/guestfs-actions.pod:6397
16357 msgid ""
16358 "This displays the disk geometry of C<device> read from the partition table.  "
16359 "Especially in the case where the underlying block device has been resized, "
16360 "this can be different from the kernel's idea of the geometry (see "
16361 "C<guestfs_sfdisk_kernel_geometry>)."
16362 msgstr ""
16363
16364 #. type: textblock
16365 #: ../src/guestfs-actions.pod:6402 ../src/guestfs-actions.pod:6418 ../fish/guestfish-actions.pod:4278 ../fish/guestfish-actions.pod:4287
16366 msgid "The result is in human-readable format, and not designed to be parsed."
16367 msgstr ""
16368
16369 #. type: =head2
16370 #: ../src/guestfs-actions.pod:6410
16371 msgid "guestfs_sfdisk_kernel_geometry"
16372 msgstr ""
16373
16374 #. type: verbatim
16375 #: ../src/guestfs-actions.pod:6412
16376 #, no-wrap
16377 msgid ""
16378 " char *\n"
16379 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
16380 "                                 const char *device);\n"
16381 "\n"
16382 msgstr ""
16383
16384 #. type: textblock
16385 #: ../src/guestfs-actions.pod:6416 ../fish/guestfish-actions.pod:4285
16386 msgid "This displays the kernel's idea of the geometry of C<device>."
16387 msgstr ""
16388
16389 #. type: =head2
16390 #: ../src/guestfs-actions.pod:6426
16391 msgid "guestfs_sfdisk_l"
16392 msgstr ""
16393
16394 #. type: verbatim
16395 #: ../src/guestfs-actions.pod:6428
16396 #, no-wrap
16397 msgid ""
16398 " char *\n"
16399 " guestfs_sfdisk_l (guestfs_h *g,\n"
16400 "                   const char *device);\n"
16401 "\n"
16402 msgstr ""
16403
16404 #. type: textblock
16405 #: ../src/guestfs-actions.pod:6432 ../fish/guestfish-actions.pod:4294
16406 msgid ""
16407 "This displays the partition table on C<device>, in the human-readable output "
16408 "of the L<sfdisk(8)> command.  It is not intended to be parsed."
16409 msgstr ""
16410
16411 #. type: textblock
16412 #: ../src/guestfs-actions.pod:6436
16413 msgid "See also: C<guestfs_part_list>"
16414 msgstr ""
16415
16416 #. type: textblock
16417 #: ../src/guestfs-actions.pod:6441 ../fish/guestfish-actions.pod:4300
16418 msgid ""
16419 "This function is deprecated.  In new code, use the C<part_list> call "
16420 "instead."
16421 msgstr ""
16422
16423 #. type: =head2
16424 #: ../src/guestfs-actions.pod:6450
16425 msgid "guestfs_sh"
16426 msgstr ""
16427
16428 #. type: verbatim
16429 #: ../src/guestfs-actions.pod:6452
16430 #, no-wrap
16431 msgid ""
16432 " char *\n"
16433 " guestfs_sh (guestfs_h *g,\n"
16434 "             const char *command);\n"
16435 "\n"
16436 msgstr ""
16437
16438 #. type: textblock
16439 #: ../src/guestfs-actions.pod:6456 ../fish/guestfish-actions.pod:4311
16440 msgid ""
16441 "This call runs a command from the guest filesystem via the guest's "
16442 "C</bin/sh>."
16443 msgstr ""
16444
16445 #. type: textblock
16446 #: ../src/guestfs-actions.pod:6459
16447 msgid "This is like C<guestfs_command>, but passes the command to:"
16448 msgstr ""
16449
16450 #. type: verbatim
16451 #: ../src/guestfs-actions.pod:6461 ../fish/guestfish-actions.pod:4316
16452 #, no-wrap
16453 msgid ""
16454 " /bin/sh -c \"command\"\n"
16455 "\n"
16456 msgstr ""
16457
16458 #. type: textblock
16459 #: ../src/guestfs-actions.pod:6463 ../fish/guestfish-actions.pod:4318
16460 msgid ""
16461 "Depending on the guest's shell, this usually results in wildcards being "
16462 "expanded, shell expressions being interpolated and so on."
16463 msgstr ""
16464
16465 #. type: textblock
16466 #: ../src/guestfs-actions.pod:6467
16467 msgid "All the provisos about C<guestfs_command> apply to this call."
16468 msgstr ""
16469
16470 #. type: =head2
16471 #: ../src/guestfs-actions.pod:6474
16472 msgid "guestfs_sh_lines"
16473 msgstr ""
16474
16475 #. type: verbatim
16476 #: ../src/guestfs-actions.pod:6476
16477 #, no-wrap
16478 msgid ""
16479 " char **\n"
16480 " guestfs_sh_lines (guestfs_h *g,\n"
16481 "                   const char *command);\n"
16482 "\n"
16483 msgstr ""
16484
16485 #. type: textblock
16486 #: ../src/guestfs-actions.pod:6480
16487 msgid ""
16488 "This is the same as C<guestfs_sh>, but splits the result into a list of "
16489 "lines."
16490 msgstr ""
16491
16492 #. type: textblock
16493 #: ../src/guestfs-actions.pod:6483
16494 msgid "See also: C<guestfs_command_lines>"
16495 msgstr ""
16496
16497 #. type: =head2
16498 #: ../src/guestfs-actions.pod:6491
16499 msgid "guestfs_sleep"
16500 msgstr ""
16501
16502 #. type: verbatim
16503 #: ../src/guestfs-actions.pod:6493
16504 #, no-wrap
16505 msgid ""
16506 " int\n"
16507 " guestfs_sleep (guestfs_h *g,\n"
16508 "                int secs);\n"
16509 "\n"
16510 msgstr ""
16511
16512 #. type: textblock
16513 #: ../src/guestfs-actions.pod:6497 ../fish/guestfish-actions.pod:4337
16514 msgid "Sleep for C<secs> seconds."
16515 msgstr ""
16516
16517 #. type: textblock
16518 #: ../src/guestfs-actions.pod:6501
16519 msgid "(Added in 1.0.41)"
16520 msgstr ""
16521
16522 #. type: =head2
16523 #: ../src/guestfs-actions.pod:6503 ../src/guestfs-structs.pod:109
16524 msgid "guestfs_stat"
16525 msgstr ""
16526
16527 #. type: verbatim
16528 #: ../src/guestfs-actions.pod:6505
16529 #, no-wrap
16530 msgid ""
16531 " struct guestfs_stat *\n"
16532 " guestfs_stat (guestfs_h *g,\n"
16533 "               const char *path);\n"
16534 "\n"
16535 msgstr ""
16536
16537 #. type: textblock
16538 #: ../src/guestfs-actions.pod:6511 ../fish/guestfish-actions.pod:4345
16539 msgid "This is the same as the C<stat(2)> system call."
16540 msgstr ""
16541
16542 #. type: =head2
16543 #: ../src/guestfs-actions.pod:6519 ../src/guestfs-structs.pod:135
16544 msgid "guestfs_statvfs"
16545 msgstr ""
16546
16547 #. type: verbatim
16548 #: ../src/guestfs-actions.pod:6521
16549 #, no-wrap
16550 msgid ""
16551 " struct guestfs_statvfs *\n"
16552 " guestfs_statvfs (guestfs_h *g,\n"
16553 "                  const char *path);\n"
16554 "\n"
16555 msgstr ""
16556
16557 #. type: textblock
16558 #: ../src/guestfs-actions.pod:6525 ../fish/guestfish-actions.pod:4351
16559 msgid ""
16560 "Returns file system statistics for any mounted file system.  C<path> should "
16561 "be a file or directory in the mounted file system (typically it is the mount "
16562 "point itself, but it doesn't need to be)."
16563 msgstr ""
16564
16565 #. type: textblock
16566 #: ../src/guestfs-actions.pod:6529 ../fish/guestfish-actions.pod:4355
16567 msgid "This is the same as the C<statvfs(2)> system call."
16568 msgstr ""
16569
16570 #. type: textblock
16571 #: ../src/guestfs-actions.pod:6531
16572 msgid ""
16573 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an "
16574 "error.  I<The caller must call C<guestfs_free_statvfs> after use>."
16575 msgstr ""
16576
16577 #. type: =head2
16578 #: ../src/guestfs-actions.pod:6537
16579 msgid "guestfs_strings"
16580 msgstr ""
16581
16582 #. type: verbatim
16583 #: ../src/guestfs-actions.pod:6539
16584 #, no-wrap
16585 msgid ""
16586 " char **\n"
16587 " guestfs_strings (guestfs_h *g,\n"
16588 "                  const char *path);\n"
16589 "\n"
16590 msgstr ""
16591
16592 #. type: textblock
16593 #: ../src/guestfs-actions.pod:6543 ../fish/guestfish-actions.pod:4361
16594 msgid ""
16595 "This runs the L<strings(1)> command on a file and returns the list of "
16596 "printable strings found."
16597 msgstr ""
16598
16599 #. type: =head2
16600 #: ../src/guestfs-actions.pod:6555
16601 msgid "guestfs_strings_e"
16602 msgstr ""
16603
16604 #. type: verbatim
16605 #: ../src/guestfs-actions.pod:6557
16606 #, no-wrap
16607 msgid ""
16608 " char **\n"
16609 " guestfs_strings_e (guestfs_h *g,\n"
16610 "                    const char *encoding,\n"
16611 "                    const char *path);\n"
16612 "\n"
16613 msgstr ""
16614
16615 #. type: textblock
16616 #: ../src/guestfs-actions.pod:6562
16617 msgid ""
16618 "This is like the C<guestfs_strings> command, but allows you to specify the "
16619 "encoding of strings that are looked for in the source file C<path>."
16620 msgstr ""
16621
16622 #. type: textblock
16623 #: ../src/guestfs-actions.pod:6566 ../fish/guestfish-actions.pod:4375
16624 msgid "Allowed encodings are:"
16625 msgstr ""
16626
16627 #. type: =item
16628 #: ../src/guestfs-actions.pod:6570 ../fish/guestfish-actions.pod:4379
16629 msgid "s"
16630 msgstr ""
16631
16632 #. type: textblock
16633 #: ../src/guestfs-actions.pod:6572
16634 msgid ""
16635 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
16636 "ISO-8859-X (this is what C<guestfs_strings> uses)."
16637 msgstr ""
16638
16639 #. type: =item
16640 #: ../src/guestfs-actions.pod:6575 ../fish/guestfish-actions.pod:4384
16641 msgid "S"
16642 msgstr ""
16643
16644 #. type: textblock
16645 #: ../src/guestfs-actions.pod:6577 ../fish/guestfish-actions.pod:4386
16646 msgid "Single 8-bit-byte characters."
16647 msgstr ""
16648
16649 #. type: =item
16650 #: ../src/guestfs-actions.pod:6579 ../fish/guestfish-actions.pod:4388
16651 msgid "b"
16652 msgstr ""
16653
16654 #. type: textblock
16655 #: ../src/guestfs-actions.pod:6581 ../fish/guestfish-actions.pod:4390
16656 msgid "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
16657 msgstr ""
16658
16659 #. type: =item
16660 #: ../src/guestfs-actions.pod:6584 ../fish/guestfish-actions.pod:4393
16661 msgid "l (lower case letter L)"
16662 msgstr ""
16663
16664 #. type: textblock
16665 #: ../src/guestfs-actions.pod:6586 ../fish/guestfish-actions.pod:4395
16666 msgid ""
16667 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
16668 "examining binaries in Windows guests."
16669 msgstr ""
16670
16671 #. type: =item
16672 #: ../src/guestfs-actions.pod:6589 ../fish/guestfish-actions.pod:4398
16673 msgid "B"
16674 msgstr ""
16675
16676 #. type: textblock
16677 #: ../src/guestfs-actions.pod:6591 ../fish/guestfish-actions.pod:4400
16678 msgid "32-bit big endian such as UCS-4BE."
16679 msgstr ""
16680
16681 #. type: =item
16682 #: ../src/guestfs-actions.pod:6593 ../fish/guestfish-actions.pod:4402
16683 msgid "L"
16684 msgstr ""
16685
16686 #. type: textblock
16687 #: ../src/guestfs-actions.pod:6595 ../fish/guestfish-actions.pod:4404
16688 msgid "32-bit little endian such as UCS-4LE."
16689 msgstr ""
16690
16691 #. type: textblock
16692 #: ../src/guestfs-actions.pod:6599 ../fish/guestfish-actions.pod:4408
16693 msgid "The returned strings are transcoded to UTF-8."
16694 msgstr ""
16695
16696 #. type: =head2
16697 #: ../src/guestfs-actions.pod:6610
16698 msgid "guestfs_swapoff_device"
16699 msgstr ""
16700
16701 #. type: verbatim
16702 #: ../src/guestfs-actions.pod:6612
16703 #, no-wrap
16704 msgid ""
16705 " int\n"
16706 " guestfs_swapoff_device (guestfs_h *g,\n"
16707 "                         const char *device);\n"
16708 "\n"
16709 msgstr ""
16710
16711 #. type: textblock
16712 #: ../src/guestfs-actions.pod:6616
16713 msgid ""
16714 "This command disables the libguestfs appliance swap device or partition "
16715 "named C<device>.  See C<guestfs_swapon_device>."
16716 msgstr ""
16717
16718 #. type: =head2
16719 #: ../src/guestfs-actions.pod:6624
16720 msgid "guestfs_swapoff_file"
16721 msgstr ""
16722
16723 #. type: verbatim
16724 #: ../src/guestfs-actions.pod:6626
16725 #, no-wrap
16726 msgid ""
16727 " int\n"
16728 " guestfs_swapoff_file (guestfs_h *g,\n"
16729 "                       const char *file);\n"
16730 "\n"
16731 msgstr ""
16732
16733 #. type: textblock
16734 #: ../src/guestfs-actions.pod:6630 ../fish/guestfish-actions.pod:4425
16735 msgid "This command disables the libguestfs appliance swap on file."
16736 msgstr ""
16737
16738 #. type: =head2
16739 #: ../src/guestfs-actions.pod:6636
16740 msgid "guestfs_swapoff_label"
16741 msgstr ""
16742
16743 #. type: verbatim
16744 #: ../src/guestfs-actions.pod:6638
16745 #, no-wrap
16746 msgid ""
16747 " int\n"
16748 " guestfs_swapoff_label (guestfs_h *g,\n"
16749 "                        const char *label);\n"
16750 "\n"
16751 msgstr ""
16752
16753 #. type: textblock
16754 #: ../src/guestfs-actions.pod:6642 ../fish/guestfish-actions.pod:4431
16755 msgid ""
16756 "This command disables the libguestfs appliance swap on labeled swap "
16757 "partition."
16758 msgstr ""
16759
16760 #. type: =head2
16761 #: ../src/guestfs-actions.pod:6649
16762 msgid "guestfs_swapoff_uuid"
16763 msgstr ""
16764
16765 #. type: verbatim
16766 #: ../src/guestfs-actions.pod:6651
16767 #, no-wrap
16768 msgid ""
16769 " int\n"
16770 " guestfs_swapoff_uuid (guestfs_h *g,\n"
16771 "                       const char *uuid);\n"
16772 "\n"
16773 msgstr ""
16774
16775 #. type: textblock
16776 #: ../src/guestfs-actions.pod:6655 ../fish/guestfish-actions.pod:4438
16777 msgid ""
16778 "This command disables the libguestfs appliance swap partition with the given "
16779 "UUID."
16780 msgstr ""
16781
16782 #. type: =head2
16783 #: ../src/guestfs-actions.pod:6662
16784 msgid "guestfs_swapon_device"
16785 msgstr ""
16786
16787 #. type: verbatim
16788 #: ../src/guestfs-actions.pod:6664
16789 #, no-wrap
16790 msgid ""
16791 " int\n"
16792 " guestfs_swapon_device (guestfs_h *g,\n"
16793 "                        const char *device);\n"
16794 "\n"
16795 msgstr ""
16796
16797 #. type: textblock
16798 #: ../src/guestfs-actions.pod:6668
16799 msgid ""
16800 "This command enables the libguestfs appliance to use the swap device or "
16801 "partition named C<device>.  The increased memory is made available for all "
16802 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
16803 msgstr ""
16804
16805 #. type: textblock
16806 #: ../src/guestfs-actions.pod:6673 ../fish/guestfish-actions.pod:4450
16807 msgid ""
16808 "Note that you should not swap to existing guest swap partitions unless you "
16809 "know what you are doing.  They may contain hibernation information, or other "
16810 "information that the guest doesn't want you to trash.  You also risk leaking "
16811 "information about the host to the guest this way.  Instead, attach a new "
16812 "host device to the guest and swap on that."
16813 msgstr ""
16814
16815 #. type: =head2
16816 #: ../src/guestfs-actions.pod:6684
16817 msgid "guestfs_swapon_file"
16818 msgstr ""
16819
16820 #. type: verbatim
16821 #: ../src/guestfs-actions.pod:6686
16822 #, no-wrap
16823 msgid ""
16824 " int\n"
16825 " guestfs_swapon_file (guestfs_h *g,\n"
16826 "                      const char *file);\n"
16827 "\n"
16828 msgstr ""
16829
16830 #. type: textblock
16831 #: ../src/guestfs-actions.pod:6690
16832 msgid ""
16833 "This command enables swap to a file.  See C<guestfs_swapon_device> for other "
16834 "notes."
16835 msgstr ""
16836
16837 #. type: =head2
16838 #: ../src/guestfs-actions.pod:6697
16839 msgid "guestfs_swapon_label"
16840 msgstr ""
16841
16842 #. type: verbatim
16843 #: ../src/guestfs-actions.pod:6699
16844 #, no-wrap
16845 msgid ""
16846 " int\n"
16847 " guestfs_swapon_label (guestfs_h *g,\n"
16848 "                       const char *label);\n"
16849 "\n"
16850 msgstr ""
16851
16852 #. type: textblock
16853 #: ../src/guestfs-actions.pod:6703
16854 msgid ""
16855 "This command enables swap to a labeled swap partition.  See "
16856 "C<guestfs_swapon_device> for other notes."
16857 msgstr ""
16858
16859 #. type: =head2
16860 #: ../src/guestfs-actions.pod:6710
16861 msgid "guestfs_swapon_uuid"
16862 msgstr ""
16863
16864 #. type: verbatim
16865 #: ../src/guestfs-actions.pod:6712
16866 #, no-wrap
16867 msgid ""
16868 " int\n"
16869 " guestfs_swapon_uuid (guestfs_h *g,\n"
16870 "                      const char *uuid);\n"
16871 "\n"
16872 msgstr ""
16873
16874 #. type: textblock
16875 #: ../src/guestfs-actions.pod:6716
16876 msgid ""
16877 "This command enables swap to a swap partition with the given UUID.  See "
16878 "C<guestfs_swapon_device> for other notes."
16879 msgstr ""
16880
16881 #. type: =head2
16882 #: ../src/guestfs-actions.pod:6723
16883 msgid "guestfs_sync"
16884 msgstr ""
16885
16886 #. type: verbatim
16887 #: ../src/guestfs-actions.pod:6725
16888 #, no-wrap
16889 msgid ""
16890 " int\n"
16891 " guestfs_sync (guestfs_h *g);\n"
16892 "\n"
16893 msgstr ""
16894
16895 #. type: textblock
16896 #: ../src/guestfs-actions.pod:6728 ../fish/guestfish-actions.pod:4482
16897 msgid ""
16898 "This syncs the disk, so that any writes are flushed through to the "
16899 "underlying disk image."
16900 msgstr ""
16901
16902 #. type: textblock
16903 #: ../src/guestfs-actions.pod:6731 ../fish/guestfish-actions.pod:4485
16904 msgid ""
16905 "You should always call this if you have modified a disk image, before "
16906 "closing the handle."
16907 msgstr ""
16908
16909 #. type: =head2
16910 #: ../src/guestfs-actions.pod:6738
16911 msgid "guestfs_tail"
16912 msgstr ""
16913
16914 #. type: verbatim
16915 #: ../src/guestfs-actions.pod:6740
16916 #, no-wrap
16917 msgid ""
16918 " char **\n"
16919 " guestfs_tail (guestfs_h *g,\n"
16920 "               const char *path);\n"
16921 "\n"
16922 msgstr ""
16923
16924 #. type: textblock
16925 #: ../src/guestfs-actions.pod:6744 ../fish/guestfish-actions.pod:4492
16926 msgid "This command returns up to the last 10 lines of a file as a list of strings."
16927 msgstr ""
16928
16929 #. type: =head2
16930 #: ../src/guestfs-actions.pod:6756
16931 msgid "guestfs_tail_n"
16932 msgstr ""
16933
16934 #. type: verbatim
16935 #: ../src/guestfs-actions.pod:6758
16936 #, no-wrap
16937 msgid ""
16938 " char **\n"
16939 " guestfs_tail_n (guestfs_h *g,\n"
16940 "                 int nrlines,\n"
16941 "                 const char *path);\n"
16942 "\n"
16943 msgstr ""
16944
16945 #. type: textblock
16946 #: ../src/guestfs-actions.pod:6763 ../fish/guestfish-actions.pod:4502
16947 msgid ""
16948 "If the parameter C<nrlines> is a positive number, this returns the last "
16949 "C<nrlines> lines of the file C<path>."
16950 msgstr ""
16951
16952 #. type: textblock
16953 #: ../src/guestfs-actions.pod:6766 ../fish/guestfish-actions.pod:4505
16954 msgid ""
16955 "If the parameter C<nrlines> is a negative number, this returns lines from "
16956 "the file C<path>, starting with the C<-nrlines>th line."
16957 msgstr ""
16958
16959 #. type: =head2
16960 #: ../src/guestfs-actions.pod:6780
16961 msgid "guestfs_tar_in"
16962 msgstr ""
16963
16964 #. type: verbatim
16965 #: ../src/guestfs-actions.pod:6782
16966 #, no-wrap
16967 msgid ""
16968 " int\n"
16969 " guestfs_tar_in (guestfs_h *g,\n"
16970 "                 const char *tarfile,\n"
16971 "                 const char *directory);\n"
16972 "\n"
16973 msgstr ""
16974
16975 #. type: textblock
16976 #: ../src/guestfs-actions.pod:6787 ../fish/guestfish-actions.pod:4517
16977 msgid ""
16978 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
16979 "tar file) into C<directory>."
16980 msgstr ""
16981
16982 #. type: textblock
16983 #: ../src/guestfs-actions.pod:6790
16984 msgid "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
16985 msgstr ""
16986
16987 #. type: textblock
16988 #: ../src/guestfs-actions.pod:6795 ../src/guestfs-actions.pod:6812 ../src/guestfs-actions.pod:6828 ../src/guestfs-actions.pod:6844
16989 msgid "(Added in 1.0.3)"
16990 msgstr ""
16991
16992 #. type: =head2
16993 #: ../src/guestfs-actions.pod:6797
16994 msgid "guestfs_tar_out"
16995 msgstr ""
16996
16997 #. type: verbatim
16998 #: ../src/guestfs-actions.pod:6799
16999 #, no-wrap
17000 msgid ""
17001 " int\n"
17002 " guestfs_tar_out (guestfs_h *g,\n"
17003 "                  const char *directory,\n"
17004 "                  const char *tarfile);\n"
17005 "\n"
17006 msgstr ""
17007
17008 #. type: textblock
17009 #: ../src/guestfs-actions.pod:6804 ../fish/guestfish-actions.pod:4529
17010 msgid ""
17011 "This command packs the contents of C<directory> and downloads it to local "
17012 "file C<tarfile>."
17013 msgstr ""
17014
17015 #. type: textblock
17016 #: ../src/guestfs-actions.pod:6807
17017 msgid ""
17018 "To download a compressed tarball, use C<guestfs_tgz_out> or "
17019 "C<guestfs_txz_out>."
17020 msgstr ""
17021
17022 #. type: =head2
17023 #: ../src/guestfs-actions.pod:6814
17024 msgid "guestfs_tgz_in"
17025 msgstr ""
17026
17027 #. type: verbatim
17028 #: ../src/guestfs-actions.pod:6816
17029 #, no-wrap
17030 msgid ""
17031 " int\n"
17032 " guestfs_tgz_in (guestfs_h *g,\n"
17033 "                 const char *tarball,\n"
17034 "                 const char *directory);\n"
17035 "\n"
17036 msgstr ""
17037
17038 #. type: textblock
17039 #: ../src/guestfs-actions.pod:6821 ../fish/guestfish-actions.pod:4541
17040 msgid ""
17041 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed> "
17042 "tar file) into C<directory>."
17043 msgstr ""
17044
17045 #. type: textblock
17046 #: ../src/guestfs-actions.pod:6824
17047 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
17048 msgstr ""
17049
17050 #. type: =head2
17051 #: ../src/guestfs-actions.pod:6830
17052 msgid "guestfs_tgz_out"
17053 msgstr ""
17054
17055 #. type: verbatim
17056 #: ../src/guestfs-actions.pod:6832
17057 #, no-wrap
17058 msgid ""
17059 " int\n"
17060 " guestfs_tgz_out (guestfs_h *g,\n"
17061 "                  const char *directory,\n"
17062 "                  const char *tarball);\n"
17063 "\n"
17064 msgstr ""
17065
17066 #. type: textblock
17067 #: ../src/guestfs-actions.pod:6837 ../fish/guestfish-actions.pod:4552
17068 msgid ""
17069 "This command packs the contents of C<directory> and downloads it to local "
17070 "file C<tarball>."
17071 msgstr ""
17072
17073 #. type: textblock
17074 #: ../src/guestfs-actions.pod:6840
17075 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
17076 msgstr ""
17077
17078 #. type: =head2
17079 #: ../src/guestfs-actions.pod:6846
17080 msgid "guestfs_touch"
17081 msgstr ""
17082
17083 #. type: verbatim
17084 #: ../src/guestfs-actions.pod:6848
17085 #, no-wrap
17086 msgid ""
17087 " int\n"
17088 " guestfs_touch (guestfs_h *g,\n"
17089 "                const char *path);\n"
17090 "\n"
17091 msgstr ""
17092
17093 #. type: textblock
17094 #: ../src/guestfs-actions.pod:6852 ../fish/guestfish-actions.pod:4563
17095 msgid ""
17096 "Touch acts like the L<touch(1)> command.  It can be used to update the "
17097 "timestamps on a file, or, if the file does not exist, to create a new "
17098 "zero-length file."
17099 msgstr ""
17100
17101 #. type: textblock
17102 #: ../src/guestfs-actions.pod:6856 ../fish/guestfish-actions.pod:4567
17103 msgid ""
17104 "This command only works on regular files, and will fail on other file types "
17105 "such as directories, symbolic links, block special etc."
17106 msgstr ""
17107
17108 #. type: =head2
17109 #: ../src/guestfs-actions.pod:6863
17110 msgid "guestfs_truncate"
17111 msgstr ""
17112
17113 #. type: verbatim
17114 #: ../src/guestfs-actions.pod:6865
17115 #, no-wrap
17116 msgid ""
17117 " int\n"
17118 " guestfs_truncate (guestfs_h *g,\n"
17119 "                   const char *path);\n"
17120 "\n"
17121 msgstr ""
17122
17123 #. type: textblock
17124 #: ../src/guestfs-actions.pod:6869 ../fish/guestfish-actions.pod:4574
17125 msgid ""
17126 "This command truncates C<path> to a zero-length file.  The file must exist "
17127 "already."
17128 msgstr ""
17129
17130 #. type: =head2
17131 #: ../src/guestfs-actions.pod:6876
17132 msgid "guestfs_truncate_size"
17133 msgstr ""
17134
17135 #. type: verbatim
17136 #: ../src/guestfs-actions.pod:6878
17137 #, no-wrap
17138 msgid ""
17139 " int\n"
17140 " guestfs_truncate_size (guestfs_h *g,\n"
17141 "                        const char *path,\n"
17142 "                        int64_t size);\n"
17143 "\n"
17144 msgstr ""
17145
17146 #. type: textblock
17147 #: ../src/guestfs-actions.pod:6883 ../fish/guestfish-actions.pod:4581
17148 msgid ""
17149 "This command truncates C<path> to size C<size> bytes.  The file must exist "
17150 "already."
17151 msgstr ""
17152
17153 #. type: textblock
17154 #: ../src/guestfs-actions.pod:6886
17155 msgid ""
17156 "If the current file size is less than C<size> then the file is extended to "
17157 "the required size with zero bytes.  This creates a sparse file (ie. disk "
17158 "blocks are not allocated for the file until you write to it).  To create a "
17159 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
17160 msgstr ""
17161
17162 #. type: =head2
17163 #: ../src/guestfs-actions.pod:6896
17164 msgid "guestfs_tune2fs_l"
17165 msgstr ""
17166
17167 #. type: verbatim
17168 #: ../src/guestfs-actions.pod:6898
17169 #, no-wrap
17170 msgid ""
17171 " char **\n"
17172 " guestfs_tune2fs_l (guestfs_h *g,\n"
17173 "                    const char *device);\n"
17174 "\n"
17175 msgstr ""
17176
17177 #. type: textblock
17178 #: ../src/guestfs-actions.pod:6902 ../fish/guestfish-actions.pod:4594
17179 msgid ""
17180 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on "
17181 "C<device>."
17182 msgstr ""
17183
17184 #. type: textblock
17185 #: ../src/guestfs-actions.pod:6905 ../fish/guestfish-actions.pod:4597
17186 msgid ""
17187 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
17188 "for more details.  The list of fields returned isn't clearly defined, and "
17189 "depends on both the version of C<tune2fs> that libguestfs was built against, "
17190 "and the filesystem itself."
17191 msgstr ""
17192
17193 #. type: =head2
17194 #: ../src/guestfs-actions.pod:6918
17195 msgid "guestfs_txz_in"
17196 msgstr ""
17197
17198 #. type: verbatim
17199 #: ../src/guestfs-actions.pod:6920
17200 #, no-wrap
17201 msgid ""
17202 " int\n"
17203 " guestfs_txz_in (guestfs_h *g,\n"
17204 "                 const char *tarball,\n"
17205 "                 const char *directory);\n"
17206 "\n"
17207 msgstr ""
17208
17209 #. type: textblock
17210 #: ../src/guestfs-actions.pod:6925 ../fish/guestfish-actions.pod:4606
17211 msgid ""
17212 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
17213 "tar file) into C<directory>."
17214 msgstr ""
17215
17216 #. type: =head2
17217 #: ../src/guestfs-actions.pod:6932
17218 msgid "guestfs_txz_out"
17219 msgstr ""
17220
17221 #. type: verbatim
17222 #: ../src/guestfs-actions.pod:6934
17223 #, no-wrap
17224 msgid ""
17225 " int\n"
17226 " guestfs_txz_out (guestfs_h *g,\n"
17227 "                  const char *directory,\n"
17228 "                  const char *tarball);\n"
17229 "\n"
17230 msgstr ""
17231
17232 #. type: textblock
17233 #: ../src/guestfs-actions.pod:6939 ../fish/guestfish-actions.pod:4615
17234 msgid ""
17235 "This command packs the contents of C<directory> and downloads it to local "
17236 "file C<tarball> (as an xz compressed tar archive)."
17237 msgstr ""
17238
17239 #. type: =head2
17240 #: ../src/guestfs-actions.pod:6946
17241 msgid "guestfs_umask"
17242 msgstr ""
17243
17244 #. type: verbatim
17245 #: ../src/guestfs-actions.pod:6948
17246 #, no-wrap
17247 msgid ""
17248 " int\n"
17249 " guestfs_umask (guestfs_h *g,\n"
17250 "                int mask);\n"
17251 "\n"
17252 msgstr ""
17253
17254 #. type: textblock
17255 #: ../src/guestfs-actions.pod:6952 ../fish/guestfish-actions.pod:4624
17256 msgid ""
17257 "This function sets the mask used for creating new files and device nodes to "
17258 "C<mask & 0777>."
17259 msgstr ""
17260
17261 #. type: textblock
17262 #: ../src/guestfs-actions.pod:6955 ../fish/guestfish-actions.pod:4627
17263 msgid ""
17264 "Typical umask values would be C<022> which creates new files with "
17265 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
17266 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
17267 msgstr ""
17268
17269 #. type: textblock
17270 #: ../src/guestfs-actions.pod:6960 ../fish/guestfish-actions.pod:4632
17271 msgid ""
17272 "The default umask is C<022>.  This is important because it means that "
17273 "directories and device nodes will be created with C<0644> or C<0755> mode "
17274 "even if you specify C<0777>."
17275 msgstr ""
17276
17277 #. type: textblock
17278 #: ../src/guestfs-actions.pod:6964
17279 msgid ""
17280 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
17281 "C<guestfs_mkdir>."
17282 msgstr ""
17283
17284 #. type: textblock
17285 #: ../src/guestfs-actions.pod:6967 ../fish/guestfish-actions.pod:4639
17286 msgid "This call returns the previous umask."
17287 msgstr ""
17288
17289 #. type: =head2
17290 #: ../src/guestfs-actions.pod:6973
17291 msgid "guestfs_umount"
17292 msgstr ""
17293
17294 #. type: verbatim
17295 #: ../src/guestfs-actions.pod:6975
17296 #, no-wrap
17297 msgid ""
17298 " int\n"
17299 " guestfs_umount (guestfs_h *g,\n"
17300 "                 const char *pathordevice);\n"
17301 "\n"
17302 msgstr ""
17303
17304 #. type: textblock
17305 #: ../src/guestfs-actions.pod:6979 ../fish/guestfish-actions.pod:4647
17306 msgid ""
17307 "This unmounts the given filesystem.  The filesystem may be specified either "
17308 "by its mountpoint (path) or the device which contains the filesystem."
17309 msgstr ""
17310
17311 #. type: =head2
17312 #: ../src/guestfs-actions.pod:6987
17313 msgid "guestfs_umount_all"
17314 msgstr ""
17315
17316 #. type: verbatim
17317 #: ../src/guestfs-actions.pod:6989
17318 #, no-wrap
17319 msgid ""
17320 " int\n"
17321 " guestfs_umount_all (guestfs_h *g);\n"
17322 "\n"
17323 msgstr ""
17324
17325 #. type: textblock
17326 #: ../src/guestfs-actions.pod:6992 ../fish/guestfish-actions.pod:4657
17327 msgid "This unmounts all mounted filesystems."
17328 msgstr ""
17329
17330 #. type: textblock
17331 #: ../src/guestfs-actions.pod:6994 ../fish/guestfish-actions.pod:4659
17332 msgid "Some internal mounts are not unmounted by this call."
17333 msgstr ""
17334
17335 #. type: =head2
17336 #: ../src/guestfs-actions.pod:7000
17337 msgid "guestfs_upload"
17338 msgstr ""
17339
17340 #. type: verbatim
17341 #: ../src/guestfs-actions.pod:7002
17342 #, no-wrap
17343 msgid ""
17344 " int\n"
17345 " guestfs_upload (guestfs_h *g,\n"
17346 "                 const char *filename,\n"
17347 "                 const char *remotefilename);\n"
17348 "\n"
17349 msgstr ""
17350
17351 #. type: textblock
17352 #: ../src/guestfs-actions.pod:7007 ../src/guestfs-actions.pod:7031 ../fish/guestfish-actions.pod:4665 ../fish/guestfish-actions.pod:4678
17353 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
17354 msgstr ""
17355
17356 #. type: textblock
17357 #: ../src/guestfs-actions.pod:7012
17358 msgid "See also C<guestfs_download>."
17359 msgstr ""
17360
17361 #. type: =head2
17362 #: ../src/guestfs-actions.pod:7023
17363 msgid "guestfs_upload_offset"
17364 msgstr ""
17365
17366 #. type: verbatim
17367 #: ../src/guestfs-actions.pod:7025
17368 #, no-wrap
17369 msgid ""
17370 " int\n"
17371 " guestfs_upload_offset (guestfs_h *g,\n"
17372 "                        const char *filename,\n"
17373 "                        const char *remotefilename,\n"
17374 "                        int64_t offset);\n"
17375 "\n"
17376 msgstr ""
17377
17378 #. type: textblock
17379 #: ../src/guestfs-actions.pod:7034 ../fish/guestfish-actions.pod:4681
17380 msgid ""
17381 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
17382 "The intention is to overwrite parts of existing files or devices, although "
17383 "if a non-existant file is specified then it is created with a \"hole\" "
17384 "before C<offset>.  The size of the data written is implicit in the size of "
17385 "the source C<filename>."
17386 msgstr ""
17387
17388 #. type: textblock
17389 #: ../src/guestfs-actions.pod:7041
17390 msgid ""
17391 "Note that there is no limit on the amount of data that can be uploaded with "
17392 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
17393 "full amount unless an error occurs."
17394 msgstr ""
17395
17396 #. type: textblock
17397 #: ../src/guestfs-actions.pod:7046
17398 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
17399 msgstr ""
17400
17401 #. type: =head2
17402 #: ../src/guestfs-actions.pod:7057
17403 msgid "guestfs_utimens"
17404 msgstr ""
17405
17406 #. type: verbatim
17407 #: ../src/guestfs-actions.pod:7059
17408 #, no-wrap
17409 msgid ""
17410 " int\n"
17411 " guestfs_utimens (guestfs_h *g,\n"
17412 "                  const char *path,\n"
17413 "                  int64_t atsecs,\n"
17414 "                  int64_t atnsecs,\n"
17415 "                  int64_t mtsecs,\n"
17416 "                  int64_t mtnsecs);\n"
17417 "\n"
17418 msgstr ""
17419
17420 #. type: textblock
17421 #: ../src/guestfs-actions.pod:7067 ../fish/guestfish-actions.pod:4701
17422 msgid "This command sets the timestamps of a file with nanosecond precision."
17423 msgstr ""
17424
17425 #. type: textblock
17426 #: ../src/guestfs-actions.pod:7070 ../fish/guestfish-actions.pod:4704
17427 msgid ""
17428 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
17429 "from the epoch."
17430 msgstr ""
17431
17432 #. type: textblock
17433 #: ../src/guestfs-actions.pod:7073 ../fish/guestfish-actions.pod:4707
17434 msgid ""
17435 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
17436 "nanoseconds from the epoch."
17437 msgstr ""
17438
17439 #. type: textblock
17440 #: ../src/guestfs-actions.pod:7076 ../fish/guestfish-actions.pod:4710
17441 msgid ""
17442 "If the C<*nsecs> field contains the special value C<-1> then the "
17443 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
17444 "ignored in this case)."
17445 msgstr ""
17446
17447 #. type: textblock
17448 #: ../src/guestfs-actions.pod:7080 ../fish/guestfish-actions.pod:4714
17449 msgid ""
17450 "If the C<*nsecs> field contains the special value C<-2> then the "
17451 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
17452 "in this case)."
17453 msgstr ""
17454
17455 #. type: =head2
17456 #: ../src/guestfs-actions.pod:7088 ../src/guestfs-structs.pod:175
17457 msgid "guestfs_version"
17458 msgstr ""
17459
17460 #. type: verbatim
17461 #: ../src/guestfs-actions.pod:7090
17462 #, no-wrap
17463 msgid ""
17464 " struct guestfs_version *\n"
17465 " guestfs_version (guestfs_h *g);\n"
17466 "\n"
17467 msgstr ""
17468
17469 #. type: textblock
17470 #: ../src/guestfs-actions.pod:7093 ../fish/guestfish-actions.pod:4722
17471 msgid "Return the libguestfs version number that the program is linked against."
17472 msgstr ""
17473
17474 #. type: textblock
17475 #: ../src/guestfs-actions.pod:7096 ../fish/guestfish-actions.pod:4725
17476 msgid ""
17477 "Note that because of dynamic linking this is not necessarily the version of "
17478 "libguestfs that you compiled against.  You can compile the program, and then "
17479 "at runtime dynamically link against a completely different C<libguestfs.so> "
17480 "library."
17481 msgstr ""
17482
17483 #. type: textblock
17484 #: ../src/guestfs-actions.pod:7101 ../fish/guestfish-actions.pod:4730
17485 msgid ""
17486 "This call was added in version C<1.0.58>.  In previous versions of "
17487 "libguestfs there was no way to get the version number.  From C code you can "
17488 "use dynamic linker functions to find out if this symbol exists (if it "
17489 "doesn't, then it's an earlier version)."
17490 msgstr ""
17491
17492 #. type: textblock
17493 #: ../src/guestfs-actions.pod:7107 ../fish/guestfish-actions.pod:4736
17494 msgid ""
17495 "The call returns a structure with four elements.  The first three (C<major>, "
17496 "C<minor> and C<release>) are numbers and correspond to the usual version "
17497 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
17498 "but may be used for distro-specific information."
17499 msgstr ""
17500
17501 #. type: textblock
17502 #: ../src/guestfs-actions.pod:7113 ../fish/guestfish-actions.pod:4742
17503 msgid "To construct the original version string: C<$major.$minor.$release$extra>"
17504 msgstr ""
17505
17506 #. type: textblock
17507 #: ../src/guestfs-actions.pod:7116 ../fish/guestfish-actions.pod:4745
17508 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
17509 msgstr ""
17510
17511 #. type: textblock
17512 #: ../src/guestfs-actions.pod:7118
17513 msgid ""
17514 "I<Note:> Don't use this call to test for availability of features.  In "
17515 "enterprise distributions we backport features from later versions into "
17516 "earlier versions, making this an unreliable way to test for features.  Use "
17517 "C<guestfs_available> instead."
17518 msgstr ""
17519
17520 #. type: textblock
17521 #: ../src/guestfs-actions.pod:7124
17522 msgid ""
17523 "This function returns a C<struct guestfs_version *>, or NULL if there was an "
17524 "error.  I<The caller must call C<guestfs_free_version> after use>."
17525 msgstr ""
17526
17527 #. type: textblock
17528 #: ../src/guestfs-actions.pod:7128
17529 msgid "(Added in 1.0.58)"
17530 msgstr ""
17531
17532 #. type: =head2
17533 #: ../src/guestfs-actions.pod:7130
17534 msgid "guestfs_vfs_label"
17535 msgstr ""
17536
17537 #. type: verbatim
17538 #: ../src/guestfs-actions.pod:7132
17539 #, no-wrap
17540 msgid ""
17541 " char *\n"
17542 " guestfs_vfs_label (guestfs_h *g,\n"
17543 "                    const char *device);\n"
17544 "\n"
17545 msgstr ""
17546
17547 #. type: textblock
17548 #: ../src/guestfs-actions.pod:7136 ../fish/guestfish-actions.pod:4757
17549 msgid "This returns the filesystem label of the filesystem on C<device>."
17550 msgstr ""
17551
17552 #. type: textblock
17553 #: ../src/guestfs-actions.pod:7139 ../fish/guestfish-actions.pod:4760
17554 msgid "If the filesystem is unlabeled, this returns the empty string."
17555 msgstr ""
17556
17557 #. type: textblock
17558 #: ../src/guestfs-actions.pod:7141
17559 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
17560 msgstr ""
17561
17562 #. type: textblock
17563 #: ../src/guestfs-actions.pod:7146 ../src/guestfs-actions.pod:7183
17564 msgid "(Added in 1.3.18)"
17565 msgstr ""
17566
17567 #. type: =head2
17568 #: ../src/guestfs-actions.pod:7148
17569 msgid "guestfs_vfs_type"
17570 msgstr ""
17571
17572 #. type: verbatim
17573 #: ../src/guestfs-actions.pod:7150
17574 #, no-wrap
17575 msgid ""
17576 " char *\n"
17577 " guestfs_vfs_type (guestfs_h *g,\n"
17578 "                   const char *device);\n"
17579 "\n"
17580 msgstr ""
17581
17582 #. type: textblock
17583 #: ../src/guestfs-actions.pod:7154 ../fish/guestfish-actions.pod:4768
17584 msgid ""
17585 "This command gets the filesystem type corresponding to the filesystem on "
17586 "C<device>."
17587 msgstr ""
17588
17589 #. type: textblock
17590 #: ../src/guestfs-actions.pod:7157 ../fish/guestfish-actions.pod:4771
17591 msgid ""
17592 "For most filesystems, the result is the name of the Linux VFS module which "
17593 "would be used to mount this filesystem if you mounted it without specifying "
17594 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
17595 msgstr ""
17596
17597 #. type: =head2
17598 #: ../src/guestfs-actions.pod:7167
17599 msgid "guestfs_vfs_uuid"
17600 msgstr ""
17601
17602 #. type: verbatim
17603 #: ../src/guestfs-actions.pod:7169
17604 #, no-wrap
17605 msgid ""
17606 " char *\n"
17607 " guestfs_vfs_uuid (guestfs_h *g,\n"
17608 "                   const char *device);\n"
17609 "\n"
17610 msgstr ""
17611
17612 #. type: textblock
17613 #: ../src/guestfs-actions.pod:7173 ../fish/guestfish-actions.pod:4780
17614 msgid "This returns the filesystem UUID of the filesystem on C<device>."
17615 msgstr ""
17616
17617 #. type: textblock
17618 #: ../src/guestfs-actions.pod:7176 ../fish/guestfish-actions.pod:4783
17619 msgid "If the filesystem does not have a UUID, this returns the empty string."
17620 msgstr ""
17621
17622 #. type: textblock
17623 #: ../src/guestfs-actions.pod:7178
17624 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
17625 msgstr ""
17626
17627 #. type: =head2
17628 #: ../src/guestfs-actions.pod:7185
17629 msgid "guestfs_vg_activate"
17630 msgstr ""
17631
17632 #. type: verbatim
17633 #: ../src/guestfs-actions.pod:7187
17634 #, no-wrap
17635 msgid ""
17636 " int\n"
17637 " guestfs_vg_activate (guestfs_h *g,\n"
17638 "                      int activate,\n"
17639 "                      char *const *volgroups);\n"
17640 "\n"
17641 msgstr ""
17642
17643 #. type: textblock
17644 #: ../src/guestfs-actions.pod:7192 ../fish/guestfish-actions.pod:4791
17645 msgid ""
17646 "This command activates or (if C<activate> is false) deactivates all logical "
17647 "volumes in the listed volume groups C<volgroups>.  If activated, then they "
17648 "are made known to the kernel, ie. they appear as C</dev/mapper> devices.  If "
17649 "deactivated, then those devices disappear."
17650 msgstr ""
17651
17652 #. type: textblock
17653 #: ../src/guestfs-actions.pod:7198 ../fish/guestfish-actions.pod:4797
17654 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
17655 msgstr ""
17656
17657 #. type: textblock
17658 #: ../src/guestfs-actions.pod:7200 ../fish/guestfish-actions.pod:4799
17659 msgid ""
17660 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
17661 "activated or deactivated."
17662 msgstr ""
17663
17664 #. type: =head2
17665 #: ../src/guestfs-actions.pod:7207
17666 msgid "guestfs_vg_activate_all"
17667 msgstr ""
17668
17669 #. type: verbatim
17670 #: ../src/guestfs-actions.pod:7209
17671 #, no-wrap
17672 msgid ""
17673 " int\n"
17674 " guestfs_vg_activate_all (guestfs_h *g,\n"
17675 "                          int activate);\n"
17676 "\n"
17677 msgstr ""
17678
17679 #. type: textblock
17680 #: ../src/guestfs-actions.pod:7213 ../fish/guestfish-actions.pod:4806
17681 msgid ""
17682 "This command activates or (if C<activate> is false) deactivates all logical "
17683 "volumes in all volume groups.  If activated, then they are made known to the "
17684 "kernel, ie. they appear as C</dev/mapper> devices.  If deactivated, then "
17685 "those devices disappear."
17686 msgstr ""
17687
17688 #. type: textblock
17689 #: ../src/guestfs-actions.pod:7219 ../fish/guestfish-actions.pod:4812
17690 msgid "This command is the same as running C<vgchange -a y|n>"
17691 msgstr ""
17692
17693 #. type: =head2
17694 #: ../src/guestfs-actions.pod:7225
17695 msgid "guestfs_vgcreate"
17696 msgstr ""
17697
17698 #. type: verbatim
17699 #: ../src/guestfs-actions.pod:7227
17700 #, no-wrap
17701 msgid ""
17702 " int\n"
17703 " guestfs_vgcreate (guestfs_h *g,\n"
17704 "                   const char *volgroup,\n"
17705 "                   char *const *physvols);\n"
17706 "\n"
17707 msgstr ""
17708
17709 #. type: textblock
17710 #: ../src/guestfs-actions.pod:7232 ../fish/guestfish-actions.pod:4818
17711 msgid ""
17712 "This creates an LVM volume group called C<volgroup> from the non-empty list "
17713 "of physical volumes C<physvols>."
17714 msgstr ""
17715
17716 #. type: =head2
17717 #: ../src/guestfs-actions.pod:7239
17718 msgid "guestfs_vglvuuids"
17719 msgstr ""
17720
17721 #. type: verbatim
17722 #: ../src/guestfs-actions.pod:7241
17723 #, no-wrap
17724 msgid ""
17725 " char **\n"
17726 " guestfs_vglvuuids (guestfs_h *g,\n"
17727 "                    const char *vgname);\n"
17728 "\n"
17729 msgstr ""
17730
17731 #. type: textblock
17732 #: ../src/guestfs-actions.pod:7245 ../fish/guestfish-actions.pod:4825
17733 msgid ""
17734 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
17735 "volumes created in this volume group."
17736 msgstr ""
17737
17738 #. type: textblock
17739 #: ../src/guestfs-actions.pod:7248
17740 msgid ""
17741 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
17742 "associate logical volumes and volume groups."
17743 msgstr ""
17744
17745 #. type: textblock
17746 #: ../src/guestfs-actions.pod:7251
17747 msgid "See also C<guestfs_vgpvuuids>."
17748 msgstr ""
17749
17750 #. type: =head2
17751 #: ../src/guestfs-actions.pod:7259
17752 msgid "guestfs_vgpvuuids"
17753 msgstr ""
17754
17755 #. type: verbatim
17756 #: ../src/guestfs-actions.pod:7261
17757 #, no-wrap
17758 msgid ""
17759 " char **\n"
17760 " guestfs_vgpvuuids (guestfs_h *g,\n"
17761 "                    const char *vgname);\n"
17762 "\n"
17763 msgstr ""
17764
17765 #. type: textblock
17766 #: ../src/guestfs-actions.pod:7265 ../fish/guestfish-actions.pod:4837
17767 msgid ""
17768 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
17769 "volumes that this volume group resides on."
17770 msgstr ""
17771
17772 #. type: textblock
17773 #: ../src/guestfs-actions.pod:7268
17774 msgid ""
17775 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
17776 "associate physical volumes and volume groups."
17777 msgstr ""
17778
17779 #. type: textblock
17780 #: ../src/guestfs-actions.pod:7271
17781 msgid "See also C<guestfs_vglvuuids>."
17782 msgstr ""
17783
17784 #. type: =head2
17785 #: ../src/guestfs-actions.pod:7279
17786 msgid "guestfs_vgremove"
17787 msgstr ""
17788
17789 #. type: verbatim
17790 #: ../src/guestfs-actions.pod:7281
17791 #, no-wrap
17792 msgid ""
17793 " int\n"
17794 " guestfs_vgremove (guestfs_h *g,\n"
17795 "                   const char *vgname);\n"
17796 "\n"
17797 msgstr ""
17798
17799 #. type: textblock
17800 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4849
17801 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
17802 msgstr ""
17803
17804 #. type: textblock
17805 #: ../src/guestfs-actions.pod:7287 ../fish/guestfish-actions.pod:4851
17806 msgid "This also forcibly removes all logical volumes in the volume group (if any)."
17807 msgstr ""
17808
17809 #. type: =head2
17810 #: ../src/guestfs-actions.pod:7294
17811 msgid "guestfs_vgrename"
17812 msgstr ""
17813
17814 #. type: verbatim
17815 #: ../src/guestfs-actions.pod:7296
17816 #, no-wrap
17817 msgid ""
17818 " int\n"
17819 " guestfs_vgrename (guestfs_h *g,\n"
17820 "                   const char *volgroup,\n"
17821 "                   const char *newvolgroup);\n"
17822 "\n"
17823 msgstr ""
17824
17825 #. type: textblock
17826 #: ../src/guestfs-actions.pod:7301 ../fish/guestfish-actions.pod:4858
17827 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
17828 msgstr ""
17829
17830 #. type: =head2
17831 #: ../src/guestfs-actions.pod:7307
17832 msgid "guestfs_vgs"
17833 msgstr ""
17834
17835 #. type: verbatim
17836 #: ../src/guestfs-actions.pod:7309
17837 #, no-wrap
17838 msgid ""
17839 " char **\n"
17840 " guestfs_vgs (guestfs_h *g);\n"
17841 "\n"
17842 msgstr ""
17843
17844 #. type: textblock
17845 #: ../src/guestfs-actions.pod:7312 ../fish/guestfish-actions.pod:4864
17846 msgid ""
17847 "List all the volumes groups detected.  This is the equivalent of the "
17848 "L<vgs(8)> command."
17849 msgstr ""
17850
17851 #. type: textblock
17852 #: ../src/guestfs-actions.pod:7315 ../fish/guestfish-actions.pod:4867
17853 msgid ""
17854 "This returns a list of just the volume group names that were detected "
17855 "(eg. C<VolGroup00>)."
17856 msgstr ""
17857
17858 #. type: textblock
17859 #: ../src/guestfs-actions.pod:7318
17860 msgid "See also C<guestfs_vgs_full>."
17861 msgstr ""
17862
17863 #. type: =head2
17864 #: ../src/guestfs-actions.pod:7326
17865 msgid "guestfs_vgs_full"
17866 msgstr ""
17867
17868 #. type: verbatim
17869 #: ../src/guestfs-actions.pod:7328
17870 #, no-wrap
17871 msgid ""
17872 " struct guestfs_lvm_vg_list *\n"
17873 " guestfs_vgs_full (guestfs_h *g);\n"
17874 "\n"
17875 msgstr ""
17876
17877 #. type: textblock
17878 #: ../src/guestfs-actions.pod:7331 ../fish/guestfish-actions.pod:4876
17879 msgid ""
17880 "List all the volumes groups detected.  This is the equivalent of the "
17881 "L<vgs(8)> command.  The \"full\" version includes all fields."
17882 msgstr ""
17883
17884 #. type: textblock
17885 #: ../src/guestfs-actions.pod:7334
17886 msgid ""
17887 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
17888 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
17889 "use>."
17890 msgstr ""
17891
17892 #. type: =head2
17893 #: ../src/guestfs-actions.pod:7340
17894 msgid "guestfs_vgscan"
17895 msgstr ""
17896
17897 #. type: verbatim
17898 #: ../src/guestfs-actions.pod:7342
17899 #, no-wrap
17900 msgid ""
17901 " int\n"
17902 " guestfs_vgscan (guestfs_h *g);\n"
17903 "\n"
17904 msgstr ""
17905
17906 #. type: textblock
17907 #: ../src/guestfs-actions.pod:7345 ../fish/guestfish-actions.pod:4883
17908 msgid ""
17909 "This rescans all block devices and rebuilds the list of LVM physical "
17910 "volumes, volume groups and logical volumes."
17911 msgstr ""
17912
17913 #. type: =head2
17914 #: ../src/guestfs-actions.pod:7352
17915 msgid "guestfs_vguuid"
17916 msgstr ""
17917
17918 #. type: verbatim
17919 #: ../src/guestfs-actions.pod:7354
17920 #, no-wrap
17921 msgid ""
17922 " char *\n"
17923 " guestfs_vguuid (guestfs_h *g,\n"
17924 "                 const char *vgname);\n"
17925 "\n"
17926 msgstr ""
17927
17928 #. type: textblock
17929 #: ../src/guestfs-actions.pod:7358 ../fish/guestfish-actions.pod:4890
17930 msgid "This command returns the UUID of the LVM VG named C<vgname>."
17931 msgstr ""
17932
17933 #. type: =head2
17934 #: ../src/guestfs-actions.pod:7365
17935 msgid "guestfs_wait_ready"
17936 msgstr ""
17937
17938 #. type: verbatim
17939 #: ../src/guestfs-actions.pod:7367
17940 #, no-wrap
17941 msgid ""
17942 " int\n"
17943 " guestfs_wait_ready (guestfs_h *g);\n"
17944 "\n"
17945 msgstr ""
17946
17947 #. type: textblock
17948 #: ../src/guestfs-actions.pod:7370
17949 msgid "This function is a no op."
17950 msgstr ""
17951
17952 #. type: textblock
17953 #: ../src/guestfs-actions.pod:7372
17954 msgid ""
17955 "In versions of the API E<lt> 1.0.71 you had to call this function just after "
17956 "calling C<guestfs_launch> to wait for the launch to complete.  However this "
17957 "is no longer necessary because C<guestfs_launch> now does the waiting."
17958 msgstr ""
17959
17960 #. type: textblock
17961 #: ../src/guestfs-actions.pod:7377
17962 msgid ""
17963 "If you see any calls to this function in code then you can just remove them, "
17964 "unless you want to retain compatibility with older versions of the API."
17965 msgstr ""
17966
17967 #. type: textblock
17968 #: ../src/guestfs-actions.pod:7383
17969 msgid "This function is deprecated.  In new code, use the C<launch> call instead."
17970 msgstr ""
17971
17972 #. type: =head2
17973 #: ../src/guestfs-actions.pod:7392
17974 msgid "guestfs_wc_c"
17975 msgstr ""
17976
17977 #. type: verbatim
17978 #: ../src/guestfs-actions.pod:7394
17979 #, no-wrap
17980 msgid ""
17981 " int\n"
17982 " guestfs_wc_c (guestfs_h *g,\n"
17983 "               const char *path);\n"
17984 "\n"
17985 msgstr ""
17986
17987 #. type: textblock
17988 #: ../src/guestfs-actions.pod:7398 ../fish/guestfish-actions.pod:4896
17989 msgid ""
17990 "This command counts the characters in a file, using the C<wc -c> external "
17991 "command."
17992 msgstr ""
17993
17994 #. type: =head2
17995 #: ../src/guestfs-actions.pod:7405
17996 msgid "guestfs_wc_l"
17997 msgstr ""
17998
17999 #. type: verbatim
18000 #: ../src/guestfs-actions.pod:7407
18001 #, no-wrap
18002 msgid ""
18003 " int\n"
18004 " guestfs_wc_l (guestfs_h *g,\n"
18005 "               const char *path);\n"
18006 "\n"
18007 msgstr ""
18008
18009 #. type: textblock
18010 #: ../src/guestfs-actions.pod:7411 ../fish/guestfish-actions.pod:4903
18011 msgid ""
18012 "This command counts the lines in a file, using the C<wc -l> external "
18013 "command."
18014 msgstr ""
18015
18016 #. type: =head2
18017 #: ../src/guestfs-actions.pod:7418
18018 msgid "guestfs_wc_w"
18019 msgstr ""
18020
18021 #. type: verbatim
18022 #: ../src/guestfs-actions.pod:7420
18023 #, no-wrap
18024 msgid ""
18025 " int\n"
18026 " guestfs_wc_w (guestfs_h *g,\n"
18027 "               const char *path);\n"
18028 "\n"
18029 msgstr ""
18030
18031 #. type: textblock
18032 #: ../src/guestfs-actions.pod:7424 ../fish/guestfish-actions.pod:4910
18033 msgid ""
18034 "This command counts the words in a file, using the C<wc -w> external "
18035 "command."
18036 msgstr ""
18037
18038 #. type: =head2
18039 #: ../src/guestfs-actions.pod:7431
18040 msgid "guestfs_write"
18041 msgstr ""
18042
18043 #. type: verbatim
18044 #: ../src/guestfs-actions.pod:7433
18045 #, no-wrap
18046 msgid ""
18047 " int\n"
18048 " guestfs_write (guestfs_h *g,\n"
18049 "                const char *path,\n"
18050 "                const char *content,\n"
18051 "                size_t content_size);\n"
18052 "\n"
18053 msgstr ""
18054
18055 #. type: textblock
18056 #: ../src/guestfs-actions.pod:7439 ../fish/guestfish-actions.pod:4917
18057 msgid ""
18058 "This call creates a file called C<path>.  The content of the file is the "
18059 "string C<content> (which can contain any 8 bit data)."
18060 msgstr ""
18061
18062 #. type: =head2
18063 #: ../src/guestfs-actions.pod:7449
18064 msgid "guestfs_write_file"
18065 msgstr ""
18066
18067 #. type: verbatim
18068 #: ../src/guestfs-actions.pod:7451
18069 #, no-wrap
18070 msgid ""
18071 " int\n"
18072 " guestfs_write_file (guestfs_h *g,\n"
18073 "                     const char *path,\n"
18074 "                     const char *content,\n"
18075 "                     int size);\n"
18076 "\n"
18077 msgstr ""
18078
18079 #. type: textblock
18080 #: ../src/guestfs-actions.pod:7457 ../fish/guestfish-actions.pod:4927
18081 msgid ""
18082 "This call creates a file called C<path>.  The contents of the file is the "
18083 "string C<content> (which can contain any 8 bit data), with length C<size>."
18084 msgstr ""
18085
18086 #. type: textblock
18087 #: ../src/guestfs-actions.pod:7461 ../fish/guestfish-actions.pod:4931
18088 msgid ""
18089 "As a special case, if C<size> is C<0> then the length is calculated using "
18090 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
18091 msgstr ""
18092
18093 #. type: textblock
18094 #: ../src/guestfs-actions.pod:7465 ../fish/guestfish-actions.pod:4935
18095 msgid ""
18096 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
18097 "I<not> work, even if the length is specified."
18098 msgstr ""
18099
18100 #. type: textblock
18101 #: ../src/guestfs-actions.pod:7473 ../fish/guestfish-actions.pod:4941
18102 msgid "This function is deprecated.  In new code, use the C<write> call instead."
18103 msgstr ""
18104
18105 #. type: =head2
18106 #: ../src/guestfs-actions.pod:7482
18107 msgid "guestfs_zegrep"
18108 msgstr ""
18109
18110 #. type: verbatim
18111 #: ../src/guestfs-actions.pod:7484
18112 #, no-wrap
18113 msgid ""
18114 " char **\n"
18115 " guestfs_zegrep (guestfs_h *g,\n"
18116 "                 const char *regex,\n"
18117 "                 const char *path);\n"
18118 "\n"
18119 msgstr ""
18120
18121 #. type: textblock
18122 #: ../src/guestfs-actions.pod:7489 ../fish/guestfish-actions.pod:4952
18123 msgid "This calls the external C<zegrep> program and returns the matching lines."
18124 msgstr ""
18125
18126 #. type: =head2
18127 #: ../src/guestfs-actions.pod:7501
18128 msgid "guestfs_zegrepi"
18129 msgstr ""
18130
18131 #. type: verbatim
18132 #: ../src/guestfs-actions.pod:7503
18133 #, no-wrap
18134 msgid ""
18135 " char **\n"
18136 " guestfs_zegrepi (guestfs_h *g,\n"
18137 "                  const char *regex,\n"
18138 "                  const char *path);\n"
18139 "\n"
18140 msgstr ""
18141
18142 #. type: textblock
18143 #: ../src/guestfs-actions.pod:7508 ../fish/guestfish-actions.pod:4962
18144 msgid "This calls the external C<zegrep -i> program and returns the matching lines."
18145 msgstr ""
18146
18147 #. type: =head2
18148 #: ../src/guestfs-actions.pod:7520
18149 msgid "guestfs_zero"
18150 msgstr ""
18151
18152 #. type: verbatim
18153 #: ../src/guestfs-actions.pod:7522
18154 #, no-wrap
18155 msgid ""
18156 " int\n"
18157 " guestfs_zero (guestfs_h *g,\n"
18158 "               const char *device);\n"
18159 "\n"
18160 msgstr ""
18161
18162 #. type: textblock
18163 #: ../src/guestfs-actions.pod:7526 ../fish/guestfish-actions.pod:4972
18164 msgid "This command writes zeroes over the first few blocks of C<device>."
18165 msgstr ""
18166
18167 #. type: textblock
18168 #: ../src/guestfs-actions.pod:7528 ../fish/guestfish-actions.pod:4974
18169 msgid ""
18170 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
18171 "securely wipe the device).  It should be sufficient to remove any partition "
18172 "tables, filesystem superblocks and so on."
18173 msgstr ""
18174
18175 #. type: textblock
18176 #: ../src/guestfs-actions.pod:7532
18177 msgid ""
18178 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
18179 "C<guestfs_is_zero_device>"
18180 msgstr ""
18181
18182 #. type: =head2
18183 #: ../src/guestfs-actions.pod:7544
18184 msgid "guestfs_zero_device"
18185 msgstr ""
18186
18187 #. type: verbatim
18188 #: ../src/guestfs-actions.pod:7546
18189 #, no-wrap
18190 msgid ""
18191 " int\n"
18192 " guestfs_zero_device (guestfs_h *g,\n"
18193 "                      const char *device);\n"
18194 "\n"
18195 msgstr ""
18196
18197 #. type: textblock
18198 #: ../src/guestfs-actions.pod:7550
18199 msgid ""
18200 "This command writes zeroes over the entire C<device>.  Compare with "
18201 "C<guestfs_zero> which just zeroes the first few blocks of a device."
18202 msgstr ""
18203
18204 #. type: textblock
18205 #: ../src/guestfs-actions.pod:7564
18206 msgid "(Added in 1.3.1)"
18207 msgstr ""
18208
18209 #. type: =head2
18210 #: ../src/guestfs-actions.pod:7566
18211 msgid "guestfs_zerofree"
18212 msgstr ""
18213
18214 #. type: verbatim
18215 #: ../src/guestfs-actions.pod:7568
18216 #, no-wrap
18217 msgid ""
18218 " int\n"
18219 " guestfs_zerofree (guestfs_h *g,\n"
18220 "                   const char *device);\n"
18221 "\n"
18222 msgstr ""
18223
18224 #. type: textblock
18225 #: ../src/guestfs-actions.pod:7572 ../fish/guestfish-actions.pod:4996
18226 msgid ""
18227 "This runs the I<zerofree> program on C<device>.  This program claims to zero "
18228 "unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
18229 "possible to compress the filesystem more effectively."
18230 msgstr ""
18231
18232 #. type: textblock
18233 #: ../src/guestfs-actions.pod:7577 ../fish/guestfish-actions.pod:5001
18234 msgid "You should B<not> run this program if the filesystem is mounted."
18235 msgstr ""
18236
18237 #. type: textblock
18238 #: ../src/guestfs-actions.pod:7580 ../fish/guestfish-actions.pod:5004
18239 msgid ""
18240 "It is possible that using this program can damage the filesystem or data on "
18241 "the filesystem."
18242 msgstr ""
18243
18244 #. type: =head2
18245 #: ../src/guestfs-actions.pod:7587
18246 msgid "guestfs_zfgrep"
18247 msgstr ""
18248
18249 #. type: verbatim
18250 #: ../src/guestfs-actions.pod:7589
18251 #, no-wrap
18252 msgid ""
18253 " char **\n"
18254 " guestfs_zfgrep (guestfs_h *g,\n"
18255 "                 const char *pattern,\n"
18256 "                 const char *path);\n"
18257 "\n"
18258 msgstr ""
18259
18260 #. type: textblock
18261 #: ../src/guestfs-actions.pod:7594 ../fish/guestfish-actions.pod:5011
18262 msgid "This calls the external C<zfgrep> program and returns the matching lines."
18263 msgstr ""
18264
18265 #. type: =head2
18266 #: ../src/guestfs-actions.pod:7606
18267 msgid "guestfs_zfgrepi"
18268 msgstr ""
18269
18270 #. type: verbatim
18271 #: ../src/guestfs-actions.pod:7608
18272 #, no-wrap
18273 msgid ""
18274 " char **\n"
18275 " guestfs_zfgrepi (guestfs_h *g,\n"
18276 "                  const char *pattern,\n"
18277 "                  const char *path);\n"
18278 "\n"
18279 msgstr ""
18280
18281 #. type: textblock
18282 #: ../src/guestfs-actions.pod:7613 ../fish/guestfish-actions.pod:5021
18283 msgid "This calls the external C<zfgrep -i> program and returns the matching lines."
18284 msgstr ""
18285
18286 #. type: =head2
18287 #: ../src/guestfs-actions.pod:7625
18288 msgid "guestfs_zfile"
18289 msgstr ""
18290
18291 #. type: verbatim
18292 #: ../src/guestfs-actions.pod:7627
18293 #, no-wrap
18294 msgid ""
18295 " char *\n"
18296 " guestfs_zfile (guestfs_h *g,\n"
18297 "                const char *meth,\n"
18298 "                const char *path);\n"
18299 "\n"
18300 msgstr ""
18301
18302 #. type: textblock
18303 #: ../src/guestfs-actions.pod:7632 ../fish/guestfish-actions.pod:5031
18304 msgid "This command runs C<file> after first decompressing C<path> using C<method>."
18305 msgstr ""
18306
18307 #. type: textblock
18308 #: ../src/guestfs-actions.pod:7635 ../fish/guestfish-actions.pod:5034
18309 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
18310 msgstr ""
18311
18312 #. type: textblock
18313 #: ../src/guestfs-actions.pod:7637
18314 msgid ""
18315 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
18316 "files."
18317 msgstr ""
18318
18319 #. type: textblock
18320 #: ../src/guestfs-actions.pod:7643 ../fish/guestfish-actions.pod:5039
18321 msgid "This function is deprecated.  In new code, use the C<file> call instead."
18322 msgstr ""
18323
18324 #. type: =head2
18325 #: ../src/guestfs-actions.pod:7652
18326 msgid "guestfs_zgrep"
18327 msgstr ""
18328
18329 #. type: verbatim
18330 #: ../src/guestfs-actions.pod:7654
18331 #, no-wrap
18332 msgid ""
18333 " char **\n"
18334 " guestfs_zgrep (guestfs_h *g,\n"
18335 "                const char *regex,\n"
18336 "                const char *path);\n"
18337 "\n"
18338 msgstr ""
18339
18340 #. type: textblock
18341 #: ../src/guestfs-actions.pod:7659 ../fish/guestfish-actions.pod:5050
18342 msgid "This calls the external C<zgrep> program and returns the matching lines."
18343 msgstr ""
18344
18345 #. type: =head2
18346 #: ../src/guestfs-actions.pod:7671
18347 msgid "guestfs_zgrepi"
18348 msgstr ""
18349
18350 #. type: verbatim
18351 #: ../src/guestfs-actions.pod:7673
18352 #, no-wrap
18353 msgid ""
18354 " char **\n"
18355 " guestfs_zgrepi (guestfs_h *g,\n"
18356 "                 const char *regex,\n"
18357 "                 const char *path);\n"
18358 "\n"
18359 msgstr ""
18360
18361 #. type: textblock
18362 #: ../src/guestfs-actions.pod:7678 ../fish/guestfish-actions.pod:5060
18363 msgid "This calls the external C<zgrep -i> program and returns the matching lines."
18364 msgstr ""
18365
18366 #. type: =item
18367 #: ../src/guestfs-availability.pod:3
18368 msgid "B<augeas>"
18369 msgstr ""
18370
18371 #. type: textblock
18372 #: ../src/guestfs-availability.pod:5
18373 msgid ""
18374 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
18375 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
18376 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
18377 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
18378 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
18379 msgstr ""
18380
18381 #. type: =item
18382 #: ../src/guestfs-availability.pod:21
18383 msgid "B<inotify>"
18384 msgstr ""
18385
18386 #. type: textblock
18387 #: ../src/guestfs-availability.pod:23
18388 msgid ""
18389 "The following functions: L</guestfs_inotify_add_watch> "
18390 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init> "
18391 "L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
18392 msgstr ""
18393
18394 #. type: =item
18395 #: ../src/guestfs-availability.pod:31
18396 msgid "B<linuxfsuuid>"
18397 msgstr ""
18398
18399 #. type: textblock
18400 #: ../src/guestfs-availability.pod:33
18401 msgid ""
18402 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
18403 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
18404 msgstr ""
18405
18406 #. type: =item
18407 #: ../src/guestfs-availability.pod:40
18408 msgid "B<linuxmodules>"
18409 msgstr ""
18410
18411 #. type: textblock
18412 #: ../src/guestfs-availability.pod:42
18413 msgid "The following functions: L</guestfs_modprobe>"
18414 msgstr ""
18415
18416 #. type: =item
18417 #: ../src/guestfs-availability.pod:45
18418 msgid "B<linuxxattrs>"
18419 msgstr ""
18420
18421 #. type: textblock
18422 #: ../src/guestfs-availability.pod:47
18423 msgid ""
18424 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
18425 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
18426 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
18427 "L</guestfs_setxattr>"
18428 msgstr ""
18429
18430 #. type: =item
18431 #: ../src/guestfs-availability.pod:58
18432 msgid "B<luks>"
18433 msgstr ""
18434
18435 #. type: textblock
18436 #: ../src/guestfs-availability.pod:60
18437 msgid ""
18438 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
18439 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
18440 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
18441 msgstr ""
18442
18443 #. type: =item
18444 #: ../src/guestfs-availability.pod:69
18445 msgid "B<lvm2>"
18446 msgstr ""
18447
18448 #. type: textblock
18449 #: ../src/guestfs-availability.pod:71
18450 msgid ""
18451 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
18452 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
18453 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
18454 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
18455 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
18456 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
18457 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
18458 "L</guestfs_vgs_full>"
18459 msgstr ""
18460
18461 #. type: =item
18462 #: ../src/guestfs-availability.pod:94
18463 msgid "B<mknod>"
18464 msgstr ""
18465
18466 #. type: textblock
18467 #: ../src/guestfs-availability.pod:96
18468 msgid ""
18469 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
18470 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
18471 msgstr ""
18472
18473 #. type: =item
18474 #: ../src/guestfs-availability.pod:102
18475 msgid "B<ntfs3g>"
18476 msgstr ""
18477
18478 #. type: textblock
18479 #: ../src/guestfs-availability.pod:104
18480 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
18481 msgstr ""
18482
18483 #. type: =item
18484 #: ../src/guestfs-availability.pod:107
18485 msgid "B<ntfsprogs>"
18486 msgstr ""
18487
18488 #. type: textblock
18489 #: ../src/guestfs-availability.pod:109
18490 msgid "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_size>"
18491 msgstr ""
18492
18493 #. type: =item
18494 #: ../src/guestfs-availability.pod:113
18495 msgid "B<realpath>"
18496 msgstr ""
18497
18498 #. type: textblock
18499 #: ../src/guestfs-availability.pod:115
18500 msgid "The following functions: L</guestfs_realpath>"
18501 msgstr ""
18502
18503 #. type: =item
18504 #: ../src/guestfs-availability.pod:118
18505 msgid "B<scrub>"
18506 msgstr ""
18507
18508 #. type: textblock
18509 #: ../src/guestfs-availability.pod:120
18510 msgid ""
18511 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
18512 "L</guestfs_scrub_freespace>"
18513 msgstr ""
18514
18515 #. type: =item
18516 #: ../src/guestfs-availability.pod:125
18517 msgid "B<selinux>"
18518 msgstr ""
18519
18520 #. type: textblock
18521 #: ../src/guestfs-availability.pod:127
18522 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
18523 msgstr ""
18524
18525 #. type: =item
18526 #: ../src/guestfs-availability.pod:131
18527 msgid "B<xz>"
18528 msgstr ""
18529
18530 #. type: textblock
18531 #: ../src/guestfs-availability.pod:133
18532 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
18533 msgstr ""
18534
18535 #. type: =item
18536 #: ../src/guestfs-availability.pod:137
18537 msgid "B<zerofree>"
18538 msgstr ""
18539
18540 #. type: textblock
18541 #: ../src/guestfs-availability.pod:139
18542 msgid "The following functions: L</guestfs_zerofree>"
18543 msgstr ""
18544
18545 #. type: =head2
18546 #: ../src/guestfs-structs.pod:1
18547 msgid "guestfs_int_bool"
18548 msgstr ""
18549
18550 #. type: verbatim
18551 #: ../src/guestfs-structs.pod:3
18552 #, no-wrap
18553 msgid ""
18554 " struct guestfs_int_bool {\n"
18555 "   int32_t i;\n"
18556 "   int32_t b;\n"
18557 " };\n"
18558 " \n"
18559 msgstr ""
18560
18561 #. type: verbatim
18562 #: ../src/guestfs-structs.pod:8
18563 #, no-wrap
18564 msgid ""
18565 " struct guestfs_int_bool_list {\n"
18566 "   uint32_t len; /* Number of elements in list. */\n"
18567 "   struct guestfs_int_bool *val; /* Elements. */\n"
18568 " };\n"
18569 " \n"
18570 msgstr ""
18571
18572 #. type: verbatim
18573 #: ../src/guestfs-structs.pod:13
18574 #, no-wrap
18575 msgid ""
18576 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
18577 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
18578 "\n"
18579 msgstr ""
18580
18581 #. type: =head2
18582 #: ../src/guestfs-structs.pod:16
18583 msgid "guestfs_lvm_pv"
18584 msgstr ""
18585
18586 #. type: verbatim
18587 #: ../src/guestfs-structs.pod:18
18588 #, no-wrap
18589 msgid ""
18590 " struct guestfs_lvm_pv {\n"
18591 "   char *pv_name;\n"
18592 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18593 "*/\n"
18594 "   char pv_uuid[32];\n"
18595 "   char *pv_fmt;\n"
18596 "   uint64_t pv_size;\n"
18597 "   uint64_t dev_size;\n"
18598 "   uint64_t pv_free;\n"
18599 "   uint64_t pv_used;\n"
18600 "   char *pv_attr;\n"
18601 "   int64_t pv_pe_count;\n"
18602 "   int64_t pv_pe_alloc_count;\n"
18603 "   char *pv_tags;\n"
18604 "   uint64_t pe_start;\n"
18605 "   int64_t pv_mda_count;\n"
18606 "   uint64_t pv_mda_free;\n"
18607 " };\n"
18608 " \n"
18609 msgstr ""
18610
18611 #. type: verbatim
18612 #: ../src/guestfs-structs.pod:36
18613 #, no-wrap
18614 msgid ""
18615 " struct guestfs_lvm_pv_list {\n"
18616 "   uint32_t len; /* Number of elements in list. */\n"
18617 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
18618 " };\n"
18619 " \n"
18620 msgstr ""
18621
18622 #. type: verbatim
18623 #: ../src/guestfs-structs.pod:41
18624 #, no-wrap
18625 msgid ""
18626 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
18627 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
18628 "\n"
18629 msgstr ""
18630
18631 #. type: =head2
18632 #: ../src/guestfs-structs.pod:44
18633 msgid "guestfs_lvm_vg"
18634 msgstr ""
18635
18636 #. type: verbatim
18637 #: ../src/guestfs-structs.pod:46
18638 #, no-wrap
18639 msgid ""
18640 " struct guestfs_lvm_vg {\n"
18641 "   char *vg_name;\n"
18642 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18643 "*/\n"
18644 "   char vg_uuid[32];\n"
18645 "   char *vg_fmt;\n"
18646 "   char *vg_attr;\n"
18647 "   uint64_t vg_size;\n"
18648 "   uint64_t vg_free;\n"
18649 "   char *vg_sysid;\n"
18650 "   uint64_t vg_extent_size;\n"
18651 "   int64_t vg_extent_count;\n"
18652 "   int64_t vg_free_count;\n"
18653 "   int64_t max_lv;\n"
18654 "   int64_t max_pv;\n"
18655 "   int64_t pv_count;\n"
18656 "   int64_t lv_count;\n"
18657 "   int64_t snap_count;\n"
18658 "   int64_t vg_seqno;\n"
18659 "   char *vg_tags;\n"
18660 "   int64_t vg_mda_count;\n"
18661 "   uint64_t vg_mda_free;\n"
18662 " };\n"
18663 " \n"
18664 msgstr ""
18665
18666 #. type: verbatim
18667 #: ../src/guestfs-structs.pod:69
18668 #, no-wrap
18669 msgid ""
18670 " struct guestfs_lvm_vg_list {\n"
18671 "   uint32_t len; /* Number of elements in list. */\n"
18672 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
18673 " };\n"
18674 " \n"
18675 msgstr ""
18676
18677 #. type: verbatim
18678 #: ../src/guestfs-structs.pod:74
18679 #, no-wrap
18680 msgid ""
18681 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
18682 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
18683 "\n"
18684 msgstr ""
18685
18686 #. type: =head2
18687 #: ../src/guestfs-structs.pod:77
18688 msgid "guestfs_lvm_lv"
18689 msgstr ""
18690
18691 #. type: verbatim
18692 #: ../src/guestfs-structs.pod:79
18693 #, no-wrap
18694 msgid ""
18695 " struct guestfs_lvm_lv {\n"
18696 "   char *lv_name;\n"
18697 "   /* The next field is NOT nul-terminated, be careful when printing it: "
18698 "*/\n"
18699 "   char lv_uuid[32];\n"
18700 "   char *lv_attr;\n"
18701 "   int64_t lv_major;\n"
18702 "   int64_t lv_minor;\n"
18703 "   int64_t lv_kernel_major;\n"
18704 "   int64_t lv_kernel_minor;\n"
18705 "   uint64_t lv_size;\n"
18706 "   int64_t seg_count;\n"
18707 "   char *origin;\n"
18708 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18709 "   float snap_percent;\n"
18710 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
18711 "   float copy_percent;\n"
18712 "   char *move_pv;\n"
18713 "   char *lv_tags;\n"
18714 "   char *mirror_log;\n"
18715 "   char *modules;\n"
18716 " };\n"
18717 " \n"
18718 msgstr ""
18719
18720 #. type: verbatim
18721 #: ../src/guestfs-structs.pod:101
18722 #, no-wrap
18723 msgid ""
18724 " struct guestfs_lvm_lv_list {\n"
18725 "   uint32_t len; /* Number of elements in list. */\n"
18726 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
18727 " };\n"
18728 " \n"
18729 msgstr ""
18730
18731 #. type: verbatim
18732 #: ../src/guestfs-structs.pod:106
18733 #, no-wrap
18734 msgid ""
18735 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
18736 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
18737 "\n"
18738 msgstr ""
18739
18740 #. type: verbatim
18741 #: ../src/guestfs-structs.pod:111
18742 #, no-wrap
18743 msgid ""
18744 " struct guestfs_stat {\n"
18745 "   int64_t dev;\n"
18746 "   int64_t ino;\n"
18747 "   int64_t mode;\n"
18748 "   int64_t nlink;\n"
18749 "   int64_t uid;\n"
18750 "   int64_t gid;\n"
18751 "   int64_t rdev;\n"
18752 "   int64_t size;\n"
18753 "   int64_t blksize;\n"
18754 "   int64_t blocks;\n"
18755 "   int64_t atime;\n"
18756 "   int64_t mtime;\n"
18757 "   int64_t ctime;\n"
18758 " };\n"
18759 " \n"
18760 msgstr ""
18761
18762 #. type: verbatim
18763 #: ../src/guestfs-structs.pod:127
18764 #, no-wrap
18765 msgid ""
18766 " struct guestfs_stat_list {\n"
18767 "   uint32_t len; /* Number of elements in list. */\n"
18768 "   struct guestfs_stat *val; /* Elements. */\n"
18769 " };\n"
18770 " \n"
18771 msgstr ""
18772
18773 #. type: verbatim
18774 #: ../src/guestfs-structs.pod:132
18775 #, no-wrap
18776 msgid ""
18777 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
18778 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
18779 "\n"
18780 msgstr ""
18781
18782 #. type: verbatim
18783 #: ../src/guestfs-structs.pod:137
18784 #, no-wrap
18785 msgid ""
18786 " struct guestfs_statvfs {\n"
18787 "   int64_t bsize;\n"
18788 "   int64_t frsize;\n"
18789 "   int64_t blocks;\n"
18790 "   int64_t bfree;\n"
18791 "   int64_t bavail;\n"
18792 "   int64_t files;\n"
18793 "   int64_t ffree;\n"
18794 "   int64_t favail;\n"
18795 "   int64_t fsid;\n"
18796 "   int64_t flag;\n"
18797 "   int64_t namemax;\n"
18798 " };\n"
18799 " \n"
18800 msgstr ""
18801
18802 #. type: verbatim
18803 #: ../src/guestfs-structs.pod:151
18804 #, no-wrap
18805 msgid ""
18806 " struct guestfs_statvfs_list {\n"
18807 "   uint32_t len; /* Number of elements in list. */\n"
18808 "   struct guestfs_statvfs *val; /* Elements. */\n"
18809 " };\n"
18810 " \n"
18811 msgstr ""
18812
18813 #. type: verbatim
18814 #: ../src/guestfs-structs.pod:156
18815 #, no-wrap
18816 msgid ""
18817 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
18818 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
18819 "\n"
18820 msgstr ""
18821
18822 #. type: =head2
18823 #: ../src/guestfs-structs.pod:159
18824 msgid "guestfs_dirent"
18825 msgstr ""
18826
18827 #. type: verbatim
18828 #: ../src/guestfs-structs.pod:161
18829 #, no-wrap
18830 msgid ""
18831 " struct guestfs_dirent {\n"
18832 "   int64_t ino;\n"
18833 "   char ftyp;\n"
18834 "   char *name;\n"
18835 " };\n"
18836 " \n"
18837 msgstr ""
18838
18839 #. type: verbatim
18840 #: ../src/guestfs-structs.pod:167
18841 #, no-wrap
18842 msgid ""
18843 " struct guestfs_dirent_list {\n"
18844 "   uint32_t len; /* Number of elements in list. */\n"
18845 "   struct guestfs_dirent *val; /* Elements. */\n"
18846 " };\n"
18847 " \n"
18848 msgstr ""
18849
18850 #. type: verbatim
18851 #: ../src/guestfs-structs.pod:172
18852 #, no-wrap
18853 msgid ""
18854 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
18855 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
18856 "\n"
18857 msgstr ""
18858
18859 #. type: verbatim
18860 #: ../src/guestfs-structs.pod:177
18861 #, no-wrap
18862 msgid ""
18863 " struct guestfs_version {\n"
18864 "   int64_t major;\n"
18865 "   int64_t minor;\n"
18866 "   int64_t release;\n"
18867 "   char *extra;\n"
18868 " };\n"
18869 " \n"
18870 msgstr ""
18871
18872 #. type: verbatim
18873 #: ../src/guestfs-structs.pod:184
18874 #, no-wrap
18875 msgid ""
18876 " struct guestfs_version_list {\n"
18877 "   uint32_t len; /* Number of elements in list. */\n"
18878 "   struct guestfs_version *val; /* Elements. */\n"
18879 " };\n"
18880 " \n"
18881 msgstr ""
18882
18883 #. type: verbatim
18884 #: ../src/guestfs-structs.pod:189
18885 #, no-wrap
18886 msgid ""
18887 " void guestfs_free_version (struct guestfs_free_version *);\n"
18888 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
18889 "\n"
18890 msgstr ""
18891
18892 #. type: =head2
18893 #: ../src/guestfs-structs.pod:192
18894 msgid "guestfs_xattr"
18895 msgstr ""
18896
18897 #. type: verbatim
18898 #: ../src/guestfs-structs.pod:194
18899 #, no-wrap
18900 msgid ""
18901 " struct guestfs_xattr {\n"
18902 "   char *attrname;\n"
18903 "   /* The next two fields describe a byte array. */\n"
18904 "   uint32_t attrval_len;\n"
18905 "   char *attrval;\n"
18906 " };\n"
18907 " \n"
18908 msgstr ""
18909
18910 #. type: verbatim
18911 #: ../src/guestfs-structs.pod:201
18912 #, no-wrap
18913 msgid ""
18914 " struct guestfs_xattr_list {\n"
18915 "   uint32_t len; /* Number of elements in list. */\n"
18916 "   struct guestfs_xattr *val; /* Elements. */\n"
18917 " };\n"
18918 " \n"
18919 msgstr ""
18920
18921 #. type: verbatim
18922 #: ../src/guestfs-structs.pod:206
18923 #, no-wrap
18924 msgid ""
18925 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
18926 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
18927 "\n"
18928 msgstr ""
18929
18930 #. type: =head2
18931 #: ../src/guestfs-structs.pod:209
18932 msgid "guestfs_inotify_event"
18933 msgstr ""
18934
18935 #. type: verbatim
18936 #: ../src/guestfs-structs.pod:211
18937 #, no-wrap
18938 msgid ""
18939 " struct guestfs_inotify_event {\n"
18940 "   int64_t in_wd;\n"
18941 "   uint32_t in_mask;\n"
18942 "   uint32_t in_cookie;\n"
18943 "   char *in_name;\n"
18944 " };\n"
18945 " \n"
18946 msgstr ""
18947
18948 #. type: verbatim
18949 #: ../src/guestfs-structs.pod:218
18950 #, no-wrap
18951 msgid ""
18952 " struct guestfs_inotify_event_list {\n"
18953 "   uint32_t len; /* Number of elements in list. */\n"
18954 "   struct guestfs_inotify_event *val; /* Elements. */\n"
18955 " };\n"
18956 " \n"
18957 msgstr ""
18958
18959 #. type: verbatim
18960 #: ../src/guestfs-structs.pod:223
18961 #, no-wrap
18962 msgid ""
18963 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
18964 " void guestfs_free_inotify_event_list (struct "
18965 "guestfs_free_inotify_event_list *);\n"
18966 "\n"
18967 msgstr ""
18968
18969 #. type: =head2
18970 #: ../src/guestfs-structs.pod:226
18971 msgid "guestfs_partition"
18972 msgstr ""
18973
18974 #. type: verbatim
18975 #: ../src/guestfs-structs.pod:228
18976 #, no-wrap
18977 msgid ""
18978 " struct guestfs_partition {\n"
18979 "   int32_t part_num;\n"
18980 "   uint64_t part_start;\n"
18981 "   uint64_t part_end;\n"
18982 "   uint64_t part_size;\n"
18983 " };\n"
18984 " \n"
18985 msgstr ""
18986
18987 #. type: verbatim
18988 #: ../src/guestfs-structs.pod:235
18989 #, no-wrap
18990 msgid ""
18991 " struct guestfs_partition_list {\n"
18992 "   uint32_t len; /* Number of elements in list. */\n"
18993 "   struct guestfs_partition *val; /* Elements. */\n"
18994 " };\n"
18995 " \n"
18996 msgstr ""
18997
18998 #. type: verbatim
18999 #: ../src/guestfs-structs.pod:240
19000 #, no-wrap
19001 msgid ""
19002 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
19003 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
19004 "\n"
19005 msgstr ""
19006
19007 #. type: =head2
19008 #: ../src/guestfs-structs.pod:243
19009 msgid "guestfs_application"
19010 msgstr ""
19011
19012 #. type: verbatim
19013 #: ../src/guestfs-structs.pod:245
19014 #, no-wrap
19015 msgid ""
19016 " struct guestfs_application {\n"
19017 "   char *app_name;\n"
19018 "   char *app_display_name;\n"
19019 "   int32_t app_epoch;\n"
19020 "   char *app_version;\n"
19021 "   char *app_release;\n"
19022 "   char *app_install_path;\n"
19023 "   char *app_trans_path;\n"
19024 "   char *app_publisher;\n"
19025 "   char *app_url;\n"
19026 "   char *app_source_package;\n"
19027 "   char *app_summary;\n"
19028 "   char *app_description;\n"
19029 " };\n"
19030 " \n"
19031 msgstr ""
19032
19033 #. type: verbatim
19034 #: ../src/guestfs-structs.pod:260
19035 #, no-wrap
19036 msgid ""
19037 " struct guestfs_application_list {\n"
19038 "   uint32_t len; /* Number of elements in list. */\n"
19039 "   struct guestfs_application *val; /* Elements. */\n"
19040 " };\n"
19041 " \n"
19042 msgstr ""
19043
19044 #. type: verbatim
19045 #: ../src/guestfs-structs.pod:265
19046 #, no-wrap
19047 msgid ""
19048 " void guestfs_free_application (struct guestfs_free_application *);\n"
19049 " void guestfs_free_application_list (struct guestfs_free_application_list "
19050 "*);\n"
19051 "\n"
19052 msgstr ""
19053
19054 #. type: textblock
19055 #: ../fish/guestfish.pod:5
19056 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
19057 msgstr ""
19058
19059 #. type: verbatim
19060 #: ../fish/guestfish.pod:9
19061 #, no-wrap
19062 msgid ""
19063 " guestfish [--options] [commands]\n"
19064 "\n"
19065 msgstr ""
19066
19067 #. type: verbatim
19068 #: ../fish/guestfish.pod:11
19069 #, no-wrap
19070 msgid ""
19071 " guestfish\n"
19072 "\n"
19073 msgstr ""
19074
19075 #. type: verbatim
19076 #: ../fish/guestfish.pod:13
19077 #, no-wrap
19078 msgid ""
19079 " guestfish [--ro|--rw] -a disk.img\n"
19080 "\n"
19081 msgstr ""
19082
19083 #. type: verbatim
19084 #: ../fish/guestfish.pod:15
19085 #, no-wrap
19086 msgid ""
19087 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
19088 "\n"
19089 msgstr ""
19090
19091 #. type: verbatim
19092 #: ../fish/guestfish.pod:17
19093 #, no-wrap
19094 msgid ""
19095 " guestfish -d libvirt-domain\n"
19096 "\n"
19097 msgstr ""
19098
19099 #. type: verbatim
19100 #: ../fish/guestfish.pod:19
19101 #, no-wrap
19102 msgid ""
19103 " guestfish [--ro|--rw] -a disk.img -i\n"
19104 "\n"
19105 msgstr ""
19106
19107 #. type: verbatim
19108 #: ../fish/guestfish.pod:21
19109 #, no-wrap
19110 msgid ""
19111 " guestfish -d libvirt-domain -i\n"
19112 "\n"
19113 msgstr ""
19114
19115 #. type: =head1
19116 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15 ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
19117 msgid "WARNING"
19118 msgstr ""
19119
19120 #. type: textblock
19121 #: ../fish/guestfish.pod:25
19122 msgid ""
19123 "Using guestfish in read/write mode on live virtual machines can be "
19124 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only) "
19125 "option to use guestfish safely if the disk image or virtual machine might be "
19126 "live."
19127 msgstr ""
19128
19129 #. type: textblock
19130 #: ../fish/guestfish.pod:32
19131 msgid ""
19132 "Guestfish is a shell and command-line tool for examining and modifying "
19133 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
19134 "functionality of the guestfs API, see L<guestfs(3)>."
19135 msgstr ""
19136
19137 #. type: textblock
19138 #: ../fish/guestfish.pod:36
19139 msgid ""
19140 "Guestfish gives you structured access to the libguestfs API, from shell "
19141 "scripts or the command line or interactively.  If you want to rescue a "
19142 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
19143 "command."
19144 msgstr ""
19145
19146 #. type: =head1
19147 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:949 ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
19148 msgid "EXAMPLES"
19149 msgstr ""
19150
19151 #. type: =head2
19152 #: ../fish/guestfish.pod:43
19153 msgid "As an interactive shell"
19154 msgstr ""
19155
19156 #. type: verbatim
19157 #: ../fish/guestfish.pod:45
19158 #, no-wrap
19159 msgid ""
19160 " $ guestfish\n"
19161 " \n"
19162 msgstr ""
19163
19164 #. type: verbatim
19165 #: ../fish/guestfish.pod:47
19166 #, no-wrap
19167 msgid ""
19168 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
19169 " editing virtual machine filesystems.\n"
19170 " \n"
19171 msgstr ""
19172
19173 #. type: verbatim
19174 #: ../fish/guestfish.pod:50
19175 #, no-wrap
19176 msgid ""
19177 " Type: 'help' for a list of commands\n"
19178 "       'man' to read the manual\n"
19179 "       'quit' to quit the shell\n"
19180 " \n"
19181 msgstr ""
19182
19183 #. type: verbatim
19184 #: ../fish/guestfish.pod:54
19185 #, no-wrap
19186 msgid ""
19187 " ><fs> add-ro disk.img\n"
19188 " ><fs> run\n"
19189 " ><fs> list-filesystems\n"
19190 " /dev/sda1: ext4\n"
19191 " /dev/vg_guest/lv_root: ext4\n"
19192 " /dev/vg_guest/lv_swap: swap\n"
19193 " ><fs> mount /dev/vg_guest/lv_root /\n"
19194 " ><fs> cat /etc/fstab\n"
19195 " # /etc/fstab\n"
19196 " # Created by anaconda\n"
19197 " [...]\n"
19198 " ><fs> exit\n"
19199 "\n"
19200 msgstr ""
19201
19202 #. type: =head2
19203 #: ../fish/guestfish.pod:67
19204 msgid "From shell scripts"
19205 msgstr ""
19206
19207 #. type: textblock
19208 #: ../fish/guestfish.pod:69
19209 msgid "Create a new C</etc/motd> file in a guest or disk image:"
19210 msgstr ""
19211
19212 #. type: verbatim
19213 #: ../fish/guestfish.pod:71
19214 #, no-wrap
19215 msgid ""
19216 " guestfish <<_EOF_\n"
19217 " add disk.img\n"
19218 " run\n"
19219 " mount /dev/vg_guest/lv_root /\n"
19220 " write /etc/motd \"Welcome, new users\"\n"
19221 " _EOF_\n"
19222 "\n"
19223 msgstr ""
19224
19225 #. type: textblock
19226 #: ../fish/guestfish.pod:78
19227 msgid "List the LVM logical volumes in a disk image:"
19228 msgstr ""
19229
19230 #. type: verbatim
19231 #: ../fish/guestfish.pod:80
19232 #, no-wrap
19233 msgid ""
19234 " guestfish -a disk.img --ro <<_EOF_\n"
19235 " run\n"
19236 " lvs\n"
19237 " _EOF_\n"
19238 "\n"
19239 msgstr ""
19240
19241 #. type: textblock
19242 #: ../fish/guestfish.pod:85
19243 msgid "List all the filesystems in a disk image:"
19244 msgstr ""
19245
19246 #. type: verbatim
19247 #: ../fish/guestfish.pod:87
19248 #, no-wrap
19249 msgid ""
19250 " guestfish -a disk.img --ro <<_EOF_\n"
19251 " run\n"
19252 " list-filesystems\n"
19253 " _EOF_\n"
19254 "\n"
19255 msgstr ""
19256
19257 #. type: =head2
19258 #: ../fish/guestfish.pod:92
19259 msgid "On one command line"
19260 msgstr ""
19261
19262 #. type: textblock
19263 #: ../fish/guestfish.pod:94
19264 msgid "Update C</etc/resolv.conf> in a guest:"
19265 msgstr ""
19266
19267 #. type: verbatim
19268 #: ../fish/guestfish.pod:96
19269 #, no-wrap
19270 msgid ""
19271 " guestfish \\\n"
19272 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
19273 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
19274 "\n"
19275 msgstr ""
19276
19277 #. type: textblock
19278 #: ../fish/guestfish.pod:100
19279 msgid "Edit C</boot/grub/grub.conf> interactively:"
19280 msgstr ""
19281
19282 #. type: verbatim
19283 #: ../fish/guestfish.pod:102
19284 #, no-wrap
19285 msgid ""
19286 " guestfish --rw --add disk.img \\\n"
19287 "   --mount /dev/vg_guest/lv_root \\\n"
19288 "   --mount /dev/sda1:/boot \\\n"
19289 "   edit /boot/grub/grub.conf\n"
19290 "\n"
19291 msgstr ""
19292
19293 #. type: =head2
19294 #: ../fish/guestfish.pod:107
19295 msgid "Mount disks automatically"
19296 msgstr ""
19297
19298 #. type: textblock
19299 #: ../fish/guestfish.pod:109
19300 msgid ""
19301 "Use the I<-i> option to automatically mount the disks from a virtual "
19302 "machine:"
19303 msgstr ""
19304
19305 #. type: verbatim
19306 #: ../fish/guestfish.pod:112
19307 #, no-wrap
19308 msgid ""
19309 " guestfish --ro -a disk.img -i cat /etc/group\n"
19310 "\n"
19311 msgstr ""
19312
19313 #. type: verbatim
19314 #: ../fish/guestfish.pod:114
19315 #, no-wrap
19316 msgid ""
19317 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
19318 "\n"
19319 msgstr ""
19320
19321 #. type: textblock
19322 #: ../fish/guestfish.pod:116
19323 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
19324 msgstr ""
19325
19326 #. type: verbatim
19327 #: ../fish/guestfish.pod:118
19328 #, no-wrap
19329 msgid ""
19330 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
19331 "\n"
19332 msgstr ""
19333
19334 #. type: =head2
19335 #: ../fish/guestfish.pod:120
19336 msgid "As a script interpreter"
19337 msgstr ""
19338
19339 #. type: textblock
19340 #: ../fish/guestfish.pod:122
19341 msgid "Create a 100MB disk containing an ext2-formatted partition:"
19342 msgstr ""
19343
19344 #. type: verbatim
19345 #: ../fish/guestfish.pod:124
19346 #, no-wrap
19347 msgid ""
19348 " #!/usr/bin/guestfish -f\n"
19349 " sparse test1.img 100M\n"
19350 " run\n"
19351 " part-disk /dev/sda mbr\n"
19352 " mkfs ext2 /dev/sda1\n"
19353 "\n"
19354 msgstr ""
19355
19356 #. type: =head2
19357 #: ../fish/guestfish.pod:130
19358 msgid "Start with a prepared disk"
19359 msgstr ""
19360
19361 #. type: textblock
19362 #: ../fish/guestfish.pod:132
19363 msgid ""
19364 "An alternate way to create a 100MB disk called C<test1.img> containing a "
19365 "single ext2-formatted partition:"
19366 msgstr ""
19367
19368 #. type: verbatim
19369 #: ../fish/guestfish.pod:135
19370 #, no-wrap
19371 msgid ""
19372 " guestfish -N fs\n"
19373 "\n"
19374 msgstr ""
19375
19376 #. type: textblock
19377 #: ../fish/guestfish.pod:137
19378 msgid "To list what is available do:"
19379 msgstr ""
19380
19381 #. type: verbatim
19382 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:940
19383 #, no-wrap
19384 msgid ""
19385 " guestfish -N help | less\n"
19386 "\n"
19387 msgstr ""
19388
19389 #. type: =head2
19390 #: ../fish/guestfish.pod:141
19391 msgid "Remote control"
19392 msgstr ""
19393
19394 #. type: verbatim
19395 #: ../fish/guestfish.pod:143
19396 #, no-wrap
19397 msgid ""
19398 " eval \"`guestfish --listen`\"\n"
19399 " guestfish --remote add-ro disk.img\n"
19400 " guestfish --remote run\n"
19401 " guestfish --remote lvs\n"
19402 "\n"
19403 msgstr ""
19404
19405 #. type: =head1
19406 #: ../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
19407 msgid "OPTIONS"
19408 msgstr ""
19409
19410 #. type: =item
19411 #: ../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
19412 msgid "B<--help>"
19413 msgstr ""
19414
19415 #. type: textblock
19416 #: ../fish/guestfish.pod:154
19417 msgid "Displays general help on options."
19418 msgstr ""
19419
19420 #. type: =item
19421 #: ../fish/guestfish.pod:156
19422 msgid "B<-h>"
19423 msgstr ""
19424
19425 #. type: =item
19426 #: ../fish/guestfish.pod:158
19427 msgid "B<--cmd-help>"
19428 msgstr ""
19429
19430 #. type: textblock
19431 #: ../fish/guestfish.pod:160
19432 msgid "Lists all available guestfish commands."
19433 msgstr ""
19434
19435 #. type: =item
19436 #: ../fish/guestfish.pod:162
19437 msgid "B<-h cmd>"
19438 msgstr ""
19439
19440 #. type: =item
19441 #: ../fish/guestfish.pod:164
19442 msgid "B<--cmd-help cmd>"
19443 msgstr ""
19444
19445 #. type: textblock
19446 #: ../fish/guestfish.pod:166
19447 msgid "Displays detailed help on a single command C<cmd>."
19448 msgstr ""
19449
19450 #. type: =item
19451 #: ../fish/guestfish.pod:168
19452 msgid "B<-a image>"
19453 msgstr ""
19454
19455 #. type: =item
19456 #: ../fish/guestfish.pod:170
19457 msgid "B<--add image>"
19458 msgstr ""
19459
19460 #. type: textblock
19461 #: ../fish/guestfish.pod:172
19462 msgid "Add a block device or virtual machine image to the shell."
19463 msgstr ""
19464
19465 #. type: textblock
19466 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
19467 msgid ""
19468 "The format of the disk image is auto-detected.  To override this and force a "
19469 "particular format use the I<--format=..> option."
19470 msgstr ""
19471
19472 #. type: textblock
19473 #: ../fish/guestfish.pod:177
19474 msgid ""
19475 "Using this flag is mostly equivalent to using the C<add> command, with "
19476 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
19477 "the I<--format=...> flag was given."
19478 msgstr ""
19479
19480 #. type: =item
19481 #: ../fish/guestfish.pod:181
19482 msgid "B<-c URI>"
19483 msgstr ""
19484
19485 #. type: =item
19486 #: ../fish/guestfish.pod:183
19487 msgid "B<--connect URI>"
19488 msgstr ""
19489
19490 #. type: textblock
19491 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
19492 msgid ""
19493 "When used in conjunction with the I<-d> option, this specifies the libvirt "
19494 "URI to use.  The default is to use the default libvirt connection."
19495 msgstr ""
19496
19497 #. type: =item
19498 #: ../fish/guestfish.pod:189
19499 msgid "B<--csh>"
19500 msgstr ""
19501
19502 #. type: textblock
19503 #: ../fish/guestfish.pod:191
19504 msgid ""
19505 "If using the I<--listen> option and a csh-like shell, use this option.  See "
19506 "section L</REMOTE CONTROL AND CSH> below."
19507 msgstr ""
19508
19509 #. type: =item
19510 #: ../fish/guestfish.pod:194
19511 msgid "B<-d libvirt-domain>"
19512 msgstr ""
19513
19514 #. type: =item
19515 #: ../fish/guestfish.pod:196
19516 msgid "B<--domain libvirt-domain>"
19517 msgstr ""
19518
19519 #. type: textblock
19520 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
19521 msgid ""
19522 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
19523 "used, then any libvirt domain can be used.  However in write mode, only "
19524 "libvirt domains which are shut down can be named here."
19525 msgstr ""
19526
19527 #. type: textblock
19528 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
19529 msgid "Domain UUIDs can be used instead of names."
19530 msgstr ""
19531
19532 #. type: textblock
19533 #: ../fish/guestfish.pod:204
19534 msgid ""
19535 "Using this flag is mostly equivalent to using the C<add-domain> command, "
19536 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
19537 "if the I<--format:...> flag was given."
19538 msgstr ""
19539
19540 #. type: =item
19541 #: ../fish/guestfish.pod:208
19542 msgid "B<-D>"
19543 msgstr ""
19544
19545 #. type: =item
19546 #: ../fish/guestfish.pod:210
19547 msgid "B<--no-dest-paths>"
19548 msgstr ""
19549
19550 #. type: textblock
19551 #: ../fish/guestfish.pod:212
19552 msgid ""
19553 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
19554 "to hit the tab key to complete paths on the guest filesystem, but this "
19555 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
19556 "allow this feature to be disabled."
19557 msgstr ""
19558
19559 #. type: =item
19560 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
19561 msgid "B<--echo-keys>"
19562 msgstr ""
19563
19564 #. type: textblock
19565 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
19566 msgid ""
19567 "When prompting for keys and passphrases, guestfish normally turns echoing "
19568 "off so you cannot see what you are typing.  If you are not worried about "
19569 "Tempest attacks and there is no one else in the room you can specify this "
19570 "flag to see what you are typing."
19571 msgstr ""
19572
19573 #. type: =item
19574 #: ../fish/guestfish.pod:224
19575 msgid "B<-f file>"
19576 msgstr ""
19577
19578 #. type: =item
19579 #: ../fish/guestfish.pod:226
19580 msgid "B<--file file>"
19581 msgstr ""
19582
19583 #. type: textblock
19584 #: ../fish/guestfish.pod:228
19585 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
19586 msgstr ""
19587
19588 #. type: verbatim
19589 #: ../fish/guestfish.pod:231
19590 #, no-wrap
19591 msgid ""
19592 " #!/usr/bin/guestfish -f\n"
19593 "\n"
19594 msgstr ""
19595
19596 #. type: =item
19597 #: ../fish/guestfish.pod:233
19598 msgid "B<--format=raw|qcow2|..>"
19599 msgstr ""
19600
19601 #. type: =item
19602 #: ../fish/guestfish.pod:235
19603 msgid "B<--format>"
19604 msgstr ""
19605
19606 #. type: textblock
19607 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
19608 msgid ""
19609 "The default for the I<-a> option is to auto-detect the format of the disk "
19610 "image.  Using this forces the disk format for I<-a> options which follow on "
19611 "the command line.  Using I<--format> with no argument switches back to "
19612 "auto-detection for subsequent I<-a> options."
19613 msgstr ""
19614
19615 #. type: verbatim
19616 #: ../fish/guestfish.pod:244
19617 #, no-wrap
19618 msgid ""
19619 " guestfish --format=raw -a disk.img\n"
19620 "\n"
19621 msgstr ""
19622
19623 #. type: textblock
19624 #: ../fish/guestfish.pod:246
19625 msgid "forces raw format (no auto-detection) for C<disk.img>."
19626 msgstr ""
19627
19628 #. type: verbatim
19629 #: ../fish/guestfish.pod:248
19630 #, no-wrap
19631 msgid ""
19632 " guestfish --format=raw -a disk.img --format -a another.img\n"
19633 "\n"
19634 msgstr ""
19635
19636 #. type: textblock
19637 #: ../fish/guestfish.pod:250
19638 msgid ""
19639 "forces raw format (no auto-detection) for C<disk.img> and reverts to "
19640 "auto-detection for C<another.img>."
19641 msgstr ""
19642
19643 #. type: textblock
19644 #: ../fish/guestfish.pod:253
19645 msgid ""
19646 "If you have untrusted raw-format guest disk images, you should use this "
19647 "option to specify the disk format.  This avoids a possible security problem "
19648 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
19649 msgstr ""
19650
19651 #. type: =item
19652 #: ../fish/guestfish.pod:258
19653 msgid "B<-i>"
19654 msgstr ""
19655
19656 #. type: =item
19657 #: ../fish/guestfish.pod:260
19658 msgid "B<--inspector>"
19659 msgstr ""
19660
19661 #. type: textblock
19662 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
19663 msgid ""
19664 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
19665 "system and mount filesystems as they would be mounted on the real virtual "
19666 "machine."
19667 msgstr ""
19668
19669 #. type: textblock
19670 #: ../fish/guestfish.pod:266
19671 msgid "Typical usage is either:"
19672 msgstr ""
19673
19674 #. type: verbatim
19675 #: ../fish/guestfish.pod:268
19676 #, no-wrap
19677 msgid ""
19678 " guestfish -d myguest -i\n"
19679 "\n"
19680 msgstr ""
19681
19682 #. type: textblock
19683 #: ../fish/guestfish.pod:270
19684 msgid "(for an inactive libvirt domain called I<myguest>), or:"
19685 msgstr ""
19686
19687 #. type: verbatim
19688 #: ../fish/guestfish.pod:272
19689 #, no-wrap
19690 msgid ""
19691 " guestfish --ro -d myguest -i\n"
19692 "\n"
19693 msgstr ""
19694
19695 #. type: textblock
19696 #: ../fish/guestfish.pod:274
19697 msgid "(for active domains, readonly), or specify the block device directly:"
19698 msgstr ""
19699
19700 #. type: verbatim
19701 #: ../fish/guestfish.pod:276
19702 #, no-wrap
19703 msgid ""
19704 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
19705 "\n"
19706 msgstr ""
19707
19708 #. type: textblock
19709 #: ../fish/guestfish.pod:278
19710 msgid ""
19711 "Note that the command line syntax changed slightly over older versions of "
19712 "guestfish.  You can still use the old syntax:"
19713 msgstr ""
19714
19715 #. type: verbatim
19716 #: ../fish/guestfish.pod:281
19717 #, no-wrap
19718 msgid ""
19719 " guestfish [--ro] -i disk.img\n"
19720 "\n"
19721 msgstr ""
19722
19723 #. type: verbatim
19724 #: ../fish/guestfish.pod:283
19725 #, no-wrap
19726 msgid ""
19727 " guestfish [--ro] -i libvirt-domain\n"
19728 "\n"
19729 msgstr ""
19730
19731 #. type: textblock
19732 #: ../fish/guestfish.pod:285
19733 msgid ""
19734 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
19735 "then using other commands to mount the filesystems that were found."
19736 msgstr ""
19737
19738 #. type: =item
19739 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
19740 msgid "B<--keys-from-stdin>"
19741 msgstr ""
19742
19743 #. type: textblock
19744 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
19745 msgid ""
19746 "Read key or passphrase parameters from stdin.  The default is to try to read "
19747 "passphrases from the user by opening C</dev/tty>."
19748 msgstr ""
19749
19750 #. type: =item
19751 #: ../fish/guestfish.pod:294
19752 msgid "B<--listen>"
19753 msgstr ""
19754
19755 #. type: textblock
19756 #: ../fish/guestfish.pod:296
19757 msgid ""
19758 "Fork into the background and listen for remote commands.  See section "
19759 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
19760 msgstr ""
19761
19762 #. type: =item
19763 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
19764 msgid "B<--live>"
19765 msgstr ""
19766
19767 #. type: textblock
19768 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
19769 msgid ""
19770 "Connect to a live virtual machine.  (Experimental, see "
19771 "L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
19772 msgstr ""
19773
19774 #. type: =item
19775 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
19776 msgid "B<-m dev[:mountpoint[:options]]>"
19777 msgstr ""
19778
19779 #. type: =item
19780 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
19781 msgid "B<--mount dev[:mountpoint[:options]]>"
19782 msgstr ""
19783
19784 #. type: textblock
19785 #: ../fish/guestfish.pod:308
19786 msgid "Mount the named partition or logical volume on the given mountpoint."
19787 msgstr ""
19788
19789 #. type: textblock
19790 #: ../fish/guestfish.pod:310
19791 msgid "If the mountpoint is omitted, it defaults to C</>."
19792 msgstr ""
19793
19794 #. type: textblock
19795 #: ../fish/guestfish.pod:312
19796 msgid "You have to mount something on C</> before most commands will work."
19797 msgstr ""
19798
19799 #. type: textblock
19800 #: ../fish/guestfish.pod:314
19801 msgid ""
19802 "If any I<-m> or I<--mount> options are given, the guest is automatically "
19803 "launched."
19804 msgstr ""
19805
19806 #. type: textblock
19807 #: ../fish/guestfish.pod:317
19808 msgid ""
19809 "If you don't know what filesystems a disk image contains, you can either run "
19810 "guestfish without this option, then list the partitions, filesystems and LVs "
19811 "available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
19812 "commands), or you can use the L<virt-filesystems(1)> program."
19813 msgstr ""
19814
19815 #. type: textblock
19816 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
19817 msgid ""
19818 "The third (and rarely used) part of the mount parameter is the list of mount "
19819 "options used to mount the underlying filesystem.  If this is not given, then "
19820 "the mount options are either the empty string or C<ro> (the latter if the "
19821 "I<--ro> flag is used).  By specifying the mount options, you override this "
19822 "default choice.  Probably the only time you would use this is to enable ACLs "
19823 "and/or extended attributes if the filesystem can support them:"
19824 msgstr ""
19825
19826 #. type: verbatim
19827 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
19828 #, no-wrap
19829 msgid ""
19830 " -m /dev/sda1:/:acl,user_xattr\n"
19831 "\n"
19832 msgstr ""
19833
19834 #. type: textblock
19835 #: ../fish/guestfish.pod:333
19836 msgid "Using this flag is equivalent to using the C<mount-options> command."
19837 msgstr ""
19838
19839 #. type: =item
19840 #: ../fish/guestfish.pod:335
19841 msgid "B<-n>"
19842 msgstr ""
19843
19844 #. type: =item
19845 #: ../fish/guestfish.pod:337
19846 msgid "B<--no-sync>"
19847 msgstr ""
19848
19849 #. type: textblock
19850 #: ../fish/guestfish.pod:339
19851 msgid ""
19852 "Disable autosync.  This is enabled by default.  See the discussion of "
19853 "autosync in the L<guestfs(3)> manpage."
19854 msgstr ""
19855
19856 #. type: =item
19857 #: ../fish/guestfish.pod:342
19858 msgid "B<-N type>"
19859 msgstr ""
19860
19861 #. type: =item
19862 #: ../fish/guestfish.pod:344
19863 msgid "B<--new type>"
19864 msgstr ""
19865
19866 #. type: =item
19867 #: ../fish/guestfish.pod:346
19868 msgid "B<-N help>"
19869 msgstr ""
19870
19871 #. type: textblock
19872 #: ../fish/guestfish.pod:348
19873 msgid ""
19874 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to "
19875 "the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
19876 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
19877 "IMAGES> below."
19878 msgstr ""
19879
19880 #. type: =item
19881 #: ../fish/guestfish.pod:353
19882 msgid "B<--progress-bars>"
19883 msgstr ""
19884
19885 #. type: textblock
19886 #: ../fish/guestfish.pod:355
19887 msgid "Enable progress bars, even when guestfish is used non-interactively."
19888 msgstr ""
19889
19890 #. type: textblock
19891 #: ../fish/guestfish.pod:357
19892 msgid ""
19893 "Progress bars are enabled by default when guestfish is used as an "
19894 "interactive shell."
19895 msgstr ""
19896
19897 #. type: =item
19898 #: ../fish/guestfish.pod:360
19899 msgid "B<--no-progress-bars>"
19900 msgstr ""
19901
19902 #. type: textblock
19903 #: ../fish/guestfish.pod:362
19904 msgid "Disable progress bars."
19905 msgstr ""
19906
19907 #. type: =item
19908 #: ../fish/guestfish.pod:364
19909 msgid "B<--remote[=pid]>"
19910 msgstr ""
19911
19912 #. type: textblock
19913 #: ../fish/guestfish.pod:366
19914 msgid ""
19915 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
19916 "CONTROL GUESTFISH OVER A SOCKET> below."
19917 msgstr ""
19918
19919 #. type: =item
19920 #: ../fish/guestfish.pod:369
19921 msgid "B<-r>"
19922 msgstr ""
19923
19924 #. type: =item
19925 #: ../fish/guestfish.pod:371
19926 msgid "B<--ro>"
19927 msgstr ""
19928
19929 #. type: textblock
19930 #: ../fish/guestfish.pod:373
19931 msgid ""
19932 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
19933 "mounts are done read-only."
19934 msgstr ""
19935
19936 #. type: textblock
19937 #: ../fish/guestfish.pod:376
19938 msgid ""
19939 "The option must always be used if the disk image or virtual machine might be "
19940 "running, and is generally recommended in cases where you don't need write "
19941 "access to the disk."
19942 msgstr ""
19943
19944 #. type: textblock
19945 #: ../fish/guestfish.pod:380
19946 msgid ""
19947 "Note that prepared disk images created with I<-N> are not affected by this "
19948 "option.  Also commands like C<add> are not affected - you have to specify "
19949 "the C<readonly:true> option explicitly if you need it."
19950 msgstr ""
19951
19952 #. type: textblock
19953 #: ../fish/guestfish.pod:384
19954 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
19955 msgstr ""
19956
19957 #. type: =item
19958 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
19959 msgid "B<--selinux>"
19960 msgstr ""
19961
19962 #. type: textblock
19963 #: ../fish/guestfish.pod:388
19964 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
19965 msgstr ""
19966
19967 #. type: =item
19968 #: ../fish/guestfish.pod:390
19969 msgid "B<-v>"
19970 msgstr ""
19971
19972 #. type: =item
19973 #: ../fish/guestfish.pod:392
19974 msgid "B<--verbose>"
19975 msgstr ""
19976
19977 #. type: textblock
19978 #: ../fish/guestfish.pod:394
19979 msgid ""
19980 "Enable very verbose messages.  This is particularly useful if you find a "
19981 "bug."
19982 msgstr ""
19983
19984 #. type: =item
19985 #: ../fish/guestfish.pod:397
19986 msgid "B<-V>"
19987 msgstr ""
19988
19989 #. type: =item
19990 #: ../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
19991 msgid "B<--version>"
19992 msgstr ""
19993
19994 #. type: textblock
19995 #: ../fish/guestfish.pod:401
19996 msgid "Display the guestfish / libguestfs version number and exit."
19997 msgstr ""
19998
19999 #. type: =item
20000 #: ../fish/guestfish.pod:403
20001 msgid "B<-w>"
20002 msgstr ""
20003
20004 #. type: =item
20005 #: ../fish/guestfish.pod:405
20006 msgid "B<--rw>"
20007 msgstr ""
20008
20009 #. type: textblock
20010 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
20011 msgid ""
20012 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20013 "mounts are done read-write."
20014 msgstr ""
20015
20016 #. type: textblock
20017 #: ../fish/guestfish.pod:410
20018 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
20019 msgstr ""
20020
20021 #. type: =item
20022 #: ../fish/guestfish.pod:412
20023 msgid "B<-x>"
20024 msgstr ""
20025
20026 #. type: textblock
20027 #: ../fish/guestfish.pod:414
20028 msgid "Echo each command before executing it."
20029 msgstr ""
20030
20031 #. type: =head1
20032 #: ../fish/guestfish.pod:418
20033 msgid "COMMANDS ON COMMAND LINE"
20034 msgstr ""
20035
20036 #. type: textblock
20037 #: ../fish/guestfish.pod:420
20038 msgid "Any additional (non-option) arguments are treated as commands to execute."
20039 msgstr ""
20040
20041 #. type: textblock
20042 #: ../fish/guestfish.pod:423
20043 msgid ""
20044 "Commands to execute should be separated by a colon (C<:>), where the colon "
20045 "is a separate parameter.  Thus:"
20046 msgstr ""
20047
20048 #. type: verbatim
20049 #: ../fish/guestfish.pod:426
20050 #, no-wrap
20051 msgid ""
20052 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
20053 "\n"
20054 msgstr ""
20055
20056 #. type: textblock
20057 #: ../fish/guestfish.pod:428
20058 msgid ""
20059 "If there are no additional arguments, then we enter a shell, either an "
20060 "interactive shell with a prompt (if the input is a terminal) or a "
20061 "non-interactive shell."
20062 msgstr ""
20063
20064 #. type: textblock
20065 #: ../fish/guestfish.pod:432
20066 msgid ""
20067 "In either command line mode or non-interactive shell, the first command that "
20068 "gives an error causes the whole shell to exit.  In interactive mode (with a "
20069 "prompt) if a command fails, you can continue to enter commands."
20070 msgstr ""
20071
20072 #. type: =head1
20073 #: ../fish/guestfish.pod:437
20074 msgid "USING launch (OR run)"
20075 msgstr ""
20076
20077 #. type: textblock
20078 #: ../fish/guestfish.pod:439
20079 msgid ""
20080 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
20081 "then launch it, then mount any disks you need, and finally issue "
20082 "actions/commands.  So the general order of the day is:"
20083 msgstr ""
20084
20085 #. type: textblock
20086 #: ../fish/guestfish.pod:447
20087 msgid "add or -a/--add"
20088 msgstr ""
20089
20090 #. type: textblock
20091 #: ../fish/guestfish.pod:451
20092 msgid "launch (aka run)"
20093 msgstr ""
20094
20095 #. type: textblock
20096 #: ../fish/guestfish.pod:455
20097 msgid "mount or -m/--mount"
20098 msgstr ""
20099
20100 #. type: textblock
20101 #: ../fish/guestfish.pod:459
20102 msgid "any other commands"
20103 msgstr ""
20104
20105 #. type: textblock
20106 #: ../fish/guestfish.pod:463
20107 msgid ""
20108 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
20109 "guest before mounting or performing any other commands."
20110 msgstr ""
20111
20112 #. type: textblock
20113 #: ../fish/guestfish.pod:466
20114 msgid ""
20115 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
20116 "I<--new> options were given then C<run> is done automatically, simply "
20117 "because guestfish can't perform the action you asked for without doing this."
20118 msgstr ""
20119
20120 #. type: =head1
20121 #: ../fish/guestfish.pod:471
20122 msgid "OPENING DISKS FOR READ AND WRITE"
20123 msgstr ""
20124
20125 #. type: textblock
20126 #: ../fish/guestfish.pod:473
20127 msgid ""
20128 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
20129 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
20130 "I<-i> and I<-m> open disk images read-only or for writing."
20131 msgstr ""
20132
20133 #. type: textblock
20134 #: ../fish/guestfish.pod:478
20135 msgid ""
20136 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to "
20137 "opening disk images supplied on the command line for write.  To open a disk "
20138 "image read-only you have to do I<-a image --ro>."
20139 msgstr ""
20140
20141 #. type: textblock
20142 #: ../fish/guestfish.pod:482
20143 msgid ""
20144 "This matters: If you accidentally open a live VM disk image writable then "
20145 "you will cause irreversible disk corruption."
20146 msgstr ""
20147
20148 #. type: textblock
20149 #: ../fish/guestfish.pod:485
20150 msgid ""
20151 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
20152 "images will be opened read-only.  You will have to either specify "
20153 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
20154 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
20155 "access for disk images specified by those other command line options."
20156 msgstr ""
20157
20158 #. type: textblock
20159 #: ../fish/guestfish.pod:492
20160 msgid ""
20161 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
20162 "which does nothing (it is already the default).  However it is highly "
20163 "recommended that you use this option to indicate that you need write access, "
20164 "and prepare your scripts for the day when this option will be required for "
20165 "write access."
20166 msgstr ""
20167
20168 #. type: textblock
20169 #: ../fish/guestfish.pod:498
20170 msgid ""
20171 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any "
20172 "other libguestfs program apart from guestfish and guestmount."
20173 msgstr ""
20174
20175 #. type: =head1
20176 #: ../fish/guestfish.pod:501
20177 msgid "QUOTING"
20178 msgstr ""
20179
20180 #. type: textblock
20181 #: ../fish/guestfish.pod:503
20182 msgid ""
20183 "You can quote ordinary parameters using either single or double quotes.  For "
20184 "example:"
20185 msgstr ""
20186
20187 #. type: verbatim
20188 #: ../fish/guestfish.pod:506
20189 #, no-wrap
20190 msgid ""
20191 " add \"file with a space.img\"\n"
20192 "\n"
20193 msgstr ""
20194
20195 #. type: verbatim
20196 #: ../fish/guestfish.pod:508
20197 #, no-wrap
20198 msgid ""
20199 " rm '/file name'\n"
20200 "\n"
20201 msgstr ""
20202
20203 #. type: verbatim
20204 #: ../fish/guestfish.pod:510
20205 #, no-wrap
20206 msgid ""
20207 " rm '/\"'\n"
20208 "\n"
20209 msgstr ""
20210
20211 #. type: textblock
20212 #: ../fish/guestfish.pod:512
20213 msgid ""
20214 "A few commands require a list of strings to be passed.  For these, use a "
20215 "whitespace-separated list, enclosed in quotes.  Strings containing "
20216 "whitespace to be passed through must be enclosed in single quotes.  A "
20217 "literal single quote must be escaped with a backslash."
20218 msgstr ""
20219
20220 #. type: verbatim
20221 #: ../fish/guestfish.pod:517
20222 #, no-wrap
20223 msgid ""
20224 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
20225 " command \"/bin/echo 'foo      bar'\"\n"
20226 " command \"/bin/echo \\'foo\\'\"\n"
20227 "\n"
20228 msgstr ""
20229
20230 #. type: =head1
20231 #: ../fish/guestfish.pod:521
20232 msgid "OPTIONAL ARGUMENTS"
20233 msgstr ""
20234
20235 #. type: textblock
20236 #: ../fish/guestfish.pod:523
20237 msgid ""
20238 "Some commands take optional arguments.  These arguments appear in this "
20239 "documentation as C<[argname:..]>.  You can use them as in these examples:"
20240 msgstr ""
20241
20242 #. type: verbatim
20243 #: ../fish/guestfish.pod:527
20244 #, no-wrap
20245 msgid ""
20246 " add-drive-opts filename\n"
20247 "\n"
20248 msgstr ""
20249
20250 #. type: verbatim
20251 #: ../fish/guestfish.pod:529
20252 #, no-wrap
20253 msgid ""
20254 " add-drive-opts filename readonly:true\n"
20255 "\n"
20256 msgstr ""
20257
20258 #. type: verbatim
20259 #: ../fish/guestfish.pod:531
20260 #, no-wrap
20261 msgid ""
20262 " add-drive-opts filename format:qcow2 readonly:false\n"
20263 "\n"
20264 msgstr ""
20265
20266 #. type: textblock
20267 #: ../fish/guestfish.pod:533
20268 msgid ""
20269 "Each optional argument can appear at most once.  All optional arguments must "
20270 "appear after the required ones."
20271 msgstr ""
20272
20273 #. type: =head1
20274 #: ../fish/guestfish.pod:536
20275 msgid "NUMBERS"
20276 msgstr ""
20277
20278 #. type: textblock
20279 #: ../fish/guestfish.pod:538
20280 msgid "This section applies to all commands which can take integers as parameters."
20281 msgstr ""
20282
20283 #. type: =head2
20284 #: ../fish/guestfish.pod:541
20285 msgid "SIZE SUFFIX"
20286 msgstr ""
20287
20288 #. type: textblock
20289 #: ../fish/guestfish.pod:543
20290 msgid ""
20291 "When the command takes a parameter measured in bytes, you can use one of the "
20292 "following suffixes to specify kilobytes, megabytes and larger sizes:"
20293 msgstr ""
20294
20295 #. type: =item
20296 #: ../fish/guestfish.pod:549
20297 msgid "B<k> or B<K> or B<KiB>"
20298 msgstr ""
20299
20300 #. type: textblock
20301 #: ../fish/guestfish.pod:551
20302 msgid "The size in kilobytes (multiplied by 1024)."
20303 msgstr ""
20304
20305 #. type: =item
20306 #: ../fish/guestfish.pod:553
20307 msgid "B<KB>"
20308 msgstr ""
20309
20310 #. type: textblock
20311 #: ../fish/guestfish.pod:555
20312 msgid "The size in SI 1000 byte units."
20313 msgstr ""
20314
20315 #. type: =item
20316 #: ../fish/guestfish.pod:557
20317 msgid "B<M> or B<MiB>"
20318 msgstr ""
20319
20320 #. type: textblock
20321 #: ../fish/guestfish.pod:559
20322 msgid "The size in megabytes (multiplied by 1048576)."
20323 msgstr ""
20324
20325 #. type: =item
20326 #: ../fish/guestfish.pod:561
20327 msgid "B<MB>"
20328 msgstr ""
20329
20330 #. type: textblock
20331 #: ../fish/guestfish.pod:563
20332 msgid "The size in SI 1000000 byte units."
20333 msgstr ""
20334
20335 #. type: =item
20336 #: ../fish/guestfish.pod:565
20337 msgid "B<G> or B<GiB>"
20338 msgstr ""
20339
20340 #. type: textblock
20341 #: ../fish/guestfish.pod:567
20342 msgid "The size in gigabytes (multiplied by 2**30)."
20343 msgstr ""
20344
20345 #. type: =item
20346 #: ../fish/guestfish.pod:569
20347 msgid "B<GB>"
20348 msgstr ""
20349
20350 #. type: textblock
20351 #: ../fish/guestfish.pod:571
20352 msgid "The size in SI 10**9 byte units."
20353 msgstr ""
20354
20355 #. type: =item
20356 #: ../fish/guestfish.pod:573
20357 msgid "B<T> or B<TiB>"
20358 msgstr ""
20359
20360 #. type: textblock
20361 #: ../fish/guestfish.pod:575
20362 msgid "The size in terabytes (multiplied by 2**40)."
20363 msgstr ""
20364
20365 #. type: =item
20366 #: ../fish/guestfish.pod:577
20367 msgid "B<TB>"
20368 msgstr ""
20369
20370 #. type: textblock
20371 #: ../fish/guestfish.pod:579
20372 msgid "The size in SI 10**12 byte units."
20373 msgstr ""
20374
20375 #. type: =item
20376 #: ../fish/guestfish.pod:581
20377 msgid "B<P> or B<PiB>"
20378 msgstr ""
20379
20380 #. type: textblock
20381 #: ../fish/guestfish.pod:583
20382 msgid "The size in petabytes (multiplied by 2**50)."
20383 msgstr ""
20384
20385 #. type: =item
20386 #: ../fish/guestfish.pod:585
20387 msgid "B<PB>"
20388 msgstr ""
20389
20390 #. type: textblock
20391 #: ../fish/guestfish.pod:587
20392 msgid "The size in SI 10**15 byte units."
20393 msgstr ""
20394
20395 #. type: =item
20396 #: ../fish/guestfish.pod:589
20397 msgid "B<E> or B<EiB>"
20398 msgstr ""
20399
20400 #. type: textblock
20401 #: ../fish/guestfish.pod:591
20402 msgid "The size in exabytes (multiplied by 2**60)."
20403 msgstr ""
20404
20405 #. type: =item
20406 #: ../fish/guestfish.pod:593
20407 msgid "B<EB>"
20408 msgstr ""
20409
20410 #. type: textblock
20411 #: ../fish/guestfish.pod:595
20412 msgid "The size in SI 10**18 byte units."
20413 msgstr ""
20414
20415 #. type: =item
20416 #: ../fish/guestfish.pod:597
20417 msgid "B<Z> or B<ZiB>"
20418 msgstr ""
20419
20420 #. type: textblock
20421 #: ../fish/guestfish.pod:599
20422 msgid "The size in zettabytes (multiplied by 2**70)."
20423 msgstr ""
20424
20425 #. type: =item
20426 #: ../fish/guestfish.pod:601
20427 msgid "B<ZB>"
20428 msgstr ""
20429
20430 #. type: textblock
20431 #: ../fish/guestfish.pod:603
20432 msgid "The size in SI 10**21 byte units."
20433 msgstr ""
20434
20435 #. type: =item
20436 #: ../fish/guestfish.pod:605
20437 msgid "B<Y> or B<YiB>"
20438 msgstr ""
20439
20440 #. type: textblock
20441 #: ../fish/guestfish.pod:607
20442 msgid "The size in yottabytes (multiplied by 2**80)."
20443 msgstr ""
20444
20445 #. type: =item
20446 #: ../fish/guestfish.pod:609
20447 msgid "B<YB>"
20448 msgstr ""
20449
20450 #. type: textblock
20451 #: ../fish/guestfish.pod:611
20452 msgid "The size in SI 10**24 byte units."
20453 msgstr ""
20454
20455 #. type: verbatim
20456 #: ../fish/guestfish.pod:617
20457 #, no-wrap
20458 msgid ""
20459 " truncate-size /file 1G\n"
20460 "\n"
20461 msgstr ""
20462
20463 #. type: textblock
20464 #: ../fish/guestfish.pod:619
20465 msgid "would truncate the file to 1 gigabyte."
20466 msgstr ""
20467
20468 #. type: textblock
20469 #: ../fish/guestfish.pod:621
20470 msgid ""
20471 "Be careful because a few commands take sizes in kilobytes or megabytes "
20472 "(eg. the parameter to L</memsize> is specified in megabytes already).  "
20473 "Adding a suffix will probably not do what you expect."
20474 msgstr ""
20475
20476 #. type: =head2
20477 #: ../fish/guestfish.pod:625
20478 msgid "OCTAL AND HEXADECIMAL NUMBERS"
20479 msgstr ""
20480
20481 #. type: textblock
20482 #: ../fish/guestfish.pod:627
20483 msgid ""
20484 "For specifying the radix (base) use the C convention: C<0> to prefix an "
20485 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
20486 msgstr ""
20487
20488 #. type: verbatim
20489 #: ../fish/guestfish.pod:630
20490 #, no-wrap
20491 msgid ""
20492 " 1234      decimal number 1234\n"
20493 " 02322     octal number, equivalent to decimal 1234\n"
20494 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
20495 "\n"
20496 msgstr ""
20497
20498 #. type: textblock
20499 #: ../fish/guestfish.pod:634
20500 msgid ""
20501 "When using the C<chmod> command, you almost always want to specify an octal "
20502 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
20503 "L<chmod(1)> program):"
20504 msgstr ""
20505
20506 #. type: verbatim
20507 #: ../fish/guestfish.pod:638
20508 #, no-wrap
20509 msgid ""
20510 " chmod 0777 /public  # OK\n"
20511 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
20512 "\n"
20513 msgstr ""
20514
20515 #. type: textblock
20516 #: ../fish/guestfish.pod:641
20517 msgid ""
20518 "Commands that return numbers usually print them in decimal, but some "
20519 "commands print numbers in other radices (eg. C<umask> prints the mode in "
20520 "octal, preceeded by C<0>)."
20521 msgstr ""
20522
20523 #. type: =head1
20524 #: ../fish/guestfish.pod:645
20525 msgid "WILDCARDS AND GLOBBING"
20526 msgstr ""
20527
20528 #. type: textblock
20529 #: ../fish/guestfish.pod:647
20530 msgid ""
20531 "Neither guestfish nor the underlying guestfs API performs wildcard expansion "
20532 "(globbing) by default.  So for example the following will not do what you "
20533 "expect:"
20534 msgstr ""
20535
20536 #. type: verbatim
20537 #: ../fish/guestfish.pod:651
20538 #, no-wrap
20539 msgid ""
20540 " rm-rf /home/*\n"
20541 "\n"
20542 msgstr ""
20543
20544 #. type: textblock
20545 #: ../fish/guestfish.pod:653
20546 msgid ""
20547 "Assuming you don't have a directory called literally C</home/*> then the "
20548 "above command will return an error."
20549 msgstr ""
20550
20551 #. type: textblock
20552 #: ../fish/guestfish.pod:656
20553 msgid "To perform wildcard expansion, use the C<glob> command."
20554 msgstr ""
20555
20556 #. type: verbatim
20557 #: ../fish/guestfish.pod:658
20558 #, no-wrap
20559 msgid ""
20560 " glob rm-rf /home/*\n"
20561 "\n"
20562 msgstr ""
20563
20564 #. type: textblock
20565 #: ../fish/guestfish.pod:660
20566 msgid ""
20567 "runs C<rm-rf> on each path that matches (ie. potentially running the command "
20568 "many times), equivalent to:"
20569 msgstr ""
20570
20571 #. type: verbatim
20572 #: ../fish/guestfish.pod:663
20573 #, no-wrap
20574 msgid ""
20575 " rm-rf /home/jim\n"
20576 " rm-rf /home/joe\n"
20577 " rm-rf /home/mary\n"
20578 "\n"
20579 msgstr ""
20580
20581 #. type: textblock
20582 #: ../fish/guestfish.pod:667
20583 msgid "C<glob> only works on simple guest paths and not on device names."
20584 msgstr ""
20585
20586 #. type: textblock
20587 #: ../fish/guestfish.pod:669
20588 msgid ""
20589 "If you have several parameters, each containing a wildcard, then glob will "
20590 "perform a Cartesian product."
20591 msgstr ""
20592
20593 #. type: =head1
20594 #: ../fish/guestfish.pod:672
20595 msgid "COMMENTS"
20596 msgstr ""
20597
20598 #. type: textblock
20599 #: ../fish/guestfish.pod:674
20600 msgid ""
20601 "Any line which starts with a I<#> character is treated as a comment and "
20602 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
20603 "a command.  For example:"
20604 msgstr ""
20605
20606 #. type: verbatim
20607 #: ../fish/guestfish.pod:678
20608 #, no-wrap
20609 msgid ""
20610 " # this is a comment\n"
20611 "         # this is a comment\n"
20612 " foo # NOT a comment\n"
20613 "\n"
20614 msgstr ""
20615
20616 #. type: textblock
20617 #: ../fish/guestfish.pod:682
20618 msgid "Blank lines are also ignored."
20619 msgstr ""
20620
20621 #. type: =head1
20622 #: ../fish/guestfish.pod:684
20623 msgid "RUNNING COMMANDS LOCALLY"
20624 msgstr ""
20625
20626 #. type: textblock
20627 #: ../fish/guestfish.pod:686
20628 msgid ""
20629 "Any line which starts with a I<!> character is treated as a command sent to "
20630 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
20631 msgstr ""
20632
20633 #. type: verbatim
20634 #: ../fish/guestfish.pod:690
20635 #, no-wrap
20636 msgid ""
20637 " !mkdir local\n"
20638 " tgz-out /remote local/remote-data.tar.gz\n"
20639 "\n"
20640 msgstr ""
20641
20642 #. type: textblock
20643 #: ../fish/guestfish.pod:693
20644 msgid ""
20645 "will create a directory C<local> on the host, and then export the contents "
20646 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
20647 "(See C<tgz-out>)."
20648 msgstr ""
20649
20650 #. type: textblock
20651 #: ../fish/guestfish.pod:697
20652 msgid ""
20653 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
20654 "effect, due to the way that subprocesses work in Unix."
20655 msgstr ""
20656
20657 #. type: =head2
20658 #: ../fish/guestfish.pod:700
20659 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
20660 msgstr ""
20661
20662 #. type: textblock
20663 #: ../fish/guestfish.pod:702
20664 msgid ""
20665 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
20666 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
20667 "and executed as guestfish commands."
20668 msgstr ""
20669
20670 #. type: textblock
20671 #: ../fish/guestfish.pod:706
20672 msgid ""
20673 "Thus you can use shell script to construct arbitrary guestfish commands "
20674 "which are then parsed by guestfish."
20675 msgstr ""
20676
20677 #. type: textblock
20678 #: ../fish/guestfish.pod:709
20679 msgid ""
20680 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
20681 "through C</foo.100>) using guestfish commands alone.  However this is simple "
20682 "if we use a shell script to create the guestfish commands for us:"
20683 msgstr ""
20684
20685 #. type: verbatim
20686 #: ../fish/guestfish.pod:714
20687 #, no-wrap
20688 msgid ""
20689 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
20690 "\n"
20691 msgstr ""
20692
20693 #. type: textblock
20694 #: ../fish/guestfish.pod:716
20695 msgid "or with names like C</foo.001>:"
20696 msgstr ""
20697
20698 #. type: verbatim
20699 #: ../fish/guestfish.pod:718
20700 #, no-wrap
20701 msgid ""
20702 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
20703 "\n"
20704 msgstr ""
20705
20706 #. type: textblock
20707 #: ../fish/guestfish.pod:720
20708 msgid ""
20709 "When using guestfish interactively it can be helpful to just run the shell "
20710 "script first (ie. remove the initial C<E<lt>> character so it is just an "
20711 "ordinary I<!> local command), see what guestfish commands it would run, and "
20712 "when you are happy with those prepend the C<E<lt>> character to run the "
20713 "guestfish commands for real."
20714 msgstr ""
20715
20716 #. type: =head1
20717 #: ../fish/guestfish.pod:726
20718 msgid "PIPES"
20719 msgstr ""
20720
20721 #. type: textblock
20722 #: ../fish/guestfish.pod:728
20723 msgid ""
20724 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
20725 "command (a guestfish command) to the second command (any host command).  For "
20726 "example:"
20727 msgstr ""
20728
20729 #. type: verbatim
20730 #: ../fish/guestfish.pod:732
20731 #, no-wrap
20732 msgid ""
20733 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
20734 "\n"
20735 msgstr ""
20736
20737 #. type: textblock
20738 #: ../fish/guestfish.pod:734
20739 msgid ""
20740 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
20741 "program).  The above command would list all accounts in the guest filesystem "
20742 "which have UID 0, ie. root accounts including backdoors.  Other examples:"
20743 msgstr ""
20744
20745 #. type: verbatim
20746 #: ../fish/guestfish.pod:739
20747 #, no-wrap
20748 msgid ""
20749 " hexdump /bin/ls | head\n"
20750 " list-devices | tail -1\n"
20751 " tgz-out / - | tar ztf -\n"
20752 "\n"
20753 msgstr ""
20754
20755 #. type: textblock
20756 #: ../fish/guestfish.pod:743
20757 msgid ""
20758 "The space before the pipe symbol is required, any space after the pipe "
20759 "symbol is optional.  Everything after the pipe symbol is just passed "
20760 "straight to the host shell, so it can contain redirections, globs and "
20761 "anything else that makes sense on the host side."
20762 msgstr ""
20763
20764 #. type: textblock
20765 #: ../fish/guestfish.pod:748
20766 msgid ""
20767 "To use a literal argument which begins with a pipe symbol, you have to quote "
20768 "it, eg:"
20769 msgstr ""
20770
20771 #. type: verbatim
20772 #: ../fish/guestfish.pod:751
20773 #, no-wrap
20774 msgid ""
20775 " echo \"|\"\n"
20776 "\n"
20777 msgstr ""
20778
20779 #. type: =head1
20780 #: ../fish/guestfish.pod:753
20781 msgid "HOME DIRECTORIES"
20782 msgstr ""
20783
20784 #. type: textblock
20785 #: ../fish/guestfish.pod:755
20786 msgid ""
20787 "If a parameter starts with the character C<~> then the tilde may be expanded "
20788 "as a home directory path (either C<~> for the current user's home directory, "
20789 "or C<~user> for another user)."
20790 msgstr ""
20791
20792 #. type: textblock
20793 #: ../fish/guestfish.pod:759
20794 msgid ""
20795 "Note that home directory expansion happens for users known I<on the host>, "
20796 "not in the guest filesystem."
20797 msgstr ""
20798
20799 #. type: textblock
20800 #: ../fish/guestfish.pod:762
20801 msgid ""
20802 "To use a literal argument which begins with a tilde, you have to quote it, "
20803 "eg:"
20804 msgstr ""
20805
20806 #. type: verbatim
20807 #: ../fish/guestfish.pod:765
20808 #, no-wrap
20809 msgid ""
20810 " echo \"~\"\n"
20811 "\n"
20812 msgstr ""
20813
20814 #. type: textblock
20815 #: ../fish/guestfish.pod:769
20816 msgid ""
20817 "Libguestfs has some support for Linux guests encrypted according to the "
20818 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
20819 "disk encryption systems used by modern Linux guests.  Currently only "
20820 "LVM-on-LUKS is supported."
20821 msgstr ""
20822
20823 #. type: textblock
20824 #: ../fish/guestfish.pod:774
20825 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
20826 msgstr ""
20827
20828 #. type: verbatim
20829 #: ../fish/guestfish.pod:776
20830 #, no-wrap
20831 msgid ""
20832 " ><fs> vfs-type /dev/sda2\n"
20833 " crypto_LUKS\n"
20834 "\n"
20835 msgstr ""
20836
20837 #. type: textblock
20838 #: ../fish/guestfish.pod:779
20839 msgid ""
20840 "Then open those devices using L</luks-open>.  This creates a device-mapper "
20841 "device called C</dev/mapper/luksdev>."
20842 msgstr ""
20843
20844 #. type: verbatim
20845 #: ../fish/guestfish.pod:782
20846 #, no-wrap
20847 msgid ""
20848 " ><fs> luks-open /dev/sda2 luksdev\n"
20849 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
20850 "\n"
20851 msgstr ""
20852
20853 #. type: textblock
20854 #: ../fish/guestfish.pod:785
20855 msgid ""
20856 "Finally you have to tell LVM to scan for volume groups on the newly created "
20857 "mapper device:"
20858 msgstr ""
20859
20860 #. type: verbatim
20861 #: ../fish/guestfish.pod:788
20862 #, no-wrap
20863 msgid ""
20864 " vgscan\n"
20865 " vg-activate-all true\n"
20866 "\n"
20867 msgstr ""
20868
20869 #. type: textblock
20870 #: ../fish/guestfish.pod:791
20871 msgid "The logical volume(s) can now be mounted in the usual way."
20872 msgstr ""
20873
20874 #. type: textblock
20875 #: ../fish/guestfish.pod:793
20876 msgid ""
20877 "Before closing a LUKS device you must unmount any logical volumes on it and "
20878 "deactivate the volume groups by calling C<vg-activate false VG> on each "
20879 "one.  Then you can close the mapper device:"
20880 msgstr ""
20881
20882 #. type: verbatim
20883 #: ../fish/guestfish.pod:797
20884 #, no-wrap
20885 msgid ""
20886 " vg-activate false /dev/VG\n"
20887 " luks-close /dev/mapper/luksdev\n"
20888 "\n"
20889 msgstr ""
20890
20891 #. type: =head1
20892 #: ../fish/guestfish.pod:800
20893 msgid "WINDOWS PATHS"
20894 msgstr ""
20895
20896 #. type: textblock
20897 #: ../fish/guestfish.pod:802
20898 msgid ""
20899 "If a path is prefixed with C<win:> then you can use Windows-style drive "
20900 "letters and paths (with some limitations).  The following commands are "
20901 "equivalent:"
20902 msgstr ""
20903
20904 #. type: verbatim
20905 #: ../fish/guestfish.pod:806
20906 #, no-wrap
20907 msgid ""
20908 " file /WINDOWS/system32/config/system.LOG\n"
20909 "\n"
20910 msgstr ""
20911
20912 #. type: verbatim
20913 #: ../fish/guestfish.pod:808
20914 #, no-wrap
20915 msgid ""
20916 " file win:\\windows\\system32\\config\\system.log\n"
20917 "\n"
20918 msgstr ""
20919
20920 #. type: verbatim
20921 #: ../fish/guestfish.pod:810
20922 #, no-wrap
20923 msgid ""
20924 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
20925 "\n"
20926 msgstr ""
20927
20928 #. type: textblock
20929 #: ../fish/guestfish.pod:812
20930 msgid ""
20931 "The parameter is rewritten \"behind the scenes\" by looking up the position "
20932 "where the drive is mounted, prepending that to the path, changing all "
20933 "backslash characters to forward slash, then resolving the result using "
20934 "L</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
20935 "then the parameter might be rewritten like this:"
20936 msgstr ""
20937
20938 #. type: verbatim
20939 #: ../fish/guestfish.pod:818
20940 #, no-wrap
20941 msgid ""
20942 " win:e:\\foo\\bar => /e/FOO/bar\n"
20943 "\n"
20944 msgstr ""
20945
20946 #. type: textblock
20947 #: ../fish/guestfish.pod:820
20948 msgid "This only works in argument positions that expect a path."
20949 msgstr ""
20950
20951 #. type: =head1
20952 #: ../fish/guestfish.pod:822
20953 msgid "UPLOADING AND DOWNLOADING FILES"
20954 msgstr ""
20955
20956 #. type: textblock
20957 #: ../fish/guestfish.pod:824
20958 msgid ""
20959 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
20960 "others which upload from or download to a local file, you can use the "
20961 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
20962 msgstr ""
20963
20964 #. type: verbatim
20965 #: ../fish/guestfish.pod:828
20966 #, no-wrap
20967 msgid ""
20968 " upload - /foo\n"
20969 "\n"
20970 msgstr ""
20971
20972 #. type: textblock
20973 #: ../fish/guestfish.pod:830
20974 msgid "reads stdin and creates from that a file C</foo> in the disk image, and:"
20975 msgstr ""
20976
20977 #. type: verbatim
20978 #: ../fish/guestfish.pod:833
20979 #, no-wrap
20980 msgid ""
20981 " tar-out /etc - | tar tf -\n"
20982 "\n"
20983 msgstr ""
20984
20985 #. type: textblock
20986 #: ../fish/guestfish.pod:835
20987 msgid ""
20988 "writes the tarball to stdout and then pipes that into the external \"tar\" "
20989 "command (see L</PIPES>)."
20990 msgstr ""
20991
20992 #. type: textblock
20993 #: ../fish/guestfish.pod:838
20994 msgid ""
20995 "When using C<-> to read from stdin, the input is read up to the end of "
20996 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
20997 "some arbitrary end marker:"
20998 msgstr ""
20999
21000 #. type: verbatim
21001 #: ../fish/guestfish.pod:842
21002 #, no-wrap
21003 msgid ""
21004 " upload -<<END /foo\n"
21005 " input line 1\n"
21006 " input line 2\n"
21007 " input line 3\n"
21008 " END\n"
21009 "\n"
21010 msgstr ""
21011
21012 #. type: textblock
21013 #: ../fish/guestfish.pod:848
21014 msgid ""
21015 "Any string of characters can be used instead of C<END>.  The end marker must "
21016 "appear on a line of its own, without any preceeding or following characters "
21017 "(not even spaces)."
21018 msgstr ""
21019
21020 #. type: textblock
21021 #: ../fish/guestfish.pod:852
21022 msgid ""
21023 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
21024 "upload local files (so-called \"FileIn\" parameters in the generator)."
21025 msgstr ""
21026
21027 #. type: =head1
21028 #: ../fish/guestfish.pod:855
21029 msgid "EXIT ON ERROR BEHAVIOUR"
21030 msgstr ""
21031
21032 #. type: textblock
21033 #: ../fish/guestfish.pod:857
21034 msgid ""
21035 "By default, guestfish will ignore any errors when in interactive mode "
21036 "(ie. taking commands from a human over a tty), and will exit on the first "
21037 "error in non-interactive mode (scripts, commands given on the command line)."
21038 msgstr ""
21039
21040 #. type: textblock
21041 #: ../fish/guestfish.pod:862
21042 msgid ""
21043 "If you prefix a command with a I<-> character, then that command will not "
21044 "cause guestfish to exit, even if that (one) command returns an error."
21045 msgstr ""
21046
21047 #. type: =head1
21048 #: ../fish/guestfish.pod:866
21049 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
21050 msgstr ""
21051
21052 #. type: textblock
21053 #: ../fish/guestfish.pod:868
21054 msgid ""
21055 "Guestfish can be remote-controlled over a socket.  This is useful "
21056 "particularly in shell scripts where you want to make several different "
21057 "changes to a filesystem, but you don't want the overhead of starting up a "
21058 "guestfish process each time."
21059 msgstr ""
21060
21061 #. type: textblock
21062 #: ../fish/guestfish.pod:873
21063 msgid "Start a guestfish server process using:"
21064 msgstr ""
21065
21066 #. type: verbatim
21067 #: ../fish/guestfish.pod:875
21068 #, no-wrap
21069 msgid ""
21070 " eval \"`guestfish --listen`\"\n"
21071 "\n"
21072 msgstr ""
21073
21074 #. type: textblock
21075 #: ../fish/guestfish.pod:877
21076 msgid "and then send it commands by doing:"
21077 msgstr ""
21078
21079 #. type: verbatim
21080 #: ../fish/guestfish.pod:879
21081 #, no-wrap
21082 msgid ""
21083 " guestfish --remote cmd [...]\n"
21084 "\n"
21085 msgstr ""
21086
21087 #. type: textblock
21088 #: ../fish/guestfish.pod:881
21089 msgid "To cause the server to exit, send it the exit command:"
21090 msgstr ""
21091
21092 #. type: verbatim
21093 #: ../fish/guestfish.pod:883
21094 #, no-wrap
21095 msgid ""
21096 " guestfish --remote exit\n"
21097 "\n"
21098 msgstr ""
21099
21100 #. type: textblock
21101 #: ../fish/guestfish.pod:885
21102 msgid ""
21103 "Note that the server will normally exit if there is an error in a command.  "
21104 "You can change this in the usual way.  See section L</EXIT ON ERROR "
21105 "BEHAVIOUR>."
21106 msgstr ""
21107
21108 #. type: =head2
21109 #: ../fish/guestfish.pod:889
21110 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
21111 msgstr ""
21112
21113 #. type: textblock
21114 #: ../fish/guestfish.pod:891
21115 msgid ""
21116 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which "
21117 "is how the I<--remote> option knows where to send the commands.  You can "
21118 "have several guestfish listener processes running using:"
21119 msgstr ""
21120
21121 #. type: verbatim
21122 #: ../fish/guestfish.pod:895
21123 #, no-wrap
21124 msgid ""
21125 " eval \"`guestfish --listen`\"\n"
21126 " pid1=$GUESTFISH_PID\n"
21127 " eval \"`guestfish --listen`\"\n"
21128 " pid2=$GUESTFISH_PID\n"
21129 " ...\n"
21130 " guestfish --remote=$pid1 cmd\n"
21131 " guestfish --remote=$pid2 cmd\n"
21132 "\n"
21133 msgstr ""
21134
21135 #. type: =head2
21136 #: ../fish/guestfish.pod:903
21137 msgid "REMOTE CONTROL AND CSH"
21138 msgstr ""
21139
21140 #. type: textblock
21141 #: ../fish/guestfish.pod:905
21142 msgid ""
21143 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
21144 "option:"
21145 msgstr ""
21146
21147 #. type: verbatim
21148 #: ../fish/guestfish.pod:908
21149 #, no-wrap
21150 msgid ""
21151 " eval \"`guestfish --listen --csh`\"\n"
21152 "\n"
21153 msgstr ""
21154
21155 #. type: =head2
21156 #: ../fish/guestfish.pod:910
21157 msgid "REMOTE CONTROL DETAILS"
21158 msgstr ""
21159
21160 #. type: textblock
21161 #: ../fish/guestfish.pod:912
21162 msgid ""
21163 "Remote control happens over a Unix domain socket called "
21164 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
21165 "of the process, and C<$PID> is the process ID of the server."
21166 msgstr ""
21167
21168 #. type: textblock
21169 #: ../fish/guestfish.pod:916
21170 msgid "Guestfish client and server versions must match exactly."
21171 msgstr ""
21172
21173 #. type: =head1
21174 #: ../fish/guestfish.pod:918
21175 msgid "PREPARED DISK IMAGES"
21176 msgstr ""
21177
21178 #. type: textblock
21179 #: ../fish/guestfish.pod:920
21180 msgid ""
21181 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
21182 "preformatted disk images that guestfish can make for you to save typing.  "
21183 "This is particularly useful for testing purposes.  This option is used "
21184 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
21185 "can be mixed with I<-a>)."
21186 msgstr ""
21187
21188 #. type: textblock
21189 #: ../fish/guestfish.pod:926
21190 msgid ""
21191 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
21192 "the second and so on.  Existing files in the current directory are "
21193 "I<overwritten>."
21194 msgstr ""
21195
21196 #. type: textblock
21197 #: ../fish/guestfish.pod:930
21198 msgid ""
21199 "The type briefly describes how the disk should be sized, partitioned, how "
21200 "filesystem(s) should be created, and how content should be added.  "
21201 "Optionally the type can be followed by extra parameters, separated by C<:> "
21202 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
21203 "sparsely-allocated disk, containing a single partition, with the partition "
21204 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem "
21205 "on a 1GB disk instead."
21206 msgstr ""
21207
21208 #. type: textblock
21209 #: ../fish/guestfish.pod:938
21210 msgid "To list the available types and any extra parameters they take, run:"
21211 msgstr ""
21212
21213 #. type: textblock
21214 #: ../fish/guestfish.pod:942
21215 msgid ""
21216 "Note that the prepared filesystem is not mounted.  You would usually have to "
21217 "use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
21218 msgstr ""
21219
21220 #. type: textblock
21221 #: ../fish/guestfish.pod:946
21222 msgid ""
21223 "If any I<-N> or I<--new> options are given, the guest is automatically "
21224 "launched."
21225 msgstr ""
21226
21227 #. type: textblock
21228 #: ../fish/guestfish.pod:951
21229 msgid "Create a 100MB disk with an ext4-formatted partition:"
21230 msgstr ""
21231
21232 #. type: verbatim
21233 #: ../fish/guestfish.pod:953
21234 #, no-wrap
21235 msgid ""
21236 " guestfish -N fs:ext4\n"
21237 "\n"
21238 msgstr ""
21239
21240 #. type: textblock
21241 #: ../fish/guestfish.pod:955
21242 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
21243 msgstr ""
21244
21245 #. type: verbatim
21246 #: ../fish/guestfish.pod:957
21247 #, no-wrap
21248 msgid ""
21249 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
21250 "\n"
21251 msgstr ""
21252
21253 #. type: textblock
21254 #: ../fish/guestfish.pod:959
21255 msgid "Create a blank 200MB disk:"
21256 msgstr ""
21257
21258 #. type: verbatim
21259 #: ../fish/guestfish.pod:961
21260 #, no-wrap
21261 msgid ""
21262 " guestfish -N disk:200M\n"
21263 "\n"
21264 msgstr ""
21265
21266 #. type: =head1
21267 #: ../fish/guestfish.pod:963
21268 msgid "PROGRESS BARS"
21269 msgstr ""
21270
21271 #. type: textblock
21272 #: ../fish/guestfish.pod:965
21273 msgid ""
21274 "Some (not all) long-running commands send progress notification messages as "
21275 "they are running.  Guestfish turns these messages into progress bars."
21276 msgstr ""
21277
21278 #. type: textblock
21279 #: ../fish/guestfish.pod:969
21280 msgid ""
21281 "When a command that supports progress bars takes longer than two seconds to "
21282 "run, and if progress bars are enabled, then you will see one appearing below "
21283 "the command:"
21284 msgstr ""
21285
21286 #. type: verbatim
21287 #: ../fish/guestfish.pod:973
21288 #, no-wrap
21289 msgid ""
21290 " ><fs> copy-size /large-file /another-file 2048M\n"
21291 " / 10% [#####-----------------------------------------] 00:30\n"
21292 "\n"
21293 msgstr ""
21294
21295 #. type: textblock
21296 #: ../fish/guestfish.pod:976
21297 msgid ""
21298 "The spinner on the left hand side moves round once for every progress "
21299 "notification received from the backend.  This is a (reasonably) golden "
21300 "assurance that the command is \"doing something\" even if the progress bar "
21301 "is not moving, because the command is able to send the progress "
21302 "notifications.  When the bar reaches 100% and the command finishes, the "
21303 "spinner disappears."
21304 msgstr ""
21305
21306 #. type: textblock
21307 #: ../fish/guestfish.pod:983
21308 msgid ""
21309 "Progress bars are enabled by default when guestfish is used interactively.  "
21310 "You can enable them even for non-interactive modes using I<--progress-bars>, "
21311 "and you can disable them completely using I<--no-progress-bars>."
21312 msgstr ""
21313
21314 #. type: =head1
21315 #: ../fish/guestfish.pod:988
21316 msgid "GUESTFISH COMMANDS"
21317 msgstr ""
21318
21319 #. type: textblock
21320 #: ../fish/guestfish.pod:990
21321 msgid ""
21322 "The commands in this section are guestfish convenience commands, in other "
21323 "words, they are not part of the L<guestfs(3)> API."
21324 msgstr ""
21325
21326 #. type: =head2
21327 #: ../fish/guestfish.pod:993
21328 msgid "help"
21329 msgstr ""
21330
21331 #. type: verbatim
21332 #: ../fish/guestfish.pod:995
21333 #, no-wrap
21334 msgid ""
21335 " help\n"
21336 " help cmd\n"
21337 "\n"
21338 msgstr ""
21339
21340 #. type: textblock
21341 #: ../fish/guestfish.pod:998
21342 msgid "Without any parameter, this provides general help."
21343 msgstr ""
21344
21345 #. type: textblock
21346 #: ../fish/guestfish.pod:1000
21347 msgid "With a C<cmd> parameter, this displays detailed help for that command."
21348 msgstr ""
21349
21350 #. type: =head2
21351 #: ../fish/guestfish.pod:1002
21352 msgid "quit | exit"
21353 msgstr ""
21354
21355 #. type: textblock
21356 #: ../fish/guestfish.pod:1004
21357 msgid "This exits guestfish.  You can also use C<^D> key."
21358 msgstr ""
21359
21360 #. type: textblock
21361 #: ../fish/guestfish.pod:1006
21362 msgid "@FISH_COMMANDS@"
21363 msgstr ""
21364
21365 #. type: =head1
21366 #: ../fish/guestfish.pod:1008
21367 msgid "COMMANDS"
21368 msgstr ""
21369
21370 #. type: =head1
21371 #: ../fish/guestfish.pod:1012 ../test-tool/libguestfs-test-tool.pod:77
21372 msgid "EXIT CODE"
21373 msgstr ""
21374
21375 #. type: textblock
21376 #: ../fish/guestfish.pod:1014
21377 msgid ""
21378 "guestfish returns 0 if the commands completed without error, or 1 if there "
21379 "was an error."
21380 msgstr ""
21381
21382 #. type: =item
21383 #: ../fish/guestfish.pod:1021
21384 msgid "EDITOR"
21385 msgstr ""
21386
21387 #. type: textblock
21388 #: ../fish/guestfish.pod:1023
21389 msgid ""
21390 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
21391 "C<vi>."
21392 msgstr ""
21393
21394 #. type: =item
21395 #: ../fish/guestfish.pod:1026
21396 msgid "GUESTFISH_DISPLAY_IMAGE"
21397 msgstr ""
21398
21399 #. type: textblock
21400 #: ../fish/guestfish.pod:1028
21401 msgid ""
21402 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
21403 "If not set, it uses L<display(1)>."
21404 msgstr ""
21405
21406 #. type: =item
21407 #: ../fish/guestfish.pod:1031
21408 msgid "GUESTFISH_PID"
21409 msgstr ""
21410
21411 #. type: textblock
21412 #: ../fish/guestfish.pod:1033
21413 msgid ""
21414 "Used with the I<--remote> option to specify the remote guestfish process to "
21415 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
21416 msgstr ""
21417
21418 #. type: =item
21419 #: ../fish/guestfish.pod:1037
21420 msgid "HEXEDITOR"
21421 msgstr ""
21422
21423 #. type: textblock
21424 #: ../fish/guestfish.pod:1039
21425 msgid ""
21426 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
21427 "not specified, the external L<hexedit(1)> program is used."
21428 msgstr ""
21429
21430 #. type: =item
21431 #: ../fish/guestfish.pod:1043
21432 msgid "HOME"
21433 msgstr ""
21434
21435 #. type: textblock
21436 #: ../fish/guestfish.pod:1045
21437 msgid ""
21438 "If compiled with GNU readline support, various files in the home directory "
21439 "can be used.  See L</FILES>."
21440 msgstr ""
21441
21442 #. type: textblock
21443 #: ../fish/guestfish.pod:1054
21444 msgid ""
21445 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
21446 "effect as using the B<-v> option."
21447 msgstr ""
21448
21449 #. type: textblock
21450 #: ../fish/guestfish.pod:1066
21451 msgid ""
21452 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
21453 "the discussion of paths in L<guestfs(3)>."
21454 msgstr ""
21455
21456 #. type: textblock
21457 #: ../fish/guestfish.pod:1077
21458 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
21459 msgstr ""
21460
21461 #. type: =item
21462 #: ../fish/guestfish.pod:1079
21463 msgid "PAGER"
21464 msgstr ""
21465
21466 #. type: textblock
21467 #: ../fish/guestfish.pod:1081
21468 msgid ""
21469 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
21470 "C<more>."
21471 msgstr ""
21472
21473 #. type: =head1
21474 #: ../fish/guestfish.pod:1097 ../fuse/guestmount.pod:264
21475 msgid "FILES"
21476 msgstr ""
21477
21478 #. type: =item
21479 #: ../fish/guestfish.pod:1101 ../fuse/guestmount.pod:268
21480 msgid "$HOME/.libguestfs-tools.rc"
21481 msgstr ""
21482
21483 #. type: =item
21484 #: ../fish/guestfish.pod:1103 ../fuse/guestmount.pod:270
21485 msgid "/etc/libguestfs-tools.conf"
21486 msgstr ""
21487
21488 #. type: textblock
21489 #: ../fish/guestfish.pod:1105 ../fuse/guestmount.pod:272
21490 msgid ""
21491 "This configuration file controls the default read-only or read-write mode "
21492 "(I<--ro> or I<--rw>)."
21493 msgstr ""
21494
21495 #. type: textblock
21496 #: ../fish/guestfish.pod:1108
21497 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
21498 msgstr ""
21499
21500 #. type: =item
21501 #: ../fish/guestfish.pod:1110
21502 msgid "$HOME/.guestfish"
21503 msgstr ""
21504
21505 #. type: textblock
21506 #: ../fish/guestfish.pod:1112
21507 msgid ""
21508 "If compiled with GNU readline support, then the command history is saved in "
21509 "this file."
21510 msgstr ""
21511
21512 #. type: =item
21513 #: ../fish/guestfish.pod:1115
21514 msgid "$HOME/.inputrc"
21515 msgstr ""
21516
21517 #. type: =item
21518 #: ../fish/guestfish.pod:1117
21519 msgid "/etc/inputrc"
21520 msgstr ""
21521
21522 #. type: textblock
21523 #: ../fish/guestfish.pod:1119
21524 msgid ""
21525 "If compiled with GNU readline support, then these files can be used to "
21526 "configure readline.  For further information, please see "
21527 "L<readline(3)/INITIALIZATION FILE>."
21528 msgstr ""
21529
21530 #. type: textblock
21531 #: ../fish/guestfish.pod:1123
21532 msgid "To write rules which only apply to guestfish, use:"
21533 msgstr ""
21534
21535 #. type: verbatim
21536 #: ../fish/guestfish.pod:1125
21537 #, no-wrap
21538 msgid ""
21539 " $if guestfish\n"
21540 " ...\n"
21541 " $endif\n"
21542 "\n"
21543 msgstr ""
21544
21545 #. type: textblock
21546 #: ../fish/guestfish.pod:1129
21547 msgid ""
21548 "Variables that you can set in inputrc that change the behaviour of guestfish "
21549 "in useful ways include:"
21550 msgstr ""
21551
21552 #. type: =item
21553 #: ../fish/guestfish.pod:1134
21554 msgid "completion-ignore-case (default: on)"
21555 msgstr ""
21556
21557 #. type: textblock
21558 #: ../fish/guestfish.pod:1136
21559 msgid ""
21560 "By default, guestfish will ignore case when tab-completing paths on the "
21561 "disk.  Use:"
21562 msgstr ""
21563
21564 #. type: verbatim
21565 #: ../fish/guestfish.pod:1139
21566 #, no-wrap
21567 msgid ""
21568 " set completion-ignore-case off\n"
21569 "\n"
21570 msgstr ""
21571
21572 #. type: textblock
21573 #: ../fish/guestfish.pod:1141
21574 msgid "to make guestfish case sensitive."
21575 msgstr ""
21576
21577 #. type: =item
21578 #: ../fish/guestfish.pod:1145
21579 msgid "test1.img"
21580 msgstr ""
21581
21582 #. type: =item
21583 #: ../fish/guestfish.pod:1147
21584 msgid "test2.img (etc)"
21585 msgstr ""
21586
21587 #. type: textblock
21588 #: ../fish/guestfish.pod:1149
21589 msgid ""
21590 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
21591 "will be created in the file C<test1.img> in the current directory.  The "
21592 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with "
21593 "the same name will be overwritten."
21594 msgstr ""
21595
21596 #. type: textblock
21597 #: ../fish/guestfish.pod:1158
21598 msgid ""
21599 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, "
21600 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, "
21601 "L<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, "
21602 "L<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, "
21603 "L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, "
21604 "L<virt-tar-out(1)>, L<virt-win-reg(1)>, L<display(1)>, L<hexedit(1)>."
21605 msgstr ""
21606
21607 #. type: textblock
21608 #: ../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
21609 msgid ""
21610 "This program is free software; you can redistribute it and/or modify it "
21611 "under the terms of the GNU General Public License as published by the Free "
21612 "Software Foundation; either version 2 of the License, or (at your option) "
21613 "any later version."
21614 msgstr ""
21615
21616 #. type: textblock
21617 #: ../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
21618 msgid ""
21619 "This program is distributed in the hope that it will be useful, but WITHOUT "
21620 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
21621 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
21622 "more details."
21623 msgstr ""
21624
21625 #. type: textblock
21626 #: ../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
21627 msgid ""
21628 "You should have received a copy of the GNU General Public License along with "
21629 "this program; if not, write to the Free Software Foundation, Inc., 675 Mass "
21630 "Ave, Cambridge, MA 02139, USA."
21631 msgstr ""
21632
21633 #. type: =head2
21634 #: ../fish/guestfish-actions.pod:1
21635 msgid "add-cdrom"
21636 msgstr ""
21637
21638 #. type: verbatim
21639 #: ../fish/guestfish-actions.pod:3
21640 #, no-wrap
21641 msgid ""
21642 " add-cdrom filename\n"
21643 "\n"
21644 msgstr ""
21645
21646 #. type: textblock
21647 #: ../fish/guestfish-actions.pod:15
21648 msgid ""
21649 "This call checks for the existence of C<filename>.  This stops you from "
21650 "specifying other types of drive which are supported by qemu such as C<nbd:> "
21651 "and C<http:> URLs.  To specify those, use the general L</config> call "
21652 "instead."
21653 msgstr ""
21654
21655 #. type: textblock
21656 #: ../fish/guestfish-actions.pod:22
21657 msgid ""
21658 "If you just want to add an ISO file (often you use this as an efficient way "
21659 "to transfer large files into the guest), then you should probably use "
21660 "L</add-drive-ro> instead."
21661 msgstr ""
21662
21663 #. type: =head2
21664 #: ../fish/guestfish-actions.pod:35
21665 msgid "add-domain"
21666 msgstr ""
21667
21668 #. type: =head2
21669 #: ../fish/guestfish-actions.pod:37
21670 msgid "domain"
21671 msgstr ""
21672
21673 #. type: verbatim
21674 #: ../fish/guestfish-actions.pod:39
21675 #, no-wrap
21676 msgid ""
21677 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] "
21678 "[allowuuid:..]\n"
21679 "\n"
21680 msgstr ""
21681
21682 #. type: textblock
21683 #: ../fish/guestfish-actions.pod:41
21684 msgid ""
21685 "This function adds the disk(s) attached to the named libvirt domain C<dom>.  "
21686 "It works by connecting to libvirt, requesting the domain and domain XML from "
21687 "libvirt, parsing it for disks, and calling L</add-drive-opts> on each one."
21688 msgstr ""
21689
21690 #. type: textblock
21691 #: ../fish/guestfish-actions.pod:76
21692 msgid ""
21693 "The other optional parameters are passed directly through to "
21694 "L</add-drive-opts>."
21695 msgstr ""
21696
21697 #. type: textblock
21698 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143 ../fish/guestfish-actions.pod:1937 ../fish/guestfish-actions.pod:3077 ../fish/guestfish-actions.pod:3250
21699 msgid ""
21700 "This command has one or more optional arguments.  See L</OPTIONAL "
21701 "ARGUMENTS>."
21702 msgstr ""
21703
21704 #. type: =head2
21705 #: ../fish/guestfish-actions.pod:81
21706 msgid "add-drive"
21707 msgstr ""
21708
21709 #. type: verbatim
21710 #: ../fish/guestfish-actions.pod:83
21711 #, no-wrap
21712 msgid ""
21713 " add-drive filename\n"
21714 "\n"
21715 msgstr ""
21716
21717 #. type: textblock
21718 #: ../fish/guestfish-actions.pod:85
21719 msgid ""
21720 "This function is the equivalent of calling L</add-drive-opts> with no "
21721 "optional parameters, so the disk is added writable, with the format being "
21722 "detected automatically."
21723 msgstr ""
21724
21725 #. type: textblock
21726 #: ../fish/guestfish-actions.pod:89
21727 msgid ""
21728 "Automatic detection of the format opens you up to a potential security hole "
21729 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
21730 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
21731 "you should think about replacing calls to this function with calls to "
21732 "L</add-drive-opts>, and specifying the format."
21733 msgstr ""
21734
21735 #. type: =head2
21736 #: ../fish/guestfish-actions.pod:96
21737 msgid "add-drive-opts"
21738 msgstr ""
21739
21740 #. type: =head2
21741 #: ../fish/guestfish-actions.pod:98
21742 msgid "add"
21743 msgstr ""
21744
21745 #. type: verbatim
21746 #: ../fish/guestfish-actions.pod:100
21747 #, no-wrap
21748 msgid ""
21749 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
21750 "\n"
21751 msgstr ""
21752
21753 #. type: textblock
21754 #: ../fish/guestfish-actions.pod:127
21755 msgid ""
21756 "This forces the image format.  If you omit this (or use L</add-drive> or "
21757 "L</add-drive-ro>) then the format is automatically detected.  Possible "
21758 "formats include C<raw> and C<qcow2>."
21759 msgstr ""
21760
21761 #. type: textblock
21762 #: ../fish/guestfish-actions.pod:138
21763 msgid ""
21764 "This rarely-used option lets you emulate the behaviour of the deprecated "
21765 "L</add-drive-with-if> call (q.v.)"
21766 msgstr ""
21767
21768 #. type: =head2
21769 #: ../fish/guestfish-actions.pod:145
21770 msgid "add-drive-ro"
21771 msgstr ""
21772
21773 #. type: =head2
21774 #: ../fish/guestfish-actions.pod:147
21775 msgid "add-ro"
21776 msgstr ""
21777
21778 #. type: verbatim
21779 #: ../fish/guestfish-actions.pod:149
21780 #, no-wrap
21781 msgid ""
21782 " add-drive-ro filename\n"
21783 "\n"
21784 msgstr ""
21785
21786 #. type: textblock
21787 #: ../fish/guestfish-actions.pod:151
21788 msgid ""
21789 "This function is the equivalent of calling L</add-drive-opts> with the "
21790 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
21791 "is added read-only, with the format being detected automatically."
21792 msgstr ""
21793
21794 #. type: =head2
21795 #: ../fish/guestfish-actions.pod:156
21796 msgid "add-drive-ro-with-if"
21797 msgstr ""
21798
21799 #. type: verbatim
21800 #: ../fish/guestfish-actions.pod:158
21801 #, no-wrap
21802 msgid ""
21803 " add-drive-ro-with-if filename iface\n"
21804 "\n"
21805 msgstr ""
21806
21807 #. type: textblock
21808 #: ../fish/guestfish-actions.pod:160
21809 msgid ""
21810 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
21811 "interface emulation to use at run time."
21812 msgstr ""
21813
21814 #. type: =head2
21815 #: ../fish/guestfish-actions.pod:170
21816 msgid "add-drive-with-if"
21817 msgstr ""
21818
21819 #. type: verbatim
21820 #: ../fish/guestfish-actions.pod:172
21821 #, no-wrap
21822 msgid ""
21823 " add-drive-with-if filename iface\n"
21824 "\n"
21825 msgstr ""
21826
21827 #. type: textblock
21828 #: ../fish/guestfish-actions.pod:174
21829 msgid ""
21830 "This is the same as L</add-drive> but it allows you to specify the QEMU "
21831 "interface emulation to use at run time."
21832 msgstr ""
21833
21834 #. type: =head2
21835 #: ../fish/guestfish-actions.pod:184
21836 msgid "aug-clear"
21837 msgstr ""
21838
21839 #. type: verbatim
21840 #: ../fish/guestfish-actions.pod:186
21841 #, no-wrap
21842 msgid ""
21843 " aug-clear augpath\n"
21844 "\n"
21845 msgstr ""
21846
21847 #. type: =head2
21848 #: ../fish/guestfish-actions.pod:191
21849 msgid "aug-close"
21850 msgstr ""
21851
21852 #. type: verbatim
21853 #: ../fish/guestfish-actions.pod:193
21854 #, no-wrap
21855 msgid ""
21856 " aug-close\n"
21857 "\n"
21858 msgstr ""
21859
21860 #. type: textblock
21861 #: ../fish/guestfish-actions.pod:195
21862 msgid ""
21863 "Close the current Augeas handle and free up any resources used by it.  After "
21864 "calling this, you have to call L</aug-init> again before you can use any "
21865 "other Augeas functions."
21866 msgstr ""
21867
21868 #. type: =head2
21869 #: ../fish/guestfish-actions.pod:200
21870 msgid "aug-defnode"
21871 msgstr ""
21872
21873 #. type: verbatim
21874 #: ../fish/guestfish-actions.pod:202
21875 #, no-wrap
21876 msgid ""
21877 " aug-defnode name expr val\n"
21878 "\n"
21879 msgstr ""
21880
21881 #. type: textblock
21882 #: ../fish/guestfish-actions.pod:207
21883 msgid ""
21884 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
21885 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
21886 "containing that single node."
21887 msgstr ""
21888
21889 #. type: =head2
21890 #: ../fish/guestfish-actions.pod:215
21891 msgid "aug-defvar"
21892 msgstr ""
21893
21894 #. type: verbatim
21895 #: ../fish/guestfish-actions.pod:217
21896 #, no-wrap
21897 msgid ""
21898 " aug-defvar name expr\n"
21899 "\n"
21900 msgstr ""
21901
21902 #. type: =head2
21903 #: ../fish/guestfish-actions.pod:226
21904 msgid "aug-get"
21905 msgstr ""
21906
21907 #. type: verbatim
21908 #: ../fish/guestfish-actions.pod:228
21909 #, no-wrap
21910 msgid ""
21911 " aug-get augpath\n"
21912 "\n"
21913 msgstr ""
21914
21915 #. type: =head2
21916 #: ../fish/guestfish-actions.pod:233
21917 msgid "aug-init"
21918 msgstr ""
21919
21920 #. type: verbatim
21921 #: ../fish/guestfish-actions.pod:235
21922 #, no-wrap
21923 msgid ""
21924 " aug-init root flags\n"
21925 "\n"
21926 msgstr ""
21927
21928 #. type: textblock
21929 #: ../fish/guestfish-actions.pod:241
21930 msgid "You must call this before using any other L</aug-*> commands."
21931 msgstr ""
21932
21933 #. type: textblock
21934 #: ../fish/guestfish-actions.pod:276
21935 msgid "Do not load the tree in L</aug-init>."
21936 msgstr ""
21937
21938 #. type: textblock
21939 #: ../fish/guestfish-actions.pod:280
21940 msgid "To close the handle, you can call L</aug-close>."
21941 msgstr ""
21942
21943 #. type: =head2
21944 #: ../fish/guestfish-actions.pod:284
21945 msgid "aug-insert"
21946 msgstr ""
21947
21948 #. type: verbatim
21949 #: ../fish/guestfish-actions.pod:286
21950 #, no-wrap
21951 msgid ""
21952 " aug-insert augpath label true|false\n"
21953 "\n"
21954 msgstr ""
21955
21956 #. type: =head2
21957 #: ../fish/guestfish-actions.pod:296
21958 msgid "aug-load"
21959 msgstr ""
21960
21961 #. type: verbatim
21962 #: ../fish/guestfish-actions.pod:298
21963 #, no-wrap
21964 msgid ""
21965 " aug-load\n"
21966 "\n"
21967 msgstr ""
21968
21969 #. type: =head2
21970 #: ../fish/guestfish-actions.pod:305
21971 msgid "aug-ls"
21972 msgstr ""
21973
21974 #. type: verbatim
21975 #: ../fish/guestfish-actions.pod:307
21976 #, no-wrap
21977 msgid ""
21978 " aug-ls augpath\n"
21979 "\n"
21980 msgstr ""
21981
21982 #. type: textblock
21983 #: ../fish/guestfish-actions.pod:309
21984 msgid ""
21985 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
21986 "resulting nodes into alphabetical order."
21987 msgstr ""
21988
21989 #. type: =head2
21990 #: ../fish/guestfish-actions.pod:312
21991 msgid "aug-match"
21992 msgstr ""
21993
21994 #. type: verbatim
21995 #: ../fish/guestfish-actions.pod:314
21996 #, no-wrap
21997 msgid ""
21998 " aug-match augpath\n"
21999 "\n"
22000 msgstr ""
22001
22002 #. type: =head2
22003 #: ../fish/guestfish-actions.pod:320
22004 msgid "aug-mv"
22005 msgstr ""
22006
22007 #. type: verbatim
22008 #: ../fish/guestfish-actions.pod:322
22009 #, no-wrap
22010 msgid ""
22011 " aug-mv src dest\n"
22012 "\n"
22013 msgstr ""
22014
22015 #. type: =head2
22016 #: ../fish/guestfish-actions.pod:327
22017 msgid "aug-rm"
22018 msgstr ""
22019
22020 #. type: verbatim
22021 #: ../fish/guestfish-actions.pod:329
22022 #, no-wrap
22023 msgid ""
22024 " aug-rm augpath\n"
22025 "\n"
22026 msgstr ""
22027
22028 #. type: =head2
22029 #: ../fish/guestfish-actions.pod:335
22030 msgid "aug-save"
22031 msgstr ""
22032
22033 #. type: verbatim
22034 #: ../fish/guestfish-actions.pod:337
22035 #, no-wrap
22036 msgid ""
22037 " aug-save\n"
22038 "\n"
22039 msgstr ""
22040
22041 #. type: textblock
22042 #: ../fish/guestfish-actions.pod:341
22043 msgid ""
22044 "The flags which were passed to L</aug-init> affect exactly how files are "
22045 "saved."
22046 msgstr ""
22047
22048 #. type: =head2
22049 #: ../fish/guestfish-actions.pod:344
22050 msgid "aug-set"
22051 msgstr ""
22052
22053 #. type: verbatim
22054 #: ../fish/guestfish-actions.pod:346
22055 #, no-wrap
22056 msgid ""
22057 " aug-set augpath val\n"
22058 "\n"
22059 msgstr ""
22060
22061 #. type: textblock
22062 #: ../fish/guestfish-actions.pod:350
22063 msgid ""
22064 "In the Augeas API, it is possible to clear a node by setting the value to "
22065 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
22066 "this call.  Instead you must use the L</aug-clear> call."
22067 msgstr ""
22068
22069 #. type: =head2
22070 #: ../fish/guestfish-actions.pod:355
22071 msgid "available"
22072 msgstr ""
22073
22074 #. type: verbatim
22075 #: ../fish/guestfish-actions.pod:357
22076 #, no-wrap
22077 msgid ""
22078 " available 'groups ...'\n"
22079 "\n"
22080 msgstr ""
22081
22082 #. type: textblock
22083 #: ../fish/guestfish-actions.pod:363
22084 msgid ""
22085 "The libguestfs groups, and the functions that those groups correspond to, "
22086 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
22087 "runtime by calling L</available-all-groups>."
22088 msgstr ""
22089
22090 #. type: textblock
22091 #: ../fish/guestfish-actions.pod:387
22092 msgid "You must call L</launch> before calling this function."
22093 msgstr ""
22094
22095 #. type: textblock
22096 #: ../fish/guestfish-actions.pod:409
22097 msgid ""
22098 "This call was added in version C<1.0.80>.  In previous versions of "
22099 "libguestfs all you could do would be to speculatively execute a command to "
22100 "find out if the daemon implemented it.  See also L</version>."
22101 msgstr ""
22102
22103 #. type: =head2
22104 #: ../fish/guestfish-actions.pod:416
22105 msgid "available-all-groups"
22106 msgstr ""
22107
22108 #. type: verbatim
22109 #: ../fish/guestfish-actions.pod:418
22110 #, no-wrap
22111 msgid ""
22112 " available-all-groups\n"
22113 "\n"
22114 msgstr ""
22115
22116 #. type: textblock
22117 #: ../fish/guestfish-actions.pod:420
22118 msgid ""
22119 "This command returns a list of all optional groups that this daemon knows "
22120 "about.  Note this returns both supported and unsupported groups.  To find "
22121 "out which ones the daemon can actually support you have to call "
22122 "L</available> on each member of the returned list."
22123 msgstr ""
22124
22125 #. type: textblock
22126 #: ../fish/guestfish-actions.pod:426
22127 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
22128 msgstr ""
22129
22130 #. type: =head2
22131 #: ../fish/guestfish-actions.pod:428
22132 msgid "base64-in"
22133 msgstr ""
22134
22135 #. type: verbatim
22136 #: ../fish/guestfish-actions.pod:430
22137 #, no-wrap
22138 msgid ""
22139 " base64-in (base64file|-) filename\n"
22140 "\n"
22141 msgstr ""
22142
22143 #. type: textblock
22144 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444 ../fish/guestfish-actions.pod:668 ../fish/guestfish-actions.pod:837 ../fish/guestfish-actions.pod:856 ../fish/guestfish-actions.pod:1230 ../fish/guestfish-actions.pod:4523 ../fish/guestfish-actions.pod:4535 ../fish/guestfish-actions.pod:4546 ../fish/guestfish-actions.pod:4557 ../fish/guestfish-actions.pod:4609 ../fish/guestfish-actions.pod:4618 ../fish/guestfish-actions.pod:4672 ../fish/guestfish-actions.pod:4695
22145 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
22146 msgstr ""
22147
22148 #. type: =head2
22149 #: ../fish/guestfish-actions.pod:437
22150 msgid "base64-out"
22151 msgstr ""
22152
22153 #. type: verbatim
22154 #: ../fish/guestfish-actions.pod:439
22155 #, no-wrap
22156 msgid ""
22157 " base64-out filename (base64file|-)\n"
22158 "\n"
22159 msgstr ""
22160
22161 #. type: =head2
22162 #: ../fish/guestfish-actions.pod:446
22163 msgid "blockdev-flushbufs"
22164 msgstr ""
22165
22166 #. type: verbatim
22167 #: ../fish/guestfish-actions.pod:448
22168 #, no-wrap
22169 msgid ""
22170 " blockdev-flushbufs device\n"
22171 "\n"
22172 msgstr ""
22173
22174 #. type: =head2
22175 #: ../fish/guestfish-actions.pod:455
22176 msgid "blockdev-getbsz"
22177 msgstr ""
22178
22179 #. type: verbatim
22180 #: ../fish/guestfish-actions.pod:457
22181 #, no-wrap
22182 msgid ""
22183 " blockdev-getbsz device\n"
22184 "\n"
22185 msgstr ""
22186
22187 #. type: =head2
22188 #: ../fish/guestfish-actions.pod:466
22189 msgid "blockdev-getro"
22190 msgstr ""
22191
22192 #. type: verbatim
22193 #: ../fish/guestfish-actions.pod:468
22194 #, no-wrap
22195 msgid ""
22196 " blockdev-getro device\n"
22197 "\n"
22198 msgstr ""
22199
22200 #. type: =head2
22201 #: ../fish/guestfish-actions.pod:475
22202 msgid "blockdev-getsize64"
22203 msgstr ""
22204
22205 #. type: verbatim
22206 #: ../fish/guestfish-actions.pod:477
22207 #, no-wrap
22208 msgid ""
22209 " blockdev-getsize64 device\n"
22210 "\n"
22211 msgstr ""
22212
22213 #. type: textblock
22214 #: ../fish/guestfish-actions.pod:481
22215 msgid "See also L</blockdev-getsz>."
22216 msgstr ""
22217
22218 #. type: =head2
22219 #: ../fish/guestfish-actions.pod:485
22220 msgid "blockdev-getss"
22221 msgstr ""
22222
22223 #. type: verbatim
22224 #: ../fish/guestfish-actions.pod:487
22225 #, no-wrap
22226 msgid ""
22227 " blockdev-getss device\n"
22228 "\n"
22229 msgstr ""
22230
22231 #. type: textblock
22232 #: ../fish/guestfish-actions.pod:492
22233 msgid "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
22234 msgstr ""
22235
22236 #. type: =head2
22237 #: ../fish/guestfish-actions.pod:497
22238 msgid "blockdev-getsz"
22239 msgstr ""
22240
22241 #. type: verbatim
22242 #: ../fish/guestfish-actions.pod:499
22243 #, no-wrap
22244 msgid ""
22245 " blockdev-getsz device\n"
22246 "\n"
22247 msgstr ""
22248
22249 #. type: textblock
22250 #: ../fish/guestfish-actions.pod:504
22251 msgid ""
22252 "See also L</blockdev-getss> for the real sector size of the device, and "
22253 "L</blockdev-getsize64> for the more useful I<size in bytes>."
22254 msgstr ""
22255
22256 #. type: =head2
22257 #: ../fish/guestfish-actions.pod:510
22258 msgid "blockdev-rereadpt"
22259 msgstr ""
22260
22261 #. type: verbatim
22262 #: ../fish/guestfish-actions.pod:512
22263 #, no-wrap
22264 msgid ""
22265 " blockdev-rereadpt device\n"
22266 "\n"
22267 msgstr ""
22268
22269 #. type: =head2
22270 #: ../fish/guestfish-actions.pod:518
22271 msgid "blockdev-setbsz"
22272 msgstr ""
22273
22274 #. type: verbatim
22275 #: ../fish/guestfish-actions.pod:520
22276 #, no-wrap
22277 msgid ""
22278 " blockdev-setbsz device blocksize\n"
22279 "\n"
22280 msgstr ""
22281
22282 #. type: =head2
22283 #: ../fish/guestfish-actions.pod:529
22284 msgid "blockdev-setro"
22285 msgstr ""
22286
22287 #. type: verbatim
22288 #: ../fish/guestfish-actions.pod:531
22289 #, no-wrap
22290 msgid ""
22291 " blockdev-setro device\n"
22292 "\n"
22293 msgstr ""
22294
22295 #. type: =head2
22296 #: ../fish/guestfish-actions.pod:537
22297 msgid "blockdev-setrw"
22298 msgstr ""
22299
22300 #. type: verbatim
22301 #: ../fish/guestfish-actions.pod:539
22302 #, no-wrap
22303 msgid ""
22304 " blockdev-setrw device\n"
22305 "\n"
22306 msgstr ""
22307
22308 #. type: =head2
22309 #: ../fish/guestfish-actions.pod:545
22310 msgid "case-sensitive-path"
22311 msgstr ""
22312
22313 #. type: verbatim
22314 #: ../fish/guestfish-actions.pod:547
22315 #, no-wrap
22316 msgid ""
22317 " case-sensitive-path path\n"
22318 "\n"
22319 msgstr ""
22320
22321 #. type: textblock
22322 #: ../fish/guestfish-actions.pod:571
22323 msgid ""
22324 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
22325 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
22326 "how the directories were originally created under Windows)."
22327 msgstr ""
22328
22329 #. type: textblock
22330 #: ../fish/guestfish-actions.pod:579
22331 msgid "See also L</realpath>."
22332 msgstr ""
22333
22334 #. type: =head2
22335 #: ../fish/guestfish-actions.pod:581
22336 msgid "cat"
22337 msgstr ""
22338
22339 #. type: verbatim
22340 #: ../fish/guestfish-actions.pod:583
22341 #, no-wrap
22342 msgid ""
22343 " cat path\n"
22344 "\n"
22345 msgstr ""
22346
22347 #. type: textblock
22348 #: ../fish/guestfish-actions.pod:587
22349 msgid ""
22350 "Note that this function cannot correctly handle binary files (specifically, "
22351 "files containing C<\\0> character which is treated as end of string).  For "
22352 "those you need to use the L</read-file> or L</download> functions which have "
22353 "a more complex interface."
22354 msgstr ""
22355
22356 #. type: =head2
22357 #: ../fish/guestfish-actions.pod:595
22358 msgid "checksum"
22359 msgstr ""
22360
22361 #. type: verbatim
22362 #: ../fish/guestfish-actions.pod:597
22363 #, no-wrap
22364 msgid ""
22365 " checksum csumtype path\n"
22366 "\n"
22367 msgstr ""
22368
22369 #. type: textblock
22370 #: ../fish/guestfish-actions.pod:640
22371 msgid "To get the checksum for a device, use L</checksum-device>."
22372 msgstr ""
22373
22374 #. type: textblock
22375 #: ../fish/guestfish-actions.pod:642
22376 msgid "To get the checksums for many files, use L</checksums-out>."
22377 msgstr ""
22378
22379 #. type: =head2
22380 #: ../fish/guestfish-actions.pod:644
22381 msgid "checksum-device"
22382 msgstr ""
22383
22384 #. type: verbatim
22385 #: ../fish/guestfish-actions.pod:646
22386 #, no-wrap
22387 msgid ""
22388 " checksum-device csumtype device\n"
22389 "\n"
22390 msgstr ""
22391
22392 #. type: textblock
22393 #: ../fish/guestfish-actions.pod:648
22394 msgid ""
22395 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
22396 "device named C<device>.  For the types of checksums supported see the "
22397 "L</checksum> command."
22398 msgstr ""
22399
22400 #. type: =head2
22401 #: ../fish/guestfish-actions.pod:652
22402 msgid "checksums-out"
22403 msgstr ""
22404
22405 #. type: verbatim
22406 #: ../fish/guestfish-actions.pod:654
22407 #, no-wrap
22408 msgid ""
22409 " checksums-out csumtype directory (sumsfile|-)\n"
22410 "\n"
22411 msgstr ""
22412
22413 #. type: =head2
22414 #: ../fish/guestfish-actions.pod:670
22415 msgid "chmod"
22416 msgstr ""
22417
22418 #. type: verbatim
22419 #: ../fish/guestfish-actions.pod:672
22420 #, no-wrap
22421 msgid ""
22422 " chmod mode path\n"
22423 "\n"
22424 msgstr ""
22425
22426 #. type: =head2
22427 #: ../fish/guestfish-actions.pod:683
22428 msgid "chown"
22429 msgstr ""
22430
22431 #. type: verbatim
22432 #: ../fish/guestfish-actions.pod:685
22433 #, no-wrap
22434 msgid ""
22435 " chown owner group path\n"
22436 "\n"
22437 msgstr ""
22438
22439 #. type: =head2
22440 #: ../fish/guestfish-actions.pod:693
22441 msgid "command"
22442 msgstr ""
22443
22444 #. type: verbatim
22445 #: ../fish/guestfish-actions.pod:695
22446 #, no-wrap
22447 msgid ""
22448 " command 'arguments ...'\n"
22449 "\n"
22450 msgstr ""
22451
22452 #. type: textblock
22453 #: ../fish/guestfish-actions.pod:702
22454 msgid ""
22455 "The single parameter is an argv-style list of arguments.  The first element "
22456 "is the name of the program to run.  Subsequent elements are parameters.  The "
22457 "list must be non-empty (ie. must contain a program name).  Note that the "
22458 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
22459 msgstr ""
22460
22461 #. type: =head2
22462 #: ../fish/guestfish-actions.pod:730
22463 msgid "command-lines"
22464 msgstr ""
22465
22466 #. type: verbatim
22467 #: ../fish/guestfish-actions.pod:732
22468 #, no-wrap
22469 msgid ""
22470 " command-lines 'arguments ...'\n"
22471 "\n"
22472 msgstr ""
22473
22474 #. type: textblock
22475 #: ../fish/guestfish-actions.pod:734
22476 msgid "This is the same as L</command>, but splits the result into a list of lines."
22477 msgstr ""
22478
22479 #. type: textblock
22480 #: ../fish/guestfish-actions.pod:737
22481 msgid "See also: L</sh-lines>"
22482 msgstr ""
22483
22484 #. type: =head2
22485 #: ../fish/guestfish-actions.pod:742
22486 msgid "config"
22487 msgstr ""
22488
22489 #. type: verbatim
22490 #: ../fish/guestfish-actions.pod:744
22491 #, no-wrap
22492 msgid ""
22493 " config qemuparam qemuvalue\n"
22494 "\n"
22495 msgstr ""
22496
22497 #. type: =head2
22498 #: ../fish/guestfish-actions.pod:755
22499 msgid "copy-size"
22500 msgstr ""
22501
22502 #. type: verbatim
22503 #: ../fish/guestfish-actions.pod:757
22504 #, no-wrap
22505 msgid ""
22506 " copy-size src dest size\n"
22507 "\n"
22508 msgstr ""
22509
22510 #. type: =head2
22511 #: ../fish/guestfish-actions.pod:765
22512 msgid "cp"
22513 msgstr ""
22514
22515 #. type: verbatim
22516 #: ../fish/guestfish-actions.pod:767
22517 #, no-wrap
22518 msgid ""
22519 " cp src dest\n"
22520 "\n"
22521 msgstr ""
22522
22523 #. type: =head2
22524 #: ../fish/guestfish-actions.pod:772
22525 msgid "cp-a"
22526 msgstr ""
22527
22528 #. type: verbatim
22529 #: ../fish/guestfish-actions.pod:774
22530 #, no-wrap
22531 msgid ""
22532 " cp-a src dest\n"
22533 "\n"
22534 msgstr ""
22535
22536 #. type: =head2
22537 #: ../fish/guestfish-actions.pod:779
22538 msgid "dd"
22539 msgstr ""
22540
22541 #. type: verbatim
22542 #: ../fish/guestfish-actions.pod:781
22543 #, no-wrap
22544 msgid ""
22545 " dd src dest\n"
22546 "\n"
22547 msgstr ""
22548
22549 #. type: textblock
22550 #: ../fish/guestfish-actions.pod:788
22551 msgid ""
22552 "If the destination is a device, it must be as large or larger than the "
22553 "source file or device, otherwise the copy will fail.  This command cannot do "
22554 "partial copies (see L</copy-size>)."
22555 msgstr ""
22556
22557 #. type: =head2
22558 #: ../fish/guestfish-actions.pod:792
22559 msgid "df"
22560 msgstr ""
22561
22562 #. type: verbatim
22563 #: ../fish/guestfish-actions.pod:794
22564 #, no-wrap
22565 msgid ""
22566 " df\n"
22567 "\n"
22568 msgstr ""
22569
22570 #. type: textblock
22571 #: ../fish/guestfish-actions.pod:798 ../fish/guestfish-actions.pod:809
22572 msgid ""
22573 "This command is mostly useful for interactive sessions.  It is I<not> "
22574 "intended that you try to parse the output string.  Use L</statvfs> from "
22575 "programs."
22576 msgstr ""
22577
22578 #. type: =head2
22579 #: ../fish/guestfish-actions.pod:802
22580 msgid "df-h"
22581 msgstr ""
22582
22583 #. type: verbatim
22584 #: ../fish/guestfish-actions.pod:804
22585 #, no-wrap
22586 msgid ""
22587 " df-h\n"
22588 "\n"
22589 msgstr ""
22590
22591 #. type: =head2
22592 #: ../fish/guestfish-actions.pod:813
22593 msgid "dmesg"
22594 msgstr ""
22595
22596 #. type: verbatim
22597 #: ../fish/guestfish-actions.pod:815
22598 #, no-wrap
22599 msgid ""
22600 " dmesg\n"
22601 "\n"
22602 msgstr ""
22603
22604 #. type: textblock
22605 #: ../fish/guestfish-actions.pod:821
22606 msgid ""
22607 "Another way to get the same information is to enable verbose messages with "
22608 "L</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
22609 "before running the program."
22610 msgstr ""
22611
22612 #. type: =head2
22613 #: ../fish/guestfish-actions.pod:826
22614 msgid "download"
22615 msgstr ""
22616
22617 #. type: verbatim
22618 #: ../fish/guestfish-actions.pod:828
22619 #, no-wrap
22620 msgid ""
22621 " download remotefilename (filename|-)\n"
22622 "\n"
22623 msgstr ""
22624
22625 #. type: textblock
22626 #: ../fish/guestfish-actions.pod:835
22627 msgid "See also L</upload>, L</cat>."
22628 msgstr ""
22629
22630 #. type: =head2
22631 #: ../fish/guestfish-actions.pod:839
22632 msgid "download-offset"
22633 msgstr ""
22634
22635 #. type: verbatim
22636 #: ../fish/guestfish-actions.pod:841
22637 #, no-wrap
22638 msgid ""
22639 " download-offset remotefilename (filename|-) offset size\n"
22640 "\n"
22641 msgstr ""
22642
22643 #. type: textblock
22644 #: ../fish/guestfish-actions.pod:849
22645 msgid ""
22646 "Note that there is no limit on the amount of data that can be downloaded "
22647 "with this call, unlike with L</pread>, and this call always reads the full "
22648 "amount unless an error occurs."
22649 msgstr ""
22650
22651 #. type: textblock
22652 #: ../fish/guestfish-actions.pod:854
22653 msgid "See also L</download>, L</pread>."
22654 msgstr ""
22655
22656 #. type: =head2
22657 #: ../fish/guestfish-actions.pod:858
22658 msgid "drop-caches"
22659 msgstr ""
22660
22661 #. type: verbatim
22662 #: ../fish/guestfish-actions.pod:860
22663 #, no-wrap
22664 msgid ""
22665 " drop-caches whattodrop\n"
22666 "\n"
22667 msgstr ""
22668
22669 #. type: =head2
22670 #: ../fish/guestfish-actions.pod:872
22671 msgid "du"
22672 msgstr ""
22673
22674 #. type: verbatim
22675 #: ../fish/guestfish-actions.pod:874
22676 #, no-wrap
22677 msgid ""
22678 " du path\n"
22679 "\n"
22680 msgstr ""
22681
22682 #. type: =head2
22683 #: ../fish/guestfish-actions.pod:886
22684 msgid "e2fsck-f"
22685 msgstr ""
22686
22687 #. type: verbatim
22688 #: ../fish/guestfish-actions.pod:888
22689 #, no-wrap
22690 msgid ""
22691 " e2fsck-f device\n"
22692 "\n"
22693 msgstr ""
22694
22695 #. type: textblock
22696 #: ../fish/guestfish-actions.pod:894
22697 msgid ""
22698 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
22699 "should use L</fsck>."
22700 msgstr ""
22701
22702 #. type: =head2
22703 #: ../fish/guestfish-actions.pod:897
22704 msgid "echo-daemon"
22705 msgstr ""
22706
22707 #. type: verbatim
22708 #: ../fish/guestfish-actions.pod:899
22709 #, no-wrap
22710 msgid ""
22711 " echo-daemon 'words ...'\n"
22712 "\n"
22713 msgstr ""
22714
22715 #. type: textblock
22716 #: ../fish/guestfish-actions.pod:906
22717 msgid "See also L</ping-daemon>."
22718 msgstr ""
22719
22720 #. type: =head2
22721 #: ../fish/guestfish-actions.pod:908
22722 msgid "egrep"
22723 msgstr ""
22724
22725 #. type: verbatim
22726 #: ../fish/guestfish-actions.pod:910
22727 #, no-wrap
22728 msgid ""
22729 " egrep regex path\n"
22730 "\n"
22731 msgstr ""
22732
22733 #. type: =head2
22734 #: ../fish/guestfish-actions.pod:918
22735 msgid "egrepi"
22736 msgstr ""
22737
22738 #. type: verbatim
22739 #: ../fish/guestfish-actions.pod:920
22740 #, no-wrap
22741 msgid ""
22742 " egrepi regex path\n"
22743 "\n"
22744 msgstr ""
22745
22746 #. type: =head2
22747 #: ../fish/guestfish-actions.pod:928
22748 msgid "equal"
22749 msgstr ""
22750
22751 #. type: verbatim
22752 #: ../fish/guestfish-actions.pod:930
22753 #, no-wrap
22754 msgid ""
22755 " equal file1 file2\n"
22756 "\n"
22757 msgstr ""
22758
22759 #. type: =head2
22760 #: ../fish/guestfish-actions.pod:937
22761 msgid "exists"
22762 msgstr ""
22763
22764 #. type: verbatim
22765 #: ../fish/guestfish-actions.pod:939
22766 #, no-wrap
22767 msgid ""
22768 " exists path\n"
22769 "\n"
22770 msgstr ""
22771
22772 #. type: textblock
22773 #: ../fish/guestfish-actions.pod:944
22774 msgid "See also L</is-file>, L</is-dir>, L</stat>."
22775 msgstr ""
22776
22777 #. type: =head2
22778 #: ../fish/guestfish-actions.pod:946
22779 msgid "fallocate"
22780 msgstr ""
22781
22782 #. type: verbatim
22783 #: ../fish/guestfish-actions.pod:948
22784 #, no-wrap
22785 msgid ""
22786 " fallocate path len\n"
22787 "\n"
22788 msgstr ""
22789
22790 #. type: =head2
22791 #: ../fish/guestfish-actions.pod:965
22792 msgid "fallocate64"
22793 msgstr ""
22794
22795 #. type: verbatim
22796 #: ../fish/guestfish-actions.pod:967
22797 #, no-wrap
22798 msgid ""
22799 " fallocate64 path len\n"
22800 "\n"
22801 msgstr ""
22802
22803 #. type: textblock
22804 #: ../fish/guestfish-actions.pod:973
22805 msgid ""
22806 "Note that this call allocates disk blocks for the file.  To create a sparse "
22807 "file use L</truncate-size> instead."
22808 msgstr ""
22809
22810 #. type: textblock
22811 #: ../fish/guestfish-actions.pod:976
22812 msgid ""
22813 "The deprecated call L</fallocate> does the same, but owing to an oversight "
22814 "it only allowed 30 bit lengths to be specified, effectively limiting the "
22815 "maximum size of files created through that call to 1GB."
22816 msgstr ""
22817
22818 #. type: =head2
22819 #: ../fish/guestfish-actions.pod:985
22820 msgid "fgrep"
22821 msgstr ""
22822
22823 #. type: verbatim
22824 #: ../fish/guestfish-actions.pod:987
22825 #, no-wrap
22826 msgid ""
22827 " fgrep pattern path\n"
22828 "\n"
22829 msgstr ""
22830
22831 #. type: =head2
22832 #: ../fish/guestfish-actions.pod:995
22833 msgid "fgrepi"
22834 msgstr ""
22835
22836 #. type: verbatim
22837 #: ../fish/guestfish-actions.pod:997
22838 #, no-wrap
22839 msgid ""
22840 " fgrepi pattern path\n"
22841 "\n"
22842 msgstr ""
22843
22844 #. type: =head2
22845 #: ../fish/guestfish-actions.pod:1005
22846 msgid "file"
22847 msgstr ""
22848
22849 #. type: verbatim
22850 #: ../fish/guestfish-actions.pod:1007
22851 #, no-wrap
22852 msgid ""
22853 " file path\n"
22854 "\n"
22855 msgstr ""
22856
22857 #. type: textblock
22858 #: ../fish/guestfish-actions.pod:1023
22859 msgid ""
22860 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
22861 "(etc), L</is-zero>."
22862 msgstr ""
22863
22864 #. type: =head2
22865 #: ../fish/guestfish-actions.pod:1026
22866 msgid "file-architecture"
22867 msgstr ""
22868
22869 #. type: verbatim
22870 #: ../fish/guestfish-actions.pod:1028
22871 #, no-wrap
22872 msgid ""
22873 " file-architecture filename\n"
22874 "\n"
22875 msgstr ""
22876
22877 #. type: =head2
22878 #: ../fish/guestfish-actions.pod:1131
22879 msgid "filesize"
22880 msgstr ""
22881
22882 #. type: verbatim
22883 #: ../fish/guestfish-actions.pod:1133
22884 #, no-wrap
22885 msgid ""
22886 " filesize file\n"
22887 "\n"
22888 msgstr ""
22889
22890 #. type: textblock
22891 #: ../fish/guestfish-actions.pod:1137
22892 msgid ""
22893 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, "
22894 "L</is-file> etc.  To get the size of block devices, use "
22895 "L</blockdev-getsize64>."
22896 msgstr ""
22897
22898 #. type: =head2
22899 #: ../fish/guestfish-actions.pod:1141
22900 msgid "fill"
22901 msgstr ""
22902
22903 #. type: verbatim
22904 #: ../fish/guestfish-actions.pod:1143
22905 #, no-wrap
22906 msgid ""
22907 " fill c len path\n"
22908 "\n"
22909 msgstr ""
22910
22911 #. type: textblock
22912 #: ../fish/guestfish-actions.pod:1149
22913 msgid ""
22914 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
22915 "L</truncate-size>.  To create a file with a pattern of repeating bytes use "
22916 "L</fill-pattern>."
22917 msgstr ""
22918
22919 #. type: =head2
22920 #: ../fish/guestfish-actions.pod:1154
22921 msgid "fill-pattern"
22922 msgstr ""
22923
22924 #. type: verbatim
22925 #: ../fish/guestfish-actions.pod:1156
22926 #, no-wrap
22927 msgid ""
22928 " fill-pattern pattern len path\n"
22929 "\n"
22930 msgstr ""
22931
22932 #. type: textblock
22933 #: ../fish/guestfish-actions.pod:1158
22934 msgid ""
22935 "This function is like L</fill> except that it creates a new file of length "
22936 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern "
22937 "is truncated if necessary to ensure the length of the file is exactly C<len> "
22938 "bytes."
22939 msgstr ""
22940
22941 #. type: =head2
22942 #: ../fish/guestfish-actions.pod:1163
22943 msgid "find"
22944 msgstr ""
22945
22946 #. type: verbatim
22947 #: ../fish/guestfish-actions.pod:1165
22948 #, no-wrap
22949 msgid ""
22950 " find directory\n"
22951 "\n"
22952 msgstr ""
22953
22954 #. type: textblock
22955 #: ../fish/guestfish-actions.pod:1179
22956 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
22957 msgstr ""
22958
22959 #. type: textblock
22960 #: ../fish/guestfish-actions.pod:1192
22961 msgid "See also L</find0>."
22962 msgstr ""
22963
22964 #. type: =head2
22965 #: ../fish/guestfish-actions.pod:1197
22966 msgid "find0"
22967 msgstr ""
22968
22969 #. type: verbatim
22970 #: ../fish/guestfish-actions.pod:1199
22971 #, no-wrap
22972 msgid ""
22973 " find0 directory (files|-)\n"
22974 "\n"
22975 msgstr ""
22976
22977 #. type: textblock
22978 #: ../fish/guestfish-actions.pod:1205
22979 msgid "This command works the same way as L</find> with the following exceptions:"
22980 msgstr ""
22981
22982 #. type: =head2
22983 #: ../fish/guestfish-actions.pod:1232
22984 msgid "findfs-label"
22985 msgstr ""
22986
22987 #. type: verbatim
22988 #: ../fish/guestfish-actions.pod:1234
22989 #, no-wrap
22990 msgid ""
22991 " findfs-label label\n"
22992 "\n"
22993 msgstr ""
22994
22995 #. type: textblock
22996 #: ../fish/guestfish-actions.pod:1240
22997 msgid "To find the label of a filesystem, use L</vfs-label>."
22998 msgstr ""
22999
23000 #. type: =head2
23001 #: ../fish/guestfish-actions.pod:1242
23002 msgid "findfs-uuid"
23003 msgstr ""
23004
23005 #. type: verbatim
23006 #: ../fish/guestfish-actions.pod:1244
23007 #, no-wrap
23008 msgid ""
23009 " findfs-uuid uuid\n"
23010 "\n"
23011 msgstr ""
23012
23013 #. type: textblock
23014 #: ../fish/guestfish-actions.pod:1250
23015 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
23016 msgstr ""
23017
23018 #. type: =head2
23019 #: ../fish/guestfish-actions.pod:1252
23020 msgid "fsck"
23021 msgstr ""
23022
23023 #. type: verbatim
23024 #: ../fish/guestfish-actions.pod:1254
23025 #, no-wrap
23026 msgid ""
23027 " fsck fstype device\n"
23028 "\n"
23029 msgstr ""
23030
23031 #. type: =head2
23032 #: ../fish/guestfish-actions.pod:1284
23033 msgid "get-append"
23034 msgstr ""
23035
23036 #. type: verbatim
23037 #: ../fish/guestfish-actions.pod:1286
23038 #, no-wrap
23039 msgid ""
23040 " get-append\n"
23041 "\n"
23042 msgstr ""
23043
23044 #. type: =head2
23045 #: ../fish/guestfish-actions.pod:1293
23046 msgid "get-attach-method"
23047 msgstr ""
23048
23049 #. type: verbatim
23050 #: ../fish/guestfish-actions.pod:1295
23051 #, no-wrap
23052 msgid ""
23053 " get-attach-method\n"
23054 "\n"
23055 msgstr ""
23056
23057 #. type: textblock
23058 #: ../fish/guestfish-actions.pod:1297
23059 msgid "Return the current attach method.  See L</set-attach-method>."
23060 msgstr ""
23061
23062 #. type: =head2
23063 #: ../fish/guestfish-actions.pod:1299
23064 msgid "get-autosync"
23065 msgstr ""
23066
23067 #. type: verbatim
23068 #: ../fish/guestfish-actions.pod:1301
23069 #, no-wrap
23070 msgid ""
23071 " get-autosync\n"
23072 "\n"
23073 msgstr ""
23074
23075 #. type: =head2
23076 #: ../fish/guestfish-actions.pod:1305
23077 msgid "get-direct"
23078 msgstr ""
23079
23080 #. type: verbatim
23081 #: ../fish/guestfish-actions.pod:1307
23082 #, no-wrap
23083 msgid ""
23084 " get-direct\n"
23085 "\n"
23086 msgstr ""
23087
23088 #. type: =head2
23089 #: ../fish/guestfish-actions.pod:1311
23090 msgid "get-e2label"
23091 msgstr ""
23092
23093 #. type: verbatim
23094 #: ../fish/guestfish-actions.pod:1313
23095 #, no-wrap
23096 msgid ""
23097 " get-e2label device\n"
23098 "\n"
23099 msgstr ""
23100
23101 #. type: =head2
23102 #: ../fish/guestfish-actions.pod:1325
23103 msgid "get-e2uuid"
23104 msgstr ""
23105
23106 #. type: verbatim
23107 #: ../fish/guestfish-actions.pod:1327
23108 #, no-wrap
23109 msgid ""
23110 " get-e2uuid device\n"
23111 "\n"
23112 msgstr ""
23113
23114 #. type: =head2
23115 #: ../fish/guestfish-actions.pod:1339
23116 msgid "get-memsize"
23117 msgstr ""
23118
23119 #. type: verbatim
23120 #: ../fish/guestfish-actions.pod:1341
23121 #, no-wrap
23122 msgid ""
23123 " get-memsize\n"
23124 "\n"
23125 msgstr ""
23126
23127 #. type: textblock
23128 #: ../fish/guestfish-actions.pod:1346
23129 msgid ""
23130 "If L</set-memsize> was not called on this handle, and if "
23131 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default "
23132 "value for memsize."
23133 msgstr ""
23134
23135 #. type: =head2
23136 #: ../fish/guestfish-actions.pod:1353
23137 msgid "get-network"
23138 msgstr ""
23139
23140 #. type: verbatim
23141 #: ../fish/guestfish-actions.pod:1355
23142 #, no-wrap
23143 msgid ""
23144 " get-network\n"
23145 "\n"
23146 msgstr ""
23147
23148 #. type: =head2
23149 #: ../fish/guestfish-actions.pod:1359
23150 msgid "get-path"
23151 msgstr ""
23152
23153 #. type: verbatim
23154 #: ../fish/guestfish-actions.pod:1361
23155 #, no-wrap
23156 msgid ""
23157 " get-path\n"
23158 "\n"
23159 msgstr ""
23160
23161 #. type: =head2
23162 #: ../fish/guestfish-actions.pod:1368
23163 msgid "get-pid"
23164 msgstr ""
23165
23166 #. type: =head2
23167 #: ../fish/guestfish-actions.pod:1370
23168 msgid "pid"
23169 msgstr ""
23170
23171 #. type: verbatim
23172 #: ../fish/guestfish-actions.pod:1372
23173 #, no-wrap
23174 msgid ""
23175 " get-pid\n"
23176 "\n"
23177 msgstr ""
23178
23179 #. type: =head2
23180 #: ../fish/guestfish-actions.pod:1379
23181 msgid "get-qemu"
23182 msgstr ""
23183
23184 #. type: verbatim
23185 #: ../fish/guestfish-actions.pod:1381
23186 #, no-wrap
23187 msgid ""
23188 " get-qemu\n"
23189 "\n"
23190 msgstr ""
23191
23192 #. type: =head2
23193 #: ../fish/guestfish-actions.pod:1388
23194 msgid "get-recovery-proc"
23195 msgstr ""
23196
23197 #. type: verbatim
23198 #: ../fish/guestfish-actions.pod:1390
23199 #, no-wrap
23200 msgid ""
23201 " get-recovery-proc\n"
23202 "\n"
23203 msgstr ""
23204
23205 #. type: =head2
23206 #: ../fish/guestfish-actions.pod:1394
23207 msgid "get-selinux"
23208 msgstr ""
23209
23210 #. type: verbatim
23211 #: ../fish/guestfish-actions.pod:1396
23212 #, no-wrap
23213 msgid ""
23214 " get-selinux\n"
23215 "\n"
23216 msgstr ""
23217
23218 #. type: textblock
23219 #: ../fish/guestfish-actions.pod:1398
23220 msgid ""
23221 "This returns the current setting of the selinux flag which is passed to the "
23222 "appliance at boot time.  See L</set-selinux>."
23223 msgstr ""
23224
23225 #. type: =head2
23226 #: ../fish/guestfish-actions.pod:1404
23227 msgid "get-state"
23228 msgstr ""
23229
23230 #. type: verbatim
23231 #: ../fish/guestfish-actions.pod:1406
23232 #, no-wrap
23233 msgid ""
23234 " get-state\n"
23235 "\n"
23236 msgstr ""
23237
23238 #. type: =head2
23239 #: ../fish/guestfish-actions.pod:1413
23240 msgid "get-trace"
23241 msgstr ""
23242
23243 #. type: verbatim
23244 #: ../fish/guestfish-actions.pod:1415
23245 #, no-wrap
23246 msgid ""
23247 " get-trace\n"
23248 "\n"
23249 msgstr ""
23250
23251 #. type: =head2
23252 #: ../fish/guestfish-actions.pod:1419
23253 msgid "get-umask"
23254 msgstr ""
23255
23256 #. type: verbatim
23257 #: ../fish/guestfish-actions.pod:1421
23258 #, no-wrap
23259 msgid ""
23260 " get-umask\n"
23261 "\n"
23262 msgstr ""
23263
23264 #. type: textblock
23265 #: ../fish/guestfish-actions.pod:1423
23266 msgid ""
23267 "Return the current umask.  By default the umask is C<022> unless it has been "
23268 "set by calling L</umask>."
23269 msgstr ""
23270
23271 #. type: =head2
23272 #: ../fish/guestfish-actions.pod:1426
23273 msgid "get-verbose"
23274 msgstr ""
23275
23276 #. type: verbatim
23277 #: ../fish/guestfish-actions.pod:1428
23278 #, no-wrap
23279 msgid ""
23280 " get-verbose\n"
23281 "\n"
23282 msgstr ""
23283
23284 #. type: =head2
23285 #: ../fish/guestfish-actions.pod:1432
23286 msgid "getcon"
23287 msgstr ""
23288
23289 #. type: verbatim
23290 #: ../fish/guestfish-actions.pod:1434
23291 #, no-wrap
23292 msgid ""
23293 " getcon\n"
23294 "\n"
23295 msgstr ""
23296
23297 #. type: textblock
23298 #: ../fish/guestfish-actions.pod:1438
23299 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
23300 msgstr ""
23301
23302 #. type: =head2
23303 #: ../fish/guestfish-actions.pod:1441
23304 msgid "getxattr"
23305 msgstr ""
23306
23307 #. type: verbatim
23308 #: ../fish/guestfish-actions.pod:1443
23309 #, no-wrap
23310 msgid ""
23311 " getxattr path name\n"
23312 "\n"
23313 msgstr ""
23314
23315 #. type: textblock
23316 #: ../fish/guestfish-actions.pod:1445
23317 msgid ""
23318 "Get a single extended attribute from file C<path> named C<name>.  This call "
23319 "follows symlinks.  If you want to lookup an extended attribute for the "
23320 "symlink itself, use L</lgetxattr>."
23321 msgstr ""
23322
23323 #. type: textblock
23324 #: ../fish/guestfish-actions.pod:1449 ../fish/guestfish-actions.pod:2476
23325 msgid ""
23326 "Normally it is better to get all extended attributes from a file in one go "
23327 "by calling L</getxattrs>.  However some Linux filesystem implementations are "
23328 "buggy and do not provide a way to list out attributes.  For these "
23329 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
23330 "attributes you want in advance and call this function."
23331 msgstr ""
23332
23333 #. type: textblock
23334 #: ../fish/guestfish-actions.pod:1459
23335 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
23336 msgstr ""
23337
23338 #. type: =head2
23339 #: ../fish/guestfish-actions.pod:1461
23340 msgid "getxattrs"
23341 msgstr ""
23342
23343 #. type: verbatim
23344 #: ../fish/guestfish-actions.pod:1463
23345 #, no-wrap
23346 msgid ""
23347 " getxattrs path\n"
23348 "\n"
23349 msgstr ""
23350
23351 #. type: textblock
23352 #: ../fish/guestfish-actions.pod:1471
23353 msgid "See also: L</lgetxattrs>, L<attr(5)>."
23354 msgstr ""
23355
23356 #. type: =head2
23357 #: ../fish/guestfish-actions.pod:1473
23358 msgid "glob-expand"
23359 msgstr ""
23360
23361 #. type: verbatim
23362 #: ../fish/guestfish-actions.pod:1475
23363 #, no-wrap
23364 msgid ""
23365 " glob-expand pattern\n"
23366 "\n"
23367 msgstr ""
23368
23369 #. type: =head2
23370 #: ../fish/guestfish-actions.pod:1488
23371 msgid "grep"
23372 msgstr ""
23373
23374 #. type: verbatim
23375 #: ../fish/guestfish-actions.pod:1490
23376 #, no-wrap
23377 msgid ""
23378 " grep regex path\n"
23379 "\n"
23380 msgstr ""
23381
23382 #. type: =head2
23383 #: ../fish/guestfish-actions.pod:1498
23384 msgid "grepi"
23385 msgstr ""
23386
23387 #. type: verbatim
23388 #: ../fish/guestfish-actions.pod:1500
23389 #, no-wrap
23390 msgid ""
23391 " grepi regex path\n"
23392 "\n"
23393 msgstr ""
23394
23395 #. type: =head2
23396 #: ../fish/guestfish-actions.pod:1508
23397 msgid "grub-install"
23398 msgstr ""
23399
23400 #. type: verbatim
23401 #: ../fish/guestfish-actions.pod:1510
23402 #, no-wrap
23403 msgid ""
23404 " grub-install root device\n"
23405 "\n"
23406 msgstr ""
23407
23408 #. type: =head2
23409 #: ../fish/guestfish-actions.pod:1526
23410 msgid "head"
23411 msgstr ""
23412
23413 #. type: verbatim
23414 #: ../fish/guestfish-actions.pod:1528
23415 #, no-wrap
23416 msgid ""
23417 " head path\n"
23418 "\n"
23419 msgstr ""
23420
23421 #. type: =head2
23422 #: ../fish/guestfish-actions.pod:1536
23423 msgid "head-n"
23424 msgstr ""
23425
23426 #. type: verbatim
23427 #: ../fish/guestfish-actions.pod:1538
23428 #, no-wrap
23429 msgid ""
23430 " head-n nrlines path\n"
23431 "\n"
23432 msgstr ""
23433
23434 #. type: =head2
23435 #: ../fish/guestfish-actions.pod:1551
23436 msgid "hexdump"
23437 msgstr ""
23438
23439 #. type: verbatim
23440 #: ../fish/guestfish-actions.pod:1553
23441 #, no-wrap
23442 msgid ""
23443 " hexdump path\n"
23444 "\n"
23445 msgstr ""
23446
23447 #. type: =head2
23448 #: ../fish/guestfish-actions.pod:1561
23449 msgid "initrd-cat"
23450 msgstr ""
23451
23452 #. type: verbatim
23453 #: ../fish/guestfish-actions.pod:1563
23454 #, no-wrap
23455 msgid ""
23456 " initrd-cat initrdpath filename\n"
23457 "\n"
23458 msgstr ""
23459
23460 #. type: textblock
23461 #: ../fish/guestfish-actions.pod:1575
23462 msgid "See also L</initrd-list>."
23463 msgstr ""
23464
23465 #. type: =head2
23466 #: ../fish/guestfish-actions.pod:1580
23467 msgid "initrd-list"
23468 msgstr ""
23469
23470 #. type: verbatim
23471 #: ../fish/guestfish-actions.pod:1582
23472 #, no-wrap
23473 msgid ""
23474 " initrd-list path\n"
23475 "\n"
23476 msgstr ""
23477
23478 #. type: =head2
23479 #: ../fish/guestfish-actions.pod:1594
23480 msgid "inotify-add-watch"
23481 msgstr ""
23482
23483 #. type: verbatim
23484 #: ../fish/guestfish-actions.pod:1596
23485 #, no-wrap
23486 msgid ""
23487 " inotify-add-watch path mask\n"
23488 "\n"
23489 msgstr ""
23490
23491 #. type: =head2
23492 #: ../fish/guestfish-actions.pod:1608
23493 msgid "inotify-close"
23494 msgstr ""
23495
23496 #. type: verbatim
23497 #: ../fish/guestfish-actions.pod:1610
23498 #, no-wrap
23499 msgid ""
23500 " inotify-close\n"
23501 "\n"
23502 msgstr ""
23503
23504 #. type: =head2
23505 #: ../fish/guestfish-actions.pod:1616
23506 msgid "inotify-files"
23507 msgstr ""
23508
23509 #. type: verbatim
23510 #: ../fish/guestfish-actions.pod:1618
23511 #, no-wrap
23512 msgid ""
23513 " inotify-files\n"
23514 "\n"
23515 msgstr ""
23516
23517 #. type: textblock
23518 #: ../fish/guestfish-actions.pod:1620
23519 msgid ""
23520 "This function is a helpful wrapper around L</inotify-read> which just "
23521 "returns a list of pathnames of objects that were touched.  The returned "
23522 "pathnames are sorted and deduplicated."
23523 msgstr ""
23524
23525 #. type: =head2
23526 #: ../fish/guestfish-actions.pod:1624
23527 msgid "inotify-init"
23528 msgstr ""
23529
23530 #. type: verbatim
23531 #: ../fish/guestfish-actions.pod:1626
23532 #, no-wrap
23533 msgid ""
23534 " inotify-init maxevents\n"
23535 "\n"
23536 msgstr ""
23537
23538 #. type: textblock
23539 #: ../fish/guestfish-actions.pod:1632
23540 msgid ""
23541 "C<maxevents> is the maximum number of events which will be queued up between "
23542 "calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>, "
23543 "then the kernel (or previously set)  default is used.  For Linux 2.6.29 the "
23544 "default was 16384 events.  Beyond this limit, the kernel throws away events, "
23545 "but records the fact that it threw them away by setting a flag "
23546 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
23547 msgstr ""
23548
23549 #. type: textblock
23550 #: ../fish/guestfish-actions.pod:1642
23551 msgid ""
23552 "Before any events are generated, you have to add some watches to the "
23553 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and "
23554 "L</inotify-watch-all>."
23555 msgstr ""
23556
23557 #. type: textblock
23558 #: ../fish/guestfish-actions.pod:1648
23559 msgid ""
23560 "Queued up events should be read periodically by calling L</inotify-read> (or "
23561 "L</inotify-files> which is just a helpful wrapper around L</inotify-read>).  "
23562 "If you don't read the events out often enough then you risk the internal "
23563 "queue overflowing."
23564 msgstr ""
23565
23566 #. type: textblock
23567 #: ../fish/guestfish-actions.pod:1655
23568 msgid ""
23569 "The handle should be closed after use by calling L</inotify-close>.  This "
23570 "also removes any watches automatically."
23571 msgstr ""
23572
23573 #. type: =head2
23574 #: ../fish/guestfish-actions.pod:1664
23575 msgid "inotify-read"
23576 msgstr ""
23577
23578 #. type: verbatim
23579 #: ../fish/guestfish-actions.pod:1666
23580 #, no-wrap
23581 msgid ""
23582 " inotify-read\n"
23583 "\n"
23584 msgstr ""
23585
23586 #. type: =head2
23587 #: ../fish/guestfish-actions.pod:1679
23588 msgid "inotify-rm-watch"
23589 msgstr ""
23590
23591 #. type: verbatim
23592 #: ../fish/guestfish-actions.pod:1681
23593 #, no-wrap
23594 msgid ""
23595 " inotify-rm-watch wd\n"
23596 "\n"
23597 msgstr ""
23598
23599 #. type: textblock
23600 #: ../fish/guestfish-actions.pod:1683
23601 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
23602 msgstr ""
23603
23604 #. type: =head2
23605 #: ../fish/guestfish-actions.pod:1686
23606 msgid "inspect-get-arch"
23607 msgstr ""
23608
23609 #. type: verbatim
23610 #: ../fish/guestfish-actions.pod:1688
23611 #, no-wrap
23612 msgid ""
23613 " inspect-get-arch root\n"
23614 "\n"
23615 msgstr ""
23616
23617 #. type: textblock
23618 #: ../fish/guestfish-actions.pod:1690
23619 msgid ""
23620 "This returns the architecture of the inspected operating system.  The "
23621 "possible return values are listed under L</file-architecture>."
23622 msgstr ""
23623
23624 #. type: =head2
23625 #: ../fish/guestfish-actions.pod:1699
23626 msgid "inspect-get-distro"
23627 msgstr ""
23628
23629 #. type: verbatim
23630 #: ../fish/guestfish-actions.pod:1701
23631 #, no-wrap
23632 msgid ""
23633 " inspect-get-distro root\n"
23634 "\n"
23635 msgstr ""
23636
23637 #. type: =head2
23638 #: ../fish/guestfish-actions.pod:1782
23639 msgid "inspect-get-drive-mappings"
23640 msgstr ""
23641
23642 #. type: verbatim
23643 #: ../fish/guestfish-actions.pod:1784
23644 #, no-wrap
23645 msgid ""
23646 " inspect-get-drive-mappings root\n"
23647 "\n"
23648 msgstr ""
23649
23650 #. type: textblock
23651 #: ../fish/guestfish-actions.pod:1811
23652 msgid ""
23653 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23654 "L</inspect-get-mountpoints>, L</inspect-get-filesystems>."
23655 msgstr ""
23656
23657 #. type: =head2
23658 #: ../fish/guestfish-actions.pod:1815
23659 msgid "inspect-get-filesystems"
23660 msgstr ""
23661
23662 #. type: verbatim
23663 #: ../fish/guestfish-actions.pod:1817
23664 #, no-wrap
23665 msgid ""
23666 " inspect-get-filesystems root\n"
23667 "\n"
23668 msgstr ""
23669
23670 #. type: textblock
23671 #: ../fish/guestfish-actions.pod:1827
23672 msgid ""
23673 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23674 "L</inspect-get-mountpoints>."
23675 msgstr ""
23676
23677 #. type: =head2
23678 #: ../fish/guestfish-actions.pod:1830
23679 msgid "inspect-get-format"
23680 msgstr ""
23681
23682 #. type: verbatim
23683 #: ../fish/guestfish-actions.pod:1832
23684 #, no-wrap
23685 msgid ""
23686 " inspect-get-format root\n"
23687 "\n"
23688 msgstr ""
23689
23690 #. type: =head2
23691 #: ../fish/guestfish-actions.pod:1861
23692 msgid "inspect-get-hostname"
23693 msgstr ""
23694
23695 #. type: verbatim
23696 #: ../fish/guestfish-actions.pod:1863
23697 #, no-wrap
23698 msgid ""
23699 " inspect-get-hostname root\n"
23700 "\n"
23701 msgstr ""
23702
23703 #. type: =head2
23704 #: ../fish/guestfish-actions.pod:1873
23705 msgid "inspect-get-icon"
23706 msgstr ""
23707
23708 #. type: verbatim
23709 #: ../fish/guestfish-actions.pod:1875
23710 #, no-wrap
23711 msgid ""
23712 " inspect-get-icon root [favicon:..] [highquality:..]\n"
23713 "\n"
23714 msgstr ""
23715
23716 #. type: =head2
23717 #: ../fish/guestfish-actions.pod:1939
23718 msgid "inspect-get-major-version"
23719 msgstr ""
23720
23721 #. type: verbatim
23722 #: ../fish/guestfish-actions.pod:1941
23723 #, no-wrap
23724 msgid ""
23725 " inspect-get-major-version root\n"
23726 "\n"
23727 msgstr ""
23728
23729 #. type: =head2
23730 #: ../fish/guestfish-actions.pod:1957
23731 msgid "inspect-get-minor-version"
23732 msgstr ""
23733
23734 #. type: verbatim
23735 #: ../fish/guestfish-actions.pod:1959
23736 #, no-wrap
23737 msgid ""
23738 " inspect-get-minor-version root\n"
23739 "\n"
23740 msgstr ""
23741
23742 #. type: textblock
23743 #: ../fish/guestfish-actions.pod:1966
23744 msgid ""
23745 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23746 "L</inspect-get-major-version>."
23747 msgstr ""
23748
23749 #. type: =head2
23750 #: ../fish/guestfish-actions.pod:1969
23751 msgid "inspect-get-mountpoints"
23752 msgstr ""
23753
23754 #. type: verbatim
23755 #: ../fish/guestfish-actions.pod:1971
23756 #, no-wrap
23757 msgid ""
23758 " inspect-get-mountpoints root\n"
23759 "\n"
23760 msgstr ""
23761
23762 #. type: textblock
23763 #: ../fish/guestfish-actions.pod:1990
23764 msgid ""
23765 "For operating systems like Windows which still use drive letters, this call "
23766 "will only return an entry for the first drive \"mounted on\" C</>.  For "
23767 "information about the mapping of drive letters to partitions, see "
23768 "L</inspect-get-drive-mappings>."
23769 msgstr ""
23770
23771 #. type: textblock
23772 #: ../fish/guestfish-actions.pod:1996
23773 msgid ""
23774 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23775 "L</inspect-get-filesystems>."
23776 msgstr ""
23777
23778 #. type: =head2
23779 #: ../fish/guestfish-actions.pod:1999
23780 msgid "inspect-get-package-format"
23781 msgstr ""
23782
23783 #. type: verbatim
23784 #: ../fish/guestfish-actions.pod:2001
23785 #, no-wrap
23786 msgid ""
23787 " inspect-get-package-format root\n"
23788 "\n"
23789 msgstr ""
23790
23791 #. type: textblock
23792 #: ../fish/guestfish-actions.pod:2003
23793 msgid ""
23794 "This function and L</inspect-get-package-management> return the package "
23795 "format and package management tool used by the inspected operating system.  "
23796 "For example for Fedora these functions would return C<rpm> (package format) "
23797 "and C<yum> (package management)."
23798 msgstr ""
23799
23800 #. type: =head2
23801 #: ../fish/guestfish-actions.pod:2018
23802 msgid "inspect-get-package-management"
23803 msgstr ""
23804
23805 #. type: verbatim
23806 #: ../fish/guestfish-actions.pod:2020
23807 #, no-wrap
23808 msgid ""
23809 " inspect-get-package-management root\n"
23810 "\n"
23811 msgstr ""
23812
23813 #. type: textblock
23814 #: ../fish/guestfish-actions.pod:2022
23815 msgid ""
23816 "L</inspect-get-package-format> and this function return the package format "
23817 "and package management tool used by the inspected operating system.  For "
23818 "example for Fedora these functions would return C<rpm> (package format) and "
23819 "C<yum> (package management)."
23820 msgstr ""
23821
23822 #. type: =head2
23823 #: ../fish/guestfish-actions.pod:2039
23824 msgid "inspect-get-product-name"
23825 msgstr ""
23826
23827 #. type: verbatim
23828 #: ../fish/guestfish-actions.pod:2041
23829 #, no-wrap
23830 msgid ""
23831 " inspect-get-product-name root\n"
23832 "\n"
23833 msgstr ""
23834
23835 #. type: =head2
23836 #: ../fish/guestfish-actions.pod:2053
23837 msgid "inspect-get-product-variant"
23838 msgstr ""
23839
23840 #. type: verbatim
23841 #: ../fish/guestfish-actions.pod:2055
23842 #, no-wrap
23843 msgid ""
23844 " inspect-get-product-variant root\n"
23845 "\n"
23846 msgstr ""
23847
23848 #. type: textblock
23849 #: ../fish/guestfish-actions.pod:2076
23850 msgid ""
23851 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
23852 "L</inspect-get-product-name>, L</inspect-get-major-version>."
23853 msgstr ""
23854
23855 #. type: =head2
23856 #: ../fish/guestfish-actions.pod:2080
23857 msgid "inspect-get-roots"
23858 msgstr ""
23859
23860 #. type: verbatim
23861 #: ../fish/guestfish-actions.pod:2082
23862 #, no-wrap
23863 msgid ""
23864 " inspect-get-roots\n"
23865 "\n"
23866 msgstr ""
23867
23868 #. type: textblock
23869 #: ../fish/guestfish-actions.pod:2084
23870 msgid ""
23871 "This function is a convenient way to get the list of root devices, as "
23872 "returned from a previous call to L</inspect-os>, but without redoing the "
23873 "whole inspection process."
23874 msgstr ""
23875
23876 #. type: textblock
23877 #: ../fish/guestfish-actions.pod:2088
23878 msgid ""
23879 "This returns an empty list if either no root devices were found or the "
23880 "caller has not called L</inspect-os>."
23881 msgstr ""
23882
23883 #. type: =head2
23884 #: ../fish/guestfish-actions.pod:2093
23885 msgid "inspect-get-type"
23886 msgstr ""
23887
23888 #. type: verbatim
23889 #: ../fish/guestfish-actions.pod:2095
23890 #, no-wrap
23891 msgid ""
23892 " inspect-get-type root\n"
23893 "\n"
23894 msgstr ""
23895
23896 #. type: =head2
23897 #: ../fish/guestfish-actions.pod:2125
23898 msgid "inspect-get-windows-current-control-set"
23899 msgstr ""
23900
23901 #. type: verbatim
23902 #: ../fish/guestfish-actions.pod:2127
23903 #, no-wrap
23904 msgid ""
23905 " inspect-get-windows-current-control-set root\n"
23906 "\n"
23907 msgstr ""
23908
23909 #. type: =head2
23910 #: ../fish/guestfish-actions.pod:2138
23911 msgid "inspect-get-windows-systemroot"
23912 msgstr ""
23913
23914 #. type: verbatim
23915 #: ../fish/guestfish-actions.pod:2140
23916 #, no-wrap
23917 msgid ""
23918 " inspect-get-windows-systemroot root\n"
23919 "\n"
23920 msgstr ""
23921
23922 #. type: =head2
23923 #: ../fish/guestfish-actions.pod:2151
23924 msgid "inspect-is-live"
23925 msgstr ""
23926
23927 #. type: verbatim
23928 #: ../fish/guestfish-actions.pod:2153
23929 #, no-wrap
23930 msgid ""
23931 " inspect-is-live root\n"
23932 "\n"
23933 msgstr ""
23934
23935 #. type: textblock
23936 #: ../fish/guestfish-actions.pod:2155
23937 msgid ""
23938 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23939 "then this returns true if a live image was detected on the disk."
23940 msgstr ""
23941
23942 #. type: =head2
23943 #: ../fish/guestfish-actions.pod:2161
23944 msgid "inspect-is-multipart"
23945 msgstr ""
23946
23947 #. type: verbatim
23948 #: ../fish/guestfish-actions.pod:2163
23949 #, no-wrap
23950 msgid ""
23951 " inspect-is-multipart root\n"
23952 "\n"
23953 msgstr ""
23954
23955 #. type: textblock
23956 #: ../fish/guestfish-actions.pod:2165
23957 msgid ""
23958 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23959 "then this returns true if the disk is part of a set."
23960 msgstr ""
23961
23962 #. type: =head2
23963 #: ../fish/guestfish-actions.pod:2171
23964 msgid "inspect-is-netinst"
23965 msgstr ""
23966
23967 #. type: verbatim
23968 #: ../fish/guestfish-actions.pod:2173
23969 #, no-wrap
23970 msgid ""
23971 " inspect-is-netinst root\n"
23972 "\n"
23973 msgstr ""
23974
23975 #. type: textblock
23976 #: ../fish/guestfish-actions.pod:2175
23977 msgid ""
23978 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
23979 "then this returns true if the disk is a network installer, ie. not a "
23980 "self-contained install CD but one which is likely to require network access "
23981 "to complete the install."
23982 msgstr ""
23983
23984 #. type: =head2
23985 #: ../fish/guestfish-actions.pod:2183
23986 msgid "inspect-list-applications"
23987 msgstr ""
23988
23989 #. type: verbatim
23990 #: ../fish/guestfish-actions.pod:2185
23991 #, no-wrap
23992 msgid ""
23993 " inspect-list-applications root\n"
23994 "\n"
23995 msgstr ""
23996
23997 #. type: textblock
23998 #: ../fish/guestfish-actions.pod:2189
23999 msgid ""
24000 "I<Note:> This call works differently from other parts of the inspection "
24001 "API.  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, "
24002 "then mount up the disks, before calling this.  Listing applications is a "
24003 "significantly more difficult operation which requires access to the full "
24004 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
24005 "are just returning data cached in the libguestfs handle, this call actually "
24006 "reads parts of the mounted filesystems during the call."
24007 msgstr ""
24008
24009 #. type: =head2
24010 #: ../fish/guestfish-actions.pod:2279
24011 msgid "inspect-os"
24012 msgstr ""
24013
24014 #. type: verbatim
24015 #: ../fish/guestfish-actions.pod:2281
24016 #, no-wrap
24017 msgid ""
24018 " inspect-os\n"
24019 "\n"
24020 msgstr ""
24021
24022 #. type: textblock
24023 #: ../fish/guestfish-actions.pod:2296
24024 msgid ""
24025 "You can pass the root string(s) returned to other L</inspect-get-*> "
24026 "functions in order to query further information about each operating system, "
24027 "such as the name and version."
24028 msgstr ""
24029
24030 #. type: textblock
24031 #: ../fish/guestfish-actions.pod:2301
24032 msgid ""
24033 "This function uses other libguestfs features such as L</mount-ro> and "
24034 "L</umount-all> in order to mount and unmount filesystems and look at the "
24035 "contents.  This should be called with no disks currently mounted.  The "
24036 "function may also use Augeas, so any existing Augeas handle will be closed."
24037 msgstr ""
24038
24039 #. type: textblock
24040 #: ../fish/guestfish-actions.pod:2313 ../fish/guestfish-actions.pod:2511 ../fish/guestfish-actions.pod:2557
24041 msgid "See also L</list-filesystems>."
24042 msgstr ""
24043
24044 #. type: =head2
24045 #: ../fish/guestfish-actions.pod:2315
24046 msgid "is-blockdev"
24047 msgstr ""
24048
24049 #. type: verbatim
24050 #: ../fish/guestfish-actions.pod:2317
24051 #, no-wrap
24052 msgid ""
24053 " is-blockdev path\n"
24054 "\n"
24055 msgstr ""
24056
24057 #. type: textblock
24058 #: ../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
24059 msgid "See also L</stat>."
24060 msgstr ""
24061
24062 #. type: =head2
24063 #: ../fish/guestfish-actions.pod:2324
24064 msgid "is-busy"
24065 msgstr ""
24066
24067 #. type: verbatim
24068 #: ../fish/guestfish-actions.pod:2326
24069 #, no-wrap
24070 msgid ""
24071 " is-busy\n"
24072 "\n"
24073 msgstr ""
24074
24075 #. type: =head2
24076 #: ../fish/guestfish-actions.pod:2333
24077 msgid "is-chardev"
24078 msgstr ""
24079
24080 #. type: verbatim
24081 #: ../fish/guestfish-actions.pod:2335
24082 #, no-wrap
24083 msgid ""
24084 " is-chardev path\n"
24085 "\n"
24086 msgstr ""
24087
24088 #. type: =head2
24089 #: ../fish/guestfish-actions.pod:2342
24090 msgid "is-config"
24091 msgstr ""
24092
24093 #. type: verbatim
24094 #: ../fish/guestfish-actions.pod:2344
24095 #, no-wrap
24096 msgid ""
24097 " is-config\n"
24098 "\n"
24099 msgstr ""
24100
24101 #. type: =head2
24102 #: ../fish/guestfish-actions.pod:2351
24103 msgid "is-dir"
24104 msgstr ""
24105
24106 #. type: verbatim
24107 #: ../fish/guestfish-actions.pod:2353
24108 #, no-wrap
24109 msgid ""
24110 " is-dir path\n"
24111 "\n"
24112 msgstr ""
24113
24114 #. type: =head2
24115 #: ../fish/guestfish-actions.pod:2361
24116 msgid "is-fifo"
24117 msgstr ""
24118
24119 #. type: verbatim
24120 #: ../fish/guestfish-actions.pod:2363
24121 #, no-wrap
24122 msgid ""
24123 " is-fifo path\n"
24124 "\n"
24125 msgstr ""
24126
24127 #. type: =head2
24128 #: ../fish/guestfish-actions.pod:2370
24129 msgid "is-file"
24130 msgstr ""
24131
24132 #. type: verbatim
24133 #: ../fish/guestfish-actions.pod:2372
24134 #, no-wrap
24135 msgid ""
24136 " is-file path\n"
24137 "\n"
24138 msgstr ""
24139
24140 #. type: =head2
24141 #: ../fish/guestfish-actions.pod:2380
24142 msgid "is-launching"
24143 msgstr ""
24144
24145 #. type: verbatim
24146 #: ../fish/guestfish-actions.pod:2382
24147 #, no-wrap
24148 msgid ""
24149 " is-launching\n"
24150 "\n"
24151 msgstr ""
24152
24153 #. type: =head2
24154 #: ../fish/guestfish-actions.pod:2389
24155 msgid "is-lv"
24156 msgstr ""
24157
24158 #. type: verbatim
24159 #: ../fish/guestfish-actions.pod:2391
24160 #, no-wrap
24161 msgid ""
24162 " is-lv device\n"
24163 "\n"
24164 msgstr ""
24165
24166 #. type: =head2
24167 #: ../fish/guestfish-actions.pod:2396
24168 msgid "is-ready"
24169 msgstr ""
24170
24171 #. type: verbatim
24172 #: ../fish/guestfish-actions.pod:2398
24173 #, no-wrap
24174 msgid ""
24175 " is-ready\n"
24176 "\n"
24177 msgstr ""
24178
24179 #. type: =head2
24180 #: ../fish/guestfish-actions.pod:2405
24181 msgid "is-socket"
24182 msgstr ""
24183
24184 #. type: verbatim
24185 #: ../fish/guestfish-actions.pod:2407
24186 #, no-wrap
24187 msgid ""
24188 " is-socket path\n"
24189 "\n"
24190 msgstr ""
24191
24192 #. type: =head2
24193 #: ../fish/guestfish-actions.pod:2414
24194 msgid "is-symlink"
24195 msgstr ""
24196
24197 #. type: verbatim
24198 #: ../fish/guestfish-actions.pod:2416
24199 #, no-wrap
24200 msgid ""
24201 " is-symlink path\n"
24202 "\n"
24203 msgstr ""
24204
24205 #. type: =head2
24206 #: ../fish/guestfish-actions.pod:2423
24207 msgid "is-zero"
24208 msgstr ""
24209
24210 #. type: verbatim
24211 #: ../fish/guestfish-actions.pod:2425
24212 #, no-wrap
24213 msgid ""
24214 " is-zero path\n"
24215 "\n"
24216 msgstr ""
24217
24218 #. type: =head2
24219 #: ../fish/guestfish-actions.pod:2430
24220 msgid "is-zero-device"
24221 msgstr ""
24222
24223 #. type: verbatim
24224 #: ../fish/guestfish-actions.pod:2432
24225 #, no-wrap
24226 msgid ""
24227 " is-zero-device device\n"
24228 "\n"
24229 msgstr ""
24230
24231 #. type: =head2
24232 #: ../fish/guestfish-actions.pod:2438
24233 msgid "kill-subprocess"
24234 msgstr ""
24235
24236 #. type: verbatim
24237 #: ../fish/guestfish-actions.pod:2440
24238 #, no-wrap
24239 msgid ""
24240 " kill-subprocess\n"
24241 "\n"
24242 msgstr ""
24243
24244 #. type: =head2
24245 #: ../fish/guestfish-actions.pod:2444
24246 msgid "launch"
24247 msgstr ""
24248
24249 #. type: =head2
24250 #: ../fish/guestfish-actions.pod:2446
24251 msgid "run"
24252 msgstr ""
24253
24254 #. type: verbatim
24255 #: ../fish/guestfish-actions.pod:2448
24256 #, no-wrap
24257 msgid ""
24258 " launch\n"
24259 "\n"
24260 msgstr ""
24261
24262 #. type: =head2
24263 #: ../fish/guestfish-actions.pod:2456
24264 msgid "lchown"
24265 msgstr ""
24266
24267 #. type: verbatim
24268 #: ../fish/guestfish-actions.pod:2458
24269 #, no-wrap
24270 msgid ""
24271 " lchown owner group path\n"
24272 "\n"
24273 msgstr ""
24274
24275 #. type: textblock
24276 #: ../fish/guestfish-actions.pod:2460
24277 msgid ""
24278 "Change the file owner to C<owner> and group to C<group>.  This is like "
24279 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
24280 "the target."
24281 msgstr ""
24282
24283 #. type: =head2
24284 #: ../fish/guestfish-actions.pod:2468
24285 msgid "lgetxattr"
24286 msgstr ""
24287
24288 #. type: verbatim
24289 #: ../fish/guestfish-actions.pod:2470
24290 #, no-wrap
24291 msgid ""
24292 " lgetxattr path name\n"
24293 "\n"
24294 msgstr ""
24295
24296 #. type: textblock
24297 #: ../fish/guestfish-actions.pod:2486
24298 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
24299 msgstr ""
24300
24301 #. type: =head2
24302 #: ../fish/guestfish-actions.pod:2488
24303 msgid "lgetxattrs"
24304 msgstr ""
24305
24306 #. type: verbatim
24307 #: ../fish/guestfish-actions.pod:2490
24308 #, no-wrap
24309 msgid ""
24310 " lgetxattrs path\n"
24311 "\n"
24312 msgstr ""
24313
24314 #. type: textblock
24315 #: ../fish/guestfish-actions.pod:2492
24316 msgid ""
24317 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
24318 "it returns the extended attributes of the link itself."
24319 msgstr ""
24320
24321 #. type: =head2
24322 #: ../fish/guestfish-actions.pod:2496
24323 msgid "list-9p"
24324 msgstr ""
24325
24326 #. type: verbatim
24327 #: ../fish/guestfish-actions.pod:2498
24328 #, no-wrap
24329 msgid ""
24330 " list-9p\n"
24331 "\n"
24332 msgstr ""
24333
24334 #. type: =head2
24335 #: ../fish/guestfish-actions.pod:2503
24336 msgid "list-devices"
24337 msgstr ""
24338
24339 #. type: verbatim
24340 #: ../fish/guestfish-actions.pod:2505
24341 #, no-wrap
24342 msgid ""
24343 " list-devices\n"
24344 "\n"
24345 msgstr ""
24346
24347 #. type: =head2
24348 #: ../fish/guestfish-actions.pod:2513
24349 msgid "list-filesystems"
24350 msgstr ""
24351
24352 #. type: verbatim
24353 #: ../fish/guestfish-actions.pod:2515
24354 #, no-wrap
24355 msgid ""
24356 " list-filesystems\n"
24357 "\n"
24358 msgstr ""
24359
24360 #. type: textblock
24361 #: ../fish/guestfish-actions.pod:2534
24362 msgid ""
24363 "This command runs other libguestfs commands, which might include L</mount> "
24364 "and L</umount>, and therefore you should use this soon after launch and only "
24365 "when nothing is mounted."
24366 msgstr ""
24367
24368 #. type: textblock
24369 #: ../fish/guestfish-actions.pod:2538
24370 msgid ""
24371 "Not all of the filesystems returned will be mountable.  In particular, swap "
24372 "partitions are returned in the list.  Also this command does not check that "
24373 "each filesystem found is valid and mountable, and some filesystems might be "
24374 "mountable but require special options.  Filesystems may not all belong to a "
24375 "single logical operating system (use L</inspect-os> to look for OSes)."
24376 msgstr ""
24377
24378 #. type: =head2
24379 #: ../fish/guestfish-actions.pod:2546
24380 msgid "list-partitions"
24381 msgstr ""
24382
24383 #. type: verbatim
24384 #: ../fish/guestfish-actions.pod:2548
24385 #, no-wrap
24386 msgid ""
24387 " list-partitions\n"
24388 "\n"
24389 msgstr ""
24390
24391 #. type: textblock
24392 #: ../fish/guestfish-actions.pod:2554
24393 msgid ""
24394 "This does not return logical volumes.  For that you will need to call "
24395 "L</lvs>."
24396 msgstr ""
24397
24398 #. type: =head2
24399 #: ../fish/guestfish-actions.pod:2559
24400 msgid "ll"
24401 msgstr ""
24402
24403 #. type: verbatim
24404 #: ../fish/guestfish-actions.pod:2561
24405 #, no-wrap
24406 msgid ""
24407 " ll directory\n"
24408 "\n"
24409 msgstr ""
24410
24411 #. type: =head2
24412 #: ../fish/guestfish-actions.pod:2569
24413 msgid "ln"
24414 msgstr ""
24415
24416 #. type: verbatim
24417 #: ../fish/guestfish-actions.pod:2571
24418 #, no-wrap
24419 msgid ""
24420 " ln target linkname\n"
24421 "\n"
24422 msgstr ""
24423
24424 #. type: =head2
24425 #: ../fish/guestfish-actions.pod:2575
24426 msgid "ln-f"
24427 msgstr ""
24428
24429 #. type: verbatim
24430 #: ../fish/guestfish-actions.pod:2577
24431 #, no-wrap
24432 msgid ""
24433 " ln-f target linkname\n"
24434 "\n"
24435 msgstr ""
24436
24437 #. type: =head2
24438 #: ../fish/guestfish-actions.pod:2582
24439 msgid "ln-s"
24440 msgstr ""
24441
24442 #. type: verbatim
24443 #: ../fish/guestfish-actions.pod:2584
24444 #, no-wrap
24445 msgid ""
24446 " ln-s target linkname\n"
24447 "\n"
24448 msgstr ""
24449
24450 #. type: =head2
24451 #: ../fish/guestfish-actions.pod:2588
24452 msgid "ln-sf"
24453 msgstr ""
24454
24455 #. type: verbatim
24456 #: ../fish/guestfish-actions.pod:2590
24457 #, no-wrap
24458 msgid ""
24459 " ln-sf target linkname\n"
24460 "\n"
24461 msgstr ""
24462
24463 #. type: =head2
24464 #: ../fish/guestfish-actions.pod:2595
24465 msgid "lremovexattr"
24466 msgstr ""
24467
24468 #. type: verbatim
24469 #: ../fish/guestfish-actions.pod:2597
24470 #, no-wrap
24471 msgid ""
24472 " lremovexattr xattr path\n"
24473 "\n"
24474 msgstr ""
24475
24476 #. type: textblock
24477 #: ../fish/guestfish-actions.pod:2599
24478 msgid ""
24479 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then "
24480 "it removes an extended attribute of the link itself."
24481 msgstr ""
24482
24483 #. type: =head2
24484 #: ../fish/guestfish-actions.pod:2603
24485 msgid "ls"
24486 msgstr ""
24487
24488 #. type: verbatim
24489 #: ../fish/guestfish-actions.pod:2605
24490 #, no-wrap
24491 msgid ""
24492 " ls directory\n"
24493 "\n"
24494 msgstr ""
24495
24496 #. type: textblock
24497 #: ../fish/guestfish-actions.pod:2611
24498 msgid ""
24499 "This command is mostly useful for interactive sessions.  Programs should "
24500 "probably use L</readdir> instead."
24501 msgstr ""
24502
24503 #. type: =head2
24504 #: ../fish/guestfish-actions.pod:2614
24505 msgid "lsetxattr"
24506 msgstr ""
24507
24508 #. type: verbatim
24509 #: ../fish/guestfish-actions.pod:2616
24510 #, no-wrap
24511 msgid ""
24512 " lsetxattr xattr val vallen path\n"
24513 "\n"
24514 msgstr ""
24515
24516 #. type: textblock
24517 #: ../fish/guestfish-actions.pod:2618
24518 msgid ""
24519 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it "
24520 "sets an extended attribute of the link itself."
24521 msgstr ""
24522
24523 #. type: =head2
24524 #: ../fish/guestfish-actions.pod:2622
24525 msgid "lstat"
24526 msgstr ""
24527
24528 #. type: verbatim
24529 #: ../fish/guestfish-actions.pod:2624
24530 #, no-wrap
24531 msgid ""
24532 " lstat path\n"
24533 "\n"
24534 msgstr ""
24535
24536 #. type: textblock
24537 #: ../fish/guestfish-actions.pod:2628
24538 msgid ""
24539 "This is the same as L</stat> except that if C<path> is a symbolic link, then "
24540 "the link is stat-ed, not the file it refers to."
24541 msgstr ""
24542
24543 #. type: =head2
24544 #: ../fish/guestfish-actions.pod:2634
24545 msgid "lstatlist"
24546 msgstr ""
24547
24548 #. type: verbatim
24549 #: ../fish/guestfish-actions.pod:2636
24550 #, no-wrap
24551 msgid ""
24552 " lstatlist path 'names ...'\n"
24553 "\n"
24554 msgstr ""
24555
24556 #. type: textblock
24557 #: ../fish/guestfish-actions.pod:2638
24558 msgid ""
24559 "This call allows you to perform the L</lstat> operation on multiple files, "
24560 "where all files are in the directory C<path>.  C<names> is the list of files "
24561 "from this directory."
24562 msgstr ""
24563
24564 #. type: textblock
24565 #: ../fish/guestfish-actions.pod:2647
24566 msgid ""
24567 "This call is intended for programs that want to efficiently list a directory "
24568 "contents without making many round-trips.  See also L</lxattrlist> for a "
24569 "similarly efficient call for getting extended attributes.  Very long "
24570 "directory listings might cause the protocol message size to be exceeded, "
24571 "causing this call to fail.  The caller must split up such requests into "
24572 "smaller groups of names."
24573 msgstr ""
24574
24575 #. type: =head2
24576 #: ../fish/guestfish-actions.pod:2655
24577 msgid "luks-add-key"
24578 msgstr ""
24579
24580 #. type: verbatim
24581 #: ../fish/guestfish-actions.pod:2657
24582 #, no-wrap
24583 msgid ""
24584 " luks-add-key device keyslot\n"
24585 "\n"
24586 msgstr ""
24587
24588 #. type: textblock
24589 #: ../fish/guestfish-actions.pod:2664
24590 msgid ""
24591 "Note that if C<keyslot> already contains a key, then this command will "
24592 "fail.  You have to use L</luks-kill-slot> first to remove that key."
24593 msgstr ""
24594
24595 #. type: textblock
24596 #: ../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
24597 msgid ""
24598 "This command has one or more key or passphrase parameters.  Guestfish will "
24599 "prompt for these separately."
24600 msgstr ""
24601
24602 #. type: =head2
24603 #: ../fish/guestfish-actions.pod:2671
24604 msgid "luks-close"
24605 msgstr ""
24606
24607 #. type: verbatim
24608 #: ../fish/guestfish-actions.pod:2673
24609 #, no-wrap
24610 msgid ""
24611 " luks-close device\n"
24612 "\n"
24613 msgstr ""
24614
24615 #. type: textblock
24616 #: ../fish/guestfish-actions.pod:2675
24617 msgid ""
24618 "This closes a LUKS device that was created earlier by L</luks-open> or "
24619 "L</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
24620 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
24621 "underlying block device."
24622 msgstr ""
24623
24624 #. type: =head2
24625 #: ../fish/guestfish-actions.pod:2681
24626 msgid "luks-format"
24627 msgstr ""
24628
24629 #. type: verbatim
24630 #: ../fish/guestfish-actions.pod:2683
24631 #, no-wrap
24632 msgid ""
24633 " luks-format device keyslot\n"
24634 "\n"
24635 msgstr ""
24636
24637 #. type: =head2
24638 #: ../fish/guestfish-actions.pod:2696
24639 msgid "luks-format-cipher"
24640 msgstr ""
24641
24642 #. type: verbatim
24643 #: ../fish/guestfish-actions.pod:2698
24644 #, no-wrap
24645 msgid ""
24646 " luks-format-cipher device keyslot cipher\n"
24647 "\n"
24648 msgstr ""
24649
24650 #. type: textblock
24651 #: ../fish/guestfish-actions.pod:2700
24652 msgid ""
24653 "This command is the same as L</luks-format> but it also allows you to set "
24654 "the C<cipher> used."
24655 msgstr ""
24656
24657 #. type: =head2
24658 #: ../fish/guestfish-actions.pod:2709
24659 msgid "luks-kill-slot"
24660 msgstr ""
24661
24662 #. type: verbatim
24663 #: ../fish/guestfish-actions.pod:2711
24664 #, no-wrap
24665 msgid ""
24666 " luks-kill-slot device keyslot\n"
24667 "\n"
24668 msgstr ""
24669
24670 #. type: =head2
24671 #: ../fish/guestfish-actions.pod:2720
24672 msgid "luks-open"
24673 msgstr ""
24674
24675 #. type: verbatim
24676 #: ../fish/guestfish-actions.pod:2722
24677 #, no-wrap
24678 msgid ""
24679 " luks-open device mapname\n"
24680 "\n"
24681 msgstr ""
24682
24683 #. type: textblock
24684 #: ../fish/guestfish-actions.pod:2736
24685 msgid ""
24686 "If this block device contains LVM volume groups, then calling L</vgscan> "
24687 "followed by L</vg-activate-all> will make them visible."
24688 msgstr ""
24689
24690 #. type: =head2
24691 #: ../fish/guestfish-actions.pod:2743
24692 msgid "luks-open-ro"
24693 msgstr ""
24694
24695 #. type: verbatim
24696 #: ../fish/guestfish-actions.pod:2745
24697 #, no-wrap
24698 msgid ""
24699 " luks-open-ro device mapname\n"
24700 "\n"
24701 msgstr ""
24702
24703 #. type: textblock
24704 #: ../fish/guestfish-actions.pod:2747
24705 msgid ""
24706 "This is the same as L</luks-open> except that a read-only mapping is "
24707 "created."
24708 msgstr ""
24709
24710 #. type: =head2
24711 #: ../fish/guestfish-actions.pod:2753
24712 msgid "lvcreate"
24713 msgstr ""
24714
24715 #. type: verbatim
24716 #: ../fish/guestfish-actions.pod:2755
24717 #, no-wrap
24718 msgid ""
24719 " lvcreate logvol volgroup mbytes\n"
24720 "\n"
24721 msgstr ""
24722
24723 #. type: =head2
24724 #: ../fish/guestfish-actions.pod:2760
24725 msgid "lvm-canonical-lv-name"
24726 msgstr ""
24727
24728 #. type: verbatim
24729 #: ../fish/guestfish-actions.pod:2762
24730 #, no-wrap
24731 msgid ""
24732 " lvm-canonical-lv-name lvname\n"
24733 "\n"
24734 msgstr ""
24735
24736 #. type: textblock
24737 #: ../fish/guestfish-actions.pod:2771
24738 msgid "See also L</is-lv>."
24739 msgstr ""
24740
24741 #. type: =head2
24742 #: ../fish/guestfish-actions.pod:2773
24743 msgid "lvm-clear-filter"
24744 msgstr ""
24745
24746 #. type: verbatim
24747 #: ../fish/guestfish-actions.pod:2775
24748 #, no-wrap
24749 msgid ""
24750 " lvm-clear-filter\n"
24751 "\n"
24752 msgstr ""
24753
24754 #. type: textblock
24755 #: ../fish/guestfish-actions.pod:2777
24756 msgid ""
24757 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every "
24758 "block device."
24759 msgstr ""
24760
24761 #. type: =head2
24762 #: ../fish/guestfish-actions.pod:2783
24763 msgid "lvm-remove-all"
24764 msgstr ""
24765
24766 #. type: verbatim
24767 #: ../fish/guestfish-actions.pod:2785
24768 #, no-wrap
24769 msgid ""
24770 " lvm-remove-all\n"
24771 "\n"
24772 msgstr ""
24773
24774 #. type: =head2
24775 #: ../fish/guestfish-actions.pod:2793
24776 msgid "lvm-set-filter"
24777 msgstr ""
24778
24779 #. type: verbatim
24780 #: ../fish/guestfish-actions.pod:2795
24781 #, no-wrap
24782 msgid ""
24783 " lvm-set-filter 'devices ...'\n"
24784 "\n"
24785 msgstr ""
24786
24787 #. type: =head2
24788 #: ../fish/guestfish-actions.pod:2820
24789 msgid "lvremove"
24790 msgstr ""
24791
24792 #. type: verbatim
24793 #: ../fish/guestfish-actions.pod:2822
24794 #, no-wrap
24795 msgid ""
24796 " lvremove device\n"
24797 "\n"
24798 msgstr ""
24799
24800 #. type: =head2
24801 #: ../fish/guestfish-actions.pod:2830
24802 msgid "lvrename"
24803 msgstr ""
24804
24805 #. type: verbatim
24806 #: ../fish/guestfish-actions.pod:2832
24807 #, no-wrap
24808 msgid ""
24809 " lvrename logvol newlogvol\n"
24810 "\n"
24811 msgstr ""
24812
24813 #. type: =head2
24814 #: ../fish/guestfish-actions.pod:2836
24815 msgid "lvresize"
24816 msgstr ""
24817
24818 #. type: verbatim
24819 #: ../fish/guestfish-actions.pod:2838
24820 #, no-wrap
24821 msgid ""
24822 " lvresize device mbytes\n"
24823 "\n"
24824 msgstr ""
24825
24826 #. type: =head2
24827 #: ../fish/guestfish-actions.pod:2844
24828 msgid "lvresize-free"
24829 msgstr ""
24830
24831 #. type: verbatim
24832 #: ../fish/guestfish-actions.pod:2846
24833 #, no-wrap
24834 msgid ""
24835 " lvresize-free lv percent\n"
24836 "\n"
24837 msgstr ""
24838
24839 #. type: =head2
24840 #: ../fish/guestfish-actions.pod:2854
24841 msgid "lvs"
24842 msgstr ""
24843
24844 #. type: verbatim
24845 #: ../fish/guestfish-actions.pod:2856
24846 #, no-wrap
24847 msgid ""
24848 " lvs\n"
24849 "\n"
24850 msgstr ""
24851
24852 #. type: textblock
24853 #: ../fish/guestfish-actions.pod:2864
24854 msgid "See also L</lvs-full>, L</list-filesystems>."
24855 msgstr ""
24856
24857 #. type: =head2
24858 #: ../fish/guestfish-actions.pod:2866
24859 msgid "lvs-full"
24860 msgstr ""
24861
24862 #. type: verbatim
24863 #: ../fish/guestfish-actions.pod:2868
24864 #, no-wrap
24865 msgid ""
24866 " lvs-full\n"
24867 "\n"
24868 msgstr ""
24869
24870 #. type: =head2
24871 #: ../fish/guestfish-actions.pod:2873
24872 msgid "lvuuid"
24873 msgstr ""
24874
24875 #. type: verbatim
24876 #: ../fish/guestfish-actions.pod:2875
24877 #, no-wrap
24878 msgid ""
24879 " lvuuid device\n"
24880 "\n"
24881 msgstr ""
24882
24883 #. type: =head2
24884 #: ../fish/guestfish-actions.pod:2879
24885 msgid "lxattrlist"
24886 msgstr ""
24887
24888 #. type: verbatim
24889 #: ../fish/guestfish-actions.pod:2881
24890 #, no-wrap
24891 msgid ""
24892 " lxattrlist path 'names ...'\n"
24893 "\n"
24894 msgstr ""
24895
24896 #. type: textblock
24897 #: ../fish/guestfish-actions.pod:2897
24898 msgid ""
24899 "This call is intended for programs that want to efficiently list a directory "
24900 "contents without making many round-trips.  See also L</lstatlist> for a "
24901 "similarly efficient call for getting standard stats.  Very long directory "
24902 "listings might cause the protocol message size to be exceeded, causing this "
24903 "call to fail.  The caller must split up such requests into smaller groups of "
24904 "names."
24905 msgstr ""
24906
24907 #. type: =head2
24908 #: ../fish/guestfish-actions.pod:2905
24909 msgid "mkdir"
24910 msgstr ""
24911
24912 #. type: verbatim
24913 #: ../fish/guestfish-actions.pod:2907
24914 #, no-wrap
24915 msgid ""
24916 " mkdir path\n"
24917 "\n"
24918 msgstr ""
24919
24920 #. type: =head2
24921 #: ../fish/guestfish-actions.pod:2911
24922 msgid "mkdir-mode"
24923 msgstr ""
24924
24925 #. type: verbatim
24926 #: ../fish/guestfish-actions.pod:2913
24927 #, no-wrap
24928 msgid ""
24929 " mkdir-mode path mode\n"
24930 "\n"
24931 msgstr ""
24932
24933 #. type: textblock
24934 #: ../fish/guestfish-actions.pod:2922
24935 msgid "See also L</mkdir>, L</umask>"
24936 msgstr ""
24937
24938 #. type: =head2
24939 #: ../fish/guestfish-actions.pod:2924
24940 msgid "mkdir-p"
24941 msgstr ""
24942
24943 #. type: verbatim
24944 #: ../fish/guestfish-actions.pod:2926
24945 #, no-wrap
24946 msgid ""
24947 " mkdir-p path\n"
24948 "\n"
24949 msgstr ""
24950
24951 #. type: =head2
24952 #: ../fish/guestfish-actions.pod:2931
24953 msgid "mkdtemp"
24954 msgstr ""
24955
24956 #. type: verbatim
24957 #: ../fish/guestfish-actions.pod:2933
24958 #, no-wrap
24959 msgid ""
24960 " mkdtemp template\n"
24961 "\n"
24962 msgstr ""
24963
24964 #. type: =head2
24965 #: ../fish/guestfish-actions.pod:2954
24966 msgid "mke2fs-J"
24967 msgstr ""
24968
24969 #. type: verbatim
24970 #: ../fish/guestfish-actions.pod:2956
24971 #, no-wrap
24972 msgid ""
24973 " mke2fs-J fstype blocksize device journal\n"
24974 "\n"
24975 msgstr ""
24976
24977 #. type: textblock
24978 #: ../fish/guestfish-actions.pod:2964
24979 msgid "See also L</mke2journal>."
24980 msgstr ""
24981
24982 #. type: =head2
24983 #: ../fish/guestfish-actions.pod:2966
24984 msgid "mke2fs-JL"
24985 msgstr ""
24986
24987 #. type: verbatim
24988 #: ../fish/guestfish-actions.pod:2968
24989 #, no-wrap
24990 msgid ""
24991 " mke2fs-JL fstype blocksize device label\n"
24992 "\n"
24993 msgstr ""
24994
24995 #. type: textblock
24996 #: ../fish/guestfish-actions.pod:2973
24997 msgid "See also L</mke2journal-L>."
24998 msgstr ""
24999
25000 #. type: =head2
25001 #: ../fish/guestfish-actions.pod:2975
25002 msgid "mke2fs-JU"
25003 msgstr ""
25004
25005 #. type: verbatim
25006 #: ../fish/guestfish-actions.pod:2977
25007 #, no-wrap
25008 msgid ""
25009 " mke2fs-JU fstype blocksize device uuid\n"
25010 "\n"
25011 msgstr ""
25012
25013 #. type: textblock
25014 #: ../fish/guestfish-actions.pod:2982
25015 msgid "See also L</mke2journal-U>."
25016 msgstr ""
25017
25018 #. type: =head2
25019 #: ../fish/guestfish-actions.pod:2984
25020 msgid "mke2journal"
25021 msgstr ""
25022
25023 #. type: verbatim
25024 #: ../fish/guestfish-actions.pod:2986
25025 #, no-wrap
25026 msgid ""
25027 " mke2journal blocksize device\n"
25028 "\n"
25029 msgstr ""
25030
25031 #. type: =head2
25032 #: ../fish/guestfish-actions.pod:2993
25033 msgid "mke2journal-L"
25034 msgstr ""
25035
25036 #. type: verbatim
25037 #: ../fish/guestfish-actions.pod:2995
25038 #, no-wrap
25039 msgid ""
25040 " mke2journal-L blocksize label device\n"
25041 "\n"
25042 msgstr ""
25043
25044 #. type: =head2
25045 #: ../fish/guestfish-actions.pod:2999
25046 msgid "mke2journal-U"
25047 msgstr ""
25048
25049 #. type: verbatim
25050 #: ../fish/guestfish-actions.pod:3001
25051 #, no-wrap
25052 msgid ""
25053 " mke2journal-U blocksize uuid device\n"
25054 "\n"
25055 msgstr ""
25056
25057 #. type: =head2
25058 #: ../fish/guestfish-actions.pod:3005
25059 msgid "mkfifo"
25060 msgstr ""
25061
25062 #. type: verbatim
25063 #: ../fish/guestfish-actions.pod:3007
25064 #, no-wrap
25065 msgid ""
25066 " mkfifo mode path\n"
25067 "\n"
25068 msgstr ""
25069
25070 #. type: textblock
25071 #: ../fish/guestfish-actions.pod:3009
25072 msgid ""
25073 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
25074 "is just a convenient wrapper around L</mknod>."
25075 msgstr ""
25076
25077 #. type: =head2
25078 #: ../fish/guestfish-actions.pod:3015
25079 msgid "mkfs"
25080 msgstr ""
25081
25082 #. type: verbatim
25083 #: ../fish/guestfish-actions.pod:3017
25084 #, no-wrap
25085 msgid ""
25086 " mkfs fstype device\n"
25087 "\n"
25088 msgstr ""
25089
25090 #. type: =head2
25091 #: ../fish/guestfish-actions.pod:3023
25092 msgid "mkfs-b"
25093 msgstr ""
25094
25095 #. type: verbatim
25096 #: ../fish/guestfish-actions.pod:3025
25097 #, no-wrap
25098 msgid ""
25099 " mkfs-b fstype blocksize device\n"
25100 "\n"
25101 msgstr ""
25102
25103 #. type: textblock
25104 #: ../fish/guestfish-actions.pod:3027
25105 msgid ""
25106 "This call is similar to L</mkfs>, but it allows you to control the block "
25107 "size of the resulting filesystem.  Supported block sizes depend on the "
25108 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
25109 msgstr ""
25110
25111 #. type: =head2
25112 #: ../fish/guestfish-actions.pod:3042
25113 msgid "mkfs-opts"
25114 msgstr ""
25115
25116 #. type: verbatim
25117 #: ../fish/guestfish-actions.pod:3044
25118 #, no-wrap
25119 msgid ""
25120 " mkfs-opts fstype device [blocksize:..] [features:..]\n"
25121 "\n"
25122 msgstr ""
25123
25124 #. type: =head2
25125 #: ../fish/guestfish-actions.pod:3079
25126 msgid "mkmountpoint"
25127 msgstr ""
25128
25129 #. type: verbatim
25130 #: ../fish/guestfish-actions.pod:3081
25131 #, no-wrap
25132 msgid ""
25133 " mkmountpoint exemptpath\n"
25134 "\n"
25135 msgstr ""
25136
25137 #. type: textblock
25138 #: ../fish/guestfish-actions.pod:3083
25139 msgid ""
25140 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used "
25141 "to create extra mountpoints before mounting the first filesystem."
25142 msgstr ""
25143
25144 #. type: textblock
25145 #: ../fish/guestfish-actions.pod:3107
25146 msgid ""
25147 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
25148 "unexpected errors if you try to mix these calls.  It is safest to manually "
25149 "unmount filesystems and remove mountpoints after use."
25150 msgstr ""
25151
25152 #. type: textblock
25153 #: ../fish/guestfish-actions.pod:3111
25154 msgid ""
25155 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
25156 "for this to work for manual mountpoints, you must ensure that the innermost "
25157 "mountpoints have the longest pathnames, as in the example code above."
25158 msgstr ""
25159
25160 #. type: textblock
25161 #: ../fish/guestfish-actions.pod:3118
25162 msgid ""
25163 "Autosync [see L</set-autosync>, this is set by default on handles] can cause "
25164 "L</umount-all> to be called when the handle is closed which can also trigger "
25165 "these issues."
25166 msgstr ""
25167
25168 #. type: =head2
25169 #: ../fish/guestfish-actions.pod:3122
25170 msgid "mknod"
25171 msgstr ""
25172
25173 #. type: verbatim
25174 #: ../fish/guestfish-actions.pod:3124
25175 #, no-wrap
25176 msgid ""
25177 " mknod mode devmajor devminor path\n"
25178 "\n"
25179 msgstr ""
25180
25181 #. type: textblock
25182 #: ../fish/guestfish-actions.pod:3134
25183 msgid ""
25184 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
25185 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
25186 "regular file).  These constants are available in the standard Linux header "
25187 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
25188 "wrappers around this command which bitwise OR in the appropriate constant "
25189 "for you."
25190 msgstr ""
25191
25192 #. type: =head2
25193 #: ../fish/guestfish-actions.pod:3144
25194 msgid "mknod-b"
25195 msgstr ""
25196
25197 #. type: verbatim
25198 #: ../fish/guestfish-actions.pod:3146
25199 #, no-wrap
25200 msgid ""
25201 " mknod-b mode devmajor devminor path\n"
25202 "\n"
25203 msgstr ""
25204
25205 #. type: textblock
25206 #: ../fish/guestfish-actions.pod:3148
25207 msgid ""
25208 "This call creates a block device node called C<path> with mode C<mode> and "
25209 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25210 "wrapper around L</mknod>."
25211 msgstr ""
25212
25213 #. type: =head2
25214 #: ../fish/guestfish-actions.pod:3154
25215 msgid "mknod-c"
25216 msgstr ""
25217
25218 #. type: verbatim
25219 #: ../fish/guestfish-actions.pod:3156
25220 #, no-wrap
25221 msgid ""
25222 " mknod-c mode devmajor devminor path\n"
25223 "\n"
25224 msgstr ""
25225
25226 #. type: textblock
25227 #: ../fish/guestfish-actions.pod:3158
25228 msgid ""
25229 "This call creates a char device node called C<path> with mode C<mode> and "
25230 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
25231 "wrapper around L</mknod>."
25232 msgstr ""
25233
25234 #. type: =head2
25235 #: ../fish/guestfish-actions.pod:3164
25236 msgid "mkswap"
25237 msgstr ""
25238
25239 #. type: verbatim
25240 #: ../fish/guestfish-actions.pod:3166
25241 #, no-wrap
25242 msgid ""
25243 " mkswap device\n"
25244 "\n"
25245 msgstr ""
25246
25247 #. type: =head2
25248 #: ../fish/guestfish-actions.pod:3170
25249 msgid "mkswap-L"
25250 msgstr ""
25251
25252 #. type: verbatim
25253 #: ../fish/guestfish-actions.pod:3172
25254 #, no-wrap
25255 msgid ""
25256 " mkswap-L label device\n"
25257 "\n"
25258 msgstr ""
25259
25260 #. type: =head2
25261 #: ../fish/guestfish-actions.pod:3180
25262 msgid "mkswap-U"
25263 msgstr ""
25264
25265 #. type: verbatim
25266 #: ../fish/guestfish-actions.pod:3182
25267 #, no-wrap
25268 msgid ""
25269 " mkswap-U uuid device\n"
25270 "\n"
25271 msgstr ""
25272
25273 #. type: =head2
25274 #: ../fish/guestfish-actions.pod:3186
25275 msgid "mkswap-file"
25276 msgstr ""
25277
25278 #. type: verbatim
25279 #: ../fish/guestfish-actions.pod:3188
25280 #, no-wrap
25281 msgid ""
25282 " mkswap-file path\n"
25283 "\n"
25284 msgstr ""
25285
25286 #. type: textblock
25287 #: ../fish/guestfish-actions.pod:3192
25288 msgid ""
25289 "This command just writes a swap file signature to an existing file.  To "
25290 "create the file itself, use something like L</fallocate>."
25291 msgstr ""
25292
25293 #. type: =head2
25294 #: ../fish/guestfish-actions.pod:3195
25295 msgid "modprobe"
25296 msgstr ""
25297
25298 #. type: verbatim
25299 #: ../fish/guestfish-actions.pod:3197
25300 #, no-wrap
25301 msgid ""
25302 " modprobe modulename\n"
25303 "\n"
25304 msgstr ""
25305
25306 #. type: =head2
25307 #: ../fish/guestfish-actions.pod:3204
25308 msgid "mount"
25309 msgstr ""
25310
25311 #. type: verbatim
25312 #: ../fish/guestfish-actions.pod:3206
25313 #, no-wrap
25314 msgid ""
25315 " mount device mountpoint\n"
25316 "\n"
25317 msgstr ""
25318
25319 #. type: textblock
25320 #: ../fish/guestfish-actions.pod:3222
25321 msgid ""
25322 "B<Important note:> When you use this call, the filesystem options C<sync> "
25323 "and C<noatime> are set implicitly.  This was originally done because we "
25324 "thought it would improve reliability, but it turns out that I<-o sync> has a "
25325 "very large negative performance impact and negligible effect on "
25326 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
25327 "code that needs performance, and instead use L</mount-options> (use an empty "
25328 "string for the first parameter if you don't want any options)."
25329 msgstr ""
25330
25331 #. type: =head2
25332 #: ../fish/guestfish-actions.pod:3239
25333 msgid "mount-9p"
25334 msgstr ""
25335
25336 #. type: verbatim
25337 #: ../fish/guestfish-actions.pod:3241
25338 #, no-wrap
25339 msgid ""
25340 " mount-9p mounttag mountpoint [options:..]\n"
25341 "\n"
25342 msgstr ""
25343
25344 #. type: =head2
25345 #: ../fish/guestfish-actions.pod:3252
25346 msgid "mount-loop"
25347 msgstr ""
25348
25349 #. type: verbatim
25350 #: ../fish/guestfish-actions.pod:3254
25351 #, no-wrap
25352 msgid ""
25353 " mount-loop file mountpoint\n"
25354 "\n"
25355 msgstr ""
25356
25357 #. type: =head2
25358 #: ../fish/guestfish-actions.pod:3260
25359 msgid "mount-options"
25360 msgstr ""
25361
25362 #. type: verbatim
25363 #: ../fish/guestfish-actions.pod:3262
25364 #, no-wrap
25365 msgid ""
25366 " mount-options options device mountpoint\n"
25367 "\n"
25368 msgstr ""
25369
25370 #. type: textblock
25371 #: ../fish/guestfish-actions.pod:3264
25372 msgid ""
25373 "This is the same as the L</mount> command, but it allows you to set the "
25374 "mount options as for the L<mount(8)> I<-o> flag."
25375 msgstr ""
25376
25377 #. type: =head2
25378 #: ../fish/guestfish-actions.pod:3272
25379 msgid "mount-ro"
25380 msgstr ""
25381
25382 #. type: verbatim
25383 #: ../fish/guestfish-actions.pod:3274
25384 #, no-wrap
25385 msgid ""
25386 " mount-ro device mountpoint\n"
25387 "\n"
25388 msgstr ""
25389
25390 #. type: textblock
25391 #: ../fish/guestfish-actions.pod:3276
25392 msgid ""
25393 "This is the same as the L</mount> command, but it mounts the filesystem with "
25394 "the read-only (I<-o ro>) flag."
25395 msgstr ""
25396
25397 #. type: =head2
25398 #: ../fish/guestfish-actions.pod:3279
25399 msgid "mount-vfs"
25400 msgstr ""
25401
25402 #. type: verbatim
25403 #: ../fish/guestfish-actions.pod:3281
25404 #, no-wrap
25405 msgid ""
25406 " mount-vfs options vfstype device mountpoint\n"
25407 "\n"
25408 msgstr ""
25409
25410 #. type: textblock
25411 #: ../fish/guestfish-actions.pod:3283
25412 msgid ""
25413 "This is the same as the L</mount> command, but it allows you to set both the "
25414 "mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
25415 msgstr ""
25416
25417 #. type: =head2
25418 #: ../fish/guestfish-actions.pod:3287
25419 msgid "mountpoints"
25420 msgstr ""
25421
25422 #. type: verbatim
25423 #: ../fish/guestfish-actions.pod:3289
25424 #, no-wrap
25425 msgid ""
25426 " mountpoints\n"
25427 "\n"
25428 msgstr ""
25429
25430 #. type: textblock
25431 #: ../fish/guestfish-actions.pod:3291
25432 msgid ""
25433 "This call is similar to L</mounts>.  That call returns a list of devices.  "
25434 "This one returns a hash table (map) of device name to directory where the "
25435 "device is mounted."
25436 msgstr ""
25437
25438 #. type: =head2
25439 #: ../fish/guestfish-actions.pod:3295
25440 msgid "mounts"
25441 msgstr ""
25442
25443 #. type: verbatim
25444 #: ../fish/guestfish-actions.pod:3297
25445 #, no-wrap
25446 msgid ""
25447 " mounts\n"
25448 "\n"
25449 msgstr ""
25450
25451 #. type: textblock
25452 #: ../fish/guestfish-actions.pod:3304
25453 msgid "See also: L</mountpoints>"
25454 msgstr ""
25455
25456 #. type: =head2
25457 #: ../fish/guestfish-actions.pod:3306
25458 msgid "mv"
25459 msgstr ""
25460
25461 #. type: verbatim
25462 #: ../fish/guestfish-actions.pod:3308
25463 #, no-wrap
25464 msgid ""
25465 " mv src dest\n"
25466 "\n"
25467 msgstr ""
25468
25469 #. type: =head2
25470 #: ../fish/guestfish-actions.pod:3313
25471 msgid "ntfs-3g-probe"
25472 msgstr ""
25473
25474 #. type: verbatim
25475 #: ../fish/guestfish-actions.pod:3315
25476 #, no-wrap
25477 msgid ""
25478 " ntfs-3g-probe true|false device\n"
25479 "\n"
25480 msgstr ""
25481
25482 #. type: =head2
25483 #: ../fish/guestfish-actions.pod:3329
25484 msgid "ntfsresize"
25485 msgstr ""
25486
25487 #. type: verbatim
25488 #: ../fish/guestfish-actions.pod:3331
25489 #, no-wrap
25490 msgid ""
25491 " ntfsresize device\n"
25492 "\n"
25493 msgstr ""
25494
25495 #. type: =head2
25496 #: ../fish/guestfish-actions.pod:3337
25497 msgid "ntfsresize-size"
25498 msgstr ""
25499
25500 #. type: verbatim
25501 #: ../fish/guestfish-actions.pod:3339
25502 #, no-wrap
25503 msgid ""
25504 " ntfsresize-size device size\n"
25505 "\n"
25506 msgstr ""
25507
25508 #. type: textblock
25509 #: ../fish/guestfish-actions.pod:3341
25510 msgid ""
25511 "This command is the same as L</ntfsresize> except that it allows you to "
25512 "specify the new size (in bytes) explicitly."
25513 msgstr ""
25514
25515 #. type: =head2
25516 #: ../fish/guestfish-actions.pod:3344
25517 msgid "part-add"
25518 msgstr ""
25519
25520 #. type: verbatim
25521 #: ../fish/guestfish-actions.pod:3346
25522 #, no-wrap
25523 msgid ""
25524 " part-add device prlogex startsect endsect\n"
25525 "\n"
25526 msgstr ""
25527
25528 #. type: textblock
25529 #: ../fish/guestfish-actions.pod:3348
25530 msgid ""
25531 "This command adds a partition to C<device>.  If there is no partition table "
25532 "on the device, call L</part-init> first."
25533 msgstr ""
25534
25535 #. type: textblock
25536 #: ../fish/guestfish-actions.pod:3360
25537 msgid ""
25538 "Creating a partition which covers the whole disk is not so easy.  Use "
25539 "L</part-disk> to do that."
25540 msgstr ""
25541
25542 #. type: =head2
25543 #: ../fish/guestfish-actions.pod:3363
25544 msgid "part-del"
25545 msgstr ""
25546
25547 #. type: verbatim
25548 #: ../fish/guestfish-actions.pod:3365
25549 #, no-wrap
25550 msgid ""
25551 " part-del device partnum\n"
25552 "\n"
25553 msgstr ""
25554
25555 #. type: =head2
25556 #: ../fish/guestfish-actions.pod:3373
25557 msgid "part-disk"
25558 msgstr ""
25559
25560 #. type: verbatim
25561 #: ../fish/guestfish-actions.pod:3375
25562 #, no-wrap
25563 msgid ""
25564 " part-disk device parttype\n"
25565 "\n"
25566 msgstr ""
25567
25568 #. type: textblock
25569 #: ../fish/guestfish-actions.pod:3377
25570 msgid ""
25571 "This command is simply a combination of L</part-init> followed by "
25572 "L</part-add> to create a single primary partition covering the whole disk."
25573 msgstr ""
25574
25575 #. type: textblock
25576 #: ../fish/guestfish-actions.pod:3381
25577 msgid ""
25578 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other "
25579 "possible values are described in L</part-init>."
25580 msgstr ""
25581
25582 #. type: =head2
25583 #: ../fish/guestfish-actions.pod:3387
25584 msgid "part-get-bootable"
25585 msgstr ""
25586
25587 #. type: verbatim
25588 #: ../fish/guestfish-actions.pod:3389
25589 #, no-wrap
25590 msgid ""
25591 " part-get-bootable device partnum\n"
25592 "\n"
25593 msgstr ""
25594
25595 #. type: textblock
25596 #: ../fish/guestfish-actions.pod:3394
25597 msgid "See also L</part-set-bootable>."
25598 msgstr ""
25599
25600 #. type: =head2
25601 #: ../fish/guestfish-actions.pod:3396
25602 msgid "part-get-mbr-id"
25603 msgstr ""
25604
25605 #. type: verbatim
25606 #: ../fish/guestfish-actions.pod:3398
25607 #, no-wrap
25608 msgid ""
25609 " part-get-mbr-id device partnum\n"
25610 "\n"
25611 msgstr ""
25612
25613 #. type: textblock
25614 #: ../fish/guestfish-actions.pod:3403 ../fish/guestfish-actions.pod:3541
25615 msgid ""
25616 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get "
25617 "undefined results for other partition table types (see "
25618 "L</part-get-parttype>)."
25619 msgstr ""
25620
25621 #. type: =head2
25622 #: ../fish/guestfish-actions.pod:3407
25623 msgid "part-get-parttype"
25624 msgstr ""
25625
25626 #. type: verbatim
25627 #: ../fish/guestfish-actions.pod:3409
25628 #, no-wrap
25629 msgid ""
25630 " part-get-parttype device\n"
25631 "\n"
25632 msgstr ""
25633
25634 #. type: textblock
25635 #: ../fish/guestfish-actions.pod:3414
25636 msgid ""
25637 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
25638 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
25639 "possible, although unusual.  See L</part-init> for a full list."
25640 msgstr ""
25641
25642 #. type: =head2
25643 #: ../fish/guestfish-actions.pod:3419
25644 msgid "part-init"
25645 msgstr ""
25646
25647 #. type: verbatim
25648 #: ../fish/guestfish-actions.pod:3421
25649 #, no-wrap
25650 msgid ""
25651 " part-init device parttype\n"
25652 "\n"
25653 msgstr ""
25654
25655 #. type: textblock
25656 #: ../fish/guestfish-actions.pod:3427
25657 msgid ""
25658 "Initially there are no partitions.  Following this, you should call "
25659 "L</part-add> for each partition required."
25660 msgstr ""
25661
25662 #. type: =head2
25663 #: ../fish/guestfish-actions.pod:3490
25664 msgid "part-list"
25665 msgstr ""
25666
25667 #. type: verbatim
25668 #: ../fish/guestfish-actions.pod:3492
25669 #, no-wrap
25670 msgid ""
25671 " part-list device\n"
25672 "\n"
25673 msgstr ""
25674
25675 #. type: textblock
25676 #: ../fish/guestfish-actions.pod:3507
25677 msgid ""
25678 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
25679 "the device's sector size, see L</blockdev-getss>."
25680 msgstr ""
25681
25682 #. type: =head2
25683 #: ../fish/guestfish-actions.pod:3520
25684 msgid "part-set-bootable"
25685 msgstr ""
25686
25687 #. type: verbatim
25688 #: ../fish/guestfish-actions.pod:3522
25689 #, no-wrap
25690 msgid ""
25691 " part-set-bootable device partnum true|false\n"
25692 "\n"
25693 msgstr ""
25694
25695 #. type: =head2
25696 #: ../fish/guestfish-actions.pod:3531
25697 msgid "part-set-mbr-id"
25698 msgstr ""
25699
25700 #. type: verbatim
25701 #: ../fish/guestfish-actions.pod:3533
25702 #, no-wrap
25703 msgid ""
25704 " part-set-mbr-id device partnum idbyte\n"
25705 "\n"
25706 msgstr ""
25707
25708 #. type: =head2
25709 #: ../fish/guestfish-actions.pod:3545
25710 msgid "part-set-name"
25711 msgstr ""
25712
25713 #. type: verbatim
25714 #: ../fish/guestfish-actions.pod:3547
25715 #, no-wrap
25716 msgid ""
25717 " part-set-name device partnum name\n"
25718 "\n"
25719 msgstr ""
25720
25721 #. type: =head2
25722 #: ../fish/guestfish-actions.pod:3555
25723 msgid "part-to-dev"
25724 msgstr ""
25725
25726 #. type: verbatim
25727 #: ../fish/guestfish-actions.pod:3557
25728 #, no-wrap
25729 msgid ""
25730 " part-to-dev partition\n"
25731 "\n"
25732 msgstr ""
25733
25734 #. type: textblock
25735 #: ../fish/guestfish-actions.pod:3563
25736 msgid ""
25737 "The named partition must exist, for example as a string returned from "
25738 "L</list-partitions>."
25739 msgstr ""
25740
25741 #. type: =head2
25742 #: ../fish/guestfish-actions.pod:3566
25743 msgid "ping-daemon"
25744 msgstr ""
25745
25746 #. type: verbatim
25747 #: ../fish/guestfish-actions.pod:3568
25748 #, no-wrap
25749 msgid ""
25750 " ping-daemon\n"
25751 "\n"
25752 msgstr ""
25753
25754 #. type: =head2
25755 #: ../fish/guestfish-actions.pod:3575
25756 msgid "pread"
25757 msgstr ""
25758
25759 #. type: verbatim
25760 #: ../fish/guestfish-actions.pod:3577
25761 #, no-wrap
25762 msgid ""
25763 " pread path count offset\n"
25764 "\n"
25765 msgstr ""
25766
25767 #. type: textblock
25768 #: ../fish/guestfish-actions.pod:3585
25769 msgid "See also L</pwrite>, L</pread-device>."
25770 msgstr ""
25771
25772 #. type: =head2
25773 #: ../fish/guestfish-actions.pod:3590
25774 msgid "pread-device"
25775 msgstr ""
25776
25777 #. type: verbatim
25778 #: ../fish/guestfish-actions.pod:3592
25779 #, no-wrap
25780 msgid ""
25781 " pread-device device count offset\n"
25782 "\n"
25783 msgstr ""
25784
25785 #. type: textblock
25786 #: ../fish/guestfish-actions.pod:3600
25787 msgid "See also L</pread>."
25788 msgstr ""
25789
25790 #. type: =head2
25791 #: ../fish/guestfish-actions.pod:3605
25792 msgid "pvcreate"
25793 msgstr ""
25794
25795 #. type: verbatim
25796 #: ../fish/guestfish-actions.pod:3607
25797 #, no-wrap
25798 msgid ""
25799 " pvcreate device\n"
25800 "\n"
25801 msgstr ""
25802
25803 #. type: =head2
25804 #: ../fish/guestfish-actions.pod:3613
25805 msgid "pvremove"
25806 msgstr ""
25807
25808 #. type: verbatim
25809 #: ../fish/guestfish-actions.pod:3615
25810 #, no-wrap
25811 msgid ""
25812 " pvremove device\n"
25813 "\n"
25814 msgstr ""
25815
25816 #. type: =head2
25817 #: ../fish/guestfish-actions.pod:3624
25818 msgid "pvresize"
25819 msgstr ""
25820
25821 #. type: verbatim
25822 #: ../fish/guestfish-actions.pod:3626
25823 #, no-wrap
25824 msgid ""
25825 " pvresize device\n"
25826 "\n"
25827 msgstr ""
25828
25829 #. type: =head2
25830 #: ../fish/guestfish-actions.pod:3631
25831 msgid "pvresize-size"
25832 msgstr ""
25833
25834 #. type: verbatim
25835 #: ../fish/guestfish-actions.pod:3633
25836 #, no-wrap
25837 msgid ""
25838 " pvresize-size device size\n"
25839 "\n"
25840 msgstr ""
25841
25842 #. type: textblock
25843 #: ../fish/guestfish-actions.pod:3635
25844 msgid ""
25845 "This command is the same as L</pvresize> except that it allows you to "
25846 "specify the new size (in bytes) explicitly."
25847 msgstr ""
25848
25849 #. type: =head2
25850 #: ../fish/guestfish-actions.pod:3638
25851 msgid "pvs"
25852 msgstr ""
25853
25854 #. type: verbatim
25855 #: ../fish/guestfish-actions.pod:3640
25856 #, no-wrap
25857 msgid ""
25858 " pvs\n"
25859 "\n"
25860 msgstr ""
25861
25862 #. type: textblock
25863 #: ../fish/guestfish-actions.pod:3648
25864 msgid "See also L</pvs-full>."
25865 msgstr ""
25866
25867 #. type: =head2
25868 #: ../fish/guestfish-actions.pod:3650
25869 msgid "pvs-full"
25870 msgstr ""
25871
25872 #. type: verbatim
25873 #: ../fish/guestfish-actions.pod:3652
25874 #, no-wrap
25875 msgid ""
25876 " pvs-full\n"
25877 "\n"
25878 msgstr ""
25879
25880 #. type: =head2
25881 #: ../fish/guestfish-actions.pod:3657
25882 msgid "pvuuid"
25883 msgstr ""
25884
25885 #. type: verbatim
25886 #: ../fish/guestfish-actions.pod:3659
25887 #, no-wrap
25888 msgid ""
25889 " pvuuid device\n"
25890 "\n"
25891 msgstr ""
25892
25893 #. type: =head2
25894 #: ../fish/guestfish-actions.pod:3663
25895 msgid "pwrite"
25896 msgstr ""
25897
25898 #. type: verbatim
25899 #: ../fish/guestfish-actions.pod:3665
25900 #, no-wrap
25901 msgid ""
25902 " pwrite path content offset\n"
25903 "\n"
25904 msgstr ""
25905
25906 #. type: textblock
25907 #: ../fish/guestfish-actions.pod:3676
25908 msgid "See also L</pread>, L</pwrite-device>."
25909 msgstr ""
25910
25911 #. type: =head2
25912 #: ../fish/guestfish-actions.pod:3681
25913 msgid "pwrite-device"
25914 msgstr ""
25915
25916 #. type: verbatim
25917 #: ../fish/guestfish-actions.pod:3683
25918 #, no-wrap
25919 msgid ""
25920 " pwrite-device device content offset\n"
25921 "\n"
25922 msgstr ""
25923
25924 #. type: textblock
25925 #: ../fish/guestfish-actions.pod:3693
25926 msgid "See also L</pwrite>."
25927 msgstr ""
25928
25929 #. type: =head2
25930 #: ../fish/guestfish-actions.pod:3698
25931 msgid "read-file"
25932 msgstr ""
25933
25934 #. type: verbatim
25935 #: ../fish/guestfish-actions.pod:3700
25936 #, no-wrap
25937 msgid ""
25938 " read-file path\n"
25939 "\n"
25940 msgstr ""
25941
25942 #. type: textblock
25943 #: ../fish/guestfish-actions.pod:3705
25944 msgid ""
25945 "Unlike L</cat>, this function can correctly handle files that contain "
25946 "embedded ASCII NUL characters.  However unlike L</download>, this function "
25947 "is limited in the total size of file that can be handled."
25948 msgstr ""
25949
25950 #. type: =head2
25951 #: ../fish/guestfish-actions.pod:3713
25952 msgid "read-lines"
25953 msgstr ""
25954
25955 #. type: verbatim
25956 #: ../fish/guestfish-actions.pod:3715
25957 #, no-wrap
25958 msgid ""
25959 " read-lines path\n"
25960 "\n"
25961 msgstr ""
25962
25963 #. type: textblock
25964 #: ../fish/guestfish-actions.pod:3722
25965 msgid ""
25966 "Note that this function cannot correctly handle binary files (specifically, "
25967 "files containing C<\\0> character which is treated as end of line).  For "
25968 "those you need to use the L</read-file> function which has a more complex "
25969 "interface."
25970 msgstr ""
25971
25972 #. type: =head2
25973 #: ../fish/guestfish-actions.pod:3727
25974 msgid "readdir"
25975 msgstr ""
25976
25977 #. type: verbatim
25978 #: ../fish/guestfish-actions.pod:3729
25979 #, no-wrap
25980 msgid ""
25981 " readdir dir\n"
25982 "\n"
25983 msgstr ""
25984
25985 #. type: textblock
25986 #: ../fish/guestfish-actions.pod:3781
25987 msgid ""
25988 "This function is primarily intended for use by programs.  To get a simple "
25989 "list of names, use L</ls>.  To get a printable directory for human "
25990 "consumption, use L</ll>."
25991 msgstr ""
25992
25993 #. type: =head2
25994 #: ../fish/guestfish-actions.pod:3785
25995 msgid "readlink"
25996 msgstr ""
25997
25998 #. type: verbatim
25999 #: ../fish/guestfish-actions.pod:3787
26000 #, no-wrap
26001 msgid ""
26002 " readlink path\n"
26003 "\n"
26004 msgstr ""
26005
26006 #. type: =head2
26007 #: ../fish/guestfish-actions.pod:3791
26008 msgid "readlinklist"
26009 msgstr ""
26010
26011 #. type: verbatim
26012 #: ../fish/guestfish-actions.pod:3793
26013 #, no-wrap
26014 msgid ""
26015 " readlinklist path 'names ...'\n"
26016 "\n"
26017 msgstr ""
26018
26019 #. type: =head2
26020 #: ../fish/guestfish-actions.pod:3817
26021 msgid "realpath"
26022 msgstr ""
26023
26024 #. type: verbatim
26025 #: ../fish/guestfish-actions.pod:3819
26026 #, no-wrap
26027 msgid ""
26028 " realpath path\n"
26029 "\n"
26030 msgstr ""
26031
26032 #. type: =head2
26033 #: ../fish/guestfish-actions.pod:3824
26034 msgid "removexattr"
26035 msgstr ""
26036
26037 #. type: verbatim
26038 #: ../fish/guestfish-actions.pod:3826
26039 #, no-wrap
26040 msgid ""
26041 " removexattr xattr path\n"
26042 "\n"
26043 msgstr ""
26044
26045 #. type: textblock
26046 #: ../fish/guestfish-actions.pod:3831
26047 msgid "See also: L</lremovexattr>, L<attr(5)>."
26048 msgstr ""
26049
26050 #. type: =head2
26051 #: ../fish/guestfish-actions.pod:3833
26052 msgid "resize2fs"
26053 msgstr ""
26054
26055 #. type: verbatim
26056 #: ../fish/guestfish-actions.pod:3835
26057 #, no-wrap
26058 msgid ""
26059 " resize2fs device\n"
26060 "\n"
26061 msgstr ""
26062
26063 #. type: textblock
26064 #: ../fish/guestfish-actions.pod:3840
26065 msgid ""
26066 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device> "
26067 "before calling this command.  For unknown reasons C<resize2fs> sometimes "
26068 "gives an error about this and sometimes not.  In any case, it is always safe "
26069 "to call L</e2fsck-f> before calling this function."
26070 msgstr ""
26071
26072 #. type: =head2
26073 #: ../fish/guestfish-actions.pod:3846
26074 msgid "resize2fs-M"
26075 msgstr ""
26076
26077 #. type: verbatim
26078 #: ../fish/guestfish-actions.pod:3848
26079 #, no-wrap
26080 msgid ""
26081 " resize2fs-M device\n"
26082 "\n"
26083 msgstr ""
26084
26085 #. type: textblock
26086 #: ../fish/guestfish-actions.pod:3850
26087 msgid ""
26088 "This command is the same as L</resize2fs>, but the filesystem is resized to "
26089 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
26090 "command."
26091 msgstr ""
26092
26093 #. type: textblock
26094 #: ../fish/guestfish-actions.pod:3854
26095 msgid ""
26096 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
26097 "and read the C<Block size> and C<Block count> values.  These two numbers, "
26098 "multiplied together, give the resulting size of the minimal filesystem in "
26099 "bytes."
26100 msgstr ""
26101
26102 #. type: =head2
26103 #: ../fish/guestfish-actions.pod:3859
26104 msgid "resize2fs-size"
26105 msgstr ""
26106
26107 #. type: verbatim
26108 #: ../fish/guestfish-actions.pod:3861
26109 #, no-wrap
26110 msgid ""
26111 " resize2fs-size device size\n"
26112 "\n"
26113 msgstr ""
26114
26115 #. type: textblock
26116 #: ../fish/guestfish-actions.pod:3863
26117 msgid ""
26118 "This command is the same as L</resize2fs> except that it allows you to "
26119 "specify the new size (in bytes) explicitly."
26120 msgstr ""
26121
26122 #. type: =head2
26123 #: ../fish/guestfish-actions.pod:3866
26124 msgid "rm"
26125 msgstr ""
26126
26127 #. type: verbatim
26128 #: ../fish/guestfish-actions.pod:3868
26129 #, no-wrap
26130 msgid ""
26131 " rm path\n"
26132 "\n"
26133 msgstr ""
26134
26135 #. type: =head2
26136 #: ../fish/guestfish-actions.pod:3872
26137 msgid "rm-rf"
26138 msgstr ""
26139
26140 #. type: verbatim
26141 #: ../fish/guestfish-actions.pod:3874
26142 #, no-wrap
26143 msgid ""
26144 " rm-rf path\n"
26145 "\n"
26146 msgstr ""
26147
26148 #. type: =head2
26149 #: ../fish/guestfish-actions.pod:3880
26150 msgid "rmdir"
26151 msgstr ""
26152
26153 #. type: verbatim
26154 #: ../fish/guestfish-actions.pod:3882
26155 #, no-wrap
26156 msgid ""
26157 " rmdir path\n"
26158 "\n"
26159 msgstr ""
26160
26161 #. type: =head2
26162 #: ../fish/guestfish-actions.pod:3886
26163 msgid "rmmountpoint"
26164 msgstr ""
26165
26166 #. type: verbatim
26167 #: ../fish/guestfish-actions.pod:3888
26168 #, no-wrap
26169 msgid ""
26170 " rmmountpoint exemptpath\n"
26171 "\n"
26172 msgstr ""
26173
26174 #. type: textblock
26175 #: ../fish/guestfish-actions.pod:3890
26176 msgid ""
26177 "This calls removes a mountpoint that was previously created with "
26178 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
26179 msgstr ""
26180
26181 #. type: =head2
26182 #: ../fish/guestfish-actions.pod:3894
26183 msgid "scrub-device"
26184 msgstr ""
26185
26186 #. type: verbatim
26187 #: ../fish/guestfish-actions.pod:3896
26188 #, no-wrap
26189 msgid ""
26190 " scrub-device device\n"
26191 "\n"
26192 msgstr ""
26193
26194 #. type: =head2
26195 #: ../fish/guestfish-actions.pod:3907
26196 msgid "scrub-file"
26197 msgstr ""
26198
26199 #. type: verbatim
26200 #: ../fish/guestfish-actions.pod:3909
26201 #, no-wrap
26202 msgid ""
26203 " scrub-file file\n"
26204 "\n"
26205 msgstr ""
26206
26207 #. type: =head2
26208 #: ../fish/guestfish-actions.pod:3919
26209 msgid "scrub-freespace"
26210 msgstr ""
26211
26212 #. type: verbatim
26213 #: ../fish/guestfish-actions.pod:3921
26214 #, no-wrap
26215 msgid ""
26216 " scrub-freespace dir\n"
26217 "\n"
26218 msgstr ""
26219
26220 #. type: textblock
26221 #: ../fish/guestfish-actions.pod:3923
26222 msgid ""
26223 "This command creates the directory C<dir> and then fills it with files until "
26224 "the filesystem is full, and scrubs the files as for L</scrub-file>, and "
26225 "deletes them.  The intention is to scrub any free space on the partition "
26226 "containing C<dir>."
26227 msgstr ""
26228
26229 #. type: =head2
26230 #: ../fish/guestfish-actions.pod:3932
26231 msgid "set-append"
26232 msgstr ""
26233
26234 #. type: =head2
26235 #: ../fish/guestfish-actions.pod:3934
26236 msgid "append"
26237 msgstr ""
26238
26239 #. type: verbatim
26240 #: ../fish/guestfish-actions.pod:3936
26241 #, no-wrap
26242 msgid ""
26243 " set-append append\n"
26244 "\n"
26245 msgstr ""
26246
26247 #. type: =head2
26248 #: ../fish/guestfish-actions.pod:3947
26249 msgid "set-attach-method"
26250 msgstr ""
26251
26252 #. type: =head2
26253 #: ../fish/guestfish-actions.pod:3949
26254 msgid "attach-method"
26255 msgstr ""
26256
26257 #. type: verbatim
26258 #: ../fish/guestfish-actions.pod:3951
26259 #, no-wrap
26260 msgid ""
26261 " set-attach-method attachmethod\n"
26262 "\n"
26263 msgstr ""
26264
26265 #. type: =head2
26266 #: ../fish/guestfish-actions.pod:3973
26267 msgid "set-autosync"
26268 msgstr ""
26269
26270 #. type: =head2
26271 #: ../fish/guestfish-actions.pod:3975
26272 msgid "autosync"
26273 msgstr ""
26274
26275 #. type: verbatim
26276 #: ../fish/guestfish-actions.pod:3977
26277 #, no-wrap
26278 msgid ""
26279 " set-autosync true|false\n"
26280 "\n"
26281 msgstr ""
26282
26283 #. type: =head2
26284 #: ../fish/guestfish-actions.pod:3987
26285 msgid "set-direct"
26286 msgstr ""
26287
26288 #. type: =head2
26289 #: ../fish/guestfish-actions.pod:3989
26290 msgid "direct"
26291 msgstr ""
26292
26293 #. type: verbatim
26294 #: ../fish/guestfish-actions.pod:3991
26295 #, no-wrap
26296 msgid ""
26297 " set-direct true|false\n"
26298 "\n"
26299 msgstr ""
26300
26301 #. type: textblock
26302 #: ../fish/guestfish-actions.pod:3997
26303 msgid ""
26304 "One consequence of this is that log messages aren't caught by the library "
26305 "and handled by L</set-log-message-callback>, but go straight to stdout."
26306 msgstr ""
26307
26308 #. type: =head2
26309 #: ../fish/guestfish-actions.pod:4006
26310 msgid "set-e2label"
26311 msgstr ""
26312
26313 #. type: verbatim
26314 #: ../fish/guestfish-actions.pod:4008
26315 #, no-wrap
26316 msgid ""
26317 " set-e2label device label\n"
26318 "\n"
26319 msgstr ""
26320
26321 #. type: textblock
26322 #: ../fish/guestfish-actions.pod:4014
26323 msgid ""
26324 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
26325 "label on a filesystem."
26326 msgstr ""
26327
26328 #. type: =head2
26329 #: ../fish/guestfish-actions.pod:4017
26330 msgid "set-e2uuid"
26331 msgstr ""
26332
26333 #. type: verbatim
26334 #: ../fish/guestfish-actions.pod:4019
26335 #, no-wrap
26336 msgid ""
26337 " set-e2uuid device uuid\n"
26338 "\n"
26339 msgstr ""
26340
26341 #. type: textblock
26342 #: ../fish/guestfish-actions.pod:4026
26343 msgid ""
26344 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
26345 "UUID of a filesystem."
26346 msgstr ""
26347
26348 #. type: =head2
26349 #: ../fish/guestfish-actions.pod:4029
26350 msgid "set-memsize"
26351 msgstr ""
26352
26353 #. type: =head2
26354 #: ../fish/guestfish-actions.pod:4031
26355 msgid "memsize"
26356 msgstr ""
26357
26358 #. type: verbatim
26359 #: ../fish/guestfish-actions.pod:4033
26360 #, no-wrap
26361 msgid ""
26362 " set-memsize memsize\n"
26363 "\n"
26364 msgstr ""
26365
26366 #. type: textblock
26367 #: ../fish/guestfish-actions.pod:4035
26368 msgid ""
26369 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
26370 "This only has any effect if called before L</launch>."
26371 msgstr ""
26372
26373 #. type: =head2
26374 #: ../fish/guestfish-actions.pod:4046
26375 msgid "set-network"
26376 msgstr ""
26377
26378 #. type: =head2
26379 #: ../fish/guestfish-actions.pod:4048
26380 msgid "network"
26381 msgstr ""
26382
26383 #. type: verbatim
26384 #: ../fish/guestfish-actions.pod:4050
26385 #, no-wrap
26386 msgid ""
26387 " set-network true|false\n"
26388 "\n"
26389 msgstr ""
26390
26391 #. type: textblock
26392 #: ../fish/guestfish-actions.pod:4058
26393 msgid "You must call this before calling L</launch>, otherwise it has no effect."
26394 msgstr ""
26395
26396 #. type: =head2
26397 #: ../fish/guestfish-actions.pod:4061
26398 msgid "set-path"
26399 msgstr ""
26400
26401 #. type: =head2
26402 #: ../fish/guestfish-actions.pod:4063
26403 msgid "path"
26404 msgstr ""
26405
26406 #. type: verbatim
26407 #: ../fish/guestfish-actions.pod:4065
26408 #, no-wrap
26409 msgid ""
26410 " set-path searchpath\n"
26411 "\n"
26412 msgstr ""
26413
26414 #. type: =head2
26415 #: ../fish/guestfish-actions.pod:4074
26416 msgid "set-qemu"
26417 msgstr ""
26418
26419 #. type: =head2
26420 #: ../fish/guestfish-actions.pod:4076
26421 msgid "qemu"
26422 msgstr ""
26423
26424 #. type: verbatim
26425 #: ../fish/guestfish-actions.pod:4078
26426 #, no-wrap
26427 msgid ""
26428 " set-qemu qemu\n"
26429 "\n"
26430 msgstr ""
26431
26432 #. type: =head2
26433 #: ../fish/guestfish-actions.pod:4098
26434 msgid "set-recovery-proc"
26435 msgstr ""
26436
26437 #. type: =head2
26438 #: ../fish/guestfish-actions.pod:4100
26439 msgid "recovery-proc"
26440 msgstr ""
26441
26442 #. type: verbatim
26443 #: ../fish/guestfish-actions.pod:4102
26444 #, no-wrap
26445 msgid ""
26446 " set-recovery-proc true|false\n"
26447 "\n"
26448 msgstr ""
26449
26450 #. type: textblock
26451 #: ../fish/guestfish-actions.pod:4104
26452 msgid ""
26453 "If this is called with the parameter C<false> then L</launch> does not "
26454 "create a recovery process.  The purpose of the recovery process is to stop "
26455 "runaway qemu processes in the case where the main program aborts abruptly."
26456 msgstr ""
26457
26458 #. type: textblock
26459 #: ../fish/guestfish-actions.pod:4109
26460 msgid ""
26461 "This only has any effect if called before L</launch>, and the default is "
26462 "true."
26463 msgstr ""
26464
26465 #. type: =head2
26466 #: ../fish/guestfish-actions.pod:4118
26467 msgid "set-selinux"
26468 msgstr ""
26469
26470 #. type: =head2
26471 #: ../fish/guestfish-actions.pod:4120
26472 msgid "selinux"
26473 msgstr ""
26474
26475 #. type: verbatim
26476 #: ../fish/guestfish-actions.pod:4122
26477 #, no-wrap
26478 msgid ""
26479 " set-selinux true|false\n"
26480 "\n"
26481 msgstr ""
26482
26483 #. type: =head2
26484 #: ../fish/guestfish-actions.pod:4133
26485 msgid "set-trace"
26486 msgstr ""
26487
26488 #. type: =head2
26489 #: ../fish/guestfish-actions.pod:4135
26490 msgid "trace"
26491 msgstr ""
26492
26493 #. type: verbatim
26494 #: ../fish/guestfish-actions.pod:4137
26495 #, no-wrap
26496 msgid ""
26497 " set-trace true|false\n"
26498 "\n"
26499 msgstr ""
26500
26501 #. type: textblock
26502 #: ../fish/guestfish-actions.pod:4149
26503 msgid ""
26504 "Trace messages are normally sent to C<stderr>, unless you register a "
26505 "callback to send them somewhere else (see L</set-event-callback>)."
26506 msgstr ""
26507
26508 #. type: =head2
26509 #: ../fish/guestfish-actions.pod:4153
26510 msgid "set-verbose"
26511 msgstr ""
26512
26513 #. type: =head2
26514 #: ../fish/guestfish-actions.pod:4155
26515 msgid "verbose"
26516 msgstr ""
26517
26518 #. type: verbatim
26519 #: ../fish/guestfish-actions.pod:4157
26520 #, no-wrap
26521 msgid ""
26522 " set-verbose true|false\n"
26523 "\n"
26524 msgstr ""
26525
26526 #. type: textblock
26527 #: ../fish/guestfish-actions.pod:4164
26528 msgid ""
26529 "Verbose messages are normally sent to C<stderr>, unless you register a "
26530 "callback to send them somewhere else (see L</set-event-callback>)."
26531 msgstr ""
26532
26533 #. type: =head2
26534 #: ../fish/guestfish-actions.pod:4168
26535 msgid "setcon"
26536 msgstr ""
26537
26538 #. type: verbatim
26539 #: ../fish/guestfish-actions.pod:4170
26540 #, no-wrap
26541 msgid ""
26542 " setcon context\n"
26543 "\n"
26544 msgstr ""
26545
26546 #. type: =head2
26547 #: ../fish/guestfish-actions.pod:4177
26548 msgid "setxattr"
26549 msgstr ""
26550
26551 #. type: verbatim
26552 #: ../fish/guestfish-actions.pod:4179
26553 #, no-wrap
26554 msgid ""
26555 " setxattr xattr val vallen path\n"
26556 "\n"
26557 msgstr ""
26558
26559 #. type: textblock
26560 #: ../fish/guestfish-actions.pod:4185
26561 msgid "See also: L</lsetxattr>, L<attr(5)>."
26562 msgstr ""
26563
26564 #. type: =head2
26565 #: ../fish/guestfish-actions.pod:4187
26566 msgid "sfdisk"
26567 msgstr ""
26568
26569 #. type: verbatim
26570 #: ../fish/guestfish-actions.pod:4189
26571 #, no-wrap
26572 msgid ""
26573 " sfdisk device cyls heads sectors 'lines ...'\n"
26574 "\n"
26575 msgstr ""
26576
26577 #. type: textblock
26578 #: ../fish/guestfish-actions.pod:4211
26579 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
26580 msgstr ""
26581
26582 #. type: =head2
26583 #: ../fish/guestfish-actions.pod:4224
26584 msgid "sfdiskM"
26585 msgstr ""
26586
26587 #. type: verbatim
26588 #: ../fish/guestfish-actions.pod:4226
26589 #, no-wrap
26590 msgid ""
26591 " sfdiskM device 'lines ...'\n"
26592 "\n"
26593 msgstr ""
26594
26595 #. type: textblock
26596 #: ../fish/guestfish-actions.pod:4228
26597 msgid ""
26598 "This is a simplified interface to the L</sfdisk> command, where partition "
26599 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
26600 "you don't need to specify the cyls, heads and sectors parameters which were "
26601 "rarely if ever used anyway."
26602 msgstr ""
26603
26604 #. type: textblock
26605 #: ../fish/guestfish-actions.pod:4234
26606 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
26607 msgstr ""
26608
26609 #. type: =head2
26610 #: ../fish/guestfish-actions.pod:4247
26611 msgid "sfdisk-N"
26612 msgstr ""
26613
26614 #. type: verbatim
26615 #: ../fish/guestfish-actions.pod:4249
26616 #, no-wrap
26617 msgid ""
26618 " sfdisk-N device partnum cyls heads sectors line\n"
26619 "\n"
26620 msgstr ""
26621
26622 #. type: textblock
26623 #: ../fish/guestfish-actions.pod:4254
26624 msgid ""
26625 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
26626 "cyls/heads/sectors parameters."
26627 msgstr ""
26628
26629 #. type: textblock
26630 #: ../fish/guestfish-actions.pod:4257
26631 msgid "See also: L</part-add>"
26632 msgstr ""
26633
26634 #. type: =head2
26635 #: ../fish/guestfish-actions.pod:4269
26636 msgid "sfdisk-disk-geometry"
26637 msgstr ""
26638
26639 #. type: verbatim
26640 #: ../fish/guestfish-actions.pod:4271
26641 #, no-wrap
26642 msgid ""
26643 " sfdisk-disk-geometry device\n"
26644 "\n"
26645 msgstr ""
26646
26647 #. type: textblock
26648 #: ../fish/guestfish-actions.pod:4273
26649 msgid ""
26650 "This displays the disk geometry of C<device> read from the partition table.  "
26651 "Especially in the case where the underlying block device has been resized, "
26652 "this can be different from the kernel's idea of the geometry (see "
26653 "L</sfdisk-kernel-geometry>)."
26654 msgstr ""
26655
26656 #. type: =head2
26657 #: ../fish/guestfish-actions.pod:4281
26658 msgid "sfdisk-kernel-geometry"
26659 msgstr ""
26660
26661 #. type: verbatim
26662 #: ../fish/guestfish-actions.pod:4283
26663 #, no-wrap
26664 msgid ""
26665 " sfdisk-kernel-geometry device\n"
26666 "\n"
26667 msgstr ""
26668
26669 #. type: =head2
26670 #: ../fish/guestfish-actions.pod:4290
26671 msgid "sfdisk-l"
26672 msgstr ""
26673
26674 #. type: verbatim
26675 #: ../fish/guestfish-actions.pod:4292
26676 #, no-wrap
26677 msgid ""
26678 " sfdisk-l device\n"
26679 "\n"
26680 msgstr ""
26681
26682 #. type: textblock
26683 #: ../fish/guestfish-actions.pod:4298
26684 msgid "See also: L</part-list>"
26685 msgstr ""
26686
26687 #. type: =head2
26688 #: ../fish/guestfish-actions.pod:4307
26689 msgid "sh"
26690 msgstr ""
26691
26692 #. type: verbatim
26693 #: ../fish/guestfish-actions.pod:4309
26694 #, no-wrap
26695 msgid ""
26696 " sh command\n"
26697 "\n"
26698 msgstr ""
26699
26700 #. type: textblock
26701 #: ../fish/guestfish-actions.pod:4314
26702 msgid "This is like L</command>, but passes the command to:"
26703 msgstr ""
26704
26705 #. type: textblock
26706 #: ../fish/guestfish-actions.pod:4322
26707 msgid "All the provisos about L</command> apply to this call."
26708 msgstr ""
26709
26710 #. type: =head2
26711 #: ../fish/guestfish-actions.pod:4324
26712 msgid "sh-lines"
26713 msgstr ""
26714
26715 #. type: verbatim
26716 #: ../fish/guestfish-actions.pod:4326
26717 #, no-wrap
26718 msgid ""
26719 " sh-lines command\n"
26720 "\n"
26721 msgstr ""
26722
26723 #. type: textblock
26724 #: ../fish/guestfish-actions.pod:4328
26725 msgid "This is the same as L</sh>, but splits the result into a list of lines."
26726 msgstr ""
26727
26728 #. type: textblock
26729 #: ../fish/guestfish-actions.pod:4331
26730 msgid "See also: L</command-lines>"
26731 msgstr ""
26732
26733 #. type: =head2
26734 #: ../fish/guestfish-actions.pod:4333
26735 msgid "sleep"
26736 msgstr ""
26737
26738 #. type: verbatim
26739 #: ../fish/guestfish-actions.pod:4335
26740 #, no-wrap
26741 msgid ""
26742 " sleep secs\n"
26743 "\n"
26744 msgstr ""
26745
26746 #. type: =head2
26747 #: ../fish/guestfish-actions.pod:4339
26748 msgid "stat"
26749 msgstr ""
26750
26751 #. type: verbatim
26752 #: ../fish/guestfish-actions.pod:4341
26753 #, no-wrap
26754 msgid ""
26755 " stat path\n"
26756 "\n"
26757 msgstr ""
26758
26759 #. type: =head2
26760 #: ../fish/guestfish-actions.pod:4347
26761 msgid "statvfs"
26762 msgstr ""
26763
26764 #. type: verbatim
26765 #: ../fish/guestfish-actions.pod:4349
26766 #, no-wrap
26767 msgid ""
26768 " statvfs path\n"
26769 "\n"
26770 msgstr ""
26771
26772 #. type: =head2
26773 #: ../fish/guestfish-actions.pod:4357
26774 msgid "strings"
26775 msgstr ""
26776
26777 #. type: verbatim
26778 #: ../fish/guestfish-actions.pod:4359
26779 #, no-wrap
26780 msgid ""
26781 " strings path\n"
26782 "\n"
26783 msgstr ""
26784
26785 #. type: =head2
26786 #: ../fish/guestfish-actions.pod:4367
26787 msgid "strings-e"
26788 msgstr ""
26789
26790 #. type: verbatim
26791 #: ../fish/guestfish-actions.pod:4369
26792 #, no-wrap
26793 msgid ""
26794 " strings-e encoding path\n"
26795 "\n"
26796 msgstr ""
26797
26798 #. type: textblock
26799 #: ../fish/guestfish-actions.pod:4371
26800 msgid ""
26801 "This is like the L</strings> command, but allows you to specify the encoding "
26802 "of strings that are looked for in the source file C<path>."
26803 msgstr ""
26804
26805 #. type: textblock
26806 #: ../fish/guestfish-actions.pod:4381
26807 msgid ""
26808 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
26809 "ISO-8859-X (this is what L</strings> uses)."
26810 msgstr ""
26811
26812 #. type: =head2
26813 #: ../fish/guestfish-actions.pod:4413
26814 msgid "swapoff-device"
26815 msgstr ""
26816
26817 #. type: verbatim
26818 #: ../fish/guestfish-actions.pod:4415
26819 #, no-wrap
26820 msgid ""
26821 " swapoff-device device\n"
26822 "\n"
26823 msgstr ""
26824
26825 #. type: textblock
26826 #: ../fish/guestfish-actions.pod:4417
26827 msgid ""
26828 "This command disables the libguestfs appliance swap device or partition "
26829 "named C<device>.  See L</swapon-device>."
26830 msgstr ""
26831
26832 #. type: =head2
26833 #: ../fish/guestfish-actions.pod:4421
26834 msgid "swapoff-file"
26835 msgstr ""
26836
26837 #. type: verbatim
26838 #: ../fish/guestfish-actions.pod:4423
26839 #, no-wrap
26840 msgid ""
26841 " swapoff-file file\n"
26842 "\n"
26843 msgstr ""
26844
26845 #. type: =head2
26846 #: ../fish/guestfish-actions.pod:4427
26847 msgid "swapoff-label"
26848 msgstr ""
26849
26850 #. type: verbatim
26851 #: ../fish/guestfish-actions.pod:4429
26852 #, no-wrap
26853 msgid ""
26854 " swapoff-label label\n"
26855 "\n"
26856 msgstr ""
26857
26858 #. type: =head2
26859 #: ../fish/guestfish-actions.pod:4434
26860 msgid "swapoff-uuid"
26861 msgstr ""
26862
26863 #. type: verbatim
26864 #: ../fish/guestfish-actions.pod:4436
26865 #, no-wrap
26866 msgid ""
26867 " swapoff-uuid uuid\n"
26868 "\n"
26869 msgstr ""
26870
26871 #. type: =head2
26872 #: ../fish/guestfish-actions.pod:4441
26873 msgid "swapon-device"
26874 msgstr ""
26875
26876 #. type: verbatim
26877 #: ../fish/guestfish-actions.pod:4443
26878 #, no-wrap
26879 msgid ""
26880 " swapon-device device\n"
26881 "\n"
26882 msgstr ""
26883
26884 #. type: textblock
26885 #: ../fish/guestfish-actions.pod:4445
26886 msgid ""
26887 "This command enables the libguestfs appliance to use the swap device or "
26888 "partition named C<device>.  The increased memory is made available for all "
26889 "commands, for example those run using L</command> or L</sh>."
26890 msgstr ""
26891
26892 #. type: =head2
26893 #: ../fish/guestfish-actions.pod:4457
26894 msgid "swapon-file"
26895 msgstr ""
26896
26897 #. type: verbatim
26898 #: ../fish/guestfish-actions.pod:4459
26899 #, no-wrap
26900 msgid ""
26901 " swapon-file file\n"
26902 "\n"
26903 msgstr ""
26904
26905 #. type: textblock
26906 #: ../fish/guestfish-actions.pod:4461
26907 msgid "This command enables swap to a file.  See L</swapon-device> for other notes."
26908 msgstr ""
26909
26910 #. type: =head2
26911 #: ../fish/guestfish-actions.pod:4464
26912 msgid "swapon-label"
26913 msgstr ""
26914
26915 #. type: verbatim
26916 #: ../fish/guestfish-actions.pod:4466
26917 #, no-wrap
26918 msgid ""
26919 " swapon-label label\n"
26920 "\n"
26921 msgstr ""
26922
26923 #. type: textblock
26924 #: ../fish/guestfish-actions.pod:4468
26925 msgid ""
26926 "This command enables swap to a labeled swap partition.  See "
26927 "L</swapon-device> for other notes."
26928 msgstr ""
26929
26930 #. type: =head2
26931 #: ../fish/guestfish-actions.pod:4471
26932 msgid "swapon-uuid"
26933 msgstr ""
26934
26935 #. type: verbatim
26936 #: ../fish/guestfish-actions.pod:4473
26937 #, no-wrap
26938 msgid ""
26939 " swapon-uuid uuid\n"
26940 "\n"
26941 msgstr ""
26942
26943 #. type: textblock
26944 #: ../fish/guestfish-actions.pod:4475
26945 msgid ""
26946 "This command enables swap to a swap partition with the given UUID.  See "
26947 "L</swapon-device> for other notes."
26948 msgstr ""
26949
26950 #. type: =head2
26951 #: ../fish/guestfish-actions.pod:4478
26952 msgid "sync"
26953 msgstr ""
26954
26955 #. type: verbatim
26956 #: ../fish/guestfish-actions.pod:4480
26957 #, no-wrap
26958 msgid ""
26959 " sync\n"
26960 "\n"
26961 msgstr ""
26962
26963 #. type: =head2
26964 #: ../fish/guestfish-actions.pod:4488
26965 msgid "tail"
26966 msgstr ""
26967
26968 #. type: verbatim
26969 #: ../fish/guestfish-actions.pod:4490
26970 #, no-wrap
26971 msgid ""
26972 " tail path\n"
26973 "\n"
26974 msgstr ""
26975
26976 #. type: =head2
26977 #: ../fish/guestfish-actions.pod:4498
26978 msgid "tail-n"
26979 msgstr ""
26980
26981 #. type: verbatim
26982 #: ../fish/guestfish-actions.pod:4500
26983 #, no-wrap
26984 msgid ""
26985 " tail-n nrlines path\n"
26986 "\n"
26987 msgstr ""
26988
26989 #. type: =head2
26990 #: ../fish/guestfish-actions.pod:4513
26991 msgid "tar-in"
26992 msgstr ""
26993
26994 #. type: verbatim
26995 #: ../fish/guestfish-actions.pod:4515
26996 #, no-wrap
26997 msgid ""
26998 " tar-in (tarfile|-) directory\n"
26999 "\n"
27000 msgstr ""
27001
27002 #. type: textblock
27003 #: ../fish/guestfish-actions.pod:4520
27004 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
27005 msgstr ""
27006
27007 #. type: =head2
27008 #: ../fish/guestfish-actions.pod:4525
27009 msgid "tar-out"
27010 msgstr ""
27011
27012 #. type: verbatim
27013 #: ../fish/guestfish-actions.pod:4527
27014 #, no-wrap
27015 msgid ""
27016 " tar-out directory (tarfile|-)\n"
27017 "\n"
27018 msgstr ""
27019
27020 #. type: textblock
27021 #: ../fish/guestfish-actions.pod:4532
27022 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
27023 msgstr ""
27024
27025 #. type: =head2
27026 #: ../fish/guestfish-actions.pod:4537
27027 msgid "tgz-in"
27028 msgstr ""
27029
27030 #. type: verbatim
27031 #: ../fish/guestfish-actions.pod:4539
27032 #, no-wrap
27033 msgid ""
27034 " tgz-in (tarball|-) directory\n"
27035 "\n"
27036 msgstr ""
27037
27038 #. type: textblock
27039 #: ../fish/guestfish-actions.pod:4544
27040 msgid "To upload an uncompressed tarball, use L</tar-in>."
27041 msgstr ""
27042
27043 #. type: =head2
27044 #: ../fish/guestfish-actions.pod:4548
27045 msgid "tgz-out"
27046 msgstr ""
27047
27048 #. type: verbatim
27049 #: ../fish/guestfish-actions.pod:4550
27050 #, no-wrap
27051 msgid ""
27052 " tgz-out directory (tarball|-)\n"
27053 "\n"
27054 msgstr ""
27055
27056 #. type: textblock
27057 #: ../fish/guestfish-actions.pod:4555
27058 msgid "To download an uncompressed tarball, use L</tar-out>."
27059 msgstr ""
27060
27061 #. type: =head2
27062 #: ../fish/guestfish-actions.pod:4559
27063 msgid "touch"
27064 msgstr ""
27065
27066 #. type: verbatim
27067 #: ../fish/guestfish-actions.pod:4561
27068 #, no-wrap
27069 msgid ""
27070 " touch path\n"
27071 "\n"
27072 msgstr ""
27073
27074 #. type: =head2
27075 #: ../fish/guestfish-actions.pod:4570
27076 msgid "truncate"
27077 msgstr ""
27078
27079 #. type: verbatim
27080 #: ../fish/guestfish-actions.pod:4572
27081 #, no-wrap
27082 msgid ""
27083 " truncate path\n"
27084 "\n"
27085 msgstr ""
27086
27087 #. type: =head2
27088 #: ../fish/guestfish-actions.pod:4577
27089 msgid "truncate-size"
27090 msgstr ""
27091
27092 #. type: verbatim
27093 #: ../fish/guestfish-actions.pod:4579
27094 #, no-wrap
27095 msgid ""
27096 " truncate-size path size\n"
27097 "\n"
27098 msgstr ""
27099
27100 #. type: textblock
27101 #: ../fish/guestfish-actions.pod:4584
27102 msgid ""
27103 "If the current file size is less than C<size> then the file is extended to "
27104 "the required size with zero bytes.  This creates a sparse file (ie. disk "
27105 "blocks are not allocated for the file until you write to it).  To create a "
27106 "non-sparse file of zeroes, use L</fallocate64> instead."
27107 msgstr ""
27108
27109 #. type: =head2
27110 #: ../fish/guestfish-actions.pod:4590
27111 msgid "tune2fs-l"
27112 msgstr ""
27113
27114 #. type: verbatim
27115 #: ../fish/guestfish-actions.pod:4592
27116 #, no-wrap
27117 msgid ""
27118 " tune2fs-l device\n"
27119 "\n"
27120 msgstr ""
27121
27122 #. type: =head2
27123 #: ../fish/guestfish-actions.pod:4602
27124 msgid "txz-in"
27125 msgstr ""
27126
27127 #. type: verbatim
27128 #: ../fish/guestfish-actions.pod:4604
27129 #, no-wrap
27130 msgid ""
27131 " txz-in (tarball|-) directory\n"
27132 "\n"
27133 msgstr ""
27134
27135 #. type: =head2
27136 #: ../fish/guestfish-actions.pod:4611
27137 msgid "txz-out"
27138 msgstr ""
27139
27140 #. type: verbatim
27141 #: ../fish/guestfish-actions.pod:4613
27142 #, no-wrap
27143 msgid ""
27144 " txz-out directory (tarball|-)\n"
27145 "\n"
27146 msgstr ""
27147
27148 #. type: =head2
27149 #: ../fish/guestfish-actions.pod:4620
27150 msgid "umask"
27151 msgstr ""
27152
27153 #. type: verbatim
27154 #: ../fish/guestfish-actions.pod:4622
27155 #, no-wrap
27156 msgid ""
27157 " umask mask\n"
27158 "\n"
27159 msgstr ""
27160
27161 #. type: textblock
27162 #: ../fish/guestfish-actions.pod:4636
27163 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
27164 msgstr ""
27165
27166 #. type: =head2
27167 #: ../fish/guestfish-actions.pod:4641
27168 msgid "umount"
27169 msgstr ""
27170
27171 #. type: =head2
27172 #: ../fish/guestfish-actions.pod:4643
27173 msgid "unmount"
27174 msgstr ""
27175
27176 #. type: verbatim
27177 #: ../fish/guestfish-actions.pod:4645
27178 #, no-wrap
27179 msgid ""
27180 " umount pathordevice\n"
27181 "\n"
27182 msgstr ""
27183
27184 #. type: =head2
27185 #: ../fish/guestfish-actions.pod:4651
27186 msgid "umount-all"
27187 msgstr ""
27188
27189 #. type: =head2
27190 #: ../fish/guestfish-actions.pod:4653
27191 msgid "unmount-all"
27192 msgstr ""
27193
27194 #. type: verbatim
27195 #: ../fish/guestfish-actions.pod:4655
27196 #, no-wrap
27197 msgid ""
27198 " umount-all\n"
27199 "\n"
27200 msgstr ""
27201
27202 #. type: =head2
27203 #: ../fish/guestfish-actions.pod:4661
27204 msgid "upload"
27205 msgstr ""
27206
27207 #. type: verbatim
27208 #: ../fish/guestfish-actions.pod:4663
27209 #, no-wrap
27210 msgid ""
27211 " upload (filename|-) remotefilename\n"
27212 "\n"
27213 msgstr ""
27214
27215 #. type: textblock
27216 #: ../fish/guestfish-actions.pod:4670
27217 msgid "See also L</download>."
27218 msgstr ""
27219
27220 #. type: =head2
27221 #: ../fish/guestfish-actions.pod:4674
27222 msgid "upload-offset"
27223 msgstr ""
27224
27225 #. type: verbatim
27226 #: ../fish/guestfish-actions.pod:4676
27227 #, no-wrap
27228 msgid ""
27229 " upload-offset (filename|-) remotefilename offset\n"
27230 "\n"
27231 msgstr ""
27232
27233 #. type: textblock
27234 #: ../fish/guestfish-actions.pod:4688
27235 msgid ""
27236 "Note that there is no limit on the amount of data that can be uploaded with "
27237 "this call, unlike with L</pwrite>, and this call always writes the full "
27238 "amount unless an error occurs."
27239 msgstr ""
27240
27241 #. type: textblock
27242 #: ../fish/guestfish-actions.pod:4693
27243 msgid "See also L</upload>, L</pwrite>."
27244 msgstr ""
27245
27246 #. type: =head2
27247 #: ../fish/guestfish-actions.pod:4697
27248 msgid "utimens"
27249 msgstr ""
27250
27251 #. type: verbatim
27252 #: ../fish/guestfish-actions.pod:4699
27253 #, no-wrap
27254 msgid ""
27255 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
27256 "\n"
27257 msgstr ""
27258
27259 #. type: =head2
27260 #: ../fish/guestfish-actions.pod:4718
27261 msgid "version"
27262 msgstr ""
27263
27264 #. type: verbatim
27265 #: ../fish/guestfish-actions.pod:4720
27266 #, no-wrap
27267 msgid ""
27268 " version\n"
27269 "\n"
27270 msgstr ""
27271
27272 #. type: textblock
27273 #: ../fish/guestfish-actions.pod:4747
27274 msgid ""
27275 "I<Note:> Don't use this call to test for availability of features.  In "
27276 "enterprise distributions we backport features from later versions into "
27277 "earlier versions, making this an unreliable way to test for features.  Use "
27278 "L</available> instead."
27279 msgstr ""
27280
27281 #. type: =head2
27282 #: ../fish/guestfish-actions.pod:4753
27283 msgid "vfs-label"
27284 msgstr ""
27285
27286 #. type: verbatim
27287 #: ../fish/guestfish-actions.pod:4755
27288 #, no-wrap
27289 msgid ""
27290 " vfs-label device\n"
27291 "\n"
27292 msgstr ""
27293
27294 #. type: textblock
27295 #: ../fish/guestfish-actions.pod:4762
27296 msgid "To find a filesystem from the label, use L</findfs-label>."
27297 msgstr ""
27298
27299 #. type: =head2
27300 #: ../fish/guestfish-actions.pod:4764
27301 msgid "vfs-type"
27302 msgstr ""
27303
27304 #. type: verbatim
27305 #: ../fish/guestfish-actions.pod:4766
27306 #, no-wrap
27307 msgid ""
27308 " vfs-type device\n"
27309 "\n"
27310 msgstr ""
27311
27312 #. type: =head2
27313 #: ../fish/guestfish-actions.pod:4776
27314 msgid "vfs-uuid"
27315 msgstr ""
27316
27317 #. type: verbatim
27318 #: ../fish/guestfish-actions.pod:4778
27319 #, no-wrap
27320 msgid ""
27321 " vfs-uuid device\n"
27322 "\n"
27323 msgstr ""
27324
27325 #. type: textblock
27326 #: ../fish/guestfish-actions.pod:4785
27327 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
27328 msgstr ""
27329
27330 #. type: =head2
27331 #: ../fish/guestfish-actions.pod:4787
27332 msgid "vg-activate"
27333 msgstr ""
27334
27335 #. type: verbatim
27336 #: ../fish/guestfish-actions.pod:4789
27337 #, no-wrap
27338 msgid ""
27339 " vg-activate true|false 'volgroups ...'\n"
27340 "\n"
27341 msgstr ""
27342
27343 #. type: =head2
27344 #: ../fish/guestfish-actions.pod:4802
27345 msgid "vg-activate-all"
27346 msgstr ""
27347
27348 #. type: verbatim
27349 #: ../fish/guestfish-actions.pod:4804
27350 #, no-wrap
27351 msgid ""
27352 " vg-activate-all true|false\n"
27353 "\n"
27354 msgstr ""
27355
27356 #. type: =head2
27357 #: ../fish/guestfish-actions.pod:4814
27358 msgid "vgcreate"
27359 msgstr ""
27360
27361 #. type: verbatim
27362 #: ../fish/guestfish-actions.pod:4816
27363 #, no-wrap
27364 msgid ""
27365 " vgcreate volgroup 'physvols ...'\n"
27366 "\n"
27367 msgstr ""
27368
27369 #. type: =head2
27370 #: ../fish/guestfish-actions.pod:4821
27371 msgid "vglvuuids"
27372 msgstr ""
27373
27374 #. type: verbatim
27375 #: ../fish/guestfish-actions.pod:4823
27376 #, no-wrap
27377 msgid ""
27378 " vglvuuids vgname\n"
27379 "\n"
27380 msgstr ""
27381
27382 #. type: textblock
27383 #: ../fish/guestfish-actions.pod:4828
27384 msgid ""
27385 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
27386 "logical volumes and volume groups."
27387 msgstr ""
27388
27389 #. type: textblock
27390 #: ../fish/guestfish-actions.pod:4831
27391 msgid "See also L</vgpvuuids>."
27392 msgstr ""
27393
27394 #. type: =head2
27395 #: ../fish/guestfish-actions.pod:4833
27396 msgid "vgpvuuids"
27397 msgstr ""
27398
27399 #. type: verbatim
27400 #: ../fish/guestfish-actions.pod:4835
27401 #, no-wrap
27402 msgid ""
27403 " vgpvuuids vgname\n"
27404 "\n"
27405 msgstr ""
27406
27407 #. type: textblock
27408 #: ../fish/guestfish-actions.pod:4840
27409 msgid ""
27410 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
27411 "physical volumes and volume groups."
27412 msgstr ""
27413
27414 #. type: textblock
27415 #: ../fish/guestfish-actions.pod:4843
27416 msgid "See also L</vglvuuids>."
27417 msgstr ""
27418
27419 #. type: =head2
27420 #: ../fish/guestfish-actions.pod:4845
27421 msgid "vgremove"
27422 msgstr ""
27423
27424 #. type: verbatim
27425 #: ../fish/guestfish-actions.pod:4847
27426 #, no-wrap
27427 msgid ""
27428 " vgremove vgname\n"
27429 "\n"
27430 msgstr ""
27431
27432 #. type: =head2
27433 #: ../fish/guestfish-actions.pod:4854
27434 msgid "vgrename"
27435 msgstr ""
27436
27437 #. type: verbatim
27438 #: ../fish/guestfish-actions.pod:4856
27439 #, no-wrap
27440 msgid ""
27441 " vgrename volgroup newvolgroup\n"
27442 "\n"
27443 msgstr ""
27444
27445 #. type: =head2
27446 #: ../fish/guestfish-actions.pod:4860
27447 msgid "vgs"
27448 msgstr ""
27449
27450 #. type: verbatim
27451 #: ../fish/guestfish-actions.pod:4862
27452 #, no-wrap
27453 msgid ""
27454 " vgs\n"
27455 "\n"
27456 msgstr ""
27457
27458 #. type: textblock
27459 #: ../fish/guestfish-actions.pod:4870
27460 msgid "See also L</vgs-full>."
27461 msgstr ""
27462
27463 #. type: =head2
27464 #: ../fish/guestfish-actions.pod:4872
27465 msgid "vgs-full"
27466 msgstr ""
27467
27468 #. type: verbatim
27469 #: ../fish/guestfish-actions.pod:4874
27470 #, no-wrap
27471 msgid ""
27472 " vgs-full\n"
27473 "\n"
27474 msgstr ""
27475
27476 #. type: =head2
27477 #: ../fish/guestfish-actions.pod:4879
27478 msgid "vgscan"
27479 msgstr ""
27480
27481 #. type: verbatim
27482 #: ../fish/guestfish-actions.pod:4881
27483 #, no-wrap
27484 msgid ""
27485 " vgscan\n"
27486 "\n"
27487 msgstr ""
27488
27489 #. type: =head2
27490 #: ../fish/guestfish-actions.pod:4886
27491 msgid "vguuid"
27492 msgstr ""
27493
27494 #. type: verbatim
27495 #: ../fish/guestfish-actions.pod:4888
27496 #, no-wrap
27497 msgid ""
27498 " vguuid vgname\n"
27499 "\n"
27500 msgstr ""
27501
27502 #. type: =head2
27503 #: ../fish/guestfish-actions.pod:4892
27504 msgid "wc-c"
27505 msgstr ""
27506
27507 #. type: verbatim
27508 #: ../fish/guestfish-actions.pod:4894
27509 #, no-wrap
27510 msgid ""
27511 " wc-c path\n"
27512 "\n"
27513 msgstr ""
27514
27515 #. type: =head2
27516 #: ../fish/guestfish-actions.pod:4899
27517 msgid "wc-l"
27518 msgstr ""
27519
27520 #. type: verbatim
27521 #: ../fish/guestfish-actions.pod:4901
27522 #, no-wrap
27523 msgid ""
27524 " wc-l path\n"
27525 "\n"
27526 msgstr ""
27527
27528 #. type: =head2
27529 #: ../fish/guestfish-actions.pod:4906
27530 msgid "wc-w"
27531 msgstr ""
27532
27533 #. type: verbatim
27534 #: ../fish/guestfish-actions.pod:4908
27535 #, no-wrap
27536 msgid ""
27537 " wc-w path\n"
27538 "\n"
27539 msgstr ""
27540
27541 #. type: =head2
27542 #: ../fish/guestfish-actions.pod:4913
27543 msgid "write"
27544 msgstr ""
27545
27546 #. type: verbatim
27547 #: ../fish/guestfish-actions.pod:4915
27548 #, no-wrap
27549 msgid ""
27550 " write path content\n"
27551 "\n"
27552 msgstr ""
27553
27554 #. type: =head2
27555 #: ../fish/guestfish-actions.pod:4923
27556 msgid "write-file"
27557 msgstr ""
27558
27559 #. type: verbatim
27560 #: ../fish/guestfish-actions.pod:4925
27561 #, no-wrap
27562 msgid ""
27563 " write-file path content size\n"
27564 "\n"
27565 msgstr ""
27566
27567 #. type: =head2
27568 #: ../fish/guestfish-actions.pod:4948
27569 msgid "zegrep"
27570 msgstr ""
27571
27572 #. type: verbatim
27573 #: ../fish/guestfish-actions.pod:4950
27574 #, no-wrap
27575 msgid ""
27576 " zegrep regex path\n"
27577 "\n"
27578 msgstr ""
27579
27580 #. type: =head2
27581 #: ../fish/guestfish-actions.pod:4958
27582 msgid "zegrepi"
27583 msgstr ""
27584
27585 #. type: verbatim
27586 #: ../fish/guestfish-actions.pod:4960
27587 #, no-wrap
27588 msgid ""
27589 " zegrepi regex path\n"
27590 "\n"
27591 msgstr ""
27592
27593 #. type: =head2
27594 #: ../fish/guestfish-actions.pod:4968
27595 msgid "zero"
27596 msgstr ""
27597
27598 #. type: verbatim
27599 #: ../fish/guestfish-actions.pod:4970
27600 #, no-wrap
27601 msgid ""
27602 " zero device\n"
27603 "\n"
27604 msgstr ""
27605
27606 #. type: textblock
27607 #: ../fish/guestfish-actions.pod:4978
27608 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
27609 msgstr ""
27610
27611 #. type: =head2
27612 #: ../fish/guestfish-actions.pod:4981
27613 msgid "zero-device"
27614 msgstr ""
27615
27616 #. type: verbatim
27617 #: ../fish/guestfish-actions.pod:4983
27618 #, no-wrap
27619 msgid ""
27620 " zero-device device\n"
27621 "\n"
27622 msgstr ""
27623
27624 #. type: textblock
27625 #: ../fish/guestfish-actions.pod:4985
27626 msgid ""
27627 "This command writes zeroes over the entire C<device>.  Compare with L</zero> "
27628 "which just zeroes the first few blocks of a device."
27629 msgstr ""
27630
27631 #. type: =head2
27632 #: ../fish/guestfish-actions.pod:4992
27633 msgid "zerofree"
27634 msgstr ""
27635
27636 #. type: verbatim
27637 #: ../fish/guestfish-actions.pod:4994
27638 #, no-wrap
27639 msgid ""
27640 " zerofree device\n"
27641 "\n"
27642 msgstr ""
27643
27644 #. type: =head2
27645 #: ../fish/guestfish-actions.pod:5007
27646 msgid "zfgrep"
27647 msgstr ""
27648
27649 #. type: verbatim
27650 #: ../fish/guestfish-actions.pod:5009
27651 #, no-wrap
27652 msgid ""
27653 " zfgrep pattern path\n"
27654 "\n"
27655 msgstr ""
27656
27657 #. type: =head2
27658 #: ../fish/guestfish-actions.pod:5017
27659 msgid "zfgrepi"
27660 msgstr ""
27661
27662 #. type: verbatim
27663 #: ../fish/guestfish-actions.pod:5019
27664 #, no-wrap
27665 msgid ""
27666 " zfgrepi pattern path\n"
27667 "\n"
27668 msgstr ""
27669
27670 #. type: =head2
27671 #: ../fish/guestfish-actions.pod:5027
27672 msgid "zfile"
27673 msgstr ""
27674
27675 #. type: verbatim
27676 #: ../fish/guestfish-actions.pod:5029
27677 #, no-wrap
27678 msgid ""
27679 " zfile meth path\n"
27680 "\n"
27681 msgstr ""
27682
27683 #. type: textblock
27684 #: ../fish/guestfish-actions.pod:5036
27685 msgid "Since 1.0.63, use L</file> instead which can now process compressed files."
27686 msgstr ""
27687
27688 #. type: =head2
27689 #: ../fish/guestfish-actions.pod:5046
27690 msgid "zgrep"
27691 msgstr ""
27692
27693 #. type: verbatim
27694 #: ../fish/guestfish-actions.pod:5048
27695 #, no-wrap
27696 msgid ""
27697 " zgrep regex path\n"
27698 "\n"
27699 msgstr ""
27700
27701 #. type: =head2
27702 #: ../fish/guestfish-actions.pod:5056
27703 msgid "zgrepi"
27704 msgstr ""
27705
27706 #. type: verbatim
27707 #: ../fish/guestfish-actions.pod:5058
27708 #, no-wrap
27709 msgid ""
27710 " zgrepi regex path\n"
27711 "\n"
27712 msgstr ""
27713
27714 #. type: =head2
27715 #: ../fish/guestfish-commands.pod:1
27716 msgid "alloc"
27717 msgstr ""
27718
27719 #. type: =head2
27720 #: ../fish/guestfish-commands.pod:3
27721 msgid "allocate"
27722 msgstr ""
27723
27724 #. type: verbatim
27725 #: ../fish/guestfish-commands.pod:5
27726 #, no-wrap
27727 msgid ""
27728 " alloc filename size\n"
27729 "\n"
27730 msgstr ""
27731
27732 #. type: textblock
27733 #: ../fish/guestfish-commands.pod:7
27734 msgid ""
27735 "This creates an empty (zeroed) file of the given size, and then adds so it "
27736 "can be further examined."
27737 msgstr ""
27738
27739 #. type: textblock
27740 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
27741 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
27742 msgstr ""
27743
27744 #. type: textblock
27745 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
27746 msgid "Size can be specified using standard suffixes, eg. C<1M>."
27747 msgstr ""
27748
27749 #. type: textblock
27750 #: ../fish/guestfish-commands.pod:14
27751 msgid ""
27752 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
27753 "image, see L</PREPARED DISK IMAGES>."
27754 msgstr ""
27755
27756 #. type: =head2
27757 #: ../fish/guestfish-commands.pod:17
27758 msgid "copy-in"
27759 msgstr ""
27760
27761 #. type: verbatim
27762 #: ../fish/guestfish-commands.pod:19
27763 #, no-wrap
27764 msgid ""
27765 " copy-in local [local ...] /remotedir\n"
27766 "\n"
27767 msgstr ""
27768
27769 #. type: textblock
27770 #: ../fish/guestfish-commands.pod:21
27771 msgid ""
27772 "C<copy-in> copies local files or directories recursively into the disk "
27773 "image, placing them in the directory called C</remotedir> (which must "
27774 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and "
27775 "other commands as necessary."
27776 msgstr ""
27777
27778 #. type: textblock
27779 #: ../fish/guestfish-commands.pod:26
27780 msgid ""
27781 "Multiple local files and directories can be specified, but the last "
27782 "parameter must always be a remote directory.  Wildcards cannot be used."
27783 msgstr ""
27784
27785 #. type: =head2
27786 #: ../fish/guestfish-commands.pod:30
27787 msgid "copy-out"
27788 msgstr ""
27789
27790 #. type: verbatim
27791 #: ../fish/guestfish-commands.pod:32
27792 #, no-wrap
27793 msgid ""
27794 " copy-out remote [remote ...] localdir\n"
27795 "\n"
27796 msgstr ""
27797
27798 #. type: textblock
27799 #: ../fish/guestfish-commands.pod:34
27800 msgid ""
27801 "C<copy-out> copies remote files or directories recursively out of the disk "
27802 "image, placing them on the host disk in a local directory called C<localdir> "
27803 "(which must exist).  This guestfish meta-command turns into a sequence of "
27804 "L</download>, L</tar-out> and other commands as necessary."
27805 msgstr ""
27806
27807 #. type: textblock
27808 #: ../fish/guestfish-commands.pod:40
27809 msgid ""
27810 "Multiple remote files and directories can be specified, but the last "
27811 "parameter must always be a local directory.  To download to the current "
27812 "directory, use C<.> as in:"
27813 msgstr ""
27814
27815 #. type: verbatim
27816 #: ../fish/guestfish-commands.pod:44
27817 #, no-wrap
27818 msgid ""
27819 " copy-out /home .\n"
27820 "\n"
27821 msgstr ""
27822
27823 #. type: textblock
27824 #: ../fish/guestfish-commands.pod:46
27825 msgid ""
27826 "Wildcards cannot be used in the ordinary command, but you can use them with "
27827 "the help of L</glob> like this:"
27828 msgstr ""
27829
27830 #. type: verbatim
27831 #: ../fish/guestfish-commands.pod:49
27832 #, no-wrap
27833 msgid ""
27834 " glob copy-out /home/* .\n"
27835 "\n"
27836 msgstr ""
27837
27838 #. type: =head2
27839 #: ../fish/guestfish-commands.pod:51
27840 msgid "display"
27841 msgstr ""
27842
27843 #. type: verbatim
27844 #: ../fish/guestfish-commands.pod:53
27845 #, no-wrap
27846 msgid ""
27847 " display filename\n"
27848 "\n"
27849 msgstr ""
27850
27851 #. type: textblock
27852 #: ../fish/guestfish-commands.pod:55
27853 msgid ""
27854 "Use C<display> (a graphical display program) to display an image file.  It "
27855 "downloads the file, and runs C<display> on it."
27856 msgstr ""
27857
27858 #. type: textblock
27859 #: ../fish/guestfish-commands.pod:58
27860 msgid ""
27861 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
27862 "environment variable.  For example to use the GNOME display program:"
27863 msgstr ""
27864
27865 #. type: verbatim
27866 #: ../fish/guestfish-commands.pod:61
27867 #, no-wrap
27868 msgid ""
27869 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
27870 "\n"
27871 msgstr ""
27872
27873 #. type: textblock
27874 #: ../fish/guestfish-commands.pod:63
27875 msgid "See also L<display(1)>."
27876 msgstr ""
27877
27878 #. type: =head2
27879 #: ../fish/guestfish-commands.pod:65
27880 msgid "echo"
27881 msgstr ""
27882
27883 #. type: verbatim
27884 #: ../fish/guestfish-commands.pod:67
27885 #, no-wrap
27886 msgid ""
27887 " echo [params ...]\n"
27888 "\n"
27889 msgstr ""
27890
27891 #. type: textblock
27892 #: ../fish/guestfish-commands.pod:69
27893 msgid "This echos the parameters to the terminal."
27894 msgstr ""
27895
27896 #. type: =head2
27897 #: ../fish/guestfish-commands.pod:71
27898 msgid "edit"
27899 msgstr ""
27900
27901 #. type: =head2
27902 #: ../fish/guestfish-commands.pod:73
27903 msgid "vi"
27904 msgstr ""
27905
27906 #. type: =head2
27907 #: ../fish/guestfish-commands.pod:75
27908 msgid "emacs"
27909 msgstr ""
27910
27911 #. type: verbatim
27912 #: ../fish/guestfish-commands.pod:77
27913 #, no-wrap
27914 msgid ""
27915 " edit filename\n"
27916 "\n"
27917 msgstr ""
27918
27919 #. type: textblock
27920 #: ../fish/guestfish-commands.pod:79
27921 msgid ""
27922 "This is used to edit a file.  It downloads the file, edits it locally using "
27923 "your editor, then uploads the result."
27924 msgstr ""
27925
27926 #. type: textblock
27927 #: ../fish/guestfish-commands.pod:82
27928 msgid ""
27929 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
27930 "or C<emacs> you will get those corresponding editors."
27931 msgstr ""
27932
27933 #. type: =head2
27934 #: ../fish/guestfish-commands.pod:86
27935 msgid "glob"
27936 msgstr ""
27937
27938 #. type: verbatim
27939 #: ../fish/guestfish-commands.pod:88
27940 #, no-wrap
27941 msgid ""
27942 " glob command args...\n"
27943 "\n"
27944 msgstr ""
27945
27946 #. type: textblock
27947 #: ../fish/guestfish-commands.pod:90
27948 msgid ""
27949 "Expand wildcards in any paths in the args list, and run C<command> "
27950 "repeatedly on each matching path."
27951 msgstr ""
27952
27953 #. type: textblock
27954 #: ../fish/guestfish-commands.pod:93
27955 msgid "See L</WILDCARDS AND GLOBBING>."
27956 msgstr ""
27957
27958 #. type: =head2
27959 #: ../fish/guestfish-commands.pod:95
27960 msgid "hexedit"
27961 msgstr ""
27962
27963 #. type: verbatim
27964 #: ../fish/guestfish-commands.pod:97
27965 #, no-wrap
27966 msgid ""
27967 " hexedit <filename|device>\n"
27968 " hexedit <filename|device> <max>\n"
27969 " hexedit <filename|device> <start> <max>\n"
27970 "\n"
27971 msgstr ""
27972
27973 #. type: textblock
27974 #: ../fish/guestfish-commands.pod:101
27975 msgid ""
27976 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
27977 "device."
27978 msgstr ""
27979
27980 #. type: textblock
27981 #: ../fish/guestfish-commands.pod:104
27982 msgid ""
27983 "This command works by downloading potentially the whole file or device, "
27984 "editing it locally, then uploading it.  If the file or device is large, you "
27985 "have to specify which part you wish to edit by using C<max> and/or C<start> "
27986 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
27987 "usual modifiers allowed such as C<1M> (1 megabyte)."
27988 msgstr ""
27989
27990 #. type: textblock
27991 #: ../fish/guestfish-commands.pod:111
27992 msgid "For example to edit the first few sectors of a disk you might do:"
27993 msgstr ""
27994
27995 #. type: verbatim
27996 #: ../fish/guestfish-commands.pod:114
27997 #, no-wrap
27998 msgid ""
27999 " hexedit /dev/sda 1M\n"
28000 "\n"
28001 msgstr ""
28002
28003 #. type: textblock
28004 #: ../fish/guestfish-commands.pod:116
28005 msgid ""
28006 "which would allow you to edit anywhere within the first megabyte of the "
28007 "disk."
28008 msgstr ""
28009
28010 #. type: textblock
28011 #: ../fish/guestfish-commands.pod:119
28012 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
28013 msgstr ""
28014
28015 #. type: verbatim
28016 #: ../fish/guestfish-commands.pod:121
28017 #, no-wrap
28018 msgid ""
28019 " hexedit /dev/sda1 0x400 0x400\n"
28020 "\n"
28021 msgstr ""
28022
28023 #. type: textblock
28024 #: ../fish/guestfish-commands.pod:123
28025 msgid "(assuming the superblock is in the standard location)."
28026 msgstr ""
28027
28028 #. type: textblock
28029 #: ../fish/guestfish-commands.pod:125
28030 msgid ""
28031 "This command requires the external L<hexedit(1)> program.  You can specify "
28032 "another program to use by setting the C<HEXEDITOR> environment variable."
28033 msgstr ""
28034
28035 #. type: textblock
28036 #: ../fish/guestfish-commands.pod:129
28037 msgid "See also L</hexdump>."
28038 msgstr ""
28039
28040 #. type: =head2
28041 #: ../fish/guestfish-commands.pod:131
28042 msgid "lcd"
28043 msgstr ""
28044
28045 #. type: verbatim
28046 #: ../fish/guestfish-commands.pod:133
28047 #, no-wrap
28048 msgid ""
28049 " lcd directory\n"
28050 "\n"
28051 msgstr ""
28052
28053 #. type: textblock
28054 #: ../fish/guestfish-commands.pod:135
28055 msgid "Change the local directory, ie. the current directory of guestfish itself."
28056 msgstr ""
28057
28058 #. type: textblock
28059 #: ../fish/guestfish-commands.pod:138
28060 msgid "Note that C<!cd> won't do what you might expect."
28061 msgstr ""
28062
28063 #. type: =head2
28064 #: ../fish/guestfish-commands.pod:140
28065 msgid "man"
28066 msgstr ""
28067
28068 #. type: =head2
28069 #: ../fish/guestfish-commands.pod:142
28070 msgid "manual"
28071 msgstr ""
28072
28073 #. type: verbatim
28074 #: ../fish/guestfish-commands.pod:144
28075 #, no-wrap
28076 msgid ""
28077 "  man\n"
28078 "\n"
28079 msgstr ""
28080
28081 #. type: textblock
28082 #: ../fish/guestfish-commands.pod:146
28083 msgid "Opens the manual page for guestfish."
28084 msgstr ""
28085
28086 #. type: =head2
28087 #: ../fish/guestfish-commands.pod:148
28088 msgid "more"
28089 msgstr ""
28090
28091 #. type: =head2
28092 #: ../fish/guestfish-commands.pod:150
28093 msgid "less"
28094 msgstr ""
28095
28096 #. type: verbatim
28097 #: ../fish/guestfish-commands.pod:152
28098 #, no-wrap
28099 msgid ""
28100 " more filename\n"
28101 "\n"
28102 msgstr ""
28103
28104 #. type: verbatim
28105 #: ../fish/guestfish-commands.pod:154
28106 #, no-wrap
28107 msgid ""
28108 " less filename\n"
28109 "\n"
28110 msgstr ""
28111
28112 #. type: textblock
28113 #: ../fish/guestfish-commands.pod:156
28114 msgid "This is used to view a file."
28115 msgstr ""
28116
28117 #. type: textblock
28118 #: ../fish/guestfish-commands.pod:158
28119 msgid ""
28120 "The default viewer is C<$PAGER>.  However if you use the alternate command "
28121 "C<less> you will get the C<less> command specifically."
28122 msgstr ""
28123
28124 #. type: =head2
28125 #: ../fish/guestfish-commands.pod:161
28126 msgid "reopen"
28127 msgstr ""
28128
28129 #. type: verbatim
28130 #: ../fish/guestfish-commands.pod:163
28131 #, no-wrap
28132 msgid ""
28133 "  reopen\n"
28134 "\n"
28135 msgstr ""
28136
28137 #. type: textblock
28138 #: ../fish/guestfish-commands.pod:165
28139 msgid ""
28140 "Close and reopen the libguestfs handle.  It is not necessary to use this "
28141 "normally, because the handle is closed properly when guestfish exits.  "
28142 "However this is occasionally useful for testing."
28143 msgstr ""
28144
28145 #. type: =head2
28146 #: ../fish/guestfish-commands.pod:169
28147 msgid "sparse"
28148 msgstr ""
28149
28150 #. type: verbatim
28151 #: ../fish/guestfish-commands.pod:171
28152 #, no-wrap
28153 msgid ""
28154 " sparse filename size\n"
28155 "\n"
28156 msgstr ""
28157
28158 #. type: textblock
28159 #: ../fish/guestfish-commands.pod:173
28160 msgid ""
28161 "This creates an empty sparse file of the given size, and then adds so it can "
28162 "be further examined."
28163 msgstr ""
28164
28165 #. type: textblock
28166 #: ../fish/guestfish-commands.pod:176
28167 msgid ""
28168 "In all respects it works the same as the L</alloc> command, except that the "
28169 "image file is allocated sparsely, which means that disk blocks are not "
28170 "assigned to the file until they are needed.  Sparse disk files only use "
28171 "space when written to, but they are slower and there is a danger you could "
28172 "run out of real disk space during a write operation."
28173 msgstr ""
28174
28175 #. type: =head2
28176 #: ../fish/guestfish-commands.pod:186
28177 msgid "supported"
28178 msgstr ""
28179
28180 #. type: verbatim
28181 #: ../fish/guestfish-commands.pod:188
28182 #, no-wrap
28183 msgid ""
28184 " supported\n"
28185 "\n"
28186 msgstr ""
28187
28188 #. type: textblock
28189 #: ../fish/guestfish-commands.pod:190
28190 msgid ""
28191 "This command returns a list of the optional groups known to the daemon, and "
28192 "indicates which ones are supported by this build of the libguestfs "
28193 "appliance."
28194 msgstr ""
28195
28196 #. type: textblock
28197 #: ../fish/guestfish-commands.pod:194
28198 msgid "See also L<guestfs(3)/AVAILABILITY>."
28199 msgstr ""
28200
28201 #. type: =head2
28202 #: ../fish/guestfish-commands.pod:196
28203 msgid "time"
28204 msgstr ""
28205
28206 #. type: verbatim
28207 #: ../fish/guestfish-commands.pod:198
28208 #, no-wrap
28209 msgid ""
28210 " time command args...\n"
28211 "\n"
28212 msgstr ""
28213
28214 #. type: textblock
28215 #: ../fish/guestfish-commands.pod:200
28216 msgid ""
28217 "Run the command as usual, but print the elapsed time afterwards.  This can "
28218 "be useful for benchmarking operations."
28219 msgstr ""
28220
28221 #. type: textblock
28222 #: ../test-tool/libguestfs-test-tool.pod:5
28223 msgid "libguestfs-test-tool - End user tests for libguestfs"
28224 msgstr ""
28225
28226 #. type: verbatim
28227 #: ../test-tool/libguestfs-test-tool.pod:9
28228 #, no-wrap
28229 msgid ""
28230 " libguestfs-test-tool [--options]\n"
28231 "\n"
28232 msgstr ""
28233
28234 #. type: textblock
28235 #: ../test-tool/libguestfs-test-tool.pod:13
28236 msgid ""
28237 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
28238 "and developers, to allow them to check basic libguestfs functionality is "
28239 "working.  This is needed because libguestfs occasionally breaks for reasons "
28240 "beyond our control: usually because of changes in the underlying qemu or "
28241 "kernel packages, or the host environment."
28242 msgstr ""
28243
28244 #. type: textblock
28245 #: ../test-tool/libguestfs-test-tool.pod:20
28246 msgid "If you suspect a problem in libguestfs, then just run:"
28247 msgstr ""
28248
28249 #. type: verbatim
28250 #: ../test-tool/libguestfs-test-tool.pod:22
28251 #, no-wrap
28252 msgid ""
28253 " libguestfs-test-tool\n"
28254 "\n"
28255 msgstr ""
28256
28257 #. type: textblock
28258 #: ../test-tool/libguestfs-test-tool.pod:24
28259 msgid "It will print lots of diagnostic messages."
28260 msgstr ""
28261
28262 #. type: textblock
28263 #: ../test-tool/libguestfs-test-tool.pod:26
28264 msgid "If it runs to completion successfully, you will see this near the end:"
28265 msgstr ""
28266
28267 #. type: verbatim
28268 #: ../test-tool/libguestfs-test-tool.pod:28
28269 #, no-wrap
28270 msgid ""
28271 " ===== TEST FINISHED OK =====\n"
28272 "\n"
28273 msgstr ""
28274
28275 #. type: textblock
28276 #: ../test-tool/libguestfs-test-tool.pod:30
28277 msgid "and the test tool will exit with code 0."
28278 msgstr ""
28279
28280 #. type: textblock
28281 #: ../test-tool/libguestfs-test-tool.pod:32
28282 msgid ""
28283 "If it fails (and/or exits with non-zero error code), please paste the "
28284 "B<complete, unedited> output of the test tool into a bug report.  More "
28285 "information about reporting bugs can be found on the "
28286 "L<http://libguestfs.org/> website."
28287 msgstr ""
28288
28289 #. type: =item
28290 #: ../test-tool/libguestfs-test-tool.pod:41
28291 msgid "I<--help>"
28292 msgstr ""
28293
28294 #. type: textblock
28295 #: ../test-tool/libguestfs-test-tool.pod:43
28296 msgid "Display short usage information and exit."
28297 msgstr ""
28298
28299 #. type: =item
28300 #: ../test-tool/libguestfs-test-tool.pod:45
28301 msgid "I<--qemu qemu_binary>"
28302 msgstr ""
28303
28304 #. type: textblock
28305 #: ../test-tool/libguestfs-test-tool.pod:47
28306 msgid ""
28307 "If you have downloaded another qemu binary, point this option at the full "
28308 "path of the binary to try it."
28309 msgstr ""
28310
28311 #. type: =item
28312 #: ../test-tool/libguestfs-test-tool.pod:50
28313 msgid "I<--qemudir qemu_source_dir>"
28314 msgstr ""
28315
28316 #. type: textblock
28317 #: ../test-tool/libguestfs-test-tool.pod:52
28318 msgid ""
28319 "If you have compiled qemu from source, point this option at the source "
28320 "directory to try it."
28321 msgstr ""
28322
28323 #. type: =item
28324 #: ../test-tool/libguestfs-test-tool.pod:55
28325 msgid "I<--timeout N>"
28326 msgstr ""
28327
28328 #. type: textblock
28329 #: ../test-tool/libguestfs-test-tool.pod:57
28330 msgid ""
28331 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
28332 "does not usually need to be adjusted unless your machine is very slow."
28333 msgstr ""
28334
28335 #. type: =head1
28336 #: ../test-tool/libguestfs-test-tool.pod:63
28337 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
28338 msgstr ""
28339
28340 #. type: textblock
28341 #: ../test-tool/libguestfs-test-tool.pod:65
28342 msgid ""
28343 "If you have compiled another version of qemu from source and would like to "
28344 "try that, then you can use the I<--qemudir> option to point to the qemu "
28345 "source directory."
28346 msgstr ""
28347
28348 #. type: textblock
28349 #: ../test-tool/libguestfs-test-tool.pod:69
28350 msgid ""
28351 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
28352 "option to point to the binary."
28353 msgstr ""
28354
28355 #. type: textblock
28356 #: ../test-tool/libguestfs-test-tool.pod:72
28357 msgid ""
28358 "When using an alternate qemu with libguestfs, usually you would need to "
28359 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in "
28360 "L<guestfs(3)>).  libguestfs-test-tool writes a temporary qemu wrapper script "
28361 "when you use either of the I<--qemudir> or I<--qemu> options."
28362 msgstr ""
28363
28364 #. type: textblock
28365 #: ../test-tool/libguestfs-test-tool.pod:79
28366 msgid ""
28367 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
28368 "I<1> if there was an error."
28369 msgstr ""
28370
28371 #. type: textblock
28372 #: ../test-tool/libguestfs-test-tool.pod:84
28373 msgid ""
28374 "For the full list of environment variables which may affect libguestfs, "
28375 "please see the L<guestfs(3)> manual page."
28376 msgstr ""
28377
28378 #. type: textblock
28379 #: ../test-tool/libguestfs-test-tool.pod:89
28380 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
28381 msgstr ""
28382
28383 #. type: textblock
28384 #: ../fuse/guestmount.pod:5
28385 msgid "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
28386 msgstr ""
28387
28388 #. type: verbatim
28389 #: ../fuse/guestmount.pod:9
28390 #, no-wrap
28391 msgid ""
28392 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
28393 "\n"
28394 msgstr ""
28395
28396 #. type: verbatim
28397 #: ../fuse/guestmount.pod:11
28398 #, no-wrap
28399 msgid ""
28400 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
28401 "\n"
28402 msgstr ""
28403
28404 #. type: verbatim
28405 #: ../fuse/guestmount.pod:13
28406 #, no-wrap
28407 msgid ""
28408 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
28409 "\n"
28410 msgstr ""
28411
28412 #. type: textblock
28413 #: ../fuse/guestmount.pod:17
28414 msgid ""
28415 "You must I<not> use C<guestmount> in read-write mode on live virtual "
28416 "machines.  If you do this, you risk disk corruption in the VM."
28417 msgstr ""
28418
28419 #. type: textblock
28420 #: ../fuse/guestmount.pod:22
28421 msgid ""
28422 "The guestmount program can be used to mount virtual machine filesystems and "
28423 "other disk images on the host.  It uses libguestfs for access to the guest "
28424 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
28425 "a mountable device."
28426 msgstr ""
28427
28428 #. type: textblock
28429 #: ../fuse/guestmount.pod:27
28430 msgid ""
28431 "Along with other options, you have to give at least one device (I<-a> "
28432 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m> "
28433 "option) or use the I<-i> inspection option.  How this works is better "
28434 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
28435 "below."
28436 msgstr ""
28437
28438 #. type: textblock
28439 #: ../fuse/guestmount.pod:33
28440 msgid ""
28441 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
28442 "by you, and the filesystem will not be visible to any other users unless you "
28443 "make certain global configuration changes to C</etc/fuse.conf>.  To unmount "
28444 "the filesystem, use the C<fusermount -u> command."
28445 msgstr ""
28446
28447 #. type: textblock
28448 #: ../fuse/guestmount.pod:41
28449 msgid ""
28450 "For a typical Windows guest which has its main filesystem on the first "
28451 "partition:"
28452 msgstr ""
28453
28454 #. type: verbatim
28455 #: ../fuse/guestmount.pod:44
28456 #, no-wrap
28457 msgid ""
28458 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
28459 "\n"
28460 msgstr ""
28461
28462 #. type: textblock
28463 #: ../fuse/guestmount.pod:46
28464 msgid ""
28465 "For a typical Linux guest which has a /boot filesystem on the first "
28466 "partition, and the root filesystem on a logical volume:"
28467 msgstr ""
28468
28469 #. type: verbatim
28470 #: ../fuse/guestmount.pod:49
28471 #, no-wrap
28472 msgid ""
28473 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
28474 "\n"
28475 msgstr ""
28476
28477 #. type: textblock
28478 #: ../fuse/guestmount.pod:51
28479 msgid "To get libguestfs to detect guest mountpoints for you:"
28480 msgstr ""
28481
28482 #. type: verbatim
28483 #: ../fuse/guestmount.pod:53
28484 #, no-wrap
28485 msgid ""
28486 " guestmount -a guest.img -i --ro /mnt\n"
28487 "\n"
28488 msgstr ""
28489
28490 #. type: textblock
28491 #: ../fuse/guestmount.pod:55
28492 msgid "For a libvirt guest called \"Guest\" you could do:"
28493 msgstr ""
28494
28495 #. type: verbatim
28496 #: ../fuse/guestmount.pod:57
28497 #, no-wrap
28498 msgid ""
28499 " guestmount -d Guest -i --ro /mnt\n"
28500 "\n"
28501 msgstr ""
28502
28503 #. type: textblock
28504 #: ../fuse/guestmount.pod:59
28505 msgid ""
28506 "If you don't know what filesystems are contained in a guest or disk image, "
28507 "use L<virt-filesystems(1)> first:"
28508 msgstr ""
28509
28510 #. type: verbatim
28511 #: ../fuse/guestmount.pod:62
28512 #, no-wrap
28513 msgid ""
28514 " virt-filesystems MyGuest\n"
28515 "\n"
28516 msgstr ""
28517
28518 #. type: textblock
28519 #: ../fuse/guestmount.pod:64
28520 msgid ""
28521 "If you want to trace the libguestfs calls but without excessive debugging "
28522 "information, we recommend:"
28523 msgstr ""
28524
28525 #. type: verbatim
28526 #: ../fuse/guestmount.pod:67
28527 #, no-wrap
28528 msgid ""
28529 " guestmount [...] --trace /mnt\n"
28530 "\n"
28531 msgstr ""
28532
28533 #. type: textblock
28534 #: ../fuse/guestmount.pod:69
28535 msgid "If you want to debug the program, we recommend:"
28536 msgstr ""
28537
28538 #. type: verbatim
28539 #: ../fuse/guestmount.pod:71
28540 #, no-wrap
28541 msgid ""
28542 " guestmount [...] --trace --verbose /mnt\n"
28543 "\n"
28544 msgstr ""
28545
28546 #. type: =head1
28547 #: ../fuse/guestmount.pod:73
28548 msgid "NOTES"
28549 msgstr ""
28550
28551 #. type: =head2
28552 #: ../fuse/guestmount.pod:75
28553 msgid "Other users cannot see the filesystem by default"
28554 msgstr ""
28555
28556 #. type: textblock
28557 #: ../fuse/guestmount.pod:77
28558 msgid ""
28559 "If you mount a filesystem as one user (eg. root), then other users will not "
28560 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
28561 "option when mounting:"
28562 msgstr ""
28563
28564 #. type: verbatim
28565 #: ../fuse/guestmount.pod:81
28566 #, no-wrap
28567 msgid ""
28568 " sudo guestmount [...] -o allow_other /mnt\n"
28569 "\n"
28570 msgstr ""
28571
28572 #. type: =item
28573 #: ../fuse/guestmount.pod:87
28574 msgid "B<-a image> | B<--add image>"
28575 msgstr ""
28576
28577 #. type: textblock
28578 #: ../fuse/guestmount.pod:89
28579 msgid "Add a block device or virtual machine image."
28580 msgstr ""
28581
28582 #. type: =item
28583 #: ../fuse/guestmount.pod:94
28584 msgid "B<-c URI> | B<--connect URI>"
28585 msgstr ""
28586
28587 #. type: =item
28588 #: ../fuse/guestmount.pod:100
28589 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
28590 msgstr ""
28591
28592 #. type: =item
28593 #: ../fuse/guestmount.pod:108
28594 msgid "B<--dir-cache-timeout N>"
28595 msgstr ""
28596
28597 #. type: textblock
28598 #: ../fuse/guestmount.pod:110
28599 msgid ""
28600 "Set the readdir cache timeout to I<N> seconds, the default being 60 "
28601 "seconds.  The readdir cache [actually, there are several semi-independent "
28602 "caches] is populated after a readdir(2) call with the stat and extended "
28603 "attributes of the files in the directory, in anticipation that they will be "
28604 "requested soon after."
28605 msgstr ""
28606
28607 #. type: textblock
28608 #: ../fuse/guestmount.pod:116
28609 msgid ""
28610 "There is also a different attribute cache implemented by FUSE (see the FUSE "
28611 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
28612 "requests, only cache existing ones."
28613 msgstr ""
28614
28615 #. type: =item
28616 #: ../fuse/guestmount.pod:127
28617 msgid "B<--format=raw|qcow2|..> | B<--format>"
28618 msgstr ""
28619
28620 #. type: textblock
28621 #: ../fuse/guestmount.pod:134
28622 msgid ""
28623 "If you have untrusted raw-format guest disk images, you should use this "
28624 "option to specify the disk format.  This avoids a possible security problem "
28625 "with malicious guests (CVE-2010-3851).  See also "
28626 "L<guestfs(3)/guestfs_add_drive_opts>."
28627 msgstr ""
28628
28629 #. type: =item
28630 #: ../fuse/guestmount.pod:139
28631 msgid "B<--fuse-help>"
28632 msgstr ""
28633
28634 #. type: textblock
28635 #: ../fuse/guestmount.pod:141
28636 msgid "Display help on special FUSE options (see I<-o> below)."
28637 msgstr ""
28638
28639 #. type: textblock
28640 #: ../fuse/guestmount.pod:145
28641 msgid "Display brief help and exit."
28642 msgstr ""
28643
28644 #. type: =item
28645 #: ../fuse/guestmount.pod:147
28646 msgid "B<-i> | B<--inspector>"
28647 msgstr ""
28648
28649 #. type: textblock
28650 #: ../fuse/guestmount.pod:167
28651 msgid ""
28652 "Mount the named partition or logical volume on the given mountpoint B<in the "
28653 "guest> (this has nothing to do with mountpoints in the host)."
28654 msgstr ""
28655
28656 #. type: textblock
28657 #: ../fuse/guestmount.pod:170
28658 msgid ""
28659 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
28660 "something on C</>."
28661 msgstr ""
28662
28663 #. type: =item
28664 #: ../fuse/guestmount.pod:183
28665 msgid "B<-n> | B<--no-sync>"
28666 msgstr ""
28667
28668 #. type: textblock
28669 #: ../fuse/guestmount.pod:185
28670 msgid ""
28671 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
28672 "unmounted.  If you specify this option, then we don't attempt to sync the "
28673 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
28674 msgstr ""
28675
28676 #. type: =item
28677 #: ../fuse/guestmount.pod:190
28678 msgid "B<-o option> | B<--option option>"
28679 msgstr ""
28680
28681 #. type: textblock
28682 #: ../fuse/guestmount.pod:192
28683 msgid "Pass extra options to FUSE."
28684 msgstr ""
28685
28686 #. type: textblock
28687 #: ../fuse/guestmount.pod:194
28688 msgid ""
28689 "To get a list of all the extra options supported by FUSE, use the command "
28690 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
28691 "of them are a good idea."
28692 msgstr ""
28693
28694 #. type: verbatim
28695 #: ../fuse/guestmount.pod:198
28696 #, no-wrap
28697 msgid ""
28698 " guestmount --fuse-help\n"
28699 "\n"
28700 msgstr ""
28701
28702 #. type: textblock
28703 #: ../fuse/guestmount.pod:200
28704 msgid "Some potentially useful FUSE options:"
28705 msgstr ""
28706
28707 #. type: =item
28708 #: ../fuse/guestmount.pod:204
28709 msgid "B<-o allow_other>"
28710 msgstr ""
28711
28712 #. type: textblock
28713 #: ../fuse/guestmount.pod:206
28714 msgid "Allow other users to see the filesystem."
28715 msgstr ""
28716
28717 #. type: =item
28718 #: ../fuse/guestmount.pod:208
28719 msgid "B<-o attr_timeout=N>"
28720 msgstr ""
28721
28722 #. type: textblock
28723 #: ../fuse/guestmount.pod:210
28724 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
28725 msgstr ""
28726
28727 #. type: =item
28728 #: ../fuse/guestmount.pod:212
28729 msgid "B<-o kernel_cache>"
28730 msgstr ""
28731
28732 #. type: textblock
28733 #: ../fuse/guestmount.pod:214
28734 msgid ""
28735 "Allow the kernel to cache files (reduces the number of reads that have to go "
28736 "through the L<guestfs(3)> API).  This is generally a good idea if you can "
28737 "afford the extra memory usage."
28738 msgstr ""
28739
28740 #. type: =item
28741 #: ../fuse/guestmount.pod:218
28742 msgid "B<-o uid=N> B<-o gid=N>"
28743 msgstr ""
28744
28745 #. type: textblock
28746 #: ../fuse/guestmount.pod:220
28747 msgid ""
28748 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
28749 "the chosen values."
28750 msgstr ""
28751
28752 #. type: =item
28753 #: ../fuse/guestmount.pod:225
28754 msgid "B<-r> | B<--ro>"
28755 msgstr ""
28756
28757 #. type: textblock
28758 #: ../fuse/guestmount.pod:227
28759 msgid ""
28760 "Add devices and mount everything read-only.  Also disallow writes and make "
28761 "the disk appear read-only to FUSE."
28762 msgstr ""
28763
28764 #. type: textblock
28765 #: ../fuse/guestmount.pod:230
28766 msgid ""
28767 "This is highly recommended if you are not going to edit the guest disk.  If "
28768 "the guest is running and this option is I<not> supplied, then there is a "
28769 "strong risk of disk corruption in the guest.  We try to prevent this from "
28770 "happening, but it is not always possible."
28771 msgstr ""
28772
28773 #. type: textblock
28774 #: ../fuse/guestmount.pod:235
28775 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28776 msgstr ""
28777
28778 #. type: textblock
28779 #: ../fuse/guestmount.pod:239
28780 msgid "Enable SELinux support for the guest."
28781 msgstr ""
28782
28783 #. type: =item
28784 #: ../fuse/guestmount.pod:241
28785 msgid "B<-v> | B<--verbose>"
28786 msgstr ""
28787
28788 #. type: textblock
28789 #: ../fuse/guestmount.pod:243
28790 msgid "Enable verbose messages from underlying libguestfs."
28791 msgstr ""
28792
28793 #. type: =item
28794 #: ../fuse/guestmount.pod:245
28795 msgid "B<-V> | B<--version>"
28796 msgstr ""
28797
28798 #. type: textblock
28799 #: ../fuse/guestmount.pod:247
28800 msgid "Display the program version and exit."
28801 msgstr ""
28802
28803 #. type: =item
28804 #: ../fuse/guestmount.pod:249
28805 msgid "B<-w> | B<--rw>"
28806 msgstr ""
28807
28808 #. type: textblock
28809 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
28810 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
28811 msgstr ""
28812
28813 #. type: =item
28814 #: ../fuse/guestmount.pod:256
28815 msgid "B<-x> | B<--trace>"
28816 msgstr ""
28817
28818 #. type: textblock
28819 #: ../fuse/guestmount.pod:258
28820 msgid "Trace libguestfs calls and entry into each FUSE function."
28821 msgstr ""
28822
28823 #. type: textblock
28824 #: ../fuse/guestmount.pod:260
28825 msgid "This also stops the daemon from forking into the background."
28826 msgstr ""
28827
28828 #. type: textblock
28829 #: ../fuse/guestmount.pod:281
28830 msgid ""
28831 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
28832 "L<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
28833 "L<http://fuse.sf.net/>."
28834 msgstr ""
28835
28836 #. type: textblock
28837 #: ../fuse/guestmount.pod:296
28838 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
28839 msgstr ""
28840
28841 #. type: textblock
28842 #: ../tools/virt-win-reg.pl:37
28843 msgid ""
28844 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
28845 "guest"
28846 msgstr ""
28847
28848 #. type: verbatim
28849 #: ../tools/virt-win-reg.pl:41
28850 #, no-wrap
28851 msgid ""
28852 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
28853 "\n"
28854 msgstr ""
28855
28856 #. type: verbatim
28857 #: ../tools/virt-win-reg.pl:43
28858 #, no-wrap
28859 msgid ""
28860 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
28861 "\n"
28862 msgstr ""
28863
28864 #. type: verbatim
28865 #: ../tools/virt-win-reg.pl:45
28866 #, no-wrap
28867 msgid ""
28868 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
28869 "\n"
28870 msgstr ""
28871
28872 #. type: verbatim
28873 #: ../tools/virt-win-reg.pl:47
28874 #, no-wrap
28875 msgid ""
28876 " virt-win-reg --merge domname [input.reg ...]\n"
28877 "\n"
28878 msgstr ""
28879
28880 #. type: verbatim
28881 #: ../tools/virt-win-reg.pl:49
28882 #, no-wrap
28883 msgid ""
28884 " virt-win-reg [--options] disk.img ... # instead of domname\n"
28885 "\n"
28886 msgstr ""
28887
28888 #. type: textblock
28889 #: ../tools/virt-win-reg.pl:53
28890 msgid ""
28891 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
28892 "virtual machines.  If you do this, you I<will> get irreversible disk "
28893 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
28894 "but doesn't catch all cases."
28895 msgstr ""
28896
28897 #. type: textblock
28898 #: ../tools/virt-win-reg.pl:58
28899 msgid ""
28900 "Modifying the Windows Registry is an inherently risky operation.  The format "
28901 "is deliberately obscure and undocumented, and Registry changes can leave the "
28902 "system unbootable.  Therefore when using the I<--merge> option, make sure "
28903 "you have a reliable backup first."
28904 msgstr ""
28905
28906 #. type: textblock
28907 #: ../tools/virt-win-reg.pl:65
28908 msgid ""
28909 "This program can export and merge Windows Registry entries from a Windows "
28910 "guest."
28911 msgstr ""
28912
28913 #. type: textblock
28914 #: ../tools/virt-win-reg.pl:68
28915 msgid ""
28916 "The first parameter is the libvirt guest name or the raw disk image of a "
28917 "Windows guest."
28918 msgstr ""
28919
28920 #. type: textblock
28921 #: ../tools/virt-win-reg.pl:71
28922 msgid ""
28923 "If I<--merge> is I<not> specified, then the chosen registry key is "
28924 "displayed/exported (recursively).  For example:"
28925 msgstr ""
28926
28927 #. type: verbatim
28928 #: ../tools/virt-win-reg.pl:74
28929 #, no-wrap
28930 msgid ""
28931 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
28932 "\n"
28933 msgstr ""
28934
28935 #. type: textblock
28936 #: ../tools/virt-win-reg.pl:76
28937 msgid "You can also display single values from within registry keys, for example:"
28938 msgstr ""
28939
28940 #. type: verbatim
28941 #: ../tools/virt-win-reg.pl:79
28942 #, no-wrap
28943 msgid ""
28944 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
28945 " $ virt-win-reg Windows7 $cvkey ProductName\n"
28946 " Windows 7 Enterprise\n"
28947 "\n"
28948 msgstr ""
28949
28950 #. type: textblock
28951 #: ../tools/virt-win-reg.pl:83
28952 msgid ""
28953 "With I<--merge>, you can merge a textual regedit file into the Windows "
28954 "Registry:"
28955 msgstr ""
28956
28957 #. type: verbatim
28958 #: ../tools/virt-win-reg.pl:86
28959 #, no-wrap
28960 msgid ""
28961 " $ virt-win-reg --merge Windows7 changes.reg\n"
28962 "\n"
28963 msgstr ""
28964
28965 #. type: =head1
28966 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
28967 msgid "NOTE"
28968 msgstr ""
28969
28970 #. type: textblock
28971 #: ../tools/virt-win-reg.pl:90
28972 msgid ""
28973 "This program is only meant for simple access to the registry.  If you want "
28974 "to do complicated things with the registry, we suggest you download the "
28975 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)> "
28976 "and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
28977 "L<hivexregedit(1)>."
28978 msgstr ""
28979
28980 #. type: textblock
28981 #: ../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
28982 msgid "Display brief help."
28983 msgstr ""
28984
28985 #. type: textblock
28986 #: ../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
28987 msgid "Display version number and exit."
28988 msgstr ""
28989
28990 #. type: =item
28991 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
28992 msgid "B<--debug>"
28993 msgstr ""
28994
28995 #. type: textblock
28996 #: ../tools/virt-win-reg.pl:122
28997 msgid "Enable debugging messages."
28998 msgstr ""
28999
29000 #. type: =item
29001 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77 ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
29002 msgid "B<--connect URI> | B<-c URI>"
29003 msgstr ""
29004
29005 #. type: textblock
29006 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79 ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
29007 msgid ""
29008 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
29009 "to the default libvirt hypervisor."
29010 msgstr ""
29011
29012 #. type: textblock
29013 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82 ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
29014 msgid ""
29015 "If you specify guest block devices directly, then libvirt is not used at "
29016 "all."
29017 msgstr ""
29018
29019 #. type: =item
29020 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89 ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
29021 msgid "B<--format> raw"
29022 msgstr ""
29023
29024 #. type: textblock
29025 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91 ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
29026 msgid ""
29027 "Specify the format of disk images given on the command line.  If this is "
29028 "omitted then the format is autodetected from the content of the disk image."
29029 msgstr ""
29030
29031 #. type: textblock
29032 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95 ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
29033 msgid ""
29034 "If disk images are requested from libvirt, then this program asks libvirt "
29035 "for this information.  In this case, the value of the format parameter is "
29036 "ignored."
29037 msgstr ""
29038
29039 #. type: textblock
29040 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99 ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
29041 msgid ""
29042 "If working with untrusted raw-format guest disk images, you should ensure "
29043 "the format is always specified."
29044 msgstr ""
29045
29046 #. type: =item
29047 #: ../tools/virt-win-reg.pl:157
29048 msgid "B<--merge>"
29049 msgstr ""
29050
29051 #. type: textblock
29052 #: ../tools/virt-win-reg.pl:159
29053 msgid ""
29054 "In merge mode, this merges a textual regedit file into the Windows Registry "
29055 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
29056 "displays or exports Registry entries instead."
29057 msgstr ""
29058
29059 #. type: textblock
29060 #: ../tools/virt-win-reg.pl:163
29061 msgid ""
29062 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
29063 "result in disk corruption.  However exporting (without this flag)  is always "
29064 "safe."
29065 msgstr ""
29066
29067 #. type: =item
29068 #: ../tools/virt-win-reg.pl:171
29069 msgid "B<--encoding> UTF-16LE|ASCII"
29070 msgstr ""
29071
29072 #. type: textblock
29073 #: ../tools/virt-win-reg.pl:173
29074 msgid ""
29075 "When merging (only), you may need to specify the encoding for strings to be "
29076 "used in the hive file.  This is explained in detail in "
29077 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
29078 msgstr ""
29079
29080 #. type: textblock
29081 #: ../tools/virt-win-reg.pl:177
29082 msgid ""
29083 "The default is to use UTF-16LE, which should work with recent versions of "
29084 "Windows."
29085 msgstr ""
29086
29087 #. type: =item
29088 #: ../tools/virt-win-reg.pl:184
29089 msgid "B<--unsafe-printable-strings>"
29090 msgstr ""
29091
29092 #. type: textblock
29093 #: ../tools/virt-win-reg.pl:186
29094 msgid ""
29095 "When exporting (only), assume strings are UTF-16LE and print them as strings "
29096 "instead of hex sequences.  Remove the final zero codepoint from strings if "
29097 "present."
29098 msgstr ""
29099
29100 #. type: textblock
29101 #: ../tools/virt-win-reg.pl:190
29102 msgid ""
29103 "This is unsafe and does not preserve the fidelity of strings in the original "
29104 "Registry for various reasons:"
29105 msgstr ""
29106
29107 #. type: textblock
29108 #: ../tools/virt-win-reg.pl:197
29109 msgid ""
29110 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
29111 "other encodings will be corrupted by this transformation."
29112 msgstr ""
29113
29114 #. type: textblock
29115 #: ../tools/virt-win-reg.pl:202
29116 msgid ""
29117 "Assumes that everything which has type 1 or 2 is really a string and that "
29118 "everything else is not a string, but the type field in real Registries is "
29119 "not reliable."
29120 msgstr ""
29121
29122 #. type: textblock
29123 #: ../tools/virt-win-reg.pl:208
29124 msgid ""
29125 "Loses information about whether a zero codepoint followed the string in the "
29126 "Registry or not."
29127 msgstr ""
29128
29129 #. type: textblock
29130 #: ../tools/virt-win-reg.pl:213
29131 msgid ""
29132 "This all happens because the Registry itself contains no information about "
29133 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
29134 msgstr ""
29135
29136 #. type: textblock
29137 #: ../tools/virt-win-reg.pl:217
29138 msgid ""
29139 "You should only use this option for quick hacking and debugging of the "
29140 "Registry contents, and I<never> use it if the output is going to be passed "
29141 "into another program or stored in another Registry."
29142 msgstr ""
29143
29144 #. type: =head1
29145 #: ../tools/virt-win-reg.pl:554
29146 msgid "SUPPORTED SYSTEMS"
29147 msgstr ""
29148
29149 #. type: textblock
29150 #: ../tools/virt-win-reg.pl:556
29151 msgid ""
29152 "The program currently supports Windows NT-derived guests starting with "
29153 "Windows XP through to at least Windows 7."
29154 msgstr ""
29155
29156 #. type: textblock
29157 #: ../tools/virt-win-reg.pl:559
29158 msgid "The following Registry keys are supported:"
29159 msgstr ""
29160
29161 #. type: =item
29162 #: ../tools/virt-win-reg.pl:563
29163 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
29164 msgstr ""
29165
29166 #. type: =item
29167 #: ../tools/virt-win-reg.pl:565
29168 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
29169 msgstr ""
29170
29171 #. type: =item
29172 #: ../tools/virt-win-reg.pl:567
29173 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
29174 msgstr ""
29175
29176 #. type: =item
29177 #: ../tools/virt-win-reg.pl:569
29178 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
29179 msgstr ""
29180
29181 #. type: =item
29182 #: ../tools/virt-win-reg.pl:571
29183 msgid "C<HKEY_USERS\\.DEFAULT>"
29184 msgstr ""
29185
29186 #. type: =item
29187 #: ../tools/virt-win-reg.pl:573
29188 msgid "C<HKEY_USERS\\I<SID>>"
29189 msgstr ""
29190
29191 #. type: textblock
29192 #: ../tools/virt-win-reg.pl:575
29193 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
29194 msgstr ""
29195
29196 #. type: =item
29197 #: ../tools/virt-win-reg.pl:577
29198 msgid "C<HKEY_USERS\\I<username>>"
29199 msgstr ""
29200
29201 #. type: textblock
29202 #: ../tools/virt-win-reg.pl:579
29203 msgid "where I<username> is a local user name (this is a libguestfs extension)."
29204 msgstr ""
29205
29206 #. type: textblock
29207 #: ../tools/virt-win-reg.pl:583
29208 msgid ""
29209 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for "
29210 "C<HKEY_USERS>."
29211 msgstr ""
29212
29213 #. type: textblock
29214 #: ../tools/virt-win-reg.pl:586
29215 msgid ""
29216 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
29217 "supported (there is no \"current user\")."
29218 msgstr ""
29219
29220 #. type: =head1
29221 #: ../tools/virt-win-reg.pl:589
29222 msgid "ENCODING"
29223 msgstr ""
29224
29225 #. type: textblock
29226 #: ../tools/virt-win-reg.pl:591
29227 msgid ""
29228 "C<virt-win-reg> expects that regedit files have already been reencoded in "
29229 "the local encoding.  Usually on Linux hosts, this means UTF-8 with "
29230 "Unix-style line endings.  Since Windows regedit files are often in UTF-16LE "
29231 "with Windows-style line endings, you may need to reencode the whole file "
29232 "before or after processing."
29233 msgstr ""
29234
29235 #. type: textblock
29236 #: ../tools/virt-win-reg.pl:597
29237 msgid ""
29238 "To reencode a file from Windows format to Linux (before processing it with "
29239 "the I<--merge> option), you would do something like this:"
29240 msgstr ""
29241
29242 #. type: verbatim
29243 #: ../tools/virt-win-reg.pl:600
29244 #, no-wrap
29245 msgid ""
29246 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
29247 "\n"
29248 msgstr ""
29249
29250 #. type: textblock
29251 #: ../tools/virt-win-reg.pl:602
29252 msgid ""
29253 "To go in the opposite direction, after exporting and before sending the file "
29254 "to a Windows user, do something like this:"
29255 msgstr ""
29256
29257 #. type: verbatim
29258 #: ../tools/virt-win-reg.pl:605
29259 #, no-wrap
29260 msgid ""
29261 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
29262 "\n"
29263 msgstr ""
29264
29265 #. type: textblock
29266 #: ../tools/virt-win-reg.pl:607
29267 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
29268 msgstr ""
29269
29270 #. type: textblock
29271 #: ../tools/virt-win-reg.pl:609
29272 msgid ""
29273 "If you are unsure about the current encoding, use the L<file(1)> command.  "
29274 "Recent versions of Windows regedit.exe produce a UTF-16LE file with "
29275 "Windows-style (CRLF) line endings, like this:"
29276 msgstr ""
29277
29278 #. type: verbatim
29279 #: ../tools/virt-win-reg.pl:613
29280 #, no-wrap
29281 msgid ""
29282 " $ file software.reg\n"
29283 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
29284 " with CRLF line terminators\n"
29285 "\n"
29286 msgstr ""
29287
29288 #. type: textblock
29289 #: ../tools/virt-win-reg.pl:617
29290 msgid "This file would need conversion before you could I<--merge> it."
29291 msgstr ""
29292
29293 #. type: =head1
29294 #: ../tools/virt-win-reg.pl:619
29295 msgid "CurrentControlSet etc."
29296 msgstr ""
29297
29298 #. type: textblock
29299 #: ../tools/virt-win-reg.pl:621
29300 msgid ""
29301 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
29302 "Registry at the level of the hive file, and therefore you cannot modify "
29303 "these."
29304 msgstr ""
29305
29306 #. type: textblock
29307 #: ../tools/virt-win-reg.pl:625
29308 msgid ""
29309 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
29310 "circumstances it might refer to another control set.  The way to find out is "
29311 "to look at the C<HKLM\\SYSTEM\\Select> key:"
29312 msgstr ""
29313
29314 #. type: verbatim
29315 #: ../tools/virt-win-reg.pl:629
29316 #, no-wrap
29317 msgid ""
29318 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
29319 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
29320 " \"Current\"=dword:00000001\n"
29321 " \"Default\"=dword:00000001\n"
29322 " \"Failed\"=dword:00000000\n"
29323 " \"LastKnownGood\"=dword:00000002\n"
29324 "\n"
29325 msgstr ""
29326
29327 #. type: textblock
29328 #: ../tools/virt-win-reg.pl:636
29329 msgid "\"Current\" is the one which Windows will choose when it boots."
29330 msgstr ""
29331
29332 #. type: textblock
29333 #: ../tools/virt-win-reg.pl:638
29334 msgid "Similarly, other C<Current...> keys in the path may need to be replaced."
29335 msgstr ""
29336
29337 #. type: =head1
29338 #: ../tools/virt-win-reg.pl:641
29339 msgid "WINDOWS TIPS"
29340 msgstr ""
29341
29342 #. type: textblock
29343 #: ../tools/virt-win-reg.pl:643
29344 msgid ""
29345 "Note that some of these tips modify the guest disk image.  The guest I<must> "
29346 "be shut off, else you will get disk corruption."
29347 msgstr ""
29348
29349 #. type: =head2
29350 #: ../tools/virt-win-reg.pl:646
29351 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
29352 msgstr ""
29353
29354 #. type: textblock
29355 #: ../tools/virt-win-reg.pl:648
29356 msgid ""
29357 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
29358 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
29359 "is uploaded into C<C:\\>:"
29360 msgstr ""
29361
29362 #. type: verbatim
29363 #: ../tools/virt-win-reg.pl:652
29364 #, no-wrap
29365 msgid ""
29366 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
29367 "\n"
29368 msgstr ""
29369
29370 #. type: textblock
29371 #: ../tools/virt-win-reg.pl:654
29372 msgid "Prepare a regedit file containing the registry change:"
29373 msgstr ""
29374
29375 #. type: verbatim
29376 #: ../tools/virt-win-reg.pl:656
29377 #, no-wrap
29378 msgid ""
29379 " cat > test.reg <<'EOF'\n"
29380 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
29381 " \"Test\"=\"c:\\\\test.bat\"\n"
29382 " EOF\n"
29383 "\n"
29384 msgstr ""
29385
29386 #. type: textblock
29387 #: ../tools/virt-win-reg.pl:661
29388 msgid ""
29389 "In this example we use the key C<RunOnce> which means that the script will "
29390 "run precisely once when the first user logs in.  If you want it to run every "
29391 "time a user logs in, replace C<RunOnce> with C<Run>."
29392 msgstr ""
29393
29394 #. type: textblock
29395 #: ../tools/virt-win-reg.pl:665
29396 msgid "Now update the registry:"
29397 msgstr ""
29398
29399 #. type: verbatim
29400 #: ../tools/virt-win-reg.pl:667
29401 #, no-wrap
29402 msgid ""
29403 " virt-win-reg --merge WindowsGuest test.reg\n"
29404 "\n"
29405 msgstr ""
29406
29407 #. type: =head2
29408 #: ../tools/virt-win-reg.pl:669
29409 msgid "INSTALLING A SERVICE"
29410 msgstr ""
29411
29412 #. type: textblock
29413 #: ../tools/virt-win-reg.pl:671
29414 msgid ""
29415 "This section assumes you are familiar with Windows services, and you either "
29416 "have a program which handles the Windows Service Control Protocol directly "
29417 "or you want to run any program using a service wrapper like SrvAny or the "
29418 "free RHSrvAny."
29419 msgstr ""
29420
29421 #. type: textblock
29422 #: ../tools/virt-win-reg.pl:676
29423 msgid ""
29424 "First upload the program and optionally the service wrapper.  In this case "
29425 "the test program is called C<test.exe> and we are using the RHSrvAny "
29426 "wrapper:"
29427 msgstr ""
29428
29429 #. type: verbatim
29430 #: ../tools/virt-win-reg.pl:680
29431 #, no-wrap
29432 msgid ""
29433 " guestfish -i -d WindowsGuest <<EOF\n"
29434 "   upload rhsrvany.exe /rhsrvany.exe\n"
29435 "   upload test.exe /test.exe\n"
29436 " EOF\n"
29437 "\n"
29438 msgstr ""
29439
29440 #. type: textblock
29441 #: ../tools/virt-win-reg.pl:685
29442 msgid ""
29443 "Prepare a regedit file containing the registry changes.  In this example, "
29444 "the first registry change is needed for the service itself or the service "
29445 "wrapper (if used).  The second registry change is only needed because I am "
29446 "using the RHSrvAny service wrapper."
29447 msgstr ""
29448
29449 #. type: verbatim
29450 #: ../tools/virt-win-reg.pl:690
29451 #, no-wrap
29452 msgid ""
29453 " cat > service.reg <<'EOF'\n"
29454 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
29455 " \"Type\"=dword:00000010\n"
29456 " \"Start\"=dword:00000002\n"
29457 " \"ErrorControl\"=dword:00000001\n"
29458 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
29459 " \"DisplayName\"=\"RHSrvAny\"\n"
29460 " \"ObjectName\"=\"NetworkService\"\n"
29461 " \n"
29462 msgstr ""
29463
29464 #. type: verbatim
29465 #: ../tools/virt-win-reg.pl:699
29466 #, no-wrap
29467 msgid ""
29468 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
29469 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
29470 " \"PWD\"=\"c:\\\\Temp\"\n"
29471 " EOF\n"
29472 "\n"
29473 msgstr ""
29474
29475 #. type: textblock
29476 #: ../tools/virt-win-reg.pl:710
29477 msgid ""
29478 "For use of C<ControlSet001> see the section above in this manual page.  You "
29479 "may need to adjust this according to the control set that is in use by the "
29480 "guest."
29481 msgstr ""
29482
29483 #. type: textblock
29484 #: ../tools/virt-win-reg.pl:716
29485 msgid ""
29486 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
29487 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
29488 "privileged account."
29489 msgstr ""
29490
29491 #. type: textblock
29492 #: ../tools/virt-win-reg.pl:722
29493 msgid ""
29494 "For the meaning of the magic numbers, see this Microsoft KB article: "
29495 "L<http://support.microsoft.com/kb/103000>."
29496 msgstr ""
29497
29498 #. type: textblock
29499 #: ../tools/virt-win-reg.pl:727
29500 msgid "Update the registry:"
29501 msgstr ""
29502
29503 #. type: verbatim
29504 #: ../tools/virt-win-reg.pl:729
29505 #, no-wrap
29506 msgid ""
29507 " virt-win-reg --merge WindowsGuest service.reg\n"
29508 "\n"
29509 msgstr ""
29510
29511 #. type: =head1
29512 #: ../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
29513 msgid "SHELL QUOTING"
29514 msgstr ""
29515
29516 #. type: textblock
29517 #: ../tools/virt-win-reg.pl:733
29518 msgid ""
29519 "Be careful when passing parameters containing C<\\> (backslash) in the "
29520 "shell.  Usually you will have to use 'single quotes' or double backslashes "
29521 "(but not both) to protect them from the shell."
29522 msgstr ""
29523
29524 #. type: textblock
29525 #: ../tools/virt-win-reg.pl:737
29526 msgid "Paths and value names are case-insensitive."
29527 msgstr ""
29528
29529 #. type: textblock
29530 #: ../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
29531 msgid ""
29532 "Libvirt guest names can contain arbitrary characters, some of which have "
29533 "meaning to the shell such as C<#> and space.  You may need to quote or "
29534 "escape these characters on the command line.  See the shell manual page "
29535 "L<sh(1)> for details."
29536 msgstr ""
29537
29538 #. type: textblock
29539 #: ../tools/virt-win-reg.pl:746
29540 msgid ""
29541 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
29542 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
29543 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
29544 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29545 msgstr ""
29546
29547 #. type: textblock
29548 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
29549 msgid ""
29550 "When reporting bugs, please enable debugging and capture the I<complete> "
29551 "output:"
29552 msgstr ""
29553
29554 #. type: verbatim
29555 #: ../tools/virt-win-reg.pl:764
29556 #, no-wrap
29557 msgid ""
29558 " export LIBGUESTFS_DEBUG=1\n"
29559 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
29560 "\n"
29561 msgstr ""
29562
29563 #. type: textblock
29564 #: ../tools/virt-win-reg.pl:767
29565 msgid ""
29566 "Attach /tmp/virt-win-reg.log to a new bug report at "
29567 "L<https://bugzilla.redhat.com/>"
29568 msgstr ""
29569
29570 #. type: =head1
29571 #: ../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
29572 msgid "AUTHOR"
29573 msgstr ""
29574
29575 #. type: textblock
29576 #: ../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
29577 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
29578 msgstr ""
29579
29580 #. type: textblock
29581 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
29582 msgid "Copyright (C) 2010 Red Hat Inc."
29583 msgstr ""
29584
29585 #. type: textblock
29586 #: ../tools/virt-list-filesystems.pl:32
29587 msgid "virt-list-filesystems - List filesystems in a virtual machine or disk image"
29588 msgstr ""
29589
29590 #. type: verbatim
29591 #: ../tools/virt-list-filesystems.pl:36
29592 #, no-wrap
29593 msgid ""
29594 " virt-list-filesystems [--options] domname\n"
29595 "\n"
29596 msgstr ""
29597
29598 #. type: verbatim
29599 #: ../tools/virt-list-filesystems.pl:38
29600 #, no-wrap
29601 msgid ""
29602 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
29603 "\n"
29604 msgstr ""
29605
29606 #. type: textblock
29607 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
29608 msgid ""
29609 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
29610 "replacement."
29611 msgstr ""
29612
29613 #. type: textblock
29614 #: ../tools/virt-list-filesystems.pl:45
29615 msgid ""
29616 "C<virt-list-filesystems> is a command line tool to list the filesystems that "
29617 "are contained in a virtual machine or disk image."
29618 msgstr ""
29619
29620 #. type: textblock
29621 #: ../tools/virt-list-filesystems.pl:49
29622 msgid ""
29623 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
29624 "functionality.  For more complex cases you should look at the "
29625 "L<guestfish(1)> tool."
29626 msgstr ""
29627
29628 #. type: =item
29629 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
29630 msgid "B<-l> | B<--long>"
29631 msgstr ""
29632
29633 #. type: textblock
29634 #: ../tools/virt-list-filesystems.pl:108
29635 msgid ""
29636 "With this option, C<virt-list-filesystems> displays the type of each "
29637 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
29638 msgstr ""
29639
29640 #. type: =item
29641 #: ../tools/virt-list-filesystems.pl:115
29642 msgid "B<-a> | B<--all>"
29643 msgstr ""
29644
29645 #. type: textblock
29646 #: ../tools/virt-list-filesystems.pl:117
29647 msgid ""
29648 "Normally we only show mountable filesystems.  If this option is given then "
29649 "swap devices are shown too."
29650 msgstr ""
29651
29652 #. type: textblock
29653 #: ../tools/virt-list-filesystems.pl:191
29654 msgid ""
29655 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, "
29656 "L<virt-filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
29657 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29658 msgstr ""
29659
29660 #. type: textblock
29661 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
29662 msgid "Copyright (C) 2009 Red Hat Inc."
29663 msgstr ""
29664
29665 #. type: textblock
29666 #: ../tools/virt-tar.pl:33
29667 msgid "virt-tar - Extract or upload files to a virtual machine"
29668 msgstr ""
29669
29670 #. type: verbatim
29671 #: ../tools/virt-tar.pl:37
29672 #, no-wrap
29673 msgid ""
29674 " virt-tar [--options] -x domname directory tarball\n"
29675 "\n"
29676 msgstr ""
29677
29678 #. type: verbatim
29679 #: ../tools/virt-tar.pl:39
29680 #, no-wrap
29681 msgid ""
29682 " virt-tar [--options] -u domname tarball directory\n"
29683 "\n"
29684 msgstr ""
29685
29686 #. type: verbatim
29687 #: ../tools/virt-tar.pl:41
29688 #, no-wrap
29689 msgid ""
29690 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
29691 "\n"
29692 msgstr ""
29693
29694 #. type: verbatim
29695 #: ../tools/virt-tar.pl:43
29696 #, no-wrap
29697 msgid ""
29698 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
29699 "\n"
29700 msgstr ""
29701
29702 #. type: textblock
29703 #: ../tools/virt-tar.pl:47
29704 msgid ""
29705 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, "
29706 "L<virt-tar-in(1)>, L<virt-tar-out(1)> as replacements."
29707 msgstr ""
29708
29709 #. type: textblock
29710 #: ../tools/virt-tar.pl:52
29711 msgid "Download C</home> from the VM into a local tarball:"
29712 msgstr ""
29713
29714 #. type: verbatim
29715 #: ../tools/virt-tar.pl:54
29716 #, no-wrap
29717 msgid ""
29718 " virt-tar -x domname /home home.tar\n"
29719 "\n"
29720 msgstr ""
29721
29722 #. type: verbatim
29723 #: ../tools/virt-tar.pl:56
29724 #, no-wrap
29725 msgid ""
29726 " virt-tar -zx domname /home home.tar.gz\n"
29727 "\n"
29728 msgstr ""
29729
29730 #. type: textblock
29731 #: ../tools/virt-tar.pl:58
29732 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
29733 msgstr ""
29734
29735 #. type: verbatim
29736 #: ../tools/virt-tar.pl:60
29737 #, no-wrap
29738 msgid ""
29739 " virt-tar -u domname uploadstuff.tar /tmp\n"
29740 "\n"
29741 msgstr ""
29742
29743 #. type: verbatim
29744 #: ../tools/virt-tar.pl:62
29745 #, no-wrap
29746 msgid ""
29747 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
29748 "\n"
29749 msgstr ""
29750
29751 #. type: textblock
29752 #: ../tools/virt-tar.pl:66
29753 msgid ""
29754 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
29755 "virtual machines.  If you do this, you risk disk corruption in the VM.  "
29756 "C<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
29757 msgstr ""
29758
29759 #. type: textblock
29760 #: ../tools/virt-tar.pl:71
29761 msgid ""
29762 "You can use I<-x> (extract) on live virtual machines, but you might get "
29763 "inconsistent results or errors if there is filesystem activity inside the "
29764 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
29765 "work, but the only way to guarantee consistent results is if the virtual "
29766 "machine is shut down."
29767 msgstr ""
29768
29769 #. type: textblock
29770 #: ../tools/virt-tar.pl:79
29771 msgid ""
29772 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
29773 "parts of a guest filesystem.  There are many possibilities: making backups, "
29774 "uploading data files, snooping on guest activity, fixing or customizing "
29775 "guests, etc."
29776 msgstr ""
29777
29778 #. type: textblock
29779 #: ../tools/virt-tar.pl:84
29780 msgid ""
29781 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
29782 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you "
29783 "should look at the L<guestfish(1)> tool."
29784 msgstr ""
29785
29786 #. type: textblock
29787 #: ../tools/virt-tar.pl:88
29788 msgid ""
29789 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
29790 "its contents (recursively) from the virtual machine into a local tarball.  "
29791 "I<-u> uploads from a local tarball, unpacking it into a directory inside the "
29792 "virtual machine.  You cannot use these two options together."
29793 msgstr ""
29794
29795 #. type: textblock
29796 #: ../tools/virt-tar.pl:94
29797 msgid ""
29798 "In addition, you may need to use the I<-z> (gZip) option to enable "
29799 "compression.  When uploading, you have to specify I<-z> if the upload file "
29800 "is compressed because virt-tar won't detect this on its own."
29801 msgstr ""
29802
29803 #. type: textblock
29804 #: ../tools/virt-tar.pl:98
29805 msgid ""
29806 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
29807 "example it cannot do PKZip files or bzip2 compression.  If you want that "
29808 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of "
29809 "the L<libguestfs(3)> API)."
29810 msgstr ""
29811
29812 #. type: =item
29813 #: ../tools/virt-tar.pl:156
29814 msgid "B<-x> | B<--extract> | B<--download>"
29815 msgstr ""
29816
29817 #. type: =item
29818 #: ../tools/virt-tar.pl:158
29819 msgid "B<-u> | B<--upload>"
29820 msgstr ""
29821
29822 #. type: textblock
29823 #: ../tools/virt-tar.pl:160
29824 msgid ""
29825 "Use I<-x> to extract (download) a directory from a virtual machine to a "
29826 "local tarball."
29827 msgstr ""
29828
29829 #. type: textblock
29830 #: ../tools/virt-tar.pl:163
29831 msgid ""
29832 "Use I<-u> to upload and unpack from a local tarball into a virtual machine.  "
29833 "Please read the L</WARNING> section above before using this option."
29834 msgstr ""
29835
29836 #. type: textblock
29837 #: ../tools/virt-tar.pl:167
29838 msgid "You must specify exactly one of these options."
29839 msgstr ""
29840
29841 #. type: =item
29842 #: ../tools/virt-tar.pl:173
29843 msgid "B<-z> | B<--gzip>"
29844 msgstr ""
29845
29846 #. type: textblock
29847 #: ../tools/virt-tar.pl:175
29848 msgid "Specify that the input or output tarball is gzip-compressed."
29849 msgstr ""
29850
29851 #. type: textblock
29852 #: ../tools/virt-tar.pl:288
29853 msgid ""
29854 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, "
29855 "L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, "
29856 "L<virt-tar-out(1)>, L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, "
29857 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
29858 msgstr ""
29859
29860 #. type: textblock
29861 #: ../tools/virt-make-fs.pl:37
29862 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
29863 msgstr ""
29864
29865 #. type: verbatim
29866 #: ../tools/virt-make-fs.pl:41
29867 #, no-wrap
29868 msgid ""
29869 " virt-make-fs [--options] input.tar output.img\n"
29870 "\n"
29871 msgstr ""
29872
29873 #. type: verbatim
29874 #: ../tools/virt-make-fs.pl:43
29875 #, no-wrap
29876 msgid ""
29877 " virt-make-fs [--options] input.tar.gz output.img\n"
29878 "\n"
29879 msgstr ""
29880
29881 #. type: verbatim
29882 #: ../tools/virt-make-fs.pl:45
29883 #, no-wrap
29884 msgid ""
29885 " virt-make-fs [--options] directory output.img\n"
29886 "\n"
29887 msgstr ""
29888
29889 #. type: textblock
29890 #: ../tools/virt-make-fs.pl:49
29891 msgid ""
29892 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
29893 "archive or some files in a directory.  It is similar to tools like "
29894 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
29895 "it can create common filesystem types like ext2/3 or NTFS, which can be "
29896 "useful if you want to attach these filesystems to existing virtual machines "
29897 "(eg. to import large amounts of read-only data to a VM)."
29898 msgstr ""
29899
29900 #. type: textblock
29901 #: ../tools/virt-make-fs.pl:57
29902 msgid "Basic usage is:"
29903 msgstr ""
29904
29905 #. type: verbatim
29906 #: ../tools/virt-make-fs.pl:59
29907 #, no-wrap
29908 msgid ""
29909 " virt-make-fs input output\n"
29910 "\n"
29911 msgstr ""
29912
29913 #. type: textblock
29914 #: ../tools/virt-make-fs.pl:61
29915 msgid ""
29916 "where C<input> is either a directory containing files that you want to add, "
29917 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
29918 "C<output> is a disk image.  The input type is detected automatically.  The "
29919 "output disk image defaults to a raw ext2 image unless you specify extra "
29920 "flags (see L</OPTIONS> below)."
29921 msgstr ""
29922
29923 #. type: =head2
29924 #: ../tools/virt-make-fs.pl:67
29925 msgid "EXTRA SPACE"
29926 msgstr ""
29927
29928 #. type: textblock
29929 #: ../tools/virt-make-fs.pl:69
29930 msgid ""
29931 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
29932 "the files that it contains, but might have extra space.  Depending on how "
29933 "you are going to use the output, you might think this extra space is wasted "
29934 "and want to minimize it, or you might want to leave space so that more files "
29935 "can be added later.  Virt-make-fs defaults to minimizing the extra space, "
29936 "but you can use the I<--size> flag to leave space in the filesystem if you "
29937 "want it."
29938 msgstr ""
29939
29940 #. type: textblock
29941 #: ../tools/virt-make-fs.pl:77
29942 msgid ""
29943 "An alternative way to leave extra space but not make the output image any "
29944 "bigger is to use an alternative disk image format (instead of the default "
29945 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2 "
29946 "image format (check your hypervisor supports this before using it).  This "
29947 "allows you to choose a large I<--size> but the extra space won't actually be "
29948 "allocated in the image until you try to store something in it."
29949 msgstr ""
29950
29951 #. type: textblock
29952 #: ../tools/virt-make-fs.pl:85
29953 msgid ""
29954 "Don't forget that you can also use local commands including L<resize2fs(8)> "
29955 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
29956 "to build another image from scratch."
29957 msgstr ""
29958
29959 #. type: =head3
29960 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123 ../tools/virt-make-fs.pl:142
29961 msgid "EXAMPLE"
29962 msgstr ""
29963
29964 #. type: verbatim
29965 #: ../tools/virt-make-fs.pl:91
29966 #, no-wrap
29967 msgid ""
29968 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
29969 "\n"
29970 msgstr ""
29971
29972 #. type: =head2
29973 #: ../tools/virt-make-fs.pl:93
29974 msgid "FILESYSTEM TYPE"
29975 msgstr ""
29976
29977 #. type: textblock
29978 #: ../tools/virt-make-fs.pl:95
29979 msgid ""
29980 "The default filesystem type is C<ext2>.  Just about any filesystem type that "
29981 "libguestfs supports can be used (but I<not> read-only formats like "
29982 "ISO9660).  Here are some of the more common choices:"
29983 msgstr ""
29984
29985 #. type: =item
29986 #: ../tools/virt-make-fs.pl:101
29987 msgid "I<ext3>"
29988 msgstr ""
29989
29990 #. type: textblock
29991 #: ../tools/virt-make-fs.pl:103
29992 msgid ""
29993 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If "
29994 "you are not going to use the filesystem in a way that requires the journal, "
29995 "then this is just wasted overhead."
29996 msgstr ""
29997
29998 #. type: =item
29999 #: ../tools/virt-make-fs.pl:107
30000 msgid "I<ntfs> or I<vfat>"
30001 msgstr ""
30002
30003 #. type: textblock
30004 #: ../tools/virt-make-fs.pl:109
30005 msgid "Useful if exporting data to a Windows guest."
30006 msgstr ""
30007
30008 #. type: textblock
30009 #: ../tools/virt-make-fs.pl:111
30010 msgid ""
30011 "I<Note for vfat>: The tar archive or local directory must only contain files "
30012 "which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
30013 "program running within libguestfs is unable to change the ownership of "
30014 "non-root files, since vfat itself does not support this."
30015 msgstr ""
30016
30017 #. type: =item
30018 #: ../tools/virt-make-fs.pl:116
30019 msgid "I<minix>"
30020 msgstr ""
30021
30022 #. type: textblock
30023 #: ../tools/virt-make-fs.pl:118
30024 msgid ""
30025 "Lower overhead than C<ext2>, but certain limitations on filename length and "
30026 "total filesystem size."
30027 msgstr ""
30028
30029 #. type: verbatim
30030 #: ../tools/virt-make-fs.pl:125
30031 #, no-wrap
30032 msgid ""
30033 " virt-make-fs --type=minix input minixfs.img\n"
30034 "\n"
30035 msgstr ""
30036
30037 #. type: =head2
30038 #: ../tools/virt-make-fs.pl:127
30039 msgid "TO PARTITION OR NOT TO PARTITION"
30040 msgstr ""
30041
30042 #. type: textblock
30043 #: ../tools/virt-make-fs.pl:129
30044 msgid "Optionally virt-make-fs can add a partition table to the output disk."
30045 msgstr ""
30046
30047 #. type: textblock
30048 #: ../tools/virt-make-fs.pl:131
30049 msgid ""
30050 "Adding a partition can make the disk image more compatible with certain "
30051 "virtualized operating systems which don't expect to see a filesystem "
30052 "directly located on a block device (Linux doesn't care and will happily "
30053 "handle both types)."
30054 msgstr ""
30055
30056 #. type: textblock
30057 #: ../tools/virt-make-fs.pl:136
30058 msgid ""
30059 "On the other hand, if you have a partition table then the output image is no "
30060 "longer a straight filesystem.  For example you cannot run L<fsck(8)> "
30061 "directly on a partitioned disk image.  (However libguestfs tools such as "
30062 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
30063 msgstr ""
30064
30065 #. type: textblock
30066 #: ../tools/virt-make-fs.pl:144
30067 msgid "Add an MBR partition:"
30068 msgstr ""
30069
30070 #. type: verbatim
30071 #: ../tools/virt-make-fs.pl:146
30072 #, no-wrap
30073 msgid ""
30074 " virt-make-fs --partition -- input disk.img\n"
30075 "\n"
30076 msgstr ""
30077
30078 #. type: textblock
30079 #: ../tools/virt-make-fs.pl:148
30080 msgid ""
30081 "If the output disk image could be terabyte-sized or larger, it's better to "
30082 "use an EFI/GPT-compatible partition table:"
30083 msgstr ""
30084
30085 #. type: verbatim
30086 #: ../tools/virt-make-fs.pl:151
30087 #, no-wrap
30088 msgid ""
30089 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
30090 "\n"
30091 msgstr ""
30092
30093 #. type: textblock
30094 #: ../tools/virt-make-fs.pl:179
30095 msgid "Enable debugging information."
30096 msgstr ""
30097
30098 #. type: =item
30099 #: ../tools/virt-make-fs.pl:185
30100 msgid "B<--size=E<lt>NE<gt>>"
30101 msgstr ""
30102
30103 #. type: =item
30104 #: ../tools/virt-make-fs.pl:187
30105 msgid "B<--size=+E<lt>NE<gt>>"
30106 msgstr ""
30107
30108 #. type: =item
30109 #: ../tools/virt-make-fs.pl:189
30110 msgid "B<-s E<lt>NE<gt>>"
30111 msgstr ""
30112
30113 #. type: =item
30114 #: ../tools/virt-make-fs.pl:191
30115 msgid "B<-s +E<lt>NE<gt>>"
30116 msgstr ""
30117
30118 #. type: textblock
30119 #: ../tools/virt-make-fs.pl:193
30120 msgid "Use the I<--size> (or I<-s>) option to choose the size of the output image."
30121 msgstr ""
30122
30123 #. type: textblock
30124 #: ../tools/virt-make-fs.pl:196
30125 msgid ""
30126 "If this option is I<not> given, then the output image will be just large "
30127 "enough to contain all the files, with not much wasted space."
30128 msgstr ""
30129
30130 #. type: textblock
30131 #: ../tools/virt-make-fs.pl:199
30132 msgid ""
30133 "To choose a fixed size output disk, specify an absolute number followed by "
30134 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30135 "Petabytes or Exabytes.  This must be large enough to contain all the input "
30136 "files, else you will get an error."
30137 msgstr ""
30138
30139 #. type: textblock
30140 #: ../tools/virt-make-fs.pl:204
30141 msgid ""
30142 "To leave extra space, specify C<+> (plus sign) and a number followed by "
30143 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
30144 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
30145 "the input files, and (approximately) an extra 200 MB free space."
30146 msgstr ""
30147
30148 #. type: textblock
30149 #: ../tools/virt-make-fs.pl:210
30150 msgid ""
30151 "Note that virt-make-fs estimates free space, and therefore will not produce "
30152 "filesystems containing precisely the free space requested.  (It is much more "
30153 "expensive and time-consuming to produce a filesystem which has precisely the "
30154 "desired free space)."
30155 msgstr ""
30156
30157 #. type: =item
30158 #: ../tools/virt-make-fs.pl:219
30159 msgid "B<--format=E<lt>fmtE<gt>>"
30160 msgstr ""
30161
30162 #. type: =item
30163 #: ../tools/virt-make-fs.pl:221
30164 msgid "B<-F E<lt>fmtE<gt>>"
30165 msgstr ""
30166
30167 #. type: textblock
30168 #: ../tools/virt-make-fs.pl:223
30169 msgid "Choose the output disk image format."
30170 msgstr ""
30171
30172 #. type: textblock
30173 #: ../tools/virt-make-fs.pl:225
30174 msgid "The default is C<raw> (raw disk image)."
30175 msgstr ""
30176
30177 #. type: textblock
30178 #: ../tools/virt-make-fs.pl:227
30179 msgid ""
30180 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
30181 "that would really make sense here is C<qcow2>."
30182 msgstr ""
30183
30184 #. type: =item
30185 #: ../tools/virt-make-fs.pl:234
30186 msgid "B<--type=E<lt>fsE<gt>>"
30187 msgstr ""
30188
30189 #. type: =item
30190 #: ../tools/virt-make-fs.pl:236
30191 msgid "B<-t E<lt>fsE<gt>>"
30192 msgstr ""
30193
30194 #. type: textblock
30195 #: ../tools/virt-make-fs.pl:238
30196 msgid "Choose the output filesystem type."
30197 msgstr ""
30198
30199 #. type: textblock
30200 #: ../tools/virt-make-fs.pl:240
30201 msgid "The default is C<ext2>."
30202 msgstr ""
30203
30204 #. type: textblock
30205 #: ../tools/virt-make-fs.pl:242
30206 msgid "Any filesystem which is supported read-write by libguestfs can be used here."
30207 msgstr ""
30208
30209 #. type: =item
30210 #: ../tools/virt-make-fs.pl:249
30211 msgid "B<--partition>"
30212 msgstr ""
30213
30214 #. type: =item
30215 #: ../tools/virt-make-fs.pl:251
30216 msgid "B<--partition=E<lt>parttypeE<gt>>"
30217 msgstr ""
30218
30219 #. type: textblock
30220 #: ../tools/virt-make-fs.pl:253
30221 msgid ""
30222 "If specified, this flag adds an MBR partition table to the output disk "
30223 "image."
30224 msgstr ""
30225
30226 #. type: textblock
30227 #: ../tools/virt-make-fs.pl:256
30228 msgid ""
30229 "You can change the partition table type, eg. I<--partition=gpt> for large "
30230 "disks."
30231 msgstr ""
30232
30233 #. type: textblock
30234 #: ../tools/virt-make-fs.pl:259
30235 msgid ""
30236 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
30237 "might consider the next parameter to be the partition type.  For example:"
30238 msgstr ""
30239
30240 #. type: verbatim
30241 #: ../tools/virt-make-fs.pl:263
30242 #, no-wrap
30243 msgid ""
30244 " virt-make-fs --partition input.tar ...\n"
30245 "\n"
30246 msgstr ""
30247
30248 #. type: textblock
30249 #: ../tools/virt-make-fs.pl:265
30250 msgid ""
30251 "would cause virt-make-fs to think you wanted to use a partition type of "
30252 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
30253 "dash) between options and the input file argument:"
30254 msgstr ""
30255
30256 #. type: verbatim
30257 #: ../tools/virt-make-fs.pl:269
30258 #, no-wrap
30259 msgid ""
30260 " virt-make-fs --partition -- input.tar ...\n"
30261 "\n"
30262 msgstr ""
30263
30264 #. type: textblock
30265 #: ../tools/virt-make-fs.pl:541
30266 msgid ""
30267 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
30268 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
30269 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
30270 msgstr ""
30271
30272 #. type: verbatim
30273 #: ../tools/virt-make-fs.pl:558
30274 #, no-wrap
30275 msgid ""
30276 " export LIBGUESTFS_DEBUG=1\n"
30277 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
30278 "\n"
30279 msgstr ""
30280
30281 #. type: textblock
30282 #: ../tools/virt-make-fs.pl:561
30283 msgid ""
30284 "Attach /tmp/virt-make-fs.log to a new bug report at "
30285 "L<https://bugzilla.redhat.com/>"
30286 msgstr ""
30287
30288 #. type: textblock
30289 #: ../tools/virt-list-partitions.pl:32
30290 msgid "virt-list-partitions - List partitions in a virtual machine or disk image"
30291 msgstr ""
30292
30293 #. type: verbatim
30294 #: ../tools/virt-list-partitions.pl:36
30295 #, no-wrap
30296 msgid ""
30297 " virt-list-partitions [--options] domname\n"
30298 "\n"
30299 msgstr ""
30300
30301 #. type: verbatim
30302 #: ../tools/virt-list-partitions.pl:38
30303 #, no-wrap
30304 msgid ""
30305 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
30306 "\n"
30307 msgstr ""
30308
30309 #. type: textblock
30310 #: ../tools/virt-list-partitions.pl:45
30311 msgid ""
30312 "C<virt-list-partitions> is a command line tool to list the partitions that "
30313 "are contained in a virtual machine or disk image.  It is mainly useful as a "
30314 "first step to using L<virt-resize(1)>."
30315 msgstr ""
30316
30317 #. type: textblock
30318 #: ../tools/virt-list-partitions.pl:50
30319 msgid ""
30320 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
30321 "functionality.  For more complex cases you should look at the "
30322 "L<guestfish(1)> tool."
30323 msgstr ""
30324
30325 #. type: =item
30326 #: ../tools/virt-list-partitions.pl:107
30327 msgid "B<-h> | B<--human-readable>"
30328 msgstr ""
30329
30330 #. type: textblock
30331 #: ../tools/virt-list-partitions.pl:109
30332 msgid "Show sizes in human-readable form (eg. \"1G\")."
30333 msgstr ""
30334
30335 #. type: textblock
30336 #: ../tools/virt-list-partitions.pl:117
30337 msgid ""
30338 "With this option, C<virt-list-partitions> displays the type and size of each "
30339 "partition too (where \"type\" means C<ext3>, C<pv> etc.)"
30340 msgstr ""
30341
30342 #. type: =item
30343 #: ../tools/virt-list-partitions.pl:124
30344 msgid "B<-t> | B<--total>"
30345 msgstr ""
30346
30347 #. type: textblock
30348 #: ../tools/virt-list-partitions.pl:126
30349 msgid "Display the total size of each block device (as a separate row or rows)."
30350 msgstr ""
30351
30352 #. type: textblock
30353 #: ../tools/virt-list-partitions.pl:259
30354 msgid ""
30355 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, "
30356 "L<virt-list-filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
30357 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30358 msgstr ""
30359
30360 #. type: textblock
30361 #: ../tools/virt-list-partitions.pl:275
30362 msgid "Copyright (C) 2009-2010 Red Hat Inc."
30363 msgstr ""