po-docs: Include source (POD files) in EXTRA_DIST.
[libguestfs.git] / po-docs / ja.po
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
5 # rjones <rjones@redhat.com>, 2011.
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: libguestfs\n"
9 "Report-Msgid-Bugs-To: https://bugzilla.redhat.com/\n"
10 "POT-Creation-Date: 2011-07-15 17:18+0200\n"
11 "PO-Revision-Date: 2011-07-17 20:50+0000\n"
12 "Last-Translator: rjones <rjones@redhat.com>\n"
13 "Language-Team: Japanese (http://www.transifex.net/projects/p/fedora/team/ja/)\n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17 "Language: ja\n"
18 "Plural-Forms: nplurals=1; plural=0\n"
19
20 #. type: =head1
21 #: ../src/guestfs.pod:3 ../fish/guestfish.pod:3
22 #: ../test-tool/libguestfs-test-tool.pod:3 ../fuse/guestmount.pod:3
23 #: ../tools/virt-win-reg.pl:35 ../tools/virt-list-filesystems.pl:30
24 #: ../tools/virt-tar.pl:31 ../tools/virt-make-fs.pl:35
25 #: ../tools/virt-list-partitions.pl:30
26 msgid "NAME"
27 msgstr "名前"
28
29 #. type: textblock
30 #: ../src/guestfs.pod:5
31 msgid "guestfs - Library for accessing and modifying virtual machine images"
32 msgstr ""
33
34 #. type: =head1
35 #: ../src/guestfs.pod:7 ../fish/guestfish.pod:7
36 #: ../test-tool/libguestfs-test-tool.pod:7 ../fuse/guestmount.pod:7
37 #: ../tools/virt-win-reg.pl:39 ../tools/virt-list-filesystems.pl:34
38 #: ../tools/virt-tar.pl:35 ../tools/virt-make-fs.pl:39
39 #: ../tools/virt-list-partitions.pl:34
40 msgid "SYNOPSIS"
41 msgstr ""
42
43 #. type: verbatim
44 #: ../src/guestfs.pod:9
45 #, no-wrap
46 msgid ""
47 " #include <guestfs.h>\n"
48 " \n"
49 msgstr ""
50
51 #. type: verbatim
52 #: ../src/guestfs.pod:11
53 #, no-wrap
54 msgid ""
55 " guestfs_h *g = guestfs_create ();\n"
56 " guestfs_add_drive (g, \"guest.img\");\n"
57 " guestfs_launch (g);\n"
58 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
59 " guestfs_touch (g, \"/hello\");\n"
60 " guestfs_umount (g, \"/\");\n"
61 " guestfs_close (g);\n"
62 "\n"
63 msgstr ""
64
65 #. type: verbatim
66 #: ../src/guestfs.pod:19
67 #, no-wrap
68 msgid ""
69 " cc prog.c -o prog -lguestfs\n"
70 "or:\n"
71 " cc prog.c -o prog `pkg-config libguestfs --cflags --libs`\n"
72 "\n"
73 msgstr ""
74
75 #. type: =head1
76 #: ../src/guestfs.pod:23 ../fish/guestfish.pod:30
77 #: ../test-tool/libguestfs-test-tool.pod:11 ../fuse/guestmount.pod:20
78 #: ../tools/virt-win-reg.pl:63 ../tools/virt-list-filesystems.pl:40
79 #: ../tools/virt-tar.pl:77 ../tools/virt-make-fs.pl:47
80 #: ../tools/virt-list-partitions.pl:40
81 msgid "DESCRIPTION"
82 msgstr ""
83
84 #. type: textblock
85 #: ../src/guestfs.pod:25
86 msgid ""
87 "Libguestfs is a library for accessing and modifying guest disk images.  "
88 "Amongst the things this is good for: making batch configuration changes to "
89 "guests, getting disk used/free statistics (see also: virt-df), migrating "
90 "between virtualization systems (see also: virt-p2v), performing partial "
91 "backups, performing partial guest clones, cloning guests and changing "
92 "registry/UUID/hostname info, and much else besides."
93 msgstr ""
94
95 #. type: textblock
96 #: ../src/guestfs.pod:33
97 msgid ""
98 "Libguestfs uses Linux kernel and qemu code, and can access any type of guest"
99 " filesystem that Linux and qemu can, including but not limited to: ext2/3/4,"
100 " btrfs, FAT and NTFS, LVM, many different disk partition schemes, qcow, "
101 "qcow2, vmdk."
102 msgstr ""
103
104 #. type: textblock
105 #: ../src/guestfs.pod:38
106 msgid ""
107 "Libguestfs provides ways to enumerate guest storage (eg. partitions, LVs, "
108 "what filesystem is in each LV, etc.).  It can also run commands in the "
109 "context of the guest.  Also you can access filesystems over FUSE."
110 msgstr ""
111
112 #. type: textblock
113 #: ../src/guestfs.pod:43
114 msgid ""
115 "Libguestfs is a library that can be linked with C and C++ management "
116 "programs (or management programs written in OCaml, Perl, Python, Ruby, Java,"
117 " PHP, Haskell or C#).  You can also use it from shell scripts or the command"
118 " line."
119 msgstr ""
120
121 #. type: textblock
122 #: ../src/guestfs.pod:48
123 msgid ""
124 "You don't need to be root to use libguestfs, although obviously you do need "
125 "enough permissions to access the disk images."
126 msgstr ""
127
128 #. type: textblock
129 #: ../src/guestfs.pod:51
130 msgid ""
131 "Libguestfs is a large API because it can do many things.  For a gentle "
132 "introduction, please read the L</API OVERVIEW> section next."
133 msgstr ""
134
135 #. type: textblock
136 #: ../src/guestfs.pod:54
137 msgid ""
138 "There are also some example programs in the L<guestfs-examples(3)> manual "
139 "page."
140 msgstr ""
141
142 #. type: =head1
143 #: ../src/guestfs.pod:57
144 msgid "API OVERVIEW"
145 msgstr ""
146
147 #. type: textblock
148 #: ../src/guestfs.pod:59
149 msgid ""
150 "This section provides a gentler overview of the libguestfs API.  We also try"
151 " to group API calls together, where that may not be obvious from reading "
152 "about the individual calls in the main section of this manual."
153 msgstr ""
154
155 #. type: =head2
156 #: ../src/guestfs.pod:64
157 msgid "HANDLES"
158 msgstr ""
159
160 #. type: textblock
161 #: ../src/guestfs.pod:66
162 msgid ""
163 "Before you can use libguestfs calls, you have to create a handle.  Then you "
164 "must add at least one disk image to the handle, followed by launching the "
165 "handle, then performing whatever operations you want, and finally closing "
166 "the handle.  By convention we use the single letter C<g> for the name of the"
167 " handle variable, although of course you can use any name you want."
168 msgstr ""
169
170 #. type: textblock
171 #: ../src/guestfs.pod:73
172 msgid ""
173 "The general structure of all libguestfs-using programs looks like this:"
174 msgstr ""
175
176 #. type: verbatim
177 #: ../src/guestfs.pod:76
178 #, no-wrap
179 msgid ""
180 " guestfs_h *g = guestfs_create ();\n"
181 " \n"
182 msgstr ""
183
184 #. type: verbatim
185 #: ../src/guestfs.pod:78
186 #, no-wrap
187 msgid ""
188 " /* Call guestfs_add_drive additional times if there are\n"
189 "  * multiple disk images.\n"
190 "  */\n"
191 " guestfs_add_drive (g, \"guest.img\");\n"
192 " \n"
193 msgstr ""
194
195 #. type: verbatim
196 #: ../src/guestfs.pod:83
197 #, no-wrap
198 msgid ""
199 " /* Most manipulation calls won't work until you've launched\n"
200 "  * the handle 'g'.  You have to do this _after_ adding drives\n"
201 "  * and _before_ other commands.\n"
202 "  */\n"
203 " guestfs_launch (g);\n"
204 " \n"
205 msgstr ""
206
207 #. type: verbatim
208 #: ../src/guestfs.pod:89
209 #, no-wrap
210 msgid ""
211 " /* Now you can examine what partitions, LVs etc are available.\n"
212 "  */\n"
213 " char **partitions = guestfs_list_partitions (g);\n"
214 " char **logvols = guestfs_lvs (g);\n"
215 " \n"
216 msgstr ""
217
218 #. type: verbatim
219 #: ../src/guestfs.pod:94
220 #, no-wrap
221 msgid ""
222 " /* To access a filesystem in the image, you must mount it.\n"
223 "  */\n"
224 " guestfs_mount (g, \"/dev/sda1\", \"/\");\n"
225 " \n"
226 msgstr ""
227
228 #. type: verbatim
229 #: ../src/guestfs.pod:98
230 #, no-wrap
231 msgid ""
232 " /* Now you can perform filesystem actions on the guest\n"
233 "  * disk image.\n"
234 "  */\n"
235 " guestfs_touch (g, \"/hello\");\n"
236 " \n"
237 msgstr ""
238
239 #. type: verbatim
240 #: ../src/guestfs.pod:103
241 #, no-wrap
242 msgid ""
243 " /* This is only needed for libguestfs < 1.5.24.  Since then\n"
244 "  * it is done automatically when you close the handle.  See\n"
245 "  * discussion of autosync in this page.\n"
246 "  */\n"
247 " guestfs_sync (g);\n"
248 " \n"
249 msgstr ""
250
251 #. type: verbatim
252 #: ../src/guestfs.pod:109
253 #, no-wrap
254 msgid ""
255 " /* Close the handle 'g'. */\n"
256 " guestfs_close (g);\n"
257 "\n"
258 msgstr ""
259
260 #. type: textblock
261 #: ../src/guestfs.pod:112
262 msgid ""
263 "The code above doesn't include any error checking.  In real code you should "
264 "check return values carefully for errors.  In general all functions that "
265 "return integers return C<-1> on error, and all functions that return "
266 "pointers return C<NULL> on error.  See section L</ERROR HANDLING> below for "
267 "how to handle errors, and consult the documentation for each function call "
268 "below to see precisely how they return error indications.  See L<guestfs-"
269 "examples(3)> for fully worked examples."
270 msgstr ""
271
272 #. type: =head2
273 #: ../src/guestfs.pod:121
274 msgid "DISK IMAGES"
275 msgstr ""
276
277 #. type: textblock
278 #: ../src/guestfs.pod:123
279 msgid ""
280 "The image filename (C<\"guest.img\"> in the example above) could be a disk "
281 "image from a virtual machine, a L<dd(1)> copy of a physical hard disk, an "
282 "actual block device, or simply an empty file of zeroes that you have created"
283 " through L<posix_fallocate(3)>.  Libguestfs lets you do useful things to all"
284 " of these."
285 msgstr ""
286
287 #. type: textblock
288 #: ../src/guestfs.pod:129
289 msgid ""
290 "The call you should use in modern code for adding drives is "
291 "L</guestfs_add_drive_opts>.  To add a disk image, allowing writes, and "
292 "specifying that the format is raw, do:"
293 msgstr ""
294
295 #. type: verbatim
296 #: ../src/guestfs.pod:133
297 #, no-wrap
298 msgid ""
299 " guestfs_add_drive_opts (g, filename,\n"
300 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
301 "                         -1);\n"
302 "\n"
303 msgstr ""
304
305 #. type: textblock
306 #: ../src/guestfs.pod:137
307 msgid "You can add a disk read-only using:"
308 msgstr ""
309
310 #. type: verbatim
311 #: ../src/guestfs.pod:139
312 #, no-wrap
313 msgid ""
314 " guestfs_add_drive_opts (g, filename,\n"
315 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"raw\",\n"
316 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
317 "                         -1);\n"
318 "\n"
319 msgstr ""
320
321 #. type: textblock
322 #: ../src/guestfs.pod:144
323 msgid ""
324 "or by calling the older function L</guestfs_add_drive_ro>.  In either case "
325 "libguestfs won't modify the file."
326 msgstr ""
327
328 #. type: textblock
329 #: ../src/guestfs.pod:147
330 msgid ""
331 "Be extremely cautious if the disk image is in use, eg. if it is being used "
332 "by a virtual machine.  Adding it read-write will almost certainly cause disk"
333 " corruption, but adding it read-only is safe."
334 msgstr ""
335
336 #. type: textblock
337 #: ../src/guestfs.pod:151
338 msgid ""
339 "You must add at least one disk image, and you may add multiple disk images."
340 "  In the API, the disk images are usually referred to as C</dev/sda> (for "
341 "the first one you added), C</dev/sdb> (for the second one you added), etc."
342 msgstr ""
343
344 #. type: textblock
345 #: ../src/guestfs.pod:156
346 msgid ""
347 "Once L</guestfs_launch> has been called you cannot add any more images.  You"
348 " can call L</guestfs_list_devices> to get a list of the device names, in the"
349 " order that you added them.  See also L</BLOCK DEVICE NAMING> below."
350 msgstr ""
351
352 #. type: =head2
353 #: ../src/guestfs.pod:161
354 msgid "MOUNTING"
355 msgstr ""
356
357 #. type: textblock
358 #: ../src/guestfs.pod:163
359 msgid ""
360 "Before you can read or write files, create directories and so on in a disk "
361 "image that contains filesystems, you have to mount those filesystems using "
362 "L</guestfs_mount_options> or L</guestfs_mount_ro>.  If you already know that"
363 " a disk image contains (for example) one partition with a filesystem on that"
364 " partition, then you can mount it directly:"
365 msgstr ""
366
367 #. type: verbatim
368 #: ../src/guestfs.pod:170
369 #, no-wrap
370 msgid ""
371 " guestfs_mount_options (g, \"\", \"/dev/sda1\", \"/\");\n"
372 "\n"
373 msgstr ""
374
375 #. type: textblock
376 #: ../src/guestfs.pod:172
377 msgid ""
378 "where C</dev/sda1> means literally the first partition (C<1>) of the first "
379 "disk image that we added (C</dev/sda>).  If the disk contains Linux LVM2 "
380 "logical volumes you could refer to those instead (eg. C</dev/VG/LV>).  Note "
381 "that these are libguestfs virtual devices, and are nothing to do with host "
382 "devices."
383 msgstr ""
384
385 #. type: textblock
386 #: ../src/guestfs.pod:178
387 msgid ""
388 "If you are given a disk image and you don't know what it contains then you "
389 "have to find out.  Libguestfs can do that too: use "
390 "L</guestfs_list_partitions> and L</guestfs_lvs> to list possible partitions "
391 "and LVs, and either try mounting each to see what is mountable, or else "
392 "examine them with L</guestfs_vfs_type> or L</guestfs_file>.  To list just "
393 "filesystems, use L</guestfs_list_filesystems>."
394 msgstr ""
395
396 #. type: textblock
397 #: ../src/guestfs.pod:186
398 msgid ""
399 "Libguestfs also has a set of APIs for inspection of unknown disk images (see"
400 " L</INSPECTION> below).  But you might find it easier to look at higher "
401 "level programs built on top of libguestfs, in particular L<virt-"
402 "inspector(1)>."
403 msgstr ""
404
405 #. type: textblock
406 #: ../src/guestfs.pod:191
407 msgid ""
408 "To mount a filesystem read-only, use L</guestfs_mount_ro>.  There are "
409 "several other variations of the C<guestfs_mount_*> call."
410 msgstr ""
411
412 #. type: =head2
413 #: ../src/guestfs.pod:194
414 msgid "FILESYSTEM ACCESS AND MODIFICATION"
415 msgstr ""
416
417 #. type: textblock
418 #: ../src/guestfs.pod:196
419 msgid ""
420 "The majority of the libguestfs API consists of fairly low-level calls for "
421 "accessing and modifying the files, directories, symlinks etc on mounted "
422 "filesystems.  There are over a hundred such calls which you can find listed "
423 "in detail below in this man page, and we don't even pretend to cover them "
424 "all in this overview."
425 msgstr ""
426
427 #. type: textblock
428 #: ../src/guestfs.pod:202
429 msgid ""
430 "Specify filenames as full paths, starting with C<\"/\"> and including the "
431 "mount point."
432 msgstr ""
433
434 #. type: textblock
435 #: ../src/guestfs.pod:205
436 msgid ""
437 "For example, if you mounted a filesystem at C<\"/\"> and you want to read "
438 "the file called C<\"etc/passwd\"> then you could do:"
439 msgstr ""
440
441 #. type: verbatim
442 #: ../src/guestfs.pod:208
443 #, no-wrap
444 msgid ""
445 " char *data = guestfs_cat (g, \"/etc/passwd\");\n"
446 "\n"
447 msgstr ""
448
449 #. type: textblock
450 #: ../src/guestfs.pod:210
451 msgid ""
452 "This would return C<data> as a newly allocated buffer containing the full "
453 "content of that file (with some conditions: see also L</DOWNLOADING> below),"
454 " or C<NULL> if there was an error."
455 msgstr ""
456
457 #. type: textblock
458 #: ../src/guestfs.pod:214
459 msgid ""
460 "As another example, to create a top-level directory on that filesystem "
461 "called C<\"var\"> you would do:"
462 msgstr ""
463
464 #. type: verbatim
465 #: ../src/guestfs.pod:217
466 #, no-wrap
467 msgid ""
468 " guestfs_mkdir (g, \"/var\");\n"
469 "\n"
470 msgstr ""
471
472 #. type: textblock
473 #: ../src/guestfs.pod:219
474 msgid "To create a symlink you could do:"
475 msgstr ""
476
477 #. type: verbatim
478 #: ../src/guestfs.pod:221
479 #, no-wrap
480 msgid ""
481 " guestfs_ln_s (g, \"/etc/init.d/portmap\",\n"
482 "               \"/etc/rc3.d/S30portmap\");\n"
483 "\n"
484 msgstr ""
485
486 #. type: textblock
487 #: ../src/guestfs.pod:224
488 msgid ""
489 "Libguestfs will reject attempts to use relative paths and there is no "
490 "concept of a current working directory."
491 msgstr ""
492
493 #. type: textblock
494 #: ../src/guestfs.pod:227
495 msgid ""
496 "Libguestfs can return errors in many situations: for example if the "
497 "filesystem isn't writable, or if a file or directory that you requested "
498 "doesn't exist.  If you are using the C API (documented here)  you have to "
499 "check for those error conditions after each call.  (Other language bindings "
500 "turn these errors into exceptions)."
501 msgstr ""
502
503 #. type: textblock
504 #: ../src/guestfs.pod:233
505 msgid ""
506 "File writes are affected by the per-handle umask, set by calling "
507 "L</guestfs_umask> and defaulting to 022.  See L</UMASK>."
508 msgstr ""
509
510 #. type: =head2
511 #: ../src/guestfs.pod:236
512 msgid "PARTITIONING"
513 msgstr ""
514
515 #. type: textblock
516 #: ../src/guestfs.pod:238
517 msgid ""
518 "Libguestfs contains API calls to read, create and modify partition tables on"
519 " disk images."
520 msgstr ""
521
522 #. type: textblock
523 #: ../src/guestfs.pod:241
524 msgid ""
525 "In the common case where you want to create a single partition covering the "
526 "whole disk, you should use the L</guestfs_part_disk> call:"
527 msgstr ""
528
529 #. type: verbatim
530 #: ../src/guestfs.pod:245
531 #, no-wrap
532 msgid ""
533 " const char *parttype = \"mbr\";\n"
534 " if (disk_is_larger_than_2TB)\n"
535 "   parttype = \"gpt\";\n"
536 " guestfs_part_disk (g, \"/dev/sda\", parttype);\n"
537 "\n"
538 msgstr ""
539
540 #. type: textblock
541 #: ../src/guestfs.pod:250
542 msgid ""
543 "Obviously this effectively wipes anything that was on that disk image "
544 "before."
545 msgstr ""
546
547 #. type: =head2
548 #: ../src/guestfs.pod:253
549 msgid "LVM2"
550 msgstr ""
551
552 #. type: textblock
553 #: ../src/guestfs.pod:255
554 msgid ""
555 "Libguestfs provides access to a large part of the LVM2 API, such as "
556 "L</guestfs_lvcreate> and L</guestfs_vgremove>.  It won't make much sense "
557 "unless you familiarize yourself with the concepts of physical volumes, "
558 "volume groups and logical volumes."
559 msgstr ""
560
561 #. type: textblock
562 #: ../src/guestfs.pod:260
563 msgid ""
564 "This author strongly recommends reading the LVM HOWTO, online at "
565 "L<http://tldp.org/HOWTO/LVM-HOWTO/>."
566 msgstr ""
567
568 #. type: =head2
569 #: ../src/guestfs.pod:263
570 msgid "DOWNLOADING"
571 msgstr ""
572
573 #. type: textblock
574 #: ../src/guestfs.pod:265
575 msgid ""
576 "Use L</guestfs_cat> to download small, text only files.  This call is "
577 "limited to files which are less than 2 MB and which cannot contain any ASCII"
578 " NUL (C<\\0>) characters.  However the API is very simple to use."
579 msgstr ""
580
581 #. type: textblock
582 #: ../src/guestfs.pod:269
583 msgid ""
584 "L</guestfs_read_file> can be used to read files which contain arbitrary 8 "
585 "bit data, since it returns a (pointer, size) pair.  However it is still "
586 "limited to \"small\" files, less than 2 MB."
587 msgstr ""
588
589 #. type: textblock
590 #: ../src/guestfs.pod:273
591 msgid ""
592 "L</guestfs_download> can be used to download any file, with no limits on "
593 "content or size (even files larger than 4 GB)."
594 msgstr ""
595
596 #. type: textblock
597 #: ../src/guestfs.pod:276
598 msgid ""
599 "To download multiple files, see L</guestfs_tar_out> and L</guestfs_tgz_out>."
600 msgstr ""
601
602 #. type: =head2
603 #: ../src/guestfs.pod:279
604 msgid "UPLOADING"
605 msgstr ""
606
607 #. type: textblock
608 #: ../src/guestfs.pod:281
609 msgid ""
610 "It's often the case that you want to write a file or files to the disk "
611 "image."
612 msgstr ""
613
614 #. type: textblock
615 #: ../src/guestfs.pod:284
616 msgid ""
617 "To write a small file with fixed content, use L</guestfs_write>.  To create "
618 "a file of all zeroes, use L</guestfs_truncate_size> (sparse) or "
619 "L</guestfs_fallocate64> (with all disk blocks allocated).  There are a "
620 "variety of other functions for creating test files, for example "
621 "L</guestfs_fill> and L</guestfs_fill_pattern>."
622 msgstr ""
623
624 #. type: textblock
625 #: ../src/guestfs.pod:290
626 msgid ""
627 "To upload a single file, use L</guestfs_upload>.  This call has no limits on"
628 " file content or size (even files larger than 4 GB)."
629 msgstr ""
630
631 #. type: textblock
632 #: ../src/guestfs.pod:293
633 msgid ""
634 "To upload multiple files, see L</guestfs_tar_in> and L</guestfs_tgz_in>."
635 msgstr ""
636
637 #. type: textblock
638 #: ../src/guestfs.pod:295
639 msgid ""
640 "However the fastest way to upload I<large numbers of arbitrary files> is to "
641 "turn them into a squashfs or CD ISO (see L<mksquashfs(8)> and "
642 "L<mkisofs(8)>), then attach this using L</guestfs_add_drive_ro>.  If you add"
643 " the drive in a predictable way (eg. adding it last after all other drives) "
644 "then you can get the device name from L</guestfs_list_devices> and mount it "
645 "directly using L</guestfs_mount_ro>.  Note that squashfs images are "
646 "sometimes non-portable between kernel versions, and they don't support "
647 "labels or UUIDs.  If you want to pre-build an image or you need to mount it "
648 "using a label or UUID, use an ISO image instead."
649 msgstr ""
650
651 #. type: =head2
652 #: ../src/guestfs.pod:306
653 msgid "COPYING"
654 msgstr ""
655
656 #. type: textblock
657 #: ../src/guestfs.pod:308
658 msgid ""
659 "There are various different commands for copying between files and devices "
660 "and in and out of the guest filesystem.  These are summarised in the table "
661 "below."
662 msgstr ""
663
664 #. type: =item
665 #: ../src/guestfs.pod:314
666 msgid "B<file> to B<file>"
667 msgstr ""
668
669 #. type: textblock
670 #: ../src/guestfs.pod:316
671 msgid ""
672 "Use L</guestfs_cp> to copy a single file, or L</guestfs_cp_a> to copy "
673 "directories recursively."
674 msgstr ""
675
676 #. type: =item
677 #: ../src/guestfs.pod:319
678 msgid "B<file or device> to B<file or device>"
679 msgstr ""
680
681 #. type: textblock
682 #: ../src/guestfs.pod:321
683 msgid ""
684 "Use L</guestfs_dd> which efficiently uses L<dd(1)> to copy between files and"
685 " devices in the guest."
686 msgstr ""
687
688 #. type: textblock
689 #: ../src/guestfs.pod:324
690 msgid "Example: duplicate the contents of an LV:"
691 msgstr ""
692
693 #. type: verbatim
694 #: ../src/guestfs.pod:326
695 #, no-wrap
696 msgid ""
697 " guestfs_dd (g, \"/dev/VG/Original\", \"/dev/VG/Copy\");\n"
698 "\n"
699 msgstr ""
700
701 #. type: textblock
702 #: ../src/guestfs.pod:328
703 msgid ""
704 "The destination (C</dev/VG/Copy>) must be at least as large as the source "
705 "(C</dev/VG/Original>).  To copy less than the whole source device, use "
706 "L</guestfs_copy_size>."
707 msgstr ""
708
709 #. type: =item
710 #: ../src/guestfs.pod:332
711 msgid "B<file on the host> to B<file or device>"
712 msgstr ""
713
714 #. type: textblock
715 #: ../src/guestfs.pod:334
716 msgid "Use L</guestfs_upload>.  See L</UPLOADING> above."
717 msgstr ""
718
719 #. type: =item
720 #: ../src/guestfs.pod:336
721 msgid "B<file or device> to B<file on the host>"
722 msgstr ""
723
724 #. type: textblock
725 #: ../src/guestfs.pod:338
726 msgid "Use L</guestfs_download>.  See L</DOWNLOADING> above."
727 msgstr ""
728
729 #. type: =head2
730 #: ../src/guestfs.pod:342
731 msgid "UPLOADING AND DOWNLOADING TO PIPES AND FILE DESCRIPTORS"
732 msgstr ""
733
734 #. type: textblock
735 #: ../src/guestfs.pod:344
736 msgid ""
737 "Calls like L</guestfs_upload>, L</guestfs_download>, L</guestfs_tar_in>, "
738 "L</guestfs_tar_out> etc appear to only take filenames as arguments, so it "
739 "appears you can only upload and download to files.  However many Un*x-like "
740 "hosts let you use the special device files C</dev/stdin>, C</dev/stdout>, "
741 "C</dev/stderr> and C</dev/fd/N> to read and write from stdin, stdout, "
742 "stderr, and arbitrary file descriptor N."
743 msgstr ""
744
745 #. type: textblock
746 #: ../src/guestfs.pod:352
747 msgid "For example, L<virt-cat(1)> writes its output to stdout by doing:"
748 msgstr ""
749
750 #. type: verbatim
751 #: ../src/guestfs.pod:355
752 #, no-wrap
753 msgid ""
754 " guestfs_download (g, filename, \"/dev/stdout\");\n"
755 "\n"
756 msgstr ""
757
758 #. type: textblock
759 #: ../src/guestfs.pod:357
760 msgid "and you can write tar output to a file descriptor C<fd> by doing:"
761 msgstr ""
762
763 #. type: verbatim
764 #: ../src/guestfs.pod:359
765 #, no-wrap
766 msgid ""
767 " char devfd[64];\n"
768 " snprintf (devfd, sizeof devfd, \"/dev/fd/%d\", fd);\n"
769 " guestfs_tar_out (g, \"/\", devfd);\n"
770 "\n"
771 msgstr ""
772
773 #. type: =head2
774 #: ../src/guestfs.pod:363
775 msgid "LISTING FILES"
776 msgstr ""
777
778 #. type: textblock
779 #: ../src/guestfs.pod:365
780 msgid ""
781 "L</guestfs_ll> is just designed for humans to read (mainly when using the "
782 "L<guestfish(1)>-equivalent command C<ll>)."
783 msgstr ""
784
785 #. type: textblock
786 #: ../src/guestfs.pod:368
787 msgid ""
788 "L</guestfs_ls> is a quick way to get a list of files in a directory from "
789 "programs, as a flat list of strings."
790 msgstr ""
791
792 #. type: textblock
793 #: ../src/guestfs.pod:371
794 msgid ""
795 "L</guestfs_readdir> is a programmatic way to get a list of files in a "
796 "directory, plus additional information about each one.  It is more "
797 "equivalent to using the L<readdir(3)> call on a local filesystem."
798 msgstr ""
799
800 #. type: textblock
801 #: ../src/guestfs.pod:375
802 msgid ""
803 "L</guestfs_find> and L</guestfs_find0> can be used to recursively list "
804 "files."
805 msgstr ""
806
807 #. type: =head2
808 #: ../src/guestfs.pod:378
809 msgid "RUNNING COMMANDS"
810 msgstr ""
811
812 #. type: textblock
813 #: ../src/guestfs.pod:380
814 msgid ""
815 "Although libguestfs is primarily an API for manipulating files inside guest "
816 "images, we also provide some limited facilities for running commands inside "
817 "guests."
818 msgstr ""
819
820 #. type: textblock
821 #: ../src/guestfs.pod:384
822 msgid "There are many limitations to this:"
823 msgstr ""
824
825 #. type: =item
826 #: ../src/guestfs.pod:388 ../src/guestfs.pod:393 ../src/guestfs.pod:398
827 #: ../src/guestfs.pod:402 ../src/guestfs.pod:407 ../src/guestfs.pod:411
828 #: ../src/guestfs.pod:416 ../src/guestfs.pod:421 ../src/guestfs.pod:1064
829 #: ../src/guestfs.pod:1068 ../src/guestfs.pod:1072 ../src/guestfs.pod:1077
830 #: ../src/guestfs.pod:1085 ../src/guestfs.pod:1104 ../src/guestfs.pod:1112
831 #: ../src/guestfs.pod:1134 ../src/guestfs.pod:1138 ../src/guestfs.pod:1142
832 #: ../src/guestfs.pod:1146 ../src/guestfs.pod:1150 ../src/guestfs.pod:1154
833 #: ../src/guestfs.pod:1643 ../src/guestfs.pod:1648 ../src/guestfs.pod:1652
834 #: ../src/guestfs.pod:1754 ../src/guestfs.pod:1759 ../src/guestfs.pod:1763
835 #: ../src/guestfs.pod:1773 ../src/guestfs.pod:2047 ../src/guestfs.pod:2052
836 #: ../src/guestfs.pod:2058 ../src/guestfs.pod:2066 ../src/guestfs.pod:2420
837 #: ../src/guestfs.pod:2426 ../src/guestfs.pod:2431 ../src/guestfs.pod:2437
838 #: ../src/guestfs.pod:3011 ../src/guestfs.pod:3015 ../src/guestfs.pod:3019
839 #: ../src/guestfs.pod:3023 ../src/guestfs-actions.pod:15
840 #: ../src/guestfs-actions.pod:22 ../src/guestfs-actions.pod:583
841 #: ../src/guestfs-actions.pod:591 ../src/guestfs-actions.pod:598
842 #: ../src/guestfs-actions.pod:605 ../src/guestfs-actions.pod:1662
843 #: ../src/guestfs-actions.pod:1666 ../src/guestfs-actions.pod:1670
844 #: ../src/guestfs-actions.pod:1674 ../src/guestfs-actions.pod:1682
845 #: ../src/guestfs-actions.pod:1686 ../src/guestfs-actions.pod:1690
846 #: ../src/guestfs-actions.pod:1700 ../src/guestfs-actions.pod:1704
847 #: ../src/guestfs-actions.pod:1708 ../src/guestfs-actions.pod:1846
848 #: ../src/guestfs-actions.pod:1850 ../src/guestfs-actions.pod:1855
849 #: ../src/guestfs-actions.pod:1860 ../src/guestfs-actions.pod:1921
850 #: ../src/guestfs-actions.pod:1925 ../src/guestfs-actions.pod:1930
851 #: ../src/guestfs-actions.pod:2857 ../src/guestfs-actions.pod:2863
852 #: ../src/guestfs-actions.pod:2871 ../src/guestfs-actions.pod:2878
853 #: ../src/guestfs-actions.pod:2885 ../fish/guestfish.pod:445
854 #: ../fish/guestfish.pod:449 ../fish/guestfish.pod:453
855 #: ../fish/guestfish.pod:457 ../fish/guestfish-actions.pod:13
856 #: ../fish/guestfish-actions.pod:20 ../fish/guestfish-actions.pod:385
857 #: ../fish/guestfish-actions.pod:393 ../fish/guestfish-actions.pod:400
858 #: ../fish/guestfish-actions.pod:407 ../fish/guestfish-actions.pod:1099
859 #: ../fish/guestfish-actions.pod:1103 ../fish/guestfish-actions.pod:1107
860 #: ../fish/guestfish-actions.pod:1111 ../fish/guestfish-actions.pod:1119
861 #: ../fish/guestfish-actions.pod:1123 ../fish/guestfish-actions.pod:1127
862 #: ../fish/guestfish-actions.pod:1137 ../fish/guestfish-actions.pod:1141
863 #: ../fish/guestfish-actions.pod:1145 ../fish/guestfish-actions.pod:1235
864 #: ../fish/guestfish-actions.pod:1239 ../fish/guestfish-actions.pod:1244
865 #: ../fish/guestfish-actions.pod:1249 ../fish/guestfish-actions.pod:1291
866 #: ../fish/guestfish-actions.pod:1295 ../fish/guestfish-actions.pod:1300
867 #: ../fish/guestfish-actions.pod:1933 ../fish/guestfish-actions.pod:1939
868 #: ../fish/guestfish-actions.pod:1947 ../fish/guestfish-actions.pod:1954
869 #: ../fish/guestfish-actions.pod:1961 ../tools/virt-win-reg.pl:195
870 #: ../tools/virt-win-reg.pl:200 ../tools/virt-win-reg.pl:206
871 #: ../tools/virt-win-reg.pl:708 ../tools/virt-win-reg.pl:714
872 #: ../tools/virt-win-reg.pl:720
873 msgid "*"
874 msgstr ""
875
876 #. type: textblock
877 #: ../src/guestfs.pod:390
878 msgid ""
879 "The kernel version that the command runs under will be different from what "
880 "it expects."
881 msgstr ""
882
883 #. type: textblock
884 #: ../src/guestfs.pod:395
885 msgid ""
886 "If the command needs to communicate with daemons, then most likely they "
887 "won't be running."
888 msgstr ""
889
890 #. type: textblock
891 #: ../src/guestfs.pod:400
892 msgid "The command will be running in limited memory."
893 msgstr ""
894
895 #. type: textblock
896 #: ../src/guestfs.pod:404
897 msgid ""
898 "The network may not be available unless you enable it (see "
899 "L</guestfs_set_network>)."
900 msgstr ""
901
902 #. type: textblock
903 #: ../src/guestfs.pod:409
904 msgid "Only supports Linux guests (not Windows, BSD, etc)."
905 msgstr ""
906
907 #. type: textblock
908 #: ../src/guestfs.pod:413
909 msgid ""
910 "Architecture limitations (eg. won't work for a PPC guest on an X86 host)."
911 msgstr ""
912
913 #. type: textblock
914 #: ../src/guestfs.pod:418
915 msgid ""
916 "For SELinux guests, you may need to enable SELinux and load policy first.  "
917 "See L</SELINUX> in this manpage."
918 msgstr ""
919
920 #. type: textblock
921 #: ../src/guestfs.pod:423
922 msgid ""
923 "I<Security:> It is not safe to run commands from untrusted, possibly "
924 "malicious guests.  These commands may attempt to exploit your program by "
925 "sending unexpected output.  They could also try to exploit the Linux kernel "
926 "or qemu provided by the libguestfs appliance.  They could use the network "
927 "provided by the libguestfs appliance to bypass ordinary network partitions "
928 "and firewalls.  They could use the elevated privileges or different SELinux "
929 "context of your program to their advantage."
930 msgstr ""
931
932 #. type: textblock
933 #: ../src/guestfs.pod:432
934 msgid ""
935 "A secure alternative is to use libguestfs to install a \"firstboot\" script "
936 "(a script which runs when the guest next boots normally), and to have this "
937 "script run the commands you want in the normal context of the running guest,"
938 " network security and so on.  For information about other security issues, "
939 "see L</SECURITY>."
940 msgstr ""
941
942 #. type: textblock
943 #: ../src/guestfs.pod:440
944 msgid ""
945 "The two main API calls to run commands are L</guestfs_command> and "
946 "L</guestfs_sh> (there are also variations)."
947 msgstr ""
948
949 #. type: textblock
950 #: ../src/guestfs.pod:443
951 msgid ""
952 "The difference is that L</guestfs_sh> runs commands using the shell, so any "
953 "shell globs, redirections, etc will work."
954 msgstr ""
955
956 #. type: =head2
957 #: ../src/guestfs.pod:446
958 msgid "CONFIGURATION FILES"
959 msgstr ""
960
961 #. type: textblock
962 #: ../src/guestfs.pod:448
963 msgid ""
964 "To read and write configuration files in Linux guest filesystems, we "
965 "strongly recommend using Augeas.  For example, Augeas understands how to "
966 "read and write, say, a Linux shadow password file or X.org configuration "
967 "file, and so avoids you having to write that code."
968 msgstr ""
969
970 #. type: textblock
971 #: ../src/guestfs.pod:453
972 msgid ""
973 "The main Augeas calls are bound through the C<guestfs_aug_*> APIs.  We don't"
974 " document Augeas itself here because there is excellent documentation on the"
975 " L<http://augeas.net/> website."
976 msgstr ""
977
978 #. type: textblock
979 #: ../src/guestfs.pod:457
980 msgid ""
981 "If you don't want to use Augeas (you fool!) then try calling "
982 "L</guestfs_read_lines> to get the file as a list of lines which you can "
983 "iterate over."
984 msgstr ""
985
986 #. type: =head2
987 #: ../src/guestfs.pod:461
988 msgid "SELINUX"
989 msgstr ""
990
991 #. type: textblock
992 #: ../src/guestfs.pod:463
993 msgid ""
994 "We support SELinux guests.  To ensure that labeling happens correctly in "
995 "SELinux guests, you need to enable SELinux and load the guest's policy:"
996 msgstr ""
997
998 #. type: =item
999 #: ../src/guestfs.pod:469 ../src/guestfs.pod:1257 ../src/guestfs.pod:1395
1000 #: ../src/guestfs.pod:2465
1001 msgid "1."
1002 msgstr ""
1003
1004 #. type: textblock
1005 #: ../src/guestfs.pod:471
1006 msgid "Before launching, do:"
1007 msgstr ""
1008
1009 #. type: verbatim
1010 #: ../src/guestfs.pod:473
1011 #, no-wrap
1012 msgid ""
1013 " guestfs_set_selinux (g, 1);\n"
1014 "\n"
1015 msgstr ""
1016
1017 #. type: =item
1018 #: ../src/guestfs.pod:475 ../src/guestfs.pod:1261 ../src/guestfs.pod:1399
1019 #: ../src/guestfs.pod:2490
1020 msgid "2."
1021 msgstr ""
1022
1023 #. type: textblock
1024 #: ../src/guestfs.pod:477
1025 msgid ""
1026 "After mounting the guest's filesystem(s), load the policy.  This is best "
1027 "done by running the L<load_policy(8)> command in the guest itself:"
1028 msgstr ""
1029
1030 #. type: verbatim
1031 #: ../src/guestfs.pod:481
1032 #, no-wrap
1033 msgid ""
1034 " guestfs_sh (g, \"/usr/sbin/load_policy\");\n"
1035 "\n"
1036 msgstr ""
1037
1038 #. type: textblock
1039 #: ../src/guestfs.pod:483
1040 msgid ""
1041 "(Older versions of C<load_policy> require you to specify the name of the "
1042 "policy file)."
1043 msgstr ""
1044
1045 #. type: =item
1046 #: ../src/guestfs.pod:486 ../src/guestfs.pod:1405
1047 msgid "3."
1048 msgstr ""
1049
1050 #. type: textblock
1051 #: ../src/guestfs.pod:488
1052 msgid ""
1053 "Optionally, set the security context for the API.  The correct security "
1054 "context to use can only be known by inspecting the guest.  As an example:"
1055 msgstr ""
1056
1057 #. type: verbatim
1058 #: ../src/guestfs.pod:492
1059 #, no-wrap
1060 msgid ""
1061 " guestfs_setcon (g, \"unconfined_u:unconfined_r:unconfined_t:s0\");\n"
1062 "\n"
1063 msgstr ""
1064
1065 #. type: textblock
1066 #: ../src/guestfs.pod:496
1067 msgid "This will work for running commands and editing existing files."
1068 msgstr ""
1069
1070 #. type: textblock
1071 #: ../src/guestfs.pod:498
1072 msgid ""
1073 "When new files are created, you may need to label them explicitly, for "
1074 "example by running the external command C<restorecon pathname>."
1075 msgstr ""
1076
1077 #. type: =head2
1078 #: ../src/guestfs.pod:502
1079 msgid "UMASK"
1080 msgstr ""
1081
1082 #. type: textblock
1083 #: ../src/guestfs.pod:504
1084 msgid ""
1085 "Certain calls are affected by the current file mode creation mask (the "
1086 "\"umask\").  In particular ones which create files or directories, such as "
1087 "L</guestfs_touch>, L</guestfs_mknod> or L</guestfs_mkdir>.  This affects "
1088 "either the default mode that the file is created with or modifies the mode "
1089 "that you supply."
1090 msgstr ""
1091
1092 #. type: textblock
1093 #: ../src/guestfs.pod:510
1094 msgid ""
1095 "The default umask is C<022>, so files are created with modes such as C<0644>"
1096 " and directories with C<0755>."
1097 msgstr ""
1098
1099 #. type: textblock
1100 #: ../src/guestfs.pod:513
1101 msgid ""
1102 "There are two ways to avoid being affected by umask.  Either set umask to 0 "
1103 "(call C<guestfs_umask (g, 0)> early after launching).  Or call "
1104 "L</guestfs_chmod> after creating each file or directory."
1105 msgstr ""
1106
1107 #. type: textblock
1108 #: ../src/guestfs.pod:517
1109 msgid "For more information about umask, see L<umask(2)>."
1110 msgstr ""
1111
1112 #. type: =head1
1113 #: ../src/guestfs.pod:519 ../fish/guestfish.pod:825
1114 msgid "ENCRYPTED DISKS"
1115 msgstr ""
1116
1117 #. type: textblock
1118 #: ../src/guestfs.pod:521
1119 msgid ""
1120 "Libguestfs allows you to access Linux guests which have been encrypted using"
1121 " whole disk encryption that conforms to the Linux Unified Key Setup (LUKS) "
1122 "standard.  This includes nearly all whole disk encryption systems used by "
1123 "modern Linux guests."
1124 msgstr ""
1125
1126 #. type: textblock
1127 #: ../src/guestfs.pod:527
1128 msgid ""
1129 "Use L</guestfs_vfs_type> to identify LUKS-encrypted block devices (it "
1130 "returns the string C<crypto_LUKS>)."
1131 msgstr ""
1132
1133 #. type: textblock
1134 #: ../src/guestfs.pod:530
1135 msgid ""
1136 "Then open these devices by calling L</guestfs_luks_open>.  Obviously you "
1137 "will require the passphrase!"
1138 msgstr ""
1139
1140 #. type: textblock
1141 #: ../src/guestfs.pod:533
1142 msgid ""
1143 "Opening a LUKS device creates a new device mapper device called "
1144 "C</dev/mapper/mapname> (where C<mapname> is the string you supply to "
1145 "L</guestfs_luks_open>).  Reads and writes to this mapper device are "
1146 "decrypted from and encrypted to the underlying block device respectively."
1147 msgstr ""
1148
1149 #. type: textblock
1150 #: ../src/guestfs.pod:539
1151 msgid ""
1152 "LVM volume groups on the device can be made visible by calling "
1153 "L</guestfs_vgscan> followed by L</guestfs_vg_activate_all>.  The logical "
1154 "volume(s) can now be mounted in the usual way."
1155 msgstr ""
1156
1157 #. type: textblock
1158 #: ../src/guestfs.pod:543
1159 msgid ""
1160 "Use the reverse process to close a LUKS device.  Unmount any logical volumes"
1161 " on it, deactivate the volume groups by caling C<guestfs_vg_activate (g, 0, "
1162 "[\"/dev/VG\"])>.  Then close the mapper device by calling "
1163 "L</guestfs_luks_close> on the C</dev/mapper/mapname> device (I<not> the "
1164 "underlying encrypted block device)."
1165 msgstr ""
1166
1167 #. type: =head2
1168 #: ../src/guestfs.pod:550
1169 msgid "INSPECTION"
1170 msgstr ""
1171
1172 #. type: textblock
1173 #: ../src/guestfs.pod:552
1174 msgid ""
1175 "Libguestfs has APIs for inspecting an unknown disk image to find out if it "
1176 "contains operating systems, an install CD or a live CD.  (These APIs used to"
1177 " be in a separate Perl-only library called L<Sys::Guestfs::Lib(3)> but since"
1178 " version 1.5.3 the most frequently used part of this library has been "
1179 "rewritten in C and moved into the core code)."
1180 msgstr ""
1181
1182 #. type: textblock
1183 #: ../src/guestfs.pod:559
1184 msgid ""
1185 "Add all disks belonging to the unknown virtual machine and call "
1186 "L</guestfs_launch> in the usual way."
1187 msgstr ""
1188
1189 #. type: textblock
1190 #: ../src/guestfs.pod:562
1191 msgid ""
1192 "Then call L</guestfs_inspect_os>.  This function uses other libguestfs calls"
1193 " and certain heuristics, and returns a list of operating systems that were "
1194 "found.  An empty list means none were found.  A single element is the root "
1195 "filesystem of the operating system.  For dual- or multi-boot guests, "
1196 "multiple roots can be returned, each one corresponding to a separate "
1197 "operating system.  (Multi-boot virtual machines are extremely rare in the "
1198 "world of virtualization, but since this scenario can happen, we have built "
1199 "libguestfs to deal with it.)"
1200 msgstr ""
1201
1202 #. type: textblock
1203 #: ../src/guestfs.pod:571
1204 msgid ""
1205 "For each root, you can then call various C<guestfs_inspect_get_*> functions "
1206 "to get additional details about that operating system.  For example, call "
1207 "L</guestfs_inspect_get_type> to return the string C<windows> or C<linux> for"
1208 " Windows and Linux-based operating systems respectively."
1209 msgstr ""
1210
1211 #. type: textblock
1212 #: ../src/guestfs.pod:577
1213 msgid ""
1214 "Un*x-like and Linux-based operating systems usually consist of several "
1215 "filesystems which are mounted at boot time (for example, a separate boot "
1216 "partition mounted on C</boot>).  The inspection rules are able to detect how"
1217 " filesystems correspond to mount points.  Call "
1218 "C<guestfs_inspect_get_mountpoints> to get this mapping.  It might return a "
1219 "hash table like this example:"
1220 msgstr ""
1221
1222 #. type: verbatim
1223 #: ../src/guestfs.pod:584
1224 #, no-wrap
1225 msgid ""
1226 " /boot => /dev/sda1\n"
1227 " /     => /dev/vg_guest/lv_root\n"
1228 " /usr  => /dev/vg_guest/lv_usr\n"
1229 "\n"
1230 msgstr ""
1231
1232 #. type: textblock
1233 #: ../src/guestfs.pod:588
1234 msgid ""
1235 "The caller can then make calls to L</guestfs_mount_options> to mount the "
1236 "filesystems as suggested."
1237 msgstr ""
1238
1239 #. type: textblock
1240 #: ../src/guestfs.pod:591
1241 msgid ""
1242 "Be careful to mount filesystems in the right order (eg. C</> before "
1243 "C</usr>).  Sorting the keys of the hash by length, shortest first, should "
1244 "work."
1245 msgstr ""
1246
1247 #. type: textblock
1248 #: ../src/guestfs.pod:595
1249 msgid ""
1250 "Inspection currently only works for some common operating systems.  "
1251 "Contributors are welcome to send patches for other operating systems that we"
1252 " currently cannot detect."
1253 msgstr ""
1254
1255 #. type: textblock
1256 #: ../src/guestfs.pod:599
1257 msgid ""
1258 "Encrypted disks must be opened before inspection.  See L</ENCRYPTED DISKS> "
1259 "for more details.  The L</guestfs_inspect_os> function just ignores any "
1260 "encrypted devices."
1261 msgstr ""
1262
1263 #. type: textblock
1264 #: ../src/guestfs.pod:603
1265 msgid ""
1266 "A note on the implementation: The call L</guestfs_inspect_os> performs "
1267 "inspection and caches the results in the guest handle.  Subsequent calls to "
1268 "C<guestfs_inspect_get_*> return this cached information, but I<do not> re-"
1269 "read the disks.  If you change the content of the guest disks, you can redo "
1270 "inspection by calling L</guestfs_inspect_os> again.  "
1271 "(L</guestfs_inspect_list_applications> works a little differently from the "
1272 "other calls and does read the disks.  See documentation for that function "
1273 "for details)."
1274 msgstr ""
1275
1276 #. type: =head3
1277 #: ../src/guestfs.pod:612
1278 msgid "INSPECTING INSTALL DISKS"
1279 msgstr ""
1280
1281 #. type: textblock
1282 #: ../src/guestfs.pod:614
1283 msgid ""
1284 "Libguestfs (since 1.9.4) can detect some install disks, install CDs, live "
1285 "CDs and more."
1286 msgstr ""
1287
1288 #. type: textblock
1289 #: ../src/guestfs.pod:617
1290 msgid ""
1291 "Call L</guestfs_inspect_get_format> to return the format of the operating "
1292 "system, which currently can be C<installed> (a regular operating system) or "
1293 "C<installer> (some sort of install disk)."
1294 msgstr ""
1295
1296 #. type: textblock
1297 #: ../src/guestfs.pod:621
1298 msgid ""
1299 "Further information is available about the operating system that can be "
1300 "installed using the regular inspection APIs like "
1301 "L</guestfs_inspect_get_product_name>, L</guestfs_inspect_get_major_version> "
1302 "etc."
1303 msgstr ""
1304
1305 #. type: textblock
1306 #: ../src/guestfs.pod:626
1307 msgid ""
1308 "Some additional information specific to installer disks is also available "
1309 "from the L</guestfs_inspect_is_live>, L</guestfs_inspect_is_netinst> and "
1310 "L</guestfs_inspect_is_multipart> calls."
1311 msgstr ""
1312
1313 #. type: =head2
1314 #: ../src/guestfs.pod:631
1315 msgid "SPECIAL CONSIDERATIONS FOR WINDOWS GUESTS"
1316 msgstr ""
1317
1318 #. type: textblock
1319 #: ../src/guestfs.pod:633
1320 msgid ""
1321 "Libguestfs can mount NTFS partitions.  It does this using the L<http://www"
1322 ".ntfs-3g.org/> driver."
1323 msgstr ""
1324
1325 #. type: =head3
1326 #: ../src/guestfs.pod:636
1327 msgid "DRIVE LETTERS AND PATHS"
1328 msgstr ""
1329
1330 #. type: textblock
1331 #: ../src/guestfs.pod:638
1332 msgid ""
1333 "DOS and Windows still use drive letters, and the filesystems are always "
1334 "treated as case insensitive by Windows itself, and therefore you might find "
1335 "a Windows configuration file referring to a path like "
1336 "C<c:\\windows\\system32>.  When the filesystem is mounted in libguestfs, "
1337 "that directory might be referred to as C</WINDOWS/System32>."
1338 msgstr ""
1339
1340 #. type: textblock
1341 #: ../src/guestfs.pod:644
1342 msgid ""
1343 "Drive letter mappings can be found using inspection (see L</INSPECTION> and "
1344 "L</guestfs_inspect_get_drive_mappings>)"
1345 msgstr ""
1346
1347 #. type: textblock
1348 #: ../src/guestfs.pod:647
1349 msgid ""
1350 "Dealing with separator characters (backslash vs forward slash) is outside "
1351 "the scope of libguestfs, but usually a simple character replacement will "
1352 "work."
1353 msgstr ""
1354
1355 #. type: textblock
1356 #: ../src/guestfs.pod:651
1357 msgid ""
1358 "To resolve the case insensitivity of paths, call "
1359 "L</guestfs_case_sensitive_path>."
1360 msgstr ""
1361
1362 #. type: =head3
1363 #: ../src/guestfs.pod:654
1364 msgid "ACCESSING THE WINDOWS REGISTRY"
1365 msgstr ""
1366
1367 #. type: textblock
1368 #: ../src/guestfs.pod:656
1369 msgid ""
1370 "Libguestfs also provides some help for decoding Windows Registry \"hive\" "
1371 "files, through the library C<hivex> which is part of the libguestfs project "
1372 "although ships as a separate tarball.  You have to locate and download the "
1373 "hive file(s) yourself, and then pass them to C<hivex> functions.  See also "
1374 "the programs L<hivexml(1)>, L<hivexsh(1)>, L<hivexregedit(1)> and L<virt-"
1375 "win-reg(1)> for more help on this issue."
1376 msgstr ""
1377
1378 #. type: =head3
1379 #: ../src/guestfs.pod:664
1380 msgid "SYMLINKS ON NTFS-3G FILESYSTEMS"
1381 msgstr ""
1382
1383 #. type: textblock
1384 #: ../src/guestfs.pod:666
1385 msgid ""
1386 "Ntfs-3g tries to rewrite \"Junction Points\" and NTFS \"symbolic links\" to "
1387 "provide something which looks like a Linux symlink.  The way it tries to do "
1388 "the rewriting is described here:"
1389 msgstr ""
1390
1391 #. type: textblock
1392 #: ../src/guestfs.pod:670
1393 msgid ""
1394 "L<http://www.tuxera.com/community/ntfs-3g-advanced/junction-points-and-"
1395 "symbolic-links/>"
1396 msgstr ""
1397
1398 #. type: textblock
1399 #: ../src/guestfs.pod:672
1400 msgid ""
1401 "The essential problem is that ntfs-3g simply does not have enough "
1402 "information to do a correct job.  NTFS links can contain drive letters and "
1403 "references to external device GUIDs that ntfs-3g has no way of resolving.  "
1404 "It is almost certainly the case that libguestfs callers should ignore what "
1405 "ntfs-3g does (ie. don't use L</guestfs_readlink> on NTFS volumes)."
1406 msgstr ""
1407
1408 #. type: textblock
1409 #: ../src/guestfs.pod:679
1410 msgid ""
1411 "Instead if you encounter a symbolic link on an ntfs-3g filesystem, use "
1412 "L</guestfs_lgetxattr> to read the C<system.ntfs_reparse_data> extended "
1413 "attribute, and read the raw reparse data from that (you can find the format "
1414 "documented in various places around the web)."
1415 msgstr ""
1416
1417 #. type: =head3
1418 #: ../src/guestfs.pod:684
1419 msgid "EXTENDED ATTRIBUTES ON NTFS-3G FILESYSTEMS"
1420 msgstr ""
1421
1422 #. type: textblock
1423 #: ../src/guestfs.pod:686
1424 msgid ""
1425 "There are other useful extended attributes that can be read from ntfs-3g "
1426 "filesystems (using L</guestfs_getxattr>).  See:"
1427 msgstr ""
1428
1429 #. type: textblock
1430 #: ../src/guestfs.pod:689
1431 msgid ""
1432 "L<http://www.tuxera.com/community/ntfs-3g-advanced/extended-attributes/>"
1433 msgstr ""
1434
1435 #. type: =head2
1436 #: ../src/guestfs.pod:691
1437 msgid "USING LIBGUESTFS WITH OTHER PROGRAMMING LANGUAGES"
1438 msgstr ""
1439
1440 #. type: textblock
1441 #: ../src/guestfs.pod:693
1442 msgid ""
1443 "Although we don't want to discourage you from using the C API, we will "
1444 "mention here that the same API is also available in other languages."
1445 msgstr ""
1446
1447 #. type: textblock
1448 #: ../src/guestfs.pod:696
1449 msgid ""
1450 "The API is broadly identical in all supported languages.  This means that "
1451 "the C call C<guestfs_add_drive_ro(g,file)> is C<$g-E<gt>add_drive_ro($file)>"
1452 " in Perl, C<g.add_drive_ro(file)> in Python, and C<g#add_drive_ro file> in "
1453 "OCaml.  In other words, a straightforward, predictable isomorphism between "
1454 "each language."
1455 msgstr ""
1456
1457 #. type: textblock
1458 #: ../src/guestfs.pod:702
1459 msgid ""
1460 "Error messages are automatically transformed into exceptions if the language"
1461 " supports it."
1462 msgstr ""
1463
1464 #. type: textblock
1465 #: ../src/guestfs.pod:705
1466 msgid ""
1467 "We don't try to \"object orientify\" parts of the API in OO languages, "
1468 "although contributors are welcome to write higher level APIs above what we "
1469 "provide in their favourite languages if they wish."
1470 msgstr ""
1471
1472 #. type: =item
1473 #: ../src/guestfs.pod:711
1474 msgid "B<C++>"
1475 msgstr ""
1476
1477 #. type: textblock
1478 #: ../src/guestfs.pod:713
1479 msgid ""
1480 "You can use the I<guestfs.h> header file from C++ programs.  The C++ API is "
1481 "identical to the C API.  C++ classes and exceptions are not used."
1482 msgstr ""
1483
1484 #. type: =item
1485 #: ../src/guestfs.pod:717
1486 msgid "B<C#>"
1487 msgstr ""
1488
1489 #. type: textblock
1490 #: ../src/guestfs.pod:719
1491 msgid ""
1492 "The C# bindings are highly experimental.  Please read the warnings at the "
1493 "top of C<csharp/Libguestfs.cs>."
1494 msgstr ""
1495
1496 #. type: =item
1497 #: ../src/guestfs.pod:722
1498 msgid "B<Haskell>"
1499 msgstr ""
1500
1501 #. type: textblock
1502 #: ../src/guestfs.pod:724
1503 msgid ""
1504 "This is the only language binding that is working but incomplete.  Only "
1505 "calls which return simple integers have been bound in Haskell, and we are "
1506 "looking for help to complete this binding."
1507 msgstr ""
1508
1509 #. type: =item
1510 #: ../src/guestfs.pod:728
1511 msgid "B<Java>"
1512 msgstr ""
1513
1514 #. type: textblock
1515 #: ../src/guestfs.pod:730
1516 msgid ""
1517 "Full documentation is contained in the Javadoc which is distributed with "
1518 "libguestfs."
1519 msgstr ""
1520
1521 #. type: =item
1522 #: ../src/guestfs.pod:733
1523 msgid "B<OCaml>"
1524 msgstr ""
1525
1526 #. type: textblock
1527 #: ../src/guestfs.pod:735
1528 msgid "See L<guestfs-ocaml(3)>."
1529 msgstr ""
1530
1531 #. type: =item
1532 #: ../src/guestfs.pod:737
1533 msgid "B<Perl>"
1534 msgstr ""
1535
1536 #. type: textblock
1537 #: ../src/guestfs.pod:739
1538 msgid "See L<guestfs-perl(3)> and L<Sys::Guestfs(3)>."
1539 msgstr ""
1540
1541 #. type: =item
1542 #: ../src/guestfs.pod:741
1543 msgid "B<PHP>"
1544 msgstr ""
1545
1546 #. type: textblock
1547 #: ../src/guestfs.pod:743
1548 msgid ""
1549 "For documentation see C<README-PHP> supplied with libguestfs sources or in "
1550 "the php-libguestfs package for your distribution."
1551 msgstr ""
1552
1553 #. type: textblock
1554 #: ../src/guestfs.pod:746
1555 msgid "The PHP binding only works correctly on 64 bit machines."
1556 msgstr ""
1557
1558 #. type: =item
1559 #: ../src/guestfs.pod:748
1560 msgid "B<Python>"
1561 msgstr ""
1562
1563 #. type: textblock
1564 #: ../src/guestfs.pod:750
1565 msgid "See L<guestfs-python(3)>."
1566 msgstr ""
1567
1568 #. type: =item
1569 #: ../src/guestfs.pod:752
1570 msgid "B<Ruby>"
1571 msgstr ""
1572
1573 #. type: textblock
1574 #: ../src/guestfs.pod:754
1575 msgid "See L<guestfs-ruby(3)>."
1576 msgstr ""
1577
1578 #. type: =item
1579 #: ../src/guestfs.pod:756
1580 msgid "B<shell scripts>"
1581 msgstr ""
1582
1583 #. type: textblock
1584 #: ../src/guestfs.pod:758
1585 msgid "See L<guestfish(1)>."
1586 msgstr ""
1587
1588 #. type: =head2
1589 #: ../src/guestfs.pod:762
1590 msgid "LIBGUESTFS GOTCHAS"
1591 msgstr ""
1592
1593 #. type: textblock
1594 #: ../src/guestfs.pod:764
1595 msgid ""
1596 "L<http://en.wikipedia.org/wiki/Gotcha_(programming)>: \"A feature of a "
1597 "system [...] that works in the way it is documented but is counterintuitive "
1598 "and almost invites mistakes.\""
1599 msgstr ""
1600
1601 #. type: textblock
1602 #: ../src/guestfs.pod:768
1603 msgid ""
1604 "Since we developed libguestfs and the associated tools, there are several "
1605 "things we would have designed differently, but are now stuck with for "
1606 "backwards compatibility or other reasons.  If there is ever a libguestfs 2.0"
1607 " release, you can expect these to change.  Beware of them."
1608 msgstr ""
1609
1610 #. type: =item
1611 #: ../src/guestfs.pod:776
1612 msgid "Autosync / forgetting to sync."
1613 msgstr ""
1614
1615 #. type: textblock
1616 #: ../src/guestfs.pod:778
1617 msgid ""
1618 "I<Update:> Autosync is enabled by default for all API users starting from "
1619 "libguestfs 1.5.24.  This section only applies to older versions."
1620 msgstr ""
1621
1622 #. type: textblock
1623 #: ../src/guestfs.pod:781
1624 msgid ""
1625 "When modifying a filesystem from C or another language, you B<must> unmount "
1626 "all filesystems and call L</guestfs_sync> explicitly before you close the "
1627 "libguestfs handle.  You can also call:"
1628 msgstr ""
1629
1630 #. type: verbatim
1631 #: ../src/guestfs.pod:785
1632 #, no-wrap
1633 msgid ""
1634 " guestfs_set_autosync (g, 1);\n"
1635 "\n"
1636 msgstr ""
1637
1638 #. type: textblock
1639 #: ../src/guestfs.pod:787
1640 msgid ""
1641 "to have the unmount/sync done automatically for you when the handle 'g' is "
1642 "closed.  (This feature is called \"autosync\", L</guestfs_set_autosync> "
1643 "q.v.)"
1644 msgstr ""
1645
1646 #. type: textblock
1647 #: ../src/guestfs.pod:791
1648 msgid ""
1649 "If you forget to do this, then it is entirely possible that your changes "
1650 "won't be written out, or will be partially written, or (very rarely) that "
1651 "you'll get disk corruption."
1652 msgstr ""
1653
1654 #. type: textblock
1655 #: ../src/guestfs.pod:795
1656 msgid ""
1657 "Note that in L<guestfish(3)> autosync is the default.  So quick and dirty "
1658 "guestfish scripts that forget to sync will work just fine, which can make "
1659 "this very puzzling if you are trying to debug a problem."
1660 msgstr ""
1661
1662 #. type: =item
1663 #: ../src/guestfs.pod:799
1664 msgid "Mount option C<-o sync> should not be the default."
1665 msgstr ""
1666
1667 #. type: textblock
1668 #: ../src/guestfs.pod:801
1669 msgid ""
1670 "If you use L</guestfs_mount>, then C<-o sync,noatime> are added implicitly."
1671 "  However C<-o sync> does not add any reliability benefit, but does have a "
1672 "very large performance impact."
1673 msgstr ""
1674
1675 #. type: textblock
1676 #: ../src/guestfs.pod:805
1677 msgid ""
1678 "The work around is to use L</guestfs_mount_options> and set the mount "
1679 "options that you actually want to use."
1680 msgstr ""
1681
1682 #. type: =item
1683 #: ../src/guestfs.pod:808
1684 msgid "Read-only should be the default."
1685 msgstr ""
1686
1687 #. type: textblock
1688 #: ../src/guestfs.pod:810
1689 msgid ""
1690 "In L<guestfish(3)>, I<--ro> should be the default, and you should have to "
1691 "specify I<--rw> if you want to make changes to the image."
1692 msgstr ""
1693
1694 #. type: textblock
1695 #: ../src/guestfs.pod:813
1696 msgid "This would reduce the potential to corrupt live VM images."
1697 msgstr ""
1698
1699 #. type: textblock
1700 #: ../src/guestfs.pod:815
1701 msgid ""
1702 "Note that many filesystems change the disk when you just mount and unmount, "
1703 "even if you didn't perform any writes.  You need to use "
1704 "L</guestfs_add_drive_ro> to guarantee that the disk is not changed."
1705 msgstr ""
1706
1707 #. type: =item
1708 #: ../src/guestfs.pod:819
1709 msgid "guestfish command line is hard to use."
1710 msgstr ""
1711
1712 #. type: textblock
1713 #: ../src/guestfs.pod:821
1714 msgid ""
1715 "C<guestfish disk.img> doesn't do what people expect (open C<disk.img> for "
1716 "examination).  It tries to run a guestfish command C<disk.img> which doesn't"
1717 " exist, so it fails.  In earlier versions of guestfish the error message was"
1718 " also unintuitive, but we have corrected this since.  Like the Bourne shell,"
1719 " we should have used C<guestfish -c command> to run commands."
1720 msgstr ""
1721
1722 #. type: =item
1723 #: ../src/guestfs.pod:828
1724 msgid "guestfish megabyte modifiers don't work right on all commands"
1725 msgstr ""
1726
1727 #. type: textblock
1728 #: ../src/guestfs.pod:830
1729 msgid ""
1730 "In recent guestfish you can use C<1M> to mean 1 megabyte (and similarly for "
1731 "other modifiers).  What guestfish actually does is to multiply the number "
1732 "part by the modifier part and pass the result to the C API.  However this "
1733 "doesn't work for a few APIs which aren't expecting bytes, but are already "
1734 "expecting some other unit (eg. megabytes)."
1735 msgstr ""
1736
1737 #. type: textblock
1738 #: ../src/guestfs.pod:837
1739 msgid "The most common is L</guestfs_lvcreate>.  The guestfish command:"
1740 msgstr ""
1741
1742 #. type: verbatim
1743 #: ../src/guestfs.pod:839
1744 #, no-wrap
1745 msgid ""
1746 " lvcreate LV VG 100M\n"
1747 "\n"
1748 msgstr ""
1749
1750 #. type: textblock
1751 #: ../src/guestfs.pod:841
1752 msgid ""
1753 "does not do what you might expect.  Instead because L</guestfs_lvcreate> is "
1754 "already expecting megabytes, this tries to create a 100 I<terabyte> (100 "
1755 "megabytes * megabytes) logical volume.  The error message you get from this "
1756 "is also a little obscure."
1757 msgstr ""
1758
1759 #. type: textblock
1760 #: ../src/guestfs.pod:846
1761 msgid ""
1762 "This could be fixed in the generator by specially marking parameters and "
1763 "return values which take bytes or other units."
1764 msgstr ""
1765
1766 #. type: =item
1767 #: ../src/guestfs.pod:849
1768 msgid "Ambiguity between devices and paths"
1769 msgstr ""
1770
1771 #. type: textblock
1772 #: ../src/guestfs.pod:851
1773 msgid ""
1774 "There is a subtle ambiguity in the API between a device name (eg. "
1775 "C</dev/sdb2>) and a similar pathname.  A file might just happen to be called"
1776 " C<sdb2> in the directory C</dev> (consider some non-Unix VM image)."
1777 msgstr ""
1778
1779 #. type: textblock
1780 #: ../src/guestfs.pod:856
1781 msgid ""
1782 "In the current API we usually resolve this ambiguity by having two separate "
1783 "calls, for example L</guestfs_checksum> and L</guestfs_checksum_device>.  "
1784 "Some API calls are ambiguous and (incorrectly) resolve the problem by "
1785 "detecting if the path supplied begins with C</dev/>."
1786 msgstr ""
1787
1788 #. type: textblock
1789 #: ../src/guestfs.pod:862
1790 msgid ""
1791 "To avoid both the ambiguity and the need to duplicate some calls, we could "
1792 "make paths/devices into structured names.  One way to do this would be to "
1793 "use a notation like grub (C<hd(0,0)>), although nobody really likes this "
1794 "aspect of grub.  Another way would be to use a structured type, equivalent "
1795 "to this OCaml type:"
1796 msgstr ""
1797
1798 #. type: verbatim
1799 #: ../src/guestfs.pod:868
1800 #, no-wrap
1801 msgid ""
1802 " type path = Path of string | Device of int | Partition of int * int\n"
1803 "\n"
1804 msgstr ""
1805
1806 #. type: textblock
1807 #: ../src/guestfs.pod:870
1808 msgid "which would allow you to pass arguments like:"
1809 msgstr ""
1810
1811 #. type: verbatim
1812 #: ../src/guestfs.pod:872
1813 #, no-wrap
1814 msgid ""
1815 " Path \"/foo/bar\"\n"
1816 " Device 1            (* /dev/sdb, or perhaps /dev/sda *)\n"
1817 " Partition (1, 2)    (* /dev/sdb2 (or is it /dev/sda2 or /dev/sdb3?) *)\n"
1818 " Path \"/dev/sdb2\"    (* not a device *)\n"
1819 "\n"
1820 msgstr ""
1821
1822 #. type: textblock
1823 #: ../src/guestfs.pod:877
1824 msgid ""
1825 "As you can see there are still problems to resolve even with this "
1826 "representation.  Also consider how it might work in guestfish."
1827 msgstr ""
1828
1829 #. type: =head2
1830 #: ../src/guestfs.pod:882
1831 msgid "KEYS AND PASSPHRASES"
1832 msgstr ""
1833
1834 #. type: textblock
1835 #: ../src/guestfs.pod:884
1836 msgid ""
1837 "Certain libguestfs calls take a parameter that contains sensitive key "
1838 "material, passed in as a C string."
1839 msgstr ""
1840
1841 #. type: textblock
1842 #: ../src/guestfs.pod:887
1843 msgid ""
1844 "In the future we would hope to change the libguestfs implementation so that "
1845 "keys are L<mlock(2)>-ed into physical RAM, and thus can never end up in "
1846 "swap.  However this is I<not> done at the moment, because of the complexity "
1847 "of such an implementation."
1848 msgstr ""
1849
1850 #. type: textblock
1851 #: ../src/guestfs.pod:892
1852 msgid ""
1853 "Therefore you should be aware that any key parameter you pass to libguestfs "
1854 "might end up being written out to the swap partition.  If this is a concern,"
1855 " scrub the swap partition or don't use libguestfs on encrypted devices."
1856 msgstr ""
1857
1858 #. type: =head2
1859 #: ../src/guestfs.pod:897
1860 msgid "MULTIPLE HANDLES AND MULTIPLE THREADS"
1861 msgstr ""
1862
1863 #. type: textblock
1864 #: ../src/guestfs.pod:899
1865 msgid ""
1866 "All high-level libguestfs actions are synchronous.  If you want to use "
1867 "libguestfs asynchronously then you must create a thread."
1868 msgstr ""
1869
1870 #. type: textblock
1871 #: ../src/guestfs.pod:902
1872 msgid ""
1873 "Only use the handle from a single thread.  Either use the handle exclusively"
1874 " from one thread, or provide your own mutex so that two threads cannot issue"
1875 " calls on the same handle at the same time."
1876 msgstr ""
1877
1878 #. type: textblock
1879 #: ../src/guestfs.pod:906
1880 msgid ""
1881 "See the graphical program guestfs-browser for one possible architecture for "
1882 "multithreaded programs using libvirt and libguestfs."
1883 msgstr ""
1884
1885 #. type: =head2
1886 #: ../src/guestfs.pod:909
1887 msgid "PATH"
1888 msgstr ""
1889
1890 #. type: textblock
1891 #: ../src/guestfs.pod:911
1892 msgid ""
1893 "Libguestfs needs a supermin appliance, which it finds by looking along an "
1894 "internal path."
1895 msgstr ""
1896
1897 #. type: textblock
1898 #: ../src/guestfs.pod:914
1899 msgid ""
1900 "By default it looks for these in the directory C<$libdir/guestfs> (eg. "
1901 "C</usr/local/lib/guestfs> or C</usr/lib64/guestfs>)."
1902 msgstr ""
1903
1904 #. type: textblock
1905 #: ../src/guestfs.pod:917
1906 msgid ""
1907 "Use L</guestfs_set_path> or set the environment variable L</LIBGUESTFS_PATH>"
1908 " to change the directories that libguestfs will search in.  The value is a "
1909 "colon-separated list of paths.  The current directory is I<not> searched "
1910 "unless the path contains an empty element or C<.>.  For example "
1911 "C<LIBGUESTFS_PATH=:/usr/lib/guestfs> would search the current directory and "
1912 "then C</usr/lib/guestfs>."
1913 msgstr ""
1914
1915 #. type: =head2
1916 #: ../src/guestfs.pod:924
1917 msgid "QEMU WRAPPERS"
1918 msgstr ""
1919
1920 #. type: textblock
1921 #: ../src/guestfs.pod:926
1922 msgid ""
1923 "If you want to compile your own qemu, run qemu from a non-standard location,"
1924 " or pass extra arguments to qemu, then you can write a shell-script wrapper "
1925 "around qemu."
1926 msgstr ""
1927
1928 #. type: textblock
1929 #: ../src/guestfs.pod:930
1930 msgid ""
1931 "There is one important rule to remember: you I<must C<exec qemu>> as the "
1932 "last command in the shell script (so that qemu replaces the shell and "
1933 "becomes the direct child of the libguestfs-using program).  If you don't do "
1934 "this, then the qemu process won't be cleaned up correctly."
1935 msgstr ""
1936
1937 #. type: textblock
1938 #: ../src/guestfs.pod:935
1939 msgid ""
1940 "Here is an example of a wrapper, where I have built my own copy of qemu from"
1941 " source:"
1942 msgstr ""
1943
1944 #. type: verbatim
1945 #: ../src/guestfs.pod:938
1946 #, no-wrap
1947 msgid ""
1948 " #!/bin/sh -\n"
1949 " qemudir=/home/rjones/d/qemu\n"
1950 " exec $qemudir/x86_64-softmmu/qemu-system-x86_64 -L $qemudir/pc-bios \"$@\"\n"
1951 "\n"
1952 msgstr ""
1953
1954 #. type: textblock
1955 #: ../src/guestfs.pod:942
1956 msgid ""
1957 "Save this script as C</tmp/qemu.wrapper> (or wherever), C<chmod +x>, and "
1958 "then use it by setting the LIBGUESTFS_QEMU environment variable.  For "
1959 "example:"
1960 msgstr ""
1961
1962 #. type: verbatim
1963 #: ../src/guestfs.pod:946
1964 #, no-wrap
1965 msgid ""
1966 " LIBGUESTFS_QEMU=/tmp/qemu.wrapper guestfish\n"
1967 "\n"
1968 msgstr ""
1969
1970 #. type: textblock
1971 #: ../src/guestfs.pod:948
1972 msgid ""
1973 "Note that libguestfs also calls qemu with the -help and -version options in "
1974 "order to determine features."
1975 msgstr ""
1976
1977 #. type: =head2
1978 #: ../src/guestfs.pod:951
1979 msgid "ATTACHING TO RUNNING DAEMONS"
1980 msgstr ""
1981
1982 #. type: textblock
1983 #: ../src/guestfs.pod:953
1984 msgid ""
1985 "I<Note (1):> This is B<highly experimental> and has a tendency to eat "
1986 "babies.  Use with caution."
1987 msgstr ""
1988
1989 #. type: textblock
1990 #: ../src/guestfs.pod:956
1991 msgid ""
1992 "I<Note (2):> This section explains how to attach to a running daemon from a "
1993 "low level perspective.  For most users, simply using virt tools such as "
1994 "L<guestfish(1)> with the I<--live> option will \"just work\"."
1995 msgstr ""
1996
1997 #. type: =head3
1998 #: ../src/guestfs.pod:960
1999 msgid "Using guestfs_set_attach_method"
2000 msgstr ""
2001
2002 #. type: textblock
2003 #: ../src/guestfs.pod:962
2004 msgid ""
2005 "By calling L</guestfs_set_attach_method> you can change how the library "
2006 "connects to the C<guestfsd> daemon in L</guestfs_launch> (read "
2007 "L</ARCHITECTURE> for some background)."
2008 msgstr ""
2009
2010 #. type: textblock
2011 #: ../src/guestfs.pod:966
2012 msgid ""
2013 "The normal attach method is C<appliance>, where a small appliance is created"
2014 " containing the daemon, and then the library connects to this."
2015 msgstr ""
2016
2017 #. type: textblock
2018 #: ../src/guestfs.pod:969
2019 msgid ""
2020 "Setting attach method to C<unix:I<path>> (where I<path> is the path of a "
2021 "Unix domain socket) causes L</guestfs_launch> to connect to an existing "
2022 "daemon over the Unix domain socket."
2023 msgstr ""
2024
2025 #. type: textblock
2026 #: ../src/guestfs.pod:973
2027 msgid ""
2028 "The normal use for this is to connect to a running virtual machine that "
2029 "contains a C<guestfsd> daemon, and send commands so you can read and write "
2030 "files inside the live virtual machine."
2031 msgstr ""
2032
2033 #. type: =head3
2034 #: ../src/guestfs.pod:977
2035 msgid "Using guestfs_add_domain with live flag"
2036 msgstr ""
2037
2038 #. type: textblock
2039 #: ../src/guestfs.pod:979
2040 msgid ""
2041 "L</guestfs_add_domain> provides some help for getting the correct attach "
2042 "method.  If you pass the C<live> option to this function, then (if the "
2043 "virtual machine is running) it will examine the libvirt XML looking for a "
2044 "virtio-serial channel to connect to:"
2045 msgstr ""
2046
2047 #. type: verbatim
2048 #: ../src/guestfs.pod:985
2049 #, no-wrap
2050 msgid ""
2051 " <domain>\n"
2052 "   ...\n"
2053 "   <devices>\n"
2054 "     ...\n"
2055 "     <channel type='unix'>\n"
2056 "       <source mode='bind' path='/path/to/socket'/>\n"
2057 "       <target type='virtio' name='org.libguestfs.channel.0'/>\n"
2058 "     </channel>\n"
2059 "     ...\n"
2060 "   </devices>\n"
2061 " </domain>\n"
2062 "\n"
2063 msgstr ""
2064
2065 #. type: textblock
2066 #: ../src/guestfs.pod:997
2067 msgid ""
2068 "L</guestfs_add_domain> extracts C</path/to/socket> and sets the attach "
2069 "method to C<unix:/path/to/socket>."
2070 msgstr ""
2071
2072 #. type: textblock
2073 #: ../src/guestfs.pod:1000
2074 msgid ""
2075 "Some of the libguestfs tools (including guestfish) support a I<--live> "
2076 "option which is passed through to L</guestfs_add_domain> thus allowing you "
2077 "to attach to and modify live virtual machines."
2078 msgstr ""
2079
2080 #. type: textblock
2081 #: ../src/guestfs.pod:1004
2082 msgid ""
2083 "The virtual machine needs to have been set up beforehand so that it has the "
2084 "virtio-serial channel and so that guestfsd is running inside it."
2085 msgstr ""
2086
2087 #. type: =head2
2088 #: ../src/guestfs.pod:1008
2089 msgid "ABI GUARANTEE"
2090 msgstr ""
2091
2092 #. type: textblock
2093 #: ../src/guestfs.pod:1010
2094 msgid ""
2095 "We guarantee the libguestfs ABI (binary interface), for public, high-level "
2096 "actions as outlined in this section.  Although we will deprecate some "
2097 "actions, for example if they get replaced by newer calls, we will keep the "
2098 "old actions forever.  This allows you the developer to program in confidence"
2099 " against the libguestfs API."
2100 msgstr ""
2101
2102 #. type: =head2
2103 #: ../src/guestfs.pod:1016
2104 msgid "BLOCK DEVICE NAMING"
2105 msgstr ""
2106
2107 #. type: textblock
2108 #: ../src/guestfs.pod:1018
2109 msgid ""
2110 "In the kernel there is now quite a profusion of schemata for naming block "
2111 "devices (in this context, by I<block device> I mean a physical or virtual "
2112 "hard drive).  The original Linux IDE driver used names starting with "
2113 "C</dev/hd*>.  SCSI devices have historically used a different naming scheme,"
2114 " C</dev/sd*>.  When the Linux kernel I<libata> driver became a popular "
2115 "replacement for the old IDE driver (particularly for SATA devices) those "
2116 "devices also used the C</dev/sd*> scheme.  Additionally we now have virtual "
2117 "machines with paravirtualized drivers.  This has created several different "
2118 "naming systems, such as C</dev/vd*> for virtio disks and C</dev/xvd*> for "
2119 "Xen PV disks."
2120 msgstr ""
2121
2122 #. type: textblock
2123 #: ../src/guestfs.pod:1030
2124 msgid ""
2125 "As discussed above, libguestfs uses a qemu appliance running an embedded "
2126 "Linux kernel to access block devices.  We can run a variety of appliances "
2127 "based on a variety of Linux kernels."
2128 msgstr ""
2129
2130 #. type: textblock
2131 #: ../src/guestfs.pod:1034
2132 msgid ""
2133 "This causes a problem for libguestfs because many API calls use device or "
2134 "partition names.  Working scripts and the recipe (example) scripts that we "
2135 "make available over the internet could fail if the naming scheme changes."
2136 msgstr ""
2137
2138 #. type: textblock
2139 #: ../src/guestfs.pod:1039
2140 msgid ""
2141 "Therefore libguestfs defines C</dev/sd*> as the I<standard naming scheme>.  "
2142 "Internally C</dev/sd*> names are translated, if necessary, to other names as"
2143 " required.  For example, under RHEL 5 which uses the C</dev/hd*> scheme, any"
2144 " device parameter C</dev/sda2> is translated to C</dev/hda2> transparently."
2145 msgstr ""
2146
2147 #. type: textblock
2148 #: ../src/guestfs.pod:1045
2149 msgid ""
2150 "Note that this I<only> applies to parameters.  The L</guestfs_list_devices>,"
2151 " L</guestfs_list_partitions> and similar calls return the true names of the "
2152 "devices and partitions as known to the appliance."
2153 msgstr ""
2154
2155 #. type: =head3
2156 #: ../src/guestfs.pod:1050
2157 msgid "ALGORITHM FOR BLOCK DEVICE NAME TRANSLATION"
2158 msgstr ""
2159
2160 #. type: textblock
2161 #: ../src/guestfs.pod:1052
2162 msgid ""
2163 "Usually this translation is transparent.  However in some (very rare)  cases"
2164 " you may need to know the exact algorithm.  Such cases include where you use"
2165 " L</guestfs_config> to add a mixture of virtio and IDE devices to the qemu-"
2166 "based appliance, so have a mixture of C</dev/sd*> and C</dev/vd*> devices."
2167 msgstr ""
2168
2169 #. type: textblock
2170 #: ../src/guestfs.pod:1058
2171 msgid ""
2172 "The algorithm is applied only to I<parameters> which are known to be either "
2173 "device or partition names.  Return values from functions such as "
2174 "L</guestfs_list_devices> are never changed."
2175 msgstr ""
2176
2177 #. type: textblock
2178 #: ../src/guestfs.pod:1066
2179 msgid "Is the string a parameter which is a device or partition name?"
2180 msgstr ""
2181
2182 #. type: textblock
2183 #: ../src/guestfs.pod:1070
2184 msgid "Does the string begin with C</dev/sd>?"
2185 msgstr ""
2186
2187 #. type: textblock
2188 #: ../src/guestfs.pod:1074
2189 msgid ""
2190 "Does the named device exist? If so, we use that device.  However if I<not> "
2191 "then we continue with this algorithm."
2192 msgstr ""
2193
2194 #. type: textblock
2195 #: ../src/guestfs.pod:1079
2196 msgid "Replace initial C</dev/sd> string with C</dev/hd>."
2197 msgstr ""
2198
2199 #. type: textblock
2200 #: ../src/guestfs.pod:1081
2201 msgid "For example, change C</dev/sda2> to C</dev/hda2>."
2202 msgstr ""
2203
2204 #. type: textblock
2205 #: ../src/guestfs.pod:1083
2206 msgid "If that named device exists, use it.  If not, continue."
2207 msgstr ""
2208
2209 #. type: textblock
2210 #: ../src/guestfs.pod:1087
2211 msgid "Replace initial C</dev/sd> string with C</dev/vd>."
2212 msgstr ""
2213
2214 #. type: textblock
2215 #: ../src/guestfs.pod:1089
2216 msgid "If that named device exists, use it.  If not, return an error."
2217 msgstr ""
2218
2219 #. type: =head3
2220 #: ../src/guestfs.pod:1093
2221 msgid "PORTABILITY CONCERNS WITH BLOCK DEVICE NAMING"
2222 msgstr ""
2223
2224 #. type: textblock
2225 #: ../src/guestfs.pod:1095
2226 msgid ""
2227 "Although the standard naming scheme and automatic translation is useful for "
2228 "simple programs and guestfish scripts, for larger programs it is best not to"
2229 " rely on this mechanism."
2230 msgstr ""
2231
2232 #. type: textblock
2233 #: ../src/guestfs.pod:1099
2234 msgid ""
2235 "Where possible for maximum future portability programs using libguestfs "
2236 "should use these future-proof techniques:"
2237 msgstr ""
2238
2239 #. type: textblock
2240 #: ../src/guestfs.pod:1106
2241 msgid ""
2242 "Use L</guestfs_list_devices> or L</guestfs_list_partitions> to list actual "
2243 "device names, and then use those names directly."
2244 msgstr ""
2245
2246 #. type: textblock
2247 #: ../src/guestfs.pod:1109
2248 msgid ""
2249 "Since those device names exist by definition, they will never be translated."
2250 msgstr ""
2251
2252 #. type: textblock
2253 #: ../src/guestfs.pod:1114
2254 msgid ""
2255 "Use higher level ways to identify filesystems, such as LVM names, UUIDs and "
2256 "filesystem labels."
2257 msgstr ""
2258
2259 #. type: =head1
2260 #: ../src/guestfs.pod:1119
2261 msgid "SECURITY"
2262 msgstr ""
2263
2264 #. type: textblock
2265 #: ../src/guestfs.pod:1121
2266 msgid ""
2267 "This section discusses security implications of using libguestfs, "
2268 "particularly with untrusted or malicious guests or disk images."
2269 msgstr ""
2270
2271 #. type: =head2
2272 #: ../src/guestfs.pod:1124
2273 msgid "GENERAL SECURITY CONSIDERATIONS"
2274 msgstr ""
2275
2276 #. type: textblock
2277 #: ../src/guestfs.pod:1126
2278 msgid ""
2279 "Be careful with any files or data that you download from a guest (by "
2280 "\"download\" we mean not just the L</guestfs_download> command but any "
2281 "command that reads files, filenames, directories or anything else from a "
2282 "disk image).  An attacker could manipulate the data to fool your program "
2283 "into doing the wrong thing.  Consider cases such as:"
2284 msgstr ""
2285
2286 #. type: textblock
2287 #: ../src/guestfs.pod:1136
2288 msgid "the data (file etc) not being present"
2289 msgstr ""
2290
2291 #. type: textblock
2292 #: ../src/guestfs.pod:1140
2293 msgid "being present but empty"
2294 msgstr ""
2295
2296 #. type: textblock
2297 #: ../src/guestfs.pod:1144
2298 msgid "being much larger than normal"
2299 msgstr ""
2300
2301 #. type: textblock
2302 #: ../src/guestfs.pod:1148
2303 msgid "containing arbitrary 8 bit data"
2304 msgstr ""
2305
2306 #. type: textblock
2307 #: ../src/guestfs.pod:1152
2308 msgid "being in an unexpected character encoding"
2309 msgstr ""
2310
2311 #. type: textblock
2312 #: ../src/guestfs.pod:1156
2313 msgid "containing homoglyphs."
2314 msgstr ""
2315
2316 #. type: =head2
2317 #: ../src/guestfs.pod:1160
2318 msgid "SECURITY OF MOUNTING FILESYSTEMS"
2319 msgstr ""
2320
2321 #. type: textblock
2322 #: ../src/guestfs.pod:1162
2323 msgid ""
2324 "When you mount a filesystem under Linux, mistakes in the kernel filesystem "
2325 "(VFS) module can sometimes be escalated into exploits by deliberately "
2326 "creating a malicious, malformed filesystem.  These exploits are very severe "
2327 "for two reasons.  Firstly there are very many filesystem drivers in the "
2328 "kernel, and many of them are infrequently used and not much developer "
2329 "attention has been paid to the code.  Linux userspace helps potential "
2330 "crackers by detecting the filesystem type and automatically choosing the "
2331 "right VFS driver, even if that filesystem type is obscure or unexpected for "
2332 "the administrator.  Secondly, a kernel-level exploit is like a local root "
2333 "exploit (worse in some ways), giving immediate and total access to the "
2334 "system right down to the hardware level."
2335 msgstr ""
2336
2337 #. type: textblock
2338 #: ../src/guestfs.pod:1175
2339 msgid ""
2340 "That explains why you should never mount a filesystem from an untrusted "
2341 "guest on your host kernel.  How about libguestfs? We run a Linux kernel "
2342 "inside a qemu virtual machine, usually running as a non-root user.  The "
2343 "attacker would need to write a filesystem which first exploited the kernel, "
2344 "and then exploited either qemu virtualization (eg. a faulty qemu driver) or "
2345 "the libguestfs protocol, and finally to be as serious as the host kernel "
2346 "exploit it would need to escalate its privileges to root.  This multi-step "
2347 "escalation, performed by a static piece of data, is thought to be extremely "
2348 "hard to do, although we never say 'never' about security issues."
2349 msgstr ""
2350
2351 #. type: textblock
2352 #: ../src/guestfs.pod:1186
2353 msgid ""
2354 "In any case callers can reduce the attack surface by forcing the filesystem "
2355 "type when mounting (use L</guestfs_mount_vfs>)."
2356 msgstr ""
2357
2358 #. type: =head2
2359 #: ../src/guestfs.pod:1189
2360 msgid "PROTOCOL SECURITY"
2361 msgstr ""
2362
2363 #. type: textblock
2364 #: ../src/guestfs.pod:1191
2365 msgid ""
2366 "The protocol is designed to be secure, being based on RFC 4506 (XDR)  with a"
2367 " defined upper message size.  However a program that uses libguestfs must "
2368 "also take care - for example you can write a program that downloads a binary"
2369 " from a disk image and executes it locally, and no amount of protocol "
2370 "security will save you from the consequences."
2371 msgstr ""
2372
2373 #. type: =head2
2374 #: ../src/guestfs.pod:1197
2375 msgid "INSPECTION SECURITY"
2376 msgstr ""
2377
2378 #. type: textblock
2379 #: ../src/guestfs.pod:1199
2380 msgid ""
2381 "Parts of the inspection API (see L</INSPECTION>) return untrusted strings "
2382 "directly from the guest, and these could contain any 8 bit data.  Callers "
2383 "should be careful to escape these before printing them to a structured file "
2384 "(for example, use HTML escaping if creating a web page)."
2385 msgstr ""
2386
2387 #. type: textblock
2388 #: ../src/guestfs.pod:1205
2389 msgid ""
2390 "Guest configuration may be altered in unusual ways by the administrator of "
2391 "the virtual machine, and may not reflect reality (particularly for untrusted"
2392 " or actively malicious guests).  For example we parse the hostname from "
2393 "configuration files like C</etc/sysconfig/network> that we find in the "
2394 "guest, but the guest administrator can easily manipulate these files to "
2395 "provide the wrong hostname."
2396 msgstr ""
2397
2398 #. type: textblock
2399 #: ../src/guestfs.pod:1213
2400 msgid ""
2401 "The inspection API parses guest configuration using two external libraries: "
2402 "Augeas (Linux configuration) and hivex (Windows Registry).  Both are "
2403 "designed to be robust in the face of malicious data, although denial of "
2404 "service attacks are still possible, for example with oversized configuration"
2405 " files."
2406 msgstr ""
2407
2408 #. type: =head2
2409 #: ../src/guestfs.pod:1219
2410 msgid "RUNNING UNTRUSTED GUEST COMMANDS"
2411 msgstr ""
2412
2413 #. type: textblock
2414 #: ../src/guestfs.pod:1221
2415 msgid ""
2416 "Be very cautious about running commands from the guest.  By running a "
2417 "command in the guest, you are giving CPU time to a binary that you do not "
2418 "control, under the same user account as the library, albeit wrapped in qemu "
2419 "virtualization.  More information and alternatives can be found in the "
2420 "section L</RUNNING COMMANDS>."
2421 msgstr ""
2422
2423 #. type: =head2
2424 #: ../src/guestfs.pod:1227
2425 msgid "CVE-2010-3851"
2426 msgstr ""
2427
2428 #. type: textblock
2429 #: ../src/guestfs.pod:1229
2430 msgid "https://bugzilla.redhat.com/642934"
2431 msgstr ""
2432
2433 #. type: textblock
2434 #: ../src/guestfs.pod:1231
2435 msgid ""
2436 "This security bug concerns the automatic disk format detection that qemu "
2437 "does on disk images."
2438 msgstr ""
2439
2440 #. type: textblock
2441 #: ../src/guestfs.pod:1234
2442 msgid ""
2443 "A raw disk image is just the raw bytes, there is no header.  Other disk "
2444 "images like qcow2 contain a special header.  Qemu deals with this by looking"
2445 " for one of the known headers, and if none is found then assuming the disk "
2446 "image must be raw."
2447 msgstr ""
2448
2449 #. type: textblock
2450 #: ../src/guestfs.pod:1239
2451 msgid ""
2452 "This allows a guest which has been given a raw disk image to write some "
2453 "other header.  At next boot (or when the disk image is accessed by "
2454 "libguestfs) qemu would do autodetection and think the disk image format was,"
2455 " say, qcow2 based on the header written by the guest."
2456 msgstr ""
2457
2458 #. type: textblock
2459 #: ../src/guestfs.pod:1244
2460 msgid ""
2461 "This in itself would not be a problem, but qcow2 offers many features, one "
2462 "of which is to allow a disk image to refer to another image (called the "
2463 "\"backing disk\").  It does this by placing the path to the backing disk "
2464 "into the qcow2 header.  This path is not validated and could point to any "
2465 "host file (eg. \"/etc/passwd\").  The backing disk is then exposed through "
2466 "\"holes\" in the qcow2 disk image, which of course is completely under the "
2467 "control of the attacker."
2468 msgstr ""
2469
2470 #. type: textblock
2471 #: ../src/guestfs.pod:1252
2472 msgid ""
2473 "In libguestfs this is rather hard to exploit except under two circumstances:"
2474 msgstr ""
2475
2476 #. type: textblock
2477 #: ../src/guestfs.pod:1259
2478 msgid "You have enabled the network or have opened the disk in write mode."
2479 msgstr ""
2480
2481 #. type: textblock
2482 #: ../src/guestfs.pod:1263
2483 msgid ""
2484 "You are also running untrusted code from the guest (see L</RUNNING "
2485 "COMMANDS>)."
2486 msgstr ""
2487
2488 #. type: textblock
2489 #: ../src/guestfs.pod:1268
2490 msgid ""
2491 "The way to avoid this is to specify the expected disk format when adding "
2492 "disks (the optional C<format> option to L</guestfs_add_drive_opts>).  You "
2493 "should always do this if the disk is raw format, and it's a good idea for "
2494 "other cases too."
2495 msgstr ""
2496
2497 #. type: textblock
2498 #: ../src/guestfs.pod:1273
2499 msgid ""
2500 "For disks added from libvirt using calls like L</guestfs_add_domain>, the "
2501 "format is fetched from libvirt and passed through."
2502 msgstr ""
2503
2504 #. type: textblock
2505 #: ../src/guestfs.pod:1276
2506 msgid ""
2507 "For libguestfs tools, use the I<--format> command line parameter as "
2508 "appropriate."
2509 msgstr ""
2510
2511 #. type: =head1
2512 #: ../src/guestfs.pod:1279
2513 msgid "CONNECTION MANAGEMENT"
2514 msgstr ""
2515
2516 #. type: =head2
2517 #: ../src/guestfs.pod:1281
2518 msgid "guestfs_h *"
2519 msgstr ""
2520
2521 #. type: textblock
2522 #: ../src/guestfs.pod:1283
2523 msgid ""
2524 "C<guestfs_h> is the opaque type representing a connection handle.  Create a "
2525 "handle by calling L</guestfs_create>.  Call L</guestfs_close> to free the "
2526 "handle and release all resources used."
2527 msgstr ""
2528
2529 #. type: textblock
2530 #: ../src/guestfs.pod:1287
2531 msgid ""
2532 "For information on using multiple handles and threads, see the section "
2533 "L</MULTIPLE HANDLES AND MULTIPLE THREADS> above."
2534 msgstr ""
2535
2536 #. type: =head2
2537 #: ../src/guestfs.pod:1290
2538 msgid "guestfs_create"
2539 msgstr ""
2540
2541 #. type: verbatim
2542 #: ../src/guestfs.pod:1292
2543 #, no-wrap
2544 msgid ""
2545 " guestfs_h *guestfs_create (void);\n"
2546 "\n"
2547 msgstr ""
2548
2549 #. type: textblock
2550 #: ../src/guestfs.pod:1294
2551 msgid "Create a connection handle."
2552 msgstr ""
2553
2554 #. type: textblock
2555 #: ../src/guestfs.pod:1296
2556 msgid ""
2557 "On success this returns a non-NULL pointer to a handle.  On error it returns"
2558 " NULL."
2559 msgstr ""
2560
2561 #. type: textblock
2562 #: ../src/guestfs.pod:1299
2563 msgid ""
2564 "You have to \"configure\" the handle after creating it.  This includes "
2565 "calling L</guestfs_add_drive_opts> (or one of the equivalent calls) on the "
2566 "handle at least once."
2567 msgstr ""
2568
2569 #. type: textblock
2570 #: ../src/guestfs.pod:1303
2571 msgid "After configuring the handle, you have to call L</guestfs_launch>."
2572 msgstr ""
2573
2574 #. type: textblock
2575 #: ../src/guestfs.pod:1305
2576 msgid ""
2577 "You may also want to configure error handling for the handle.  See the "
2578 "L</ERROR HANDLING> section below."
2579 msgstr ""
2580
2581 #. type: =head2
2582 #: ../src/guestfs.pod:1308
2583 msgid "guestfs_close"
2584 msgstr ""
2585
2586 #. type: verbatim
2587 #: ../src/guestfs.pod:1310
2588 #, no-wrap
2589 msgid ""
2590 " void guestfs_close (guestfs_h *g);\n"
2591 "\n"
2592 msgstr ""
2593
2594 #. type: textblock
2595 #: ../src/guestfs.pod:1312
2596 msgid "This closes the connection handle and frees up all resources used."
2597 msgstr ""
2598
2599 #. type: textblock
2600 #: ../src/guestfs.pod:1314
2601 msgid ""
2602 "If autosync was set on the handle and the handle was launched, then this "
2603 "implicitly calls various functions to unmount filesystems and sync the disk."
2604 "  See L</guestfs_set_autosync> for more details."
2605 msgstr ""
2606
2607 #. type: textblock
2608 #: ../src/guestfs.pod:1318
2609 msgid "If a close callback was set on the handle, then it is called."
2610 msgstr ""
2611
2612 #. type: =head1
2613 #: ../src/guestfs.pod:1320
2614 msgid "ERROR HANDLING"
2615 msgstr ""
2616
2617 #. type: textblock
2618 #: ../src/guestfs.pod:1322
2619 msgid ""
2620 "API functions can return errors.  For example, almost all functions that "
2621 "return C<int> will return C<-1> to indicate an error."
2622 msgstr ""
2623
2624 #. type: textblock
2625 #: ../src/guestfs.pod:1325
2626 msgid ""
2627 "Additional information is available for errors: an error message string and "
2628 "optionally an error number (errno) if the thing that failed was a system "
2629 "call."
2630 msgstr ""
2631
2632 #. type: textblock
2633 #: ../src/guestfs.pod:1329
2634 msgid ""
2635 "You can get at the additional information about the last error on the handle"
2636 " by calling L</guestfs_last_error>, L</guestfs_last_errno>, and/or by "
2637 "setting up an error handler with L</guestfs_set_error_handler>."
2638 msgstr ""
2639
2640 #. type: textblock
2641 #: ../src/guestfs.pod:1334
2642 msgid ""
2643 "When the handle is created, a default error handler is installed which "
2644 "prints the error message string to C<stderr>.  For small short-running "
2645 "command line programs it is sufficient to do:"
2646 msgstr ""
2647
2648 #. type: verbatim
2649 #: ../src/guestfs.pod:1338
2650 #, no-wrap
2651 msgid ""
2652 " if (guestfs_launch (g) == -1)\n"
2653 "   exit (EXIT_FAILURE);\n"
2654 "\n"
2655 msgstr ""
2656
2657 #. type: textblock
2658 #: ../src/guestfs.pod:1341
2659 msgid ""
2660 "since the default error handler will ensure that an error message has been "
2661 "printed to C<stderr> before the program exits."
2662 msgstr ""
2663
2664 #. type: textblock
2665 #: ../src/guestfs.pod:1344
2666 msgid ""
2667 "For other programs the caller will almost certainly want to install an "
2668 "alternate error handler or do error handling in-line like this:"
2669 msgstr ""
2670
2671 #. type: verbatim
2672 #: ../src/guestfs.pod:1347
2673 #, no-wrap
2674 msgid ""
2675 " g = guestfs_create ();\n"
2676 " \n"
2677 msgstr ""
2678
2679 #. type: verbatim
2680 #: ../src/guestfs.pod:1349
2681 #, no-wrap
2682 msgid ""
2683 " /* This disables the default behaviour of printing errors\n"
2684 "    on stderr. */\n"
2685 " guestfs_set_error_handler (g, NULL, NULL);\n"
2686 " \n"
2687 msgstr ""
2688
2689 #. type: verbatim
2690 #: ../src/guestfs.pod:1353
2691 #, no-wrap
2692 msgid ""
2693 " if (guestfs_launch (g) == -1) {\n"
2694 "   /* Examine the error message and print it etc. */\n"
2695 "   char *msg = guestfs_last_error (g);\n"
2696 "   int errnum = guestfs_last_errno (g);\n"
2697 "   fprintf (stderr, \"%s\\n\", msg);\n"
2698 "   /* ... */\n"
2699 "  }\n"
2700 "\n"
2701 msgstr ""
2702
2703 #. type: textblock
2704 #: ../src/guestfs.pod:1361
2705 msgid ""
2706 "Out of memory errors are handled differently.  The default action is to call"
2707 " L<abort(3)>.  If this is undesirable, then you can set a handler using "
2708 "L</guestfs_set_out_of_memory_handler>."
2709 msgstr ""
2710
2711 #. type: textblock
2712 #: ../src/guestfs.pod:1365
2713 msgid ""
2714 "L</guestfs_create> returns C<NULL> if the handle cannot be created, and "
2715 "because there is no handle if this happens there is no way to get additional"
2716 " error information.  However L</guestfs_create> is supposed to be a "
2717 "lightweight operation which can only fail because of insufficient memory (it"
2718 " returns NULL in this case)."
2719 msgstr ""
2720
2721 #. type: =head2
2722 #: ../src/guestfs.pod:1371
2723 msgid "guestfs_last_error"
2724 msgstr ""
2725
2726 #. type: verbatim
2727 #: ../src/guestfs.pod:1373
2728 #, no-wrap
2729 msgid ""
2730 " const char *guestfs_last_error (guestfs_h *g);\n"
2731 "\n"
2732 msgstr ""
2733
2734 #. type: textblock
2735 #: ../src/guestfs.pod:1375
2736 msgid ""
2737 "This returns the last error message that happened on C<g>.  If there has not"
2738 " been an error since the handle was created, then this returns C<NULL>."
2739 msgstr ""
2740
2741 #. type: textblock
2742 #: ../src/guestfs.pod:1379
2743 msgid ""
2744 "The lifetime of the returned string is until the next error occurs, or "
2745 "L</guestfs_close> is called."
2746 msgstr ""
2747
2748 #. type: =head2
2749 #: ../src/guestfs.pod:1382
2750 msgid "guestfs_last_errno"
2751 msgstr ""
2752
2753 #. type: verbatim
2754 #: ../src/guestfs.pod:1384
2755 #, no-wrap
2756 msgid ""
2757 " int guestfs_last_errno (guestfs_h *g);\n"
2758 "\n"
2759 msgstr ""
2760
2761 #. type: textblock
2762 #: ../src/guestfs.pod:1386
2763 msgid "This returns the last error number (errno) that happened on C<g>."
2764 msgstr ""
2765
2766 #. type: textblock
2767 #: ../src/guestfs.pod:1388
2768 msgid "If successful, an errno integer not equal to zero is returned."
2769 msgstr ""
2770
2771 #. type: textblock
2772 #: ../src/guestfs.pod:1390
2773 msgid ""
2774 "If no error, this returns 0.  This call can return 0 in three situations:"
2775 msgstr ""
2776
2777 #. type: textblock
2778 #: ../src/guestfs.pod:1397
2779 msgid "There has not been any error on the handle."
2780 msgstr ""
2781
2782 #. type: textblock
2783 #: ../src/guestfs.pod:1401
2784 msgid ""
2785 "There has been an error but the errno was meaningless.  This corresponds to "
2786 "the case where the error did not come from a failed system call, but for "
2787 "some other reason."
2788 msgstr ""
2789
2790 #. type: textblock
2791 #: ../src/guestfs.pod:1407
2792 msgid ""
2793 "There was an error from a failed system call, but for some reason the errno "
2794 "was not captured and returned.  This usually indicates a bug in libguestfs."
2795 msgstr ""
2796
2797 #. type: textblock
2798 #: ../src/guestfs.pod:1413
2799 msgid ""
2800 "Libguestfs tries to convert the errno from inside the applicance into a "
2801 "corresponding errno for the caller (not entirely trivial: the appliance "
2802 "might be running a completely different operating system from the library "
2803 "and error numbers are not standardized across Un*xen).  If this could not be"
2804 " done, then the error is translated to C<EINVAL>.  In practice this should "
2805 "only happen in very rare circumstances."
2806 msgstr ""
2807
2808 #. type: =head2
2809 #: ../src/guestfs.pod:1421
2810 msgid "guestfs_set_error_handler"
2811 msgstr ""
2812
2813 #. type: verbatim
2814 #: ../src/guestfs.pod:1423
2815 #, no-wrap
2816 msgid ""
2817 " typedef void (*guestfs_error_handler_cb) (guestfs_h *g,\n"
2818 "                                           void *opaque,\n"
2819 "                                           const char *msg);\n"
2820 " void guestfs_set_error_handler (guestfs_h *g,\n"
2821 "                                 guestfs_error_handler_cb cb,\n"
2822 "                                 void *opaque);\n"
2823 "\n"
2824 msgstr ""
2825
2826 #. type: textblock
2827 #: ../src/guestfs.pod:1430
2828 msgid ""
2829 "The callback C<cb> will be called if there is an error.  The parameters "
2830 "passed to the callback are an opaque data pointer and the error message "
2831 "string."
2832 msgstr ""
2833
2834 #. type: textblock
2835 #: ../src/guestfs.pod:1434
2836 msgid ""
2837 "C<errno> is not passed to the callback.  To get that the callback must call "
2838 "L</guestfs_last_errno>."
2839 msgstr ""
2840
2841 #. type: textblock
2842 #: ../src/guestfs.pod:1437
2843 msgid ""
2844 "Note that the message string C<msg> is freed as soon as the callback "
2845 "function returns, so if you want to stash it somewhere you must make your "
2846 "own copy."
2847 msgstr ""
2848
2849 #. type: textblock
2850 #: ../src/guestfs.pod:1441
2851 msgid "The default handler prints messages on C<stderr>."
2852 msgstr ""
2853
2854 #. type: textblock
2855 #: ../src/guestfs.pod:1443
2856 msgid "If you set C<cb> to C<NULL> then I<no> handler is called."
2857 msgstr ""
2858
2859 #. type: =head2
2860 #: ../src/guestfs.pod:1445
2861 msgid "guestfs_get_error_handler"
2862 msgstr ""
2863
2864 #. type: verbatim
2865 #: ../src/guestfs.pod:1447
2866 #, no-wrap
2867 msgid ""
2868 " guestfs_error_handler_cb guestfs_get_error_handler (guestfs_h *g,\n"
2869 "                                                     void **opaque_rtn);\n"
2870 "\n"
2871 msgstr ""
2872
2873 #. type: textblock
2874 #: ../src/guestfs.pod:1450
2875 msgid "Returns the current error handler callback."
2876 msgstr ""
2877
2878 #. type: =head2
2879 #: ../src/guestfs.pod:1452
2880 msgid "guestfs_set_out_of_memory_handler"
2881 msgstr ""
2882
2883 #. type: verbatim
2884 #: ../src/guestfs.pod:1454
2885 #, no-wrap
2886 msgid ""
2887 " typedef void (*guestfs_abort_cb) (void);\n"
2888 " int guestfs_set_out_of_memory_handler (guestfs_h *g,\n"
2889 "                                        guestfs_abort_cb);\n"
2890 "\n"
2891 msgstr ""
2892
2893 #. type: textblock
2894 #: ../src/guestfs.pod:1458
2895 msgid ""
2896 "The callback C<cb> will be called if there is an out of memory situation.  "
2897 "I<Note this callback must not return>."
2898 msgstr ""
2899
2900 #. type: textblock
2901 #: ../src/guestfs.pod:1461
2902 msgid "The default is to call L<abort(3)>."
2903 msgstr ""
2904
2905 #. type: textblock
2906 #: ../src/guestfs.pod:1463
2907 msgid ""
2908 "You cannot set C<cb> to C<NULL>.  You can't ignore out of memory situations."
2909 msgstr ""
2910
2911 #. type: =head2
2912 #: ../src/guestfs.pod:1466
2913 msgid "guestfs_get_out_of_memory_handler"
2914 msgstr ""
2915
2916 #. type: verbatim
2917 #: ../src/guestfs.pod:1468
2918 #, no-wrap
2919 msgid ""
2920 " guestfs_abort_fn guestfs_get_out_of_memory_handler (guestfs_h *g);\n"
2921 "\n"
2922 msgstr ""
2923
2924 #. type: textblock
2925 #: ../src/guestfs.pod:1470
2926 msgid "This returns the current out of memory handler."
2927 msgstr ""
2928
2929 #. type: =head1
2930 #: ../src/guestfs.pod:1472
2931 msgid "API CALLS"
2932 msgstr ""
2933
2934 #. type: textblock
2935 #: ../src/guestfs.pod:1474 ../fish/guestfish.pod:1068
2936 msgid "@ACTIONS@"
2937 msgstr ""
2938
2939 #. type: =head1
2940 #: ../src/guestfs.pod:1476
2941 msgid "STRUCTURES"
2942 msgstr ""
2943
2944 #. type: textblock
2945 #: ../src/guestfs.pod:1478
2946 msgid "@STRUCTS@"
2947 msgstr ""
2948
2949 #. type: =head1
2950 #: ../src/guestfs.pod:1480
2951 msgid "AVAILABILITY"
2952 msgstr ""
2953
2954 #. type: =head2
2955 #: ../src/guestfs.pod:1482
2956 msgid "GROUPS OF FUNCTIONALITY IN THE APPLIANCE"
2957 msgstr ""
2958
2959 #. type: textblock
2960 #: ../src/guestfs.pod:1484
2961 msgid ""
2962 "Using L</guestfs_available> you can test availability of the following "
2963 "groups of functions.  This test queries the appliance to see if the "
2964 "appliance you are currently using supports the functionality."
2965 msgstr ""
2966
2967 #. type: textblock
2968 #: ../src/guestfs.pod:1489
2969 msgid "@AVAILABILITY@"
2970 msgstr ""
2971
2972 #. type: =head2
2973 #: ../src/guestfs.pod:1491
2974 msgid "GUESTFISH supported COMMAND"
2975 msgstr ""
2976
2977 #. type: textblock
2978 #: ../src/guestfs.pod:1493
2979 msgid ""
2980 "In L<guestfish(3)> there is a handy interactive command C<supported> which "
2981 "prints out the available groups and whether they are supported by this build"
2982 " of libguestfs.  Note however that you have to do C<run> first."
2983 msgstr ""
2984
2985 #. type: =head2
2986 #: ../src/guestfs.pod:1498
2987 msgid "SINGLE CALLS AT COMPILE TIME"
2988 msgstr ""
2989
2990 #. type: textblock
2991 #: ../src/guestfs.pod:1500
2992 msgid ""
2993 "Since version 1.5.8, C<E<lt>guestfs.hE<gt>> defines symbols for each C API "
2994 "function, such as:"
2995 msgstr ""
2996
2997 #. type: verbatim
2998 #: ../src/guestfs.pod:1503
2999 #, no-wrap
3000 msgid ""
3001 " #define LIBGUESTFS_HAVE_DD 1\n"
3002 "\n"
3003 msgstr ""
3004
3005 #. type: textblock
3006 #: ../src/guestfs.pod:1505
3007 msgid "if L</guestfs_dd> is available."
3008 msgstr ""
3009
3010 #. type: textblock
3011 #: ../src/guestfs.pod:1507
3012 msgid ""
3013 "Before version 1.5.8, if you needed to test whether a single libguestfs "
3014 "function is available at compile time, we recommended using build tools such"
3015 " as autoconf or cmake.  For example in autotools you could use:"
3016 msgstr ""
3017
3018 #. type: verbatim
3019 #: ../src/guestfs.pod:1512
3020 #, no-wrap
3021 msgid ""
3022 " AC_CHECK_LIB([guestfs],[guestfs_create])\n"
3023 " AC_CHECK_FUNCS([guestfs_dd])\n"
3024 "\n"
3025 msgstr ""
3026
3027 #. type: textblock
3028 #: ../src/guestfs.pod:1515
3029 msgid ""
3030 "which would result in C<HAVE_GUESTFS_DD> being either defined or not defined"
3031 " in your program."
3032 msgstr ""
3033
3034 #. type: =head2
3035 #: ../src/guestfs.pod:1518
3036 msgid "SINGLE CALLS AT RUN TIME"
3037 msgstr ""
3038
3039 #. type: textblock
3040 #: ../src/guestfs.pod:1520
3041 msgid ""
3042 "Testing at compile time doesn't guarantee that a function really exists in "
3043 "the library.  The reason is that you might be dynamically linked against a "
3044 "previous I<libguestfs.so> (dynamic library)  which doesn't have the call.  "
3045 "This situation unfortunately results in a segmentation fault, which is a "
3046 "shortcoming of the C dynamic linking system itself."
3047 msgstr ""
3048
3049 #. type: textblock
3050 #: ../src/guestfs.pod:1527
3051 msgid ""
3052 "You can use L<dlopen(3)> to test if a function is available at run time, as "
3053 "in this example program (note that you still need the compile time check as "
3054 "well):"
3055 msgstr ""
3056
3057 #. type: verbatim
3058 #: ../src/guestfs.pod:1531
3059 #, no-wrap
3060 msgid ""
3061 " #include <stdio.h>\n"
3062 " #include <stdlib.h>\n"
3063 " #include <unistd.h>\n"
3064 " #include <dlfcn.h>\n"
3065 " #include <guestfs.h>\n"
3066 " \n"
3067 msgstr ""
3068
3069 #. type: verbatim
3070 #: ../src/guestfs.pod:1537
3071 #, no-wrap
3072 msgid ""
3073 " main ()\n"
3074 " {\n"
3075 " #ifdef LIBGUESTFS_HAVE_DD\n"
3076 "   void *dl;\n"
3077 "   int has_function;\n"
3078 " \n"
3079 msgstr ""
3080
3081 #. type: verbatim
3082 #: ../src/guestfs.pod:1543
3083 #, no-wrap
3084 msgid ""
3085 "   /* Test if the function guestfs_dd is really available. */\n"
3086 "   dl = dlopen (NULL, RTLD_LAZY);\n"
3087 "   if (!dl) {\n"
3088 "     fprintf (stderr, \"dlopen: %s\\n\", dlerror ());\n"
3089 "     exit (EXIT_FAILURE);\n"
3090 "   }\n"
3091 "   has_function = dlsym (dl, \"guestfs_dd\") != NULL;\n"
3092 "   dlclose (dl);\n"
3093 " \n"
3094 msgstr ""
3095
3096 #. type: verbatim
3097 #: ../src/guestfs.pod:1552
3098 #, no-wrap
3099 msgid ""
3100 "   if (!has_function)\n"
3101 "     printf (\"this libguestfs.so does NOT have guestfs_dd function\\n\");\n"
3102 "   else {\n"
3103 "     printf (\"this libguestfs.so has guestfs_dd function\\n\");\n"
3104 "     /* Now it's safe to call\n"
3105 "     guestfs_dd (g, \"foo\", \"bar\");\n"
3106 "     */\n"
3107 "   }\n"
3108 " #else\n"
3109 "   printf (\"guestfs_dd function was not found at compile time\\n\");\n"
3110 " #endif\n"
3111 "  }\n"
3112 "\n"
3113 msgstr ""
3114
3115 #. type: textblock
3116 #: ../src/guestfs.pod:1565
3117 msgid ""
3118 "You may think the above is an awful lot of hassle, and it is.  There are "
3119 "other ways outside of the C linking system to ensure that this kind of "
3120 "incompatibility never arises, such as using package versioning:"
3121 msgstr ""
3122
3123 #. type: verbatim
3124 #: ../src/guestfs.pod:1570
3125 #, no-wrap
3126 msgid ""
3127 " Requires: libguestfs >= 1.0.80\n"
3128 "\n"
3129 msgstr ""
3130
3131 #. type: =head1
3132 #: ../src/guestfs.pod:1572
3133 msgid "CALLS WITH OPTIONAL ARGUMENTS"
3134 msgstr ""
3135
3136 #. type: textblock
3137 #: ../src/guestfs.pod:1574
3138 msgid ""
3139 "A recent feature of the API is the introduction of calls which take optional"
3140 " arguments.  In C these are declared 3 ways.  The main way is as a call "
3141 "which takes variable arguments (ie. C<...>), as in this example:"
3142 msgstr ""
3143
3144 #. type: verbatim
3145 #: ../src/guestfs.pod:1579
3146 #, no-wrap
3147 msgid ""
3148 " int guestfs_add_drive_opts (guestfs_h *g, const char *filename, ...);\n"
3149 "\n"
3150 msgstr ""
3151
3152 #. type: textblock
3153 #: ../src/guestfs.pod:1581
3154 msgid ""
3155 "Call this with a list of optional arguments, terminated by C<-1>.  So to "
3156 "call with no optional arguments specified:"
3157 msgstr ""
3158
3159 #. type: verbatim
3160 #: ../src/guestfs.pod:1584
3161 #, no-wrap
3162 msgid ""
3163 " guestfs_add_drive_opts (g, filename, -1);\n"
3164 "\n"
3165 msgstr ""
3166
3167 #. type: textblock
3168 #: ../src/guestfs.pod:1586
3169 msgid "With a single optional argument:"
3170 msgstr ""
3171
3172 #. type: verbatim
3173 #: ../src/guestfs.pod:1588
3174 #, no-wrap
3175 msgid ""
3176 " guestfs_add_drive_opts (g, filename,\n"
3177 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3178 "                         -1);\n"
3179 "\n"
3180 msgstr ""
3181
3182 #. type: textblock
3183 #: ../src/guestfs.pod:1592
3184 msgid "With two:"
3185 msgstr ""
3186
3187 #. type: verbatim
3188 #: ../src/guestfs.pod:1594
3189 #, no-wrap
3190 msgid ""
3191 " guestfs_add_drive_opts (g, filename,\n"
3192 "                         GUESTFS_ADD_DRIVE_OPTS_FORMAT, \"qcow2\",\n"
3193 "                         GUESTFS_ADD_DRIVE_OPTS_READONLY, 1,\n"
3194 "                         -1);\n"
3195 "\n"
3196 msgstr ""
3197
3198 #. type: textblock
3199 #: ../src/guestfs.pod:1599
3200 msgid ""
3201 "and so forth.  Don't forget the terminating C<-1> otherwise Bad Things will "
3202 "happen!"
3203 msgstr ""
3204
3205 #. type: =head2
3206 #: ../src/guestfs.pod:1602
3207 msgid "USING va_list FOR OPTIONAL ARGUMENTS"
3208 msgstr ""
3209
3210 #. type: textblock
3211 #: ../src/guestfs.pod:1604
3212 msgid ""
3213 "The second variant has the same name with the suffix C<_va>, which works the"
3214 " same way but takes a C<va_list>.  See the C manual for details.  For the "
3215 "example function, this is declared:"
3216 msgstr ""
3217
3218 #. type: verbatim
3219 #: ../src/guestfs.pod:1608
3220 #, no-wrap
3221 msgid ""
3222 " int guestfs_add_drive_opts_va (guestfs_h *g, const char *filename,\n"
3223 "                                va_list args);\n"
3224 "\n"
3225 msgstr ""
3226
3227 #. type: =head2
3228 #: ../src/guestfs.pod:1611
3229 msgid "CONSTRUCTING OPTIONAL ARGUMENTS"
3230 msgstr ""
3231
3232 #. type: textblock
3233 #: ../src/guestfs.pod:1613
3234 msgid ""
3235 "The third variant is useful where you need to construct these calls.  You "
3236 "pass in a structure where you fill in the optional fields.  The structure "
3237 "has a bitmask as the first element which you must set to indicate which "
3238 "fields you have filled in.  For our example function the structure and call "
3239 "are declared:"
3240 msgstr ""
3241
3242 #. type: verbatim
3243 #: ../src/guestfs.pod:1619
3244 #, no-wrap
3245 msgid ""
3246 " struct guestfs_add_drive_opts_argv {\n"
3247 "   uint64_t bitmask;\n"
3248 "   int readonly;\n"
3249 "   const char *format;\n"
3250 "   /* ... */\n"
3251 " };\n"
3252 " int guestfs_add_drive_opts_argv (guestfs_h *g, const char *filename,\n"
3253 "              const struct guestfs_add_drive_opts_argv *optargs);\n"
3254 "\n"
3255 msgstr ""
3256
3257 #. type: textblock
3258 #: ../src/guestfs.pod:1628
3259 msgid "You could call it like this:"
3260 msgstr ""
3261
3262 #. type: verbatim
3263 #: ../src/guestfs.pod:1630
3264 #, no-wrap
3265 msgid ""
3266 " struct guestfs_add_drive_opts_argv optargs = {\n"
3267 "   .bitmask = GUESTFS_ADD_DRIVE_OPTS_READONLY_BITMASK |\n"
3268 "              GUESTFS_ADD_DRIVE_OPTS_FORMAT_BITMASK,\n"
3269 "   .readonly = 1,\n"
3270 "   .format = \"qcow2\"\n"
3271 " };\n"
3272 " \n"
3273 msgstr ""
3274
3275 #. type: verbatim
3276 #: ../src/guestfs.pod:1637
3277 #, no-wrap
3278 msgid ""
3279 " guestfs_add_drive_opts_argv (g, filename, &optargs);\n"
3280 "\n"
3281 msgstr ""
3282
3283 #. type: textblock
3284 #: ../src/guestfs.pod:1639 ../src/guestfs-actions.pod:11
3285 #: ../src/guestfs-actions.pod:1917 ../src/guestfs-actions.pod:2853
3286 #: ../fish/guestfish-actions.pod:9 ../fish/guestfish-actions.pod:1287
3287 #: ../fish/guestfish-actions.pod:1929 ../tools/virt-win-reg.pl:704
3288 msgid "Notes:"
3289 msgstr ""
3290
3291 #. type: textblock
3292 #: ../src/guestfs.pod:1645
3293 msgid ""
3294 "The C<_BITMASK> suffix on each option name when specifying the bitmask."
3295 msgstr ""
3296
3297 #. type: textblock
3298 #: ../src/guestfs.pod:1650
3299 msgid "You do not need to fill in all fields of the structure."
3300 msgstr ""
3301
3302 #. type: textblock
3303 #: ../src/guestfs.pod:1654
3304 msgid ""
3305 "There must be a one-to-one correspondence between fields of the structure "
3306 "that are filled in, and bits set in the bitmask."
3307 msgstr ""
3308
3309 #. type: =head2
3310 #: ../src/guestfs.pod:1659
3311 msgid "OPTIONAL ARGUMENTS IN OTHER LANGUAGES"
3312 msgstr ""
3313
3314 #. type: textblock
3315 #: ../src/guestfs.pod:1661
3316 msgid ""
3317 "In other languages, optional arguments are expressed in the way that is "
3318 "natural for that language.  We refer you to the language-specific "
3319 "documentation for more details on that."
3320 msgstr ""
3321
3322 #. type: textblock
3323 #: ../src/guestfs.pod:1665
3324 msgid "For guestfish, see L<guestfish(1)/OPTIONAL ARGUMENTS>."
3325 msgstr ""
3326
3327 #. type: =head2
3328 #: ../src/guestfs.pod:1667
3329 msgid "SETTING CALLBACKS TO HANDLE EVENTS"
3330 msgstr ""
3331
3332 #. type: textblock
3333 #: ../src/guestfs.pod:1669
3334 msgid ""
3335 "B<Note:> This section documents the generic event mechanism introduced in "
3336 "libguestfs 1.10, which you should use in new code if possible.  The old "
3337 "functions C<guestfs_set_log_message_callback>, "
3338 "C<guestfs_set_subprocess_quit_callback>, "
3339 "C<guestfs_set_launch_done_callback>, C<guestfs_set_close_callback> and "
3340 "C<guestfs_set_progress_callback> are no longer documented in this manual "
3341 "page.  Because of the ABI guarantee, the old functions continue to work."
3342 msgstr ""
3343
3344 #. type: textblock
3345 #: ../src/guestfs.pod:1678
3346 msgid ""
3347 "Handles generate events when certain things happen, such as log messages "
3348 "being generated, progress messages during long-running operations, or the "
3349 "handle being closed.  The API calls described below let you register a "
3350 "callback to be called when events happen.  You can register multiple "
3351 "callbacks (for the same, different or overlapping sets of events), and "
3352 "individually remove callbacks.  If callbacks are not removed, then they "
3353 "remain in force until the handle is closed."
3354 msgstr ""
3355
3356 #. type: textblock
3357 #: ../src/guestfs.pod:1686
3358 msgid ""
3359 "In the current implementation, events are only generated synchronously: that"
3360 " means that events (and hence callbacks) can only happen while you are in "
3361 "the middle of making another libguestfs call.  The callback is called in the"
3362 " same thread."
3363 msgstr ""
3364
3365 #. type: textblock
3366 #: ../src/guestfs.pod:1691
3367 msgid ""
3368 "Events may contain a payload, usually nothing (void), an array of 64 bit "
3369 "unsigned integers, or a message buffer.  Payloads are discussed later on."
3370 msgstr ""
3371
3372 #. type: =head3
3373 #: ../src/guestfs.pod:1695
3374 msgid "CLASSES OF EVENTS"
3375 msgstr ""
3376
3377 #. type: =item
3378 #: ../src/guestfs.pod:1699
3379 msgid "GUESTFS_EVENT_CLOSE (payload type: void)"
3380 msgstr ""
3381
3382 #. type: textblock
3383 #: ../src/guestfs.pod:1702
3384 msgid ""
3385 "The callback function will be called while the handle is being closed "
3386 "(synchronously from L</guestfs_close>)."
3387 msgstr ""
3388
3389 #. type: textblock
3390 #: ../src/guestfs.pod:1705
3391 msgid ""
3392 "Note that libguestfs installs an L<atexit(3)> handler to try to clean up "
3393 "handles that are open when the program exits.  This means that this callback"
3394 " might be called indirectly from L<exit(3)>, which can cause unexpected "
3395 "problems in higher-level languages (eg. if your HLL interpreter has already "
3396 "been cleaned up by the time this is called, and if your callback then jumps "
3397 "into some HLL function)."
3398 msgstr ""
3399
3400 #. type: textblock
3401 #: ../src/guestfs.pod:1712
3402 msgid ""
3403 "If no callback is registered: the handle is closed without any callback "
3404 "being invoked."
3405 msgstr ""
3406
3407 #. type: =item
3408 #: ../src/guestfs.pod:1715
3409 msgid "GUESTFS_EVENT_SUBPROCESS_QUIT (payload type: void)"
3410 msgstr ""
3411
3412 #. type: textblock
3413 #: ../src/guestfs.pod:1718
3414 msgid ""
3415 "The callback function will be called when the child process quits, either "
3416 "asynchronously or if killed by L</guestfs_kill_subprocess>.  (This "
3417 "corresponds to a transition from any state to the CONFIG state)."
3418 msgstr ""
3419
3420 #. type: textblock
3421 #: ../src/guestfs.pod:1722 ../src/guestfs.pod:1731
3422 msgid "If no callback is registered: the event is ignored."
3423 msgstr ""
3424
3425 #. type: =item
3426 #: ../src/guestfs.pod:1724
3427 msgid "GUESTFS_EVENT_LAUNCH_DONE (payload type: void)"
3428 msgstr ""
3429
3430 #. type: textblock
3431 #: ../src/guestfs.pod:1727
3432 msgid ""
3433 "The callback function will be called when the child process becomes ready "
3434 "first time after it has been launched.  (This corresponds to a transition "
3435 "from LAUNCHING to the READY state)."
3436 msgstr ""
3437
3438 #. type: =item
3439 #: ../src/guestfs.pod:1733
3440 msgid "GUESTFS_EVENT_PROGRESS (payload type: array of 4 x uint64_t)"
3441 msgstr ""
3442
3443 #. type: textblock
3444 #: ../src/guestfs.pod:1736
3445 msgid ""
3446 "Some long-running operations can generate progress messages.  If this "
3447 "callback is registered, then it will be called each time a progress message "
3448 "is generated (usually two seconds after the operation started, and three "
3449 "times per second thereafter until it completes, although the frequency may "
3450 "change in future versions)."
3451 msgstr ""
3452
3453 #. type: textblock
3454 #: ../src/guestfs.pod:1742
3455 msgid ""
3456 "The callback receives in the payload four unsigned 64 bit numbers which are "
3457 "(in order): C<proc_nr>, C<serial>, C<position>, C<total>."
3458 msgstr ""
3459
3460 #. type: textblock
3461 #: ../src/guestfs.pod:1745
3462 msgid ""
3463 "The units of C<total> are not defined, although for some operations C<total>"
3464 " may relate in some way to the amount of data to be transferred (eg. in "
3465 "bytes or megabytes), and C<position> may be the portion which has been "
3466 "transferred."
3467 msgstr ""
3468
3469 #. type: textblock
3470 #: ../src/guestfs.pod:1750
3471 msgid "The only defined and stable parts of the API are:"
3472 msgstr ""
3473
3474 #. type: textblock
3475 #: ../src/guestfs.pod:1756
3476 msgid ""
3477 "The callback can display to the user some type of progress bar or indicator "
3478 "which shows the ratio of C<position>:C<total>."
3479 msgstr ""
3480
3481 #. type: textblock
3482 #: ../src/guestfs.pod:1761
3483 msgid "0 E<lt>= C<position> E<lt>= C<total>"
3484 msgstr ""
3485
3486 #. type: textblock
3487 #: ../src/guestfs.pod:1765
3488 msgid ""
3489 "If any progress notification is sent during a call, then a final progress "
3490 "notification is always sent when C<position> = C<total> (I<unless> the call "
3491 "fails with an error)."
3492 msgstr ""
3493
3494 #. type: textblock
3495 #: ../src/guestfs.pod:1769
3496 msgid ""
3497 "This is to simplify caller code, so callers can easily set the progress "
3498 "indicator to \"100%\" at the end of the operation, without requiring special"
3499 " code to detect this case."
3500 msgstr ""
3501
3502 #. type: textblock
3503 #: ../src/guestfs.pod:1775
3504 msgid ""
3505 "For some calls we are unable to estimate the progress of the call, but we "
3506 "can still generate progress messages to indicate activity.  This is known as"
3507 " \"pulse mode\", and is directly supported by certain progress bar "
3508 "implementations (eg. GtkProgressBar)."
3509 msgstr ""
3510
3511 #. type: textblock
3512 #: ../src/guestfs.pod:1780
3513 msgid ""
3514 "For these calls, zero or more progress messages are generated with "
3515 "C<position = 0> and C<total = 1>, followed by a final message with "
3516 "C<position = total = 1>."
3517 msgstr ""
3518
3519 #. type: textblock
3520 #: ../src/guestfs.pod:1784
3521 msgid ""
3522 "As noted above, if the call fails with an error then the final message may "
3523 "not be generated."
3524 msgstr ""
3525
3526 #. type: textblock
3527 #: ../src/guestfs.pod:1789
3528 msgid ""
3529 "The callback also receives the procedure number (C<proc_nr>) and serial "
3530 "number (C<serial>) of the call.  These are only useful for debugging "
3531 "protocol issues, and the callback can normally ignore them.  The callback "
3532 "may want to print these numbers in error messages or debugging messages."
3533 msgstr ""
3534
3535 #. type: textblock
3536 #: ../src/guestfs.pod:1795
3537 msgid "If no callback is registered: progress messages are discarded."
3538 msgstr ""
3539
3540 #. type: =item
3541 #: ../src/guestfs.pod:1797
3542 msgid "GUESTFS_EVENT_APPLIANCE (payload type: message buffer)"
3543 msgstr ""
3544
3545 #. type: textblock
3546 #: ../src/guestfs.pod:1800
3547 msgid ""
3548 "The callback function is called whenever a log message is generated by qemu,"
3549 " the appliance kernel, guestfsd (daemon), or utility programs."
3550 msgstr ""
3551
3552 #. type: textblock
3553 #: ../src/guestfs.pod:1803
3554 msgid ""
3555 "If the verbose flag (L</guestfs_set_verbose>) is set before launch "
3556 "(L</guestfs_launch>) then additional debug messages are generated."
3557 msgstr ""
3558
3559 #. type: textblock
3560 #: ../src/guestfs.pod:1806 ../src/guestfs.pod:1820
3561 msgid ""
3562 "If no callback is registered: the messages are discarded unless the verbose "
3563 "flag is set in which case they are sent to stderr.  You can override the "
3564 "printing of verbose messages to stderr by setting up a callback."
3565 msgstr ""
3566
3567 #. type: =item
3568 #: ../src/guestfs.pod:1811
3569 msgid "GUESTFS_EVENT_LIBRARY (payload type: message buffer)"
3570 msgstr ""
3571
3572 #. type: textblock
3573 #: ../src/guestfs.pod:1814
3574 msgid ""
3575 "The callback function is called whenever a log message is generated by the "
3576 "library part of libguestfs."
3577 msgstr ""
3578
3579 #. type: textblock
3580 #: ../src/guestfs.pod:1817
3581 msgid ""
3582 "If the verbose flag (L</guestfs_set_verbose>) is set then additional debug "
3583 "messages are generated."
3584 msgstr ""
3585
3586 #. type: =item
3587 #: ../src/guestfs.pod:1825
3588 msgid "GUESTFS_EVENT_TRACE (payload type: message buffer)"
3589 msgstr ""
3590
3591 #. type: textblock
3592 #: ../src/guestfs.pod:1828
3593 msgid ""
3594 "The callback function is called whenever a trace message is generated.  This"
3595 " only applies if the trace flag (L</guestfs_set_trace>) is set."
3596 msgstr ""
3597
3598 #. type: textblock
3599 #: ../src/guestfs.pod:1831
3600 msgid ""
3601 "If no callback is registered: the messages are sent to stderr.  You can "
3602 "override the printing of trace messages to stderr by setting up a callback."
3603 msgstr ""
3604
3605 #. type: =head3
3606 #: ../src/guestfs.pod:1837
3607 msgid "guestfs_set_event_callback"
3608 msgstr ""
3609
3610 #. type: verbatim
3611 #: ../src/guestfs.pod:1839
3612 #, no-wrap
3613 msgid ""
3614 " int guestfs_set_event_callback (guestfs_h *g,\n"
3615 "                                 guestfs_event_callback cb,\n"
3616 "                                 uint64_t event_bitmask,\n"
3617 "                                 int flags,\n"
3618 "                                 void *opaque);\n"
3619 "\n"
3620 msgstr ""
3621
3622 #. type: textblock
3623 #: ../src/guestfs.pod:1845
3624 msgid ""
3625 "This function registers a callback (C<cb>) for all event classes in the "
3626 "C<event_bitmask>."
3627 msgstr ""
3628
3629 #. type: textblock
3630 #: ../src/guestfs.pod:1848
3631 msgid ""
3632 "For example, to register for all log message events, you could call this "
3633 "function with the bitmask C<GUESTFS_EVENT_APPLIANCE|GUESTFS_EVENT_LIBRARY>."
3634 "  To register a single callback for all possible classes of events, use "
3635 "C<GUESTFS_EVENT_ALL>."
3636 msgstr ""
3637
3638 #. type: textblock
3639 #: ../src/guestfs.pod:1854
3640 msgid "C<flags> should always be passed as 0."
3641 msgstr ""
3642
3643 #. type: textblock
3644 #: ../src/guestfs.pod:1856
3645 msgid ""
3646 "C<opaque> is an opaque pointer which is passed to the callback.  You can use"
3647 " it for any purpose."
3648 msgstr ""
3649
3650 #. type: textblock
3651 #: ../src/guestfs.pod:1859
3652 msgid ""
3653 "The return value is the event handle (an integer) which you can use to "
3654 "delete the callback (see below)."
3655 msgstr ""
3656
3657 #. type: textblock
3658 #: ../src/guestfs.pod:1862
3659 msgid ""
3660 "If there is an error, this function returns C<-1>, and sets the error in the"
3661 " handle in the usual way (see L</guestfs_last_error> etc.)"
3662 msgstr ""
3663
3664 #. type: textblock
3665 #: ../src/guestfs.pod:1865
3666 msgid ""
3667 "Callbacks remain in effect until they are deleted, or until the handle is "
3668 "closed."
3669 msgstr ""
3670
3671 #. type: textblock
3672 #: ../src/guestfs.pod:1868
3673 msgid ""
3674 "In the case where multiple callbacks are registered for a particular event "
3675 "class, all of the callbacks are called.  The order in which multiple "
3676 "callbacks are called is not defined."
3677 msgstr ""
3678
3679 #. type: =head3
3680 #: ../src/guestfs.pod:1872
3681 msgid "guestfs_delete_event_callback"
3682 msgstr ""
3683
3684 #. type: verbatim
3685 #: ../src/guestfs.pod:1874
3686 #, no-wrap
3687 msgid ""
3688 " void guestfs_delete_event_callback (guestfs_h *g, int event_handle);\n"
3689 "\n"
3690 msgstr ""
3691
3692 #. type: textblock
3693 #: ../src/guestfs.pod:1876
3694 msgid ""
3695 "Delete a callback that was previously registered.  C<event_handle> should be"
3696 " the integer that was returned by a previous call to "
3697 "C<guestfs_set_event_callback> on the same handle."
3698 msgstr ""
3699
3700 #. type: =head3
3701 #: ../src/guestfs.pod:1880
3702 msgid "guestfs_event_callback"
3703 msgstr ""
3704
3705 #. type: verbatim
3706 #: ../src/guestfs.pod:1882
3707 #, no-wrap
3708 msgid ""
3709 " typedef void (*guestfs_event_callback) (\n"
3710 "                  guestfs_h *g,\n"
3711 "                  void *opaque,\n"
3712 "                  uint64_t event,\n"
3713 "                  int event_handle,\n"
3714 "                  int flags,\n"
3715 "                  const char *buf, size_t buf_len,\n"
3716 "                  const uint64_t *array, size_t array_len);\n"
3717 "\n"
3718 msgstr ""
3719
3720 #. type: textblock
3721 #: ../src/guestfs.pod:1891
3722 msgid ""
3723 "This is the type of the event callback function that you have to provide."
3724 msgstr ""
3725
3726 #. type: textblock
3727 #: ../src/guestfs.pod:1894
3728 msgid ""
3729 "The basic parameters are: the handle (C<g>), the opaque user pointer "
3730 "(C<opaque>), the event class (eg. C<GUESTFS_EVENT_PROGRESS>), the event "
3731 "handle, and C<flags> which in the current API you should ignore."
3732 msgstr ""
3733
3734 #. type: textblock
3735 #: ../src/guestfs.pod:1898
3736 msgid ""
3737 "The remaining parameters contain the event payload (if any).  Each event may"
3738 " contain a payload, which usually relates to the event class, but for future"
3739 " proofing your code should be written to handle any payload for any event "
3740 "class."
3741 msgstr ""
3742
3743 #. type: textblock
3744 #: ../src/guestfs.pod:1903
3745 msgid ""
3746 "C<buf> and C<buf_len> contain a message buffer (if C<buf_len == 0>, then "
3747 "there is no message buffer).  Note that this message buffer can contain "
3748 "arbitrary 8 bit data, including NUL bytes."
3749 msgstr ""
3750
3751 #. type: textblock
3752 #: ../src/guestfs.pod:1907
3753 msgid ""
3754 "C<array> and C<array_len> is an array of 64 bit unsigned integers.  At the "
3755 "moment this is only used for progress messages."
3756 msgstr ""
3757
3758 #. type: =head3
3759 #: ../src/guestfs.pod:1910
3760 msgid "EXAMPLE: CAPTURING LOG MESSAGES"
3761 msgstr ""
3762
3763 #. type: textblock
3764 #: ../src/guestfs.pod:1912
3765 msgid ""
3766 "One motivation for the generic event API was to allow GUI programs to "
3767 "capture debug and other messages.  In libguestfs E<le> 1.8 these were sent "
3768 "unconditionally to C<stderr>."
3769 msgstr ""
3770
3771 #. type: textblock
3772 #: ../src/guestfs.pod:1916
3773 msgid ""
3774 "Events associated with log messages are: C<GUESTFS_EVENT_LIBRARY>, "
3775 "C<GUESTFS_EVENT_APPLIANCE> and C<GUESTFS_EVENT_TRACE>.  (Note that error "
3776 "messages are not events; you must capture error messages separately)."
3777 msgstr ""
3778
3779 #. type: textblock
3780 #: ../src/guestfs.pod:1921
3781 msgid ""
3782 "Programs have to set up a callback to capture the classes of events of "
3783 "interest:"
3784 msgstr ""
3785
3786 #. type: verbatim
3787 #: ../src/guestfs.pod:1924
3788 #, no-wrap
3789 msgid ""
3790 " int eh =\n"
3791 "   guestfs_set_event_callback\n"
3792 "     (g, message_callback,\n"
3793 "      GUESTFS_EVENT_LIBRARY|GUESTFS_EVENT_APPLIANCE|\n"
3794 "      GUESTFS_EVENT_TRACE,\n"
3795 "      0, NULL) == -1)\n"
3796 " if (eh == -1) {\n"
3797 "   // handle error in the usual way\n"
3798 " }\n"
3799 "\n"
3800 msgstr ""
3801
3802 #. type: textblock
3803 #: ../src/guestfs.pod:1934
3804 msgid ""
3805 "The callback can then direct messages to the appropriate place.  In this "
3806 "example, messages are directed to syslog:"
3807 msgstr ""
3808
3809 #. type: verbatim
3810 #: ../src/guestfs.pod:1937
3811 #, no-wrap
3812 msgid ""
3813 " static void\n"
3814 " message_callback (\n"
3815 "         guestfs_h *g,\n"
3816 "         void *opaque,\n"
3817 "         uint64_t event,\n"
3818 "         int event_handle,\n"
3819 "         int flags,\n"
3820 "         const char *buf, size_t buf_len,\n"
3821 "         const uint64_t *array, size_t array_len)\n"
3822 " {\n"
3823 "   const int priority = LOG_USER|LOG_INFO;\n"
3824 "   if (buf_len > 0)\n"
3825 "     syslog (priority, \"event 0x%lx: %s\", event, buf);\n"
3826 " }\n"
3827 "\n"
3828 msgstr ""
3829
3830 #. type: =head1
3831 #: ../src/guestfs.pod:1952
3832 msgid "CANCELLING LONG TRANSFERS"
3833 msgstr ""
3834
3835 #. type: textblock
3836 #: ../src/guestfs.pod:1954
3837 msgid ""
3838 "Some operations can be cancelled by the caller while they are in progress.  "
3839 "Currently only operations that involve uploading or downloading data can be "
3840 "cancelled (technically: operations that have C<FileIn> or C<FileOut> "
3841 "parameters in the generator)."
3842 msgstr ""
3843
3844 #. type: =head2
3845 #: ../src/guestfs.pod:1959
3846 msgid "guestfs_user_cancel"
3847 msgstr ""
3848
3849 #. type: verbatim
3850 #: ../src/guestfs.pod:1961
3851 #, no-wrap
3852 msgid ""
3853 " void guestfs_user_cancel (guestfs_h *g);\n"
3854 "\n"
3855 msgstr ""
3856
3857 #. type: textblock
3858 #: ../src/guestfs.pod:1963
3859 msgid ""
3860 "C<guestfs_user_cancel> cancels the current upload or download operation."
3861 msgstr ""
3862
3863 #. type: textblock
3864 #: ../src/guestfs.pod:1966
3865 msgid ""
3866 "Unlike most other libguestfs calls, this function is signal safe and thread "
3867 "safe.  You can call it from a signal handler or from another thread, without"
3868 " needing to do any locking."
3869 msgstr ""
3870
3871 #. type: textblock
3872 #: ../src/guestfs.pod:1970
3873 msgid ""
3874 "The transfer that was in progress (if there is one) will stop shortly "
3875 "afterwards, and will return an error.  The errno (see "
3876 "L</guestfs_last_errno>) is set to C<EINTR>, so you can test for this to find"
3877 " out if the operation was cancelled or failed because of another error."
3878 msgstr ""
3879
3880 #. type: textblock
3881 #: ../src/guestfs.pod:1976
3882 msgid ""
3883 "No cleanup is performed: for example, if a file was being uploaded then "
3884 "after cancellation there may be a partially uploaded file.  It is the "
3885 "caller's responsibility to clean up if necessary."
3886 msgstr ""
3887
3888 #. type: textblock
3889 #: ../src/guestfs.pod:1980
3890 msgid ""
3891 "There are two common places that you might call C<guestfs_user_cancel>."
3892 msgstr ""
3893
3894 #. type: textblock
3895 #: ../src/guestfs.pod:1982
3896 msgid ""
3897 "In an interactive text-based program, you might call it from a C<SIGINT> "
3898 "signal handler so that pressing C<^C> cancels the current operation.  (You "
3899 "also need to call L</guestfs_set_pgroup> so that child processes don't "
3900 "receive the C<^C> signal)."
3901 msgstr ""
3902
3903 #. type: textblock
3904 #: ../src/guestfs.pod:1987
3905 msgid ""
3906 "In a graphical program, when the main thread is displaying a progress bar "
3907 "with a cancel button, wire up the cancel button to call this function."
3908 msgstr ""
3909
3910 #. type: =head1
3911 #: ../src/guestfs.pod:1991
3912 msgid "PRIVATE DATA AREA"
3913 msgstr ""
3914
3915 #. type: textblock
3916 #: ../src/guestfs.pod:1993
3917 msgid ""
3918 "You can attach named pieces of private data to the libguestfs handle, fetch "
3919 "them by name, and walk over them, for the lifetime of the handle.  This is "
3920 "called the private data area and is only available from the C API."
3921 msgstr ""
3922
3923 #. type: textblock
3924 #: ../src/guestfs.pod:1998
3925 msgid "To attach a named piece of data, use the following call:"
3926 msgstr ""
3927
3928 #. type: verbatim
3929 #: ../src/guestfs.pod:2000
3930 #, no-wrap
3931 msgid ""
3932 " void guestfs_set_private (guestfs_h *g, const char *key, void *data);\n"
3933 "\n"
3934 msgstr ""
3935
3936 #. type: textblock
3937 #: ../src/guestfs.pod:2002
3938 msgid ""
3939 "C<key> is the name to associate with this data, and C<data> is an arbitrary "
3940 "pointer (which can be C<NULL>).  Any previous item with the same key is "
3941 "overwritten."
3942 msgstr ""
3943
3944 #. type: textblock
3945 #: ../src/guestfs.pod:2006
3946 msgid ""
3947 "You can use any C<key> you want, but your key should I<not> start with an "
3948 "underscore character.  Keys beginning with an underscore character are "
3949 "reserved for internal libguestfs purposes (eg. for implementing language "
3950 "bindings).  It is recommended that you prefix the key with some unique "
3951 "string to avoid collisions with other users."
3952 msgstr ""
3953
3954 #. type: textblock
3955 #: ../src/guestfs.pod:2012
3956 msgid "To retrieve the pointer, use:"
3957 msgstr ""
3958
3959 #. type: verbatim
3960 #: ../src/guestfs.pod:2014
3961 #, no-wrap
3962 msgid ""
3963 " void *guestfs_get_private (guestfs_h *g, const char *key);\n"
3964 "\n"
3965 msgstr ""
3966
3967 #. type: textblock
3968 #: ../src/guestfs.pod:2016
3969 msgid ""
3970 "This function returns C<NULL> if either no data is found associated with "
3971 "C<key>, or if the user previously set the C<key>'s C<data> pointer to "
3972 "C<NULL>."
3973 msgstr ""
3974
3975 #. type: textblock
3976 #: ../src/guestfs.pod:2020
3977 msgid ""
3978 "Libguestfs does not try to look at or interpret the C<data> pointer in any "
3979 "way.  As far as libguestfs is concerned, it need not be a valid pointer at "
3980 "all.  In particular, libguestfs does I<not> try to free the data when the "
3981 "handle is closed.  If the data must be freed, then the caller must either "
3982 "free it before calling L</guestfs_close> or must set up a close callback to "
3983 "do it (see L</GUESTFS_EVENT_CLOSE>)."
3984 msgstr ""
3985
3986 #. type: textblock
3987 #: ../src/guestfs.pod:2027
3988 msgid "To walk over all entries, use these two functions:"
3989 msgstr ""
3990
3991 #. type: verbatim
3992 #: ../src/guestfs.pod:2029
3993 #, no-wrap
3994 msgid ""
3995 " void *guestfs_first_private (guestfs_h *g, const char **key_rtn);\n"
3996 "\n"
3997 msgstr ""
3998
3999 #. type: verbatim
4000 #: ../src/guestfs.pod:2031
4001 #, no-wrap
4002 msgid ""
4003 " void *guestfs_next_private (guestfs_h *g, const char **key_rtn);\n"
4004 "\n"
4005 msgstr ""
4006
4007 #. type: textblock
4008 #: ../src/guestfs.pod:2033
4009 msgid ""
4010 "C<guestfs_first_private> returns the first key, pointer pair (\"first\" does"
4011 " not have any particular meaning -- keys are not returned in any defined "
4012 "order).  A pointer to the key is returned in C<*key_rtn> and the "
4013 "corresponding data pointer is returned from the function.  C<NULL> is "
4014 "returned if there are no keys stored in the handle."
4015 msgstr ""
4016
4017 #. type: textblock
4018 #: ../src/guestfs.pod:2039
4019 msgid ""
4020 "C<guestfs_next_private> returns the next key, pointer pair.  The return "
4021 "value of this function is also C<NULL> is there are no further entries to "
4022 "return."
4023 msgstr ""
4024
4025 #. type: textblock
4026 #: ../src/guestfs.pod:2043
4027 msgid "Notes about walking over entries:"
4028 msgstr ""
4029
4030 #. type: textblock
4031 #: ../src/guestfs.pod:2049
4032 msgid ""
4033 "You must not call C<guestfs_set_private> while walking over the entries."
4034 msgstr ""
4035
4036 #. type: textblock
4037 #: ../src/guestfs.pod:2054
4038 msgid ""
4039 "The handle maintains an internal iterator which is reset when you call "
4040 "C<guestfs_first_private>.  This internal iterator is invalidated when you "
4041 "call C<guestfs_set_private>."
4042 msgstr ""
4043
4044 #. type: textblock
4045 #: ../src/guestfs.pod:2060
4046 msgid "If you have set the data pointer associated with a key to C<NULL>, ie:"
4047 msgstr ""
4048
4049 #. type: verbatim
4050 #: ../src/guestfs.pod:2062
4051 #, no-wrap
4052 msgid ""
4053 " guestfs_set_private (g, key, NULL);\n"
4054 "\n"
4055 msgstr ""
4056
4057 #. type: textblock
4058 #: ../src/guestfs.pod:2064
4059 msgid "then that C<key> is not returned when walking."
4060 msgstr ""
4061
4062 #. type: textblock
4063 #: ../src/guestfs.pod:2068
4064 msgid ""
4065 "C<*key_rtn> is only valid until the next call to C<guestfs_first_private>, "
4066 "C<guestfs_next_private> or C<guestfs_set_private>."
4067 msgstr ""
4068
4069 #. type: textblock
4070 #: ../src/guestfs.pod:2074
4071 msgid ""
4072 "The following example code shows how to print all keys and data pointers "
4073 "that are associated with the handle C<g>:"
4074 msgstr ""
4075
4076 #. type: verbatim
4077 #: ../src/guestfs.pod:2077
4078 #, no-wrap
4079 msgid ""
4080 " const char *key;\n"
4081 " void *data = guestfs_first_private (g, &key);\n"
4082 " while (data != NULL)\n"
4083 "   {\n"
4084 "     printf (\"key = %s, data = %p\\n\", key, data);\n"
4085 "     data = guestfs_next_private (g, &key);\n"
4086 "   }\n"
4087 "\n"
4088 msgstr ""
4089
4090 #. type: textblock
4091 #: ../src/guestfs.pod:2085
4092 msgid ""
4093 "More commonly you are only interested in keys that begin with an "
4094 "application-specific prefix C<foo_>.  Modify the loop like so:"
4095 msgstr ""
4096
4097 #. type: verbatim
4098 #: ../src/guestfs.pod:2088
4099 #, no-wrap
4100 msgid ""
4101 " const char *key;\n"
4102 " void *data = guestfs_first_private (g, &key);\n"
4103 " while (data != NULL)\n"
4104 "   {\n"
4105 "     if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4106 "       printf (\"key = %s, data = %p\\n\", key, data);\n"
4107 "     data = guestfs_next_private (g, &key);\n"
4108 "   }\n"
4109 "\n"
4110 msgstr ""
4111
4112 #. type: textblock
4113 #: ../src/guestfs.pod:2097
4114 msgid ""
4115 "If you need to modify keys while walking, then you have to jump back to the "
4116 "beginning of the loop.  For example, to delete all keys prefixed with "
4117 "C<foo_>:"
4118 msgstr ""
4119
4120 #. type: verbatim
4121 #: ../src/guestfs.pod:2101
4122 #, no-wrap
4123 msgid ""
4124 "  const char *key;\n"
4125 "  void *data;\n"
4126 " again:\n"
4127 "  data = guestfs_first_private (g, &key);\n"
4128 "  while (data != NULL)\n"
4129 "    {\n"
4130 "      if (strncmp (key, \"foo_\", strlen (\"foo_\")) == 0)\n"
4131 "        {\n"
4132 "          guestfs_set_private (g, key, NULL);\n"
4133 "          /* note that 'key' pointer is now invalid, and so is\n"
4134 "             the internal iterator */\n"
4135 "          goto again;\n"
4136 "        }\n"
4137 "      data = guestfs_next_private (g, &key);\n"
4138 "    }\n"
4139 "\n"
4140 msgstr ""
4141
4142 #. type: textblock
4143 #: ../src/guestfs.pod:2117
4144 msgid ""
4145 "Note that the above loop is guaranteed to terminate because the keys are "
4146 "being deleted, but other manipulations of keys within the loop might not "
4147 "terminate unless you also maintain an indication of which keys have been "
4148 "visited."
4149 msgstr ""
4150
4151 #. type: =end
4152 #: ../src/guestfs.pod:2122 ../src/guestfs.pod:2127
4153 msgid "html"
4154 msgstr ""
4155
4156 #. type: textblock
4157 #: ../src/guestfs.pod:2124
4158 msgid ""
4159 "<!-- old anchor for the next section --> <a "
4160 "name=\"state_machine_and_low_level_event_api\"/>"
4161 msgstr ""
4162
4163 #. type: =head1
4164 #: ../src/guestfs.pod:2129
4165 msgid "ARCHITECTURE"
4166 msgstr ""
4167
4168 #. type: textblock
4169 #: ../src/guestfs.pod:2131
4170 msgid ""
4171 "Internally, libguestfs is implemented by running an appliance (a special "
4172 "type of small virtual machine) using L<qemu(1)>.  Qemu runs as a child "
4173 "process of the main program."
4174 msgstr ""
4175
4176 #. type: verbatim
4177 #: ../src/guestfs.pod:2135
4178 #, no-wrap
4179 msgid ""
4180 "  ___________________\n"
4181 " /                   \\\n"
4182 " | main program      |\n"
4183 " |                   |\n"
4184 " |                   |           child process / appliance\n"
4185 " |                   |           __________________________\n"
4186 " |                   |          / qemu                     \\\n"
4187 " +-------------------+   RPC    |      +-----------------+ |\n"
4188 " | libguestfs     <--------------------> guestfsd        | |\n"
4189 " |                   |          |      +-----------------+ |\n"
4190 " \\___________________/          |      | Linux kernel    | |\n"
4191 "                                |      +--^--------------+ |\n"
4192 "                                \\_________|________________/\n"
4193 "                                          |\n"
4194 "                                   _______v______\n"
4195 "                                  /              \\\n"
4196 "                                  | Device or    |\n"
4197 "                                  | disk image   |\n"
4198 "                                  \\______________/\n"
4199 "\n"
4200 msgstr ""
4201
4202 #. type: textblock
4203 #: ../src/guestfs.pod:2155
4204 msgid ""
4205 "The library, linked to the main program, creates the child process and hence"
4206 " the appliance in the L</guestfs_launch> function."
4207 msgstr ""
4208
4209 #. type: textblock
4210 #: ../src/guestfs.pod:2158
4211 msgid ""
4212 "Inside the appliance is a Linux kernel and a complete stack of userspace "
4213 "tools (such as LVM and ext2 programs) and a small controlling daemon called "
4214 "L</guestfsd>.  The library talks to L</guestfsd> using remote procedure "
4215 "calls (RPC).  There is a mostly one-to-one correspondence between libguestfs"
4216 " API calls and RPC calls to the daemon.  Lastly the disk image(s) are "
4217 "attached to the qemu process which translates device access by the "
4218 "appliance's Linux kernel into accesses to the image."
4219 msgstr ""
4220
4221 #. type: textblock
4222 #: ../src/guestfs.pod:2167
4223 msgid ""
4224 "A common misunderstanding is that the appliance \"is\" the virtual machine."
4225 "  Although the disk image you are attached to might also be used by some "
4226 "virtual machine, libguestfs doesn't know or care about this.  (But you will "
4227 "care if both libguestfs's qemu process and your virtual machine are trying "
4228 "to update the disk image at the same time, since these usually results in "
4229 "massive disk corruption)."
4230 msgstr ""
4231
4232 #. type: =head1
4233 #: ../src/guestfs.pod:2174
4234 msgid "STATE MACHINE"
4235 msgstr ""
4236
4237 #. type: textblock
4238 #: ../src/guestfs.pod:2176
4239 msgid "libguestfs uses a state machine to model the child process:"
4240 msgstr ""
4241
4242 #. type: verbatim
4243 #: ../src/guestfs.pod:2178
4244 #, no-wrap
4245 msgid ""
4246 "                         |\n"
4247 "                    guestfs_create\n"
4248 "                         |\n"
4249 "                         |\n"
4250 "                     ____V_____\n"
4251 "                    /          \\\n"
4252 "                    |  CONFIG  |\n"
4253 "                    \\__________/\n"
4254 "                     ^ ^   ^  \\\n"
4255 "                    /  |    \\  \\ guestfs_launch\n"
4256 "                   /   |    _\\__V______\n"
4257 "                  /    |   /           \\\n"
4258 "                 /     |   | LAUNCHING |\n"
4259 "                /      |   \\___________/\n"
4260 "               /       |       /\n"
4261 "              /        |  guestfs_launch\n"
4262 "             /         |     /\n"
4263 "    ______  /        __|____V\n"
4264 "   /      \\ ------> /        \\\n"
4265 "   | BUSY |         | READY  |\n"
4266 "   \\______/ <------ \\________/\n"
4267 "\n"
4268 msgstr ""
4269
4270 #. type: textblock
4271 #: ../src/guestfs.pod:2200
4272 msgid ""
4273 "The normal transitions are (1) CONFIG (when the handle is created, but there"
4274 " is no child process), (2) LAUNCHING (when the child process is booting up),"
4275 " (3) alternating between READY and BUSY as commands are issued to, and "
4276 "carried out by, the child process."
4277 msgstr ""
4278
4279 #. type: textblock
4280 #: ../src/guestfs.pod:2205
4281 msgid ""
4282 "The guest may be killed by L</guestfs_kill_subprocess>, or may die "
4283 "asynchronously at any time (eg. due to some internal error), and that causes"
4284 " the state to transition back to CONFIG."
4285 msgstr ""
4286
4287 #. type: textblock
4288 #: ../src/guestfs.pod:2209
4289 msgid ""
4290 "Configuration commands for qemu such as L</guestfs_add_drive> can only be "
4291 "issued when in the CONFIG state."
4292 msgstr ""
4293
4294 #. type: textblock
4295 #: ../src/guestfs.pod:2212
4296 msgid ""
4297 "The API offers one call that goes from CONFIG through LAUNCHING to READY.  "
4298 "L</guestfs_launch> blocks until the child process is READY to accept "
4299 "commands (or until some failure or timeout).  L</guestfs_launch> internally "
4300 "moves the state from CONFIG to LAUNCHING while it is running."
4301 msgstr ""
4302
4303 #. type: textblock
4304 #: ../src/guestfs.pod:2218
4305 msgid ""
4306 "API actions such as L</guestfs_mount> can only be issued when in the READY "
4307 "state.  These API calls block waiting for the command to be carried out (ie."
4308 " the state to transition to BUSY and then back to READY).  There are no non-"
4309 "blocking versions, and no way to issue more than one command per handle at "
4310 "the same time."
4311 msgstr ""
4312
4313 #. type: textblock
4314 #: ../src/guestfs.pod:2224
4315 msgid ""
4316 "Finally, the child process sends asynchronous messages back to the main "
4317 "program, such as kernel log messages.  You can register a callback to "
4318 "receive these messages."
4319 msgstr ""
4320
4321 #. type: =head1
4322 #: ../src/guestfs.pod:2228
4323 msgid "INTERNALS"
4324 msgstr ""
4325
4326 #. type: =head2
4327 #: ../src/guestfs.pod:2230
4328 msgid "COMMUNICATION PROTOCOL"
4329 msgstr ""
4330
4331 #. type: textblock
4332 #: ../src/guestfs.pod:2232
4333 msgid ""
4334 "Don't rely on using this protocol directly.  This section documents how it "
4335 "currently works, but it may change at any time."
4336 msgstr ""
4337
4338 #. type: textblock
4339 #: ../src/guestfs.pod:2235
4340 msgid ""
4341 "The protocol used to talk between the library and the daemon running inside "
4342 "the qemu virtual machine is a simple RPC mechanism built on top of XDR (RFC "
4343 "1014, RFC 1832, RFC 4506)."
4344 msgstr ""
4345
4346 #. type: textblock
4347 #: ../src/guestfs.pod:2239
4348 msgid ""
4349 "The detailed format of structures is in C<src/guestfs_protocol.x> (note: "
4350 "this file is automatically generated)."
4351 msgstr ""
4352
4353 #. type: textblock
4354 #: ../src/guestfs.pod:2242
4355 msgid ""
4356 "There are two broad cases, ordinary functions that don't have any C<FileIn> "
4357 "and C<FileOut> parameters, which are handled with very simple request/reply "
4358 "messages.  Then there are functions that have any C<FileIn> or C<FileOut> "
4359 "parameters, which use the same request and reply messages, but they may also"
4360 " be followed by files sent using a chunked encoding."
4361 msgstr ""
4362
4363 #. type: =head3
4364 #: ../src/guestfs.pod:2249
4365 msgid "ORDINARY FUNCTIONS (NO FILEIN/FILEOUT PARAMS)"
4366 msgstr ""
4367
4368 #. type: textblock
4369 #: ../src/guestfs.pod:2251
4370 msgid "For ordinary functions, the request message is:"
4371 msgstr ""
4372
4373 #. type: verbatim
4374 #: ../src/guestfs.pod:2253
4375 #, no-wrap
4376 msgid ""
4377 " total length (header + arguments,\n"
4378 "      but not including the length word itself)\n"
4379 " struct guestfs_message_header (encoded as XDR)\n"
4380 " struct guestfs_<foo>_args (encoded as XDR)\n"
4381 "\n"
4382 msgstr ""
4383
4384 #. type: textblock
4385 #: ../src/guestfs.pod:2258
4386 msgid ""
4387 "The total length field allows the daemon to allocate a fixed size buffer "
4388 "into which it slurps the rest of the message.  As a result, the total length"
4389 " is limited to C<GUESTFS_MESSAGE_MAX> bytes (currently 4MB), which means the"
4390 " effective size of any request is limited to somewhere under this size."
4391 msgstr ""
4392
4393 #. type: textblock
4394 #: ../src/guestfs.pod:2264
4395 msgid ""
4396 "Note also that many functions don't take any arguments, in which case the "
4397 "C<guestfs_I<foo>_args> is completely omitted."
4398 msgstr ""
4399
4400 #. type: textblock
4401 #: ../src/guestfs.pod:2267
4402 msgid ""
4403 "The header contains the procedure number (C<guestfs_proc>) which is how the "
4404 "receiver knows what type of args structure to expect, or none at all."
4405 msgstr ""
4406
4407 #. type: textblock
4408 #: ../src/guestfs.pod:2271
4409 msgid ""
4410 "For functions that take optional arguments, the optional arguments are "
4411 "encoded in the C<guestfs_I<foo>_args> structure in the same way as ordinary "
4412 "arguments.  A bitmask in the header indicates which optional arguments are "
4413 "meaningful.  The bitmask is also checked to see if it contains bits set "
4414 "which the daemon does not know about (eg. if more optional arguments were "
4415 "added in a later version of the library), and this causes the call to be "
4416 "rejected."
4417 msgstr ""
4418
4419 #. type: textblock
4420 #: ../src/guestfs.pod:2279
4421 msgid "The reply message for ordinary functions is:"
4422 msgstr ""
4423
4424 #. type: verbatim
4425 #: ../src/guestfs.pod:2281
4426 #, no-wrap
4427 msgid ""
4428 " total length (header + ret,\n"
4429 "      but not including the length word itself)\n"
4430 " struct guestfs_message_header (encoded as XDR)\n"
4431 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4432 "\n"
4433 msgstr ""
4434
4435 #. type: textblock
4436 #: ../src/guestfs.pod:2286
4437 msgid ""
4438 "As above the C<guestfs_I<foo>_ret> structure may be completely omitted for "
4439 "functions that return no formal return values."
4440 msgstr ""
4441
4442 #. type: textblock
4443 #: ../src/guestfs.pod:2289
4444 msgid ""
4445 "As above the total length of the reply is limited to C<GUESTFS_MESSAGE_MAX>."
4446 msgstr ""
4447
4448 #. type: textblock
4449 #: ../src/guestfs.pod:2292
4450 msgid ""
4451 "In the case of an error, a flag is set in the header, and the reply message "
4452 "is slightly changed:"
4453 msgstr ""
4454
4455 #. type: verbatim
4456 #: ../src/guestfs.pod:2295
4457 #, no-wrap
4458 msgid ""
4459 " total length (header + error,\n"
4460 "      but not including the length word itself)\n"
4461 " struct guestfs_message_header (encoded as XDR)\n"
4462 " struct guestfs_message_error (encoded as XDR)\n"
4463 "\n"
4464 msgstr ""
4465
4466 #. type: textblock
4467 #: ../src/guestfs.pod:2300
4468 msgid ""
4469 "The C<guestfs_message_error> structure contains the error message as a "
4470 "string."
4471 msgstr ""
4472
4473 #. type: =head3
4474 #: ../src/guestfs.pod:2303
4475 msgid "FUNCTIONS THAT HAVE FILEIN PARAMETERS"
4476 msgstr ""
4477
4478 #. type: textblock
4479 #: ../src/guestfs.pod:2305
4480 msgid ""
4481 "A C<FileIn> parameter indicates that we transfer a file I<into> the guest.  "
4482 "The normal request message is sent (see above).  However this is followed by"
4483 " a sequence of file chunks."
4484 msgstr ""
4485
4486 #. type: verbatim
4487 #: ../src/guestfs.pod:2309
4488 #, no-wrap
4489 msgid ""
4490 " total length (header + arguments,\n"
4491 "      but not including the length word itself,\n"
4492 "      and not including the chunks)\n"
4493 " struct guestfs_message_header (encoded as XDR)\n"
4494 " struct guestfs_<foo>_args (encoded as XDR)\n"
4495 " sequence of chunks for FileIn param #0\n"
4496 " sequence of chunks for FileIn param #1 etc.\n"
4497 "\n"
4498 msgstr ""
4499
4500 #. type: textblock
4501 #: ../src/guestfs.pod:2317
4502 msgid "The \"sequence of chunks\" is:"
4503 msgstr ""
4504
4505 #. type: verbatim
4506 #: ../src/guestfs.pod:2319
4507 #, no-wrap
4508 msgid ""
4509 " length of chunk (not including length word itself)\n"
4510 " struct guestfs_chunk (encoded as XDR)\n"
4511 " length of chunk\n"
4512 " struct guestfs_chunk (encoded as XDR)\n"
4513 "   ...\n"
4514 " length of chunk\n"
4515 " struct guestfs_chunk (with data.data_len == 0)\n"
4516 "\n"
4517 msgstr ""
4518
4519 #. type: textblock
4520 #: ../src/guestfs.pod:2327
4521 msgid ""
4522 "The final chunk has the C<data_len> field set to zero.  Additionally a flag "
4523 "is set in the final chunk to indicate either successful completion or early "
4524 "cancellation."
4525 msgstr ""
4526
4527 #. type: textblock
4528 #: ../src/guestfs.pod:2331
4529 msgid ""
4530 "At time of writing there are no functions that have more than one FileIn "
4531 "parameter.  However this is (theoretically) supported, by sending the "
4532 "sequence of chunks for each FileIn parameter one after another (from left to"
4533 " right)."
4534 msgstr ""
4535
4536 #. type: textblock
4537 #: ../src/guestfs.pod:2336
4538 msgid ""
4539 "Both the library (sender) I<and> the daemon (receiver) may cancel the "
4540 "transfer.  The library does this by sending a chunk with a special flag set "
4541 "to indicate cancellation.  When the daemon sees this, it cancels the whole "
4542 "RPC, does I<not> send any reply, and goes back to reading the next request."
4543 msgstr ""
4544
4545 #. type: textblock
4546 #: ../src/guestfs.pod:2342
4547 msgid ""
4548 "The daemon may also cancel.  It does this by writing a special word "
4549 "C<GUESTFS_CANCEL_FLAG> to the socket.  The library listens for this during "
4550 "the transfer, and if it gets it, it will cancel the transfer (it sends a "
4551 "cancel chunk).  The special word is chosen so that even if cancellation "
4552 "happens right at the end of the transfer (after the library has finished "
4553 "writing and has started listening for the reply), the \"spurious\" cancel "
4554 "flag will not be confused with the reply message."
4555 msgstr ""
4556
4557 #. type: textblock
4558 #: ../src/guestfs.pod:2351
4559 msgid ""
4560 "This protocol allows the transfer of arbitrary sized files (no 32 bit "
4561 "limit), and also files where the size is not known in advance (eg. from "
4562 "pipes or sockets).  However the chunks are rather small "
4563 "(C<GUESTFS_MAX_CHUNK_SIZE>), so that neither the library nor the daemon need"
4564 " to keep much in memory."
4565 msgstr ""
4566
4567 #. type: =head3
4568 #: ../src/guestfs.pod:2357
4569 msgid "FUNCTIONS THAT HAVE FILEOUT PARAMETERS"
4570 msgstr ""
4571
4572 #. type: textblock
4573 #: ../src/guestfs.pod:2359
4574 msgid ""
4575 "The protocol for FileOut parameters is exactly the same as for FileIn "
4576 "parameters, but with the roles of daemon and library reversed."
4577 msgstr ""
4578
4579 #. type: verbatim
4580 #: ../src/guestfs.pod:2362
4581 #, no-wrap
4582 msgid ""
4583 " total length (header + ret,\n"
4584 "      but not including the length word itself,\n"
4585 "      and not including the chunks)\n"
4586 " struct guestfs_message_header (encoded as XDR)\n"
4587 " struct guestfs_<foo>_ret (encoded as XDR)\n"
4588 " sequence of chunks for FileOut param #0\n"
4589 " sequence of chunks for FileOut param #1 etc.\n"
4590 "\n"
4591 msgstr ""
4592
4593 #. type: =head3
4594 #: ../src/guestfs.pod:2370
4595 msgid "INITIAL MESSAGE"
4596 msgstr ""
4597
4598 #. type: textblock
4599 #: ../src/guestfs.pod:2372
4600 msgid ""
4601 "When the daemon launches it sends an initial word (C<GUESTFS_LAUNCH_FLAG>) "
4602 "which indicates that the guest and daemon is alive.  This is what "
4603 "L</guestfs_launch> waits for."
4604 msgstr ""
4605
4606 #. type: =head3
4607 #: ../src/guestfs.pod:2376
4608 msgid "PROGRESS NOTIFICATION MESSAGES"
4609 msgstr ""
4610
4611 #. type: textblock
4612 #: ../src/guestfs.pod:2378
4613 msgid ""
4614 "The daemon may send progress notification messages at any time.  These are "
4615 "distinguished by the normal length word being replaced by "
4616 "C<GUESTFS_PROGRESS_FLAG>, followed by a fixed size progress message."
4617 msgstr ""
4618
4619 #. type: textblock
4620 #: ../src/guestfs.pod:2382
4621 msgid ""
4622 "The library turns them into progress callbacks (see "
4623 "L</GUESTFS_EVENT_PROGRESS>) if there is a callback registered, or discards "
4624 "them if not."
4625 msgstr ""
4626
4627 #. type: textblock
4628 #: ../src/guestfs.pod:2386
4629 msgid ""
4630 "The daemon self-limits the frequency of progress messages it sends (see "
4631 "C<daemon/proto.c:notify_progress>).  Not all calls generate progress "
4632 "messages."
4633 msgstr ""
4634
4635 #. type: =head1
4636 #: ../src/guestfs.pod:2390
4637 msgid "LIBGUESTFS VERSION NUMBERS"
4638 msgstr ""
4639
4640 #. type: textblock
4641 #: ../src/guestfs.pod:2392
4642 msgid ""
4643 "Since April 2010, libguestfs has started to make separate development and "
4644 "stable releases, along with corresponding branches in our git repository.  "
4645 "These separate releases can be identified by version number:"
4646 msgstr ""
4647
4648 #. type: verbatim
4649 #: ../src/guestfs.pod:2397
4650 #, no-wrap
4651 msgid ""
4652 "                 even numbers for stable: 1.2.x, 1.4.x, ...\n"
4653 "       .-------- odd numbers for development: 1.3.x, 1.5.x, ...\n"
4654 "       |\n"
4655 "       v\n"
4656 " 1  .  3  .  5\n"
4657 " ^           ^\n"
4658 " |           |\n"
4659 " |           `-------- sub-version\n"
4660 " |\n"
4661 " `------ always '1' because we don't change the ABI\n"
4662 "\n"
4663 msgstr ""
4664
4665 #. type: textblock
4666 #: ../src/guestfs.pod:2408
4667 msgid "Thus \"1.3.5\" is the 5th update to the development branch \"1.3\"."
4668 msgstr ""
4669
4670 #. type: textblock
4671 #: ../src/guestfs.pod:2410
4672 msgid ""
4673 "As time passes we cherry pick fixes from the development branch and backport"
4674 " those into the stable branch, the effect being that the stable branch "
4675 "should get more stable and less buggy over time.  So the stable releases are"
4676 " ideal for people who don't need new features but would just like the "
4677 "software to work."
4678 msgstr ""
4679
4680 #. type: textblock
4681 #: ../src/guestfs.pod:2416
4682 msgid "Our criteria for backporting changes are:"
4683 msgstr ""
4684
4685 #. type: textblock
4686 #: ../src/guestfs.pod:2422
4687 msgid ""
4688 "Documentation changes which don't affect any code are backported unless the "
4689 "documentation refers to a future feature which is not in stable."
4690 msgstr ""
4691
4692 #. type: textblock
4693 #: ../src/guestfs.pod:2428
4694 msgid ""
4695 "Bug fixes which are not controversial, fix obvious problems, and have been "
4696 "well tested are backported."
4697 msgstr ""
4698
4699 #. type: textblock
4700 #: ../src/guestfs.pod:2433
4701 msgid ""
4702 "Simple rearrangements of code which shouldn't affect how it works get "
4703 "backported.  This is so that the code in the two branches doesn't get too "
4704 "far out of step, allowing us to backport future fixes more easily."
4705 msgstr ""
4706
4707 #. type: textblock
4708 #: ../src/guestfs.pod:2439
4709 msgid ""
4710 "We I<don't> backport new features, new APIs, new tools etc, except in one "
4711 "exceptional case: the new feature is required in order to implement an "
4712 "important bug fix."
4713 msgstr ""
4714
4715 #. type: textblock
4716 #: ../src/guestfs.pod:2445
4717 msgid ""
4718 "A new stable branch starts when we think the new features in development are"
4719 " substantial and compelling enough over the current stable branch to warrant"
4720 " it.  When that happens we create new stable and development versions 1.N.0 "
4721 "and 1.(N+1).0 [N is even].  The new dot-oh release won't necessarily be so "
4722 "stable at this point, but by backporting fixes from development, that branch"
4723 " will stabilize over time."
4724 msgstr ""
4725
4726 #. type: =head1
4727 #: ../src/guestfs.pod:2453
4728 msgid "EXTENDING LIBGUESTFS"
4729 msgstr ""
4730
4731 #. type: =head2
4732 #: ../src/guestfs.pod:2455
4733 msgid "ADDING A NEW API ACTION"
4734 msgstr ""
4735
4736 #. type: textblock
4737 #: ../src/guestfs.pod:2457
4738 msgid ""
4739 "Large amounts of boilerplate code in libguestfs (RPC, bindings, "
4740 "documentation) are generated, and this makes it easy to extend the "
4741 "libguestfs API."
4742 msgstr ""
4743
4744 #. type: textblock
4745 #: ../src/guestfs.pod:2461
4746 msgid "To add a new API action there are two changes:"
4747 msgstr ""
4748
4749 #. type: textblock
4750 #: ../src/guestfs.pod:2467
4751 msgid ""
4752 "You need to add a description of the call (name, parameters, return type, "
4753 "tests, documentation) to C<generator/generator_actions.ml>."
4754 msgstr ""
4755
4756 #. type: textblock
4757 #: ../src/guestfs.pod:2470
4758 msgid ""
4759 "There are two sorts of API action, depending on whether the call goes "
4760 "through to the daemon in the appliance, or is serviced entirely by the "
4761 "library (see L</ARCHITECTURE> above).  L</guestfs_sync> is an example of the"
4762 " former, since the sync is done in the appliance.  L</guestfs_set_trace> is "
4763 "an example of the latter, since a trace flag is maintained in the handle and"
4764 " all tracing is done on the library side."
4765 msgstr ""
4766
4767 #. type: textblock
4768 #: ../src/guestfs.pod:2478
4769 msgid ""
4770 "Most new actions are of the first type, and get added to the "
4771 "C<daemon_functions> list.  Each function has a unique procedure number used "
4772 "in the RPC protocol which is assigned to that action when we publish "
4773 "libguestfs and cannot be reused.  Take the latest procedure number and "
4774 "increment it."
4775 msgstr ""
4776
4777 #. type: textblock
4778 #: ../src/guestfs.pod:2484
4779 msgid ""
4780 "For library-only actions of the second type, add to the "
4781 "C<non_daemon_functions> list.  Since these functions are serviced by the "
4782 "library and do not travel over the RPC mechanism to the daemon, these "
4783 "functions do not need a procedure number, and so the procedure number is set"
4784 " to C<-1>."
4785 msgstr ""
4786
4787 #. type: textblock
4788 #: ../src/guestfs.pod:2492
4789 msgid "Implement the action (in C):"
4790 msgstr ""
4791
4792 #. type: textblock
4793 #: ../src/guestfs.pod:2494
4794 msgid ""
4795 "For daemon actions, implement the function C<do_E<lt>nameE<gt>> in the "
4796 "C<daemon/> directory."
4797 msgstr ""
4798
4799 #. type: textblock
4800 #: ../src/guestfs.pod:2497
4801 msgid ""
4802 "For library actions, implement the function C<guestfs__E<lt>nameE<gt>> "
4803 "(note: double underscore) in the C<src/> directory."
4804 msgstr ""
4805
4806 #. type: textblock
4807 #: ../src/guestfs.pod:2500
4808 msgid "In either case, use another function as an example of what to do."
4809 msgstr ""
4810
4811 #. type: textblock
4812 #: ../src/guestfs.pod:2504
4813 msgid "After making these changes, use C<make> to compile."
4814 msgstr ""
4815
4816 #. type: textblock
4817 #: ../src/guestfs.pod:2506
4818 msgid ""
4819 "Note that you don't need to implement the RPC, language bindings, manual "
4820 "pages or anything else.  It's all automatically generated from the OCaml "
4821 "description."
4822 msgstr ""
4823
4824 #. type: =head2
4825 #: ../src/guestfs.pod:2510
4826 msgid "ADDING TESTS FOR AN API ACTION"
4827 msgstr ""
4828
4829 #. type: textblock
4830 #: ../src/guestfs.pod:2512
4831 msgid ""
4832 "You can supply zero or as many tests as you want per API call.  The tests "
4833 "can either be added as part of the API description "
4834 "(C<generator/generator_actions.ml>), or in some rarer cases you may want to "
4835 "drop a script into C<regressions/>.  Note that adding a script to "
4836 "C<regressions/> is slower, so if possible use the first method."
4837 msgstr ""
4838
4839 #. type: textblock
4840 #: ../src/guestfs.pod:2518
4841 msgid ""
4842 "The following describes the test environment used when you add an API test "
4843 "in C<generator_actions.ml>."
4844 msgstr ""
4845
4846 #. type: textblock
4847 #: ../src/guestfs.pod:2521
4848 msgid "The test environment has 4 block devices:"
4849 msgstr ""
4850
4851 #. type: =item
4852 #: ../src/guestfs.pod:2525
4853 msgid "C</dev/sda> 500MB"
4854 msgstr ""
4855
4856 #. type: textblock
4857 #: ../src/guestfs.pod:2527
4858 msgid "General block device for testing."
4859 msgstr ""
4860
4861 #. type: =item
4862 #: ../src/guestfs.pod:2529
4863 msgid "C</dev/sdb> 50MB"
4864 msgstr ""
4865
4866 #. type: textblock
4867 #: ../src/guestfs.pod:2531
4868 msgid ""
4869 "C</dev/sdb1> is an ext2 filesystem used for testing filesystem write "
4870 "operations."
4871 msgstr ""
4872
4873 #. type: =item
4874 #: ../src/guestfs.pod:2534
4875 msgid "C</dev/sdc> 10MB"
4876 msgstr ""
4877
4878 #. type: textblock
4879 #: ../src/guestfs.pod:2536
4880 msgid "Used in a few tests where two block devices are needed."
4881 msgstr ""
4882
4883 #. type: =item
4884 #: ../src/guestfs.pod:2538
4885 msgid "C</dev/sdd>"
4886 msgstr ""
4887
4888 #. type: textblock
4889 #: ../src/guestfs.pod:2540
4890 msgid "ISO with fixed content (see C<images/test.iso>)."
4891 msgstr ""
4892
4893 #. type: textblock
4894 #: ../src/guestfs.pod:2544
4895 msgid ""
4896 "To be able to run the tests in a reasonable amount of time, the libguestfs "
4897 "appliance and block devices are reused between tests.  So don't try testing "
4898 "L</guestfs_kill_subprocess> :-x"
4899 msgstr ""
4900
4901 #. type: textblock
4902 #: ../src/guestfs.pod:2548
4903 msgid ""
4904 "Each test starts with an initial scenario, selected using one of the "
4905 "C<Init*> expressions, described in C<generator/generator_types.ml>.  These "
4906 "initialize the disks mentioned above in a particular way as documented in "
4907 "C<generator_types.ml>.  You should not assume anything about the previous "
4908 "contents of other disks that are not initialized."
4909 msgstr ""
4910
4911 #. type: textblock
4912 #: ../src/guestfs.pod:2554
4913 msgid ""
4914 "You can add a prerequisite clause to any individual test.  This is a run-"
4915 "time check, which, if it fails, causes the test to be skipped.  Useful if "
4916 "testing a command which might not work on all variations of libguestfs "
4917 "builds.  A test that has prerequisite of C<Always> means to run "
4918 "unconditionally."
4919 msgstr ""
4920
4921 #. type: textblock
4922 #: ../src/guestfs.pod:2560
4923 msgid ""
4924 "In addition, packagers can skip individual tests by setting environment "
4925 "variables before running C<make check>."
4926 msgstr ""
4927
4928 #. type: verbatim
4929 #: ../src/guestfs.pod:2563
4930 #, no-wrap
4931 msgid ""
4932 " SKIP_TEST_<CMD>_<NUM>=1\n"
4933 "\n"
4934 msgstr ""
4935
4936 #. type: textblock
4937 #: ../src/guestfs.pod:2565
4938 msgid "eg: C<SKIP_TEST_COMMAND_3=1> skips test #3 of L</guestfs_command>."
4939 msgstr ""
4940
4941 #. type: textblock
4942 #: ../src/guestfs.pod:2567
4943 msgid "or:"
4944 msgstr ""
4945
4946 #. type: verbatim
4947 #: ../src/guestfs.pod:2569
4948 #, no-wrap
4949 msgid ""
4950 " SKIP_TEST_<CMD>=1\n"
4951 "\n"
4952 msgstr ""
4953
4954 #. type: textblock
4955 #: ../src/guestfs.pod:2571
4956 msgid "eg: C<SKIP_TEST_ZEROFREE=1> skips all L</guestfs_zerofree> tests."
4957 msgstr ""
4958
4959 #. type: textblock
4960 #: ../src/guestfs.pod:2573
4961 msgid "Packagers can run only certain tests by setting for example:"
4962 msgstr ""
4963
4964 #. type: verbatim
4965 #: ../src/guestfs.pod:2575
4966 #, no-wrap
4967 msgid ""
4968 " TEST_ONLY=\"vfs_type zerofree\"\n"
4969 "\n"
4970 msgstr ""
4971
4972 #. type: textblock
4973 #: ../src/guestfs.pod:2577
4974 msgid ""
4975 "See C<capitests/tests.c> for more details of how these environment variables"
4976 " work."
4977 msgstr ""
4978
4979 #. type: =head2
4980 #: ../src/guestfs.pod:2580
4981 msgid "DEBUGGING NEW API ACTIONS"
4982 msgstr ""
4983
4984 #. type: textblock
4985 #: ../src/guestfs.pod:2582
4986 msgid "Test new actions work before submitting them."
4987 msgstr ""
4988
4989 #. type: textblock
4990 #: ../src/guestfs.pod:2584
4991 msgid "You can use guestfish to try out new commands."
4992 msgstr ""
4993
4994 #. type: textblock
4995 #: ../src/guestfs.pod:2586
4996 msgid ""
4997 "Debugging the daemon is a problem because it runs inside a minimal "
4998 "environment.  However you can fprintf messages in the daemon to stderr, and "
4999 "they will show up if you use C<guestfish -v>."
5000 msgstr ""
5001
5002 #. type: =head2
5003 #: ../src/guestfs.pod:2590
5004 msgid "FORMATTING CODE AND OTHER CONVENTIONS"
5005 msgstr ""
5006
5007 #. type: textblock
5008 #: ../src/guestfs.pod:2592
5009 msgid ""
5010 "Our C source code generally adheres to some basic code-formatting "
5011 "conventions.  The existing code base is not totally consistent on this "
5012 "front, but we do prefer that contributed code be formatted similarly.  In "
5013 "short, use spaces-not-TABs for indentation, use 2 spaces for each "
5014 "indentation level, and other than that, follow the K&R style."
5015 msgstr ""
5016
5017 #. type: textblock
5018 #: ../src/guestfs.pod:2598
5019 msgid ""
5020 "If you use Emacs, add the following to one of one of your start-up files "
5021 "(e.g., ~/.emacs), to help ensure that you get indentation right:"
5022 msgstr ""
5023
5024 #. type: verbatim
5025 #: ../src/guestfs.pod:2601
5026 #, no-wrap
5027 msgid ""
5028 " ;;; In libguestfs, indent with spaces everywhere (not TABs).\n"
5029 " ;;; Exceptions: Makefile and ChangeLog modes.\n"
5030 " (add-hook 'find-file-hook\n"
5031 "     '(lambda () (if (and buffer-file-name\n"
5032 "                          (string-match \"/libguestfs\\\\>\"\n"
5033 "                              (buffer-file-name))\n"
5034 "                          (not (string-equal mode-name \"Change Log\"))\n"
5035 "                          (not (string-equal mode-name \"Makefile\")))\n"
5036 "                     (setq indent-tabs-mode nil))))\n"
5037 " \n"
5038 msgstr ""
5039
5040 #. type: verbatim
5041 #: ../src/guestfs.pod:2611
5042 #, no-wrap
5043 msgid ""
5044 " ;;; When editing C sources in libguestfs, use this style.\n"
5045 " (defun libguestfs-c-mode ()\n"
5046 "   \"C mode with adjusted defaults for use with libguestfs.\"\n"
5047 "   (interactive)\n"
5048 "   (c-set-style \"K&R\")\n"
5049 "   (setq c-indent-level 2)\n"
5050 "   (setq c-basic-offset 2))\n"
5051 " (add-hook 'c-mode-hook\n"
5052 "           '(lambda () (if (string-match \"/libguestfs\\\\>\"\n"
5053 "                               (buffer-file-name))\n"
5054 "                           (libguestfs-c-mode))))\n"
5055 "\n"
5056 msgstr ""
5057
5058 #. type: textblock
5059 #: ../src/guestfs.pod:2623
5060 msgid "Enable warnings when compiling (and fix any problems this finds):"
5061 msgstr ""
5062
5063 #. type: verbatim
5064 #: ../src/guestfs.pod:2626
5065 #, no-wrap
5066 msgid ""
5067 " ./configure --enable-gcc-warnings\n"
5068 "\n"
5069 msgstr ""
5070
5071 #. type: textblock
5072 #: ../src/guestfs.pod:2628
5073 msgid "Useful targets are:"
5074 msgstr ""
5075
5076 #. type: verbatim
5077 #: ../src/guestfs.pod:2630
5078 #, no-wrap
5079 msgid ""
5080 " make syntax-check  # checks the syntax of the C code\n"
5081 " make check         # runs the test suite\n"
5082 "\n"
5083 msgstr ""
5084
5085 #. type: =head2
5086 #: ../src/guestfs.pod:2633
5087 msgid "DAEMON CUSTOM PRINTF FORMATTERS"
5088 msgstr ""
5089
5090 #. type: textblock
5091 #: ../src/guestfs.pod:2635
5092 msgid ""
5093 "In the daemon code we have created custom printf formatters C<%Q> and C<%R>,"
5094 " which are used to do shell quoting."
5095 msgstr ""
5096
5097 #. type: =item
5098 #: ../src/guestfs.pod:2640
5099 msgid "%Q"
5100 msgstr ""
5101
5102 #. type: textblock
5103 #: ../src/guestfs.pod:2642
5104 msgid ""
5105 "Simple shell quoted string.  Any spaces or other shell characters are "
5106 "escaped for you."
5107 msgstr ""
5108
5109 #. type: =item
5110 #: ../src/guestfs.pod:2645
5111 msgid "%R"
5112 msgstr ""
5113
5114 #. type: textblock
5115 #: ../src/guestfs.pod:2647
5116 msgid ""
5117 "Same as C<%Q> except the string is treated as a path which is prefixed by "
5118 "the sysroot."
5119 msgstr ""
5120
5121 #. type: textblock
5122 #: ../src/guestfs.pod:2652 ../fish/guestfish.pod:242 ../fish/guestfish.pod:673
5123 msgid "For example:"
5124 msgstr ""
5125
5126 #. type: verbatim
5127 #: ../src/guestfs.pod:2654
5128 #, no-wrap
5129 msgid ""
5130 " asprintf (&cmd, \"cat %R\", path);\n"
5131 "\n"
5132 msgstr ""
5133
5134 #. type: textblock
5135 #: ../src/guestfs.pod:2656
5136 msgid "would produce C<cat /sysroot/some\\ path\\ with\\ spaces>"
5137 msgstr ""
5138
5139 #. type: textblock
5140 #: ../src/guestfs.pod:2658
5141 msgid ""
5142 "I<Note:> Do I<not> use these when you are passing parameters to the "
5143 "C<command{,r,v,rv}()> functions.  These parameters do NOT need to be quoted "
5144 "because they are not passed via the shell (instead, straight to exec).  You "
5145 "probably want to use the C<sysroot_path()> function however."
5146 msgstr ""
5147
5148 #. type: =head2
5149 #: ../src/guestfs.pod:2664
5150 msgid "SUBMITTING YOUR NEW API ACTIONS"
5151 msgstr ""
5152
5153 #. type: textblock
5154 #: ../src/guestfs.pod:2666
5155 msgid ""
5156 "Submit patches to the mailing list: "
5157 "L<http://www.redhat.com/mailman/listinfo/libguestfs> and CC to "
5158 "L<rjones@redhat.com>."
5159 msgstr ""
5160
5161 #. type: =head2
5162 #: ../src/guestfs.pod:2670
5163 msgid "INTERNATIONALIZATION (I18N) SUPPORT"
5164 msgstr ""
5165
5166 #. type: textblock
5167 #: ../src/guestfs.pod:2672
5168 msgid "We support i18n (gettext anyhow) in the library."
5169 msgstr ""
5170
5171 #. type: textblock
5172 #: ../src/guestfs.pod:2674
5173 msgid ""
5174 "However many messages come from the daemon, and we don't translate those at "
5175 "the moment.  One reason is that the appliance generally has all locale files"
5176 " removed from it, because they take up a lot of space.  So we'd have to "
5177 "readd some of those, as well as copying our PO files into the appliance."
5178 msgstr ""
5179
5180 #. type: textblock
5181 #: ../src/guestfs.pod:2680
5182 msgid ""
5183 "Debugging messages are never translated, since they are intended for the "
5184 "programmers."
5185 msgstr ""
5186
5187 #. type: =head2
5188 #: ../src/guestfs.pod:2683
5189 msgid "SOURCE CODE SUBDIRECTORIES"
5190 msgstr ""
5191
5192 #. type: =item
5193 #: ../src/guestfs.pod:2687 ../src/guestfs-actions.pod:6174
5194 #: ../fish/guestfish-actions.pod:4072
5195 msgid "C<appliance>"
5196 msgstr ""
5197
5198 #. type: textblock
5199 #: ../src/guestfs.pod:2689
5200 msgid "The libguestfs appliance, build scripts and so on."
5201 msgstr ""
5202
5203 #. type: =item
5204 #: ../src/guestfs.pod:2691
5205 msgid "C<capitests>"
5206 msgstr ""
5207
5208 #. type: textblock
5209 #: ../src/guestfs.pod:2693
5210 msgid "Automated tests of the C API."
5211 msgstr ""
5212
5213 #. type: =item
5214 #: ../src/guestfs.pod:2695
5215 msgid "C<cat>"
5216 msgstr ""
5217
5218 #. type: textblock
5219 #: ../src/guestfs.pod:2697
5220 msgid ""
5221 "The L<virt-cat(1)>, L<virt-filesystems(1)> and L<virt-ls(1)> commands and "
5222 "documentation."
5223 msgstr ""
5224
5225 #. type: =item
5226 #: ../src/guestfs.pod:2700
5227 msgid "C<caution>"
5228 msgstr ""
5229
5230 #. type: textblock
5231 #: ../src/guestfs.pod:2702
5232 msgid ""
5233 "Safety and liveness tests of components that libguestfs depends upon (not of"
5234 " libguestfs itself).  Mainly this is for qemu and the kernel."
5235 msgstr ""
5236
5237 #. type: =item
5238 #: ../src/guestfs.pod:2705
5239 msgid "C<contrib>"
5240 msgstr ""
5241
5242 #. type: textblock
5243 #: ../src/guestfs.pod:2707
5244 msgid "Outside contributions, experimental parts."
5245 msgstr ""
5246
5247 #. type: =item
5248 #: ../src/guestfs.pod:2709
5249 msgid "C<daemon>"
5250 msgstr ""
5251
5252 #. type: textblock
5253 #: ../src/guestfs.pod:2711
5254 msgid ""
5255 "The daemon that runs inside the libguestfs appliance and carries out "
5256 "actions."
5257 msgstr ""
5258
5259 #. type: =item
5260 #: ../src/guestfs.pod:2714
5261 msgid "C<df>"
5262 msgstr ""
5263
5264 #. type: textblock
5265 #: ../src/guestfs.pod:2716
5266 msgid "L<virt-df(1)> command and documentation."
5267 msgstr ""
5268
5269 #. type: =item
5270 #: ../src/guestfs.pod:2718
5271 msgid "C<edit>"
5272 msgstr ""
5273
5274 #. type: textblock
5275 #: ../src/guestfs.pod:2720
5276 msgid "L<virt-edit(1)> command and documentation."
5277 msgstr ""
5278
5279 #. type: =item
5280 #: ../src/guestfs.pod:2722
5281 msgid "C<examples>"
5282 msgstr ""
5283
5284 #. type: textblock
5285 #: ../src/guestfs.pod:2724
5286 msgid "C API example code."
5287 msgstr ""
5288
5289 #. type: =item
5290 #: ../src/guestfs.pod:2726
5291 msgid "C<fish>"
5292 msgstr ""
5293
5294 #. type: textblock
5295 #: ../src/guestfs.pod:2728
5296 msgid ""
5297 "L<guestfish(1)>, the command-line shell, and various shell scripts built on "
5298 "top such as L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L"
5299 "<virt-tar-out(1)>."
5300 msgstr ""
5301
5302 #. type: =item
5303 #: ../src/guestfs.pod:2732
5304 msgid "C<fuse>"
5305 msgstr ""
5306
5307 #. type: textblock
5308 #: ../src/guestfs.pod:2734
5309 msgid ""
5310 "L<guestmount(1)>, FUSE (userspace filesystem) built on top of libguestfs."
5311 msgstr ""
5312
5313 #. type: =item
5314 #: ../src/guestfs.pod:2736
5315 msgid "C<generator>"
5316 msgstr ""
5317
5318 #. type: textblock
5319 #: ../src/guestfs.pod:2738
5320 msgid ""
5321 "The crucially important generator, used to automatically generate large "
5322 "amounts of boilerplate C code for things like RPC and bindings."
5323 msgstr ""
5324
5325 #. type: =item
5326 #: ../src/guestfs.pod:2741
5327 msgid "C<images>"
5328 msgstr ""
5329
5330 #. type: textblock
5331 #: ../src/guestfs.pod:2743
5332 msgid "Files used by the test suite."
5333 msgstr ""
5334
5335 #. type: textblock
5336 #: ../src/guestfs.pod:2745
5337 msgid "Some \"phony\" guest images which we test against."
5338 msgstr ""
5339
5340 #. type: =item
5341 #: ../src/guestfs.pod:2747
5342 msgid "C<inspector>"
5343 msgstr ""
5344
5345 #. type: textblock
5346 #: ../src/guestfs.pod:2749
5347 msgid "L<virt-inspector(1)>, the virtual machine image inspector."
5348 msgstr ""
5349
5350 #. type: =item
5351 #: ../src/guestfs.pod:2751
5352 msgid "C<logo>"
5353 msgstr ""
5354
5355 #. type: textblock
5356 #: ../src/guestfs.pod:2753
5357 msgid "Logo used on the website.  The fish is called Arthur by the way."
5358 msgstr ""
5359
5360 #. type: =item
5361 #: ../src/guestfs.pod:2755
5362 msgid "C<m4>"
5363 msgstr ""
5364
5365 #. type: textblock
5366 #: ../src/guestfs.pod:2757
5367 msgid "M4 macros used by autoconf."
5368 msgstr ""
5369
5370 #. type: =item
5371 #: ../src/guestfs.pod:2759
5372 msgid "C<po>"
5373 msgstr ""
5374
5375 #. type: textblock
5376 #: ../src/guestfs.pod:2761
5377 msgid "Translations of simple gettext strings."
5378 msgstr ""
5379
5380 #. type: =item
5381 #: ../src/guestfs.pod:2763
5382 msgid "C<po-docs>"
5383 msgstr ""
5384
5385 #. type: textblock
5386 #: ../src/guestfs.pod:2765
5387 msgid ""
5388 "The build infrastructure and PO files for translations of manpages and POD "
5389 "files.  Eventually this will be combined with the C<po> directory, but that "
5390 "is rather complicated."
5391 msgstr ""
5392
5393 #. type: =item
5394 #: ../src/guestfs.pod:2769
5395 msgid "C<regressions>"
5396 msgstr ""
5397
5398 #. type: textblock
5399 #: ../src/guestfs.pod:2771
5400 msgid "Regression tests."
5401 msgstr ""
5402
5403 #. type: =item
5404 #: ../src/guestfs.pod:2773
5405 msgid "C<rescue>"
5406 msgstr ""
5407
5408 #. type: textblock
5409 #: ../src/guestfs.pod:2775
5410 msgid "L<virt-rescue(1)> command and documentation."
5411 msgstr ""
5412
5413 #. type: =item
5414 #: ../src/guestfs.pod:2777
5415 msgid "C<src>"
5416 msgstr ""
5417
5418 #. type: textblock
5419 #: ../src/guestfs.pod:2779
5420 msgid "Source code to the C library."
5421 msgstr ""
5422
5423 #. type: =item
5424 #: ../src/guestfs.pod:2781
5425 msgid "C<tools>"
5426 msgstr ""
5427
5428 #. type: textblock
5429 #: ../src/guestfs.pod:2783
5430 msgid ""
5431 "Command line tools written in Perl (L<virt-resize(1)> and many others)."
5432 msgstr ""
5433
5434 #. type: =item
5435 #: ../src/guestfs.pod:2785
5436 msgid "C<test-tool>"
5437 msgstr ""
5438
5439 #. type: textblock
5440 #: ../src/guestfs.pod:2787
5441 msgid ""
5442 "Test tool for end users to test if their qemu/kernel combination will work "
5443 "with libguestfs."
5444 msgstr ""
5445
5446 #. type: =item
5447 #: ../src/guestfs.pod:2790
5448 msgid "C<csharp>"
5449 msgstr ""
5450
5451 #. type: =item
5452 #: ../src/guestfs.pod:2792
5453 msgid "C<haskell>"
5454 msgstr ""
5455
5456 #. type: =item
5457 #: ../src/guestfs.pod:2794
5458 msgid "C<java>"
5459 msgstr ""
5460
5461 #. type: =item
5462 #: ../src/guestfs.pod:2796
5463 msgid "C<ocaml>"
5464 msgstr ""
5465
5466 #. type: =item
5467 #: ../src/guestfs.pod:2798
5468 msgid "C<php>"
5469 msgstr ""
5470
5471 #. type: =item
5472 #: ../src/guestfs.pod:2800
5473 msgid "C<perl>"
5474 msgstr ""
5475
5476 #. type: =item
5477 #: ../src/guestfs.pod:2802
5478 msgid "C<python>"
5479 msgstr ""
5480
5481 #. type: =item
5482 #: ../src/guestfs.pod:2804
5483 msgid "C<ruby>"
5484 msgstr ""
5485
5486 #. type: textblock
5487 #: ../src/guestfs.pod:2806
5488 msgid "Language bindings."
5489 msgstr ""
5490
5491 #. type: =head1
5492 #: ../src/guestfs.pod:2810
5493 msgid "LIMITS"
5494 msgstr ""
5495
5496 #. type: =head2
5497 #: ../src/guestfs.pod:2812
5498 msgid "PROTOCOL LIMITS"
5499 msgstr ""
5500
5501 #. type: textblock
5502 #: ../src/guestfs.pod:2814
5503 msgid ""
5504 "Internally libguestfs uses a message-based protocol to pass API calls and "
5505 "their responses to and from a small \"appliance\" (see L</INTERNALS> for "
5506 "plenty more detail about this).  The maximum message size used by the "
5507 "protocol is slightly less than 4 MB.  For some API calls you may need to be "
5508 "aware of this limit.  The API calls which may be affected are individually "
5509 "documented, with a link back to this section of the documentation."
5510 msgstr ""
5511
5512 #. type: textblock
5513 #: ../src/guestfs.pod:2822
5514 msgid ""
5515 "A simple call such as L</guestfs_cat> returns its result (the file data) in "
5516 "a simple string.  Because this string is at some point internally encoded as"
5517 " a message, the maximum size that it can return is slightly under 4 MB.  If "
5518 "the requested file is larger than this then you will get an error."
5519 msgstr ""
5520
5521 #. type: textblock
5522 #: ../src/guestfs.pod:2828
5523 msgid ""
5524 "In order to transfer large files into and out of the guest filesystem, you "
5525 "need to use particular calls that support this.  The sections L</UPLOADING> "
5526 "and L</DOWNLOADING> document how to do this."
5527 msgstr ""
5528
5529 #. type: textblock
5530 #: ../src/guestfs.pod:2832
5531 msgid ""
5532 "You might also consider mounting the disk image using our FUSE filesystem "
5533 "support (L<guestmount(1)>)."
5534 msgstr ""
5535
5536 #. type: =head2
5537 #: ../src/guestfs.pod:2835
5538 msgid "MAXIMUM NUMBER OF DISKS"
5539 msgstr ""
5540
5541 #. type: textblock
5542 #: ../src/guestfs.pod:2837
5543 msgid ""
5544 "When using virtio disks (the default) the current limit is B<25> disks."
5545 msgstr ""
5546
5547 #. type: textblock
5548 #: ../src/guestfs.pod:2840
5549 msgid ""
5550 "Virtio itself consumes 1 virtual PCI slot per disk, and PCI is limited to 31"
5551 " slots.  However febootstrap only understands disks with names C</dev/vda> "
5552 "through C</dev/vdz> (26 letters) and it reserves one disk for its own "
5553 "purposes."
5554 msgstr ""
5555
5556 #. type: textblock
5557 #: ../src/guestfs.pod:2845
5558 msgid ""
5559 "We are working to substantially raise this limit in future versions but it "
5560 "requires complex changes to qemu."
5561 msgstr ""
5562
5563 #. type: textblock
5564 #: ../src/guestfs.pod:2848
5565 msgid ""
5566 "In future versions of libguestfs it should also be possible to \"hot plug\" "
5567 "disks (add and remove disks after calling L</guestfs_launch>).  This also "
5568 "requires changes to qemu."
5569 msgstr ""
5570
5571 #. type: =head2
5572 #: ../src/guestfs.pod:2852
5573 msgid "MAXIMUM NUMBER OF PARTITIONS PER DISK"
5574 msgstr ""
5575
5576 #. type: textblock
5577 #: ../src/guestfs.pod:2854
5578 msgid "Virtio limits the maximum number of partitions per disk to B<15>."
5579 msgstr ""
5580
5581 #. type: textblock
5582 #: ../src/guestfs.pod:2856
5583 msgid ""
5584 "This is because it reserves 4 bits for the minor device number (thus "
5585 "C</dev/vda>, and C</dev/vda1> through C</dev/vda15>)."
5586 msgstr ""
5587
5588 #. type: textblock
5589 #: ../src/guestfs.pod:2859
5590 msgid ""
5591 "If you attach a disk with more than 15 partitions, the extra partitions are "
5592 "ignored by libguestfs."
5593 msgstr ""
5594
5595 #. type: =head2
5596 #: ../src/guestfs.pod:2862
5597 msgid "MAXIMUM SIZE OF A DISK"
5598 msgstr ""
5599
5600 #. type: textblock
5601 #: ../src/guestfs.pod:2864
5602 msgid "Probably the limit is between 2**63-1 and 2**64-1 bytes."
5603 msgstr ""
5604
5605 #. type: textblock
5606 #: ../src/guestfs.pod:2866
5607 msgid ""
5608 "We have tested block devices up to 1 exabyte (2**60 or "
5609 "1,152,921,504,606,846,976 bytes) using sparse files backed by an XFS host "
5610 "filesystem."
5611 msgstr ""
5612
5613 #. type: textblock
5614 #: ../src/guestfs.pod:2870
5615 msgid ""
5616 "Although libguestfs probably does not impose any limit, the underlying host "
5617 "storage will.  If you store disk images on a host ext4 filesystem, then the "
5618 "maximum size will be limited by the maximum ext4 file size (currently 16 "
5619 "TB).  If you store disk images as host logical volumes then you are limited "
5620 "by the maximum size of an LV."
5621 msgstr ""
5622
5623 #. type: textblock
5624 #: ../src/guestfs.pod:2876
5625 msgid ""
5626 "For the hugest disk image files, we recommend using XFS on the host for "
5627 "storage."
5628 msgstr ""
5629
5630 #. type: =head2
5631 #: ../src/guestfs.pod:2879
5632 msgid "MAXIMUM SIZE OF A PARTITION"
5633 msgstr ""
5634
5635 #. type: textblock
5636 #: ../src/guestfs.pod:2881
5637 msgid ""
5638 "The MBR (ie. classic MS-DOS) partitioning scheme uses 32 bit sector numbers."
5639 "  Assuming a 512 byte sector size, this means that MBR cannot address a "
5640 "partition located beyond 2 TB on the disk."
5641 msgstr ""
5642
5643 #. type: textblock
5644 #: ../src/guestfs.pod:2885
5645 msgid ""
5646 "It is recommended that you use GPT partitions on disks which are larger than"
5647 " this size.  GPT uses 64 bit sector numbers and so can address partitions "
5648 "which are theoretically larger than the largest disk we could support."
5649 msgstr ""
5650
5651 #. type: =head2
5652 #: ../src/guestfs.pod:2890
5653 msgid "MAXIMUM SIZE OF A FILESYSTEM, FILES, DIRECTORIES"
5654 msgstr ""
5655
5656 #. type: textblock
5657 #: ../src/guestfs.pod:2892
5658 msgid ""
5659 "This depends on the filesystem type.  libguestfs itself does not impose any "
5660 "known limit.  Consult Wikipedia or the filesystem documentation to find out "
5661 "what these limits are."
5662 msgstr ""
5663
5664 #. type: =head2
5665 #: ../src/guestfs.pod:2896
5666 msgid "MAXIMUM UPLOAD AND DOWNLOAD"
5667 msgstr ""
5668
5669 #. type: textblock
5670 #: ../src/guestfs.pod:2898
5671 msgid ""
5672 "The API functions L</guestfs_upload>, L</guestfs_download>, "
5673 "L</guestfs_tar_in>, L</guestfs_tar_out> and the like allow unlimited sized "
5674 "uploads and downloads."
5675 msgstr ""
5676
5677 #. type: =head2
5678 #: ../src/guestfs.pod:2902
5679 msgid "INSPECTION LIMITS"
5680 msgstr ""
5681
5682 #. type: textblock
5683 #: ../src/guestfs.pod:2904
5684 msgid ""
5685 "The inspection code has several arbitrary limits on things like the size of "
5686 "Windows Registry hive it will read, and the length of product name.  These "
5687 "are intended to stop a malicious guest from consuming arbitrary amounts of "
5688 "memory and disk space on the host, and should not be reached in practice.  "
5689 "See the source code for more information."
5690 msgstr ""
5691
5692 #. type: =head1
5693 #: ../src/guestfs.pod:2910 ../fish/guestfish.pod:1075
5694 #: ../test-tool/libguestfs-test-tool.pod:82
5695 msgid "ENVIRONMENT VARIABLES"
5696 msgstr ""
5697
5698 #. type: =item
5699 #: ../src/guestfs.pod:2914 ../fish/guestfish.pod:1106
5700 msgid "LIBGUESTFS_APPEND"
5701 msgstr ""
5702
5703 #. type: textblock
5704 #: ../src/guestfs.pod:2916 ../fish/guestfish.pod:1108
5705 msgid "Pass additional options to the guest kernel."
5706 msgstr ""
5707
5708 #. type: =item
5709 #: ../src/guestfs.pod:2918 ../fish/guestfish.pod:1110
5710 msgid "LIBGUESTFS_DEBUG"
5711 msgstr ""
5712
5713 #. type: textblock
5714 #: ../src/guestfs.pod:2920
5715 msgid ""
5716 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
5717 "effect as calling C<guestfs_set_verbose (g, 1)>."
5718 msgstr ""
5719
5720 #. type: =item
5721 #: ../src/guestfs.pod:2923 ../fish/guestfish.pod:1115
5722 msgid "LIBGUESTFS_MEMSIZE"
5723 msgstr ""
5724
5725 #. type: textblock
5726 #: ../src/guestfs.pod:2925 ../fish/guestfish.pod:1117
5727 msgid ""
5728 "Set the memory allocated to the qemu process, in megabytes.  For example:"
5729 msgstr ""
5730
5731 #. type: verbatim
5732 #: ../src/guestfs.pod:2928 ../fish/guestfish.pod:1120
5733 #, no-wrap
5734 msgid ""
5735 " LIBGUESTFS_MEMSIZE=700\n"
5736 "\n"
5737 msgstr ""
5738
5739 #. type: =item
5740 #: ../src/guestfs.pod:2930 ../fish/guestfish.pod:1122
5741 msgid "LIBGUESTFS_PATH"
5742 msgstr ""
5743
5744 #. type: textblock
5745 #: ../src/guestfs.pod:2932
5746 msgid ""
5747 "Set the path that libguestfs uses to search for a supermin appliance.  See "
5748 "the discussion of paths in section L</PATH> above."
5749 msgstr ""
5750
5751 #. type: =item
5752 #: ../src/guestfs.pod:2935 ../fish/guestfish.pod:1127
5753 msgid "LIBGUESTFS_QEMU"
5754 msgstr ""
5755
5756 #. type: textblock
5757 #: ../src/guestfs.pod:2937 ../fish/guestfish.pod:1129
5758 msgid ""
5759 "Set the default qemu binary that libguestfs uses.  If not set, then the qemu"
5760 " which was found at compile time by the configure script is used."
5761 msgstr ""
5762
5763 #. type: textblock
5764 #: ../src/guestfs.pod:2941
5765 msgid "See also L</QEMU WRAPPERS> above."
5766 msgstr ""
5767
5768 #. type: =item
5769 #: ../src/guestfs.pod:2943 ../fish/guestfish.pod:1133
5770 msgid "LIBGUESTFS_TRACE"
5771 msgstr ""
5772
5773 #. type: textblock
5774 #: ../src/guestfs.pod:2945
5775 msgid ""
5776 "Set C<LIBGUESTFS_TRACE=1> to enable command traces.  This has the same "
5777 "effect as calling C<guestfs_set_trace (g, 1)>."
5778 msgstr ""
5779
5780 #. type: =item
5781 #: ../src/guestfs.pod:2948 ../fish/guestfish.pod:1142
5782 msgid "TMPDIR"
5783 msgstr ""
5784
5785 #. type: textblock
5786 #: ../src/guestfs.pod:2950 ../fish/guestfish.pod:1144
5787 msgid ""
5788 "Location of temporary directory, defaults to C</tmp> except for the cached "
5789 "supermin appliance which defaults to C</var/tmp>."
5790 msgstr ""
5791
5792 #. type: textblock
5793 #: ../src/guestfs.pod:2953 ../fish/guestfish.pod:1147
5794 msgid ""
5795 "If libguestfs was compiled to use the supermin appliance then the real "
5796 "appliance is cached in this directory, shared between all handles belonging "
5797 "to the same EUID.  You can use C<$TMPDIR> to configure another directory to "
5798 "use in case C</var/tmp> is not large enough."
5799 msgstr ""
5800
5801 #. type: =head1
5802 #: ../src/guestfs.pod:2961 ../fish/guestfish.pod:1214
5803 #: ../test-tool/libguestfs-test-tool.pod:87 ../fuse/guestmount.pod:279
5804 #: ../tools/virt-win-reg.pl:744 ../tools/virt-list-filesystems.pl:189
5805 #: ../tools/virt-tar.pl:286 ../tools/virt-make-fs.pl:539
5806 #: ../tools/virt-list-partitions.pl:257
5807 msgid "SEE ALSO"
5808 msgstr ""
5809
5810 #. type: textblock
5811 #: ../src/guestfs.pod:2963
5812 msgid ""
5813 "L<guestfs-examples(3)>, L<guestfs-ocaml(3)>, L<guestfs-python(3)>, L"
5814 "<guestfs-ruby(3)>, L<guestfish(1)>, L<guestmount(1)>, L<virt-cat(1)>, L"
5815 "<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L"
5816 "<virt-filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L"
5817 "<virt-list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-"
5818 "rescue(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L<virt-"
5819 "win-reg(1)>, L<qemu(1)>, L<febootstrap(1)>, L<hivex(3)>, "
5820 "L<http://libguestfs.org/>."
5821 msgstr ""
5822
5823 #. type: textblock
5824 #: ../src/guestfs.pod:2990
5825 msgid ""
5826 "Tools with a similar purpose: L<fdisk(8)>, L<parted(8)>, L<kpartx(8)>, "
5827 "L<lvm(8)>, L<disktype(1)>."
5828 msgstr ""
5829
5830 #. type: =head1
5831 #: ../src/guestfs.pod:2997 ../tools/virt-win-reg.pl:759
5832 #: ../tools/virt-make-fs.pl:553
5833 msgid "BUGS"
5834 msgstr ""
5835
5836 #. type: textblock
5837 #: ../src/guestfs.pod:2999
5838 msgid "To get a list of bugs against libguestfs use this link:"
5839 msgstr ""
5840
5841 #. type: textblock
5842 #: ../src/guestfs.pod:3001
5843 msgid ""
5844 "L<https://bugzilla.redhat.com/buglist.cgi?component=libguestfs&product=Virtualization+Tools>"
5845 msgstr ""
5846
5847 #. type: textblock
5848 #: ../src/guestfs.pod:3003
5849 msgid "To report a new bug against libguestfs use this link:"
5850 msgstr ""
5851
5852 #. type: textblock
5853 #: ../src/guestfs.pod:3005
5854 msgid ""
5855 "L<https://bugzilla.redhat.com/enter_bug.cgi?component=libguestfs&product=Virtualization+Tools>"
5856 msgstr ""
5857
5858 #. type: textblock
5859 #: ../src/guestfs.pod:3007
5860 msgid "When reporting a bug, please check:"
5861 msgstr ""
5862
5863 #. type: textblock
5864 #: ../src/guestfs.pod:3013
5865 msgid "That the bug hasn't been reported already."
5866 msgstr ""
5867
5868 #. type: textblock
5869 #: ../src/guestfs.pod:3017
5870 msgid "That you are testing a recent version."
5871 msgstr ""
5872
5873 #. type: textblock
5874 #: ../src/guestfs.pod:3021
5875 msgid "Describe the bug accurately, and give a way to reproduce it."
5876 msgstr ""
5877
5878 #. type: textblock
5879 #: ../src/guestfs.pod:3025
5880 msgid ""
5881 "Run libguestfs-test-tool and paste the B<complete, unedited> output into the"
5882 " bug report."
5883 msgstr ""
5884
5885 #. type: =head1
5886 #: ../src/guestfs.pod:3030 ../fish/guestfish.pod:1238
5887 #: ../test-tool/libguestfs-test-tool.pod:93 ../fuse/guestmount.pod:290
5888 msgid "AUTHORS"
5889 msgstr ""
5890
5891 #. type: textblock
5892 #: ../src/guestfs.pod:3032 ../fish/guestfish.pod:1240
5893 #: ../test-tool/libguestfs-test-tool.pod:95 ../fuse/guestmount.pod:292
5894 msgid "Richard W.M. Jones (C<rjones at redhat dot com>)"
5895 msgstr ""
5896
5897 #. type: =head1
5898 #: ../src/guestfs.pod:3034 ../fish/guestfish.pod:1242
5899 #: ../test-tool/libguestfs-test-tool.pod:97 ../fuse/guestmount.pod:294
5900 #: ../tools/virt-win-reg.pl:774 ../tools/virt-list-filesystems.pl:206
5901 #: ../tools/virt-tar.pl:305 ../tools/virt-make-fs.pl:568
5902 #: ../tools/virt-list-partitions.pl:273
5903 msgid "COPYRIGHT"
5904 msgstr ""
5905
5906 #. type: textblock
5907 #: ../src/guestfs.pod:3036 ../fish/guestfish.pod:1244
5908 #: ../test-tool/libguestfs-test-tool.pod:99
5909 msgid "Copyright (C) 2009-2011 Red Hat Inc.  L<http://libguestfs.org/>"
5910 msgstr ""
5911
5912 #. type: textblock
5913 #: ../src/guestfs.pod:3039
5914 msgid ""
5915 "This library is free software; you can redistribute it and/or modify it "
5916 "under the terms of the GNU Lesser General Public License as published by the"
5917 " Free Software Foundation; either version 2 of the License, or (at your "
5918 "option) any later version."
5919 msgstr ""
5920
5921 #. type: textblock
5922 #: ../src/guestfs.pod:3044
5923 msgid ""
5924 "This library is distributed in the hope that it will be useful, but WITHOUT "
5925 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
5926 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License"
5927 " for more details."
5928 msgstr ""
5929
5930 #. type: textblock
5931 #: ../src/guestfs.pod:3049
5932 msgid ""
5933 "You should have received a copy of the GNU Lesser General Public License "
5934 "along with this library; if not, write to the Free Software Foundation, "
5935 "Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA"
5936 msgstr ""
5937
5938 #. type: =head2
5939 #: ../src/guestfs-actions.pod:1
5940 msgid "guestfs_add_cdrom"
5941 msgstr ""
5942
5943 #. type: verbatim
5944 #: ../src/guestfs-actions.pod:3
5945 #, no-wrap
5946 msgid ""
5947 " int\n"
5948 " guestfs_add_cdrom (guestfs_h *g,\n"
5949 "                    const char *filename);\n"
5950 "\n"
5951 msgstr ""
5952
5953 #. type: textblock
5954 #: ../src/guestfs-actions.pod:7 ../fish/guestfish-actions.pod:5
5955 msgid "This function adds a virtual CD-ROM disk image to the guest."
5956 msgstr ""
5957
5958 #. type: textblock
5959 #: ../src/guestfs-actions.pod:9 ../fish/guestfish-actions.pod:7
5960 msgid "This is equivalent to the qemu parameter I<-cdrom filename>."
5961 msgstr ""
5962
5963 #. type: textblock
5964 #: ../src/guestfs-actions.pod:17
5965 msgid ""
5966 "This call checks for the existence of C<filename>.  This stops you from "
5967 "specifying other types of drive which are supported by qemu such as C<nbd:> "
5968 "and C<http:> URLs.  To specify those, use the general C<guestfs_config> call"
5969 " instead."
5970 msgstr ""
5971
5972 #. type: textblock
5973 #: ../src/guestfs-actions.pod:24
5974 msgid ""
5975 "If you just want to add an ISO file (often you use this as an efficient way "
5976 "to transfer large files into the guest), then you should probably use "
5977 "C<guestfs_add_drive_ro> instead."
5978 msgstr ""
5979
5980 #. type: textblock
5981 #: ../src/guestfs-actions.pod:30 ../src/guestfs-actions.pod:140
5982 #: ../src/guestfs-actions.pod:201 ../src/guestfs-actions.pod:238
5983 #: ../src/guestfs-actions.pod:252 ../src/guestfs-actions.pod:273
5984 #: ../src/guestfs-actions.pod:293 ../src/guestfs-actions.pod:307
5985 #: ../src/guestfs-actions.pod:422 ../src/guestfs-actions.pod:442
5986 #: ../src/guestfs-actions.pod:456 ../src/guestfs-actions.pod:501
5987 #: ../src/guestfs-actions.pod:529 ../src/guestfs-actions.pod:547
5988 #: ../src/guestfs-actions.pod:614 ../src/guestfs-actions.pod:647
5989 #: ../src/guestfs-actions.pod:661 ../src/guestfs-actions.pod:676
5990 #: ../src/guestfs-actions.pod:775 ../src/guestfs-actions.pod:793
5991 #: ../src/guestfs-actions.pod:807 ../src/guestfs-actions.pod:821
5992 #: ../src/guestfs-actions.pod:858 ../src/guestfs-actions.pod:1041
5993 #: ../src/guestfs-actions.pod:1061 ../src/guestfs-actions.pod:1079
5994 #: ../src/guestfs-actions.pod:1163 ../src/guestfs-actions.pod:1181
5995 #: ../src/guestfs-actions.pod:1200 ../src/guestfs-actions.pod:1214
5996 #: ../src/guestfs-actions.pod:1234 ../src/guestfs-actions.pod:1304
5997 #: ../src/guestfs-actions.pod:1335 ../src/guestfs-actions.pod:1360
5998 #: ../src/guestfs-actions.pod:1402 ../src/guestfs-actions.pod:1508
5999 #: ../src/guestfs-actions.pod:1542 ../src/guestfs-actions.pod:1757
6000 #: ../src/guestfs-actions.pod:1779 ../src/guestfs-actions.pod:1866
6001 #: ../src/guestfs-actions.pod:2339 ../src/guestfs-actions.pod:2483
6002 #: ../src/guestfs-actions.pod:2544 ../src/guestfs-actions.pod:2579
6003 #: ../src/guestfs-actions.pod:3619 ../src/guestfs-actions.pod:3634
6004 #: ../src/guestfs-actions.pod:3659 ../src/guestfs-actions.pod:3848
6005 #: ../src/guestfs-actions.pod:3862 ../src/guestfs-actions.pod:3875
6006 #: ../src/guestfs-actions.pod:3889 ../src/guestfs-actions.pod:3904
6007 #: ../src/guestfs-actions.pod:3940 ../src/guestfs-actions.pod:4012
6008 #: ../src/guestfs-actions.pod:4032 ../src/guestfs-actions.pod:4049
6009 #: ../src/guestfs-actions.pod:4072 ../src/guestfs-actions.pod:4095
6010 #: ../src/guestfs-actions.pod:4130 ../src/guestfs-actions.pod:4149
6011 #: ../src/guestfs-actions.pod:4168 ../src/guestfs-actions.pod:4203
6012 #: ../src/guestfs-actions.pod:4215 ../src/guestfs-actions.pod:4251
6013 #: ../src/guestfs-actions.pod:4267 ../src/guestfs-actions.pod:4280
6014 #: ../src/guestfs-actions.pod:4295 ../src/guestfs-actions.pod:4312
6015 #: ../src/guestfs-actions.pod:4405 ../src/guestfs-actions.pod:4425
6016 #: ../src/guestfs-actions.pod:4438 ../src/guestfs-actions.pod:4489
6017 #: ../src/guestfs-actions.pod:4507 ../src/guestfs-actions.pod:4525
6018 #: ../src/guestfs-actions.pod:4541 ../src/guestfs-actions.pod:4555
6019 #: ../src/guestfs-actions.pod:4569 ../src/guestfs-actions.pod:4586
6020 #: ../src/guestfs-actions.pod:4601 ../src/guestfs-actions.pod:4621
6021 #: ../src/guestfs-actions.pod:4691 ../src/guestfs-actions.pod:4764
6022 #: ../src/guestfs-actions.pod:4795 ../src/guestfs-actions.pod:4814
6023 #: ../src/guestfs-actions.pod:4833 ../src/guestfs-actions.pod:4845
6024 #: ../src/guestfs-actions.pod:4862 ../src/guestfs-actions.pod:4875
6025 #: ../src/guestfs-actions.pod:4890 ../src/guestfs-actions.pod:4905
6026 #: ../src/guestfs-actions.pod:4940 ../src/guestfs-actions.pod:4973
6027 #: ../src/guestfs-actions.pod:5012 ../src/guestfs-actions.pod:5032
6028 #: ../src/guestfs-actions.pod:5046 ../src/guestfs-actions.pod:5063
6029 #: ../src/guestfs-actions.pod:5112 ../src/guestfs-actions.pod:5158
6030 #: ../src/guestfs-actions.pod:5212 ../src/guestfs-actions.pod:5248
6031 #: ../src/guestfs-actions.pod:5283 ../src/guestfs-actions.pod:5300
6032 #: ../src/guestfs-actions.pod:5318 ../src/guestfs-actions.pod:5452
6033 #: ../src/guestfs-actions.pod:5509 ../src/guestfs-actions.pod:5531
6034 #: ../src/guestfs-actions.pod:5549 ../src/guestfs-actions.pod:5581
6035 #: ../src/guestfs-actions.pod:5647 ../src/guestfs-actions.pod:5664
6036 #: ../src/guestfs-actions.pod:5677 ../src/guestfs-actions.pod:5691
6037 #: ../src/guestfs-actions.pod:5980 ../src/guestfs-actions.pod:5999
6038 #: ../src/guestfs-actions.pod:6018 ../src/guestfs-actions.pod:6032
6039 #: ../src/guestfs-actions.pod:6044 ../src/guestfs-actions.pod:6058
6040 #: ../src/guestfs-actions.pod:6070 ../src/guestfs-actions.pod:6084
6041 #: ../src/guestfs-actions.pod:6100 ../src/guestfs-actions.pod:6121
6042 #: ../src/guestfs-actions.pod:6140 ../src/guestfs-actions.pod:6159
6043 #: ../src/guestfs-actions.pod:6189 ../src/guestfs-actions.pod:6207
6044 #: ../src/guestfs-actions.pod:6230 ../src/guestfs-actions.pod:6248
6045 #: ../src/guestfs-actions.pod:6267 ../src/guestfs-actions.pod:6288
6046 #: ../src/guestfs-actions.pod:6307 ../src/guestfs-actions.pod:6324
6047 #: ../src/guestfs-actions.pod:6343 ../src/guestfs-actions.pod:6369
6048 #: ../src/guestfs-actions.pod:6393 ../src/guestfs-actions.pod:6412
6049 #: ../src/guestfs-actions.pod:6436 ../src/guestfs-actions.pod:6455
6050 #: ../src/guestfs-actions.pod:6470 ../src/guestfs-actions.pod:6489
6051 #: ../src/guestfs-actions.pod:6526 ../src/guestfs-actions.pod:6556
6052 #: ../src/guestfs-actions.pod:6589 ../src/guestfs-actions.pod:6711
6053 #: ../src/guestfs-actions.pod:6832 ../src/guestfs-actions.pod:6844
6054 #: ../src/guestfs-actions.pod:6857 ../src/guestfs-actions.pod:6870
6055 #: ../src/guestfs-actions.pod:6892 ../src/guestfs-actions.pod:6905
6056 #: ../src/guestfs-actions.pod:6918 ../src/guestfs-actions.pod:6931
6057 #: ../src/guestfs-actions.pod:6946 ../src/guestfs-actions.pod:7005
6058 #: ../src/guestfs-actions.pod:7022 ../src/guestfs-actions.pod:7038
6059 #: ../src/guestfs-actions.pod:7054 ../src/guestfs-actions.pod:7071
6060 #: ../src/guestfs-actions.pod:7084 ../src/guestfs-actions.pod:7104
6061 #: ../src/guestfs-actions.pod:7140 ../src/guestfs-actions.pod:7154
6062 #: ../src/guestfs-actions.pod:7195 ../src/guestfs-actions.pod:7208
6063 #: ../src/guestfs-actions.pod:7226 ../src/guestfs-actions.pod:7260
6064 #: ../src/guestfs-actions.pod:7296 ../src/guestfs-actions.pod:7412
6065 #: ../src/guestfs-actions.pod:7427 ../src/guestfs-actions.pod:7441
6066 #: ../src/guestfs-actions.pod:7496 ../src/guestfs-actions.pod:7509
6067 #: ../src/guestfs-actions.pod:7554 ../src/guestfs-actions.pod:7587
6068 #: ../src/guestfs-actions.pod:7650 ../src/guestfs-actions.pod:7670
6069 #: ../src/guestfs-actions.pod:7694 ../src/guestfs-actions.pod:7761
6070 #: ../src/guestfs-actions.pod:7780 ../src/guestfs-actions.pod:7809
6071 msgid "This function returns 0 on success or -1 on error."
6072 msgstr ""
6073
6074 #. type: textblock
6075 #: ../src/guestfs-actions.pod:32 ../src/guestfs-actions.pod:254
6076 #: ../src/guestfs-actions.pod:275 ../fish/guestfish-actions.pod:28
6077 #: ../fish/guestfish-actions.pod:163 ../fish/guestfish-actions.pod:177
6078 msgid ""
6079 "This function is deprecated.  In new code, use the C<add_drive_opts> call "
6080 "instead."
6081 msgstr ""
6082
6083 #. type: textblock
6084 #: ../src/guestfs-actions.pod:35 ../src/guestfs-actions.pod:257
6085 #: ../src/guestfs-actions.pod:278 ../src/guestfs-actions.pod:1513
6086 #: ../src/guestfs-actions.pod:2008 ../src/guestfs-actions.pod:2029
6087 #: ../src/guestfs-actions.pod:4626 ../src/guestfs-actions.pod:4945
6088 #: ../src/guestfs-actions.pod:5163 ../src/guestfs-actions.pod:5253
6089 #: ../src/guestfs-actions.pod:6534 ../src/guestfs-actions.pod:6564
6090 #: ../src/guestfs-actions.pod:6597 ../src/guestfs-actions.pod:6656
6091 #: ../src/guestfs-actions.pod:7592 ../src/guestfs-actions.pod:7702
6092 #: ../src/guestfs-actions.pod:7872 ../fish/guestfish-actions.pod:31
6093 #: ../fish/guestfish-actions.pod:166 ../fish/guestfish-actions.pod:180
6094 #: ../fish/guestfish-actions.pod:986 ../fish/guestfish-actions.pod:1346
6095 #: ../fish/guestfish-actions.pod:1360 ../fish/guestfish-actions.pod:3085
6096 #: ../fish/guestfish-actions.pod:3292 ../fish/guestfish-actions.pod:3406
6097 #: ../fish/guestfish-actions.pod:3454 ../fish/guestfish-actions.pod:4349
6098 #: ../fish/guestfish-actions.pod:4372 ../fish/guestfish-actions.pod:4394
6099 #: ../fish/guestfish-actions.pod:4432 ../fish/guestfish-actions.pod:5081
6100 #: ../fish/guestfish-actions.pod:5179
6101 msgid ""
6102 "Deprecated functions will not be removed from the API, but the fact that "
6103 "they are deprecated indicates that there are problems with correct use of "
6104 "these functions."
6105 msgstr ""
6106
6107 #. type: textblock
6108 #: ../src/guestfs-actions.pod:39 ../src/guestfs-actions.pod:142
6109 #: ../src/guestfs-actions.pod:1165 ../src/guestfs-actions.pod:1980
6110 #: ../src/guestfs-actions.pod:2078 ../src/guestfs-actions.pod:2190
6111 #: ../src/guestfs-actions.pod:3621 ../src/guestfs-actions.pod:3641
6112 #: ../src/guestfs-actions.pod:4949 ../src/guestfs-actions.pod:6209
6113 #: ../src/guestfs-actions.pod:6326 ../src/guestfs-actions.pod:6457
6114 #: ../src/guestfs-actions.pod:6948 ../src/guestfs-actions.pod:7073
6115 #: ../src/guestfs-actions.pod:7596
6116 msgid "(Added in 0.3)"
6117 msgstr ""
6118
6119 #. type: =head2
6120 #: ../src/guestfs-actions.pod:41
6121 msgid "guestfs_add_domain"
6122 msgstr ""
6123
6124 #. type: verbatim
6125 #: ../src/guestfs-actions.pod:43
6126 #, no-wrap
6127 msgid ""
6128 " int\n"
6129 " guestfs_add_domain (guestfs_h *g,\n"
6130 "                     const char *dom,\n"
6131 "                     ...);\n"
6132 "\n"
6133 msgstr ""
6134
6135 #. type: textblock
6136 #: ../src/guestfs-actions.pod:48 ../src/guestfs-actions.pod:151
6137 #: ../src/guestfs-actions.pod:832 ../src/guestfs-actions.pod:2824
6138 #: ../src/guestfs-actions.pod:4640 ../src/guestfs-actions.pod:4959
6139 #: ../src/guestfs-actions.pod:5176
6140 msgid ""
6141 "You may supply a list of optional arguments to this call.  Use zero or more "
6142 "of the following pairs of parameters, and terminate the list with C<-1> on "
6143 "its own.  See L</CALLS WITH OPTIONAL ARGUMENTS>."
6144 msgstr ""
6145
6146 #. type: verbatim
6147 #: ../src/guestfs-actions.pod:53
6148 #, no-wrap
6149 msgid ""
6150 " GUESTFS_ADD_DOMAIN_LIBVIRTURI, const char *libvirturi,\n"
6151 " GUESTFS_ADD_DOMAIN_READONLY, int readonly,\n"
6152 " GUESTFS_ADD_DOMAIN_IFACE, const char *iface,\n"
6153 " GUESTFS_ADD_DOMAIN_LIVE, int live,\n"
6154 " GUESTFS_ADD_DOMAIN_ALLOWUUID, int allowuuid,\n"
6155 "\n"
6156 msgstr ""
6157
6158 #. type: textblock
6159 #: ../src/guestfs-actions.pod:59
6160 msgid ""
6161 "This function adds the disk(s) attached to the named libvirt domain C<dom>."
6162 "  It works by connecting to libvirt, requesting the domain and domain XML "
6163 "from libvirt, parsing it for disks, and calling C<guestfs_add_drive_opts> on"
6164 " each one."
6165 msgstr ""
6166
6167 #. type: textblock
6168 #: ../src/guestfs-actions.pod:64 ../fish/guestfish-actions.pod:46
6169 msgid ""
6170 "The number of disks added is returned.  This operation is atomic: if an "
6171 "error is returned, then no disks are added."
6172 msgstr ""
6173
6174 #. type: textblock
6175 #: ../src/guestfs-actions.pod:67 ../fish/guestfish-actions.pod:49
6176 msgid ""
6177 "This function does some minimal checks to make sure the libvirt domain is "
6178 "not running (unless C<readonly> is true).  In a future version we will try "
6179 "to acquire the libvirt lock on each disk."
6180 msgstr ""
6181
6182 #. type: textblock
6183 #: ../src/guestfs-actions.pod:71 ../fish/guestfish-actions.pod:53
6184 msgid ""
6185 "Disks must be accessible locally.  This often means that adding disks from a"
6186 " remote libvirt connection (see L<http://libvirt.org/remote.html>)  will "
6187 "fail unless those disks are accessible via the same device path locally too."
6188 msgstr ""
6189
6190 #. type: textblock
6191 #: ../src/guestfs-actions.pod:76 ../fish/guestfish-actions.pod:58
6192 msgid ""
6193 "The optional C<libvirturi> parameter sets the libvirt URI (see "
6194 "L<http://libvirt.org/uri.html>).  If this is not set then we connect to the "
6195 "default libvirt URI (or one set through an environment variable, see the "
6196 "libvirt documentation for full details)."
6197 msgstr ""
6198
6199 #. type: textblock
6200 #: ../src/guestfs-actions.pod:82 ../fish/guestfish-actions.pod:64
6201 msgid ""
6202 "The optional C<live> flag controls whether this call will try to connect to "
6203 "a running virtual machine C<guestfsd> process if it sees a suitable "
6204 "E<lt>channelE<gt> element in the libvirt XML definition.  The default (if "
6205 "the flag is omitted) is never to try.  See L<guestfs(3)/ATTACHING TO RUNNING"
6206 " DAEMONS> for more information."
6207 msgstr ""
6208
6209 #. type: textblock
6210 #: ../src/guestfs-actions.pod:89 ../fish/guestfish-actions.pod:71
6211 msgid ""
6212 "If the C<allowuuid> flag is true (default is false) then a UUID I<may> be "
6213 "passed instead of the domain name.  The C<dom> string is treated as a UUID "
6214 "first and looked up, and if that lookup fails then we treat C<dom> as a name"
6215 " as usual."
6216 msgstr ""
6217
6218 #. type: textblock
6219 #: ../src/guestfs-actions.pod:94
6220 msgid ""
6221 "The other optional parameters are passed directly through to "
6222 "C<guestfs_add_drive_opts>."
6223 msgstr ""
6224
6225 #. type: textblock
6226 #: ../src/guestfs-actions.pod:97 ../src/guestfs-actions.pod:350
6227 #: ../src/guestfs-actions.pod:515 ../src/guestfs-actions.pod:693
6228 #: ../src/guestfs-actions.pod:724 ../src/guestfs-actions.pod:742
6229 #: ../src/guestfs-actions.pod:761 ../src/guestfs-actions.pod:1380
6230 #: ../src/guestfs-actions.pod:1736 ../src/guestfs-actions.pod:1939
6231 #: ../src/guestfs-actions.pod:2050 ../src/guestfs-actions.pod:2099
6232 #: ../src/guestfs-actions.pod:2154 ../src/guestfs-actions.pod:2177
6233 #: ../src/guestfs-actions.pod:2470 ../src/guestfs-actions.pod:2942
6234 #: ../src/guestfs-actions.pod:2960 ../src/guestfs-actions.pod:5135
6235 #: ../src/guestfs-actions.pod:5355 ../src/guestfs-actions.pod:5761
6236 #: ../src/guestfs-actions.pod:5787 ../src/guestfs-actions.pod:7181
6237 #: ../src/guestfs-actions.pod:7607 ../src/guestfs-actions.pod:7620
6238 #: ../src/guestfs-actions.pod:7633
6239 msgid "On error this function returns -1."
6240 msgstr ""
6241
6242 #. type: textblock
6243 #: ../src/guestfs-actions.pod:99
6244 msgid "(Added in 1.7.4)"
6245 msgstr ""
6246
6247 #. type: =head2
6248 #: ../src/guestfs-actions.pod:101
6249 msgid "guestfs_add_domain_va"
6250 msgstr ""
6251
6252 #. type: verbatim
6253 #: ../src/guestfs-actions.pod:103
6254 #, no-wrap
6255 msgid ""
6256 " int\n"
6257 " guestfs_add_domain_va (guestfs_h *g,\n"
6258 "                        const char *dom,\n"
6259 "                        va_list args);\n"
6260 "\n"
6261 msgstr ""
6262
6263 #. type: textblock
6264 #: ../src/guestfs-actions.pod:108
6265 msgid "This is the \"va_list variant\" of L</guestfs_add_domain>."
6266 msgstr ""
6267
6268 #. type: textblock
6269 #: ../src/guestfs-actions.pod:110 ../src/guestfs-actions.pod:121
6270 #: ../src/guestfs-actions.pod:214 ../src/guestfs-actions.pod:225
6271 #: ../src/guestfs-actions.pod:871 ../src/guestfs-actions.pod:882
6272 #: ../src/guestfs-actions.pod:2908 ../src/guestfs-actions.pod:2920
6273 #: ../src/guestfs-actions.pod:4705 ../src/guestfs-actions.pod:4717
6274 #: ../src/guestfs-actions.pod:4987 ../src/guestfs-actions.pod:4999
6275 #: ../src/guestfs-actions.pod:5225 ../src/guestfs-actions.pod:5236
6276 msgid "See L</CALLS WITH OPTIONAL ARGUMENTS>."
6277 msgstr ""
6278
6279 #. type: =head2
6280 #: ../src/guestfs-actions.pod:112
6281 msgid "guestfs_add_domain_argv"
6282 msgstr ""
6283
6284 #. type: verbatim
6285 #: ../src/guestfs-actions.pod:114
6286 #, no-wrap
6287 msgid ""
6288 " int\n"
6289 " guestfs_add_domain_argv (guestfs_h *g,\n"
6290 "                          const char *dom,\n"
6291 "                          const struct guestfs_add_domain_argv *optargs);\n"
6292 "\n"
6293 msgstr ""
6294
6295 #. type: textblock
6296 #: ../src/guestfs-actions.pod:119
6297 msgid "This is the \"argv variant\" of L</guestfs_add_domain>."
6298 msgstr ""
6299
6300 #. type: =head2
6301 #: ../src/guestfs-actions.pod:123
6302 msgid "guestfs_add_drive"
6303 msgstr ""
6304
6305 #. type: verbatim
6306 #: ../src/guestfs-actions.pod:125
6307 #, no-wrap
6308 msgid ""
6309 " int\n"
6310 " guestfs_add_drive (guestfs_h *g,\n"
6311 "                    const char *filename);\n"
6312 "\n"
6313 msgstr ""
6314
6315 #. type: textblock
6316 #: ../src/guestfs-actions.pod:129
6317 msgid ""
6318 "This function is the equivalent of calling C<guestfs_add_drive_opts> with no"
6319 " optional parameters, so the disk is added writable, with the format being "
6320 "detected automatically."
6321 msgstr ""
6322
6323 #. type: textblock
6324 #: ../src/guestfs-actions.pod:133
6325 msgid ""
6326 "Automatic detection of the format opens you up to a potential security hole "
6327 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6328 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
6329 "you should think about replacing calls to this function with calls to "
6330 "C<guestfs_add_drive_opts>, and specifying the format."
6331 msgstr ""
6332
6333 #. type: =head2
6334 #: ../src/guestfs-actions.pod:144
6335 msgid "guestfs_add_drive_opts"
6336 msgstr ""
6337
6338 #. type: verbatim
6339 #: ../src/guestfs-actions.pod:146
6340 #, no-wrap
6341 msgid ""
6342 " int\n"
6343 " guestfs_add_drive_opts (guestfs_h *g,\n"
6344 "                         const char *filename,\n"
6345 "                         ...);\n"
6346 "\n"
6347 msgstr ""
6348
6349 #. type: verbatim
6350 #: ../src/guestfs-actions.pod:156
6351 #, no-wrap
6352 msgid ""
6353 " GUESTFS_ADD_DRIVE_OPTS_READONLY, int readonly,\n"
6354 " GUESTFS_ADD_DRIVE_OPTS_FORMAT, const char *format,\n"
6355 " GUESTFS_ADD_DRIVE_OPTS_IFACE, const char *iface,\n"
6356 "\n"
6357 msgstr ""
6358
6359 #. type: textblock
6360 #: ../src/guestfs-actions.pod:160 ../fish/guestfish-actions.pod:102
6361 msgid ""
6362 "This function adds a virtual machine disk image C<filename> to libguestfs.  "
6363 "The first time you call this function, the disk appears as C</dev/sda>, the "
6364 "second time as C</dev/sdb>, and so on."
6365 msgstr ""
6366
6367 #. type: textblock
6368 #: ../src/guestfs-actions.pod:165 ../fish/guestfish-actions.pod:107
6369 msgid ""
6370 "You don't necessarily need to be root when using libguestfs.  However you "
6371 "obviously do need sufficient permissions to access the filename for whatever"
6372 " operations you want to perform (ie. read access if you just want to read "
6373 "the image or write access if you want to modify the image)."
6374 msgstr ""
6375
6376 #. type: textblock
6377 #: ../src/guestfs-actions.pod:171 ../fish/guestfish-actions.pod:113
6378 msgid "This call checks that C<filename> exists."
6379 msgstr ""
6380
6381 #. type: textblock
6382 #: ../src/guestfs-actions.pod:173 ../src/guestfs-actions.pod:4653
6383 #: ../fish/guestfish-actions.pod:115 ../fish/guestfish-actions.pod:3096
6384 msgid "The optional arguments are:"
6385 msgstr ""
6386
6387 #. type: =item
6388 #: ../src/guestfs-actions.pod:177 ../fish/guestfish-actions.pod:119
6389 msgid "C<readonly>"
6390 msgstr ""
6391
6392 #. type: textblock
6393 #: ../src/guestfs-actions.pod:179 ../fish/guestfish-actions.pod:121
6394 msgid ""
6395 "If true then the image is treated as read-only.  Writes are still allowed, "
6396 "but they are stored in a temporary snapshot overlay which is discarded at "
6397 "the end.  The disk that you add is not modified."
6398 msgstr ""
6399
6400 #. type: =item
6401 #: ../src/guestfs-actions.pod:183 ../fish/guestfish-actions.pod:125
6402 msgid "C<format>"
6403 msgstr ""
6404
6405 #. type: textblock
6406 #: ../src/guestfs-actions.pod:185
6407 msgid ""
6408 "This forces the image format.  If you omit this (or use C<guestfs_add_drive>"
6409 " or C<guestfs_add_drive_ro>) then the format is automatically detected.  "
6410 "Possible formats include C<raw> and C<qcow2>."
6411 msgstr ""
6412
6413 #. type: textblock
6414 #: ../src/guestfs-actions.pod:189 ../fish/guestfish-actions.pod:131
6415 msgid ""
6416 "Automatic detection of the format opens you up to a potential security hole "
6417 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
6418 "RHBZ#642934.  Specifying the format closes this security hole."
6419 msgstr ""
6420
6421 #. type: =item
6422 #: ../src/guestfs-actions.pod:194 ../fish/guestfish-actions.pod:136
6423 msgid "C<iface>"
6424 msgstr ""
6425
6426 #. type: textblock
6427 #: ../src/guestfs-actions.pod:196
6428 msgid ""
6429 "This rarely-used option lets you emulate the behaviour of the deprecated "
6430 "C<guestfs_add_drive_with_if> call (q.v.)"
6431 msgstr ""
6432
6433 #. type: textblock
6434 #: ../src/guestfs-actions.pod:203
6435 msgid "(Added in 1.5.23)"
6436 msgstr ""
6437
6438 #. type: =head2
6439 #: ../src/guestfs-actions.pod:205
6440 msgid "guestfs_add_drive_opts_va"
6441 msgstr ""
6442
6443 #. type: verbatim
6444 #: ../src/guestfs-actions.pod:207
6445 #, no-wrap
6446 msgid ""
6447 " int\n"
6448 " guestfs_add_drive_opts_va (guestfs_h *g,\n"
6449 "                            const char *filename,\n"
6450 "                            va_list args);\n"
6451 "\n"
6452 msgstr ""
6453
6454 #. type: textblock
6455 #: ../src/guestfs-actions.pod:212
6456 msgid "This is the \"va_list variant\" of L</guestfs_add_drive_opts>."
6457 msgstr ""
6458
6459 #. type: =head2
6460 #: ../src/guestfs-actions.pod:216
6461 msgid "guestfs_add_drive_opts_argv"
6462 msgstr ""
6463
6464 #. type: verbatim
6465 #: ../src/guestfs-actions.pod:218
6466 #, no-wrap
6467 msgid ""
6468 " int\n"
6469 " guestfs_add_drive_opts_argv (guestfs_h *g,\n"
6470 "                              const char *filename,\n"
6471 "                              const struct guestfs_add_drive_opts_argv *optargs);\n"
6472 "\n"
6473 msgstr ""
6474
6475 #. type: textblock
6476 #: ../src/guestfs-actions.pod:223
6477 msgid "This is the \"argv variant\" of L</guestfs_add_drive_opts>."
6478 msgstr ""
6479
6480 #. type: =head2
6481 #: ../src/guestfs-actions.pod:227
6482 msgid "guestfs_add_drive_ro"
6483 msgstr ""
6484
6485 #. type: verbatim
6486 #: ../src/guestfs-actions.pod:229
6487 #, no-wrap
6488 msgid ""
6489 " int\n"
6490 " guestfs_add_drive_ro (guestfs_h *g,\n"
6491 "                       const char *filename);\n"
6492 "\n"
6493 msgstr ""
6494
6495 #. type: textblock
6496 #: ../src/guestfs-actions.pod:233
6497 msgid ""
6498 "This function is the equivalent of calling C<guestfs_add_drive_opts> with "
6499 "the optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the "
6500 "disk is added read-only, with the format being detected automatically."
6501 msgstr ""
6502
6503 #. type: textblock
6504 #: ../src/guestfs-actions.pod:240
6505 msgid "(Added in 1.0.38)"
6506 msgstr ""
6507
6508 #. type: =head2
6509 #: ../src/guestfs-actions.pod:242
6510 msgid "guestfs_add_drive_ro_with_if"
6511 msgstr ""
6512
6513 #. type: verbatim
6514 #: ../src/guestfs-actions.pod:244
6515 #, no-wrap
6516 msgid ""
6517 " int\n"
6518 " guestfs_add_drive_ro_with_if (guestfs_h *g,\n"
6519 "                               const char *filename,\n"
6520 "                               const char *iface);\n"
6521 "\n"
6522 msgstr ""
6523
6524 #. type: textblock
6525 #: ../src/guestfs-actions.pod:249
6526 msgid ""
6527 "This is the same as C<guestfs_add_drive_ro> but it allows you to specify the"
6528 " QEMU interface emulation to use at run time."
6529 msgstr ""
6530
6531 #. type: textblock
6532 #: ../src/guestfs-actions.pod:261 ../src/guestfs-actions.pod:282
6533 #: ../src/guestfs-actions.pod:2429
6534 msgid "(Added in 1.0.84)"
6535 msgstr ""
6536
6537 #. type: =head2
6538 #: ../src/guestfs-actions.pod:263
6539 msgid "guestfs_add_drive_with_if"
6540 msgstr ""
6541
6542 #. type: verbatim
6543 #: ../src/guestfs-actions.pod:265
6544 #, no-wrap
6545 msgid ""
6546 " int\n"
6547 " guestfs_add_drive_with_if (guestfs_h *g,\n"
6548 "                            const char *filename,\n"
6549 "                            const char *iface);\n"
6550 "\n"
6551 msgstr ""
6552
6553 #. type: textblock
6554 #: ../src/guestfs-actions.pod:270
6555 msgid ""
6556 "This is the same as C<guestfs_add_drive> but it allows you to specify the "
6557 "QEMU interface emulation to use at run time."
6558 msgstr ""
6559
6560 #. type: =head2
6561 #: ../src/guestfs-actions.pod:284
6562 msgid "guestfs_aug_clear"
6563 msgstr ""
6564
6565 #. type: verbatim
6566 #: ../src/guestfs-actions.pod:286
6567 #, no-wrap
6568 msgid ""
6569 " int\n"
6570 " guestfs_aug_clear (guestfs_h *g,\n"
6571 "                    const char *augpath);\n"
6572 "\n"
6573 msgstr ""
6574
6575 #. type: textblock
6576 #: ../src/guestfs-actions.pod:290 ../fish/guestfish-actions.pod:188
6577 msgid ""
6578 "Set the value associated with C<path> to C<NULL>.  This is the same as the "
6579 "L<augtool(1)> C<clear> command."
6580 msgstr ""
6581
6582 #. type: textblock
6583 #: ../src/guestfs-actions.pod:295 ../src/guestfs-actions.pod:2179
6584 msgid "(Added in 1.3.4)"
6585 msgstr ""
6586
6587 #. type: =head2
6588 #: ../src/guestfs-actions.pod:297
6589 msgid "guestfs_aug_close"
6590 msgstr ""
6591
6592 #. type: verbatim
6593 #: ../src/guestfs-actions.pod:299
6594 #, no-wrap
6595 msgid ""
6596 " int\n"
6597 " guestfs_aug_close (guestfs_h *g);\n"
6598 "\n"
6599 msgstr ""
6600
6601 #. type: textblock
6602 #: ../src/guestfs-actions.pod:302
6603 msgid ""
6604 "Close the current Augeas handle and free up any resources used by it.  After"
6605 " calling this, you have to call C<guestfs_aug_init> again before you can use"
6606 " any other Augeas functions."
6607 msgstr ""
6608
6609 #. type: textblock
6610 #: ../src/guestfs-actions.pod:309 ../src/guestfs-actions.pod:334
6611 #: ../src/guestfs-actions.pod:352 ../src/guestfs-actions.pod:366
6612 #: ../src/guestfs-actions.pod:424 ../src/guestfs-actions.pod:444
6613 #: ../src/guestfs-actions.pod:458 ../src/guestfs-actions.pod:489
6614 #: ../src/guestfs-actions.pod:503 ../src/guestfs-actions.pod:517
6615 #: ../src/guestfs-actions.pod:531 ../src/guestfs-actions.pod:549
6616 #: ../src/guestfs-actions.pod:5838
6617 msgid "(Added in 0.7)"
6618 msgstr ""
6619
6620 #. type: =head2
6621 #: ../src/guestfs-actions.pod:311
6622 msgid "guestfs_aug_defnode"
6623 msgstr ""
6624
6625 #. type: verbatim
6626 #: ../src/guestfs-actions.pod:313
6627 #, no-wrap
6628 msgid ""
6629 " struct guestfs_int_bool *\n"
6630 " guestfs_aug_defnode (guestfs_h *g,\n"
6631 "                      const char *name,\n"
6632 "                      const char *expr,\n"
6633 "                      const char *val);\n"
6634 "\n"
6635 msgstr ""
6636
6637 #. type: textblock
6638 #: ../src/guestfs-actions.pod:319 ../fish/guestfish-actions.pod:204
6639 msgid ""
6640 "Defines a variable C<name> whose value is the result of evaluating C<expr>."
6641 msgstr ""
6642
6643 #. type: textblock
6644 #: ../src/guestfs-actions.pod:322
6645 msgid ""
6646 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
6647 "calling C<guestfs_aug_set> C<expr>, C<value>.  C<name> will be the nodeset "
6648 "containing that single node."
6649 msgstr ""
6650
6651 #. type: textblock
6652 #: ../src/guestfs-actions.pod:326 ../fish/guestfish-actions.pod:211
6653 msgid ""
6654 "On success this returns a pair containing the number of nodes in the "
6655 "nodeset, and a boolean flag if a node was created."
6656 msgstr ""
6657
6658 #. type: textblock
6659 #: ../src/guestfs-actions.pod:330
6660 msgid ""
6661 "This function returns a C<struct guestfs_int_bool *>, or NULL if there was "
6662 "an error.  I<The caller must call C<guestfs_free_int_bool> after use>."
6663 msgstr ""
6664
6665 #. type: =head2
6666 #: ../src/guestfs-actions.pod:336
6667 msgid "guestfs_aug_defvar"
6668 msgstr ""
6669
6670 #. type: verbatim
6671 #: ../src/guestfs-actions.pod:338
6672 #, no-wrap
6673 msgid ""
6674 " int\n"
6675 " guestfs_aug_defvar (guestfs_h *g,\n"
6676 "                     const char *name,\n"
6677 "                     const char *expr);\n"
6678 "\n"
6679 msgstr ""
6680
6681 #. type: textblock
6682 #: ../src/guestfs-actions.pod:343 ../fish/guestfish-actions.pod:219
6683 msgid ""
6684 "Defines an Augeas variable C<name> whose value is the result of evaluating "
6685 "C<expr>.  If C<expr> is NULL, then C<name> is undefined."
6686 msgstr ""
6687
6688 #. type: textblock
6689 #: ../src/guestfs-actions.pod:347 ../fish/guestfish-actions.pod:223
6690 msgid ""
6691 "On success this returns the number of nodes in C<expr>, or C<0> if C<expr> "
6692 "evaluates to something which is not a nodeset."
6693 msgstr ""
6694
6695 #. type: =head2
6696 #: ../src/guestfs-actions.pod:354
6697 msgid "guestfs_aug_get"
6698 msgstr ""
6699
6700 #. type: verbatim
6701 #: ../src/guestfs-actions.pod:356
6702 #, no-wrap
6703 msgid ""
6704 " char *\n"
6705 " guestfs_aug_get (guestfs_h *g,\n"
6706 "                  const char *augpath);\n"
6707 "\n"
6708 msgstr ""
6709
6710 #. type: textblock
6711 #: ../src/guestfs-actions.pod:360 ../fish/guestfish-actions.pod:230
6712 msgid ""
6713 "Look up the value associated with C<path>.  If C<path> matches exactly one "
6714 "node, the C<value> is returned."
6715 msgstr ""
6716
6717 #. type: textblock
6718 #: ../src/guestfs-actions.pod:363 ../src/guestfs-actions.pod:922
6719 #: ../src/guestfs-actions.pod:940 ../src/guestfs-actions.pod:1000
6720 #: ../src/guestfs-actions.pod:1016 ../src/guestfs-actions.pod:1119
6721 #: ../src/guestfs-actions.pod:1249 ../src/guestfs-actions.pod:1266
6722 #: ../src/guestfs-actions.pod:1285 ../src/guestfs-actions.pod:1419
6723 #: ../src/guestfs-actions.pod:1607 ../src/guestfs-actions.pod:1719
6724 #: ../src/guestfs-actions.pod:1882 ../src/guestfs-actions.pod:1899
6725 #: ../src/guestfs-actions.pod:1966 ../src/guestfs-actions.pod:2002
6726 #: ../src/guestfs-actions.pod:2023 ../src/guestfs-actions.pod:2202
6727 #: ../src/guestfs-actions.pod:2394 ../src/guestfs-actions.pod:2598
6728 #: ../src/guestfs-actions.pod:2688 ../src/guestfs-actions.pod:2792
6729 #: ../src/guestfs-actions.pod:2811 ../src/guestfs-actions.pod:3025
6730 #: ../src/guestfs-actions.pod:3053 ../src/guestfs-actions.pod:3074
6731 #: ../src/guestfs-actions.pod:3108 ../src/guestfs-actions.pod:3167
6732 #: ../src/guestfs-actions.pod:3187 ../src/guestfs-actions.pod:3207
6733 #: ../src/guestfs-actions.pod:3834 ../src/guestfs-actions.pod:4187
6734 #: ../src/guestfs-actions.pod:4357 ../src/guestfs-actions.pod:4467
6735 #: ../src/guestfs-actions.pod:5373 ../src/guestfs-actions.pod:5566
6736 #: ../src/guestfs-actions.pod:5736 ../src/guestfs-actions.pod:5914
6737 #: ../src/guestfs-actions.pod:5963 ../src/guestfs-actions.pod:6617
6738 #: ../src/guestfs-actions.pod:6633 ../src/guestfs-actions.pod:6650
6739 #: ../src/guestfs-actions.pod:6681 ../src/guestfs-actions.pod:7355
6740 #: ../src/guestfs-actions.pod:7374 ../src/guestfs-actions.pod:7392
6741 #: ../src/guestfs-actions.pod:7566 ../src/guestfs-actions.pod:7866
6742 msgid ""
6743 "This function returns a string, or NULL on error.  I<The caller must free "
6744 "the returned string after use>."
6745 msgstr ""
6746
6747 #. type: =head2
6748 #: ../src/guestfs-actions.pod:368
6749 msgid "guestfs_aug_init"
6750 msgstr ""
6751
6752 #. type: verbatim
6753 #: ../src/guestfs-actions.pod:370
6754 #, no-wrap
6755 msgid ""
6756 " int\n"
6757 " guestfs_aug_init (guestfs_h *g,\n"
6758 "                   const char *root,\n"
6759 "                   int flags);\n"
6760 "\n"
6761 msgstr ""
6762
6763 #. type: textblock
6764 #: ../src/guestfs-actions.pod:375 ../fish/guestfish-actions.pod:237
6765 msgid ""
6766 "Create a new Augeas handle for editing configuration files.  If there was "
6767 "any previous Augeas handle associated with this guestfs session, then it is "
6768 "closed."
6769 msgstr ""
6770
6771 #. type: textblock
6772 #: ../src/guestfs-actions.pod:379
6773 msgid "You must call this before using any other C<guestfs_aug_*> commands."
6774 msgstr ""
6775
6776 #. type: textblock
6777 #: ../src/guestfs-actions.pod:382 ../fish/guestfish-actions.pod:244
6778 msgid ""
6779 "C<root> is the filesystem root.  C<root> must not be NULL, use C</> instead."
6780 msgstr ""
6781
6782 #. type: textblock
6783 #: ../src/guestfs-actions.pod:385 ../fish/guestfish-actions.pod:247
6784 msgid ""
6785 "The flags are the same as the flags defined in E<lt>augeas.hE<gt>, the "
6786 "logical I<or> of the following integers:"
6787 msgstr ""
6788
6789 #. type: =item
6790 #: ../src/guestfs-actions.pod:391 ../fish/guestfish-actions.pod:253
6791 msgid "C<AUG_SAVE_BACKUP> = 1"
6792 msgstr ""
6793
6794 #. type: textblock
6795 #: ../src/guestfs-actions.pod:393 ../fish/guestfish-actions.pod:255
6796 msgid "Keep the original file with a C<.augsave> extension."
6797 msgstr ""
6798
6799 #. type: =item
6800 #: ../src/guestfs-actions.pod:395 ../fish/guestfish-actions.pod:257
6801 msgid "C<AUG_SAVE_NEWFILE> = 2"
6802 msgstr ""
6803
6804 #. type: textblock
6805 #: ../src/guestfs-actions.pod:397 ../fish/guestfish-actions.pod:259
6806 msgid ""
6807 "Save changes into a file with extension C<.augnew>, and do not overwrite "
6808 "original.  Overrides C<AUG_SAVE_BACKUP>."
6809 msgstr ""
6810
6811 #. type: =item
6812 #: ../src/guestfs-actions.pod:400 ../fish/guestfish-actions.pod:262
6813 msgid "C<AUG_TYPE_CHECK> = 4"
6814 msgstr ""
6815
6816 #. type: textblock
6817 #: ../src/guestfs-actions.pod:402 ../fish/guestfish-actions.pod:264
6818 msgid "Typecheck lenses (can be expensive)."
6819 msgstr ""
6820
6821 #. type: =item
6822 #: ../src/guestfs-actions.pod:404 ../fish/guestfish-actions.pod:266
6823 msgid "C<AUG_NO_STDINC> = 8"
6824 msgstr ""
6825
6826 #. type: textblock
6827 #: ../src/guestfs-actions.pod:406 ../fish/guestfish-actions.pod:268
6828 msgid "Do not use standard load path for modules."
6829 msgstr ""
6830
6831 #. type: =item
6832 #: ../src/guestfs-actions.pod:408 ../fish/guestfish-actions.pod:270
6833 msgid "C<AUG_SAVE_NOOP> = 16"
6834 msgstr ""
6835
6836 #. type: textblock
6837 #: ../src/guestfs-actions.pod:410 ../fish/guestfish-actions.pod:272
6838 msgid "Make save a no-op, just record what would have been changed."
6839 msgstr ""
6840
6841 #. type: =item
6842 #: ../src/guestfs-actions.pod:412 ../fish/guestfish-actions.pod:274
6843 msgid "C<AUG_NO_LOAD> = 32"
6844 msgstr ""
6845
6846 #. type: textblock
6847 #: ../src/guestfs-actions.pod:414
6848 msgid "Do not load the tree in C<guestfs_aug_init>."
6849 msgstr ""
6850
6851 #. type: textblock
6852 #: ../src/guestfs-actions.pod:418
6853 msgid "To close the handle, you can call C<guestfs_aug_close>."
6854 msgstr ""
6855
6856 #. type: textblock
6857 #: ../src/guestfs-actions.pod:420 ../fish/guestfish-actions.pod:282
6858 msgid "To find out more about Augeas, see L<http://augeas.net/>."
6859 msgstr ""
6860
6861 #. type: =head2
6862 #: ../src/guestfs-actions.pod:426
6863 msgid "guestfs_aug_insert"
6864 msgstr ""
6865
6866 #. type: verbatim
6867 #: ../src/guestfs-actions.pod:428
6868 #, no-wrap
6869 msgid ""
6870 " int\n"
6871 " guestfs_aug_insert (guestfs_h *g,\n"
6872 "                     const char *augpath,\n"
6873 "                     const char *label,\n"
6874 "                     int before);\n"
6875 "\n"
6876 msgstr ""
6877
6878 #. type: textblock
6879 #: ../src/guestfs-actions.pod:434 ../fish/guestfish-actions.pod:288
6880 msgid ""
6881 "Create a new sibling C<label> for C<path>, inserting it into the tree before"
6882 " or after C<path> (depending on the boolean flag C<before>)."
6883 msgstr ""
6884
6885 #. type: textblock
6886 #: ../src/guestfs-actions.pod:438 ../fish/guestfish-actions.pod:292
6887 msgid ""
6888 "C<path> must match exactly one existing node in the tree, and C<label> must "
6889 "be a label, ie. not contain C</>, C<*> or end with a bracketed index C<[N]>."
6890 msgstr ""
6891
6892 #. type: =head2
6893 #: ../src/guestfs-actions.pod:446
6894 msgid "guestfs_aug_load"
6895 msgstr ""
6896
6897 #. type: verbatim
6898 #: ../src/guestfs-actions.pod:448
6899 #, no-wrap
6900 msgid ""
6901 " int\n"
6902 " guestfs_aug_load (guestfs_h *g);\n"
6903 "\n"
6904 msgstr ""
6905
6906 #. type: textblock
6907 #: ../src/guestfs-actions.pod:451 ../fish/guestfish-actions.pod:300
6908 msgid "Load files into the tree."
6909 msgstr ""
6910
6911 #. type: textblock
6912 #: ../src/guestfs-actions.pod:453 ../fish/guestfish-actions.pod:302
6913 msgid "See C<aug_load> in the Augeas documentation for the full gory details."
6914 msgstr ""
6915
6916 #. type: =head2
6917 #: ../src/guestfs-actions.pod:460
6918 msgid "guestfs_aug_ls"
6919 msgstr ""
6920
6921 #. type: verbatim
6922 #: ../src/guestfs-actions.pod:462
6923 #, no-wrap
6924 msgid ""
6925 " char **\n"
6926 " guestfs_aug_ls (guestfs_h *g,\n"
6927 "                 const char *augpath);\n"
6928 "\n"
6929 msgstr ""
6930
6931 #. type: textblock
6932 #: ../src/guestfs-actions.pod:466
6933 msgid ""
6934 "This is just a shortcut for listing C<guestfs_aug_match> C<path/*> and "
6935 "sorting the resulting nodes into alphabetical order."
6936 msgstr ""
6937
6938 #. type: textblock
6939 #: ../src/guestfs-actions.pod:469 ../src/guestfs-actions.pod:485
6940 #: ../src/guestfs-actions.pod:631 ../src/guestfs-actions.pod:1138
6941 #: ../src/guestfs-actions.pod:1434 ../src/guestfs-actions.pod:1453
6942 #: ../src/guestfs-actions.pod:1556 ../src/guestfs-actions.pod:1575
6943 #: ../src/guestfs-actions.pod:1821 ../src/guestfs-actions.pod:2274
6944 #: ../src/guestfs-actions.pod:2290 ../src/guestfs-actions.pod:2309
6945 #: ../src/guestfs-actions.pod:2352 ../src/guestfs-actions.pod:2376
6946 #: ../src/guestfs-actions.pod:2447 ../src/guestfs-actions.pod:2496
6947 #: ../src/guestfs-actions.pod:2753 ../src/guestfs-actions.pod:3127
6948 #: ../src/guestfs-actions.pod:3403 ../src/guestfs-actions.pod:3717
6949 #: ../src/guestfs-actions.pod:3734 ../src/guestfs-actions.pod:3754
6950 #: ../src/guestfs-actions.pod:3816 ../src/guestfs-actions.pod:3921
6951 #: ../src/guestfs-actions.pod:4329 ../src/guestfs-actions.pod:5096
6952 #: ../src/guestfs-actions.pod:5708 ../src/guestfs-actions.pod:5834
6953 #: ../src/guestfs-actions.pod:5948 ../src/guestfs-actions.pod:6697
6954 #: ../src/guestfs-actions.pod:6758 ../src/guestfs-actions.pod:6813
6955 #: ../src/guestfs-actions.pod:6959 ../src/guestfs-actions.pod:6983
6956 #: ../src/guestfs-actions.pod:7459 ../src/guestfs-actions.pod:7479
6957 #: ../src/guestfs-actions.pod:7526 ../src/guestfs-actions.pod:7718
6958 #: ../src/guestfs-actions.pod:7737 ../src/guestfs-actions.pod:7823
6959 #: ../src/guestfs-actions.pod:7842 ../src/guestfs-actions.pod:7888
6960 #: ../src/guestfs-actions.pod:7907
6961 msgid ""
6962 "This function returns a NULL-terminated array of strings (like "
6963 "L<environ(3)>), or NULL if there was an error.  I<The caller must free the "
6964 "strings and the array after use>."
6965 msgstr ""
6966
6967 #. type: textblock
6968 #: ../src/guestfs-actions.pod:473 ../src/guestfs-actions.pod:1063
6969 #: ../src/guestfs-actions.pod:1081 ../src/guestfs-actions.pod:1491
6970 #: ../src/guestfs-actions.pod:3481 ../src/guestfs-actions.pod:3512
6971 #: ../src/guestfs-actions.pod:4170 ../src/guestfs-actions.pod:4220
6972 #: ../src/guestfs-actions.pod:4407 ../src/guestfs-actions.pod:4440
6973 #: ../src/guestfs-actions.pod:4603 ../src/guestfs-actions.pod:5100
6974 #: ../src/guestfs-actions.pod:5649 ../src/guestfs-actions.pod:6046
6975 #: ../src/guestfs-actions.pod:6060 ../src/guestfs-actions.pod:6072
6976 #: ../src/guestfs-actions.pod:6538 ../src/guestfs-actions.pod:7197
6977 #: ../src/guestfs-actions.pod:7210 ../src/guestfs-actions.pod:7443
6978 #: ../src/guestfs-actions.pod:7706
6979 msgid "(Added in 0.8)"
6980 msgstr ""
6981
6982 #. type: =head2
6983 #: ../src/guestfs-actions.pod:475
6984 msgid "guestfs_aug_match"
6985 msgstr ""
6986
6987 #. type: verbatim
6988 #: ../src/guestfs-actions.pod:477
6989 #, no-wrap
6990 msgid ""
6991 " char **\n"
6992 " guestfs_aug_match (guestfs_h *g,\n"
6993 "                    const char *augpath);\n"
6994 "\n"
6995 msgstr ""
6996
6997 #. type: textblock
6998 #: ../src/guestfs-actions.pod:481 ../fish/guestfish-actions.pod:316
6999 msgid ""
7000 "Returns a list of paths which match the path expression C<path>.  The "
7001 "returned paths are sufficiently qualified so that they match exactly one "
7002 "node in the current tree."
7003 msgstr ""
7004
7005 #. type: =head2
7006 #: ../src/guestfs-actions.pod:491
7007 msgid "guestfs_aug_mv"
7008 msgstr ""
7009
7010 #. type: verbatim
7011 #: ../src/guestfs-actions.pod:493
7012 #, no-wrap
7013 msgid ""
7014 " int\n"
7015 " guestfs_aug_mv (guestfs_h *g,\n"
7016 "                 const char *src,\n"
7017 "                 const char *dest);\n"
7018 "\n"
7019 msgstr ""
7020
7021 #. type: textblock
7022 #: ../src/guestfs-actions.pod:498 ../fish/guestfish-actions.pod:324
7023 msgid ""
7024 "Move the node C<src> to C<dest>.  C<src> must match exactly one node.  "
7025 "C<dest> is overwritten if it exists."
7026 msgstr ""
7027
7028 #. type: =head2
7029 #: ../src/guestfs-actions.pod:505
7030 msgid "guestfs_aug_rm"
7031 msgstr ""
7032
7033 #. type: verbatim
7034 #: ../src/guestfs-actions.pod:507
7035 #, no-wrap
7036 msgid ""
7037 " int\n"
7038 " guestfs_aug_rm (guestfs_h *g,\n"
7039 "                 const char *augpath);\n"
7040 "\n"
7041 msgstr ""
7042
7043 #. type: textblock
7044 #: ../src/guestfs-actions.pod:511 ../fish/guestfish-actions.pod:331
7045 msgid "Remove C<path> and all of its children."
7046 msgstr ""
7047
7048 #. type: textblock
7049 #: ../src/guestfs-actions.pod:513 ../fish/guestfish-actions.pod:333
7050 msgid "On success this returns the number of entries which were removed."
7051 msgstr ""
7052
7053 #. type: =head2
7054 #: ../src/guestfs-actions.pod:519
7055 msgid "guestfs_aug_save"
7056 msgstr ""
7057
7058 #. type: verbatim
7059 #: ../src/guestfs-actions.pod:521
7060 #, no-wrap
7061 msgid ""
7062 " int\n"
7063 " guestfs_aug_save (guestfs_h *g);\n"
7064 "\n"
7065 msgstr ""
7066
7067 #. type: textblock
7068 #: ../src/guestfs-actions.pod:524 ../fish/guestfish-actions.pod:339
7069 msgid "This writes all pending changes to disk."
7070 msgstr ""
7071
7072 #. type: textblock
7073 #: ../src/guestfs-actions.pod:526
7074 msgid ""
7075 "The flags which were passed to C<guestfs_aug_init> affect exactly how files "
7076 "are saved."
7077 msgstr ""
7078
7079 #. type: =head2
7080 #: ../src/guestfs-actions.pod:533
7081 msgid "guestfs_aug_set"
7082 msgstr ""
7083
7084 #. type: verbatim
7085 #: ../src/guestfs-actions.pod:535
7086 #, no-wrap
7087 msgid ""
7088 " int\n"
7089 " guestfs_aug_set (guestfs_h *g,\n"
7090 "                  const char *augpath,\n"
7091 "                  const char *val);\n"
7092 "\n"
7093 msgstr ""
7094
7095 #. type: textblock
7096 #: ../src/guestfs-actions.pod:540 ../fish/guestfish-actions.pod:348
7097 msgid "Set the value associated with C<path> to C<val>."
7098 msgstr ""
7099
7100 #. type: textblock
7101 #: ../src/guestfs-actions.pod:542
7102 msgid ""
7103 "In the Augeas API, it is possible to clear a node by setting the value to "
7104 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
7105 "this call.  Instead you must use the C<guestfs_aug_clear> call."
7106 msgstr ""
7107
7108 #. type: =head2
7109 #: ../src/guestfs-actions.pod:551
7110 msgid "guestfs_available"
7111 msgstr ""
7112
7113 #. type: verbatim
7114 #: ../src/guestfs-actions.pod:553
7115 #, no-wrap
7116 msgid ""
7117 " int\n"
7118 " guestfs_available (guestfs_h *g,\n"
7119 "                    char *const *groups);\n"
7120 "\n"
7121 msgstr ""
7122
7123 #. type: textblock
7124 #: ../src/guestfs-actions.pod:557 ../fish/guestfish-actions.pod:359
7125 msgid ""
7126 "This command is used to check the availability of some groups of "
7127 "functionality in the appliance, which not all builds of the libguestfs "
7128 "appliance will be able to provide."
7129 msgstr ""
7130
7131 #. type: textblock
7132 #: ../src/guestfs-actions.pod:561
7133 msgid ""
7134 "The libguestfs groups, and the functions that those groups correspond to, "
7135 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
7136 "runtime by calling C<guestfs_available_all_groups>."
7137 msgstr ""
7138
7139 #. type: textblock
7140 #: ../src/guestfs-actions.pod:566 ../fish/guestfish-actions.pod:368
7141 msgid ""
7142 "The argument C<groups> is a list of group names, eg: C<[\"inotify\", "
7143 "\"augeas\"]> would check for the availability of the Linux inotify functions"
7144 " and Augeas (configuration file editing) functions."
7145 msgstr ""
7146
7147 #. type: textblock
7148 #: ../src/guestfs-actions.pod:571 ../fish/guestfish-actions.pod:373
7149 msgid "The command returns no error if I<all> requested groups are available."
7150 msgstr ""
7151
7152 #. type: textblock
7153 #: ../src/guestfs-actions.pod:573 ../fish/guestfish-actions.pod:375
7154 msgid ""
7155 "It fails with an error if one or more of the requested groups is unavailable"
7156 " in the appliance."
7157 msgstr ""
7158
7159 #. type: textblock
7160 #: ../src/guestfs-actions.pod:576 ../fish/guestfish-actions.pod:378
7161 msgid ""
7162 "If an unknown group name is included in the list of groups then an error is "
7163 "always returned."
7164 msgstr ""
7165
7166 #. type: textblock
7167 #: ../src/guestfs-actions.pod:579 ../fish/guestfish-actions.pod:381
7168 msgid "I<Notes:>"
7169 msgstr ""
7170
7171 #. type: textblock
7172 #: ../src/guestfs-actions.pod:585
7173 msgid "You must call C<guestfs_launch> before calling this function."
7174 msgstr ""
7175
7176 #. type: textblock
7177 #: ../src/guestfs-actions.pod:587 ../fish/guestfish-actions.pod:389
7178 msgid ""
7179 "The reason is because we don't know what groups are supported by the "
7180 "appliance/daemon until it is running and can be queried."
7181 msgstr ""
7182
7183 #. type: textblock
7184 #: ../src/guestfs-actions.pod:593 ../fish/guestfish-actions.pod:395
7185 msgid ""
7186 "If a group of functions is available, this does not necessarily mean that "
7187 "they will work.  You still have to check for errors when calling individual "
7188 "API functions even if they are available."
7189 msgstr ""
7190
7191 #. type: textblock
7192 #: ../src/guestfs-actions.pod:600 ../fish/guestfish-actions.pod:402
7193 msgid ""
7194 "It is usually the job of distro packagers to build complete functionality "
7195 "into the libguestfs appliance.  Upstream libguestfs, if built from source "
7196 "with all requirements satisfied, will support everything."
7197 msgstr ""
7198
7199 #. type: textblock
7200 #: ../src/guestfs-actions.pod:607
7201 msgid ""
7202 "This call was added in version C<1.0.80>.  In previous versions of "
7203 "libguestfs all you could do would be to speculatively execute a command to "
7204 "find out if the daemon implemented it.  See also C<guestfs_version>."
7205 msgstr ""
7206
7207 #. type: textblock
7208 #: ../src/guestfs-actions.pod:616 ../src/guestfs-actions.pod:1236
7209 msgid "(Added in 1.0.80)"
7210 msgstr ""
7211
7212 #. type: =head2
7213 #: ../src/guestfs-actions.pod:618
7214 msgid "guestfs_available_all_groups"
7215 msgstr ""
7216
7217 #. type: verbatim
7218 #: ../src/guestfs-actions.pod:620
7219 #, no-wrap
7220 msgid ""
7221 " char **\n"
7222 " guestfs_available_all_groups (guestfs_h *g);\n"
7223 "\n"
7224 msgstr ""
7225
7226 #. type: textblock
7227 #: ../src/guestfs-actions.pod:623
7228 msgid ""
7229 "This command returns a list of all optional groups that this daemon knows "
7230 "about.  Note this returns both supported and unsupported groups.  To find "
7231 "out which ones the daemon can actually support you have to call "
7232 "C<guestfs_available> on each member of the returned list."
7233 msgstr ""
7234
7235 #. type: textblock
7236 #: ../src/guestfs-actions.pod:629
7237 msgid "See also C<guestfs_available> and L<guestfs(3)/AVAILABILITY>."
7238 msgstr ""
7239
7240 #. type: textblock
7241 #: ../src/guestfs-actions.pod:635
7242 msgid "(Added in 1.3.15)"
7243 msgstr ""
7244
7245 #. type: =head2
7246 #: ../src/guestfs-actions.pod:637
7247 msgid "guestfs_base64_in"
7248 msgstr ""
7249
7250 #. type: verbatim
7251 #: ../src/guestfs-actions.pod:639
7252 #, no-wrap
7253 msgid ""
7254 " int\n"
7255 " guestfs_base64_in (guestfs_h *g,\n"
7256 "                    const char *base64file,\n"
7257 "                    const char *filename);\n"
7258 "\n"
7259 msgstr ""
7260
7261 #. type: textblock
7262 #: ../src/guestfs-actions.pod:644 ../fish/guestfish-actions.pod:432
7263 msgid ""
7264 "This command uploads base64-encoded data from C<base64file> to C<filename>."
7265 msgstr ""
7266
7267 #. type: textblock
7268 #: ../src/guestfs-actions.pod:649 ../src/guestfs-actions.pod:663
7269 msgid "(Added in 1.3.5)"
7270 msgstr ""
7271
7272 #. type: =head2
7273 #: ../src/guestfs-actions.pod:651
7274 msgid "guestfs_base64_out"
7275 msgstr ""
7276
7277 #. type: verbatim
7278 #: ../src/guestfs-actions.pod:653
7279 #, no-wrap
7280 msgid ""
7281 " int\n"
7282 " guestfs_base64_out (guestfs_h *g,\n"
7283 "                     const char *filename,\n"
7284 "                     const char *base64file);\n"
7285 "\n"
7286 msgstr ""
7287
7288 #. type: textblock
7289 #: ../src/guestfs-actions.pod:658 ../fish/guestfish-actions.pod:441
7290 msgid ""
7291 "This command downloads the contents of C<filename>, writing it out to local "
7292 "file C<base64file> encoded as base64."
7293 msgstr ""
7294
7295 #. type: =head2
7296 #: ../src/guestfs-actions.pod:665
7297 msgid "guestfs_blockdev_flushbufs"
7298 msgstr ""
7299
7300 #. type: verbatim
7301 #: ../src/guestfs-actions.pod:667
7302 #, no-wrap
7303 msgid ""
7304 " int\n"
7305 " guestfs_blockdev_flushbufs (guestfs_h *g,\n"
7306 "                             const char *device);\n"
7307 "\n"
7308 msgstr ""
7309
7310 #. type: textblock
7311 #: ../src/guestfs-actions.pod:671 ../fish/guestfish-actions.pod:450
7312 msgid ""
7313 "This tells the kernel to flush internal buffers associated with C<device>."
7314 msgstr ""
7315
7316 #. type: textblock
7317 #: ../src/guestfs-actions.pod:674 ../src/guestfs-actions.pod:691
7318 #: ../src/guestfs-actions.pod:706 ../src/guestfs-actions.pod:722
7319 #: ../src/guestfs-actions.pod:740 ../src/guestfs-actions.pod:759
7320 #: ../src/guestfs-actions.pod:773 ../src/guestfs-actions.pod:791
7321 #: ../src/guestfs-actions.pod:805 ../src/guestfs-actions.pod:819
7322 #: ../fish/guestfish-actions.pod:453 ../fish/guestfish-actions.pod:464
7323 #: ../fish/guestfish-actions.pod:473 ../fish/guestfish-actions.pod:483
7324 #: ../fish/guestfish-actions.pod:495 ../fish/guestfish-actions.pod:508
7325 #: ../fish/guestfish-actions.pod:516 ../fish/guestfish-actions.pod:527
7326 #: ../fish/guestfish-actions.pod:535 ../fish/guestfish-actions.pod:543
7327 msgid "This uses the L<blockdev(8)> command."
7328 msgstr ""
7329
7330 #. type: textblock
7331 #: ../src/guestfs-actions.pod:678 ../src/guestfs-actions.pod:695
7332 #: ../src/guestfs-actions.pod:710 ../src/guestfs-actions.pod:726
7333 #: ../src/guestfs-actions.pod:744 ../src/guestfs-actions.pod:763
7334 #: ../src/guestfs-actions.pod:777 ../src/guestfs-actions.pod:795
7335 #: ../src/guestfs-actions.pod:809 ../src/guestfs-actions.pod:823
7336 msgid "(Added in 0.9.3)"
7337 msgstr ""
7338
7339 #. type: =head2
7340 #: ../src/guestfs-actions.pod:680
7341 msgid "guestfs_blockdev_getbsz"
7342 msgstr ""
7343
7344 #. type: verbatim
7345 #: ../src/guestfs-actions.pod:682
7346 #, no-wrap
7347 msgid ""
7348 " int\n"
7349 " guestfs_blockdev_getbsz (guestfs_h *g,\n"
7350 "                          const char *device);\n"
7351 "\n"
7352 msgstr ""
7353
7354 #. type: textblock
7355 #: ../src/guestfs-actions.pod:686 ../fish/guestfish-actions.pod:459
7356 msgid "This returns the block size of a device."
7357 msgstr ""
7358
7359 #. type: textblock
7360 #: ../src/guestfs-actions.pod:688 ../src/guestfs-actions.pod:788
7361 #: ../fish/guestfish-actions.pod:461 ../fish/guestfish-actions.pod:524
7362 msgid ""
7363 "(Note this is different from both I<size in blocks> and I<filesystem block "
7364 "size>)."
7365 msgstr ""
7366
7367 #. type: =head2
7368 #: ../src/guestfs-actions.pod:697
7369 msgid "guestfs_blockdev_getro"
7370 msgstr ""
7371
7372 #. type: verbatim
7373 #: ../src/guestfs-actions.pod:699
7374 #, no-wrap
7375 msgid ""
7376 " int\n"
7377 " guestfs_blockdev_getro (guestfs_h *g,\n"
7378 "                         const char *device);\n"
7379 "\n"
7380 msgstr ""
7381
7382 #. type: textblock
7383 #: ../src/guestfs-actions.pod:703 ../fish/guestfish-actions.pod:470
7384 msgid ""
7385 "Returns a boolean indicating if the block device is read-only (true if read-"
7386 "only, false if not)."
7387 msgstr ""
7388
7389 #. type: textblock
7390 #: ../src/guestfs-actions.pod:708 ../src/guestfs-actions.pod:1474
7391 #: ../src/guestfs-actions.pod:1489 ../src/guestfs-actions.pod:1978
7392 #: ../src/guestfs-actions.pod:1989 ../src/guestfs-actions.pod:2061
7393 #: ../src/guestfs-actions.pod:2087 ../src/guestfs-actions.pod:2125
7394 #: ../src/guestfs-actions.pod:2140 ../src/guestfs-actions.pod:2165
7395 #: ../src/guestfs-actions.pod:2188 ../src/guestfs-actions.pod:3224
7396 #: ../src/guestfs-actions.pod:3240 ../src/guestfs-actions.pod:3258
7397 #: ../src/guestfs-actions.pod:3420 ../src/guestfs-actions.pod:3434
7398 #: ../src/guestfs-actions.pod:3449 ../src/guestfs-actions.pod:3463
7399 #: ../src/guestfs-actions.pod:3479 ../src/guestfs-actions.pod:3494
7400 #: ../src/guestfs-actions.pod:3510 ../src/guestfs-actions.pod:3524
7401 #: ../src/guestfs-actions.pod:3537 ../src/guestfs-actions.pod:3551
7402 #: ../src/guestfs-actions.pod:3566 ../src/guestfs-actions.pod:3581
7403 #: ../src/guestfs-actions.pod:3594 ../src/guestfs-actions.pod:3608
7404 #: ../src/guestfs-actions.pod:5337
7405 msgid "This function returns a C truth value on success or -1 on error."
7406 msgstr ""
7407
7408 #. type: =head2
7409 #: ../src/guestfs-actions.pod:712
7410 msgid "guestfs_blockdev_getsize64"
7411 msgstr ""
7412
7413 #. type: verbatim
7414 #: ../src/guestfs-actions.pod:714
7415 #, no-wrap
7416 msgid ""
7417 " int64_t\n"
7418 " guestfs_blockdev_getsize64 (guestfs_h *g,\n"
7419 "                             const char *device);\n"
7420 "\n"
7421 msgstr ""
7422
7423 #. type: textblock
7424 #: ../src/guestfs-actions.pod:718 ../fish/guestfish-actions.pod:479
7425 msgid "This returns the size of the device in bytes."
7426 msgstr ""
7427
7428 #. type: textblock
7429 #: ../src/guestfs-actions.pod:720
7430 msgid "See also C<guestfs_blockdev_getsz>."
7431 msgstr ""
7432
7433 #. type: =head2
7434 #: ../src/guestfs-actions.pod:728
7435 msgid "guestfs_blockdev_getss"
7436 msgstr ""
7437
7438 #. type: verbatim
7439 #: ../src/guestfs-actions.pod:730
7440 #, no-wrap
7441 msgid ""
7442 " int\n"
7443 " guestfs_blockdev_getss (guestfs_h *g,\n"
7444 "                         const char *device);\n"
7445 "\n"
7446 msgstr ""
7447
7448 #. type: textblock
7449 #: ../src/guestfs-actions.pod:734 ../fish/guestfish-actions.pod:489
7450 msgid ""
7451 "This returns the size of sectors on a block device.  Usually 512, but can be"
7452 " larger for modern devices."
7453 msgstr ""
7454
7455 #. type: textblock
7456 #: ../src/guestfs-actions.pod:737
7457 msgid ""
7458 "(Note, this is not the size in sectors, use C<guestfs_blockdev_getsz> for "
7459 "that)."
7460 msgstr ""
7461
7462 #. type: =head2
7463 #: ../src/guestfs-actions.pod:746
7464 msgid "guestfs_blockdev_getsz"
7465 msgstr ""
7466
7467 #. type: verbatim
7468 #: ../src/guestfs-actions.pod:748
7469 #, no-wrap
7470 msgid ""
7471 " int64_t\n"
7472 " guestfs_blockdev_getsz (guestfs_h *g,\n"
7473 "                         const char *device);\n"
7474 "\n"
7475 msgstr ""
7476
7477 #. type: textblock
7478 #: ../src/guestfs-actions.pod:752 ../fish/guestfish-actions.pod:501
7479 msgid ""
7480 "This returns the size of the device in units of 512-byte sectors (even if "
7481 "the sectorsize isn't 512 bytes ... weird)."
7482 msgstr ""
7483
7484 #. type: textblock
7485 #: ../src/guestfs-actions.pod:755
7486 msgid ""
7487 "See also C<guestfs_blockdev_getss> for the real sector size of the device, "
7488 "and C<guestfs_blockdev_getsize64> for the more useful I<size in bytes>."
7489 msgstr ""
7490
7491 #. type: =head2
7492 #: ../src/guestfs-actions.pod:765
7493 msgid "guestfs_blockdev_rereadpt"
7494 msgstr ""
7495
7496 #. type: verbatim
7497 #: ../src/guestfs-actions.pod:767
7498 #, no-wrap
7499 msgid ""
7500 " int\n"
7501 " guestfs_blockdev_rereadpt (guestfs_h *g,\n"
7502 "                            const char *device);\n"
7503 "\n"
7504 msgstr ""
7505
7506 #. type: textblock
7507 #: ../src/guestfs-actions.pod:771 ../fish/guestfish-actions.pod:514
7508 msgid "Reread the partition table on C<device>."
7509 msgstr ""
7510
7511 #. type: =head2
7512 #: ../src/guestfs-actions.pod:779
7513 msgid "guestfs_blockdev_setbsz"
7514 msgstr ""
7515
7516 #. type: verbatim
7517 #: ../src/guestfs-actions.pod:781
7518 #, no-wrap
7519 msgid ""
7520 " int\n"
7521 " guestfs_blockdev_setbsz (guestfs_h *g,\n"
7522 "                          const char *device,\n"
7523 "                          int blocksize);\n"
7524 "\n"
7525 msgstr ""
7526
7527 #. type: textblock
7528 #: ../src/guestfs-actions.pod:786 ../fish/guestfish-actions.pod:522
7529 msgid "This sets the block size of a device."
7530 msgstr ""
7531
7532 #. type: =head2
7533 #: ../src/guestfs-actions.pod:797
7534 msgid "guestfs_blockdev_setro"
7535 msgstr ""
7536
7537 #. type: verbatim
7538 #: ../src/guestfs-actions.pod:799
7539 #, no-wrap
7540 msgid ""
7541 " int\n"
7542 " guestfs_blockdev_setro (guestfs_h *g,\n"
7543 "                         const char *device);\n"
7544 "\n"
7545 msgstr ""
7546
7547 #. type: textblock
7548 #: ../src/guestfs-actions.pod:803 ../fish/guestfish-actions.pod:533
7549 msgid "Sets the block device named C<device> to read-only."
7550 msgstr ""
7551
7552 #. type: =head2
7553 #: ../src/guestfs-actions.pod:811
7554 msgid "guestfs_blockdev_setrw"
7555 msgstr ""
7556
7557 #. type: verbatim
7558 #: ../src/guestfs-actions.pod:813
7559 #, no-wrap
7560 msgid ""
7561 " int\n"
7562 " guestfs_blockdev_setrw (guestfs_h *g,\n"
7563 "                         const char *device);\n"
7564 "\n"
7565 msgstr ""
7566
7567 #. type: textblock
7568 #: ../src/guestfs-actions.pod:817 ../fish/guestfish-actions.pod:541
7569 msgid "Sets the block device named C<device> to read-write."
7570 msgstr ""
7571
7572 #. type: =head2
7573 #: ../src/guestfs-actions.pod:825
7574 msgid "guestfs_btrfs_filesystem_resize"
7575 msgstr ""
7576
7577 #. type: verbatim
7578 #: ../src/guestfs-actions.pod:827
7579 #, no-wrap
7580 msgid ""
7581 " int\n"
7582 " guestfs_btrfs_filesystem_resize (guestfs_h *g,\n"
7583 "                                  const char *mountpoint,\n"
7584 "                                  ...);\n"
7585 "\n"
7586 msgstr ""
7587
7588 #. type: verbatim
7589 #: ../src/guestfs-actions.pod:837
7590 #, no-wrap
7591 msgid ""
7592 " GUESTFS_BTRFS_FILESYSTEM_RESIZE_SIZE, int64_t size,\n"
7593 "\n"
7594 msgstr ""
7595
7596 #. type: textblock
7597 #: ../src/guestfs-actions.pod:839 ../fish/guestfish-actions.pod:549
7598 msgid "This command resizes a btrfs filesystem."
7599 msgstr ""
7600
7601 #. type: textblock
7602 #: ../src/guestfs-actions.pod:841 ../fish/guestfish-actions.pod:551
7603 msgid ""
7604 "Note that unlike other resize calls, the filesystem has to be mounted and "
7605 "the parameter is the mountpoint not the device (this is a requirement of "
7606 "btrfs itself)."
7607 msgstr ""
7608
7609 #. type: textblock
7610 #: ../src/guestfs-actions.pod:845 ../src/guestfs-actions.pod:5187
7611 #: ../fish/guestfish-actions.pod:555 ../fish/guestfish-actions.pod:3417
7612 msgid "The optional parameters are:"
7613 msgstr ""
7614
7615 #. type: =item
7616 #: ../src/guestfs-actions.pod:849 ../src/guestfs-actions.pod:5191
7617 #: ../fish/guestfish-actions.pod:559 ../fish/guestfish-actions.pod:3421
7618 msgid "C<size>"
7619 msgstr ""
7620
7621 #. type: textblock
7622 #: ../src/guestfs-actions.pod:851 ../fish/guestfish-actions.pod:561
7623 msgid ""
7624 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
7625 "resized to the maximum size."
7626 msgstr ""
7627
7628 #. type: textblock
7629 #: ../src/guestfs-actions.pod:856 ../fish/guestfish-actions.pod:566
7630 msgid "See also L<btrfs(8)>."
7631 msgstr ""
7632
7633 #. type: textblock
7634 #: ../src/guestfs-actions.pod:860
7635 msgid "(Added in 1.11.17)"
7636 msgstr ""
7637
7638 #. type: =head2
7639 #: ../src/guestfs-actions.pod:862
7640 msgid "guestfs_btrfs_filesystem_resize_va"
7641 msgstr ""
7642
7643 #. type: verbatim
7644 #: ../src/guestfs-actions.pod:864
7645 #, no-wrap
7646 msgid ""
7647 " int\n"
7648 " guestfs_btrfs_filesystem_resize_va (guestfs_h *g,\n"
7649 "                                     const char *mountpoint,\n"
7650 "                                     va_list args);\n"
7651 "\n"
7652 msgstr ""
7653
7654 #. type: textblock
7655 #: ../src/guestfs-actions.pod:869
7656 msgid "This is the \"va_list variant\" of L</guestfs_btrfs_filesystem_resize>."
7657 msgstr ""
7658
7659 #. type: =head2
7660 #: ../src/guestfs-actions.pod:873
7661 msgid "guestfs_btrfs_filesystem_resize_argv"
7662 msgstr ""
7663
7664 #. type: verbatim
7665 #: ../src/guestfs-actions.pod:875
7666 #, no-wrap
7667 msgid ""
7668 " int\n"
7669 " guestfs_btrfs_filesystem_resize_argv (guestfs_h *g,\n"
7670 "                                       const char *mountpoint,\n"
7671 "                                       const struct guestfs_btrfs_filesystem_resize_argv *optargs);\n"
7672 "\n"
7673 msgstr ""
7674
7675 #. type: textblock
7676 #: ../src/guestfs-actions.pod:880
7677 msgid "This is the \"argv variant\" of L</guestfs_btrfs_filesystem_resize>."
7678 msgstr ""
7679
7680 #. type: =head2
7681 #: ../src/guestfs-actions.pod:884
7682 msgid "guestfs_case_sensitive_path"
7683 msgstr ""
7684
7685 #. type: verbatim
7686 #: ../src/guestfs-actions.pod:886
7687 #, no-wrap
7688 msgid ""
7689 " char *\n"
7690 " guestfs_case_sensitive_path (guestfs_h *g,\n"
7691 "                              const char *path);\n"
7692 "\n"
7693 msgstr ""
7694
7695 #. type: textblock
7696 #: ../src/guestfs-actions.pod:890 ../fish/guestfish-actions.pod:574
7697 msgid ""
7698 "This can be used to resolve case insensitive paths on a filesystem which is "
7699 "case sensitive.  The use case is to resolve paths which you have read from "
7700 "Windows configuration files or the Windows Registry, to the true path."
7701 msgstr ""
7702
7703 #. type: textblock
7704 #: ../src/guestfs-actions.pod:895 ../fish/guestfish-actions.pod:579
7705 msgid ""
7706 "The command handles a peculiarity of the Linux ntfs-3g filesystem driver "
7707 "(and probably others), which is that although the underlying filesystem is "
7708 "case-insensitive, the driver exports the filesystem to Linux as case-"
7709 "sensitive."
7710 msgstr ""
7711
7712 #. type: textblock
7713 #: ../src/guestfs-actions.pod:900 ../fish/guestfish-actions.pod:584
7714 msgid ""
7715 "One consequence of this is that special directories such as C<c:\\windows> "
7716 "may appear as C</WINDOWS> or C</windows> (or other things) depending on the "
7717 "precise details of how they were created.  In Windows itself this would not "
7718 "be a problem."
7719 msgstr ""
7720
7721 #. type: textblock
7722 #: ../src/guestfs-actions.pod:906 ../fish/guestfish-actions.pod:590
7723 msgid ""
7724 "Bug or feature? You decide: L<http://www.tuxera.com/community/ntfs-3g-"
7725 "faq/#posixfilenames1>"
7726 msgstr ""
7727
7728 #. type: textblock
7729 #: ../src/guestfs-actions.pod:909 ../fish/guestfish-actions.pod:593
7730 msgid ""
7731 "This function resolves the true case of each element in the path and returns"
7732 " the case-sensitive path."
7733 msgstr ""
7734
7735 #. type: textblock
7736 #: ../src/guestfs-actions.pod:912
7737 msgid ""
7738 "Thus C<guestfs_case_sensitive_path> (\"/Windows/System32\")  might return "
7739 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
7740 "how the directories were originally created under Windows)."
7741 msgstr ""
7742
7743 #. type: textblock
7744 #: ../src/guestfs-actions.pod:917 ../fish/guestfish-actions.pod:601
7745 msgid "I<Note>: This function does not handle drive names, backslashes etc."
7746 msgstr ""
7747
7748 #. type: textblock
7749 #: ../src/guestfs-actions.pod:920
7750 msgid "See also C<guestfs_realpath>."
7751 msgstr ""
7752
7753 #. type: textblock
7754 #: ../src/guestfs-actions.pod:925 ../src/guestfs-actions.pod:7377
7755 msgid "(Added in 1.0.75)"
7756 msgstr ""
7757
7758 #. type: =head2
7759 #: ../src/guestfs-actions.pod:927
7760 msgid "guestfs_cat"
7761 msgstr ""
7762
7763 #. type: verbatim
7764 #: ../src/guestfs-actions.pod:929
7765 #, no-wrap
7766 msgid ""
7767 " char *\n"
7768 " guestfs_cat (guestfs_h *g,\n"
7769 "              const char *path);\n"
7770 "\n"
7771 msgstr ""
7772
7773 #. type: textblock
7774 #: ../src/guestfs-actions.pod:933 ../src/guestfs-actions.pod:5824
7775 #: ../fish/guestfish-actions.pod:610 ../fish/guestfish-actions.pod:3831
7776 msgid "Return the contents of the file named C<path>."
7777 msgstr ""
7778
7779 #. type: textblock
7780 #: ../src/guestfs-actions.pod:935
7781 msgid ""
7782 "Note that this function cannot correctly handle binary files (specifically, "
7783 "files containing C<\\0> character which is treated as end of string).  For "
7784 "those you need to use the C<guestfs_read_file> or C<guestfs_download> "
7785 "functions which have a more complex interface."
7786 msgstr ""
7787
7788 #. type: textblock
7789 #: ../src/guestfs-actions.pod:943 ../src/guestfs-actions.pod:1122
7790 #: ../src/guestfs-actions.pod:1142 ../src/guestfs-actions.pod:1438
7791 #: ../src/guestfs-actions.pod:1457 ../src/guestfs-actions.pod:1560
7792 #: ../src/guestfs-actions.pod:1579 ../src/guestfs-actions.pod:1825
7793 #: ../src/guestfs-actions.pod:2294 ../src/guestfs-actions.pod:2313
7794 #: ../src/guestfs-actions.pod:2356 ../src/guestfs-actions.pod:2380
7795 #: ../src/guestfs-actions.pod:2397 ../src/guestfs-actions.pod:2426
7796 #: ../src/guestfs-actions.pod:5606 ../src/guestfs-actions.pod:5632
7797 #: ../src/guestfs-actions.pod:5763 ../src/guestfs-actions.pod:5789
7798 #: ../src/guestfs-actions.pod:5813 ../src/guestfs-actions.pod:6762
7799 #: ../src/guestfs-actions.pod:6817 ../src/guestfs-actions.pod:6963
7800 #: ../src/guestfs-actions.pod:6987 ../src/guestfs-actions.pod:7652
7801 #: ../src/guestfs-actions.pod:7672 ../src/guestfs-actions.pod:7696
7802 #: ../src/guestfs-actions.pod:7722 ../src/guestfs-actions.pod:7741
7803 #: ../src/guestfs-actions.pod:7827 ../src/guestfs-actions.pod:7846
7804 #: ../src/guestfs-actions.pod:7892 ../src/guestfs-actions.pod:7911
7805 #: ../fish/guestfish-actions.pod:617 ../fish/guestfish-actions.pod:752
7806 #: ../fish/guestfish-actions.pod:764 ../fish/guestfish-actions.pod:940
7807 #: ../fish/guestfish-actions.pod:950 ../fish/guestfish-actions.pod:1017
7808 #: ../fish/guestfish-actions.pod:1027 ../fish/guestfish-actions.pod:1219
7809 #: ../fish/guestfish-actions.pod:1526 ../fish/guestfish-actions.pod:1536
7810 #: ../fish/guestfish-actions.pod:1564 ../fish/guestfish-actions.pod:1579
7811 #: ../fish/guestfish-actions.pod:1589 ../fish/guestfish-actions.pod:1608
7812 #: ../fish/guestfish-actions.pod:3701 ../fish/guestfish-actions.pod:3716
7813 #: ../fish/guestfish-actions.pod:3792 ../fish/guestfish-actions.pod:3809
7814 #: ../fish/guestfish-actions.pod:3824 ../fish/guestfish-actions.pod:4493
7815 #: ../fish/guestfish-actions.pod:4539 ../fish/guestfish-actions.pod:4624
7816 #: ../fish/guestfish-actions.pod:4639 ../fish/guestfish-actions.pod:5045
7817 #: ../fish/guestfish-actions.pod:5057 ../fish/guestfish-actions.pod:5075
7818 #: ../fish/guestfish-actions.pod:5092 ../fish/guestfish-actions.pod:5102
7819 #: ../fish/guestfish-actions.pod:5151 ../fish/guestfish-actions.pod:5161
7820 #: ../fish/guestfish-actions.pod:5190 ../fish/guestfish-actions.pod:5200
7821 msgid ""
7822 "Because of the message protocol, there is a transfer limit of somewhere "
7823 "between 2MB and 4MB.  See L<guestfs(3)/PROTOCOL LIMITS>."
7824 msgstr ""
7825
7826 #. type: textblock
7827 #: ../src/guestfs-actions.pod:946 ../src/guestfs-actions.pod:3738
7828 #: ../src/guestfs-actions.pod:3820 ../src/guestfs-actions.pod:3837
7829 #: ../src/guestfs-actions.pod:3925 ../src/guestfs-actions.pod:4333
7830 #: ../src/guestfs-actions.pod:4347 ../src/guestfs-actions.pod:5712
7831 #: ../src/guestfs-actions.pod:5726 ../src/guestfs-actions.pod:7530
7832 #: ../src/guestfs-actions.pod:7544
7833 msgid "(Added in 0.4)"
7834 msgstr ""
7835
7836 #. type: =head2
7837 #: ../src/guestfs-actions.pod:948
7838 msgid "guestfs_checksum"
7839 msgstr ""
7840
7841 #. type: verbatim
7842 #: ../src/guestfs-actions.pod:950
7843 #, no-wrap
7844 msgid ""
7845 " char *\n"
7846 " guestfs_checksum (guestfs_h *g,\n"
7847 "                   const char *csumtype,\n"
7848 "                   const char *path);\n"
7849 "\n"
7850 msgstr ""
7851
7852 #. type: textblock
7853 #: ../src/guestfs-actions.pod:955 ../fish/guestfish-actions.pod:624
7854 msgid ""
7855 "This call computes the MD5, SHAx or CRC checksum of the file named C<path>."
7856 msgstr ""
7857
7858 #. type: textblock
7859 #: ../src/guestfs-actions.pod:958 ../fish/guestfish-actions.pod:627
7860 msgid ""
7861 "The type of checksum to compute is given by the C<csumtype> parameter which "
7862 "must have one of the following values:"
7863 msgstr ""
7864
7865 #. type: =item
7866 #: ../src/guestfs-actions.pod:963 ../fish/guestfish-actions.pod:632
7867 msgid "C<crc>"
7868 msgstr ""
7869
7870 #. type: textblock
7871 #: ../src/guestfs-actions.pod:965 ../fish/guestfish-actions.pod:634
7872 msgid ""
7873 "Compute the cyclic redundancy check (CRC) specified by POSIX for the "
7874 "C<cksum> command."
7875 msgstr ""
7876
7877 #. type: =item
7878 #: ../src/guestfs-actions.pod:968 ../fish/guestfish-actions.pod:637
7879 msgid "C<md5>"
7880 msgstr ""
7881
7882 #. type: textblock
7883 #: ../src/guestfs-actions.pod:970 ../fish/guestfish-actions.pod:639
7884 msgid "Compute the MD5 hash (using the C<md5sum> program)."
7885 msgstr ""
7886
7887 #. type: =item
7888 #: ../src/guestfs-actions.pod:972 ../fish/guestfish-actions.pod:641
7889 msgid "C<sha1>"
7890 msgstr ""
7891
7892 #. type: textblock
7893 #: ../src/guestfs-actions.pod:974 ../fish/guestfish-actions.pod:643
7894 msgid "Compute the SHA1 hash (using the C<sha1sum> program)."
7895 msgstr ""
7896
7897 #. type: =item
7898 #: ../src/guestfs-actions.pod:976 ../fish/guestfish-actions.pod:645
7899 msgid "C<sha224>"
7900 msgstr ""
7901
7902 #. type: textblock
7903 #: ../src/guestfs-actions.pod:978 ../fish/guestfish-actions.pod:647
7904 msgid "Compute the SHA224 hash (using the C<sha224sum> program)."
7905 msgstr ""
7906
7907 #. type: =item
7908 #: ../src/guestfs-actions.pod:980 ../fish/guestfish-actions.pod:649
7909 msgid "C<sha256>"
7910 msgstr ""
7911
7912 #. type: textblock
7913 #: ../src/guestfs-actions.pod:982 ../fish/guestfish-actions.pod:651
7914 msgid "Compute the SHA256 hash (using the C<sha256sum> program)."
7915 msgstr ""
7916
7917 #. type: =item
7918 #: ../src/guestfs-actions.pod:984 ../fish/guestfish-actions.pod:653
7919 msgid "C<sha384>"
7920 msgstr ""
7921
7922 #. type: textblock
7923 #: ../src/guestfs-actions.pod:986 ../fish/guestfish-actions.pod:655
7924 msgid "Compute the SHA384 hash (using the C<sha384sum> program)."
7925 msgstr ""
7926
7927 #. type: =item
7928 #: ../src/guestfs-actions.pod:988 ../fish/guestfish-actions.pod:657
7929 msgid "C<sha512>"
7930 msgstr ""
7931
7932 #. type: textblock
7933 #: ../src/guestfs-actions.pod:990 ../fish/guestfish-actions.pod:659
7934 msgid "Compute the SHA512 hash (using the C<sha512sum> program)."
7935 msgstr ""
7936
7937 #. type: textblock
7938 #: ../src/guestfs-actions.pod:994 ../fish/guestfish-actions.pod:663
7939 msgid "The checksum is returned as a printable string."
7940 msgstr ""
7941
7942 #. type: textblock
7943 #: ../src/guestfs-actions.pod:996
7944 msgid "To get the checksum for a device, use C<guestfs_checksum_device>."
7945 msgstr ""
7946
7947 #. type: textblock
7948 #: ../src/guestfs-actions.pod:998
7949 msgid "To get the checksums for many files, use C<guestfs_checksums_out>."
7950 msgstr ""
7951
7952 #. type: textblock
7953 #: ../src/guestfs-actions.pod:1003 ../src/guestfs-actions.pod:1311
7954 #: ../src/guestfs-actions.pod:2156 ../src/guestfs-actions.pod:3436
7955 #: ../src/guestfs-actions.pod:3465 ../src/guestfs-actions.pod:3526
7956 #: ../src/guestfs-actions.pod:3553 ../src/guestfs-actions.pod:7233
7957 msgid "(Added in 1.0.2)"
7958 msgstr ""
7959
7960 #. type: =head2
7961 #: ../src/guestfs-actions.pod:1005
7962 msgid "guestfs_checksum_device"
7963 msgstr ""
7964
7965 #. type: verbatim
7966 #: ../src/guestfs-actions.pod:1007
7967 #, no-wrap
7968 msgid ""
7969 " char *\n"
7970 " guestfs_checksum_device (guestfs_h *g,\n"
7971 "                          const char *csumtype,\n"
7972 "                          const char *device);\n"
7973 "\n"
7974 msgstr ""
7975
7976 #. type: textblock
7977 #: ../src/guestfs-actions.pod:1012
7978 msgid ""
7979 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
7980 "device named C<device>.  For the types of checksums supported see the "
7981 "C<guestfs_checksum> command."
7982 msgstr ""
7983
7984 #. type: textblock
7985 #: ../src/guestfs-actions.pod:1019 ../src/guestfs-actions.pod:5167
7986 #: ../src/guestfs-actions.pod:5302 ../src/guestfs-actions.pod:5339
7987 #: ../src/guestfs-actions.pod:5357 ../src/guestfs-actions.pod:5533
7988 #: ../src/guestfs-actions.pod:7142 ../src/guestfs-actions.pod:7156
7989 #: ../src/guestfs-actions.pod:7556
7990 msgid "(Added in 1.3.2)"
7991 msgstr ""
7992
7993 #. type: =head2
7994 #: ../src/guestfs-actions.pod:1021
7995 msgid "guestfs_checksums_out"
7996 msgstr ""
7997
7998 #. type: verbatim
7999 #: ../src/guestfs-actions.pod:1023
8000 #, no-wrap
8001 msgid ""
8002 " int\n"
8003 " guestfs_checksums_out (guestfs_h *g,\n"
8004 "                        const char *csumtype,\n"
8005 "                        const char *directory,\n"
8006 "                        const char *sumsfile);\n"
8007 "\n"
8008 msgstr ""
8009
8010 #. type: textblock
8011 #: ../src/guestfs-actions.pod:1029 ../fish/guestfish-actions.pod:681
8012 msgid ""
8013 "This command computes the checksums of all regular files in C<directory> and"
8014 " then emits a list of those checksums to the local output file C<sumsfile>."
8015 msgstr ""
8016
8017 #. type: textblock
8018 #: ../src/guestfs-actions.pod:1033 ../fish/guestfish-actions.pod:685
8019 msgid ""
8020 "This can be used for verifying the integrity of a virtual machine.  However "
8021 "to be properly secure you should pay attention to the output of the checksum"
8022 " command (it uses the ones from GNU coreutils).  In particular when the "
8023 "filename is not printable, coreutils uses a special backslash syntax.  For "
8024 "more information, see the GNU coreutils info file."
8025 msgstr ""
8026
8027 #. type: textblock
8028 #: ../src/guestfs-actions.pod:1043
8029 msgid "(Added in 1.3.7)"
8030 msgstr ""
8031
8032 #. type: =head2
8033 #: ../src/guestfs-actions.pod:1045
8034 msgid "guestfs_chmod"
8035 msgstr ""
8036
8037 #. type: verbatim
8038 #: ../src/guestfs-actions.pod:1047
8039 #, no-wrap
8040 msgid ""
8041 " int\n"
8042 " guestfs_chmod (guestfs_h *g,\n"
8043 "                int mode,\n"
8044 "                const char *path);\n"
8045 "\n"
8046 msgstr ""
8047
8048 #. type: textblock
8049 #: ../src/guestfs-actions.pod:1052 ../fish/guestfish-actions.pod:699
8050 msgid ""
8051 "Change the mode (permissions) of C<path> to C<mode>.  Only numeric modes are"
8052 " supported."
8053 msgstr ""
8054
8055 #. type: textblock
8056 #: ../src/guestfs-actions.pod:1055 ../fish/guestfish-actions.pod:702
8057 msgid ""
8058 "I<Note>: When using this command from guestfish, C<mode> by default would be"
8059 " decimal, unless you prefix it with C<0> to get octal, ie. use C<0700> not "
8060 "C<700>."
8061 msgstr ""
8062
8063 #. type: textblock
8064 #: ../src/guestfs-actions.pod:1059 ../src/guestfs-actions.pod:4584
8065 #: ../src/guestfs-actions.pod:4793 ../src/guestfs-actions.pod:4812
8066 #: ../src/guestfs-actions.pod:4831 ../fish/guestfish-actions.pod:706
8067 #: ../fish/guestfish-actions.pod:3060 ../fish/guestfish-actions.pod:3199
8068 #: ../fish/guestfish-actions.pod:3209 ../fish/guestfish-actions.pod:3219
8069 msgid "The mode actually set is affected by the umask."
8070 msgstr ""
8071
8072 #. type: =head2
8073 #: ../src/guestfs-actions.pod:1065
8074 msgid "guestfs_chown"
8075 msgstr ""
8076
8077 #. type: verbatim
8078 #: ../src/guestfs-actions.pod:1067
8079 #, no-wrap
8080 msgid ""
8081 " int\n"
8082 " guestfs_chown (guestfs_h *g,\n"
8083 "                int owner,\n"
8084 "                int group,\n"
8085 "                const char *path);\n"
8086 "\n"
8087 msgstr ""
8088
8089 #. type: textblock
8090 #: ../src/guestfs-actions.pod:1073 ../fish/guestfish-actions.pod:712
8091 msgid "Change the file owner to C<owner> and group to C<group>."
8092 msgstr ""
8093
8094 #. type: textblock
8095 #: ../src/guestfs-actions.pod:1075 ../src/guestfs-actions.pod:3655
8096 #: ../fish/guestfish-actions.pod:714 ../fish/guestfish-actions.pod:2495
8097 msgid ""
8098 "Only numeric uid and gid are supported.  If you want to use names, you will "
8099 "need to locate and parse the password file yourself (Augeas support makes "
8100 "this relatively easy)."
8101 msgstr ""
8102
8103 #. type: =head2
8104 #: ../src/guestfs-actions.pod:1083
8105 msgid "guestfs_command"
8106 msgstr ""
8107
8108 #. type: verbatim
8109 #: ../src/guestfs-actions.pod:1085
8110 #, no-wrap
8111 msgid ""
8112 " char *\n"
8113 " guestfs_command (guestfs_h *g,\n"
8114 "                  char *const *arguments);\n"
8115 "\n"
8116 msgstr ""
8117
8118 #. type: textblock
8119 #: ../src/guestfs-actions.pod:1089 ../fish/guestfish-actions.pod:722
8120 msgid ""
8121 "This call runs a command from the guest filesystem.  The filesystem must be "
8122 "mounted, and must contain a compatible operating system (ie. something "
8123 "Linux, with the same or compatible processor architecture)."
8124 msgstr ""
8125
8126 #. type: textblock
8127 #: ../src/guestfs-actions.pod:1094
8128 msgid ""
8129 "The single parameter is an argv-style list of arguments.  The first element "
8130 "is the name of the program to run.  Subsequent elements are parameters.  The"
8131 " list must be non-empty (ie. must contain a program name).  Note that the "
8132 "command runs directly, and is I<not> invoked via the shell (see "
8133 "C<guestfs_sh>)."
8134 msgstr ""
8135
8136 #. type: textblock
8137 #: ../src/guestfs-actions.pod:1101 ../fish/guestfish-actions.pod:734
8138 msgid "The return value is anything printed to I<stdout> by the command."
8139 msgstr ""
8140
8141 #. type: textblock
8142 #: ../src/guestfs-actions.pod:1104 ../fish/guestfish-actions.pod:737
8143 msgid ""
8144 "If the command returns a non-zero exit status, then this function returns an"
8145 " error message.  The error message string is the content of I<stderr> from "
8146 "the command."
8147 msgstr ""
8148
8149 #. type: textblock
8150 #: ../src/guestfs-actions.pod:1108 ../fish/guestfish-actions.pod:741
8151 msgid ""
8152 "The C<$PATH> environment variable will contain at least C</usr/bin> and "
8153 "C</bin>.  If you require a program from another location, you should provide"
8154 " the full path in the first parameter."
8155 msgstr ""
8156
8157 #. type: textblock
8158 #: ../src/guestfs-actions.pod:1113 ../fish/guestfish-actions.pod:746
8159 msgid ""
8160 "Shared libraries and data files required by the program must be available on"
8161 " filesystems which are mounted in the correct places.  It is the caller's "
8162 "responsibility to ensure all filesystems that are needed are mounted at the "
8163 "right locations."
8164 msgstr ""
8165
8166 #. type: textblock
8167 #: ../src/guestfs-actions.pod:1125 ../src/guestfs-actions.pod:1145
8168 #: ../src/guestfs-actions.pod:1610
8169 msgid "(Added in 0.9.1)"
8170 msgstr ""
8171
8172 #. type: =head2
8173 #: ../src/guestfs-actions.pod:1127
8174 msgid "guestfs_command_lines"
8175 msgstr ""
8176
8177 #. type: verbatim
8178 #: ../src/guestfs-actions.pod:1129
8179 #, no-wrap
8180 msgid ""
8181 " char **\n"
8182 " guestfs_command_lines (guestfs_h *g,\n"
8183 "                        char *const *arguments);\n"
8184 "\n"
8185 msgstr ""
8186
8187 #. type: textblock
8188 #: ../src/guestfs-actions.pod:1133
8189 msgid ""
8190 "This is the same as C<guestfs_command>, but splits the result into a list of"
8191 " lines."
8192 msgstr ""
8193
8194 #. type: textblock
8195 #: ../src/guestfs-actions.pod:1136
8196 msgid "See also: C<guestfs_sh_lines>"
8197 msgstr ""
8198
8199 #. type: =head2
8200 #: ../src/guestfs-actions.pod:1147
8201 msgid "guestfs_config"
8202 msgstr ""
8203
8204 #. type: verbatim
8205 #: ../src/guestfs-actions.pod:1149
8206 #, no-wrap
8207 msgid ""
8208 " int\n"
8209 " guestfs_config (guestfs_h *g,\n"
8210 "                 const char *qemuparam,\n"
8211 "                 const char *qemuvalue);\n"
8212 "\n"
8213 msgstr ""
8214
8215 #. type: textblock
8216 #: ../src/guestfs-actions.pod:1154 ../fish/guestfish-actions.pod:771
8217 msgid ""
8218 "This can be used to add arbitrary qemu command line parameters of the form "
8219 "I<-param value>.  Actually it's not quite arbitrary - we prevent you from "
8220 "setting some parameters which would interfere with parameters that we use."
8221 msgstr ""
8222
8223 #. type: textblock
8224 #: ../src/guestfs-actions.pod:1159 ../fish/guestfish-actions.pod:776
8225 msgid "The first character of C<param> string must be a C<-> (dash)."
8226 msgstr ""
8227
8228 #. type: textblock
8229 #: ../src/guestfs-actions.pod:1161 ../fish/guestfish-actions.pod:778
8230 msgid "C<value> can be NULL."
8231 msgstr ""
8232
8233 #. type: =head2
8234 #: ../src/guestfs-actions.pod:1167
8235 msgid "guestfs_copy_size"
8236 msgstr ""
8237
8238 #. type: verbatim
8239 #: ../src/guestfs-actions.pod:1169
8240 #, no-wrap
8241 msgid ""
8242 " int\n"
8243 " guestfs_copy_size (guestfs_h *g,\n"
8244 "                    const char *src,\n"
8245 "                    const char *dest,\n"
8246 "                    int64_t size);\n"
8247 "\n"
8248 msgstr ""
8249
8250 #. type: textblock
8251 #: ../src/guestfs-actions.pod:1175 ../fish/guestfish-actions.pod:784
8252 msgid ""
8253 "This command copies exactly C<size> bytes from one source device or file "
8254 "C<src> to another destination device or file C<dest>."
8255 msgstr ""
8256
8257 #. type: textblock
8258 #: ../src/guestfs-actions.pod:1178 ../fish/guestfish-actions.pod:787
8259 msgid ""
8260 "Note this will fail if the source is too short or if the destination is not "
8261 "large enough."
8262 msgstr ""
8263
8264 #. type: textblock
8265 #: ../src/guestfs-actions.pod:1183 ../src/guestfs-actions.pod:1306
8266 #: ../src/guestfs-actions.pod:1337 ../src/guestfs-actions.pod:1382
8267 #: ../src/guestfs-actions.pod:1759 ../src/guestfs-actions.pod:1781
8268 #: ../src/guestfs-actions.pod:3636 ../src/guestfs-actions.pod:7228
8269 #: ../src/guestfs-actions.pod:7262 ../src/guestfs-actions.pod:7763
8270 #: ../src/guestfs-actions.pod:7782
8271 msgid ""
8272 "This long-running command can generate progress notification messages so "
8273 "that the caller can display a progress bar or indicator.  To receive these "
8274 "messages, the caller must register a progress event callback.  See "
8275 "L<guestfs(3)/GUESTFS_EVENT_PROGRESS>."
8276 msgstr ""
8277
8278 #. type: textblock
8279 #: ../src/guestfs-actions.pod:1188 ../src/guestfs-actions.pod:4360
8280 #: ../src/guestfs-actions.pod:5739 ../src/guestfs-actions.pod:7463
8281 #: ../src/guestfs-actions.pod:7483 ../src/guestfs-actions.pod:7569
8282 msgid "(Added in 1.0.87)"
8283 msgstr ""
8284
8285 #. type: =head2
8286 #: ../src/guestfs-actions.pod:1190
8287 msgid "guestfs_cp"
8288 msgstr ""
8289
8290 #. type: verbatim
8291 #: ../src/guestfs-actions.pod:1192
8292 #, no-wrap
8293 msgid ""
8294 " int\n"
8295 " guestfs_cp (guestfs_h *g,\n"
8296 "             const char *src,\n"
8297 "             const char *dest);\n"
8298 "\n"
8299 msgstr ""
8300
8301 #. type: textblock
8302 #: ../src/guestfs-actions.pod:1197 ../fish/guestfish-actions.pod:794
8303 msgid ""
8304 "This copies a file from C<src> to C<dest> where C<dest> is either a "
8305 "destination filename or destination directory."
8306 msgstr ""
8307
8308 #. type: textblock
8309 #: ../src/guestfs-actions.pod:1202 ../src/guestfs-actions.pod:1216
8310 #: ../src/guestfs-actions.pod:1288 ../src/guestfs-actions.pod:1362
8311 #: ../src/guestfs-actions.pod:1476 ../src/guestfs-actions.pod:5114
8312 #: ../src/guestfs-actions.pod:5583
8313 msgid "(Added in 1.0.18)"
8314 msgstr ""
8315
8316 #. type: =head2
8317 #: ../src/guestfs-actions.pod:1204
8318 msgid "guestfs_cp_a"
8319 msgstr ""
8320
8321 #. type: verbatim
8322 #: ../src/guestfs-actions.pod:1206
8323 #, no-wrap
8324 msgid ""
8325 " int\n"
8326 " guestfs_cp_a (guestfs_h *g,\n"
8327 "               const char *src,\n"
8328 "               const char *dest);\n"
8329 "\n"
8330 msgstr ""
8331
8332 #. type: textblock
8333 #: ../src/guestfs-actions.pod:1211 ../fish/guestfish-actions.pod:801
8334 msgid ""
8335 "This copies a file or directory from C<src> to C<dest> recursively using the"
8336 " C<cp -a> command."
8337 msgstr ""
8338
8339 #. type: =head2
8340 #: ../src/guestfs-actions.pod:1218
8341 msgid "guestfs_dd"
8342 msgstr ""
8343
8344 #. type: verbatim
8345 #: ../src/guestfs-actions.pod:1220
8346 #, no-wrap
8347 msgid ""
8348 " int\n"
8349 " guestfs_dd (guestfs_h *g,\n"
8350 "             const char *src,\n"
8351 "             const char *dest);\n"
8352 "\n"
8353 msgstr ""
8354
8355 #. type: textblock
8356 #: ../src/guestfs-actions.pod:1225 ../fish/guestfish-actions.pod:808
8357 msgid ""
8358 "This command copies from one source device or file C<src> to another "
8359 "destination device or file C<dest>.  Normally you would use this to copy to "
8360 "or from a device or partition, for example to duplicate a filesystem."
8361 msgstr ""
8362
8363 #. type: textblock
8364 #: ../src/guestfs-actions.pod:1230
8365 msgid ""
8366 "If the destination is a device, it must be as large or larger than the "
8367 "source file or device, otherwise the copy will fail.  This command cannot do"
8368 " partial copies (see C<guestfs_copy_size>)."
8369 msgstr ""
8370
8371 #. type: =head2
8372 #: ../src/guestfs-actions.pod:1238
8373 msgid "guestfs_df"
8374 msgstr ""
8375
8376 #. type: verbatim
8377 #: ../src/guestfs-actions.pod:1240
8378 #, no-wrap
8379 msgid ""
8380 " char *\n"
8381 " guestfs_df (guestfs_h *g);\n"
8382 "\n"
8383 msgstr ""
8384
8385 #. type: textblock
8386 #: ../src/guestfs-actions.pod:1243 ../fish/guestfish-actions.pod:821
8387 msgid "This command runs the C<df> command to report disk space used."
8388 msgstr ""
8389
8390 #. type: textblock
8391 #: ../src/guestfs-actions.pod:1245 ../src/guestfs-actions.pod:1262
8392 msgid ""
8393 "This command is mostly useful for interactive sessions.  It is I<not> "
8394 "intended that you try to parse the output string.  Use C<guestfs_statvfs> "
8395 "from programs."
8396 msgstr ""
8397
8398 #. type: textblock
8399 #: ../src/guestfs-actions.pod:1252 ../src/guestfs-actions.pod:1269
8400 #: ../src/guestfs-actions.pod:1387 ../src/guestfs-actions.pod:2359
8401 #: ../src/guestfs-actions.pod:2383 ../src/guestfs-actions.pod:2451
8402 #: ../src/guestfs-actions.pod:4470 ../src/guestfs-actions.pod:5014
8403 #: ../src/guestfs-actions.pod:6966 ../src/guestfs-actions.pod:6990
8404 #: ../src/guestfs-actions.pod:7609 ../src/guestfs-actions.pod:7622
8405 #: ../src/guestfs-actions.pod:7635
8406 msgid "(Added in 1.0.54)"
8407 msgstr ""
8408
8409 #. type: =head2
8410 #: ../src/guestfs-actions.pod:1254
8411 msgid "guestfs_df_h"
8412 msgstr ""
8413
8414 #. type: verbatim
8415 #: ../src/guestfs-actions.pod:1256
8416 #, no-wrap
8417 msgid ""
8418 " char *\n"
8419 " guestfs_df_h (guestfs_h *g);\n"
8420 "\n"
8421 msgstr ""
8422
8423 #. type: textblock
8424 #: ../src/guestfs-actions.pod:1259 ../fish/guestfish-actions.pod:831
8425 msgid ""
8426 "This command runs the C<df -h> command to report disk space used in human-"
8427 "readable format."
8428 msgstr ""
8429
8430 #. type: =head2
8431 #: ../src/guestfs-actions.pod:1271
8432 msgid "guestfs_dmesg"
8433 msgstr ""
8434
8435 #. type: verbatim
8436 #: ../src/guestfs-actions.pod:1273
8437 #, no-wrap
8438 msgid ""
8439 " char *\n"
8440 " guestfs_dmesg (guestfs_h *g);\n"
8441 "\n"
8442 msgstr ""
8443
8444 #. type: textblock
8445 #: ../src/guestfs-actions.pod:1276 ../fish/guestfish-actions.pod:842
8446 msgid ""
8447 "This returns the kernel messages (C<dmesg> output) from the guest kernel.  "
8448 "This is sometimes useful for extended debugging of problems."
8449 msgstr ""
8450
8451 #. type: textblock
8452 #: ../src/guestfs-actions.pod:1280
8453 msgid ""
8454 "Another way to get the same information is to enable verbose messages with "
8455 "C<guestfs_set_verbose> or by setting the environment variable "
8456 "C<LIBGUESTFS_DEBUG=1> before running the program."
8457 msgstr ""
8458
8459 #. type: =head2
8460 #: ../src/guestfs-actions.pod:1290
8461 msgid "guestfs_download"
8462 msgstr ""
8463
8464 #. type: verbatim
8465 #: ../src/guestfs-actions.pod:1292
8466 #, no-wrap
8467 msgid ""
8468 " int\n"
8469 " guestfs_download (guestfs_h *g,\n"
8470 "                   const char *remotefilename,\n"
8471 "                   const char *filename);\n"
8472 "\n"
8473 msgstr ""
8474
8475 #. type: textblock
8476 #: ../src/guestfs-actions.pod:1297 ../src/guestfs-actions.pod:1322
8477 #: ../fish/guestfish-actions.pod:855 ../fish/guestfish-actions.pod:868
8478 msgid ""
8479 "Download file C<remotefilename> and save it as C<filename> on the local "
8480 "machine."
8481 msgstr ""
8482
8483 #. type: textblock
8484 #: ../src/guestfs-actions.pod:1300 ../src/guestfs-actions.pod:7222
8485 #: ../fish/guestfish-actions.pod:858 ../fish/guestfish-actions.pod:4797
8486 msgid "C<filename> can also be a named pipe."
8487 msgstr ""
8488
8489 #. type: textblock
8490 #: ../src/guestfs-actions.pod:1302
8491 msgid "See also C<guestfs_upload>, C<guestfs_cat>."
8492 msgstr ""
8493
8494 #. type: =head2
8495 #: ../src/guestfs-actions.pod:1313
8496 msgid "guestfs_download_offset"
8497 msgstr ""
8498
8499 #. type: verbatim
8500 #: ../src/guestfs-actions.pod:1315
8501 #, no-wrap
8502 msgid ""
8503 " int\n"
8504 " guestfs_download_offset (guestfs_h *g,\n"
8505 "                          const char *remotefilename,\n"
8506 "                          const char *filename,\n"
8507 "                          int64_t offset,\n"
8508 "                          int64_t size);\n"
8509 "\n"
8510 msgstr ""
8511
8512 #. type: textblock
8513 #: ../src/guestfs-actions.pod:1325 ../fish/guestfish-actions.pod:871
8514 msgid ""
8515 "C<remotefilename> is read for C<size> bytes starting at C<offset> (this "
8516 "region must be within the file or device)."
8517 msgstr ""
8518
8519 #. type: textblock
8520 #: ../src/guestfs-actions.pod:1328
8521 msgid ""
8522 "Note that there is no limit on the amount of data that can be downloaded "
8523 "with this call, unlike with C<guestfs_pread>, and this call always reads the"
8524 " full amount unless an error occurs."
8525 msgstr ""
8526
8527 #. type: textblock
8528 #: ../src/guestfs-actions.pod:1333
8529 msgid "See also C<guestfs_download>, C<guestfs_pread>."
8530 msgstr ""
8531
8532 #. type: textblock
8533 #: ../src/guestfs-actions.pod:1342 ../src/guestfs-actions.pod:7267
8534 msgid "(Added in 1.5.17)"
8535 msgstr ""
8536
8537 #. type: =head2
8538 #: ../src/guestfs-actions.pod:1344
8539 msgid "guestfs_drop_caches"
8540 msgstr ""
8541
8542 #. type: verbatim
8543 #: ../src/guestfs-actions.pod:1346
8544 #, no-wrap
8545 msgid ""
8546 " int\n"
8547 " guestfs_drop_caches (guestfs_h *g,\n"
8548 "                      int whattodrop);\n"
8549 "\n"
8550 msgstr ""
8551
8552 #. type: textblock
8553 #: ../src/guestfs-actions.pod:1350 ../fish/guestfish-actions.pod:887
8554 msgid ""
8555 "This instructs the guest kernel to drop its page cache, and/or dentries and "
8556 "inode caches.  The parameter C<whattodrop> tells the kernel what precisely "
8557 "to drop, see L<http://linux-mm.org/Drop_Caches>"
8558 msgstr ""
8559
8560 #. type: textblock
8561 #: ../src/guestfs-actions.pod:1355 ../fish/guestfish-actions.pod:892
8562 msgid "Setting C<whattodrop> to 3 should drop everything."
8563 msgstr ""
8564
8565 #. type: textblock
8566 #: ../src/guestfs-actions.pod:1357 ../fish/guestfish-actions.pod:894
8567 msgid ""
8568 "This automatically calls L<sync(2)> before the operation, so that the "
8569 "maximum guest memory is freed."
8570 msgstr ""
8571
8572 #. type: =head2
8573 #: ../src/guestfs-actions.pod:1364
8574 msgid "guestfs_du"
8575 msgstr ""
8576
8577 #. type: verbatim
8578 #: ../src/guestfs-actions.pod:1366
8579 #, no-wrap
8580 msgid ""
8581 " int64_t\n"
8582 " guestfs_du (guestfs_h *g,\n"
8583 "             const char *path);\n"
8584 "\n"
8585 msgstr ""
8586
8587 #. type: textblock
8588 #: ../src/guestfs-actions.pod:1370 ../fish/guestfish-actions.pod:901
8589 msgid ""
8590 "This command runs the C<du -s> command to estimate file space usage for "
8591 "C<path>."
8592 msgstr ""
8593
8594 #. type: textblock
8595 #: ../src/guestfs-actions.pod:1373 ../fish/guestfish-actions.pod:904
8596 msgid ""
8597 "C<path> can be a file or a directory.  If C<path> is a directory then the "
8598 "estimate includes the contents of the directory and all subdirectories "
8599 "(recursively)."
8600 msgstr ""
8601
8602 #. type: textblock
8603 #: ../src/guestfs-actions.pod:1377 ../fish/guestfish-actions.pod:908
8604 msgid ""
8605 "The result is the estimated size in I<kilobytes> (ie. units of 1024 bytes)."
8606 msgstr ""
8607
8608 #. type: =head2
8609 #: ../src/guestfs-actions.pod:1389
8610 msgid "guestfs_e2fsck_f"
8611 msgstr ""
8612
8613 #. type: verbatim
8614 #: ../src/guestfs-actions.pod:1391
8615 #, no-wrap
8616 msgid ""
8617 " int\n"
8618 " guestfs_e2fsck_f (guestfs_h *g,\n"
8619 "                   const char *device);\n"
8620 "\n"
8621 msgstr ""
8622
8623 #. type: textblock
8624 #: ../src/guestfs-actions.pod:1395 ../fish/guestfish-actions.pod:915
8625 msgid ""
8626 "This runs C<e2fsck -p -f device>, ie. runs the ext2/ext3 filesystem checker "
8627 "on C<device>, noninteractively (I<-p>), even if the filesystem appears to be"
8628 " clean (I<-f>)."
8629 msgstr ""
8630
8631 #. type: textblock
8632 #: ../src/guestfs-actions.pod:1399
8633 msgid ""
8634 "This command is only needed because of C<guestfs_resize2fs> (q.v.).  "
8635 "Normally you should use C<guestfs_fsck>."
8636 msgstr ""
8637
8638 #. type: textblock
8639 #: ../src/guestfs-actions.pod:1404
8640 msgid "(Added in 1.0.29)"
8641 msgstr ""
8642
8643 #. type: =head2
8644 #: ../src/guestfs-actions.pod:1406
8645 msgid "guestfs_echo_daemon"
8646 msgstr ""
8647
8648 #. type: verbatim
8649 #: ../src/guestfs-actions.pod:1408
8650 #, no-wrap
8651 msgid ""
8652 " char *\n"
8653 " guestfs_echo_daemon (guestfs_h *g,\n"
8654 "                      char *const *words);\n"
8655 "\n"
8656 msgstr ""
8657
8658 #. type: textblock
8659 #: ../src/guestfs-actions.pod:1412 ../fish/guestfish-actions.pod:926
8660 msgid ""
8661 "This command concatenates the list of C<words> passed with single spaces "
8662 "between them and returns the resulting string."
8663 msgstr ""
8664
8665 #. type: textblock
8666 #: ../src/guestfs-actions.pod:1415 ../fish/guestfish-actions.pod:929
8667 msgid "You can use this command to test the connection through to the daemon."
8668 msgstr ""
8669
8670 #. type: textblock
8671 #: ../src/guestfs-actions.pod:1417
8672 msgid "See also C<guestfs_ping_daemon>."
8673 msgstr ""
8674
8675 #. type: textblock
8676 #: ../src/guestfs-actions.pod:1422 ../src/guestfs-actions.pod:2167
8677 #: ../src/guestfs-actions.pod:6438
8678 msgid "(Added in 1.0.69)"
8679 msgstr ""
8680
8681 #. type: =head2
8682 #: ../src/guestfs-actions.pod:1424
8683 msgid "guestfs_egrep"
8684 msgstr ""
8685
8686 #. type: verbatim
8687 #: ../src/guestfs-actions.pod:1426
8688 #, no-wrap
8689 msgid ""
8690 " char **\n"
8691 " guestfs_egrep (guestfs_h *g,\n"
8692 "                const char *regex,\n"
8693 "                const char *path);\n"
8694 "\n"
8695 msgstr ""
8696
8697 #. type: textblock
8698 #: ../src/guestfs-actions.pod:1431 ../fish/guestfish-actions.pod:937
8699 msgid ""
8700 "This calls the external C<egrep> program and returns the matching lines."
8701 msgstr ""
8702
8703 #. type: textblock
8704 #: ../src/guestfs-actions.pod:1441 ../src/guestfs-actions.pod:1460
8705 #: ../src/guestfs-actions.pod:1517 ../src/guestfs-actions.pod:1563
8706 #: ../src/guestfs-actions.pod:1582 ../src/guestfs-actions.pod:2297
8707 #: ../src/guestfs-actions.pod:2316 ../src/guestfs-actions.pod:2472
8708 #: ../src/guestfs-actions.pod:2485 ../src/guestfs-actions.pod:2500
8709 #: ../src/guestfs-actions.pod:2546 ../src/guestfs-actions.pod:2568
8710 #: ../src/guestfs-actions.pod:2581 ../src/guestfs-actions.pod:3850
8711 #: ../src/guestfs-actions.pod:3864 ../src/guestfs-actions.pod:3877
8712 #: ../src/guestfs-actions.pod:3891 ../src/guestfs-actions.pod:4892
8713 #: ../src/guestfs-actions.pod:5917 ../src/guestfs-actions.pod:5966
8714 #: ../src/guestfs-actions.pod:6834 ../src/guestfs-actions.pod:6846
8715 #: ../src/guestfs-actions.pod:6859 ../src/guestfs-actions.pod:6872
8716 #: ../src/guestfs-actions.pod:6894 ../src/guestfs-actions.pod:6907
8717 #: ../src/guestfs-actions.pod:6920 ../src/guestfs-actions.pod:6933
8718 #: ../src/guestfs-actions.pod:7725 ../src/guestfs-actions.pod:7744
8719 #: ../src/guestfs-actions.pod:7830 ../src/guestfs-actions.pod:7849
8720 #: ../src/guestfs-actions.pod:7895 ../src/guestfs-actions.pod:7914
8721 msgid "(Added in 1.0.66)"
8722 msgstr ""
8723
8724 #. type: =head2
8725 #: ../src/guestfs-actions.pod:1443
8726 msgid "guestfs_egrepi"
8727 msgstr ""
8728
8729 #. type: verbatim
8730 #: ../src/guestfs-actions.pod:1445
8731 #, no-wrap
8732 msgid ""
8733 " char **\n"
8734 " guestfs_egrepi (guestfs_h *g,\n"
8735 "                 const char *regex,\n"
8736 "                 const char *path);\n"
8737 "\n"
8738 msgstr ""
8739
8740 #. type: textblock
8741 #: ../src/guestfs-actions.pod:1450 ../fish/guestfish-actions.pod:947
8742 msgid ""
8743 "This calls the external C<egrep -i> program and returns the matching lines."
8744 msgstr ""
8745
8746 #. type: =head2
8747 #: ../src/guestfs-actions.pod:1462
8748 msgid "guestfs_equal"
8749 msgstr ""
8750
8751 #. type: verbatim
8752 #: ../src/guestfs-actions.pod:1464
8753 #, no-wrap
8754 msgid ""
8755 " int\n"
8756 " guestfs_equal (guestfs_h *g,\n"
8757 "                const char *file1,\n"
8758 "                const char *file2);\n"
8759 "\n"
8760 msgstr ""
8761
8762 #. type: textblock
8763 #: ../src/guestfs-actions.pod:1469 ../fish/guestfish-actions.pod:957
8764 msgid ""
8765 "This compares the two files C<file1> and C<file2> and returns true if their "
8766 "content is exactly equal, or false otherwise."
8767 msgstr ""
8768
8769 #. type: textblock
8770 #: ../src/guestfs-actions.pod:1472 ../fish/guestfish-actions.pod:960
8771 msgid "The external L<cmp(1)> program is used for the comparison."
8772 msgstr ""
8773
8774 #. type: =head2
8775 #: ../src/guestfs-actions.pod:1478
8776 msgid "guestfs_exists"
8777 msgstr ""
8778
8779 #. type: verbatim
8780 #: ../src/guestfs-actions.pod:1480
8781 #, no-wrap
8782 msgid ""
8783 " int\n"
8784 " guestfs_exists (guestfs_h *g,\n"
8785 "                 const char *path);\n"
8786 "\n"
8787 msgstr ""
8788
8789 #. type: textblock
8790 #: ../src/guestfs-actions.pod:1484 ../fish/guestfish-actions.pod:966
8791 msgid ""
8792 "This returns C<true> if and only if there is a file, directory (or anything)"
8793 " with the given C<path> name."
8794 msgstr ""
8795
8796 #. type: textblock
8797 #: ../src/guestfs-actions.pod:1487
8798 msgid "See also C<guestfs_is_file>, C<guestfs_is_dir>, C<guestfs_stat>."
8799 msgstr ""
8800
8801 #. type: =head2
8802 #: ../src/guestfs-actions.pod:1493
8803 msgid "guestfs_fallocate"
8804 msgstr ""
8805
8806 #. type: verbatim
8807 #: ../src/guestfs-actions.pod:1495
8808 #, no-wrap
8809 msgid ""
8810 " int\n"
8811 " guestfs_fallocate (guestfs_h *g,\n"
8812 "                    const char *path,\n"
8813 "                    int len);\n"
8814 "\n"
8815 msgstr ""
8816
8817 #. type: textblock
8818 #: ../src/guestfs-actions.pod:1500 ../src/guestfs-actions.pod:1526
8819 #: ../fish/guestfish-actions.pod:975 ../fish/guestfish-actions.pod:994
8820 msgid ""
8821 "This command preallocates a file (containing zero bytes) named C<path> of "
8822 "size C<len> bytes.  If the file exists already, it is overwritten."
8823 msgstr ""
8824
8825 #. type: textblock
8826 #: ../src/guestfs-actions.pod:1504 ../fish/guestfish-actions.pod:979
8827 msgid ""
8828 "Do not confuse this with the guestfish-specific C<alloc> command which "
8829 "allocates a file in the host and attaches it as a device."
8830 msgstr ""
8831
8832 #. type: textblock
8833 #: ../src/guestfs-actions.pod:1510 ../fish/guestfish-actions.pod:983
8834 msgid ""
8835 "This function is deprecated.  In new code, use the C<fallocate64> call "
8836 "instead."
8837 msgstr ""
8838
8839 #. type: =head2
8840 #: ../src/guestfs-actions.pod:1519
8841 msgid "guestfs_fallocate64"
8842 msgstr ""
8843
8844 #. type: verbatim
8845 #: ../src/guestfs-actions.pod:1521
8846 #, no-wrap
8847 msgid ""
8848 " int\n"
8849 " guestfs_fallocate64 (guestfs_h *g,\n"
8850 "                      const char *path,\n"
8851 "                      int64_t len);\n"
8852 "\n"
8853 msgstr ""
8854
8855 #. type: textblock
8856 #: ../src/guestfs-actions.pod:1530
8857 msgid ""
8858 "Note that this call allocates disk blocks for the file.  To create a sparse "
8859 "file use C<guestfs_truncate_size> instead."
8860 msgstr ""
8861
8862 #. type: textblock
8863 #: ../src/guestfs-actions.pod:1533
8864 msgid ""
8865 "The deprecated call C<guestfs_fallocate> does the same, but owing to an "
8866 "oversight it only allowed 30 bit lengths to be specified, effectively "
8867 "limiting the maximum size of files created through that call to 1GB."
8868 msgstr ""
8869
8870 #. type: textblock
8871 #: ../src/guestfs-actions.pod:1538 ../fish/guestfish-actions.pod:1006
8872 msgid ""
8873 "Do not confuse this with the guestfish-specific C<alloc> and C<sparse> "
8874 "commands which create a file in the host and attach it as a device."
8875 msgstr ""
8876
8877 #. type: textblock
8878 #: ../src/guestfs-actions.pod:1544
8879 msgid "(Added in 1.3.17)"
8880 msgstr ""
8881
8882 #. type: =head2
8883 #: ../src/guestfs-actions.pod:1546
8884 msgid "guestfs_fgrep"
8885 msgstr ""
8886
8887 #. type: verbatim
8888 #: ../src/guestfs-actions.pod:1548
8889 #, no-wrap
8890 msgid ""
8891 " char **\n"
8892 " guestfs_fgrep (guestfs_h *g,\n"
8893 "                const char *pattern,\n"
8894 "                const char *path);\n"
8895 "\n"
8896 msgstr ""
8897
8898 #. type: textblock
8899 #: ../src/guestfs-actions.pod:1553 ../fish/guestfish-actions.pod:1014
8900 msgid ""
8901 "This calls the external C<fgrep> program and returns the matching lines."
8902 msgstr ""
8903
8904 #. type: =head2
8905 #: ../src/guestfs-actions.pod:1565
8906 msgid "guestfs_fgrepi"
8907 msgstr ""
8908
8909 #. type: verbatim
8910 #: ../src/guestfs-actions.pod:1567
8911 #, no-wrap
8912 msgid ""
8913 " char **\n"
8914 " guestfs_fgrepi (guestfs_h *g,\n"
8915 "                 const char *pattern,\n"
8916 "                 const char *path);\n"
8917 "\n"
8918 msgstr ""
8919
8920 #. type: textblock
8921 #: ../src/guestfs-actions.pod:1572 ../fish/guestfish-actions.pod:1024
8922 msgid ""
8923 "This calls the external C<fgrep -i> program and returns the matching lines."
8924 msgstr ""
8925
8926 #. type: =head2
8927 #: ../src/guestfs-actions.pod:1584
8928 msgid "guestfs_file"
8929 msgstr ""
8930
8931 #. type: verbatim
8932 #: ../src/guestfs-actions.pod:1586
8933 #, no-wrap
8934 msgid ""
8935 " char *\n"
8936 " guestfs_file (guestfs_h *g,\n"
8937 "               const char *path);\n"
8938 "\n"
8939 msgstr ""
8940
8941 #. type: textblock
8942 #: ../src/guestfs-actions.pod:1590 ../fish/guestfish-actions.pod:1034
8943 msgid ""
8944 "This call uses the standard L<file(1)> command to determine the type or "
8945 "contents of the file."
8946 msgstr ""
8947
8948 #. type: textblock
8949 #: ../src/guestfs-actions.pod:1593 ../fish/guestfish-actions.pod:1037
8950 msgid ""
8951 "This call will also transparently look inside various types of compressed "
8952 "file."
8953 msgstr ""
8954
8955 #. type: textblock
8956 #: ../src/guestfs-actions.pod:1596 ../fish/guestfish-actions.pod:1040
8957 msgid ""
8958 "The exact command which runs is C<file -zb path>.  Note in particular that "
8959 "the filename is not prepended to the output (the I<-b> option)."
8960 msgstr ""
8961
8962 #. type: textblock
8963 #: ../src/guestfs-actions.pod:1600 ../fish/guestfish-actions.pod:1044
8964 msgid ""
8965 "The output depends on the output of the underlying L<file(1)> command and it"
8966 " can change in future in ways beyond our control.  In other words, the "
8967 "output is not guaranteed by the ABI."
8968 msgstr ""
8969
8970 #. type: textblock
8971 #: ../src/guestfs-actions.pod:1604
8972 msgid ""
8973 "See also: L<file(1)>, C<guestfs_vfs_type>, C<guestfs_lstat>, "
8974 "C<guestfs_is_file>, C<guestfs_is_blockdev> (etc), C<guestfs_is_zero>."
8975 msgstr ""
8976
8977 #. type: =head2
8978 #: ../src/guestfs-actions.pod:1612
8979 msgid "guestfs_file_architecture"
8980 msgstr ""
8981
8982 #. type: verbatim
8983 #: ../src/guestfs-actions.pod:1614
8984 #, no-wrap
8985 msgid ""
8986 " char *\n"
8987 " guestfs_file_architecture (guestfs_h *g,\n"
8988 "                            const char *filename);\n"
8989 "\n"
8990 msgstr ""
8991
8992 #. type: textblock
8993 #: ../src/guestfs-actions.pod:1618 ../fish/guestfish-actions.pod:1055
8994 msgid ""
8995 "This detects the architecture of the binary C<filename>, and returns it if "
8996 "known."
8997 msgstr ""
8998
8999 #. type: textblock
9000 #: ../src/guestfs-actions.pod:1621 ../fish/guestfish-actions.pod:1058
9001 msgid "Currently defined architectures are:"
9002 msgstr ""
9003
9004 #. type: =item
9005 #: ../src/guestfs-actions.pod:1625 ../fish/guestfish-actions.pod:1062
9006 msgid "\"i386\""
9007 msgstr ""
9008
9009 #. type: textblock
9010 #: ../src/guestfs-actions.pod:1627 ../fish/guestfish-actions.pod:1064
9011 msgid ""
9012 "This string is returned for all 32 bit i386, i486, i586, i686 binaries "
9013 "irrespective of the precise processor requirements of the binary."
9014 msgstr ""
9015
9016 #. type: =item
9017 #: ../src/guestfs-actions.pod:1630 ../fish/guestfish-actions.pod:1067
9018 msgid "\"x86_64\""
9019 msgstr ""
9020
9021 #. type: textblock
9022 #: ../src/guestfs-actions.pod:1632 ../fish/guestfish-actions.pod:1069
9023 msgid "64 bit x86-64."
9024 msgstr ""
9025
9026 #. type: =item
9027 #: ../src/guestfs-actions.pod:1634 ../fish/guestfish-actions.pod:1071
9028 msgid "\"sparc\""
9029 msgstr ""
9030
9031 #. type: textblock
9032 #: ../src/guestfs-actions.pod:1636 ../fish/guestfish-actions.pod:1073
9033 msgid "32 bit SPARC."
9034 msgstr ""
9035
9036 #. type: =item
9037 #: ../src/guestfs-actions.pod:1638 ../fish/guestfish-actions.pod:1075
9038 msgid "\"sparc64\""
9039 msgstr ""
9040
9041 #. type: textblock
9042 #: ../src/guestfs-actions.pod:1640 ../fish/guestfish-actions.pod:1077
9043 msgid "64 bit SPARC V9 and above."
9044 msgstr ""
9045
9046 #. type: =item
9047 #: ../src/guestfs-actions.pod:1642 ../fish/guestfish-actions.pod:1079
9048 msgid "\"ia64\""
9049 msgstr ""
9050
9051 #. type: textblock
9052 #: ../src/guestfs-actions.pod:1644 ../fish/guestfish-actions.pod:1081
9053 msgid "Intel Itanium."
9054 msgstr ""
9055
9056 #. type: =item
9057 #: ../src/guestfs-actions.pod:1646 ../fish/guestfish-actions.pod:1083
9058 msgid "\"ppc\""
9059 msgstr ""
9060
9061 #. type: textblock
9062 #: ../src/guestfs-actions.pod:1648 ../fish/guestfish-actions.pod:1085
9063 msgid "32 bit Power PC."
9064 msgstr ""
9065
9066 #. type: =item
9067 #: ../src/guestfs-actions.pod:1650 ../fish/guestfish-actions.pod:1087
9068 msgid "\"ppc64\""
9069 msgstr ""
9070
9071 #. type: textblock
9072 #: ../src/guestfs-actions.pod:1652 ../fish/guestfish-actions.pod:1089
9073 msgid "64 bit Power PC."
9074 msgstr ""
9075
9076 #. type: textblock
9077 #: ../src/guestfs-actions.pod:1656 ../fish/guestfish-actions.pod:1093
9078 msgid "Libguestfs may return other architecture strings in future."
9079 msgstr ""
9080
9081 #. type: textblock
9082 #: ../src/guestfs-actions.pod:1658 ../fish/guestfish-actions.pod:1095
9083 msgid "The function works on at least the following types of files:"
9084 msgstr ""
9085
9086 #. type: textblock
9087 #: ../src/guestfs-actions.pod:1664 ../fish/guestfish-actions.pod:1101
9088 msgid "many types of Un*x and Linux binary"
9089 msgstr ""
9090
9091 #. type: textblock
9092 #: ../src/guestfs-actions.pod:1668 ../fish/guestfish-actions.pod:1105
9093 msgid "many types of Un*x and Linux shared library"
9094 msgstr ""
9095
9096 #. type: textblock
9097 #: ../src/guestfs-actions.pod:1672 ../fish/guestfish-actions.pod:1109
9098 msgid "Windows Win32 and Win64 binaries"
9099 msgstr ""
9100
9101 #. type: textblock
9102 #: ../src/guestfs-actions.pod:1676 ../fish/guestfish-actions.pod:1113
9103 msgid "Windows Win32 and Win64 DLLs"
9104 msgstr ""
9105
9106 #. type: textblock
9107 #: ../src/guestfs-actions.pod:1678 ../fish/guestfish-actions.pod:1115
9108 msgid "Win32 binaries and DLLs return C<i386>."
9109 msgstr ""
9110
9111 #. type: textblock
9112 #: ../src/guestfs-actions.pod:1680 ../fish/guestfish-actions.pod:1117
9113 msgid "Win64 binaries and DLLs return C<x86_64>."
9114 msgstr ""
9115
9116 #. type: textblock
9117 #: ../src/guestfs-actions.pod:1684 ../fish/guestfish-actions.pod:1121
9118 msgid "Linux kernel modules"
9119 msgstr ""
9120
9121 #. type: textblock
9122 #: ../src/guestfs-actions.pod:1688 ../fish/guestfish-actions.pod:1125
9123 msgid "Linux new-style initrd images"
9124 msgstr ""
9125
9126 #. type: textblock
9127 #: ../src/guestfs-actions.pod:1692 ../fish/guestfish-actions.pod:1129
9128 msgid "some non-x86 Linux vmlinuz kernels"
9129 msgstr ""
9130
9131 #. type: textblock
9132 #: ../src/guestfs-actions.pod:1696 ../fish/guestfish-actions.pod:1133
9133 msgid "What it can't do currently:"
9134 msgstr ""
9135
9136 #. type: textblock
9137 #: ../src/guestfs-actions.pod:1702 ../fish/guestfish-actions.pod:1139
9138 msgid "static libraries (libfoo.a)"
9139 msgstr ""
9140
9141 #. type: textblock
9142 #: ../src/guestfs-actions.pod:1706 ../fish/guestfish-actions.pod:1143
9143 msgid "Linux old-style initrd as compressed ext2 filesystem (RHEL 3)"
9144 msgstr ""
9145
9146 #. type: textblock
9147 #: ../src/guestfs-actions.pod:1710 ../fish/guestfish-actions.pod:1147
9148 msgid "x86 Linux vmlinuz kernels"
9149 msgstr ""
9150
9151 #. type: textblock
9152 #: ../src/guestfs-actions.pod:1712 ../fish/guestfish-actions.pod:1149
9153 msgid ""
9154 "x86 vmlinuz images (bzImage format) consist of a mix of 16-, 32- and "
9155 "compressed code, and are horribly hard to unpack.  If you want to find the "
9156 "architecture of a kernel, use the architecture of the associated initrd or "
9157 "kernel module(s) instead."
9158 msgstr ""
9159
9160 #. type: textblock
9161 #: ../src/guestfs-actions.pod:1722 ../src/guestfs-actions.pod:1885
9162 #: ../src/guestfs-actions.pod:1902 ../src/guestfs-actions.pod:2601
9163 #: ../src/guestfs-actions.pod:2691 ../src/guestfs-actions.pod:2757
9164 #: ../src/guestfs-actions.pod:2944 ../src/guestfs-actions.pod:2962
9165 #: ../src/guestfs-actions.pod:3002 ../src/guestfs-actions.pod:3077
9166 #: ../src/guestfs-actions.pod:3170 ../src/guestfs-actions.pod:3407
9167 #: ../src/guestfs-actions.pod:3539
9168 msgid "(Added in 1.5.3)"
9169 msgstr ""
9170
9171 #. type: =head2
9172 #: ../src/guestfs-actions.pod:1724
9173 msgid "guestfs_filesize"
9174 msgstr ""
9175
9176 #. type: verbatim
9177 #: ../src/guestfs-actions.pod:1726
9178 #, no-wrap
9179 msgid ""
9180 " int64_t\n"
9181 " guestfs_filesize (guestfs_h *g,\n"
9182 "                   const char *file);\n"
9183 "\n"
9184 msgstr ""
9185
9186 #. type: textblock
9187 #: ../src/guestfs-actions.pod:1730 ../fish/guestfish-actions.pod:1160
9188 msgid "This command returns the size of C<file> in bytes."
9189 msgstr ""
9190
9191 #. type: textblock
9192 #: ../src/guestfs-actions.pod:1732
9193 msgid ""
9194 "To get other stats about a file, use C<guestfs_stat>, C<guestfs_lstat>, "
9195 "C<guestfs_is_dir>, C<guestfs_is_file> etc.  To get the size of block "
9196 "devices, use C<guestfs_blockdev_getsize64>."
9197 msgstr ""
9198
9199 #. type: textblock
9200 #: ../src/guestfs-actions.pod:1738
9201 msgid "(Added in 1.0.82)"
9202 msgstr ""
9203
9204 #. type: =head2
9205 #: ../src/guestfs-actions.pod:1740
9206 msgid "guestfs_fill"
9207 msgstr ""
9208
9209 #. type: verbatim
9210 #: ../src/guestfs-actions.pod:1742
9211 #, no-wrap
9212 msgid ""
9213 " int\n"
9214 " guestfs_fill (guestfs_h *g,\n"
9215 "               int c,\n"
9216 "               int len,\n"
9217 "               const char *path);\n"
9218 "\n"
9219 msgstr ""
9220
9221 #. type: textblock
9222 #: ../src/guestfs-actions.pod:1748 ../fish/guestfish-actions.pod:1170
9223 msgid ""
9224 "This command creates a new file called C<path>.  The initial content of the "
9225 "file is C<len> octets of C<c>, where C<c> must be a number in the range "
9226 "C<[0..255]>."
9227 msgstr ""
9228
9229 #. type: textblock
9230 #: ../src/guestfs-actions.pod:1752
9231 msgid ""
9232 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
9233 "C<guestfs_truncate_size>.  To create a file with a pattern of repeating "
9234 "bytes use C<guestfs_fill_pattern>."
9235 msgstr ""
9236
9237 #. type: textblock
9238 #: ../src/guestfs-actions.pod:1764
9239 msgid "(Added in 1.0.79)"
9240 msgstr ""
9241
9242 #. type: =head2
9243 #: ../src/guestfs-actions.pod:1766
9244 msgid "guestfs_fill_pattern"
9245 msgstr ""
9246
9247 #. type: verbatim
9248 #: ../src/guestfs-actions.pod:1768
9249 #, no-wrap
9250 msgid ""
9251 " int\n"
9252 " guestfs_fill_pattern (guestfs_h *g,\n"
9253 "                       const char *pattern,\n"
9254 "                       int len,\n"
9255 "                       const char *path);\n"
9256 "\n"
9257 msgstr ""
9258
9259 #. type: textblock
9260 #: ../src/guestfs-actions.pod:1774
9261 msgid ""
9262 "This function is like C<guestfs_fill> except that it creates a new file of "
9263 "length C<len> containing the repeating pattern of bytes in C<pattern>.  The "
9264 "pattern is truncated if necessary to ensure the length of the file is "
9265 "exactly C<len> bytes."
9266 msgstr ""
9267
9268 #. type: textblock
9269 #: ../src/guestfs-actions.pod:1786
9270 msgid "(Added in 1.3.12)"
9271 msgstr ""
9272
9273 #. type: =head2
9274 #: ../src/guestfs-actions.pod:1788
9275 msgid "guestfs_find"
9276 msgstr ""
9277
9278 #. type: verbatim
9279 #: ../src/guestfs-actions.pod:1790
9280 #, no-wrap
9281 msgid ""
9282 " char **\n"
9283 " guestfs_find (guestfs_h *g,\n"
9284 "               const char *directory);\n"
9285 "\n"
9286 msgstr ""
9287
9288 #. type: textblock
9289 #: ../src/guestfs-actions.pod:1794 ../fish/guestfish-actions.pod:1192
9290 msgid ""
9291 "This command lists out all files and directories, recursively, starting at "
9292 "C<directory>.  It is essentially equivalent to running the shell command "
9293 "C<find directory -print> but some post-processing happens on the output, "
9294 "described below."
9295 msgstr ""
9296
9297 #. type: textblock
9298 #: ../src/guestfs-actions.pod:1799 ../fish/guestfish-actions.pod:1197
9299 msgid ""
9300 "This returns a list of strings I<without any prefix>.  Thus if the directory"
9301 " structure was:"
9302 msgstr ""
9303
9304 #. type: verbatim
9305 #: ../src/guestfs-actions.pod:1802 ../fish/guestfish-actions.pod:1200
9306 #, no-wrap
9307 msgid ""
9308 " /tmp/a\n"
9309 " /tmp/b\n"
9310 " /tmp/c/d\n"
9311 "\n"
9312 msgstr ""
9313
9314 #. type: textblock
9315 #: ../src/guestfs-actions.pod:1806
9316 msgid ""
9317 "then the returned list from C<guestfs_find> C</tmp> would be 4 elements:"
9318 msgstr ""
9319
9320 #. type: verbatim
9321 #: ../src/guestfs-actions.pod:1809 ../fish/guestfish-actions.pod:1207
9322 #, no-wrap
9323 msgid ""
9324 " a\n"
9325 " b\n"
9326 " c\n"
9327 " c/d\n"
9328 "\n"
9329 msgstr ""
9330
9331 #. type: textblock
9332 #: ../src/guestfs-actions.pod:1814 ../fish/guestfish-actions.pod:1212
9333 msgid ""
9334 "If C<directory> is not a directory, then this command returns an error."
9335 msgstr ""
9336
9337 #. type: textblock
9338 #: ../src/guestfs-actions.pod:1817 ../fish/guestfish-actions.pod:1215
9339 msgid "The returned list is sorted."
9340 msgstr ""
9341
9342 #. type: textblock
9343 #: ../src/guestfs-actions.pod:1819
9344 msgid "See also C<guestfs_find0>."
9345 msgstr ""
9346
9347 #. type: textblock
9348 #: ../src/guestfs-actions.pod:1828 ../src/guestfs-actions.pod:4297
9349 #: ../src/guestfs-actions.pod:6001
9350 msgid "(Added in 1.0.27)"
9351 msgstr ""
9352
9353 #. type: =head2
9354 #: ../src/guestfs-actions.pod:1830
9355 msgid "guestfs_find0"
9356 msgstr ""
9357
9358 #. type: verbatim
9359 #: ../src/guestfs-actions.pod:1832
9360 #, no-wrap
9361 msgid ""
9362 " int\n"
9363 " guestfs_find0 (guestfs_h *g,\n"
9364 "                const char *directory,\n"
9365 "                const char *files);\n"
9366 "\n"
9367 msgstr ""
9368
9369 #. type: textblock
9370 #: ../src/guestfs-actions.pod:1837 ../fish/guestfish-actions.pod:1226
9371 msgid ""
9372 "This command lists out all files and directories, recursively, starting at "
9373 "C<directory>, placing the resulting list in the external file called "
9374 "C<files>."
9375 msgstr ""
9376
9377 #. type: textblock
9378 #: ../src/guestfs-actions.pod:1841
9379 msgid ""
9380 "This command works the same way as C<guestfs_find> with the following "
9381 "exceptions:"
9382 msgstr ""
9383
9384 #. type: textblock
9385 #: ../src/guestfs-actions.pod:1848 ../fish/guestfish-actions.pod:1237
9386 msgid "The resulting list is written to an external file."
9387 msgstr ""
9388
9389 #. type: textblock
9390 #: ../src/guestfs-actions.pod:1852 ../fish/guestfish-actions.pod:1241
9391 msgid ""
9392 "Items (filenames) in the result are separated by C<\\0> characters.  See "
9393 "L<find(1)> option I<-print0>."
9394 msgstr ""
9395
9396 #. type: textblock
9397 #: ../src/guestfs-actions.pod:1857 ../fish/guestfish-actions.pod:1246
9398 msgid "This command is not limited in the number of names that it can return."
9399 msgstr ""
9400
9401 #. type: textblock
9402 #: ../src/guestfs-actions.pod:1862 ../fish/guestfish-actions.pod:1251
9403 msgid "The result list is not sorted."
9404 msgstr ""
9405
9406 #. type: textblock
9407 #: ../src/guestfs-actions.pod:1868
9408 msgid "(Added in 1.0.74)"
9409 msgstr ""
9410
9411 #. type: =head2
9412 #: ../src/guestfs-actions.pod:1870
9413 msgid "guestfs_findfs_label"
9414 msgstr ""
9415
9416 #. type: verbatim
9417 #: ../src/guestfs-actions.pod:1872
9418 #, no-wrap
9419 msgid ""
9420 " char *\n"
9421 " guestfs_findfs_label (guestfs_h *g,\n"
9422 "                       const char *label);\n"
9423 "\n"
9424 msgstr ""
9425
9426 #. type: textblock
9427 #: ../src/guestfs-actions.pod:1876 ../fish/guestfish-actions.pod:1261
9428 msgid ""
9429 "This command searches the filesystems and returns the one which has the "
9430 "given label.  An error is returned if no such filesystem can be found."
9431 msgstr ""
9432
9433 #. type: textblock
9434 #: ../src/guestfs-actions.pod:1880
9435 msgid "To find the label of a filesystem, use C<guestfs_vfs_label>."
9436 msgstr ""
9437
9438 #. type: =head2
9439 #: ../src/guestfs-actions.pod:1887
9440 msgid "guestfs_findfs_uuid"
9441 msgstr ""
9442
9443 #. type: verbatim
9444 #: ../src/guestfs-actions.pod:1889
9445 #, no-wrap
9446 msgid ""
9447 " char *\n"
9448 " guestfs_findfs_uuid (guestfs_h *g,\n"
9449 "                      const char *uuid);\n"
9450 "\n"
9451 msgstr ""
9452
9453 #. type: textblock
9454 #: ../src/guestfs-actions.pod:1893 ../fish/guestfish-actions.pod:1271
9455 msgid ""
9456 "This command searches the filesystems and returns the one which has the "
9457 "given UUID.  An error is returned if no such filesystem can be found."
9458 msgstr ""
9459
9460 #. type: textblock
9461 #: ../src/guestfs-actions.pod:1897
9462 msgid "To find the UUID of a filesystem, use C<guestfs_vfs_uuid>."
9463 msgstr ""
9464
9465 #. type: =head2
9466 #: ../src/guestfs-actions.pod:1904
9467 msgid "guestfs_fsck"
9468 msgstr ""
9469
9470 #. type: verbatim
9471 #: ../src/guestfs-actions.pod:1906
9472 #, no-wrap
9473 msgid ""
9474 " int\n"
9475 " guestfs_fsck (guestfs_h *g,\n"
9476 "               const char *fstype,\n"
9477 "               const char *device);\n"
9478 "\n"
9479 msgstr ""
9480
9481 #. type: textblock
9482 #: ../src/guestfs-actions.pod:1911 ../fish/guestfish-actions.pod:1281
9483 msgid ""
9484 "This runs the filesystem checker (fsck) on C<device> which should have "
9485 "filesystem type C<fstype>."
9486 msgstr ""
9487
9488 #. type: textblock
9489 #: ../src/guestfs-actions.pod:1914 ../fish/guestfish-actions.pod:1284
9490 msgid ""
9491 "The returned integer is the status.  See L<fsck(8)> for the list of status "
9492 "codes from C<fsck>."
9493 msgstr ""
9494
9495 #. type: textblock
9496 #: ../src/guestfs-actions.pod:1923 ../fish/guestfish-actions.pod:1293
9497 msgid "Multiple status codes can be summed together."
9498 msgstr ""
9499
9500 #. type: textblock
9501 #: ../src/guestfs-actions.pod:1927 ../fish/guestfish-actions.pod:1297
9502 msgid ""
9503 "A non-zero return code can mean \"success\", for example if errors have been"
9504 " corrected on the filesystem."
9505 msgstr ""
9506
9507 #. type: textblock
9508 #: ../src/guestfs-actions.pod:1932 ../fish/guestfish-actions.pod:1302
9509 msgid "Checking or repairing NTFS volumes is not supported (by linux-ntfs)."
9510 msgstr ""
9511
9512 #. type: textblock
9513 #: ../src/guestfs-actions.pod:1937 ../fish/guestfish-actions.pod:1307
9514 msgid ""
9515 "This command is entirely equivalent to running C<fsck -a -t fstype device>."
9516 msgstr ""
9517
9518 #. type: textblock
9519 #: ../src/guestfs-actions.pod:1941 ../src/guestfs-actions.pod:7768
9520 msgid "(Added in 1.0.16)"
9521 msgstr ""
9522
9523 #. type: =head2
9524 #: ../src/guestfs-actions.pod:1943
9525 msgid "guestfs_get_append"
9526 msgstr ""
9527
9528 #. type: verbatim
9529 #: ../src/guestfs-actions.pod:1945
9530 #, no-wrap
9531 msgid ""
9532 " const char *\n"
9533 " guestfs_get_append (guestfs_h *g);\n"
9534 "\n"
9535 msgstr ""
9536
9537 #. type: textblock
9538 #: ../src/guestfs-actions.pod:1948 ../fish/guestfish-actions.pod:1313
9539 msgid ""
9540 "Return the additional kernel options which are added to the guest kernel "
9541 "command line."
9542 msgstr ""
9543
9544 #. type: textblock
9545 #: ../src/guestfs-actions.pod:1951 ../fish/guestfish-actions.pod:1316
9546 msgid "If C<NULL> then no options are added."
9547 msgstr ""
9548
9549 #. type: textblock
9550 #: ../src/guestfs-actions.pod:1953
9551 msgid ""
9552 "This function returns a string which may be NULL.  There is no way to return"
9553 " an error from this function.  The string is owned by the guest handle and "
9554 "must I<not> be freed."
9555 msgstr ""
9556
9557 #. type: textblock
9558 #: ../src/guestfs-actions.pod:1957 ../src/guestfs-actions.pod:5679
9559 #: ../src/guestfs-actions.pod:6161 ../src/guestfs-actions.pod:6601
9560 #: ../src/guestfs-actions.pod:6620 ../src/guestfs-actions.pod:6636
9561 #: ../src/guestfs-actions.pod:6660 ../src/guestfs-actions.pod:7414
9562 #: ../src/guestfs-actions.pod:7429 ../src/guestfs-actions.pod:7811
9563 msgid "(Added in 1.0.26)"
9564 msgstr ""
9565
9566 #. type: =head2
9567 #: ../src/guestfs-actions.pod:1959
9568 msgid "guestfs_get_attach_method"
9569 msgstr ""
9570
9571 #. type: verbatim
9572 #: ../src/guestfs-actions.pod:1961
9573 #, no-wrap
9574 msgid ""
9575 " char *\n"
9576 " guestfs_get_attach_method (guestfs_h *g);\n"
9577 "\n"
9578 msgstr ""
9579
9580 #. type: textblock
9581 #: ../src/guestfs-actions.pod:1964
9582 msgid "Return the current attach method.  See C<guestfs_set_attach_method>."
9583 msgstr ""
9584
9585 #. type: textblock
9586 #: ../src/guestfs-actions.pod:1969 ../src/guestfs-actions.pod:6191
9587 msgid "(Added in 1.9.8)"
9588 msgstr ""
9589
9590 #. type: =head2
9591 #: ../src/guestfs-actions.pod:1971
9592 msgid "guestfs_get_autosync"
9593 msgstr ""
9594
9595 #. type: verbatim
9596 #: ../src/guestfs-actions.pod:1973
9597 #, no-wrap
9598 msgid ""
9599 " int\n"
9600 " guestfs_get_autosync (guestfs_h *g);\n"
9601 "\n"
9602 msgstr ""
9603
9604 #. type: textblock
9605 #: ../src/guestfs-actions.pod:1976 ../fish/guestfish-actions.pod:1328
9606 msgid "Get the autosync flag."
9607 msgstr ""
9608
9609 #. type: =head2
9610 #: ../src/guestfs-actions.pod:1982
9611 msgid "guestfs_get_direct"
9612 msgstr ""
9613
9614 #. type: verbatim
9615 #: ../src/guestfs-actions.pod:1984
9616 #, no-wrap
9617 msgid ""
9618 " int\n"
9619 " guestfs_get_direct (guestfs_h *g);\n"
9620 "\n"
9621 msgstr ""
9622
9623 #. type: textblock
9624 #: ../src/guestfs-actions.pod:1987 ../fish/guestfish-actions.pod:1334
9625 msgid "Return the direct appliance mode flag."
9626 msgstr ""
9627
9628 #. type: textblock
9629 #: ../src/guestfs-actions.pod:1991 ../src/guestfs-actions.pod:6232
9630 msgid "(Added in 1.0.72)"
9631 msgstr ""
9632
9633 #. type: =head2
9634 #: ../src/guestfs-actions.pod:1993
9635 msgid "guestfs_get_e2label"
9636 msgstr ""
9637
9638 #. type: verbatim
9639 #: ../src/guestfs-actions.pod:1995
9640 #, no-wrap
9641 msgid ""
9642 " char *\n"
9643 " guestfs_get_e2label (guestfs_h *g,\n"
9644 "                      const char *device);\n"
9645 "\n"
9646 msgstr ""
9647
9648 #. type: textblock
9649 #: ../src/guestfs-actions.pod:1999 ../fish/guestfish-actions.pod:1340
9650 msgid ""
9651 "This returns the ext2/3/4 filesystem label of the filesystem on C<device>."
9652 msgstr ""
9653
9654 #. type: textblock
9655 #: ../src/guestfs-actions.pod:2005 ../fish/guestfish-actions.pod:1343
9656 msgid ""
9657 "This function is deprecated.  In new code, use the C<vfs_label> call "
9658 "instead."
9659 msgstr ""
9660
9661 #. type: textblock
9662 #: ../src/guestfs-actions.pod:2012 ../src/guestfs-actions.pod:2033
9663 #: ../src/guestfs-actions.pod:6250 ../src/guestfs-actions.pod:6269
9664 msgid "(Added in 1.0.15)"
9665 msgstr ""
9666
9667 #. type: =head2
9668 #: ../src/guestfs-actions.pod:2014
9669 msgid "guestfs_get_e2uuid"
9670 msgstr ""
9671
9672 #. type: verbatim
9673 #: ../src/guestfs-actions.pod:2016
9674 #, no-wrap
9675 msgid ""
9676 " char *\n"
9677 " guestfs_get_e2uuid (guestfs_h *g,\n"
9678 "                     const char *device);\n"
9679 "\n"
9680 msgstr ""
9681
9682 #. type: textblock
9683 #: ../src/guestfs-actions.pod:2020 ../fish/guestfish-actions.pod:1354
9684 msgid ""
9685 "This returns the ext2/3/4 filesystem UUID of the filesystem on C<device>."
9686 msgstr ""
9687
9688 #. type: textblock
9689 #: ../src/guestfs-actions.pod:2026 ../fish/guestfish-actions.pod:1357
9690 msgid ""
9691 "This function is deprecated.  In new code, use the C<vfs_uuid> call instead."
9692 msgstr ""
9693
9694 #. type: =head2
9695 #: ../src/guestfs-actions.pod:2035
9696 msgid "guestfs_get_memsize"
9697 msgstr ""
9698
9699 #. type: verbatim
9700 #: ../src/guestfs-actions.pod:2037
9701 #, no-wrap
9702 msgid ""
9703 " int\n"
9704 " guestfs_get_memsize (guestfs_h *g);\n"
9705 "\n"
9706 msgstr ""
9707
9708 #. type: textblock
9709 #: ../src/guestfs-actions.pod:2040 ../fish/guestfish-actions.pod:1368
9710 msgid ""
9711 "This gets the memory size in megabytes allocated to the qemu subprocess."
9712 msgstr ""
9713
9714 #. type: textblock
9715 #: ../src/guestfs-actions.pod:2043
9716 msgid ""
9717 "If C<guestfs_set_memsize> was not called on this handle, and if "
9718 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default"
9719 " value for memsize."
9720 msgstr ""
9721
9722 #. type: textblock
9723 #: ../src/guestfs-actions.pod:2047 ../src/guestfs-actions.pod:2137
9724 #: ../src/guestfs-actions.pod:6285 ../src/guestfs-actions.pod:6409
9725 #: ../fish/guestfish-actions.pod:1375 ../fish/guestfish-actions.pod:1432
9726 #: ../fish/guestfish-actions.pod:4157 ../fish/guestfish-actions.pod:4259
9727 msgid ""
9728 "For more information on the architecture of libguestfs, see L<guestfs(3)>."
9729 msgstr ""
9730
9731 #. type: textblock
9732 #: ../src/guestfs-actions.pod:2052 ../src/guestfs-actions.pod:4588
9733 #: ../src/guestfs-actions.pod:4797 ../src/guestfs-actions.pod:4816
9734 #: ../src/guestfs-actions.pod:4835 ../src/guestfs-actions.pod:4847
9735 #: ../src/guestfs-actions.pod:4864 ../src/guestfs-actions.pod:4877
9736 #: ../src/guestfs-actions.pod:5904 ../src/guestfs-actions.pod:6290
9737 #: ../src/guestfs-actions.pod:6568 ../src/guestfs-actions.pod:7183
9738 msgid "(Added in 1.0.55)"
9739 msgstr ""
9740
9741 #. type: =head2
9742 #: ../src/guestfs-actions.pod:2054
9743 msgid "guestfs_get_network"
9744 msgstr ""
9745
9746 #. type: verbatim
9747 #: ../src/guestfs-actions.pod:2056
9748 #, no-wrap
9749 msgid ""
9750 " int\n"
9751 " guestfs_get_network (guestfs_h *g);\n"
9752 "\n"
9753 msgstr ""
9754
9755 #. type: textblock
9756 #: ../src/guestfs-actions.pod:2059 ../fish/guestfish-actions.pod:1382
9757 msgid "This returns the enable network flag."
9758 msgstr ""
9759
9760 #. type: textblock
9761 #: ../src/guestfs-actions.pod:2063 ../src/guestfs-actions.pod:6309
9762 msgid "(Added in 1.5.4)"
9763 msgstr ""
9764
9765 #. type: =head2
9766 #: ../src/guestfs-actions.pod:2065
9767 msgid "guestfs_get_path"
9768 msgstr ""
9769
9770 #. type: verbatim
9771 #: ../src/guestfs-actions.pod:2067
9772 #, no-wrap
9773 msgid ""
9774 " const char *\n"
9775 " guestfs_get_path (guestfs_h *g);\n"
9776 "\n"
9777 msgstr ""
9778
9779 #. type: textblock
9780 #: ../src/guestfs-actions.pod:2070 ../fish/guestfish-actions.pod:1388
9781 msgid "Return the current search path."
9782 msgstr ""
9783
9784 #. type: textblock
9785 #: ../src/guestfs-actions.pod:2072 ../fish/guestfish-actions.pod:1390
9786 msgid ""
9787 "This is always non-NULL.  If it wasn't set already, then this will return "
9788 "the default path."
9789 msgstr ""
9790
9791 #. type: textblock
9792 #: ../src/guestfs-actions.pod:2075 ../src/guestfs-actions.pod:2113
9793 msgid ""
9794 "This function returns a string, or NULL on error.  The string is owned by "
9795 "the guest handle and must I<not> be freed."
9796 msgstr ""
9797
9798 #. type: =head2
9799 #: ../src/guestfs-actions.pod:2080
9800 msgid "guestfs_get_pgroup"
9801 msgstr ""
9802
9803 #. type: verbatim
9804 #: ../src/guestfs-actions.pod:2082
9805 #, no-wrap
9806 msgid ""
9807 " int\n"
9808 " guestfs_get_pgroup (guestfs_h *g);\n"
9809 "\n"
9810 msgstr ""
9811
9812 #. type: textblock
9813 #: ../src/guestfs-actions.pod:2085 ../fish/guestfish-actions.pod:1397
9814 msgid "This returns the process group flag."
9815 msgstr ""
9816
9817 #. type: =head2
9818 #: ../src/guestfs-actions.pod:2089
9819 msgid "guestfs_get_pid"
9820 msgstr ""
9821
9822 #. type: verbatim
9823 #: ../src/guestfs-actions.pod:2091
9824 #, no-wrap
9825 msgid ""
9826 " int\n"
9827 " guestfs_get_pid (guestfs_h *g);\n"
9828 "\n"
9829 msgstr ""
9830
9831 #. type: textblock
9832 #: ../src/guestfs-actions.pod:2094 ../fish/guestfish-actions.pod:1405
9833 msgid ""
9834 "Return the process ID of the qemu subprocess.  If there is no qemu "
9835 "subprocess, then this will return an error."
9836 msgstr ""
9837
9838 #. type: textblock
9839 #: ../src/guestfs-actions.pod:2097 ../fish/guestfish-actions.pod:1408
9840 msgid "This is an internal call used for debugging and testing."
9841 msgstr ""
9842
9843 #. type: textblock
9844 #: ../src/guestfs-actions.pod:2101
9845 msgid "(Added in 1.0.56)"
9846 msgstr ""
9847
9848 #. type: =head2
9849 #: ../src/guestfs-actions.pod:2103
9850 msgid "guestfs_get_qemu"
9851 msgstr ""
9852
9853 #. type: verbatim
9854 #: ../src/guestfs-actions.pod:2105
9855 #, no-wrap
9856 msgid ""
9857 " const char *\n"
9858 " guestfs_get_qemu (guestfs_h *g);\n"
9859 "\n"
9860 msgstr ""
9861
9862 #. type: textblock
9863 #: ../src/guestfs-actions.pod:2108 ../fish/guestfish-actions.pod:1414
9864 msgid "Return the current qemu binary."
9865 msgstr ""
9866
9867 #. type: textblock
9868 #: ../src/guestfs-actions.pod:2110 ../fish/guestfish-actions.pod:1416
9869 msgid ""
9870 "This is always non-NULL.  If it wasn't set already, then this will return "
9871 "the default qemu binary name."
9872 msgstr ""
9873
9874 #. type: textblock
9875 #: ../src/guestfs-actions.pod:2116 ../src/guestfs-actions.pod:6371
9876 msgid "(Added in 1.0.6)"
9877 msgstr ""
9878
9879 #. type: =head2
9880 #: ../src/guestfs-actions.pod:2118
9881 msgid "guestfs_get_recovery_proc"
9882 msgstr ""
9883
9884 #. type: verbatim
9885 #: ../src/guestfs-actions.pod:2120
9886 #, no-wrap
9887 msgid ""
9888 " int\n"
9889 " guestfs_get_recovery_proc (guestfs_h *g);\n"
9890 "\n"
9891 msgstr ""
9892
9893 #. type: textblock
9894 #: ../src/guestfs-actions.pod:2123 ../fish/guestfish-actions.pod:1423
9895 msgid "Return the recovery process enabled flag."
9896 msgstr ""
9897
9898 #. type: textblock
9899 #: ../src/guestfs-actions.pod:2127 ../src/guestfs-actions.pod:3661
9900 #: ../src/guestfs-actions.pod:3992 ../src/guestfs-actions.pod:4395
9901 #: ../src/guestfs-actions.pod:4427 ../src/guestfs-actions.pod:5609
9902 #: ../src/guestfs-actions.pod:5952 ../src/guestfs-actions.pod:6395
9903 #: ../src/guestfs-actions.pod:7086 ../src/guestfs-actions.pod:7106
9904 #: ../src/guestfs-actions.pod:7298
9905 msgid "(Added in 1.0.77)"
9906 msgstr ""
9907
9908 #. type: =head2
9909 #: ../src/guestfs-actions.pod:2129
9910 msgid "guestfs_get_selinux"
9911 msgstr ""
9912
9913 #. type: verbatim
9914 #: ../src/guestfs-actions.pod:2131
9915 #, no-wrap
9916 msgid ""
9917 " int\n"
9918 " guestfs_get_selinux (guestfs_h *g);\n"
9919 "\n"
9920 msgstr ""
9921
9922 #. type: textblock
9923 #: ../src/guestfs-actions.pod:2134
9924 msgid ""
9925 "This returns the current setting of the selinux flag which is passed to the "
9926 "appliance at boot time.  See C<guestfs_set_selinux>."
9927 msgstr ""
9928
9929 #. type: textblock
9930 #: ../src/guestfs-actions.pod:2142 ../src/guestfs-actions.pod:2205
9931 #: ../src/guestfs-actions.pod:6414 ../src/guestfs-actions.pod:6472
9932 msgid "(Added in 1.0.67)"
9933 msgstr ""
9934
9935 #. type: =head2
9936 #: ../src/guestfs-actions.pod:2144
9937 msgid "guestfs_get_state"
9938 msgstr ""
9939
9940 #. type: verbatim
9941 #: ../src/guestfs-actions.pod:2146
9942 #, no-wrap
9943 msgid ""
9944 " int\n"
9945 " guestfs_get_state (guestfs_h *g);\n"
9946 "\n"
9947 msgstr ""
9948
9949 #. type: textblock
9950 #: ../src/guestfs-actions.pod:2149 ../fish/guestfish-actions.pod:1439
9951 msgid ""
9952 "This returns the current state as an opaque integer.  This is only useful "
9953 "for printing debug and internal error messages."
9954 msgstr ""
9955
9956 #. type: textblock
9957 #: ../src/guestfs-actions.pod:2152 ../src/guestfs-actions.pod:3432
9958 #: ../src/guestfs-actions.pod:3461 ../src/guestfs-actions.pod:3522
9959 #: ../src/guestfs-actions.pod:3549 ../fish/guestfish-actions.pod:1442
9960 #: ../fish/guestfish-actions.pod:2362 ../fish/guestfish-actions.pod:2380
9961 #: ../fish/guestfish-actions.pod:2418 ../fish/guestfish-actions.pod:2434
9962 msgid "For more information on states, see L<guestfs(3)>."
9963 msgstr ""
9964
9965 #. type: =head2
9966 #: ../src/guestfs-actions.pod:2158
9967 msgid "guestfs_get_trace"
9968 msgstr ""
9969
9970 #. type: verbatim
9971 #: ../src/guestfs-actions.pod:2160
9972 #, no-wrap
9973 msgid ""
9974 " int\n"
9975 " guestfs_get_trace (guestfs_h *g);\n"
9976 "\n"
9977 msgstr ""
9978
9979 #. type: textblock
9980 #: ../src/guestfs-actions.pod:2163 ../fish/guestfish-actions.pod:1448
9981 msgid "Return the command trace flag."
9982 msgstr ""
9983
9984 #. type: =head2
9985 #: ../src/guestfs-actions.pod:2169
9986 msgid "guestfs_get_umask"
9987 msgstr ""
9988
9989 #. type: verbatim
9990 #: ../src/guestfs-actions.pod:2171
9991 #, no-wrap
9992 msgid ""
9993 " int\n"
9994 " guestfs_get_umask (guestfs_h *g);\n"
9995 "\n"
9996 msgstr ""
9997
9998 #. type: textblock
9999 #: ../src/guestfs-actions.pod:2174
10000 msgid ""
10001 "Return the current umask.  By default the umask is C<022> unless it has been"
10002 " set by calling C<guestfs_umask>."
10003 msgstr ""
10004
10005 #. type: =head2
10006 #: ../src/guestfs-actions.pod:2181
10007 msgid "guestfs_get_verbose"
10008 msgstr ""
10009
10010 #. type: verbatim
10011 #: ../src/guestfs-actions.pod:2183
10012 #, no-wrap
10013 msgid ""
10014 " int\n"
10015 " guestfs_get_verbose (guestfs_h *g);\n"
10016 "\n"
10017 msgstr ""
10018
10019 #. type: textblock
10020 #: ../src/guestfs-actions.pod:2186 ../fish/guestfish-actions.pod:1461
10021 msgid "This returns the verbose messages flag."
10022 msgstr ""
10023
10024 #. type: =head2
10025 #: ../src/guestfs-actions.pod:2192
10026 msgid "guestfs_getcon"
10027 msgstr ""
10028
10029 #. type: verbatim
10030 #: ../src/guestfs-actions.pod:2194
10031 #, no-wrap
10032 msgid ""
10033 " char *\n"
10034 " guestfs_getcon (guestfs_h *g);\n"
10035 "\n"
10036 msgstr ""
10037
10038 #. type: textblock
10039 #: ../src/guestfs-actions.pod:2197 ../fish/guestfish-actions.pod:1467
10040 msgid "This gets the SELinux security context of the daemon."
10041 msgstr ""
10042
10043 #. type: textblock
10044 #: ../src/guestfs-actions.pod:2199
10045 msgid ""
10046 "See the documentation about SELINUX in L<guestfs(3)>, and C<guestfs_setcon>"
10047 msgstr ""
10048
10049 #. type: =head2
10050 #: ../src/guestfs-actions.pod:2207
10051 msgid "guestfs_getxattr"
10052 msgstr ""
10053
10054 #. type: verbatim
10055 #: ../src/guestfs-actions.pod:2209
10056 #, no-wrap
10057 msgid ""
10058 " char *\n"
10059 " guestfs_getxattr (guestfs_h *g,\n"
10060 "                   const char *path,\n"
10061 "                   const char *name,\n"
10062 "                   size_t *size_r);\n"
10063 "\n"
10064 msgstr ""
10065
10066 #. type: textblock
10067 #: ../src/guestfs-actions.pod:2215
10068 msgid ""
10069 "Get a single extended attribute from file C<path> named C<name>.  This call "
10070 "follows symlinks.  If you want to lookup an extended attribute for the "
10071 "symlink itself, use C<guestfs_lgetxattr>."
10072 msgstr ""
10073
10074 #. type: textblock
10075 #: ../src/guestfs-actions.pod:2219 ../src/guestfs-actions.pod:3675
10076 msgid ""
10077 "Normally it is better to get all extended attributes from a file in one go "
10078 "by calling C<guestfs_getxattrs>.  However some Linux filesystem "
10079 "implementations are buggy and do not provide a way to list out attributes.  "
10080 "For these filesystems (notably ntfs-3g)  you have to know the names of the "
10081 "extended attributes you want in advance and call this function."
10082 msgstr ""
10083
10084 #. type: textblock
10085 #: ../src/guestfs-actions.pod:2226 ../src/guestfs-actions.pod:3682
10086 #: ../fish/guestfish-actions.pod:1487 ../fish/guestfish-actions.pod:2514
10087 msgid ""
10088 "Extended attribute values are blobs of binary data.  If there is no extended"
10089 " attribute named C<name>, this returns an error."
10090 msgstr ""
10091
10092 #. type: textblock
10093 #: ../src/guestfs-actions.pod:2229
10094 msgid "See also: C<guestfs_getxattrs>, C<guestfs_lgetxattr>, L<attr(5)>."
10095 msgstr ""
10096
10097 #. type: textblock
10098 #: ../src/guestfs-actions.pod:2231 ../src/guestfs-actions.pod:2422
10099 #: ../src/guestfs-actions.pod:2892 ../src/guestfs-actions.pod:3687
10100 #: ../src/guestfs-actions.pod:5602 ../src/guestfs-actions.pod:5628
10101 #: ../src/guestfs-actions.pod:5809
10102 msgid ""
10103 "This function returns a buffer, or NULL on error.  The size of the returned "
10104 "buffer is written to C<*size_r>.  I<The caller must free the returned buffer"
10105 " after use>."
10106 msgstr ""
10107
10108 #. type: textblock
10109 #: ../src/guestfs-actions.pod:2235 ../src/guestfs-actions.pod:3691
10110 msgid "(Added in 1.7.24)"
10111 msgstr ""
10112
10113 #. type: =head2
10114 #: ../src/guestfs-actions.pod:2237
10115 msgid "guestfs_getxattrs"
10116 msgstr ""
10117
10118 #. type: verbatim
10119 #: ../src/guestfs-actions.pod:2239
10120 #, no-wrap
10121 msgid ""
10122 " struct guestfs_xattr_list *\n"
10123 " guestfs_getxattrs (guestfs_h *g,\n"
10124 "                    const char *path);\n"
10125 "\n"
10126 msgstr ""
10127
10128 #. type: textblock
10129 #: ../src/guestfs-actions.pod:2243 ../fish/guestfish-actions.pod:1496
10130 msgid ""
10131 "This call lists the extended attributes of the file or directory C<path>."
10132 msgstr ""
10133
10134 #. type: textblock
10135 #: ../src/guestfs-actions.pod:2246 ../fish/guestfish-actions.pod:1499
10136 msgid ""
10137 "At the system call level, this is a combination of the L<listxattr(2)> and "
10138 "L<getxattr(2)> calls."
10139 msgstr ""
10140
10141 #. type: textblock
10142 #: ../src/guestfs-actions.pod:2249
10143 msgid "See also: C<guestfs_lgetxattrs>, L<attr(5)>."
10144 msgstr ""
10145
10146 #. type: textblock
10147 #: ../src/guestfs-actions.pod:2251 ../src/guestfs-actions.pod:3703
10148 #: ../src/guestfs-actions.pod:4391
10149 msgid ""
10150 "This function returns a C<struct guestfs_xattr_list *>, or NULL if there was"
10151 " an error.  I<The caller must call C<guestfs_free_xattr_list> after use>."
10152 msgstr ""
10153
10154 #. type: textblock
10155 #: ../src/guestfs-actions.pod:2255 ../src/guestfs-actions.pod:3707
10156 #: ../src/guestfs-actions.pod:3906 ../src/guestfs-actions.pod:3942
10157 #: ../src/guestfs-actions.pod:5982 ../src/guestfs-actions.pod:6491
10158 #: ../src/guestfs-actions.pod:7876
10159 msgid "(Added in 1.0.59)"
10160 msgstr ""
10161
10162 #. type: =head2
10163 #: ../src/guestfs-actions.pod:2257
10164 msgid "guestfs_glob_expand"
10165 msgstr ""
10166
10167 #. type: verbatim
10168 #: ../src/guestfs-actions.pod:2259
10169 #, no-wrap
10170 msgid ""
10171 " char **\n"
10172 " guestfs_glob_expand (guestfs_h *g,\n"
10173 "                      const char *pattern);\n"
10174 "\n"
10175 msgstr ""
10176
10177 #. type: textblock
10178 #: ../src/guestfs-actions.pod:2263 ../fish/guestfish-actions.pod:1508
10179 msgid ""
10180 "This command searches for all the pathnames matching C<pattern> according to"
10181 " the wildcard expansion rules used by the shell."
10182 msgstr ""
10183
10184 #. type: textblock
10185 #: ../src/guestfs-actions.pod:2267 ../fish/guestfish-actions.pod:1512
10186 msgid ""
10187 "If no paths match, then this returns an empty list (note: not an error)."
10188 msgstr ""
10189
10190 #. type: textblock
10191 #: ../src/guestfs-actions.pod:2270 ../fish/guestfish-actions.pod:1515
10192 msgid ""
10193 "It is just a wrapper around the C L<glob(3)> function with flags "
10194 "C<GLOB_MARK|GLOB_BRACE>.  See that manual page for more details."
10195 msgstr ""
10196
10197 #. type: textblock
10198 #: ../src/guestfs-actions.pod:2278 ../src/guestfs-actions.pod:6684
10199 #: ../src/guestfs-actions.pod:6701
10200 msgid "(Added in 1.0.50)"
10201 msgstr ""
10202
10203 #. type: =head2
10204 #: ../src/guestfs-actions.pod:2280
10205 msgid "guestfs_grep"
10206 msgstr ""
10207
10208 #. type: verbatim
10209 #: ../src/guestfs-actions.pod:2282
10210 #, no-wrap
10211 msgid ""
10212 " char **\n"
10213 " guestfs_grep (guestfs_h *g,\n"
10214 "               const char *regex,\n"
10215 "               const char *path);\n"
10216 "\n"
10217 msgstr ""
10218
10219 #. type: textblock
10220 #: ../src/guestfs-actions.pod:2287 ../fish/guestfish-actions.pod:1523
10221 msgid ""
10222 "This calls the external C<grep> program and returns the matching lines."
10223 msgstr ""
10224
10225 #. type: =head2
10226 #: ../src/guestfs-actions.pod:2299
10227 msgid "guestfs_grepi"
10228 msgstr ""
10229
10230 #. type: verbatim
10231 #: ../src/guestfs-actions.pod:2301
10232 #, no-wrap
10233 msgid ""
10234 " char **\n"
10235 " guestfs_grepi (guestfs_h *g,\n"
10236 "                const char *regex,\n"
10237 "                const char *path);\n"
10238 "\n"
10239 msgstr ""
10240
10241 #. type: textblock
10242 #: ../src/guestfs-actions.pod:2306 ../fish/guestfish-actions.pod:1533
10243 msgid ""
10244 "This calls the external C<grep -i> program and returns the matching lines."
10245 msgstr ""
10246
10247 #. type: =head2
10248 #: ../src/guestfs-actions.pod:2318
10249 msgid "guestfs_grub_install"
10250 msgstr ""
10251
10252 #. type: verbatim
10253 #: ../src/guestfs-actions.pod:2320
10254 #, no-wrap
10255 msgid ""
10256 " int\n"
10257 " guestfs_grub_install (guestfs_h *g,\n"
10258 "                       const char *root,\n"
10259 "                       const char *device);\n"
10260 "\n"
10261 msgstr ""
10262
10263 #. type: textblock
10264 #: ../src/guestfs-actions.pod:2325 ../fish/guestfish-actions.pod:1543
10265 msgid ""
10266 "This command installs GRUB (the Grand Unified Bootloader) on C<device>, with"
10267 " the root directory being C<root>."
10268 msgstr ""
10269
10270 #. type: textblock
10271 #: ../src/guestfs-actions.pod:2328 ../fish/guestfish-actions.pod:1546
10272 msgid ""
10273 "Note: If grub-install reports the error \"No suitable drive was found in the"
10274 " generated device map.\" it may be that you need to create a "
10275 "C</boot/grub/device.map> file first that contains the mapping between grub "
10276 "device names and Linux device names.  It is usually sufficient to create a "
10277 "file containing:"
10278 msgstr ""
10279
10280 #. type: verbatim
10281 #: ../src/guestfs-actions.pod:2335 ../fish/guestfish-actions.pod:1553
10282 #, no-wrap
10283 msgid ""
10284 " (hd0) /dev/vda\n"
10285 "\n"
10286 msgstr ""
10287
10288 #. type: textblock
10289 #: ../src/guestfs-actions.pod:2337 ../fish/guestfish-actions.pod:1555
10290 msgid "replacing C</dev/vda> with the name of the installation device."
10291 msgstr ""
10292
10293 #. type: textblock
10294 #: ../src/guestfs-actions.pod:2341
10295 msgid "(Added in 1.0.17)"
10296 msgstr ""
10297
10298 #. type: =head2
10299 #: ../src/guestfs-actions.pod:2343
10300 msgid "guestfs_head"
10301 msgstr ""
10302
10303 #. type: verbatim
10304 #: ../src/guestfs-actions.pod:2345
10305 #, no-wrap
10306 msgid ""
10307 " char **\n"
10308 " guestfs_head (guestfs_h *g,\n"
10309 "               const char *path);\n"
10310 "\n"
10311 msgstr ""
10312
10313 #. type: textblock
10314 #: ../src/guestfs-actions.pod:2349 ../fish/guestfish-actions.pod:1561
10315 msgid ""
10316 "This command returns up to the first 10 lines of a file as a list of "
10317 "strings."
10318 msgstr ""
10319
10320 #. type: =head2
10321 #: ../src/guestfs-actions.pod:2361
10322 msgid "guestfs_head_n"
10323 msgstr ""
10324
10325 #. type: verbatim
10326 #: ../src/guestfs-actions.pod:2363
10327 #, no-wrap
10328 msgid ""
10329 " char **\n"
10330 " guestfs_head_n (guestfs_h *g,\n"
10331 "                 int nrlines,\n"
10332 "                 const char *path);\n"
10333 "\n"
10334 msgstr ""
10335
10336 #. type: textblock
10337 #: ../src/guestfs-actions.pod:2368 ../fish/guestfish-actions.pod:1571
10338 msgid ""
10339 "If the parameter C<nrlines> is a positive number, this returns the first "
10340 "C<nrlines> lines of the file C<path>."
10341 msgstr ""
10342
10343 #. type: textblock
10344 #: ../src/guestfs-actions.pod:2371 ../fish/guestfish-actions.pod:1574
10345 msgid ""
10346 "If the parameter C<nrlines> is a negative number, this returns lines from "
10347 "the file C<path>, excluding the last C<nrlines> lines."
10348 msgstr ""
10349
10350 #. type: textblock
10351 #: ../src/guestfs-actions.pod:2374 ../src/guestfs-actions.pod:6981
10352 #: ../fish/guestfish-actions.pod:1577 ../fish/guestfish-actions.pod:4637
10353 msgid "If the parameter C<nrlines> is zero, this returns an empty list."
10354 msgstr ""
10355
10356 #. type: =head2
10357 #: ../src/guestfs-actions.pod:2385
10358 msgid "guestfs_hexdump"
10359 msgstr ""
10360
10361 #. type: verbatim
10362 #: ../src/guestfs-actions.pod:2387
10363 #, no-wrap
10364 msgid ""
10365 " char *\n"
10366 " guestfs_hexdump (guestfs_h *g,\n"
10367 "                  const char *path);\n"
10368 "\n"
10369 msgstr ""
10370
10371 #. type: textblock
10372 #: ../src/guestfs-actions.pod:2391 ../fish/guestfish-actions.pod:1586
10373 msgid ""
10374 "This runs C<hexdump -C> on the given C<path>.  The result is the human-"
10375 "readable, canonical hex dump of the file."
10376 msgstr ""
10377
10378 #. type: textblock
10379 #: ../src/guestfs-actions.pod:2400 ../src/guestfs-actions.pod:6765
10380 #: ../src/guestfs-actions.pod:6820
10381 msgid "(Added in 1.0.22)"
10382 msgstr ""
10383
10384 #. type: =head2
10385 #: ../src/guestfs-actions.pod:2402
10386 msgid "guestfs_initrd_cat"
10387 msgstr ""
10388
10389 #. type: verbatim
10390 #: ../src/guestfs-actions.pod:2404
10391 #, no-wrap
10392 msgid ""
10393 " char *\n"
10394 " guestfs_initrd_cat (guestfs_h *g,\n"
10395 "                     const char *initrdpath,\n"
10396 "                     const char *filename,\n"
10397 "                     size_t *size_r);\n"
10398 "\n"
10399 msgstr ""
10400
10401 #. type: textblock
10402 #: ../src/guestfs-actions.pod:2410 ../fish/guestfish-actions.pod:1596
10403 msgid ""
10404 "This command unpacks the file C<filename> from the initrd file called "
10405 "C<initrdpath>.  The filename must be given I<without> the initial C</> "
10406 "character."
10407 msgstr ""
10408
10409 #. type: textblock
10410 #: ../src/guestfs-actions.pod:2414 ../fish/guestfish-actions.pod:1600
10411 msgid ""
10412 "For example, in guestfish you could use the following command to examine the"
10413 " boot script (usually called C</init>)  contained in a Linux initrd or "
10414 "initramfs image:"
10415 msgstr ""
10416
10417 #. type: verbatim
10418 #: ../src/guestfs-actions.pod:2418 ../fish/guestfish-actions.pod:1604
10419 #, no-wrap
10420 msgid ""
10421 " initrd-cat /boot/initrd-<version>.img init\n"
10422 "\n"
10423 msgstr ""
10424
10425 #. type: textblock
10426 #: ../src/guestfs-actions.pod:2420
10427 msgid "See also C<guestfs_initrd_list>."
10428 msgstr ""
10429
10430 #. type: =head2
10431 #: ../src/guestfs-actions.pod:2431
10432 msgid "guestfs_initrd_list"
10433 msgstr ""
10434
10435 #. type: verbatim
10436 #: ../src/guestfs-actions.pod:2433
10437 #, no-wrap
10438 msgid ""
10439 " char **\n"
10440 " guestfs_initrd_list (guestfs_h *g,\n"
10441 "                      const char *path);\n"
10442 "\n"
10443 msgstr ""
10444
10445 #. type: textblock
10446 #: ../src/guestfs-actions.pod:2437 ../fish/guestfish-actions.pod:1615
10447 msgid "This command lists out files contained in an initrd."
10448 msgstr ""
10449
10450 #. type: textblock
10451 #: ../src/guestfs-actions.pod:2439 ../fish/guestfish-actions.pod:1617
10452 msgid ""
10453 "The files are listed without any initial C</> character.  The files are "
10454 "listed in the order they appear (not necessarily alphabetical).  Directory "
10455 "names are listed as separate items."
10456 msgstr ""
10457
10458 #. type: textblock
10459 #: ../src/guestfs-actions.pod:2443 ../fish/guestfish-actions.pod:1621
10460 msgid ""
10461 "Old Linux kernels (2.4 and earlier) used a compressed ext2 filesystem as "
10462 "initrd.  We I<only> support the newer initramfs format (compressed cpio "
10463 "files)."
10464 msgstr ""
10465
10466 #. type: =head2
10467 #: ../src/guestfs-actions.pod:2453
10468 msgid "guestfs_inotify_add_watch"
10469 msgstr ""
10470
10471 #. type: verbatim
10472 #: ../src/guestfs-actions.pod:2455
10473 #, no-wrap
10474 msgid ""
10475 " int64_t\n"
10476 " guestfs_inotify_add_watch (guestfs_h *g,\n"
10477 "                            const char *path,\n"
10478 "                            int mask);\n"
10479 "\n"
10480 msgstr ""
10481
10482 #. type: textblock
10483 #: ../src/guestfs-actions.pod:2460 ../fish/guestfish-actions.pod:1629
10484 msgid "Watch C<path> for the events listed in C<mask>."
10485 msgstr ""
10486
10487 #. type: textblock
10488 #: ../src/guestfs-actions.pod:2462 ../fish/guestfish-actions.pod:1631
10489 msgid ""
10490 "Note that if C<path> is a directory then events within that directory are "
10491 "watched, but this does I<not> happen recursively (in subdirectories)."
10492 msgstr ""
10493
10494 #. type: textblock
10495 #: ../src/guestfs-actions.pod:2466 ../fish/guestfish-actions.pod:1635
10496 msgid ""
10497 "Note for non-C or non-Linux callers: the inotify events are defined by the "
10498 "Linux kernel ABI and are listed in C</usr/include/sys/inotify.h>."
10499 msgstr ""
10500
10501 #. type: =head2
10502 #: ../src/guestfs-actions.pod:2474
10503 msgid "guestfs_inotify_close"
10504 msgstr ""
10505
10506 #. type: verbatim
10507 #: ../src/guestfs-actions.pod:2476
10508 #, no-wrap
10509 msgid ""
10510 " int\n"
10511 " guestfs_inotify_close (guestfs_h *g);\n"
10512 "\n"
10513 msgstr ""
10514
10515 #. type: textblock
10516 #: ../src/guestfs-actions.pod:2479 ../fish/guestfish-actions.pod:1643
10517 msgid ""
10518 "This closes the inotify handle which was previously opened by inotify_init."
10519 "  It removes all watches, throws away any pending events, and deallocates "
10520 "all resources."
10521 msgstr ""
10522
10523 #. type: =head2
10524 #: ../src/guestfs-actions.pod:2487
10525 msgid "guestfs_inotify_files"
10526 msgstr ""
10527
10528 #. type: verbatim
10529 #: ../src/guestfs-actions.pod:2489
10530 #, no-wrap
10531 msgid ""
10532 " char **\n"
10533 " guestfs_inotify_files (guestfs_h *g);\n"
10534 "\n"
10535 msgstr ""
10536
10537 #. type: textblock
10538 #: ../src/guestfs-actions.pod:2492
10539 msgid ""
10540 "This function is a helpful wrapper around C<guestfs_inotify_read> which just"
10541 " returns a list of pathnames of objects that were touched.  The returned "
10542 "pathnames are sorted and deduplicated."
10543 msgstr ""
10544
10545 #. type: =head2
10546 #: ../src/guestfs-actions.pod:2502
10547 msgid "guestfs_inotify_init"
10548 msgstr ""
10549
10550 #. type: verbatim
10551 #: ../src/guestfs-actions.pod:2504
10552 #, no-wrap
10553 msgid ""
10554 " int\n"
10555 " guestfs_inotify_init (guestfs_h *g,\n"
10556 "                       int maxevents);\n"
10557 "\n"
10558 msgstr ""
10559
10560 #. type: textblock
10561 #: ../src/guestfs-actions.pod:2508 ../fish/guestfish-actions.pod:1659
10562 msgid ""
10563 "This command creates a new inotify handle.  The inotify subsystem can be "
10564 "used to notify events which happen to objects in the guest filesystem."
10565 msgstr ""
10566
10567 #. type: textblock
10568 #: ../src/guestfs-actions.pod:2512
10569 msgid ""
10570 "C<maxevents> is the maximum number of events which will be queued up between"
10571 " calls to C<guestfs_inotify_read> or C<guestfs_inotify_files>.  If this is "
10572 "passed as C<0>, then the kernel (or previously set)  default is used.  For "
10573 "Linux 2.6.29 the default was 16384 events.  Beyond this limit, the kernel "
10574 "throws away events, but records the fact that it threw them away by setting "
10575 "a flag C<IN_Q_OVERFLOW> in the returned structure list (see "
10576 "C<guestfs_inotify_read>)."
10577 msgstr ""
10578
10579 #. type: textblock
10580 #: ../src/guestfs-actions.pod:2522
10581 msgid ""
10582 "Before any events are generated, you have to add some watches to the "
10583 "internal watch list.  See: C<guestfs_inotify_add_watch>, "
10584 "C<guestfs_inotify_rm_watch> and C<guestfs_inotify_watch_all>."
10585 msgstr ""
10586
10587 #. type: textblock
10588 #: ../src/guestfs-actions.pod:2528
10589 msgid ""
10590 "Queued up events should be read periodically by calling "
10591 "C<guestfs_inotify_read> (or C<guestfs_inotify_files> which is just a helpful"
10592 " wrapper around C<guestfs_inotify_read>).  If you don't read the events out "
10593 "often enough then you risk the internal queue overflowing."
10594 msgstr ""
10595
10596 #. type: textblock
10597 #: ../src/guestfs-actions.pod:2535
10598 msgid ""
10599 "The handle should be closed after use by calling C<guestfs_inotify_close>.  "
10600 "This also removes any watches automatically."
10601 msgstr ""
10602
10603 #. type: textblock
10604 #: ../src/guestfs-actions.pod:2539 ../fish/guestfish-actions.pod:1690
10605 msgid ""
10606 "See also L<inotify(7)> for an overview of the inotify interface as exposed "
10607 "by the Linux kernel, which is roughly what we expose via libguestfs.  Note "
10608 "that there is one global inotify handle per libguestfs instance."
10609 msgstr ""
10610
10611 #. type: =head2
10612 #: ../src/guestfs-actions.pod:2548
10613 msgid "guestfs_inotify_read"
10614 msgstr ""
10615
10616 #. type: verbatim
10617 #: ../src/guestfs-actions.pod:2550
10618 #, no-wrap
10619 msgid ""
10620 " struct guestfs_inotify_event_list *\n"
10621 " guestfs_inotify_read (guestfs_h *g);\n"
10622 "\n"
10623 msgstr ""
10624
10625 #. type: textblock
10626 #: ../src/guestfs-actions.pod:2553 ../fish/guestfish-actions.pod:1699
10627 msgid ""
10628 "Return the complete queue of events that have happened since the previous "
10629 "read call."
10630 msgstr ""
10631
10632 #. type: textblock
10633 #: ../src/guestfs-actions.pod:2556 ../fish/guestfish-actions.pod:1702
10634 msgid "If no events have happened, this returns an empty list."
10635 msgstr ""
10636
10637 #. type: textblock
10638 #: ../src/guestfs-actions.pod:2558 ../fish/guestfish-actions.pod:1704
10639 msgid ""
10640 "I<Note>: In order to make sure that all events have been read, you must call"
10641 " this function repeatedly until it returns an empty list.  The reason is "
10642 "that the call will read events up to the maximum appliance-to-host message "
10643 "size and leave remaining events in the queue."
10644 msgstr ""
10645
10646 #. type: textblock
10647 #: ../src/guestfs-actions.pod:2564
10648 msgid ""
10649 "This function returns a C<struct guestfs_inotify_event_list *>, or NULL if "
10650 "there was an error.  I<The caller must call "
10651 "C<guestfs_free_inotify_event_list> after use>."
10652 msgstr ""
10653
10654 #. type: =head2
10655 #: ../src/guestfs-actions.pod:2570
10656 msgid "guestfs_inotify_rm_watch"
10657 msgstr ""
10658
10659 #. type: verbatim
10660 #: ../src/guestfs-actions.pod:2572
10661 #, no-wrap
10662 msgid ""
10663 " int\n"
10664 " guestfs_inotify_rm_watch (guestfs_h *g,\n"
10665 "                           int wd);\n"
10666 "\n"
10667 msgstr ""
10668
10669 #. type: textblock
10670 #: ../src/guestfs-actions.pod:2576
10671 msgid ""
10672 "Remove a previously defined inotify watch.  See "
10673 "C<guestfs_inotify_add_watch>."
10674 msgstr ""
10675
10676 #. type: =head2
10677 #: ../src/guestfs-actions.pod:2583
10678 msgid "guestfs_inspect_get_arch"
10679 msgstr ""
10680
10681 #. type: verbatim
10682 #: ../src/guestfs-actions.pod:2585
10683 #, no-wrap
10684 msgid ""
10685 " char *\n"
10686 " guestfs_inspect_get_arch (guestfs_h *g,\n"
10687 "                           const char *root);\n"
10688 "\n"
10689 msgstr ""
10690
10691 #. type: textblock
10692 #: ../src/guestfs-actions.pod:2589
10693 msgid ""
10694 "This returns the architecture of the inspected operating system.  The "
10695 "possible return values are listed under C<guestfs_file_architecture>."
10696 msgstr ""
10697
10698 #. type: textblock
10699 #: ../src/guestfs-actions.pod:2593 ../fish/guestfish-actions.pod:1725
10700 msgid ""
10701 "If the architecture could not be determined, then the string C<unknown> is "
10702 "returned."
10703 msgstr ""
10704
10705 #. type: textblock
10706 #: ../src/guestfs-actions.pod:2596 ../src/guestfs-actions.pod:2686
10707 #: ../src/guestfs-actions.pod:2790 ../src/guestfs-actions.pod:2809
10708 #: ../src/guestfs-actions.pod:2940 ../src/guestfs-actions.pod:3023
10709 #: ../src/guestfs-actions.pod:3051 ../src/guestfs-actions.pod:3072
10710 #: ../src/guestfs-actions.pod:3125 ../src/guestfs-actions.pod:3165
10711 #: ../src/guestfs-actions.pod:3185 ../src/guestfs-actions.pod:3205
10712 #: ../src/guestfs-actions.pod:3222 ../src/guestfs-actions.pod:3238
10713 #: ../src/guestfs-actions.pod:3256 ../src/guestfs-actions.pod:3358
10714 #: ../src/guestfs-actions.pod:3399 ../fish/guestfish-actions.pod:1728
10715 #: ../fish/guestfish-actions.pod:1811 ../fish/guestfish-actions.pod:1890
10716 #: ../fish/guestfish-actions.pod:1902 ../fish/guestfish-actions.pod:1986
10717 #: ../fish/guestfish-actions.pod:2047 ../fish/guestfish-actions.pod:2068
10718 #: ../fish/guestfish-actions.pod:2082 ../fish/guestfish-actions.pod:2122
10719 #: ../fish/guestfish-actions.pod:2154 ../fish/guestfish-actions.pod:2167
10720 #: ../fish/guestfish-actions.pod:2180 ../fish/guestfish-actions.pod:2190
10721 #: ../fish/guestfish-actions.pod:2200 ../fish/guestfish-actions.pod:2212
10722 #: ../fish/guestfish-actions.pod:2308 ../fish/guestfish-actions.pod:2342
10723 msgid "Please read L<guestfs(3)/INSPECTION> for more details."
10724 msgstr ""
10725
10726 #. type: =head2
10727 #: ../src/guestfs-actions.pod:2603
10728 msgid "guestfs_inspect_get_distro"
10729 msgstr ""
10730
10731 #. type: verbatim
10732 #: ../src/guestfs-actions.pod:2605
10733 #, no-wrap
10734 msgid ""
10735 " char *\n"
10736 " guestfs_inspect_get_distro (guestfs_h *g,\n"
10737 "                             const char *root);\n"
10738 "\n"
10739 msgstr ""
10740
10741 #. type: textblock
10742 #: ../src/guestfs-actions.pod:2609 ../fish/guestfish-actions.pod:1734
10743 msgid ""
10744 "This returns the distro (distribution) of the inspected operating system."
10745 msgstr ""
10746
10747 #. type: textblock
10748 #: ../src/guestfs-actions.pod:2612 ../fish/guestfish-actions.pod:1737
10749 msgid "Currently defined distros are:"
10750 msgstr ""
10751
10752 #. type: =item
10753 #: ../src/guestfs-actions.pod:2616 ../fish/guestfish-actions.pod:1741
10754 msgid "\"archlinux\""
10755 msgstr ""
10756
10757 #. type: textblock
10758 #: ../src/guestfs-actions.pod:2618 ../fish/guestfish-actions.pod:1743
10759 msgid "Arch Linux."
10760 msgstr ""
10761
10762 #. type: =item
10763 #: ../src/guestfs-actions.pod:2620 ../fish/guestfish-actions.pod:1745
10764 msgid "\"centos\""
10765 msgstr ""
10766
10767 #. type: textblock
10768 #: ../src/guestfs-actions.pod:2622 ../fish/guestfish-actions.pod:1747
10769 msgid "CentOS."
10770 msgstr ""
10771
10772 #. type: =item
10773 #: ../src/guestfs-actions.pod:2624 ../fish/guestfish-actions.pod:1749
10774 msgid "\"debian\""
10775 msgstr ""
10776
10777 #. type: textblock
10778 #: ../src/guestfs-actions.pod:2626 ../fish/guestfish-actions.pod:1751
10779 msgid "Debian."
10780 msgstr ""
10781
10782 #. type: =item
10783 #: ../src/guestfs-actions.pod:2628 ../fish/guestfish-actions.pod:1753
10784 msgid "\"fedora\""
10785 msgstr ""
10786
10787 #. type: textblock
10788 #: ../src/guestfs-actions.pod:2630 ../fish/guestfish-actions.pod:1755
10789 msgid "Fedora."
10790 msgstr ""
10791
10792 #. type: =item
10793 #: ../src/guestfs-actions.pod:2632 ../fish/guestfish-actions.pod:1757
10794 msgid "\"gentoo\""
10795 msgstr ""
10796
10797 #. type: textblock
10798 #: ../src/guestfs-actions.pod:2634 ../fish/guestfish-actions.pod:1759
10799 msgid "Gentoo."
10800 msgstr ""
10801
10802 #. type: =item
10803 #: ../src/guestfs-actions.pod:2636 ../fish/guestfish-actions.pod:1761
10804 msgid "\"linuxmint\""
10805 msgstr ""
10806
10807 #. type: textblock
10808 #: ../src/guestfs-actions.pod:2638 ../fish/guestfish-actions.pod:1763
10809 msgid "Linux Mint."
10810 msgstr ""
10811
10812 #. type: =item
10813 #: ../src/guestfs-actions.pod:2640 ../fish/guestfish-actions.pod:1765
10814 msgid "\"mandriva\""
10815 msgstr ""
10816
10817 #. type: textblock
10818 #: ../src/guestfs-actions.pod:2642 ../fish/guestfish-actions.pod:1767
10819 msgid "Mandriva."
10820 msgstr ""
10821
10822 #. type: =item
10823 #: ../src/guestfs-actions.pod:2644 ../fish/guestfish-actions.pod:1769
10824 msgid "\"meego\""
10825 msgstr ""
10826
10827 #. type: textblock
10828 #: ../src/guestfs-actions.pod:2646 ../fish/guestfish-actions.pod:1771
10829 msgid "MeeGo."
10830 msgstr ""
10831
10832 #. type: =item
10833 #: ../src/guestfs-actions.pod:2648 ../fish/guestfish-actions.pod:1773
10834 msgid "\"pardus\""
10835 msgstr ""
10836
10837 #. type: textblock
10838 #: ../src/guestfs-actions.pod:2650 ../fish/guestfish-actions.pod:1775
10839 msgid "Pardus."
10840 msgstr ""
10841
10842 #. type: =item
10843 #: ../src/guestfs-actions.pod:2652 ../fish/guestfish-actions.pod:1777
10844 msgid "\"redhat-based\""
10845 msgstr ""
10846
10847 #. type: textblock
10848 #: ../src/guestfs-actions.pod:2654 ../fish/guestfish-actions.pod:1779
10849 msgid "Some Red Hat-derived distro."
10850 msgstr ""
10851
10852 #. type: =item
10853 #: ../src/guestfs-actions.pod:2656 ../fish/guestfish-actions.pod:1781
10854 msgid "\"rhel\""
10855 msgstr ""
10856
10857 #. type: textblock
10858 #: ../src/guestfs-actions.pod:2658 ../fish/guestfish-actions.pod:1783
10859 msgid "Red Hat Enterprise Linux."
10860 msgstr ""
10861
10862 #. type: =item
10863 #: ../src/guestfs-actions.pod:2660 ../fish/guestfish-actions.pod:1785
10864 msgid "\"scientificlinux\""
10865 msgstr ""
10866
10867 #. type: textblock
10868 #: ../src/guestfs-actions.pod:2662 ../fish/guestfish-actions.pod:1787
10869 msgid "Scientific Linux."
10870 msgstr ""
10871
10872 #. type: =item
10873 #: ../src/guestfs-actions.pod:2664 ../fish/guestfish-actions.pod:1789
10874 msgid "\"slackware\""
10875 msgstr ""
10876
10877 #. type: textblock
10878 #: ../src/guestfs-actions.pod:2666 ../fish/guestfish-actions.pod:1791
10879 msgid "Slackware."
10880 msgstr ""
10881
10882 #. type: =item
10883 #: ../src/guestfs-actions.pod:2668 ../fish/guestfish-actions.pod:1793
10884 msgid "\"ubuntu\""
10885 msgstr ""
10886
10887 #. type: textblock
10888 #: ../src/guestfs-actions.pod:2670 ../fish/guestfish-actions.pod:1795
10889 msgid "Ubuntu."
10890 msgstr ""
10891
10892 #. type: =item
10893 #: ../src/guestfs-actions.pod:2672 ../src/guestfs-actions.pod:2781
10894 #: ../src/guestfs-actions.pod:3156 ../fish/guestfish-actions.pod:1797
10895 #: ../fish/guestfish-actions.pod:1881 ../fish/guestfish-actions.pod:2145
10896 msgid "\"unknown\""
10897 msgstr ""
10898
10899 #. type: textblock
10900 #: ../src/guestfs-actions.pod:2674 ../fish/guestfish-actions.pod:1799
10901 msgid "The distro could not be determined."
10902 msgstr ""
10903
10904 #. type: =item
10905 #: ../src/guestfs-actions.pod:2676 ../src/guestfs-actions.pod:3148
10906 #: ../fish/guestfish-actions.pod:1801 ../fish/guestfish-actions.pod:2137
10907 msgid "\"windows\""
10908 msgstr ""
10909
10910 #. type: textblock
10911 #: ../src/guestfs-actions.pod:2678 ../fish/guestfish-actions.pod:1803
10912 msgid ""
10913 "Windows does not have distributions.  This string is returned if the OS type"
10914 " is Windows."
10915 msgstr ""
10916
10917 #. type: textblock
10918 #: ../src/guestfs-actions.pod:2683 ../src/guestfs-actions.pod:2787
10919 #: ../src/guestfs-actions.pod:3162 ../fish/guestfish-actions.pod:1808
10920 #: ../fish/guestfish-actions.pod:1887 ../fish/guestfish-actions.pod:2151
10921 msgid ""
10922 "Future versions of libguestfs may return other strings here.  The caller "
10923 "should be prepared to handle any string."
10924 msgstr ""
10925
10926 #. type: =head2
10927 #: ../src/guestfs-actions.pod:2693
10928 msgid "guestfs_inspect_get_drive_mappings"
10929 msgstr ""
10930
10931 #. type: verbatim
10932 #: ../src/guestfs-actions.pod:2695
10933 #, no-wrap
10934 msgid ""
10935 " char **\n"
10936 " guestfs_inspect_get_drive_mappings (guestfs_h *g,\n"
10937 "                                     const char *root);\n"
10938 "\n"
10939 msgstr ""
10940
10941 #. type: textblock
10942 #: ../src/guestfs-actions.pod:2699 ../fish/guestfish-actions.pod:1817
10943 msgid ""
10944 "This call is useful for Windows which uses a primitive system of assigning "
10945 "drive letters (like \"C:\") to partitions.  This inspection API examines the"
10946 " Windows Registry to find out how disks/partitions are mapped to drive "
10947 "letters, and returns a hash table as in the example below:"
10948 msgstr ""
10949
10950 #. type: verbatim
10951 #: ../src/guestfs-actions.pod:2705 ../fish/guestfish-actions.pod:1823
10952 #, no-wrap
10953 msgid ""
10954 " C      =>     /dev/vda2\n"
10955 " E      =>     /dev/vdb1\n"
10956 " F      =>     /dev/vdc1\n"
10957 "\n"
10958 msgstr ""
10959
10960 #. type: textblock
10961 #: ../src/guestfs-actions.pod:2709 ../fish/guestfish-actions.pod:1827
10962 msgid ""
10963 "Note that keys are drive letters.  For Windows, the key is case insensitive "
10964 "and just contains the drive letter, without the customary colon separator "
10965 "character."
10966 msgstr ""
10967
10968 #. type: textblock
10969 #: ../src/guestfs-actions.pod:2713 ../fish/guestfish-actions.pod:1831
10970 msgid ""
10971 "In future we may support other operating systems that also used drive "
10972 "letters, but the keys for those might not be case insensitive and might be "
10973 "longer than 1 character.  For example in OS-9, hard drives were named C<h0>,"
10974 " C<h1> etc."
10975 msgstr ""
10976
10977 #. type: textblock
10978 #: ../src/guestfs-actions.pod:2718 ../fish/guestfish-actions.pod:1836
10979 msgid ""
10980 "For Windows guests, currently only hard drive mappings are returned.  "
10981 "Removable disks (eg. DVD-ROMs) are ignored."
10982 msgstr ""
10983
10984 #. type: textblock
10985 #: ../src/guestfs-actions.pod:2721 ../fish/guestfish-actions.pod:1839
10986 msgid ""
10987 "For guests that do not use drive mappings, or if the drive mappings could "
10988 "not be determined, this returns an empty hash table."
10989 msgstr ""
10990
10991 #. type: textblock
10992 #: ../src/guestfs-actions.pod:2724
10993 msgid ""
10994 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
10995 "C<guestfs_inspect_get_mountpoints>, C<guestfs_inspect_get_filesystems>."
10996 msgstr ""
10997
10998 #. type: textblock
10999 #: ../src/guestfs-actions.pod:2728 ../src/guestfs-actions.pod:2996
11000 #: ../src/guestfs-actions.pod:3794 ../src/guestfs-actions.pod:5076
11001 #: ../src/guestfs-actions.pod:7122
11002 msgid ""
11003 "This function returns a NULL-terminated array of strings, or NULL if there "
11004 "was an error.  The array of strings will always have length C<2n+1>, where "
11005 "C<n> keys and values alternate, followed by the trailing NULL entry.  I<The "
11006 "caller must free the strings and the array after use>."
11007 msgstr ""
11008
11009 #. type: textblock
11010 #: ../src/guestfs-actions.pod:2734 ../src/guestfs-actions.pod:3190
11011 msgid "(Added in 1.9.17)"
11012 msgstr ""
11013
11014 #. type: =head2
11015 #: ../src/guestfs-actions.pod:2736
11016 msgid "guestfs_inspect_get_filesystems"
11017 msgstr ""
11018
11019 #. type: verbatim
11020 #: ../src/guestfs-actions.pod:2738
11021 #, no-wrap
11022 msgid ""
11023 " char **\n"
11024 " guestfs_inspect_get_filesystems (guestfs_h *g,\n"
11025 "                                  const char *root);\n"
11026 "\n"
11027 msgstr ""
11028
11029 #. type: textblock
11030 #: ../src/guestfs-actions.pod:2742 ../fish/guestfish-actions.pod:1850
11031 msgid ""
11032 "This returns a list of all the filesystems that we think are associated with"
11033 " this operating system.  This includes the root filesystem, other ordinary "
11034 "filesystems, and non-mounted devices like swap partitions."
11035 msgstr ""
11036
11037 #. type: textblock
11038 #: ../src/guestfs-actions.pod:2747 ../fish/guestfish-actions.pod:1855
11039 msgid ""
11040 "In the case of a multi-boot virtual machine, it is possible for a filesystem"
11041 " to be shared between operating systems."
11042 msgstr ""
11043
11044 #. type: textblock
11045 #: ../src/guestfs-actions.pod:2750
11046 msgid ""
11047 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11048 "C<guestfs_inspect_get_mountpoints>."
11049 msgstr ""
11050
11051 #. type: =head2
11052 #: ../src/guestfs-actions.pod:2759
11053 msgid "guestfs_inspect_get_format"
11054 msgstr ""
11055
11056 #. type: verbatim
11057 #: ../src/guestfs-actions.pod:2761
11058 #, no-wrap
11059 msgid ""
11060 " char *\n"
11061 " guestfs_inspect_get_format (guestfs_h *g,\n"
11062 "                             const char *root);\n"
11063 "\n"
11064 msgstr ""
11065
11066 #. type: textblock
11067 #: ../src/guestfs-actions.pod:2765 ../fish/guestfish-actions.pod:1865
11068 msgid ""
11069 "This returns the format of the inspected operating system.  You can use it "
11070 "to detect install images, live CDs and similar."
11071 msgstr ""
11072
11073 #. type: textblock
11074 #: ../src/guestfs-actions.pod:2768 ../fish/guestfish-actions.pod:1868
11075 msgid "Currently defined formats are:"
11076 msgstr ""
11077
11078 #. type: =item
11079 #: ../src/guestfs-actions.pod:2772 ../fish/guestfish-actions.pod:1872
11080 msgid "\"installed\""
11081 msgstr ""
11082
11083 #. type: textblock
11084 #: ../src/guestfs-actions.pod:2774 ../fish/guestfish-actions.pod:1874
11085 msgid "This is an installed operating system."
11086 msgstr ""
11087
11088 #. type: =item
11089 #: ../src/guestfs-actions.pod:2776 ../fish/guestfish-actions.pod:1876
11090 msgid "\"installer\""
11091 msgstr ""
11092
11093 #. type: textblock
11094 #: ../src/guestfs-actions.pod:2778 ../fish/guestfish-actions.pod:1878
11095 msgid ""
11096 "The disk image being inspected is not an installed operating system, but a "
11097 "I<bootable> install disk, live CD, or similar."
11098 msgstr ""
11099
11100 #. type: textblock
11101 #: ../src/guestfs-actions.pod:2783 ../fish/guestfish-actions.pod:1883
11102 msgid "The format of this disk image is not known."
11103 msgstr ""
11104
11105 #. type: textblock
11106 #: ../src/guestfs-actions.pod:2795 ../src/guestfs-actions.pod:3226
11107 #: ../src/guestfs-actions.pod:3242 ../src/guestfs-actions.pod:3260
11108 #: ../src/guestfs-actions.pod:6020
11109 msgid "(Added in 1.9.4)"
11110 msgstr ""
11111
11112 #. type: =head2
11113 #: ../src/guestfs-actions.pod:2797
11114 msgid "guestfs_inspect_get_hostname"
11115 msgstr ""
11116
11117 #. type: verbatim
11118 #: ../src/guestfs-actions.pod:2799
11119 #, no-wrap
11120 msgid ""
11121 " char *\n"
11122 " guestfs_inspect_get_hostname (guestfs_h *g,\n"
11123 "                               const char *root);\n"
11124 "\n"
11125 msgstr ""
11126
11127 #. type: textblock
11128 #: ../src/guestfs-actions.pod:2803 ../fish/guestfish-actions.pod:1896
11129 msgid ""
11130 "This function returns the hostname of the operating system as found by "
11131 "inspection of the guest's configuration files."
11132 msgstr ""
11133
11134 #. type: textblock
11135 #: ../src/guestfs-actions.pod:2806 ../fish/guestfish-actions.pod:1899
11136 msgid ""
11137 "If the hostname could not be determined, then the string C<unknown> is "
11138 "returned."
11139 msgstr ""
11140
11141 #. type: textblock
11142 #: ../src/guestfs-actions.pod:2814
11143 msgid "(Added in 1.7.9)"
11144 msgstr ""
11145
11146 #. type: =head2
11147 #: ../src/guestfs-actions.pod:2816
11148 msgid "guestfs_inspect_get_icon"
11149 msgstr ""
11150
11151 #. type: verbatim
11152 #: ../src/guestfs-actions.pod:2818
11153 #, no-wrap
11154 msgid ""
11155 " char *\n"
11156 " guestfs_inspect_get_icon (guestfs_h *g,\n"
11157 "                           const char *root,\n"
11158 "                           size_t *size_r,\n"
11159 "                           ...);\n"
11160 "\n"
11161 msgstr ""
11162
11163 #. type: verbatim
11164 #: ../src/guestfs-actions.pod:2829
11165 #, no-wrap
11166 msgid ""
11167 " GUESTFS_INSPECT_GET_ICON_FAVICON, int favicon,\n"
11168 " GUESTFS_INSPECT_GET_ICON_HIGHQUALITY, int highquality,\n"
11169 "\n"
11170 msgstr ""
11171
11172 #. type: textblock
11173 #: ../src/guestfs-actions.pod:2832 ../fish/guestfish-actions.pod:1908
11174 msgid ""
11175 "This function returns an icon corresponding to the inspected operating "
11176 "system.  The icon is returned as a buffer containing a PNG image (re-encoded"
11177 " to PNG if necessary)."
11178 msgstr ""
11179
11180 #. type: textblock
11181 #: ../src/guestfs-actions.pod:2836 ../fish/guestfish-actions.pod:1912
11182 msgid ""
11183 "If it was not possible to get an icon this function returns a zero-length "
11184 "(non-NULL) buffer.  I<Callers must check for this case>."
11185 msgstr ""
11186
11187 #. type: textblock
11188 #: ../src/guestfs-actions.pod:2839 ../fish/guestfish-actions.pod:1915
11189 msgid ""
11190 "Libguestfs will start by looking for a file called C</etc/favicon.png> or "
11191 "C<C:\\etc\\favicon.png> and if it has the correct format, the contents of "
11192 "this file will be returned.  You can disable favicons by passing the "
11193 "optional C<favicon> boolean as false (default is true)."
11194 msgstr ""
11195
11196 #. type: textblock
11197 #: ../src/guestfs-actions.pod:2845 ../fish/guestfish-actions.pod:1921
11198 msgid ""
11199 "If finding the favicon fails, then we look in other places in the guest for "
11200 "a suitable icon."
11201 msgstr ""
11202
11203 #. type: textblock
11204 #: ../src/guestfs-actions.pod:2848 ../fish/guestfish-actions.pod:1924
11205 msgid ""
11206 "If the optional C<highquality> boolean is true then only high quality icons "
11207 "are returned, which means only icons of high resolution with an alpha "
11208 "channel.  The default (false) is to return any icon we can, even if it is of"
11209 " substandard quality."
11210 msgstr ""
11211
11212 #. type: textblock
11213 #: ../src/guestfs-actions.pod:2859 ../fish/guestfish-actions.pod:1935
11214 msgid ""
11215 "Unlike most other inspection API calls, the guest's disks must be mounted up"
11216 " before you call this, since it needs to read information from the guest "
11217 "filesystem during the call."
11218 msgstr ""
11219
11220 #. type: textblock
11221 #: ../src/guestfs-actions.pod:2865 ../fish/guestfish-actions.pod:1941
11222 msgid ""
11223 "B<Security:> The icon data comes from the untrusted guest, and should be "
11224 "treated with caution.  PNG files have been known to contain exploits.  "
11225 "Ensure that libpng (or other relevant libraries) are fully up to date before"
11226 " trying to process or display the icon."
11227 msgstr ""
11228
11229 #. type: textblock
11230 #: ../src/guestfs-actions.pod:2873 ../fish/guestfish-actions.pod:1949
11231 msgid ""
11232 "The PNG image returned can be any size.  It might not be square.  Libguestfs"
11233 " tries to return the largest, highest quality icon available.  The "
11234 "application must scale the icon to the required size."
11235 msgstr ""
11236
11237 #. type: textblock
11238 #: ../src/guestfs-actions.pod:2880 ../fish/guestfish-actions.pod:1956
11239 msgid ""
11240 "Extracting icons from Windows guests requires the external C<wrestool> "
11241 "program from the C<icoutils> package, and several programs (C<bmptopnm>, "
11242 "C<pnmtopng>, C<pamcut>)  from the C<netpbm> package.  These must be "
11243 "installed separately."
11244 msgstr ""
11245
11246 #. type: textblock
11247 #: ../src/guestfs-actions.pod:2887 ../fish/guestfish-actions.pod:1963
11248 msgid ""
11249 "Operating system icons are usually trademarks.  Seek legal advice before "
11250 "using trademarks in applications."
11251 msgstr ""
11252
11253 #. type: textblock
11254 #: ../src/guestfs-actions.pod:2896 ../src/guestfs-actions.pod:3721
11255 #: ../src/guestfs-actions.pod:4975
11256 msgid "(Added in 1.11.12)"
11257 msgstr ""
11258
11259 #. type: =head2
11260 #: ../src/guestfs-actions.pod:2898
11261 msgid "guestfs_inspect_get_icon_va"
11262 msgstr ""
11263
11264 #. type: verbatim
11265 #: ../src/guestfs-actions.pod:2900
11266 #, no-wrap
11267 msgid ""
11268 " char *\n"
11269 " guestfs_inspect_get_icon_va (guestfs_h *g,\n"
11270 "                              const char *root,\n"
11271 "                              size_t *size_r,\n"
11272 "                              va_list args);\n"
11273 "\n"
11274 msgstr ""
11275
11276 #. type: textblock
11277 #: ../src/guestfs-actions.pod:2906
11278 msgid "This is the \"va_list variant\" of L</guestfs_inspect_get_icon>."
11279 msgstr ""
11280
11281 #. type: =head2
11282 #: ../src/guestfs-actions.pod:2910
11283 msgid "guestfs_inspect_get_icon_argv"
11284 msgstr ""
11285
11286 #. type: verbatim
11287 #: ../src/guestfs-actions.pod:2912
11288 #, no-wrap
11289 msgid ""
11290 " char *\n"
11291 " guestfs_inspect_get_icon_argv (guestfs_h *g,\n"
11292 "                                const char *root,\n"
11293 "                                size_t *size_r,\n"
11294 "                                const struct guestfs_inspect_get_icon_argv *optargs);\n"
11295 "\n"
11296 msgstr ""
11297
11298 #. type: textblock
11299 #: ../src/guestfs-actions.pod:2918
11300 msgid "This is the \"argv variant\" of L</guestfs_inspect_get_icon>."
11301 msgstr ""
11302
11303 #. type: =head2
11304 #: ../src/guestfs-actions.pod:2922
11305 msgid "guestfs_inspect_get_major_version"
11306 msgstr ""
11307
11308 #. type: verbatim
11309 #: ../src/guestfs-actions.pod:2924
11310 #, no-wrap
11311 msgid ""
11312 " int\n"
11313 " guestfs_inspect_get_major_version (guestfs_h *g,\n"
11314 "                                    const char *root);\n"
11315 "\n"
11316 msgstr ""
11317
11318 #. type: textblock
11319 #: ../src/guestfs-actions.pod:2928 ../fish/guestfish-actions.pod:1974
11320 msgid ""
11321 "This returns the major version number of the inspected operating system."
11322 msgstr ""
11323
11324 #. type: textblock
11325 #: ../src/guestfs-actions.pod:2931 ../fish/guestfish-actions.pod:1977
11326 msgid ""
11327 "Windows uses a consistent versioning scheme which is I<not> reflected in the"
11328 " popular public names used by the operating system.  Notably the operating "
11329 "system known as \"Windows 7\" is really version 6.1 (ie. major = 6, minor = "
11330 "1).  You can find out the real versions corresponding to releases of Windows"
11331 " by consulting Wikipedia or MSDN."
11332 msgstr ""
11333
11334 #. type: textblock
11335 #: ../src/guestfs-actions.pod:2938 ../src/guestfs-actions.pod:2955
11336 #: ../fish/guestfish-actions.pod:1984 ../fish/guestfish-actions.pod:1995
11337 msgid "If the version could not be determined, then C<0> is returned."
11338 msgstr ""
11339
11340 #. type: =head2
11341 #: ../src/guestfs-actions.pod:2946
11342 msgid "guestfs_inspect_get_minor_version"
11343 msgstr ""
11344
11345 #. type: verbatim
11346 #: ../src/guestfs-actions.pod:2948
11347 #, no-wrap
11348 msgid ""
11349 " int\n"
11350 " guestfs_inspect_get_minor_version (guestfs_h *g,\n"
11351 "                                    const char *root);\n"
11352 "\n"
11353 msgstr ""
11354
11355 #. type: textblock
11356 #: ../src/guestfs-actions.pod:2952 ../fish/guestfish-actions.pod:1992
11357 msgid ""
11358 "This returns the minor version number of the inspected operating system."
11359 msgstr ""
11360
11361 #. type: textblock
11362 #: ../src/guestfs-actions.pod:2957
11363 msgid ""
11364 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11365 "C<guestfs_inspect_get_major_version>."
11366 msgstr ""
11367
11368 #. type: =head2
11369 #: ../src/guestfs-actions.pod:2964
11370 msgid "guestfs_inspect_get_mountpoints"
11371 msgstr ""
11372
11373 #. type: verbatim
11374 #: ../src/guestfs-actions.pod:2966
11375 #, no-wrap
11376 msgid ""
11377 " char **\n"
11378 " guestfs_inspect_get_mountpoints (guestfs_h *g,\n"
11379 "                                  const char *root);\n"
11380 "\n"
11381 msgstr ""
11382
11383 #. type: textblock
11384 #: ../src/guestfs-actions.pod:2970 ../fish/guestfish-actions.pod:2004
11385 msgid ""
11386 "This returns a hash of where we think the filesystems associated with this "
11387 "operating system should be mounted.  Callers should note that this is at "
11388 "best an educated guess made by reading configuration files such as "
11389 "C</etc/fstab>.  I<In particular note> that this may return filesystems which"
11390 " are non-existent or not mountable and callers should be prepared to handle "
11391 "or ignore failures if they try to mount them."
11392 msgstr ""
11393
11394 #. type: textblock
11395 #: ../src/guestfs-actions.pod:2979 ../fish/guestfish-actions.pod:2013
11396 msgid ""
11397 "Each element in the returned hashtable has a key which is the path of the "
11398 "mountpoint (eg. C</boot>) and a value which is the filesystem that would be "
11399 "mounted there (eg. C</dev/sda1>)."
11400 msgstr ""
11401
11402 #. type: textblock
11403 #: ../src/guestfs-actions.pod:2984 ../fish/guestfish-actions.pod:2018
11404 msgid ""
11405 "Non-mounted devices such as swap devices are I<not> returned in this list."
11406 msgstr ""
11407
11408 #. type: textblock
11409 #: ../src/guestfs-actions.pod:2987
11410 msgid ""
11411 "For operating systems like Windows which still use drive letters, this call "
11412 "will only return an entry for the first drive \"mounted on\" C</>.  For "
11413 "information about the mapping of drive letters to partitions, see "
11414 "C<guestfs_inspect_get_drive_mappings>."
11415 msgstr ""
11416
11417 #. type: textblock
11418 #: ../src/guestfs-actions.pod:2993
11419 msgid ""
11420 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11421 "C<guestfs_inspect_get_filesystems>."
11422 msgstr ""
11423
11424 #. type: =head2
11425 #: ../src/guestfs-actions.pod:3004
11426 msgid "guestfs_inspect_get_package_format"
11427 msgstr ""
11428
11429 #. type: verbatim
11430 #: ../src/guestfs-actions.pod:3006
11431 #, no-wrap
11432 msgid ""
11433 " char *\n"
11434 " guestfs_inspect_get_package_format (guestfs_h *g,\n"
11435 "                                     const char *root);\n"
11436 "\n"
11437 msgstr ""
11438
11439 #. type: textblock
11440 #: ../src/guestfs-actions.pod:3010
11441 msgid ""
11442 "This function and C<guestfs_inspect_get_package_management> return the "
11443 "package format and package management tool used by the inspected operating "
11444 "system.  For example for Fedora these functions would return C<rpm> (package"
11445 " format) and C<yum> (package management)."
11446 msgstr ""
11447
11448 #. type: textblock
11449 #: ../src/guestfs-actions.pod:3016 ../fish/guestfish-actions.pod:2040
11450 msgid ""
11451 "This returns the string C<unknown> if we could not determine the package "
11452 "format I<or> if the operating system does not have a real packaging system "
11453 "(eg. Windows)."
11454 msgstr ""
11455
11456 #. type: textblock
11457 #: ../src/guestfs-actions.pod:3020 ../fish/guestfish-actions.pod:2044
11458 msgid ""
11459 "Possible strings include: C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>.  "
11460 "Future versions of libguestfs may return other strings."
11461 msgstr ""
11462
11463 #. type: textblock
11464 #: ../src/guestfs-actions.pod:3028 ../src/guestfs-actions.pod:3056
11465 msgid "(Added in 1.7.5)"
11466 msgstr ""
11467
11468 #. type: =head2
11469 #: ../src/guestfs-actions.pod:3030
11470 msgid "guestfs_inspect_get_package_management"
11471 msgstr ""
11472
11473 #. type: verbatim
11474 #: ../src/guestfs-actions.pod:3032
11475 #, no-wrap
11476 msgid ""
11477 " char *\n"
11478 " guestfs_inspect_get_package_management (guestfs_h *g,\n"
11479 "                                         const char *root);\n"
11480 "\n"
11481 msgstr ""
11482
11483 #. type: textblock
11484 #: ../src/guestfs-actions.pod:3036
11485 msgid ""
11486 "C<guestfs_inspect_get_package_format> and this function return the package "
11487 "format and package management tool used by the inspected operating system.  "
11488 "For example for Fedora these functions would return C<rpm> (package format) "
11489 "and C<yum> (package management)."
11490 msgstr ""
11491
11492 #. type: textblock
11493 #: ../src/guestfs-actions.pod:3042 ../fish/guestfish-actions.pod:2059
11494 msgid ""
11495 "This returns the string C<unknown> if we could not determine the package "
11496 "management tool I<or> if the operating system does not have a real packaging"
11497 " system (eg. Windows)."
11498 msgstr ""
11499
11500 #. type: textblock
11501 #: ../src/guestfs-actions.pod:3046 ../fish/guestfish-actions.pod:2063
11502 msgid ""
11503 "Possible strings include: C<yum>, C<up2date>, C<apt> (for all Debian "
11504 "derivatives), C<portage>, C<pisi>, C<pacman>, C<urpmi>.  Future versions of "
11505 "libguestfs may return other strings."
11506 msgstr ""
11507
11508 #. type: =head2
11509 #: ../src/guestfs-actions.pod:3058
11510 msgid "guestfs_inspect_get_product_name"
11511 msgstr ""
11512
11513 #. type: verbatim
11514 #: ../src/guestfs-actions.pod:3060
11515 #, no-wrap
11516 msgid ""
11517 " char *\n"
11518 " guestfs_inspect_get_product_name (guestfs_h *g,\n"
11519 "                                   const char *root);\n"
11520 "\n"
11521 msgstr ""
11522
11523 #. type: textblock
11524 #: ../src/guestfs-actions.pod:3064 ../fish/guestfish-actions.pod:2074
11525 msgid ""
11526 "This returns the product name of the inspected operating system.  The "
11527 "product name is generally some freeform string which can be displayed to the"
11528 " user, but should not be parsed by programs."
11529 msgstr ""
11530
11531 #. type: textblock
11532 #: ../src/guestfs-actions.pod:3069 ../fish/guestfish-actions.pod:2079
11533 msgid ""
11534 "If the product name could not be determined, then the string C<unknown> is "
11535 "returned."
11536 msgstr ""
11537
11538 #. type: =head2
11539 #: ../src/guestfs-actions.pod:3079
11540 msgid "guestfs_inspect_get_product_variant"
11541 msgstr ""
11542
11543 #. type: verbatim
11544 #: ../src/guestfs-actions.pod:3081
11545 #, no-wrap
11546 msgid ""
11547 " char *\n"
11548 " guestfs_inspect_get_product_variant (guestfs_h *g,\n"
11549 "                                      const char *root);\n"
11550 "\n"
11551 msgstr ""
11552
11553 #. type: textblock
11554 #: ../src/guestfs-actions.pod:3085 ../fish/guestfish-actions.pod:2088
11555 msgid "This returns the product variant of the inspected operating system."
11556 msgstr ""
11557
11558 #. type: textblock
11559 #: ../src/guestfs-actions.pod:3088 ../fish/guestfish-actions.pod:2091
11560 msgid ""
11561 "For Windows guests, this returns the contents of the Registry key "
11562 "C<HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion> C<InstallationType>"
11563 " which is usually a string such as C<Client> or C<Server> (other values are "
11564 "possible).  This can be used to distinguish consumer and enterprise versions"
11565 " of Windows that have the same version number (for example, Windows 7 and "
11566 "Windows 2008 Server are both version 6.1, but the former is C<Client> and "
11567 "the latter is C<Server>)."
11568 msgstr ""
11569
11570 #. type: textblock
11571 #: ../src/guestfs-actions.pod:3097 ../fish/guestfish-actions.pod:2100
11572 msgid ""
11573 "For enterprise Linux guests, in future we intend this to return the product "
11574 "variant such as C<Desktop>, C<Server> and so on.  But this is not "
11575 "implemented at present."
11576 msgstr ""
11577
11578 #. type: textblock
11579 #: ../src/guestfs-actions.pod:3101 ../fish/guestfish-actions.pod:2104
11580 msgid ""
11581 "If the product variant could not be determined, then the string C<unknown> "
11582 "is returned."
11583 msgstr ""
11584
11585 #. type: textblock
11586 #: ../src/guestfs-actions.pod:3104
11587 msgid ""
11588 "Please read L<guestfs(3)/INSPECTION> for more details.  See also "
11589 "C<guestfs_inspect_get_product_name>, C<guestfs_inspect_get_major_version>."
11590 msgstr ""
11591
11592 #. type: textblock
11593 #: ../src/guestfs-actions.pod:3111
11594 msgid "(Added in 1.9.13)"
11595 msgstr ""
11596
11597 #. type: =head2
11598 #: ../src/guestfs-actions.pod:3113
11599 msgid "guestfs_inspect_get_roots"
11600 msgstr ""
11601
11602 #. type: verbatim
11603 #: ../src/guestfs-actions.pod:3115
11604 #, no-wrap
11605 msgid ""
11606 " char **\n"
11607 " guestfs_inspect_get_roots (guestfs_h *g);\n"
11608 "\n"
11609 msgstr ""
11610
11611 #. type: textblock
11612 #: ../src/guestfs-actions.pod:3118
11613 msgid ""
11614 "This function is a convenient way to get the list of root devices, as "
11615 "returned from a previous call to C<guestfs_inspect_os>, but without redoing "
11616 "the whole inspection process."
11617 msgstr ""
11618
11619 #. type: textblock
11620 #: ../src/guestfs-actions.pod:3122
11621 msgid ""
11622 "This returns an empty list if either no root devices were found or the "
11623 "caller has not called C<guestfs_inspect_os>."
11624 msgstr ""
11625
11626 #. type: textblock
11627 #: ../src/guestfs-actions.pod:3131
11628 msgid "(Added in 1.7.3)"
11629 msgstr ""
11630
11631 #. type: =head2
11632 #: ../src/guestfs-actions.pod:3133
11633 msgid "guestfs_inspect_get_type"
11634 msgstr ""
11635
11636 #. type: verbatim
11637 #: ../src/guestfs-actions.pod:3135
11638 #, no-wrap
11639 msgid ""
11640 " char *\n"
11641 " guestfs_inspect_get_type (guestfs_h *g,\n"
11642 "                           const char *root);\n"
11643 "\n"
11644 msgstr ""
11645
11646 #. type: textblock
11647 #: ../src/guestfs-actions.pod:3139 ../fish/guestfish-actions.pod:2128
11648 msgid ""
11649 "This returns the type of the inspected operating system.  Currently defined "
11650 "types are:"
11651 msgstr ""
11652
11653 #. type: =item
11654 #: ../src/guestfs-actions.pod:3144 ../fish/guestfish-actions.pod:2133
11655 msgid "\"linux\""
11656 msgstr ""
11657
11658 #. type: textblock
11659 #: ../src/guestfs-actions.pod:3146 ../fish/guestfish-actions.pod:2135
11660 msgid "Any Linux-based operating system."
11661 msgstr ""
11662
11663 #. type: textblock
11664 #: ../src/guestfs-actions.pod:3150 ../fish/guestfish-actions.pod:2139
11665 msgid "Any Microsoft Windows operating system."
11666 msgstr ""
11667
11668 #. type: =item
11669 #: ../src/guestfs-actions.pod:3152 ../fish/guestfish-actions.pod:2141
11670 msgid "\"freebsd\""
11671 msgstr ""
11672
11673 #. type: textblock
11674 #: ../src/guestfs-actions.pod:3154 ../fish/guestfish-actions.pod:2143
11675 msgid "FreeBSD."
11676 msgstr ""
11677
11678 #. type: textblock
11679 #: ../src/guestfs-actions.pod:3158 ../fish/guestfish-actions.pod:2147
11680 msgid "The operating system type could not be determined."
11681 msgstr ""
11682
11683 #. type: =head2
11684 #: ../src/guestfs-actions.pod:3172
11685 msgid "guestfs_inspect_get_windows_current_control_set"
11686 msgstr ""
11687
11688 #. type: verbatim
11689 #: ../src/guestfs-actions.pod:3174
11690 #, no-wrap
11691 msgid ""
11692 " char *\n"
11693 " guestfs_inspect_get_windows_current_control_set (guestfs_h *g,\n"
11694 "                                                  const char *root);\n"
11695 "\n"
11696 msgstr ""
11697
11698 #. type: textblock
11699 #: ../src/guestfs-actions.pod:3178 ../fish/guestfish-actions.pod:2160
11700 msgid ""
11701 "This returns the Windows CurrentControlSet of the inspected guest.  The "
11702 "CurrentControlSet is a registry key name such as C<ControlSet001>."
11703 msgstr ""
11704
11705 #. type: textblock
11706 #: ../src/guestfs-actions.pod:3181 ../fish/guestfish-actions.pod:2163
11707 msgid ""
11708 "This call assumes that the guest is Windows and that the Registry could be "
11709 "examined by inspection.  If this is not the case then an error is returned."
11710 msgstr ""
11711
11712 #. type: =head2
11713 #: ../src/guestfs-actions.pod:3192
11714 msgid "guestfs_inspect_get_windows_systemroot"
11715 msgstr ""
11716
11717 #. type: verbatim
11718 #: ../src/guestfs-actions.pod:3194
11719 #, no-wrap
11720 msgid ""
11721 " char *\n"
11722 " guestfs_inspect_get_windows_systemroot (guestfs_h *g,\n"
11723 "                                         const char *root);\n"
11724 "\n"
11725 msgstr ""
11726
11727 #. type: textblock
11728 #: ../src/guestfs-actions.pod:3198 ../fish/guestfish-actions.pod:2173
11729 msgid ""
11730 "This returns the Windows systemroot of the inspected guest.  The systemroot "
11731 "is a directory path such as C</WINDOWS>."
11732 msgstr ""
11733
11734 #. type: textblock
11735 #: ../src/guestfs-actions.pod:3201 ../fish/guestfish-actions.pod:2176
11736 msgid ""
11737 "This call assumes that the guest is Windows and that the systemroot could be"
11738 " determined by inspection.  If this is not the case then an error is "
11739 "returned."
11740 msgstr ""
11741
11742 #. type: textblock
11743 #: ../src/guestfs-actions.pod:3210
11744 msgid "(Added in 1.5.25)"
11745 msgstr ""
11746
11747 #. type: =head2
11748 #: ../src/guestfs-actions.pod:3212
11749 msgid "guestfs_inspect_is_live"
11750 msgstr ""
11751
11752 #. type: verbatim
11753 #: ../src/guestfs-actions.pod:3214
11754 #, no-wrap
11755 msgid ""
11756 " int\n"
11757 " guestfs_inspect_is_live (guestfs_h *g,\n"
11758 "                          const char *root);\n"
11759 "\n"
11760 msgstr ""
11761
11762 #. type: textblock
11763 #: ../src/guestfs-actions.pod:3218
11764 msgid ""
11765 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11766 "disk), then this returns true if a live image was detected on the disk."
11767 msgstr ""
11768
11769 #. type: =head2
11770 #: ../src/guestfs-actions.pod:3228
11771 msgid "guestfs_inspect_is_multipart"
11772 msgstr ""
11773
11774 #. type: verbatim
11775 #: ../src/guestfs-actions.pod:3230
11776 #, no-wrap
11777 msgid ""
11778 " int\n"
11779 " guestfs_inspect_is_multipart (guestfs_h *g,\n"
11780 "                               const char *root);\n"
11781 "\n"
11782 msgstr ""
11783
11784 #. type: textblock
11785 #: ../src/guestfs-actions.pod:3234
11786 msgid ""
11787 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11788 "disk), then this returns true if the disk is part of a set."
11789 msgstr ""
11790
11791 #. type: =head2
11792 #: ../src/guestfs-actions.pod:3244
11793 msgid "guestfs_inspect_is_netinst"
11794 msgstr ""
11795
11796 #. type: verbatim
11797 #: ../src/guestfs-actions.pod:3246
11798 #, no-wrap
11799 msgid ""
11800 " int\n"
11801 " guestfs_inspect_is_netinst (guestfs_h *g,\n"
11802 "                             const char *root);\n"
11803 "\n"
11804 msgstr ""
11805
11806 #. type: textblock
11807 #: ../src/guestfs-actions.pod:3250
11808 msgid ""
11809 "If C<guestfs_inspect_get_format> returns C<installer> (this is an install "
11810 "disk), then this returns true if the disk is a network installer, ie. not a "
11811 "self-contained install CD but one which is likely to require network access "
11812 "to complete the install."
11813 msgstr ""
11814
11815 #. type: =head2
11816 #: ../src/guestfs-actions.pod:3262
11817 msgid "guestfs_inspect_list_applications"
11818 msgstr ""
11819
11820 #. type: verbatim
11821 #: ../src/guestfs-actions.pod:3264
11822 #, no-wrap
11823 msgid ""
11824 " struct guestfs_application_list *\n"
11825 " guestfs_inspect_list_applications (guestfs_h *g,\n"
11826 "                                    const char *root);\n"
11827 "\n"
11828 msgstr ""
11829
11830 #. type: textblock
11831 #: ../src/guestfs-actions.pod:3268 ../fish/guestfish-actions.pod:2218
11832 msgid "Return the list of applications installed in the operating system."
11833 msgstr ""
11834
11835 #. type: textblock
11836 #: ../src/guestfs-actions.pod:3270
11837 msgid ""
11838 "I<Note:> This call works differently from other parts of the inspection API."
11839 "  You have to call C<guestfs_inspect_os>, then "
11840 "C<guestfs_inspect_get_mountpoints>, then mount up the disks, before calling "
11841 "this.  Listing applications is a significantly more difficult operation "
11842 "which requires access to the full filesystem.  Also note that unlike the "
11843 "other C<guestfs_inspect_get_*> calls which are just returning data cached in"
11844 " the libguestfs handle, this call actually reads parts of the mounted "
11845 "filesystems during the call."
11846 msgstr ""
11847
11848 #. type: textblock
11849 #: ../src/guestfs-actions.pod:3280 ../fish/guestfish-actions.pod:2230
11850 msgid ""
11851 "This returns an empty list if the inspection code was not able to determine "
11852 "the list of applications."
11853 msgstr ""
11854
11855 #. type: textblock
11856 #: ../src/guestfs-actions.pod:3283 ../fish/guestfish-actions.pod:2233
11857 msgid "The application structure contains the following fields:"
11858 msgstr ""
11859
11860 #. type: =item
11861 #: ../src/guestfs-actions.pod:3287 ../fish/guestfish-actions.pod:2237
11862 msgid "C<app_name>"
11863 msgstr ""
11864
11865 #. type: textblock
11866 #: ../src/guestfs-actions.pod:3289 ../fish/guestfish-actions.pod:2239
11867 msgid ""
11868 "The name of the application.  For Red Hat-derived and Debian-derived Linux "
11869 "guests, this is the package name."
11870 msgstr ""
11871
11872 #. type: =item
11873 #: ../src/guestfs-actions.pod:3292 ../fish/guestfish-actions.pod:2242
11874 msgid "C<app_display_name>"
11875 msgstr ""
11876
11877 #. type: textblock
11878 #: ../src/guestfs-actions.pod:3294 ../fish/guestfish-actions.pod:2244
11879 msgid ""
11880 "The display name of the application, sometimes localized to the install "
11881 "language of the guest operating system."
11882 msgstr ""
11883
11884 #. type: textblock
11885 #: ../src/guestfs-actions.pod:3297 ../fish/guestfish-actions.pod:2247
11886 msgid ""
11887 "If unavailable this is returned as an empty string C<\"\">.  Callers needing"
11888 " to display something can use C<app_name> instead."
11889 msgstr ""
11890
11891 #. type: =item
11892 #: ../src/guestfs-actions.pod:3300 ../fish/guestfish-actions.pod:2250
11893 msgid "C<app_epoch>"
11894 msgstr ""
11895
11896 #. type: textblock
11897 #: ../src/guestfs-actions.pod:3302 ../fish/guestfish-actions.pod:2252
11898 msgid ""
11899 "For package managers which use epochs, this contains the epoch of the "
11900 "package (an integer).  If unavailable, this is returned as C<0>."
11901 msgstr ""
11902
11903 #. type: =item
11904 #: ../src/guestfs-actions.pod:3305 ../fish/guestfish-actions.pod:2255
11905 msgid "C<app_version>"
11906 msgstr ""
11907
11908 #. type: textblock
11909 #: ../src/guestfs-actions.pod:3307 ../fish/guestfish-actions.pod:2257
11910 msgid ""
11911 "The version string of the application or package.  If unavailable this is "
11912 "returned as an empty string C<\"\">."
11913 msgstr ""
11914
11915 #. type: =item
11916 #: ../src/guestfs-actions.pod:3310 ../fish/guestfish-actions.pod:2260
11917 msgid "C<app_release>"
11918 msgstr ""
11919
11920 #. type: textblock
11921 #: ../src/guestfs-actions.pod:3312 ../fish/guestfish-actions.pod:2262
11922 msgid ""
11923 "The release string of the application or package, for package managers that "
11924 "use this.  If unavailable this is returned as an empty string C<\"\">."
11925 msgstr ""
11926
11927 #. type: =item
11928 #: ../src/guestfs-actions.pod:3316 ../fish/guestfish-actions.pod:2266
11929 msgid "C<app_install_path>"
11930 msgstr ""
11931
11932 #. type: textblock
11933 #: ../src/guestfs-actions.pod:3318 ../fish/guestfish-actions.pod:2268
11934 msgid ""
11935 "The installation path of the application (on operating systems such as "
11936 "Windows which use installation paths).  This path is in the format used by "
11937 "the guest operating system, it is not a libguestfs path."
11938 msgstr ""
11939
11940 #. type: textblock
11941 #: ../src/guestfs-actions.pod:3323 ../fish/guestfish-actions.pod:2273
11942 msgid "If unavailable this is returned as an empty string C<\"\">."
11943 msgstr ""
11944
11945 #. type: =item
11946 #: ../src/guestfs-actions.pod:3325 ../fish/guestfish-actions.pod:2275
11947 msgid "C<app_trans_path>"
11948 msgstr ""
11949
11950 #. type: textblock
11951 #: ../src/guestfs-actions.pod:3327 ../fish/guestfish-actions.pod:2277
11952 msgid ""
11953 "The install path translated into a libguestfs path.  If unavailable this is "
11954 "returned as an empty string C<\"\">."
11955 msgstr ""
11956
11957 #. type: =item
11958 #: ../src/guestfs-actions.pod:3330 ../fish/guestfish-actions.pod:2280
11959 msgid "C<app_publisher>"
11960 msgstr ""
11961
11962 #. type: textblock
11963 #: ../src/guestfs-actions.pod:3332 ../fish/guestfish-actions.pod:2282
11964 msgid ""
11965 "The name of the publisher of the application, for package managers that use "
11966 "this.  If unavailable this is returned as an empty string C<\"\">."
11967 msgstr ""
11968
11969 #. type: =item
11970 #: ../src/guestfs-actions.pod:3336 ../fish/guestfish-actions.pod:2286
11971 msgid "C<app_url>"
11972 msgstr ""
11973
11974 #. type: textblock
11975 #: ../src/guestfs-actions.pod:3338 ../fish/guestfish-actions.pod:2288
11976 msgid ""
11977 "The URL (eg. upstream URL) of the application.  If unavailable this is "
11978 "returned as an empty string C<\"\">."
11979 msgstr ""
11980
11981 #. type: =item
11982 #: ../src/guestfs-actions.pod:3341 ../fish/guestfish-actions.pod:2291
11983 msgid "C<app_source_package>"
11984 msgstr ""
11985
11986 #. type: textblock
11987 #: ../src/guestfs-actions.pod:3343 ../fish/guestfish-actions.pod:2293
11988 msgid ""
11989 "For packaging systems which support this, the name of the source package.  "
11990 "If unavailable this is returned as an empty string C<\"\">."
11991 msgstr ""
11992
11993 #. type: =item
11994 #: ../src/guestfs-actions.pod:3346 ../fish/guestfish-actions.pod:2296
11995 msgid "C<app_summary>"
11996 msgstr ""
11997
11998 #. type: textblock
11999 #: ../src/guestfs-actions.pod:3348 ../fish/guestfish-actions.pod:2298
12000 msgid ""
12001 "A short (usually one line) description of the application or package.  If "
12002 "unavailable this is returned as an empty string C<\"\">."
12003 msgstr ""
12004
12005 #. type: =item
12006 #: ../src/guestfs-actions.pod:3351 ../fish/guestfish-actions.pod:2301
12007 msgid "C<app_description>"
12008 msgstr ""
12009
12010 #. type: textblock
12011 #: ../src/guestfs-actions.pod:3353 ../fish/guestfish-actions.pod:2303
12012 msgid ""
12013 "A longer description of the application or package.  If unavailable this is "
12014 "returned as an empty string C<\"\">."
12015 msgstr ""
12016
12017 #. type: textblock
12018 #: ../src/guestfs-actions.pod:3360
12019 msgid ""
12020 "This function returns a C<struct guestfs_application_list *>, or NULL if "
12021 "there was an error.  I<The caller must call C<guestfs_free_application_list>"
12022 " after use>."
12023 msgstr ""
12024
12025 #. type: textblock
12026 #: ../src/guestfs-actions.pod:3364
12027 msgid "(Added in 1.7.8)"
12028 msgstr ""
12029
12030 #. type: =head2
12031 #: ../src/guestfs-actions.pod:3366
12032 msgid "guestfs_inspect_os"
12033 msgstr ""
12034
12035 #. type: verbatim
12036 #: ../src/guestfs-actions.pod:3368
12037 #, no-wrap
12038 msgid ""
12039 " char **\n"
12040 " guestfs_inspect_os (guestfs_h *g);\n"
12041 "\n"
12042 msgstr ""
12043
12044 #. type: textblock
12045 #: ../src/guestfs-actions.pod:3371 ../fish/guestfish-actions.pod:2314
12046 msgid ""
12047 "This function uses other libguestfs functions and certain heuristics to "
12048 "inspect the disk(s) (usually disks belonging to a virtual machine), looking "
12049 "for operating systems."
12050 msgstr ""
12051
12052 #. type: textblock
12053 #: ../src/guestfs-actions.pod:3375 ../fish/guestfish-actions.pod:2318
12054 msgid "The list returned is empty if no operating systems were found."
12055 msgstr ""
12056
12057 #. type: textblock
12058 #: ../src/guestfs-actions.pod:3377 ../fish/guestfish-actions.pod:2320
12059 msgid ""
12060 "If one operating system was found, then this returns a list with a single "
12061 "element, which is the name of the root filesystem of this operating system."
12062 "  It is also possible for this function to return a list containing more "
12063 "than one element, indicating a dual-boot or multi-boot virtual machine, with"
12064 " each element being the root filesystem of one of the operating systems."
12065 msgstr ""
12066
12067 #. type: textblock
12068 #: ../src/guestfs-actions.pod:3384
12069 msgid ""
12070 "You can pass the root string(s) returned to other C<guestfs_inspect_get_*> "
12071 "functions in order to query further information about each operating system,"
12072 " such as the name and version."
12073 msgstr ""
12074
12075 #. type: textblock
12076 #: ../src/guestfs-actions.pod:3389
12077 msgid ""
12078 "This function uses other libguestfs features such as C<guestfs_mount_ro> and"
12079 " C<guestfs_umount_all> in order to mount and unmount filesystems and look at"
12080 " the contents.  This should be called with no disks currently mounted.  The "
12081 "function may also use Augeas, so any existing Augeas handle will be closed."
12082 msgstr ""
12083
12084 #. type: textblock
12085 #: ../src/guestfs-actions.pod:3395 ../fish/guestfish-actions.pod:2338
12086 msgid ""
12087 "This function cannot decrypt encrypted disks.  The caller must do that first"
12088 " (supplying the necessary keys) if the disk is encrypted."
12089 msgstr ""
12090
12091 #. type: textblock
12092 #: ../src/guestfs-actions.pod:3401 ../src/guestfs-actions.pod:3732
12093 #: ../src/guestfs-actions.pod:3814
12094 msgid "See also C<guestfs_list_filesystems>."
12095 msgstr ""
12096
12097 #. type: =head2
12098 #: ../src/guestfs-actions.pod:3409
12099 msgid "guestfs_is_blockdev"
12100 msgstr ""
12101
12102 #. type: verbatim
12103 #: ../src/guestfs-actions.pod:3411
12104 #, no-wrap
12105 msgid ""
12106 " int\n"
12107 " guestfs_is_blockdev (guestfs_h *g,\n"
12108 "                      const char *path);\n"
12109 "\n"
12110 msgstr ""
12111
12112 #. type: textblock
12113 #: ../src/guestfs-actions.pod:3415 ../fish/guestfish-actions.pod:2350
12114 msgid ""
12115 "This returns C<true> if and only if there is a block device with the given "
12116 "C<path> name."
12117 msgstr ""
12118
12119 #. type: textblock
12120 #: ../src/guestfs-actions.pod:3418 ../src/guestfs-actions.pod:3447
12121 #: ../src/guestfs-actions.pod:3477 ../src/guestfs-actions.pod:3492
12122 #: ../src/guestfs-actions.pod:3508 ../src/guestfs-actions.pod:3564
12123 #: ../src/guestfs-actions.pod:3579
12124 msgid "See also C<guestfs_stat>."
12125 msgstr ""
12126
12127 #. type: textblock
12128 #: ../src/guestfs-actions.pod:3422 ../src/guestfs-actions.pod:3451
12129 #: ../src/guestfs-actions.pod:3496 ../src/guestfs-actions.pod:3568
12130 #: ../src/guestfs-actions.pod:3583
12131 msgid "(Added in 1.5.10)"
12132 msgstr ""
12133
12134 #. type: =head2
12135 #: ../src/guestfs-actions.pod:3424
12136 msgid "guestfs_is_busy"
12137 msgstr ""
12138
12139 #. type: verbatim
12140 #: ../src/guestfs-actions.pod:3426
12141 #, no-wrap
12142 msgid ""
12143 " int\n"
12144 " guestfs_is_busy (guestfs_h *g);\n"
12145 "\n"
12146 msgstr ""
12147
12148 #. type: textblock
12149 #: ../src/guestfs-actions.pod:3429 ../fish/guestfish-actions.pod:2359
12150 msgid ""
12151 "This returns true iff this handle is busy processing a command (in the "
12152 "C<BUSY> state)."
12153 msgstr ""
12154
12155 #. type: =head2
12156 #: ../src/guestfs-actions.pod:3438
12157 msgid "guestfs_is_chardev"
12158 msgstr ""
12159
12160 #. type: verbatim
12161 #: ../src/guestfs-actions.pod:3440
12162 #, no-wrap
12163 msgid ""
12164 " int\n"
12165 " guestfs_is_chardev (guestfs_h *g,\n"
12166 "                     const char *path);\n"
12167 "\n"
12168 msgstr ""
12169
12170 #. type: textblock
12171 #: ../src/guestfs-actions.pod:3444 ../fish/guestfish-actions.pod:2368
12172 msgid ""
12173 "This returns C<true> if and only if there is a character device with the "
12174 "given C<path> name."
12175 msgstr ""
12176
12177 #. type: =head2
12178 #: ../src/guestfs-actions.pod:3453
12179 msgid "guestfs_is_config"
12180 msgstr ""
12181
12182 #. type: verbatim
12183 #: ../src/guestfs-actions.pod:3455
12184 #, no-wrap
12185 msgid ""
12186 " int\n"
12187 " guestfs_is_config (guestfs_h *g);\n"
12188 "\n"
12189 msgstr ""
12190
12191 #. type: textblock
12192 #: ../src/guestfs-actions.pod:3458 ../fish/guestfish-actions.pod:2377
12193 msgid ""
12194 "This returns true iff this handle is being configured (in the C<CONFIG> "
12195 "state)."
12196 msgstr ""
12197
12198 #. type: =head2
12199 #: ../src/guestfs-actions.pod:3467
12200 msgid "guestfs_is_dir"
12201 msgstr ""
12202
12203 #. type: verbatim
12204 #: ../src/guestfs-actions.pod:3469
12205 #, no-wrap
12206 msgid ""
12207 " int\n"
12208 " guestfs_is_dir (guestfs_h *g,\n"
12209 "                 const char *path);\n"
12210 "\n"
12211 msgstr ""
12212
12213 #. type: textblock
12214 #: ../src/guestfs-actions.pod:3473 ../fish/guestfish-actions.pod:2386
12215 msgid ""
12216 "This returns C<true> if and only if there is a directory with the given "
12217 "C<path> name.  Note that it returns false for other objects like files."
12218 msgstr ""
12219
12220 #. type: =head2
12221 #: ../src/guestfs-actions.pod:3483
12222 msgid "guestfs_is_fifo"
12223 msgstr ""
12224
12225 #. type: verbatim
12226 #: ../src/guestfs-actions.pod:3485
12227 #, no-wrap
12228 msgid ""
12229 " int\n"
12230 " guestfs_is_fifo (guestfs_h *g,\n"
12231 "                  const char *path);\n"
12232 "\n"
12233 msgstr ""
12234
12235 #. type: textblock
12236 #: ../src/guestfs-actions.pod:3489 ../fish/guestfish-actions.pod:2396
12237 msgid ""
12238 "This returns C<true> if and only if there is a FIFO (named pipe)  with the "
12239 "given C<path> name."
12240 msgstr ""
12241
12242 #. type: =head2
12243 #: ../src/guestfs-actions.pod:3498
12244 msgid "guestfs_is_file"
12245 msgstr ""
12246
12247 #. type: verbatim
12248 #: ../src/guestfs-actions.pod:3500
12249 #, no-wrap
12250 msgid ""
12251 " int\n"
12252 " guestfs_is_file (guestfs_h *g,\n"
12253 "                  const char *path);\n"
12254 "\n"
12255 msgstr ""
12256
12257 #. type: textblock
12258 #: ../src/guestfs-actions.pod:3504 ../fish/guestfish-actions.pod:2405
12259 msgid ""
12260 "This returns C<true> if and only if there is a regular file with the given "
12261 "C<path> name.  Note that it returns false for other objects like "
12262 "directories."
12263 msgstr ""
12264
12265 #. type: =head2
12266 #: ../src/guestfs-actions.pod:3514
12267 msgid "guestfs_is_launching"
12268 msgstr ""
12269
12270 #. type: verbatim
12271 #: ../src/guestfs-actions.pod:3516
12272 #, no-wrap
12273 msgid ""
12274 " int\n"
12275 " guestfs_is_launching (guestfs_h *g);\n"
12276 "\n"
12277 msgstr ""
12278
12279 #. type: textblock
12280 #: ../src/guestfs-actions.pod:3519 ../fish/guestfish-actions.pod:2415
12281 msgid ""
12282 "This returns true iff this handle is launching the subprocess (in the "
12283 "C<LAUNCHING> state)."
12284 msgstr ""
12285
12286 #. type: =head2
12287 #: ../src/guestfs-actions.pod:3528
12288 msgid "guestfs_is_lv"
12289 msgstr ""
12290
12291 #. type: verbatim
12292 #: ../src/guestfs-actions.pod:3530
12293 #, no-wrap
12294 msgid ""
12295 " int\n"
12296 " guestfs_is_lv (guestfs_h *g,\n"
12297 "                const char *device);\n"
12298 "\n"
12299 msgstr ""
12300
12301 #. type: textblock
12302 #: ../src/guestfs-actions.pod:3534 ../fish/guestfish-actions.pod:2424
12303 msgid ""
12304 "This command tests whether C<device> is a logical volume, and returns true "
12305 "iff this is the case."
12306 msgstr ""
12307
12308 #. type: =head2
12309 #: ../src/guestfs-actions.pod:3541
12310 msgid "guestfs_is_ready"
12311 msgstr ""
12312
12313 #. type: verbatim
12314 #: ../src/guestfs-actions.pod:3543
12315 #, no-wrap
12316 msgid ""
12317 " int\n"
12318 " guestfs_is_ready (guestfs_h *g);\n"
12319 "\n"
12320 msgstr ""
12321
12322 #. type: textblock
12323 #: ../src/guestfs-actions.pod:3546 ../fish/guestfish-actions.pod:2431
12324 msgid ""
12325 "This returns true iff this handle is ready to accept commands (in the "
12326 "C<READY> state)."
12327 msgstr ""
12328
12329 #. type: =head2
12330 #: ../src/guestfs-actions.pod:3555
12331 msgid "guestfs_is_socket"
12332 msgstr ""
12333
12334 #. type: verbatim
12335 #: ../src/guestfs-actions.pod:3557
12336 #, no-wrap
12337 msgid ""
12338 " int\n"
12339 " guestfs_is_socket (guestfs_h *g,\n"
12340 "                    const char *path);\n"
12341 "\n"
12342 msgstr ""
12343
12344 #. type: textblock
12345 #: ../src/guestfs-actions.pod:3561 ../fish/guestfish-actions.pod:2440
12346 msgid ""
12347 "This returns C<true> if and only if there is a Unix domain socket with the "
12348 "given C<path> name."
12349 msgstr ""
12350
12351 #. type: =head2
12352 #: ../src/guestfs-actions.pod:3570
12353 msgid "guestfs_is_symlink"
12354 msgstr ""
12355
12356 #. type: verbatim
12357 #: ../src/guestfs-actions.pod:3572
12358 #, no-wrap
12359 msgid ""
12360 " int\n"
12361 " guestfs_is_symlink (guestfs_h *g,\n"
12362 "                     const char *path);\n"
12363 "\n"
12364 msgstr ""
12365
12366 #. type: textblock
12367 #: ../src/guestfs-actions.pod:3576 ../fish/guestfish-actions.pod:2449
12368 msgid ""
12369 "This returns C<true> if and only if there is a symbolic link with the given "
12370 "C<path> name."
12371 msgstr ""
12372
12373 #. type: =head2
12374 #: ../src/guestfs-actions.pod:3585
12375 msgid "guestfs_is_zero"
12376 msgstr ""
12377
12378 #. type: verbatim
12379 #: ../src/guestfs-actions.pod:3587
12380 #, no-wrap
12381 msgid ""
12382 " int\n"
12383 " guestfs_is_zero (guestfs_h *g,\n"
12384 "                  const char *path);\n"
12385 "\n"
12386 msgstr ""
12387
12388 #. type: textblock
12389 #: ../src/guestfs-actions.pod:3591 ../fish/guestfish-actions.pod:2458
12390 msgid ""
12391 "This returns true iff the file exists and the file is empty or it contains "
12392 "all zero bytes."
12393 msgstr ""
12394
12395 #. type: textblock
12396 #: ../src/guestfs-actions.pod:3596 ../src/guestfs-actions.pod:3610
12397 msgid "(Added in 1.11.8)"
12398 msgstr ""
12399
12400 #. type: =head2
12401 #: ../src/guestfs-actions.pod:3598
12402 msgid "guestfs_is_zero_device"
12403 msgstr ""
12404
12405 #. type: verbatim
12406 #: ../src/guestfs-actions.pod:3600
12407 #, no-wrap
12408 msgid ""
12409 " int\n"
12410 " guestfs_is_zero_device (guestfs_h *g,\n"
12411 "                         const char *device);\n"
12412 "\n"
12413 msgstr ""
12414
12415 #. type: textblock
12416 #: ../src/guestfs-actions.pod:3604 ../fish/guestfish-actions.pod:2465
12417 msgid "This returns true iff the device exists and contains all zero bytes."
12418 msgstr ""
12419
12420 #. type: textblock
12421 #: ../src/guestfs-actions.pod:3606 ../fish/guestfish-actions.pod:2467
12422 msgid "Note that for large devices this can take a long time to run."
12423 msgstr ""
12424
12425 #. type: =head2
12426 #: ../src/guestfs-actions.pod:3612
12427 msgid "guestfs_kill_subprocess"
12428 msgstr ""
12429
12430 #. type: verbatim
12431 #: ../src/guestfs-actions.pod:3614
12432 #, no-wrap
12433 msgid ""
12434 " int\n"
12435 " guestfs_kill_subprocess (guestfs_h *g);\n"
12436 "\n"
12437 msgstr ""
12438
12439 #. type: textblock
12440 #: ../src/guestfs-actions.pod:3617 ../fish/guestfish-actions.pod:2473
12441 msgid "This kills the qemu subprocess.  You should never need to call this."
12442 msgstr ""
12443
12444 #. type: =head2
12445 #: ../src/guestfs-actions.pod:3623
12446 msgid "guestfs_launch"
12447 msgstr ""
12448
12449 #. type: verbatim
12450 #: ../src/guestfs-actions.pod:3625
12451 #, no-wrap
12452 msgid ""
12453 " int\n"
12454 " guestfs_launch (guestfs_h *g);\n"
12455 "\n"
12456 msgstr ""
12457
12458 #. type: textblock
12459 #: ../src/guestfs-actions.pod:3628 ../fish/guestfish-actions.pod:2481
12460 msgid ""
12461 "Internally libguestfs is implemented by running a virtual machine using "
12462 "L<qemu(1)>."
12463 msgstr ""
12464
12465 #. type: textblock
12466 #: ../src/guestfs-actions.pod:3631 ../fish/guestfish-actions.pod:2484
12467 msgid ""
12468 "You should call this after configuring the handle (eg. adding drives) but "
12469 "before performing any actions."
12470 msgstr ""
12471
12472 #. type: =head2
12473 #: ../src/guestfs-actions.pod:3643
12474 msgid "guestfs_lchown"
12475 msgstr ""
12476
12477 #. type: verbatim
12478 #: ../src/guestfs-actions.pod:3645
12479 #, no-wrap
12480 msgid ""
12481 " int\n"
12482 " guestfs_lchown (guestfs_h *g,\n"
12483 "                 int owner,\n"
12484 "                 int group,\n"
12485 "                 const char *path);\n"
12486 "\n"
12487 msgstr ""
12488
12489 #. type: textblock
12490 #: ../src/guestfs-actions.pod:3651
12491 msgid ""
12492 "Change the file owner to C<owner> and group to C<group>.  This is like "
12493 "C<guestfs_chown> but if C<path> is a symlink then the link itself is "
12494 "changed, not the target."
12495 msgstr ""
12496
12497 #. type: =head2
12498 #: ../src/guestfs-actions.pod:3663
12499 msgid "guestfs_lgetxattr"
12500 msgstr ""
12501
12502 #. type: verbatim
12503 #: ../src/guestfs-actions.pod:3665
12504 #, no-wrap
12505 msgid ""
12506 " char *\n"
12507 " guestfs_lgetxattr (guestfs_h *g,\n"
12508 "                    const char *path,\n"
12509 "                    const char *name,\n"
12510 "                    size_t *size_r);\n"
12511 "\n"
12512 msgstr ""
12513
12514 #. type: textblock
12515 #: ../src/guestfs-actions.pod:3671 ../fish/guestfish-actions.pod:2503
12516 msgid ""
12517 "Get a single extended attribute from file C<path> named C<name>.  If C<path>"
12518 " is a symlink, then this call returns an extended attribute from the "
12519 "symlink."
12520 msgstr ""
12521
12522 #. type: textblock
12523 #: ../src/guestfs-actions.pod:3685
12524 msgid "See also: C<guestfs_lgetxattrs>, C<guestfs_getxattr>, L<attr(5)>."
12525 msgstr ""
12526
12527 #. type: =head2
12528 #: ../src/guestfs-actions.pod:3693
12529 msgid "guestfs_lgetxattrs"
12530 msgstr ""
12531
12532 #. type: verbatim
12533 #: ../src/guestfs-actions.pod:3695
12534 #, no-wrap
12535 msgid ""
12536 " struct guestfs_xattr_list *\n"
12537 " guestfs_lgetxattrs (guestfs_h *g,\n"
12538 "                     const char *path);\n"
12539 "\n"
12540 msgstr ""
12541
12542 #. type: textblock
12543 #: ../src/guestfs-actions.pod:3699
12544 msgid ""
12545 "This is the same as C<guestfs_getxattrs>, but if C<path> is a symbolic link,"
12546 " then it returns the extended attributes of the link itself."
12547 msgstr ""
12548
12549 #. type: =head2
12550 #: ../src/guestfs-actions.pod:3709
12551 msgid "guestfs_list_9p"
12552 msgstr ""
12553
12554 #. type: verbatim
12555 #: ../src/guestfs-actions.pod:3711
12556 #, no-wrap
12557 msgid ""
12558 " char **\n"
12559 " guestfs_list_9p (guestfs_h *g);\n"
12560 "\n"
12561 msgstr ""
12562
12563 #. type: textblock
12564 #: ../src/guestfs-actions.pod:3714 ../fish/guestfish-actions.pod:2531
12565 msgid ""
12566 "List all 9p filesystems attached to the guest.  A list of mount tags is "
12567 "returned."
12568 msgstr ""
12569
12570 #. type: =head2
12571 #: ../src/guestfs-actions.pod:3723
12572 msgid "guestfs_list_devices"
12573 msgstr ""
12574
12575 #. type: verbatim
12576 #: ../src/guestfs-actions.pod:3725
12577 #, no-wrap
12578 msgid ""
12579 " char **\n"
12580 " guestfs_list_devices (guestfs_h *g);\n"
12581 "\n"
12582 msgstr ""
12583
12584 #. type: textblock
12585 #: ../src/guestfs-actions.pod:3728 ../fish/guestfish-actions.pod:2538
12586 msgid "List all the block devices."
12587 msgstr ""
12588
12589 #. type: textblock
12590 #: ../src/guestfs-actions.pod:3730 ../fish/guestfish-actions.pod:2540
12591 msgid "The full block device names are returned, eg. C</dev/sda>."
12592 msgstr ""
12593
12594 #. type: =head2
12595 #: ../src/guestfs-actions.pod:3740
12596 msgid "guestfs_list_dm_devices"
12597 msgstr ""
12598
12599 #. type: verbatim
12600 #: ../src/guestfs-actions.pod:3742
12601 #, no-wrap
12602 msgid ""
12603 " char **\n"
12604 " guestfs_list_dm_devices (guestfs_h *g);\n"
12605 "\n"
12606 msgstr ""
12607
12608 #. type: textblock
12609 #: ../src/guestfs-actions.pod:3745 ../fish/guestfish-actions.pod:2548
12610 msgid "List all device mapper devices."
12611 msgstr ""
12612
12613 #. type: textblock
12614 #: ../src/guestfs-actions.pod:3747
12615 msgid ""
12616 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
12617 "previous call to C<guestfs_luks_open>."
12618 msgstr ""
12619
12620 #. type: textblock
12621 #: ../src/guestfs-actions.pod:3750
12622 msgid ""
12623 "Device mapper devices which correspond to logical volumes are I<not> "
12624 "returned in this list.  Call C<guestfs_lvs> if you want to list logical "
12625 "volumes."
12626 msgstr ""
12627
12628 #. type: textblock
12629 #: ../src/guestfs-actions.pod:3758 ../src/guestfs-actions.pod:5214
12630 msgid "(Added in 1.11.15)"
12631 msgstr ""
12632
12633 #. type: =head2
12634 #: ../src/guestfs-actions.pod:3760
12635 msgid "guestfs_list_filesystems"
12636 msgstr ""
12637
12638 #. type: verbatim
12639 #: ../src/guestfs-actions.pod:3762
12640 #, no-wrap
12641 msgid ""
12642 " char **\n"
12643 " guestfs_list_filesystems (guestfs_h *g);\n"
12644 "\n"
12645 msgstr ""
12646
12647 #. type: textblock
12648 #: ../src/guestfs-actions.pod:3765 ../fish/guestfish-actions.pod:2561
12649 msgid ""
12650 "This inspection command looks for filesystems on partitions, block devices "
12651 "and logical volumes, returning a list of devices containing filesystems and "
12652 "their type."
12653 msgstr ""
12654
12655 #. type: textblock
12656 #: ../src/guestfs-actions.pod:3769 ../fish/guestfish-actions.pod:2565
12657 msgid ""
12658 "The return value is a hash, where the keys are the devices containing "
12659 "filesystems, and the values are the filesystem types.  For example:"
12660 msgstr ""
12661
12662 #. type: verbatim
12663 #: ../src/guestfs-actions.pod:3773 ../fish/guestfish-actions.pod:2569
12664 #, no-wrap
12665 msgid ""
12666 " \"/dev/sda1\" => \"ntfs\"\n"
12667 " \"/dev/sda2\" => \"ext2\"\n"
12668 " \"/dev/vg_guest/lv_root\" => \"ext4\"\n"
12669 " \"/dev/vg_guest/lv_swap\" => \"swap\"\n"
12670 "\n"
12671 msgstr ""
12672
12673 #. type: textblock
12674 #: ../src/guestfs-actions.pod:3778 ../fish/guestfish-actions.pod:2574
12675 msgid ""
12676 "The value can have the special value \"unknown\", meaning the content of the"
12677 " device is undetermined or empty.  \"swap\" means a Linux swap partition."
12678 msgstr ""
12679
12680 #. type: textblock
12681 #: ../src/guestfs-actions.pod:3782
12682 msgid ""
12683 "This command runs other libguestfs commands, which might include "
12684 "C<guestfs_mount> and C<guestfs_umount>, and therefore you should use this "
12685 "soon after launch and only when nothing is mounted."
12686 msgstr ""
12687
12688 #. type: textblock
12689 #: ../src/guestfs-actions.pod:3786
12690 msgid ""
12691 "Not all of the filesystems returned will be mountable.  In particular, swap "
12692 "partitions are returned in the list.  Also this command does not check that "
12693 "each filesystem found is valid and mountable, and some filesystems might be "
12694 "mountable but require special options.  Filesystems may not all belong to a "
12695 "single logical operating system (use C<guestfs_inspect_os> to look for "
12696 "OSes)."
12697 msgstr ""
12698
12699 #. type: textblock
12700 #: ../src/guestfs-actions.pod:3800 ../src/guestfs-actions.pod:5569
12701 msgid "(Added in 1.5.15)"
12702 msgstr ""
12703
12704 #. type: =head2
12705 #: ../src/guestfs-actions.pod:3802
12706 msgid "guestfs_list_partitions"
12707 msgstr ""
12708
12709 #. type: verbatim
12710 #: ../src/guestfs-actions.pod:3804
12711 #, no-wrap
12712 msgid ""
12713 " char **\n"
12714 " guestfs_list_partitions (guestfs_h *g);\n"
12715 "\n"
12716 msgstr ""
12717
12718 #. type: textblock
12719 #: ../src/guestfs-actions.pod:3807 ../fish/guestfish-actions.pod:2594
12720 msgid "List all the partitions detected on all block devices."
12721 msgstr ""
12722
12723 #. type: textblock
12724 #: ../src/guestfs-actions.pod:3809 ../fish/guestfish-actions.pod:2596
12725 msgid "The full partition device names are returned, eg. C</dev/sda1>"
12726 msgstr ""
12727
12728 #. type: textblock
12729 #: ../src/guestfs-actions.pod:3811
12730 msgid ""
12731 "This does not return logical volumes.  For that you will need to call "
12732 "C<guestfs_lvs>."
12733 msgstr ""
12734
12735 #. type: =head2
12736 #: ../src/guestfs-actions.pod:3822
12737 msgid "guestfs_ll"
12738 msgstr ""
12739
12740 #. type: verbatim
12741 #: ../src/guestfs-actions.pod:3824
12742 #, no-wrap
12743 msgid ""
12744 " char *\n"
12745 " guestfs_ll (guestfs_h *g,\n"
12746 "             const char *directory);\n"
12747 "\n"
12748 msgstr ""
12749
12750 #. type: textblock
12751 #: ../src/guestfs-actions.pod:3828 ../fish/guestfish-actions.pod:2607
12752 msgid ""
12753 "List the files in C<directory> (relative to the root directory, there is no "
12754 "cwd) in the format of 'ls -la'."
12755 msgstr ""
12756
12757 #. type: textblock
12758 #: ../src/guestfs-actions.pod:3831 ../fish/guestfish-actions.pod:2610
12759 msgid ""
12760 "This command is mostly useful for interactive sessions.  It is I<not> "
12761 "intended that you try to parse the output string."
12762 msgstr ""
12763
12764 #. type: =head2
12765 #: ../src/guestfs-actions.pod:3839
12766 msgid "guestfs_ln"
12767 msgstr ""
12768
12769 #. type: verbatim
12770 #: ../src/guestfs-actions.pod:3841
12771 #, no-wrap
12772 msgid ""
12773 " int\n"
12774 " guestfs_ln (guestfs_h *g,\n"
12775 "             const char *target,\n"
12776 "             const char *linkname);\n"
12777 "\n"
12778 msgstr ""
12779
12780 #. type: textblock
12781 #: ../src/guestfs-actions.pod:3846 ../fish/guestfish-actions.pod:2617
12782 msgid "This command creates a hard link using the C<ln> command."
12783 msgstr ""
12784
12785 #. type: =head2
12786 #: ../src/guestfs-actions.pod:3852
12787 msgid "guestfs_ln_f"
12788 msgstr ""
12789
12790 #. type: verbatim
12791 #: ../src/guestfs-actions.pod:3854
12792 #, no-wrap
12793 msgid ""
12794 " int\n"
12795 " guestfs_ln_f (guestfs_h *g,\n"
12796 "               const char *target,\n"
12797 "               const char *linkname);\n"
12798 "\n"
12799 msgstr ""
12800
12801 #. type: textblock
12802 #: ../src/guestfs-actions.pod:3859 ../fish/guestfish-actions.pod:2623
12803 msgid ""
12804 "This command creates a hard link using the C<ln -f> command.  The I<-f> "
12805 "option removes the link (C<linkname>) if it exists already."
12806 msgstr ""
12807
12808 #. type: =head2
12809 #: ../src/guestfs-actions.pod:3866
12810 msgid "guestfs_ln_s"
12811 msgstr ""
12812
12813 #. type: verbatim
12814 #: ../src/guestfs-actions.pod:3868
12815 #, no-wrap
12816 msgid ""
12817 " int\n"
12818 " guestfs_ln_s (guestfs_h *g,\n"
12819 "               const char *target,\n"
12820 "               const char *linkname);\n"
12821 "\n"
12822 msgstr ""
12823
12824 #. type: textblock
12825 #: ../src/guestfs-actions.pod:3873 ../fish/guestfish-actions.pod:2630
12826 msgid "This command creates a symbolic link using the C<ln -s> command."
12827 msgstr ""
12828
12829 #. type: =head2
12830 #: ../src/guestfs-actions.pod:3879
12831 msgid "guestfs_ln_sf"
12832 msgstr ""
12833
12834 #. type: verbatim
12835 #: ../src/guestfs-actions.pod:3881
12836 #, no-wrap
12837 msgid ""
12838 " int\n"
12839 " guestfs_ln_sf (guestfs_h *g,\n"
12840 "                const char *target,\n"
12841 "                const char *linkname);\n"
12842 "\n"
12843 msgstr ""
12844
12845 #. type: textblock
12846 #: ../src/guestfs-actions.pod:3886 ../fish/guestfish-actions.pod:2636
12847 msgid ""
12848 "This command creates a symbolic link using the C<ln -sf> command, The I<-f> "
12849 "option removes the link (C<linkname>) if it exists already."
12850 msgstr ""
12851
12852 #. type: =head2
12853 #: ../src/guestfs-actions.pod:3893
12854 msgid "guestfs_lremovexattr"
12855 msgstr ""
12856
12857 #. type: verbatim
12858 #: ../src/guestfs-actions.pod:3895
12859 #, no-wrap
12860 msgid ""
12861 " int\n"
12862 " guestfs_lremovexattr (guestfs_h *g,\n"
12863 "                       const char *xattr,\n"
12864 "                       const char *path);\n"
12865 "\n"
12866 msgstr ""
12867
12868 #. type: textblock
12869 #: ../src/guestfs-actions.pod:3900
12870 msgid ""
12871 "This is the same as C<guestfs_removexattr>, but if C<path> is a symbolic "
12872 "link, then it removes an extended attribute of the link itself."
12873 msgstr ""
12874
12875 #. type: =head2
12876 #: ../src/guestfs-actions.pod:3908
12877 msgid "guestfs_ls"
12878 msgstr ""
12879
12880 #. type: verbatim
12881 #: ../src/guestfs-actions.pod:3910
12882 #, no-wrap
12883 msgid ""
12884 " char **\n"
12885 " guestfs_ls (guestfs_h *g,\n"
12886 "             const char *directory);\n"
12887 "\n"
12888 msgstr ""
12889
12890 #. type: textblock
12891 #: ../src/guestfs-actions.pod:3914 ../fish/guestfish-actions.pod:2651
12892 msgid ""
12893 "List the files in C<directory> (relative to the root directory, there is no "
12894 "cwd).  The '.' and '..' entries are not returned, but hidden files are "
12895 "shown."
12896 msgstr ""
12897
12898 #. type: textblock
12899 #: ../src/guestfs-actions.pod:3918
12900 msgid ""
12901 "This command is mostly useful for interactive sessions.  Programs should "
12902 "probably use C<guestfs_readdir> instead."
12903 msgstr ""
12904
12905 #. type: =head2
12906 #: ../src/guestfs-actions.pod:3927
12907 msgid "guestfs_lsetxattr"
12908 msgstr ""
12909
12910 #. type: verbatim
12911 #: ../src/guestfs-actions.pod:3929
12912 #, no-wrap
12913 msgid ""
12914 " int\n"
12915 " guestfs_lsetxattr (guestfs_h *g,\n"
12916 "                    const char *xattr,\n"
12917 "                    const char *val,\n"
12918 "                    int vallen,\n"
12919 "                    const char *path);\n"
12920 "\n"
12921 msgstr ""
12922
12923 #. type: textblock
12924 #: ../src/guestfs-actions.pod:3936
12925 msgid ""
12926 "This is the same as C<guestfs_setxattr>, but if C<path> is a symbolic link, "
12927 "then it sets an extended attribute of the link itself."
12928 msgstr ""
12929
12930 #. type: =head2
12931 #: ../src/guestfs-actions.pod:3944
12932 msgid "guestfs_lstat"
12933 msgstr ""
12934
12935 #. type: verbatim
12936 #: ../src/guestfs-actions.pod:3946
12937 #, no-wrap
12938 msgid ""
12939 " struct guestfs_stat *\n"
12940 " guestfs_lstat (guestfs_h *g,\n"
12941 "                const char *path);\n"
12942 "\n"
12943 msgstr ""
12944
12945 #. type: textblock
12946 #: ../src/guestfs-actions.pod:3950 ../src/guestfs-actions.pod:6721
12947 #: ../fish/guestfish-actions.pod:2670 ../fish/guestfish-actions.pod:4472
12948 msgid "Returns file information for the given C<path>."
12949 msgstr ""
12950
12951 #. type: textblock
12952 #: ../src/guestfs-actions.pod:3952
12953 msgid ""
12954 "This is the same as C<guestfs_stat> except that if C<path> is a symbolic "
12955 "link, then the link is stat-ed, not the file it refers to."
12956 msgstr ""
12957
12958 #. type: textblock
12959 #: ../src/guestfs-actions.pod:3956 ../fish/guestfish-actions.pod:2676
12960 msgid "This is the same as the C<lstat(2)> system call."
12961 msgstr ""
12962
12963 #. type: textblock
12964 #: ../src/guestfs-actions.pod:3958 ../src/guestfs-actions.pod:6725
12965 msgid ""
12966 "This function returns a C<struct guestfs_stat *>, or NULL if there was an "
12967 "error.  I<The caller must call C<guestfs_free_stat> after use>."
12968 msgstr ""
12969
12970 #. type: textblock
12971 #: ../src/guestfs-actions.pod:3962 ../src/guestfs-actions.pod:6729
12972 #: ../src/guestfs-actions.pod:6747 ../src/guestfs-actions.pod:7128
12973 msgid "(Added in 0.9.2)"
12974 msgstr ""
12975
12976 #. type: =head2
12977 #: ../src/guestfs-actions.pod:3964
12978 msgid "guestfs_lstatlist"
12979 msgstr ""
12980
12981 #. type: verbatim
12982 #: ../src/guestfs-actions.pod:3966
12983 #, no-wrap
12984 msgid ""
12985 " struct guestfs_stat_list *\n"
12986 " guestfs_lstatlist (guestfs_h *g,\n"
12987 "                    const char *path,\n"
12988 "                    char *const *names);\n"
12989 "\n"
12990 msgstr ""
12991
12992 #. type: textblock
12993 #: ../src/guestfs-actions.pod:3971
12994 msgid ""
12995 "This call allows you to perform the C<guestfs_lstat> operation on multiple "
12996 "files, where all files are in the directory C<path>.  C<names> is the list "
12997 "of files from this directory."
12998 msgstr ""
12999
13000 #. type: textblock
13001 #: ../src/guestfs-actions.pod:3975 ../fish/guestfish-actions.pod:2686
13002 msgid ""
13003 "On return you get a list of stat structs, with a one-to-one correspondence "
13004 "to the C<names> list.  If any name did not exist or could not be lstat'd, "
13005 "then the C<ino> field of that structure is set to C<-1>."
13006 msgstr ""
13007
13008 #. type: textblock
13009 #: ../src/guestfs-actions.pod:3980
13010 msgid ""
13011 "This call is intended for programs that want to efficiently list a directory"
13012 " contents without making many round-trips.  See also C<guestfs_lxattrlist> "
13013 "for a similarly efficient call for getting extended attributes.  Very long "
13014 "directory listings might cause the protocol message size to be exceeded, "
13015 "causing this call to fail.  The caller must split up such requests into "
13016 "smaller groups of names."
13017 msgstr ""
13018
13019 #. type: textblock
13020 #: ../src/guestfs-actions.pod:3988
13021 msgid ""
13022 "This function returns a C<struct guestfs_stat_list *>, or NULL if there was "
13023 "an error.  I<The caller must call C<guestfs_free_stat_list> after use>."
13024 msgstr ""
13025
13026 #. type: =head2
13027 #: ../src/guestfs-actions.pod:3994
13028 msgid "guestfs_luks_add_key"
13029 msgstr ""
13030
13031 #. type: verbatim
13032 #: ../src/guestfs-actions.pod:3996
13033 #, no-wrap
13034 msgid ""
13035 " int\n"
13036 " guestfs_luks_add_key (guestfs_h *g,\n"
13037 "                       const char *device,\n"
13038 "                       const char *key,\n"
13039 "                       const char *newkey,\n"
13040 "                       int keyslot);\n"
13041 "\n"
13042 msgstr ""
13043
13044 #. type: textblock
13045 #: ../src/guestfs-actions.pod:4003 ../fish/guestfish-actions.pod:2703
13046 msgid ""
13047 "This command adds a new key on LUKS device C<device>.  C<key> is any "
13048 "existing key, and is used to access the device.  C<newkey> is the new key to"
13049 " add.  C<keyslot> is the key slot that will be replaced."
13050 msgstr ""
13051
13052 #. type: textblock
13053 #: ../src/guestfs-actions.pod:4008
13054 msgid ""
13055 "Note that if C<keyslot> already contains a key, then this command will fail."
13056 "  You have to use C<guestfs_luks_kill_slot> first to remove that key."
13057 msgstr ""
13058
13059 #. type: textblock
13060 #: ../src/guestfs-actions.pod:4014 ../src/guestfs-actions.pod:4054
13061 #: ../src/guestfs-actions.pod:4077 ../src/guestfs-actions.pod:4097
13062 #: ../src/guestfs-actions.pod:4132 ../src/guestfs-actions.pod:4151
13063 msgid ""
13064 "This function takes a key or passphrase parameter which could contain "
13065 "sensitive material.  Read the section L</KEYS AND PASSPHRASES> for more "
13066 "information."
13067 msgstr ""
13068
13069 #. type: textblock
13070 #: ../src/guestfs-actions.pod:4018 ../src/guestfs-actions.pod:4058
13071 #: ../src/guestfs-actions.pod:4081 ../src/guestfs-actions.pod:4101
13072 msgid "(Added in 1.5.2)"
13073 msgstr ""
13074
13075 #. type: =head2
13076 #: ../src/guestfs-actions.pod:4020
13077 msgid "guestfs_luks_close"
13078 msgstr ""
13079
13080 #. type: verbatim
13081 #: ../src/guestfs-actions.pod:4022
13082 #, no-wrap
13083 msgid ""
13084 " int\n"
13085 " guestfs_luks_close (guestfs_h *g,\n"
13086 "                     const char *device);\n"
13087 "\n"
13088 msgstr ""
13089
13090 #. type: textblock
13091 #: ../src/guestfs-actions.pod:4026
13092 msgid ""
13093 "This closes a LUKS device that was created earlier by C<guestfs_luks_open> "
13094 "or C<guestfs_luks_open_ro>.  The C<device> parameter must be the name of the"
13095 " LUKS mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the"
13096 " underlying block device."
13097 msgstr ""
13098
13099 #. type: textblock
13100 #: ../src/guestfs-actions.pod:4034 ../src/guestfs-actions.pod:4136
13101 #: ../src/guestfs-actions.pod:4155 ../src/guestfs-actions.pod:4205
13102 #: ../src/guestfs-actions.pod:4253
13103 msgid "(Added in 1.5.1)"
13104 msgstr ""
13105
13106 #. type: =head2
13107 #: ../src/guestfs-actions.pod:4036
13108 msgid "guestfs_luks_format"
13109 msgstr ""
13110
13111 #. type: verbatim
13112 #: ../src/guestfs-actions.pod:4038
13113 #, no-wrap
13114 msgid ""
13115 " int\n"
13116 " guestfs_luks_format (guestfs_h *g,\n"
13117 "                      const char *device,\n"
13118 "                      const char *key,\n"
13119 "                      int keyslot);\n"
13120 "\n"
13121 msgstr ""
13122
13123 #. type: textblock
13124 #: ../src/guestfs-actions.pod:4044 ../fish/guestfish-actions.pod:2729
13125 msgid ""
13126 "This command erases existing data on C<device> and formats the device as a "
13127 "LUKS encrypted device.  C<key> is the initial key, which is added to key "
13128 "slot C<slot>.  (LUKS supports 8 key slots, numbered 0-7)."
13129 msgstr ""
13130
13131 #. type: textblock
13132 #: ../src/guestfs-actions.pod:4051 ../src/guestfs-actions.pod:4074
13133 #: ../src/guestfs-actions.pod:4217 ../src/guestfs-actions.pod:5320
13134 #: ../src/guestfs-actions.pod:6102 ../src/guestfs-actions.pod:6528
13135 #: ../src/guestfs-actions.pod:6558 ../src/guestfs-actions.pod:6591
13136 #: ../src/guestfs-actions.pod:7787 ../fish/guestfish-actions.pod:2737
13137 #: ../fish/guestfish-actions.pod:2750 ../fish/guestfish-actions.pod:2837
13138 #: ../fish/guestfish-actions.pod:3498 ../fish/guestfish-actions.pod:4018
13139 #: ../fish/guestfish-actions.pod:4343 ../fish/guestfish-actions.pod:4366
13140 #: ../fish/guestfish-actions.pod:4388 ../fish/guestfish-actions.pod:5126
13141 msgid ""
13142 "B<This command is dangerous.  Without careful use you can easily destroy all"
13143 " your data>."
13144 msgstr ""
13145
13146 #. type: =head2
13147 #: ../src/guestfs-actions.pod:4060
13148 msgid "guestfs_luks_format_cipher"
13149 msgstr ""
13150
13151 #. type: verbatim
13152 #: ../src/guestfs-actions.pod:4062
13153 #, no-wrap
13154 msgid ""
13155 " int\n"
13156 " guestfs_luks_format_cipher (guestfs_h *g,\n"
13157 "                             const char *device,\n"
13158 "                             const char *key,\n"
13159 "                             int keyslot,\n"
13160 "                             const char *cipher);\n"
13161 "\n"
13162 msgstr ""
13163
13164 #. type: textblock
13165 #: ../src/guestfs-actions.pod:4069
13166 msgid ""
13167 "This command is the same as C<guestfs_luks_format> but it also allows you to"
13168 " set the C<cipher> used."
13169 msgstr ""
13170
13171 #. type: =head2
13172 #: ../src/guestfs-actions.pod:4083
13173 msgid "guestfs_luks_kill_slot"
13174 msgstr ""
13175
13176 #. type: verbatim
13177 #: ../src/guestfs-actions.pod:4085
13178 #, no-wrap
13179 msgid ""
13180 " int\n"
13181 " guestfs_luks_kill_slot (guestfs_h *g,\n"
13182 "                         const char *device,\n"
13183 "                         const char *key,\n"
13184 "                         int keyslot);\n"
13185 "\n"
13186 msgstr ""
13187
13188 #. type: textblock
13189 #: ../src/guestfs-actions.pod:4091 ../fish/guestfish-actions.pod:2757
13190 msgid ""
13191 "This command deletes the key in key slot C<keyslot> from the encrypted LUKS "
13192 "device C<device>.  C<key> must be one of the I<other> keys."
13193 msgstr ""
13194
13195 #. type: =head2
13196 #: ../src/guestfs-actions.pod:4103
13197 msgid "guestfs_luks_open"
13198 msgstr ""
13199
13200 #. type: verbatim
13201 #: ../src/guestfs-actions.pod:4105
13202 #, no-wrap
13203 msgid ""
13204 " int\n"
13205 " guestfs_luks_open (guestfs_h *g,\n"
13206 "                    const char *device,\n"
13207 "                    const char *key,\n"
13208 "                    const char *mapname);\n"
13209 "\n"
13210 msgstr ""
13211
13212 #. type: textblock
13213 #: ../src/guestfs-actions.pod:4111 ../fish/guestfish-actions.pod:2768
13214 msgid ""
13215 "This command opens a block device which has been encrypted according to the "
13216 "Linux Unified Key Setup (LUKS) standard."
13217 msgstr ""
13218
13219 #. type: textblock
13220 #: ../src/guestfs-actions.pod:4114 ../fish/guestfish-actions.pod:2771
13221 msgid "C<device> is the encrypted block device or partition."
13222 msgstr ""
13223
13224 #. type: textblock
13225 #: ../src/guestfs-actions.pod:4116 ../fish/guestfish-actions.pod:2773
13226 msgid ""
13227 "The caller must supply one of the keys associated with the LUKS block "
13228 "device, in the C<key> parameter."
13229 msgstr ""
13230
13231 #. type: textblock
13232 #: ../src/guestfs-actions.pod:4119 ../fish/guestfish-actions.pod:2776
13233 msgid ""
13234 "This creates a new block device called C</dev/mapper/mapname>.  Reads and "
13235 "writes to this block device are decrypted from and encrypted to the "
13236 "underlying C<device> respectively."
13237 msgstr ""
13238
13239 #. type: textblock
13240 #: ../src/guestfs-actions.pod:4123
13241 msgid ""
13242 "If this block device contains LVM volume groups, then calling "
13243 "C<guestfs_vgscan> followed by C<guestfs_vg_activate_all> will make them "
13244 "visible."
13245 msgstr ""
13246
13247 #. type: textblock
13248 #: ../src/guestfs-actions.pod:4127
13249 msgid "Use C<guestfs_list_dm_devices> to list all device mapper devices."
13250 msgstr ""
13251
13252 #. type: =head2
13253 #: ../src/guestfs-actions.pod:4138
13254 msgid "guestfs_luks_open_ro"
13255 msgstr ""
13256
13257 #. type: verbatim
13258 #: ../src/guestfs-actions.pod:4140
13259 #, no-wrap
13260 msgid ""
13261 " int\n"
13262 " guestfs_luks_open_ro (guestfs_h *g,\n"
13263 "                       const char *device,\n"
13264 "                       const char *key,\n"
13265 "                       const char *mapname);\n"
13266 "\n"
13267 msgstr ""
13268
13269 #. type: textblock
13270 #: ../src/guestfs-actions.pod:4146
13271 msgid ""
13272 "This is the same as C<guestfs_luks_open> except that a read-only mapping is "
13273 "created."
13274 msgstr ""
13275
13276 #. type: =head2
13277 #: ../src/guestfs-actions.pod:4157
13278 msgid "guestfs_lvcreate"
13279 msgstr ""
13280
13281 #. type: verbatim
13282 #: ../src/guestfs-actions.pod:4159
13283 #, no-wrap
13284 msgid ""
13285 " int\n"
13286 " guestfs_lvcreate (guestfs_h *g,\n"
13287 "                   const char *logvol,\n"
13288 "                   const char *volgroup,\n"
13289 "                   int mbytes);\n"
13290 "\n"
13291 msgstr ""
13292
13293 #. type: textblock
13294 #: ../src/guestfs-actions.pod:4165 ../fish/guestfish-actions.pod:2804
13295 msgid ""
13296 "This creates an LVM logical volume called C<logvol> on the volume group "
13297 "C<volgroup>, with C<size> megabytes."
13298 msgstr ""
13299
13300 #. type: =head2
13301 #: ../src/guestfs-actions.pod:4172
13302 msgid "guestfs_lvm_canonical_lv_name"
13303 msgstr ""
13304
13305 #. type: verbatim
13306 #: ../src/guestfs-actions.pod:4174
13307 #, no-wrap
13308 msgid ""
13309 " char *\n"
13310 " guestfs_lvm_canonical_lv_name (guestfs_h *g,\n"
13311 "                                const char *lvname);\n"
13312 "\n"
13313 msgstr ""
13314
13315 #. type: textblock
13316 #: ../src/guestfs-actions.pod:4178 ../fish/guestfish-actions.pod:2811
13317 msgid ""
13318 "This converts alternative naming schemes for LVs that you might find to the "
13319 "canonical name.  For example, C</dev/mapper/VG-LV> is converted to "
13320 "C</dev/VG/LV>."
13321 msgstr ""
13322
13323 #. type: textblock
13324 #: ../src/guestfs-actions.pod:4182 ../fish/guestfish-actions.pod:2815
13325 msgid ""
13326 "This command returns an error if the C<lvname> parameter does not refer to a"
13327 " logical volume."
13328 msgstr ""
13329
13330 #. type: textblock
13331 #: ../src/guestfs-actions.pod:4185
13332 msgid "See also C<guestfs_is_lv>."
13333 msgstr ""
13334
13335 #. type: textblock
13336 #: ../src/guestfs-actions.pod:4190
13337 msgid "(Added in 1.5.24)"
13338 msgstr ""
13339
13340 #. type: =head2
13341 #: ../src/guestfs-actions.pod:4192
13342 msgid "guestfs_lvm_clear_filter"
13343 msgstr ""
13344
13345 #. type: verbatim
13346 #: ../src/guestfs-actions.pod:4194
13347 #, no-wrap
13348 msgid ""
13349 " int\n"
13350 " guestfs_lvm_clear_filter (guestfs_h *g);\n"
13351 "\n"
13352 msgstr ""
13353
13354 #. type: textblock
13355 #: ../src/guestfs-actions.pod:4197
13356 msgid ""
13357 "This undoes the effect of C<guestfs_lvm_set_filter>.  LVM will be able to "
13358 "see every block device."
13359 msgstr ""
13360
13361 #. type: textblock
13362 #: ../src/guestfs-actions.pod:4200 ../src/guestfs-actions.pod:4242
13363 #: ../fish/guestfish-actions.pod:2827 ../fish/guestfish-actions.pod:2858
13364 msgid ""
13365 "This command also clears the LVM cache and performs a volume group scan."
13366 msgstr ""
13367
13368 #. type: =head2
13369 #: ../src/guestfs-actions.pod:4207
13370 msgid "guestfs_lvm_remove_all"
13371 msgstr ""
13372
13373 #. type: verbatim
13374 #: ../src/guestfs-actions.pod:4209
13375 #, no-wrap
13376 msgid ""
13377 " int\n"
13378 " guestfs_lvm_remove_all (guestfs_h *g);\n"
13379 "\n"
13380 msgstr ""
13381
13382 #. type: textblock
13383 #: ../src/guestfs-actions.pod:4212 ../fish/guestfish-actions.pod:2834
13384 msgid ""
13385 "This command removes all LVM logical volumes, volume groups and physical "
13386 "volumes."
13387 msgstr ""
13388
13389 #. type: =head2
13390 #: ../src/guestfs-actions.pod:4222
13391 msgid "guestfs_lvm_set_filter"
13392 msgstr ""
13393
13394 #. type: verbatim
13395 #: ../src/guestfs-actions.pod:4224
13396 #, no-wrap
13397 msgid ""
13398 " int\n"
13399 " guestfs_lvm_set_filter (guestfs_h *g,\n"
13400 "                         char *const *devices);\n"
13401 "\n"
13402 msgstr ""
13403
13404 #. type: textblock
13405 #: ../src/guestfs-actions.pod:4228 ../fish/guestfish-actions.pod:2844
13406 msgid ""
13407 "This sets the LVM device filter so that LVM will only be able to \"see\" the"
13408 " block devices in the list C<devices>, and will ignore all other attached "
13409 "block devices."
13410 msgstr ""
13411
13412 #. type: textblock
13413 #: ../src/guestfs-actions.pod:4232 ../fish/guestfish-actions.pod:2848
13414 msgid ""
13415 "Where disk image(s) contain duplicate PVs or VGs, this command is useful to "
13416 "get LVM to ignore the duplicates, otherwise LVM can get confused.  Note also"
13417 " there are two types of duplication possible: either cloned PVs/VGs which "
13418 "have identical UUIDs; or VGs that are not cloned but just happen to have the"
13419 " same name.  In normal operation you cannot create this situation, but you "
13420 "can do it outside LVM, eg.  by cloning disk images or by bit twiddling "
13421 "inside the LVM metadata."
13422 msgstr ""
13423
13424 #. type: textblock
13425 #: ../src/guestfs-actions.pod:4245 ../fish/guestfish-actions.pod:2861
13426 msgid "You can filter whole block devices or individual partitions."
13427 msgstr ""
13428
13429 #. type: textblock
13430 #: ../src/guestfs-actions.pod:4247 ../fish/guestfish-actions.pod:2863
13431 msgid ""
13432 "You cannot use this if any VG is currently in use (eg.  contains a mounted "
13433 "filesystem), even if you are not filtering out that VG."
13434 msgstr ""
13435
13436 #. type: =head2
13437 #: ../src/guestfs-actions.pod:4255
13438 msgid "guestfs_lvremove"
13439 msgstr ""
13440
13441 #. type: verbatim
13442 #: ../src/guestfs-actions.pod:4257
13443 #, no-wrap
13444 msgid ""
13445 " int\n"
13446 " guestfs_lvremove (guestfs_h *g,\n"
13447 "                   const char *device);\n"
13448 "\n"
13449 msgstr ""
13450
13451 #. type: textblock
13452 #: ../src/guestfs-actions.pod:4261 ../fish/guestfish-actions.pod:2871
13453 msgid ""
13454 "Remove an LVM logical volume C<device>, where C<device> is the path to the "
13455 "LV, such as C</dev/VG/LV>."
13456 msgstr ""
13457
13458 #. type: textblock
13459 #: ../src/guestfs-actions.pod:4264 ../fish/guestfish-actions.pod:2874
13460 msgid ""
13461 "You can also remove all LVs in a volume group by specifying the VG name, "
13462 "C</dev/VG>."
13463 msgstr ""
13464
13465 #. type: textblock
13466 #: ../src/guestfs-actions.pod:4269 ../src/guestfs-actions.pod:5666
13467 #: ../src/guestfs-actions.pod:7498
13468 msgid "(Added in 1.0.13)"
13469 msgstr ""
13470
13471 #. type: =head2
13472 #: ../src/guestfs-actions.pod:4271
13473 msgid "guestfs_lvrename"
13474 msgstr ""
13475
13476 #. type: verbatim
13477 #: ../src/guestfs-actions.pod:4273
13478 #, no-wrap
13479 msgid ""
13480 " int\n"
13481 " guestfs_lvrename (guestfs_h *g,\n"
13482 "                   const char *logvol,\n"
13483 "                   const char *newlogvol);\n"
13484 "\n"
13485 msgstr ""
13486
13487 #. type: textblock
13488 #: ../src/guestfs-actions.pod:4278 ../fish/guestfish-actions.pod:2881
13489 msgid "Rename a logical volume C<logvol> with the new name C<newlogvol>."
13490 msgstr ""
13491
13492 #. type: textblock
13493 #: ../src/guestfs-actions.pod:4282 ../src/guestfs-actions.pod:7511
13494 msgid "(Added in 1.0.83)"
13495 msgstr ""
13496
13497 #. type: =head2
13498 #: ../src/guestfs-actions.pod:4284
13499 msgid "guestfs_lvresize"
13500 msgstr ""
13501
13502 #. type: verbatim
13503 #: ../src/guestfs-actions.pod:4286
13504 #, no-wrap
13505 msgid ""
13506 " int\n"
13507 " guestfs_lvresize (guestfs_h *g,\n"
13508 "                   const char *device,\n"
13509 "                   int mbytes);\n"
13510 "\n"
13511 msgstr ""
13512
13513 #. type: textblock
13514 #: ../src/guestfs-actions.pod:4291 ../fish/guestfish-actions.pod:2887
13515 msgid ""
13516 "This resizes (expands or shrinks) an existing LVM logical volume to "
13517 "C<mbytes>.  When reducing, data in the reduced part is lost."
13518 msgstr ""
13519
13520 #. type: =head2
13521 #: ../src/guestfs-actions.pod:4299
13522 msgid "guestfs_lvresize_free"
13523 msgstr ""
13524
13525 #. type: verbatim
13526 #: ../src/guestfs-actions.pod:4301
13527 #, no-wrap
13528 msgid ""
13529 " int\n"
13530 " guestfs_lvresize_free (guestfs_h *g,\n"
13531 "                        const char *lv,\n"
13532 "                        int percent);\n"
13533 "\n"
13534 msgstr ""
13535
13536 #. type: textblock
13537 #: ../src/guestfs-actions.pod:4306 ../fish/guestfish-actions.pod:2895
13538 msgid ""
13539 "This expands an existing logical volume C<lv> so that it fills C<pc>% of the"
13540 " remaining free space in the volume group.  Commonly you would call this "
13541 "with pc = 100 which expands the logical volume as much as possible, using "
13542 "all remaining free space in the volume group."
13543 msgstr ""
13544
13545 #. type: textblock
13546 #: ../src/guestfs-actions.pod:4314
13547 msgid "(Added in 1.3.3)"
13548 msgstr ""
13549
13550 #. type: =head2
13551 #: ../src/guestfs-actions.pod:4316
13552 msgid "guestfs_lvs"
13553 msgstr ""
13554
13555 #. type: verbatim
13556 #: ../src/guestfs-actions.pod:4318
13557 #, no-wrap
13558 msgid ""
13559 " char **\n"
13560 " guestfs_lvs (guestfs_h *g);\n"
13561 "\n"
13562 msgstr ""
13563
13564 #. type: textblock
13565 #: ../src/guestfs-actions.pod:4321 ../fish/guestfish-actions.pod:2905
13566 msgid ""
13567 "List all the logical volumes detected.  This is the equivalent of the "
13568 "L<lvs(8)> command."
13569 msgstr ""
13570
13571 #. type: textblock
13572 #: ../src/guestfs-actions.pod:4324 ../fish/guestfish-actions.pod:2908
13573 msgid ""
13574 "This returns a list of the logical volume device names (eg. "
13575 "C</dev/VolGroup00/LogVol00>)."
13576 msgstr ""
13577
13578 #. type: textblock
13579 #: ../src/guestfs-actions.pod:4327
13580 msgid "See also C<guestfs_lvs_full>, C<guestfs_list_filesystems>."
13581 msgstr ""
13582
13583 #. type: =head2
13584 #: ../src/guestfs-actions.pod:4335
13585 msgid "guestfs_lvs_full"
13586 msgstr ""
13587
13588 #. type: verbatim
13589 #: ../src/guestfs-actions.pod:4337
13590 #, no-wrap
13591 msgid ""
13592 " struct guestfs_lvm_lv_list *\n"
13593 " guestfs_lvs_full (guestfs_h *g);\n"
13594 "\n"
13595 msgstr ""
13596
13597 #. type: textblock
13598 #: ../src/guestfs-actions.pod:4340 ../fish/guestfish-actions.pod:2917
13599 msgid ""
13600 "List all the logical volumes detected.  This is the equivalent of the "
13601 "L<lvs(8)> command.  The \"full\" version includes all fields."
13602 msgstr ""
13603
13604 #. type: textblock
13605 #: ../src/guestfs-actions.pod:4343
13606 msgid ""
13607 "This function returns a C<struct guestfs_lvm_lv_list *>, or NULL if there "
13608 "was an error.  I<The caller must call C<guestfs_free_lvm_lv_list> after "
13609 "use>."
13610 msgstr ""
13611
13612 #. type: =head2
13613 #: ../src/guestfs-actions.pod:4349
13614 msgid "guestfs_lvuuid"
13615 msgstr ""
13616
13617 #. type: verbatim
13618 #: ../src/guestfs-actions.pod:4351
13619 #, no-wrap
13620 msgid ""
13621 " char *\n"
13622 " guestfs_lvuuid (guestfs_h *g,\n"
13623 "                 const char *device);\n"
13624 "\n"
13625 msgstr ""
13626
13627 #. type: textblock
13628 #: ../src/guestfs-actions.pod:4355 ../fish/guestfish-actions.pod:2924
13629 msgid "This command returns the UUID of the LVM LV C<device>."
13630 msgstr ""
13631
13632 #. type: =head2
13633 #: ../src/guestfs-actions.pod:4362
13634 msgid "guestfs_lxattrlist"
13635 msgstr ""
13636
13637 #. type: verbatim
13638 #: ../src/guestfs-actions.pod:4364
13639 #, no-wrap
13640 msgid ""
13641 " struct guestfs_xattr_list *\n"
13642 " guestfs_lxattrlist (guestfs_h *g,\n"
13643 "                     const char *path,\n"
13644 "                     char *const *names);\n"
13645 "\n"
13646 msgstr ""
13647
13648 #. type: textblock
13649 #: ../src/guestfs-actions.pod:4369 ../fish/guestfish-actions.pod:2930
13650 msgid ""
13651 "This call allows you to get the extended attributes of multiple files, where"
13652 " all files are in the directory C<path>.  C<names> is the list of files from"
13653 " this directory."
13654 msgstr ""
13655
13656 #. type: textblock
13657 #: ../src/guestfs-actions.pod:4373 ../fish/guestfish-actions.pod:2934
13658 msgid ""
13659 "On return you get a flat list of xattr structs which must be interpreted "
13660 "sequentially.  The first xattr struct always has a zero-length C<attrname>."
13661 "  C<attrval> in this struct is zero-length to indicate there was an error "
13662 "doing C<lgetxattr> for this file, I<or> is a C string which is a decimal "
13663 "number (the number of following attributes for this file, which could be "
13664 "C<\"0\">).  Then after the first xattr struct are the zero or more "
13665 "attributes for the first named file.  This repeats for the second and "
13666 "subsequent files."
13667 msgstr ""
13668
13669 #. type: textblock
13670 #: ../src/guestfs-actions.pod:4383
13671 msgid ""
13672 "This call is intended for programs that want to efficiently list a directory"
13673 " contents without making many round-trips.  See also C<guestfs_lstatlist> "
13674 "for a similarly efficient call for getting standard stats.  Very long "
13675 "directory listings might cause the protocol message size to be exceeded, "
13676 "causing this call to fail.  The caller must split up such requests into "
13677 "smaller groups of names."
13678 msgstr ""
13679
13680 #. type: =head2
13681 #: ../src/guestfs-actions.pod:4397
13682 msgid "guestfs_mkdir"
13683 msgstr ""
13684
13685 #. type: verbatim
13686 #: ../src/guestfs-actions.pod:4399
13687 #, no-wrap
13688 msgid ""
13689 " int\n"
13690 " guestfs_mkdir (guestfs_h *g,\n"
13691 "                const char *path);\n"
13692 "\n"
13693 msgstr ""
13694
13695 #. type: textblock
13696 #: ../src/guestfs-actions.pod:4403 ../fish/guestfish-actions.pod:2956
13697 msgid "Create a directory named C<path>."
13698 msgstr ""
13699
13700 #. type: =head2
13701 #: ../src/guestfs-actions.pod:4409
13702 msgid "guestfs_mkdir_mode"
13703 msgstr ""
13704
13705 #. type: verbatim
13706 #: ../src/guestfs-actions.pod:4411
13707 #, no-wrap
13708 msgid ""
13709 " int\n"
13710 " guestfs_mkdir_mode (guestfs_h *g,\n"
13711 "                     const char *path,\n"
13712 "                     int mode);\n"
13713 "\n"
13714 msgstr ""
13715
13716 #. type: textblock
13717 #: ../src/guestfs-actions.pod:4416 ../fish/guestfish-actions.pod:2962
13718 msgid ""
13719 "This command creates a directory, setting the initial permissions of the "
13720 "directory to C<mode>."
13721 msgstr ""
13722
13723 #. type: textblock
13724 #: ../src/guestfs-actions.pod:4419 ../fish/guestfish-actions.pod:2965
13725 msgid ""
13726 "For common Linux filesystems, the actual mode which is set will be C<mode & "
13727 "~umask & 01777>.  Non-native-Linux filesystems may interpret the mode in "
13728 "other ways."
13729 msgstr ""
13730
13731 #. type: textblock
13732 #: ../src/guestfs-actions.pod:4423
13733 msgid "See also C<guestfs_mkdir>, C<guestfs_umask>"
13734 msgstr ""
13735
13736 #. type: =head2
13737 #: ../src/guestfs-actions.pod:4429
13738 msgid "guestfs_mkdir_p"
13739 msgstr ""
13740
13741 #. type: verbatim
13742 #: ../src/guestfs-actions.pod:4431
13743 #, no-wrap
13744 msgid ""
13745 " int\n"
13746 " guestfs_mkdir_p (guestfs_h *g,\n"
13747 "                  const char *path);\n"
13748 "\n"
13749 msgstr ""
13750
13751 #. type: textblock
13752 #: ../src/guestfs-actions.pod:4435 ../fish/guestfish-actions.pod:2975
13753 msgid ""
13754 "Create a directory named C<path>, creating any parent directories as "
13755 "necessary.  This is like the C<mkdir -p> shell command."
13756 msgstr ""
13757
13758 #. type: =head2
13759 #: ../src/guestfs-actions.pod:4442
13760 msgid "guestfs_mkdtemp"
13761 msgstr ""
13762
13763 #. type: verbatim
13764 #: ../src/guestfs-actions.pod:4444
13765 #, no-wrap
13766 msgid ""
13767 " char *\n"
13768 " guestfs_mkdtemp (guestfs_h *g,\n"
13769 "                  const char *template);\n"
13770 "\n"
13771 msgstr ""
13772
13773 #. type: textblock
13774 #: ../src/guestfs-actions.pod:4448 ../fish/guestfish-actions.pod:2982
13775 msgid ""
13776 "This command creates a temporary directory.  The C<template> parameter "
13777 "should be a full pathname for the temporary directory name with the final "
13778 "six characters being \"XXXXXX\"."
13779 msgstr ""
13780
13781 #. type: textblock
13782 #: ../src/guestfs-actions.pod:4453 ../fish/guestfish-actions.pod:2987
13783 msgid ""
13784 "For example: \"/tmp/myprogXXXXXX\" or \"/Temp/myprogXXXXXX\", the second one"
13785 " being suitable for Windows filesystems."
13786 msgstr ""
13787
13788 #. type: textblock
13789 #: ../src/guestfs-actions.pod:4456 ../fish/guestfish-actions.pod:2990
13790 msgid "The name of the temporary directory that was created is returned."
13791 msgstr ""
13792
13793 #. type: textblock
13794 #: ../src/guestfs-actions.pod:4459 ../fish/guestfish-actions.pod:2993
13795 msgid ""
13796 "The temporary directory is created with mode 0700 and is owned by root."
13797 msgstr ""
13798
13799 #. type: textblock
13800 #: ../src/guestfs-actions.pod:4462 ../fish/guestfish-actions.pod:2996
13801 msgid ""
13802 "The caller is responsible for deleting the temporary directory and its "
13803 "contents after use."
13804 msgstr ""
13805
13806 #. type: textblock
13807 #: ../src/guestfs-actions.pod:4465 ../fish/guestfish-actions.pod:2999
13808 msgid "See also: L<mkdtemp(3)>"
13809 msgstr ""
13810
13811 #. type: =head2
13812 #: ../src/guestfs-actions.pod:4472
13813 msgid "guestfs_mke2fs_J"
13814 msgstr ""
13815
13816 #. type: verbatim
13817 #: ../src/guestfs-actions.pod:4474
13818 #, no-wrap
13819 msgid ""
13820 " int\n"
13821 " guestfs_mke2fs_J (guestfs_h *g,\n"
13822 "                   const char *fstype,\n"
13823 "                   int blocksize,\n"
13824 "                   const char *device,\n"
13825 "                   const char *journal);\n"
13826 "\n"
13827 msgstr ""
13828
13829 #. type: textblock
13830 #: ../src/guestfs-actions.pod:4481 ../fish/guestfish-actions.pod:3005
13831 msgid ""
13832 "This creates an ext2/3/4 filesystem on C<device> with an external journal on"
13833 " C<journal>.  It is equivalent to the command:"
13834 msgstr ""
13835
13836 #. type: verbatim
13837 #: ../src/guestfs-actions.pod:4485 ../fish/guestfish-actions.pod:3009
13838 #, no-wrap
13839 msgid ""
13840 " mke2fs -t fstype -b blocksize -J device=<journal> <device>\n"
13841 "\n"
13842 msgstr ""
13843
13844 #. type: textblock
13845 #: ../src/guestfs-actions.pod:4487
13846 msgid "See also C<guestfs_mke2journal>."
13847 msgstr ""
13848
13849 #. type: textblock
13850 #: ../src/guestfs-actions.pod:4491 ../src/guestfs-actions.pod:4509
13851 #: ../src/guestfs-actions.pod:4527 ../src/guestfs-actions.pod:4543
13852 #: ../src/guestfs-actions.pod:4557 ../src/guestfs-actions.pod:4571
13853 #: ../src/guestfs-actions.pod:4630 ../src/guestfs-actions.pod:4907
13854 msgid "(Added in 1.0.68)"
13855 msgstr ""
13856
13857 #. type: =head2
13858 #: ../src/guestfs-actions.pod:4493
13859 msgid "guestfs_mke2fs_JL"
13860 msgstr ""
13861
13862 #. type: verbatim
13863 #: ../src/guestfs-actions.pod:4495
13864 #, no-wrap
13865 msgid ""
13866 " int\n"
13867 " guestfs_mke2fs_JL (guestfs_h *g,\n"
13868 "                    const char *fstype,\n"
13869 "                    int blocksize,\n"
13870 "                    const char *device,\n"
13871 "                    const char *label);\n"
13872 "\n"
13873 msgstr ""
13874
13875 #. type: textblock
13876 #: ../src/guestfs-actions.pod:4502 ../fish/guestfish-actions.pod:3017
13877 msgid ""
13878 "This creates an ext2/3/4 filesystem on C<device> with an external journal on"
13879 " the journal labeled C<label>."
13880 msgstr ""
13881
13882 #. type: textblock
13883 #: ../src/guestfs-actions.pod:4505
13884 msgid "See also C<guestfs_mke2journal_L>."
13885 msgstr ""
13886
13887 #. type: =head2
13888 #: ../src/guestfs-actions.pod:4511
13889 msgid "guestfs_mke2fs_JU"
13890 msgstr ""
13891
13892 #. type: verbatim
13893 #: ../src/guestfs-actions.pod:4513
13894 #, no-wrap
13895 msgid ""
13896 " int\n"
13897 " guestfs_mke2fs_JU (guestfs_h *g,\n"
13898 "                    const char *fstype,\n"
13899 "                    int blocksize,\n"
13900 "                    const char *device,\n"
13901 "                    const char *uuid);\n"
13902 "\n"
13903 msgstr ""
13904
13905 #. type: textblock
13906 #: ../src/guestfs-actions.pod:4520 ../fish/guestfish-actions.pod:3026
13907 msgid ""
13908 "This creates an ext2/3/4 filesystem on C<device> with an external journal on"
13909 " the journal with UUID C<uuid>."
13910 msgstr ""
13911
13912 #. type: textblock
13913 #: ../src/guestfs-actions.pod:4523
13914 msgid "See also C<guestfs_mke2journal_U>."
13915 msgstr ""
13916
13917 #. type: =head2
13918 #: ../src/guestfs-actions.pod:4529
13919 msgid "guestfs_mke2journal"
13920 msgstr ""
13921
13922 #. type: verbatim
13923 #: ../src/guestfs-actions.pod:4531
13924 #, no-wrap
13925 msgid ""
13926 " int\n"
13927 " guestfs_mke2journal (guestfs_h *g,\n"
13928 "                      int blocksize,\n"
13929 "                      const char *device);\n"
13930 "\n"
13931 msgstr ""
13932
13933 #. type: textblock
13934 #: ../src/guestfs-actions.pod:4536 ../fish/guestfish-actions.pod:3035
13935 msgid ""
13936 "This creates an ext2 external journal on C<device>.  It is equivalent to the"
13937 " command:"
13938 msgstr ""
13939
13940 #. type: verbatim
13941 #: ../src/guestfs-actions.pod:4539 ../fish/guestfish-actions.pod:3038
13942 #, no-wrap
13943 msgid ""
13944 " mke2fs -O journal_dev -b blocksize device\n"
13945 "\n"
13946 msgstr ""
13947
13948 #. type: =head2
13949 #: ../src/guestfs-actions.pod:4545
13950 msgid "guestfs_mke2journal_L"
13951 msgstr ""
13952
13953 #. type: verbatim
13954 #: ../src/guestfs-actions.pod:4547
13955 #, no-wrap
13956 msgid ""
13957 " int\n"
13958 " guestfs_mke2journal_L (guestfs_h *g,\n"
13959 "                        int blocksize,\n"
13960 "                        const char *label,\n"
13961 "                        const char *device);\n"
13962 "\n"
13963 msgstr ""
13964
13965 #. type: textblock
13966 #: ../src/guestfs-actions.pod:4553 ../fish/guestfish-actions.pod:3044
13967 msgid ""
13968 "This creates an ext2 external journal on C<device> with label C<label>."
13969 msgstr ""
13970
13971 #. type: =head2
13972 #: ../src/guestfs-actions.pod:4559
13973 msgid "guestfs_mke2journal_U"
13974 msgstr ""
13975
13976 #. type: verbatim
13977 #: ../src/guestfs-actions.pod:4561
13978 #, no-wrap
13979 msgid ""
13980 " int\n"
13981 " guestfs_mke2journal_U (guestfs_h *g,\n"
13982 "                        int blocksize,\n"
13983 "                        const char *uuid,\n"
13984 "                        const char *device);\n"
13985 "\n"
13986 msgstr ""
13987
13988 #. type: textblock
13989 #: ../src/guestfs-actions.pod:4567 ../fish/guestfish-actions.pod:3050
13990 msgid "This creates an ext2 external journal on C<device> with UUID C<uuid>."
13991 msgstr ""
13992
13993 #. type: =head2
13994 #: ../src/guestfs-actions.pod:4573
13995 msgid "guestfs_mkfifo"
13996 msgstr ""
13997
13998 #. type: verbatim
13999 #: ../src/guestfs-actions.pod:4575
14000 #, no-wrap
14001 msgid ""
14002 " int\n"
14003 " guestfs_mkfifo (guestfs_h *g,\n"
14004 "                 int mode,\n"
14005 "                 const char *path);\n"
14006 "\n"
14007 msgstr ""
14008
14009 #. type: textblock
14010 #: ../src/guestfs-actions.pod:4580
14011 msgid ""
14012 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
14013 "is just a convenient wrapper around C<guestfs_mknod>."
14014 msgstr ""
14015
14016 #. type: =head2
14017 #: ../src/guestfs-actions.pod:4590
14018 msgid "guestfs_mkfs"
14019 msgstr ""
14020
14021 #. type: verbatim
14022 #: ../src/guestfs-actions.pod:4592
14023 #, no-wrap
14024 msgid ""
14025 " int\n"
14026 " guestfs_mkfs (guestfs_h *g,\n"
14027 "               const char *fstype,\n"
14028 "               const char *device);\n"
14029 "\n"
14030 msgstr ""
14031
14032 #. type: textblock
14033 #: ../src/guestfs-actions.pod:4597 ../fish/guestfish-actions.pod:3066
14034 msgid ""
14035 "This creates a filesystem on C<device> (usually a partition or LVM logical "
14036 "volume).  The filesystem type is C<fstype>, for example C<ext3>."
14037 msgstr ""
14038
14039 #. type: =head2
14040 #: ../src/guestfs-actions.pod:4605
14041 msgid "guestfs_mkfs_b"
14042 msgstr ""
14043
14044 #. type: verbatim
14045 #: ../src/guestfs-actions.pod:4607
14046 #, no-wrap
14047 msgid ""
14048 " int\n"
14049 " guestfs_mkfs_b (guestfs_h *g,\n"
14050 "                 const char *fstype,\n"
14051 "                 int blocksize,\n"
14052 "                 const char *device);\n"
14053 "\n"
14054 msgstr ""
14055
14056 #. type: textblock
14057 #: ../src/guestfs-actions.pod:4613
14058 msgid ""
14059 "This call is similar to C<guestfs_mkfs>, but it allows you to control the "
14060 "block size of the resulting filesystem.  Supported block sizes depend on the"
14061 " filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
14062 msgstr ""
14063
14064 #. type: textblock
14065 #: ../src/guestfs-actions.pod:4618 ../src/guestfs-actions.pod:4663
14066 #: ../fish/guestfish-actions.pod:3079 ../fish/guestfish-actions.pod:3106
14067 msgid ""
14068 "For VFAT and NTFS the C<blocksize> parameter is treated as the requested "
14069 "cluster size."
14070 msgstr ""
14071
14072 #. type: textblock
14073 #: ../src/guestfs-actions.pod:4623 ../fish/guestfish-actions.pod:3082
14074 msgid ""
14075 "This function is deprecated.  In new code, use the C<mkfs_opts> call "
14076 "instead."
14077 msgstr ""
14078
14079 #. type: =head2
14080 #: ../src/guestfs-actions.pod:4632
14081 msgid "guestfs_mkfs_opts"
14082 msgstr ""
14083
14084 #. type: verbatim
14085 #: ../src/guestfs-actions.pod:4634
14086 #, no-wrap
14087 msgid ""
14088 " int\n"
14089 " guestfs_mkfs_opts (guestfs_h *g,\n"
14090 "                    const char *fstype,\n"
14091 "                    const char *device,\n"
14092 "                    ...);\n"
14093 "\n"
14094 msgstr ""
14095
14096 #. type: verbatim
14097 #: ../src/guestfs-actions.pod:4645
14098 #, no-wrap
14099 msgid ""
14100 " GUESTFS_MKFS_OPTS_BLOCKSIZE, int blocksize,\n"
14101 " GUESTFS_MKFS_OPTS_FEATURES, const char *features,\n"
14102 " GUESTFS_MKFS_OPTS_INODE, int inode,\n"
14103 " GUESTFS_MKFS_OPTS_SECTORSIZE, int sectorsize,\n"
14104 "\n"
14105 msgstr ""
14106
14107 #. type: textblock
14108 #: ../src/guestfs-actions.pod:4650 ../fish/guestfish-actions.pod:3093
14109 msgid ""
14110 "This function creates a filesystem on C<device>.  The filesystem type is "
14111 "C<fstype>, for example C<ext3>."
14112 msgstr ""
14113
14114 #. type: =item
14115 #: ../src/guestfs-actions.pod:4657 ../fish/guestfish-actions.pod:3100
14116 msgid "C<blocksize>"
14117 msgstr ""
14118
14119 #. type: textblock
14120 #: ../src/guestfs-actions.pod:4659 ../fish/guestfish-actions.pod:3102
14121 msgid ""
14122 "The filesystem block size.  Supported block sizes depend on the filesystem "
14123 "type, but typically they are C<1024>, C<2048> or C<4096> for Linux ext2/3 "
14124 "filesystems."
14125 msgstr ""
14126
14127 #. type: textblock
14128 #: ../src/guestfs-actions.pod:4666 ../fish/guestfish-actions.pod:3109
14129 msgid "For UFS block sizes, please see L<mkfs.ufs(8)>."
14130 msgstr ""
14131
14132 #. type: =item
14133 #: ../src/guestfs-actions.pod:4668 ../fish/guestfish-actions.pod:3111
14134 msgid "C<features>"
14135 msgstr ""
14136
14137 #. type: textblock
14138 #: ../src/guestfs-actions.pod:4670 ../fish/guestfish-actions.pod:3113
14139 msgid "This passes the I<-O> parameter to the external mkfs program."
14140 msgstr ""
14141
14142 #. type: textblock
14143 #: ../src/guestfs-actions.pod:4672 ../fish/guestfish-actions.pod:3115
14144 msgid ""
14145 "For certain filesystem types, this allows extra filesystem features to be "
14146 "selected.  See L<mke2fs(8)> and L<mkfs.ufs(8)> for more details."
14147 msgstr ""
14148
14149 #. type: textblock
14150 #: ../src/guestfs-actions.pod:4676 ../fish/guestfish-actions.pod:3119
14151 msgid ""
14152 "You cannot use this optional parameter with the C<gfs> or C<gfs2> filesystem"
14153 " type."
14154 msgstr ""
14155
14156 #. type: =item
14157 #: ../src/guestfs-actions.pod:4679 ../fish/guestfish-actions.pod:3122
14158 msgid "C<inode>"
14159 msgstr ""
14160
14161 #. type: textblock
14162 #: ../src/guestfs-actions.pod:4681 ../fish/guestfish-actions.pod:3124
14163 msgid ""
14164 "This passes the I<-I> parameter to the external L<mke2fs(8)> program which "
14165 "sets the inode size (only for ext2/3/4 filesystems at present)."
14166 msgstr ""
14167
14168 #. type: =item
14169 #: ../src/guestfs-actions.pod:4684 ../fish/guestfish-actions.pod:3127
14170 msgid "C<sectorsize>"
14171 msgstr ""
14172
14173 #. type: textblock
14174 #: ../src/guestfs-actions.pod:4686 ../fish/guestfish-actions.pod:3129
14175 msgid ""
14176 "This passes the I<-S> parameter to external L<mkfs.ufs(8)> program, which "
14177 "sets sector size for ufs filesystem."
14178 msgstr ""
14179
14180 #. type: textblock
14181 #: ../src/guestfs-actions.pod:4693
14182 msgid "(Added in 1.7.19)"
14183 msgstr ""
14184
14185 #. type: =head2
14186 #: ../src/guestfs-actions.pod:4695
14187 msgid "guestfs_mkfs_opts_va"
14188 msgstr ""
14189
14190 #. type: verbatim
14191 #: ../src/guestfs-actions.pod:4697
14192 #, no-wrap
14193 msgid ""
14194 " int\n"
14195 " guestfs_mkfs_opts_va (guestfs_h *g,\n"
14196 "                       const char *fstype,\n"
14197 "                       const char *device,\n"
14198 "                       va_list args);\n"
14199 "\n"
14200 msgstr ""
14201
14202 #. type: textblock
14203 #: ../src/guestfs-actions.pod:4703
14204 msgid "This is the \"va_list variant\" of L</guestfs_mkfs_opts>."
14205 msgstr ""
14206
14207 #. type: =head2
14208 #: ../src/guestfs-actions.pod:4707
14209 msgid "guestfs_mkfs_opts_argv"
14210 msgstr ""
14211
14212 #. type: verbatim
14213 #: ../src/guestfs-actions.pod:4709
14214 #, no-wrap
14215 msgid ""
14216 " int\n"
14217 " guestfs_mkfs_opts_argv (guestfs_h *g,\n"
14218 "                         const char *fstype,\n"
14219 "                         const char *device,\n"
14220 "                         const struct guestfs_mkfs_opts_argv *optargs);\n"
14221 "\n"
14222 msgstr ""
14223
14224 #. type: textblock
14225 #: ../src/guestfs-actions.pod:4715
14226 msgid "This is the \"argv variant\" of L</guestfs_mkfs_opts>."
14227 msgstr ""
14228
14229 #. type: =head2
14230 #: ../src/guestfs-actions.pod:4719
14231 msgid "guestfs_mkmountpoint"
14232 msgstr ""
14233
14234 #. type: verbatim
14235 #: ../src/guestfs-actions.pod:4721
14236 #, no-wrap
14237 msgid ""
14238 " int\n"
14239 " guestfs_mkmountpoint (guestfs_h *g,\n"
14240 "                       const char *exemptpath);\n"
14241 "\n"
14242 msgstr ""
14243
14244 #. type: textblock
14245 #: ../src/guestfs-actions.pod:4725
14246 msgid ""
14247 "C<guestfs_mkmountpoint> and C<guestfs_rmmountpoint> are specialized calls "
14248 "that can be used to create extra mountpoints before mounting the first "
14249 "filesystem."
14250 msgstr ""
14251
14252 #. type: textblock
14253 #: ../src/guestfs-actions.pod:4729 ../fish/guestfish-actions.pod:3144
14254 msgid ""
14255 "These calls are I<only> necessary in some very limited circumstances, mainly"
14256 " the case where you want to mount a mix of unrelated and/or read-only "
14257 "filesystems together."
14258 msgstr ""
14259
14260 #. type: textblock
14261 #: ../src/guestfs-actions.pod:4733 ../fish/guestfish-actions.pod:3148
14262 msgid ""
14263 "For example, live CDs often contain a \"Russian doll\" nest of filesystems, "
14264 "an ISO outer layer, with a squashfs image inside, with an ext2/3 image "
14265 "inside that.  You can unpack this as follows in guestfish:"
14266 msgstr ""
14267
14268 #. type: verbatim
14269 #: ../src/guestfs-actions.pod:4738 ../fish/guestfish-actions.pod:3153
14270 #, no-wrap
14271 msgid ""
14272 " add-ro Fedora-11-i686-Live.iso\n"
14273 " run\n"
14274 " mkmountpoint /cd\n"
14275 " mkmountpoint /sqsh\n"
14276 " mkmountpoint /ext3fs\n"
14277 " mount /dev/sda /cd\n"
14278 " mount-loop /cd/LiveOS/squashfs.img /sqsh\n"
14279 " mount-loop /sqsh/LiveOS/ext3fs.img /ext3fs\n"
14280 "\n"
14281 msgstr ""
14282
14283 #. type: textblock
14284 #: ../src/guestfs-actions.pod:4747 ../fish/guestfish-actions.pod:3162
14285 msgid "The inner filesystem is now unpacked under the /ext3fs mountpoint."
14286 msgstr ""
14287
14288 #. type: textblock
14289 #: ../src/guestfs-actions.pod:4749
14290 msgid ""
14291 "C<guestfs_mkmountpoint> is not compatible with C<guestfs_umount_all>.  You "
14292 "may get unexpected errors if you try to mix these calls.  It is safest to "
14293 "manually unmount filesystems and remove mountpoints after use."
14294 msgstr ""
14295
14296 #. type: textblock
14297 #: ../src/guestfs-actions.pod:4753
14298 msgid ""
14299 "C<guestfs_umount_all> unmounts filesystems by sorting the paths longest "
14300 "first, so for this to work for manual mountpoints, you must ensure that the "
14301 "innermost mountpoints have the longest pathnames, as in the example code "
14302 "above."
14303 msgstr ""
14304
14305 #. type: textblock
14306 #: ../src/guestfs-actions.pod:4758 ../fish/guestfish-actions.pod:3173
14307 msgid ""
14308 "For more details see L<https://bugzilla.redhat.com/show_bug.cgi?id=599503>"
14309 msgstr ""
14310
14311 #. type: textblock
14312 #: ../src/guestfs-actions.pod:4760
14313 msgid ""
14314 "Autosync [see C<guestfs_set_autosync>, this is set by default on handles] "
14315 "can cause C<guestfs_umount_all> to be called when the handle is closed which"
14316 " can also trigger these issues."
14317 msgstr ""
14318
14319 #. type: textblock
14320 #: ../src/guestfs-actions.pod:4766 ../src/guestfs-actions.pod:5082
14321 #: ../src/guestfs-actions.pod:6086
14322 msgid "(Added in 1.0.62)"
14323 msgstr ""
14324
14325 #. type: =head2
14326 #: ../src/guestfs-actions.pod:4768
14327 msgid "guestfs_mknod"
14328 msgstr ""
14329
14330 #. type: verbatim
14331 #: ../src/guestfs-actions.pod:4770
14332 #, no-wrap
14333 msgid ""
14334 " int\n"
14335 " guestfs_mknod (guestfs_h *g,\n"
14336 "                int mode,\n"
14337 "                int devmajor,\n"
14338 "                int devminor,\n"
14339 "                const char *path);\n"
14340 "\n"
14341 msgstr ""
14342
14343 #. type: textblock
14344 #: ../src/guestfs-actions.pod:4777 ../fish/guestfish-actions.pod:3183
14345 msgid ""
14346 "This call creates block or character special devices, or named pipes "
14347 "(FIFOs)."
14348 msgstr ""
14349
14350 #. type: textblock
14351 #: ../src/guestfs-actions.pod:4780 ../fish/guestfish-actions.pod:3186
14352 msgid ""
14353 "The C<mode> parameter should be the mode, using the standard constants.  "
14354 "C<devmajor> and C<devminor> are the device major and minor numbers, only "
14355 "used when creating block and character special devices."
14356 msgstr ""
14357
14358 #. type: textblock
14359 #: ../src/guestfs-actions.pod:4785
14360 msgid ""
14361 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
14362 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
14363 "regular file).  These constants are available in the standard Linux header "
14364 "files, or you can use C<guestfs_mknod_b>, C<guestfs_mknod_c> or "
14365 "C<guestfs_mkfifo> which are wrappers around this command which bitwise OR in"
14366 " the appropriate constant for you."
14367 msgstr ""
14368
14369 #. type: =head2
14370 #: ../src/guestfs-actions.pod:4799
14371 msgid "guestfs_mknod_b"
14372 msgstr ""
14373
14374 #. type: verbatim
14375 #: ../src/guestfs-actions.pod:4801
14376 #, no-wrap
14377 msgid ""
14378 " int\n"
14379 " guestfs_mknod_b (guestfs_h *g,\n"
14380 "                  int mode,\n"
14381 "                  int devmajor,\n"
14382 "                  int devminor,\n"
14383 "                  const char *path);\n"
14384 "\n"
14385 msgstr ""
14386
14387 #. type: textblock
14388 #: ../src/guestfs-actions.pod:4808
14389 msgid ""
14390 "This call creates a block device node called C<path> with mode C<mode> and "
14391 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14392 "wrapper around C<guestfs_mknod>."
14393 msgstr ""
14394
14395 #. type: =head2
14396 #: ../src/guestfs-actions.pod:4818
14397 msgid "guestfs_mknod_c"
14398 msgstr ""
14399
14400 #. type: verbatim
14401 #: ../src/guestfs-actions.pod:4820
14402 #, no-wrap
14403 msgid ""
14404 " int\n"
14405 " guestfs_mknod_c (guestfs_h *g,\n"
14406 "                  int mode,\n"
14407 "                  int devmajor,\n"
14408 "                  int devminor,\n"
14409 "                  const char *path);\n"
14410 "\n"
14411 msgstr ""
14412
14413 #. type: textblock
14414 #: ../src/guestfs-actions.pod:4827
14415 msgid ""
14416 "This call creates a char device node called C<path> with mode C<mode> and "
14417 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
14418 "wrapper around C<guestfs_mknod>."
14419 msgstr ""
14420
14421 #. type: =head2
14422 #: ../src/guestfs-actions.pod:4837
14423 msgid "guestfs_mkswap"
14424 msgstr ""
14425
14426 #. type: verbatim
14427 #: ../src/guestfs-actions.pod:4839
14428 #, no-wrap
14429 msgid ""
14430 " int\n"
14431 " guestfs_mkswap (guestfs_h *g,\n"
14432 "                 const char *device);\n"
14433 "\n"
14434 msgstr ""
14435
14436 #. type: textblock
14437 #: ../src/guestfs-actions.pod:4843 ../fish/guestfish-actions.pod:3225
14438 msgid "Create a swap partition on C<device>."
14439 msgstr ""
14440
14441 #. type: =head2
14442 #: ../src/guestfs-actions.pod:4849
14443 msgid "guestfs_mkswap_L"
14444 msgstr ""
14445
14446 #. type: verbatim
14447 #: ../src/guestfs-actions.pod:4851
14448 #, no-wrap
14449 msgid ""
14450 " int\n"
14451 " guestfs_mkswap_L (guestfs_h *g,\n"
14452 "                   const char *label,\n"
14453 "                   const char *device);\n"
14454 "\n"
14455 msgstr ""
14456
14457 #. type: textblock
14458 #: ../src/guestfs-actions.pod:4856 ../fish/guestfish-actions.pod:3231
14459 msgid "Create a swap partition on C<device> with label C<label>."
14460 msgstr ""
14461
14462 #. type: textblock
14463 #: ../src/guestfs-actions.pod:4858 ../fish/guestfish-actions.pod:3233
14464 msgid ""
14465 "Note that you cannot attach a swap label to a block device (eg. "
14466 "C</dev/sda>), just to a partition.  This appears to be a limitation of the "
14467 "kernel or swap tools."
14468 msgstr ""
14469
14470 #. type: =head2
14471 #: ../src/guestfs-actions.pod:4866
14472 msgid "guestfs_mkswap_U"
14473 msgstr ""
14474
14475 #. type: verbatim
14476 #: ../src/guestfs-actions.pod:4868
14477 #, no-wrap
14478 msgid ""
14479 " int\n"
14480 " guestfs_mkswap_U (guestfs_h *g,\n"
14481 "                   const char *uuid,\n"
14482 "                   const char *device);\n"
14483 "\n"
14484 msgstr ""
14485
14486 #. type: textblock
14487 #: ../src/guestfs-actions.pod:4873 ../fish/guestfish-actions.pod:3241
14488 msgid "Create a swap partition on C<device> with UUID C<uuid>."
14489 msgstr ""
14490
14491 #. type: =head2
14492 #: ../src/guestfs-actions.pod:4879
14493 msgid "guestfs_mkswap_file"
14494 msgstr ""
14495
14496 #. type: verbatim
14497 #: ../src/guestfs-actions.pod:4881
14498 #, no-wrap
14499 msgid ""
14500 " int\n"
14501 " guestfs_mkswap_file (guestfs_h *g,\n"
14502 "                      const char *path);\n"
14503 "\n"
14504 msgstr ""
14505
14506 #. type: textblock
14507 #: ../src/guestfs-actions.pod:4885 ../fish/guestfish-actions.pod:3247
14508 msgid "Create a swap file."
14509 msgstr ""
14510
14511 #. type: textblock
14512 #: ../src/guestfs-actions.pod:4887
14513 msgid ""
14514 "This command just writes a swap file signature to an existing file.  To "
14515 "create the file itself, use something like C<guestfs_fallocate>."
14516 msgstr ""
14517
14518 #. type: =head2
14519 #: ../src/guestfs-actions.pod:4894
14520 msgid "guestfs_modprobe"
14521 msgstr ""
14522
14523 #. type: verbatim
14524 #: ../src/guestfs-actions.pod:4896
14525 #, no-wrap
14526 msgid ""
14527 " int\n"
14528 " guestfs_modprobe (guestfs_h *g,\n"
14529 "                   const char *modulename);\n"
14530 "\n"
14531 msgstr ""
14532
14533 #. type: textblock
14534 #: ../src/guestfs-actions.pod:4900 ../fish/guestfish-actions.pod:3256
14535 msgid "This loads a kernel module in the appliance."
14536 msgstr ""
14537
14538 #. type: textblock
14539 #: ../src/guestfs-actions.pod:4902 ../fish/guestfish-actions.pod:3258
14540 msgid ""
14541 "The kernel module must have been whitelisted when libguestfs was built (see "
14542 "C<appliance/kmod.whitelist.in> in the source)."
14543 msgstr ""
14544
14545 #. type: =head2
14546 #: ../src/guestfs-actions.pod:4909
14547 msgid "guestfs_mount"
14548 msgstr ""
14549
14550 #. type: verbatim
14551 #: ../src/guestfs-actions.pod:4911
14552 #, no-wrap
14553 msgid ""
14554 " int\n"
14555 " guestfs_mount (guestfs_h *g,\n"
14556 "                const char *device,\n"
14557 "                const char *mountpoint);\n"
14558 "\n"
14559 msgstr ""
14560
14561 #. type: textblock
14562 #: ../src/guestfs-actions.pod:4916 ../fish/guestfish-actions.pod:3265
14563 msgid ""
14564 "Mount a guest disk at a position in the filesystem.  Block devices are named"
14565 " C</dev/sda>, C</dev/sdb> and so on, as they were added to the guest.  If "
14566 "those block devices contain partitions, they will have the usual names (eg. "
14567 "C</dev/sda1>).  Also LVM C</dev/VG/LV>-style names can be used."
14568 msgstr ""
14569
14570 #. type: textblock
14571 #: ../src/guestfs-actions.pod:4922 ../fish/guestfish-actions.pod:3271
14572 msgid ""
14573 "The rules are the same as for L<mount(2)>: A filesystem must first be "
14574 "mounted on C</> before others can be mounted.  Other filesystems can only be"
14575 " mounted on directories which already exist."
14576 msgstr ""
14577
14578 #. type: textblock
14579 #: ../src/guestfs-actions.pod:4927 ../fish/guestfish-actions.pod:3276
14580 msgid ""
14581 "The mounted filesystem is writable, if we have sufficient permissions on the"
14582 " underlying device."
14583 msgstr ""
14584
14585 #. type: textblock
14586 #: ../src/guestfs-actions.pod:4930
14587 msgid ""
14588 "B<Important note:> When you use this call, the filesystem options C<sync> "
14589 "and C<noatime> are set implicitly.  This was originally done because we "
14590 "thought it would improve reliability, but it turns out that I<-o sync> has a"
14591 " very large negative performance impact and negligible effect on "
14592 "reliability.  Therefore we recommend that you avoid using C<guestfs_mount> "
14593 "in any code that needs performance, and instead use C<guestfs_mount_options>"
14594 " (use an empty string for the first parameter if you don't want any "
14595 "options)."
14596 msgstr ""
14597
14598 #. type: textblock
14599 #: ../src/guestfs-actions.pod:4942 ../fish/guestfish-actions.pod:3289
14600 msgid ""
14601 "This function is deprecated.  In new code, use the C<mount_options> call "
14602 "instead."
14603 msgstr ""
14604
14605 #. type: =head2
14606 #: ../src/guestfs-actions.pod:4951
14607 msgid "guestfs_mount_9p"
14608 msgstr ""
14609
14610 #. type: verbatim
14611 #: ../src/guestfs-actions.pod:4953
14612 #, no-wrap
14613 msgid ""
14614 " int\n"
14615 " guestfs_mount_9p (guestfs_h *g,\n"
14616 "                   const char *mounttag,\n"
14617 "                   const char *mountpoint,\n"
14618 "                   ...);\n"
14619 "\n"
14620 msgstr ""
14621
14622 #. type: verbatim
14623 #: ../src/guestfs-actions.pod:4964
14624 #, no-wrap
14625 msgid ""
14626 " GUESTFS_MOUNT_9P_OPTIONS, const char *options,\n"
14627 "\n"
14628 msgstr ""
14629
14630 #. type: textblock
14631 #: ../src/guestfs-actions.pod:4966 ../fish/guestfish-actions.pod:3300
14632 msgid ""
14633 "Mount the virtio-9p filesystem with the tag C<mounttag> on the directory "
14634 "C<mountpoint>."
14635 msgstr ""
14636
14637 #. type: textblock
14638 #: ../src/guestfs-actions.pod:4969 ../fish/guestfish-actions.pod:3303
14639 msgid ""
14640 "If required, C<trans=virtio> will be automatically added to the options.  "
14641 "Any other options required can be passed in the optional C<options> "
14642 "parameter."
14643 msgstr ""
14644
14645 #. type: =head2
14646 #: ../src/guestfs-actions.pod:4977
14647 msgid "guestfs_mount_9p_va"
14648 msgstr ""
14649
14650 #. type: verbatim
14651 #: ../src/guestfs-actions.pod:4979
14652 #, no-wrap
14653 msgid ""
14654 " int\n"
14655 " guestfs_mount_9p_va (guestfs_h *g,\n"
14656 "                      const char *mounttag,\n"
14657 "                      const char *mountpoint,\n"
14658 "                      va_list args);\n"
14659 "\n"
14660 msgstr ""
14661
14662 #. type: textblock
14663 #: ../src/guestfs-actions.pod:4985
14664 msgid "This is the \"va_list variant\" of L</guestfs_mount_9p>."
14665 msgstr ""
14666
14667 #. type: =head2
14668 #: ../src/guestfs-actions.pod:4989
14669 msgid "guestfs_mount_9p_argv"
14670 msgstr ""
14671
14672 #. type: verbatim
14673 #: ../src/guestfs-actions.pod:4991
14674 #, no-wrap
14675 msgid ""
14676 " int\n"
14677 " guestfs_mount_9p_argv (guestfs_h *g,\n"
14678 "                        const char *mounttag,\n"
14679 "                        const char *mountpoint,\n"
14680 "                        const struct guestfs_mount_9p_argv *optargs);\n"
14681 "\n"
14682 msgstr ""
14683
14684 #. type: textblock
14685 #: ../src/guestfs-actions.pod:4997
14686 msgid "This is the \"argv variant\" of L</guestfs_mount_9p>."
14687 msgstr ""
14688
14689 #. type: =head2
14690 #: ../src/guestfs-actions.pod:5001
14691 msgid "guestfs_mount_loop"
14692 msgstr ""
14693
14694 #. type: verbatim
14695 #: ../src/guestfs-actions.pod:5003
14696 #, no-wrap
14697 msgid ""
14698 " int\n"
14699 " guestfs_mount_loop (guestfs_h *g,\n"
14700 "                     const char *file,\n"
14701 "                     const char *mountpoint);\n"
14702 "\n"
14703 msgstr ""
14704
14705 #. type: textblock
14706 #: ../src/guestfs-actions.pod:5008 ../fish/guestfish-actions.pod:3313
14707 msgid ""
14708 "This command lets you mount C<file> (a filesystem image in a file) on a "
14709 "mount point.  It is entirely equivalent to the command C<mount -o loop file "
14710 "mountpoint>."
14711 msgstr ""
14712
14713 #. type: =head2
14714 #: ../src/guestfs-actions.pod:5016
14715 msgid "guestfs_mount_options"
14716 msgstr ""
14717
14718 #. type: verbatim
14719 #: ../src/guestfs-actions.pod:5018
14720 #, no-wrap
14721 msgid ""
14722 " int\n"
14723 " guestfs_mount_options (guestfs_h *g,\n"
14724 "                        const char *options,\n"
14725 "                        const char *device,\n"
14726 "                        const char *mountpoint);\n"
14727 "\n"
14728 msgstr ""
14729
14730 #. type: textblock
14731 #: ../src/guestfs-actions.pod:5024
14732 msgid ""
14733 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14734 "the mount options as for the L<mount(8)> I<-o> flag."
14735 msgstr ""
14736
14737 #. type: textblock
14738 #: ../src/guestfs-actions.pod:5028 ../fish/guestfish-actions.pod:3325
14739 msgid ""
14740 "If the C<options> parameter is an empty string, then no options are passed "
14741 "(all options default to whatever the filesystem uses)."
14742 msgstr ""
14743
14744 #. type: textblock
14745 #: ../src/guestfs-actions.pod:5034 ../src/guestfs-actions.pod:5048
14746 #: ../src/guestfs-actions.pod:5065
14747 msgid "(Added in 1.0.10)"
14748 msgstr ""
14749
14750 #. type: =head2
14751 #: ../src/guestfs-actions.pod:5036
14752 msgid "guestfs_mount_ro"
14753 msgstr ""
14754
14755 #. type: verbatim
14756 #: ../src/guestfs-actions.pod:5038
14757 #, no-wrap
14758 msgid ""
14759 " int\n"
14760 " guestfs_mount_ro (guestfs_h *g,\n"
14761 "                   const char *device,\n"
14762 "                   const char *mountpoint);\n"
14763 "\n"
14764 msgstr ""
14765
14766 #. type: textblock
14767 #: ../src/guestfs-actions.pod:5043
14768 msgid ""
14769 "This is the same as the C<guestfs_mount> command, but it mounts the "
14770 "filesystem with the read-only (I<-o ro>) flag."
14771 msgstr ""
14772
14773 #. type: =head2
14774 #: ../src/guestfs-actions.pod:5050
14775 msgid "guestfs_mount_vfs"
14776 msgstr ""
14777
14778 #. type: verbatim
14779 #: ../src/guestfs-actions.pod:5052
14780 #, no-wrap
14781 msgid ""
14782 " int\n"
14783 " guestfs_mount_vfs (guestfs_h *g,\n"
14784 "                    const char *options,\n"
14785 "                    const char *vfstype,\n"
14786 "                    const char *device,\n"
14787 "                    const char *mountpoint);\n"
14788 "\n"
14789 msgstr ""
14790
14791 #. type: textblock
14792 #: ../src/guestfs-actions.pod:5059
14793 msgid ""
14794 "This is the same as the C<guestfs_mount> command, but it allows you to set "
14795 "both the mount options and the vfstype as for the L<mount(8)> I<-o> and "
14796 "I<-t> flags."
14797 msgstr ""
14798
14799 #. type: =head2
14800 #: ../src/guestfs-actions.pod:5067
14801 msgid "guestfs_mountpoints"
14802 msgstr ""
14803
14804 #. type: verbatim
14805 #: ../src/guestfs-actions.pod:5069
14806 #, no-wrap
14807 msgid ""
14808 " char **\n"
14809 " guestfs_mountpoints (guestfs_h *g);\n"
14810 "\n"
14811 msgstr ""
14812
14813 #. type: textblock
14814 #: ../src/guestfs-actions.pod:5072
14815 msgid ""
14816 "This call is similar to C<guestfs_mounts>.  That call returns a list of "
14817 "devices.  This one returns a hash table (map) of device name to directory "
14818 "where the device is mounted."
14819 msgstr ""
14820
14821 #. type: =head2
14822 #: ../src/guestfs-actions.pod:5084
14823 msgid "guestfs_mounts"
14824 msgstr ""
14825
14826 #. type: verbatim
14827 #: ../src/guestfs-actions.pod:5086
14828 #, no-wrap
14829 msgid ""
14830 " char **\n"
14831 " guestfs_mounts (guestfs_h *g);\n"
14832 "\n"
14833 msgstr ""
14834
14835 #. type: textblock
14836 #: ../src/guestfs-actions.pod:5089 ../fish/guestfish-actions.pod:3356
14837 msgid ""
14838 "This returns the list of currently mounted filesystems.  It returns the list"
14839 " of devices (eg. C</dev/sda1>, C</dev/VG/LV>)."
14840 msgstr ""
14841
14842 #. type: textblock
14843 #: ../src/guestfs-actions.pod:5092 ../fish/guestfish-actions.pod:3359
14844 msgid "Some internal mounts are not shown."
14845 msgstr ""
14846
14847 #. type: textblock
14848 #: ../src/guestfs-actions.pod:5094
14849 msgid "See also: C<guestfs_mountpoints>"
14850 msgstr ""
14851
14852 #. type: =head2
14853 #: ../src/guestfs-actions.pod:5102
14854 msgid "guestfs_mv"
14855 msgstr ""
14856
14857 #. type: verbatim
14858 #: ../src/guestfs-actions.pod:5104
14859 #, no-wrap
14860 msgid ""
14861 " int\n"
14862 " guestfs_mv (guestfs_h *g,\n"
14863 "             const char *src,\n"
14864 "             const char *dest);\n"
14865 "\n"
14866 msgstr ""
14867
14868 #. type: textblock
14869 #: ../src/guestfs-actions.pod:5109 ../fish/guestfish-actions.pod:3367
14870 msgid ""
14871 "This moves a file from C<src> to C<dest> where C<dest> is either a "
14872 "destination filename or destination directory."
14873 msgstr ""
14874
14875 #. type: =head2
14876 #: ../src/guestfs-actions.pod:5116
14877 msgid "guestfs_ntfs_3g_probe"
14878 msgstr ""
14879
14880 #. type: verbatim
14881 #: ../src/guestfs-actions.pod:5118
14882 #, no-wrap
14883 msgid ""
14884 " int\n"
14885 " guestfs_ntfs_3g_probe (guestfs_h *g,\n"
14886 "                        int rw,\n"
14887 "                        const char *device);\n"
14888 "\n"
14889 msgstr ""
14890
14891 #. type: textblock
14892 #: ../src/guestfs-actions.pod:5123 ../fish/guestfish-actions.pod:3374
14893 msgid ""
14894 "This command runs the L<ntfs-3g.probe(8)> command which probes an NTFS "
14895 "C<device> for mountability.  (Not all NTFS volumes can be mounted read-"
14896 "write, and some cannot be mounted at all)."
14897 msgstr ""
14898
14899 #. type: textblock
14900 #: ../src/guestfs-actions.pod:5127 ../fish/guestfish-actions.pod:3378
14901 msgid ""
14902 "C<rw> is a boolean flag.  Set it to true if you want to test if the volume "
14903 "can be mounted read-write.  Set it to false if you want to test if the "
14904 "volume can be mounted read-only."
14905 msgstr ""
14906
14907 #. type: textblock
14908 #: ../src/guestfs-actions.pod:5131 ../fish/guestfish-actions.pod:3382
14909 msgid ""
14910 "The return value is an integer which C<0> if the operation would succeed, or"
14911 " some non-zero value documented in the L<ntfs-3g.probe(8)> manual page."
14912 msgstr ""
14913
14914 #. type: textblock
14915 #: ../src/guestfs-actions.pod:5137
14916 msgid "(Added in 1.0.43)"
14917 msgstr ""
14918
14919 #. type: =head2
14920 #: ../src/guestfs-actions.pod:5139
14921 msgid "guestfs_ntfsresize"
14922 msgstr ""
14923
14924 #. type: verbatim
14925 #: ../src/guestfs-actions.pod:5141
14926 #, no-wrap
14927 msgid ""
14928 " int\n"
14929 " guestfs_ntfsresize (guestfs_h *g,\n"
14930 "                     const char *device);\n"
14931 "\n"
14932 msgstr ""
14933
14934 #. type: textblock
14935 #: ../src/guestfs-actions.pod:5145 ../src/guestfs-actions.pod:5184
14936 #: ../fish/guestfish-actions.pod:3390 ../fish/guestfish-actions.pod:3414
14937 msgid ""
14938 "This command resizes an NTFS filesystem, expanding or shrinking it to the "
14939 "size of the underlying device."
14940 msgstr ""
14941
14942 #. type: textblock
14943 #: ../src/guestfs-actions.pod:5148 ../fish/guestfish-actions.pod:3393
14944 msgid ""
14945 "I<Note:> After the resize operation, the filesystem is marked as requiring a"
14946 " consistency check (for safety).  You have to boot into Windows to perform "
14947 "this check and clear this condition.  Furthermore, ntfsresize refuses to "
14948 "resize filesystems which have been marked in this way.  So in effect it is "
14949 "not possible to call ntfsresize multiple times on a single filesystem "
14950 "without booting into Windows between each resize."
14951 msgstr ""
14952
14953 #. type: textblock
14954 #: ../src/guestfs-actions.pod:5156 ../src/guestfs-actions.pod:5210
14955 #: ../fish/guestfish-actions.pod:3401 ../fish/guestfish-actions.pod:3440
14956 msgid "See also L<ntfsresize(8)>."
14957 msgstr ""
14958
14959 #. type: textblock
14960 #: ../src/guestfs-actions.pod:5160 ../src/guestfs-actions.pod:5250
14961 #: ../fish/guestfish-actions.pod:3403 ../fish/guestfish-actions.pod:3451
14962 msgid ""
14963 "This function is deprecated.  In new code, use the C<ntfsresize_opts> call "
14964 "instead."
14965 msgstr ""
14966
14967 #. type: =head2
14968 #: ../src/guestfs-actions.pod:5169
14969 msgid "guestfs_ntfsresize_opts"
14970 msgstr ""
14971
14972 #. type: verbatim
14973 #: ../src/guestfs-actions.pod:5171
14974 #, no-wrap
14975 msgid ""
14976 " int\n"
14977 " guestfs_ntfsresize_opts (guestfs_h *g,\n"
14978 "                          const char *device,\n"
14979 "                          ...);\n"
14980 "\n"
14981 msgstr ""
14982
14983 #. type: verbatim
14984 #: ../src/guestfs-actions.pod:5181
14985 #, no-wrap
14986 msgid ""
14987 " GUESTFS_NTFSRESIZE_OPTS_SIZE, int64_t size,\n"
14988 " GUESTFS_NTFSRESIZE_OPTS_FORCE, int force,\n"
14989 "\n"
14990 msgstr ""
14991
14992 #. type: textblock
14993 #: ../src/guestfs-actions.pod:5193 ../fish/guestfish-actions.pod:3423
14994 msgid ""
14995 "The new size (in bytes) of the filesystem.  If omitted, the filesystem is "
14996 "resized to fit the container (eg. partition)."
14997 msgstr ""
14998
14999 #. type: =item
15000 #: ../src/guestfs-actions.pod:5196 ../fish/guestfish-actions.pod:3426
15001 msgid "C<force>"
15002 msgstr ""
15003
15004 #. type: textblock
15005 #: ../src/guestfs-actions.pod:5198 ../fish/guestfish-actions.pod:3428
15006 msgid ""
15007 "If this option is true, then force the resize of the filesystem even if the "
15008 "filesystem is marked as requiring a consistency check."
15009 msgstr ""
15010
15011 #. type: textblock
15012 #: ../src/guestfs-actions.pod:5201
15013 msgid ""
15014 "After the resize operation, the filesystem is always marked as requiring a "
15015 "consistency check (for safety).  You have to boot into Windows to perform "
15016 "this check and clear this condition.  If you I<don't> set the C<force> "
15017 "option then it is not possible to call C<guestfs_ntfsresize_opts> multiple "
15018 "times on a single filesystem without booting into Windows between each "
15019 "resize."
15020 msgstr ""
15021
15022 #. type: =head2
15023 #: ../src/guestfs-actions.pod:5216
15024 msgid "guestfs_ntfsresize_opts_va"
15025 msgstr ""
15026
15027 #. type: verbatim
15028 #: ../src/guestfs-actions.pod:5218
15029 #, no-wrap
15030 msgid ""
15031 " int\n"
15032 " guestfs_ntfsresize_opts_va (guestfs_h *g,\n"
15033 "                             const char *device,\n"
15034 "                             va_list args);\n"
15035 "\n"
15036 msgstr ""
15037
15038 #. type: textblock
15039 #: ../src/guestfs-actions.pod:5223
15040 msgid "This is the \"va_list variant\" of L</guestfs_ntfsresize_opts>."
15041 msgstr ""
15042
15043 #. type: =head2
15044 #: ../src/guestfs-actions.pod:5227
15045 msgid "guestfs_ntfsresize_opts_argv"
15046 msgstr ""
15047
15048 #. type: verbatim
15049 #: ../src/guestfs-actions.pod:5229
15050 #, no-wrap
15051 msgid ""
15052 " int\n"
15053 " guestfs_ntfsresize_opts_argv (guestfs_h *g,\n"
15054 "                               const char *device,\n"
15055 "                               const struct guestfs_ntfsresize_opts_argv *optargs);\n"
15056 "\n"
15057 msgstr ""
15058
15059 #. type: textblock
15060 #: ../src/guestfs-actions.pod:5234
15061 msgid "This is the \"argv variant\" of L</guestfs_ntfsresize_opts>."
15062 msgstr ""
15063
15064 #. type: =head2
15065 #: ../src/guestfs-actions.pod:5238
15066 msgid "guestfs_ntfsresize_size"
15067 msgstr ""
15068
15069 #. type: verbatim
15070 #: ../src/guestfs-actions.pod:5240
15071 #, no-wrap
15072 msgid ""
15073 " int\n"
15074 " guestfs_ntfsresize_size (guestfs_h *g,\n"
15075 "                          const char *device,\n"
15076 "                          int64_t size);\n"
15077 "\n"
15078 msgstr ""
15079
15080 #. type: textblock
15081 #: ../src/guestfs-actions.pod:5245
15082 msgid ""
15083 "This command is the same as C<guestfs_ntfsresize> except that it allows you "
15084 "to specify the new size (in bytes) explicitly."
15085 msgstr ""
15086
15087 #. type: textblock
15088 #: ../src/guestfs-actions.pod:5257 ../src/guestfs-actions.pod:5693
15089 #: ../src/guestfs-actions.pod:5766 ../src/guestfs-actions.pod:6034
15090 #: ../src/guestfs-actions.pod:7655
15091 msgid "(Added in 1.3.14)"
15092 msgstr ""
15093
15094 #. type: =head2
15095 #: ../src/guestfs-actions.pod:5259
15096 msgid "guestfs_part_add"
15097 msgstr ""
15098
15099 #. type: verbatim
15100 #: ../src/guestfs-actions.pod:5261
15101 #, no-wrap
15102 msgid ""
15103 " int\n"
15104 " guestfs_part_add (guestfs_h *g,\n"
15105 "                   const char *device,\n"
15106 "                   const char *prlogex,\n"
15107 "                   int64_t startsect,\n"
15108 "                   int64_t endsect);\n"
15109 "\n"
15110 msgstr ""
15111
15112 #. type: textblock
15113 #: ../src/guestfs-actions.pod:5268
15114 msgid ""
15115 "This command adds a partition to C<device>.  If there is no partition table "
15116 "on the device, call C<guestfs_part_init> first."
15117 msgstr ""
15118
15119 #. type: textblock
15120 #: ../src/guestfs-actions.pod:5271 ../fish/guestfish-actions.pod:3465
15121 msgid ""
15122 "The C<prlogex> parameter is the type of partition.  Normally you should pass"
15123 " C<p> or C<primary> here, but MBR partition tables also support C<l> (or "
15124 "C<logical>) and C<e> (or C<extended>) partition types."
15125 msgstr ""
15126
15127 #. type: textblock
15128 #: ../src/guestfs-actions.pod:5276 ../fish/guestfish-actions.pod:3470
15129 msgid ""
15130 "C<startsect> and C<endsect> are the start and end of the partition in "
15131 "I<sectors>.  C<endsect> may be negative, which means it counts backwards "
15132 "from the end of the disk (C<-1> is the last sector)."
15133 msgstr ""
15134
15135 #. type: textblock
15136 #: ../src/guestfs-actions.pod:5280
15137 msgid ""
15138 "Creating a partition which covers the whole disk is not so easy.  Use "
15139 "C<guestfs_part_disk> to do that."
15140 msgstr ""
15141
15142 #. type: textblock
15143 #: ../src/guestfs-actions.pod:5285 ../src/guestfs-actions.pod:5323
15144 #: ../src/guestfs-actions.pod:5376 ../src/guestfs-actions.pod:5454
15145 #: ../src/guestfs-actions.pod:5492 ../src/guestfs-actions.pod:5511
15146 #: ../src/guestfs-actions.pod:5551
15147 msgid "(Added in 1.0.78)"
15148 msgstr ""
15149
15150 #. type: =head2
15151 #: ../src/guestfs-actions.pod:5287
15152 msgid "guestfs_part_del"
15153 msgstr ""
15154
15155 #. type: verbatim
15156 #: ../src/guestfs-actions.pod:5289
15157 #, no-wrap
15158 msgid ""
15159 " int\n"
15160 " guestfs_part_del (guestfs_h *g,\n"
15161 "                   const char *device,\n"
15162 "                   int partnum);\n"
15163 "\n"
15164 msgstr ""
15165
15166 #. type: textblock
15167 #: ../src/guestfs-actions.pod:5294 ../fish/guestfish-actions.pod:3481
15168 msgid "This command deletes the partition numbered C<partnum> on C<device>."
15169 msgstr ""
15170
15171 #. type: textblock
15172 #: ../src/guestfs-actions.pod:5296 ../fish/guestfish-actions.pod:3483
15173 msgid ""
15174 "Note that in the case of MBR partitioning, deleting an extended partition "
15175 "also deletes any logical partitions it contains."
15176 msgstr ""
15177
15178 #. type: =head2
15179 #: ../src/guestfs-actions.pod:5304
15180 msgid "guestfs_part_disk"
15181 msgstr ""
15182
15183 #. type: verbatim
15184 #: ../src/guestfs-actions.pod:5306
15185 #, no-wrap
15186 msgid ""
15187 " int\n"
15188 " guestfs_part_disk (guestfs_h *g,\n"
15189 "                    const char *device,\n"
15190 "                    const char *parttype);\n"
15191 "\n"
15192 msgstr ""
15193
15194 #. type: textblock
15195 #: ../src/guestfs-actions.pod:5311
15196 msgid ""
15197 "This command is simply a combination of C<guestfs_part_init> followed by "
15198 "C<guestfs_part_add> to create a single primary partition covering the whole "
15199 "disk."
15200 msgstr ""
15201
15202 #. type: textblock
15203 #: ../src/guestfs-actions.pod:5315
15204 msgid ""
15205 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other"
15206 " possible values are described in C<guestfs_part_init>."
15207 msgstr ""
15208
15209 #. type: =head2
15210 #: ../src/guestfs-actions.pod:5325
15211 msgid "guestfs_part_get_bootable"
15212 msgstr ""
15213
15214 #. type: verbatim
15215 #: ../src/guestfs-actions.pod:5327
15216 #, no-wrap
15217 msgid ""
15218 " int\n"
15219 " guestfs_part_get_bootable (guestfs_h *g,\n"
15220 "                            const char *device,\n"
15221 "                            int partnum);\n"
15222 "\n"
15223 msgstr ""
15224
15225 #. type: textblock
15226 #: ../src/guestfs-actions.pod:5332 ../fish/guestfish-actions.pod:3505
15227 msgid ""
15228 "This command returns true if the partition C<partnum> on C<device> has the "
15229 "bootable flag set."
15230 msgstr ""
15231
15232 #. type: textblock
15233 #: ../src/guestfs-actions.pod:5335
15234 msgid "See also C<guestfs_part_set_bootable>."
15235 msgstr ""
15236
15237 #. type: =head2
15238 #: ../src/guestfs-actions.pod:5341
15239 msgid "guestfs_part_get_mbr_id"
15240 msgstr ""
15241
15242 #. type: verbatim
15243 #: ../src/guestfs-actions.pod:5343
15244 #, no-wrap
15245 msgid ""
15246 " int\n"
15247 " guestfs_part_get_mbr_id (guestfs_h *g,\n"
15248 "                          const char *device,\n"
15249 "                          int partnum);\n"
15250 "\n"
15251 msgstr ""
15252
15253 #. type: textblock
15254 #: ../src/guestfs-actions.pod:5348 ../fish/guestfish-actions.pod:3514
15255 msgid ""
15256 "Returns the MBR type byte (also known as the ID byte) from the numbered "
15257 "partition C<partnum>."
15258 msgstr ""
15259
15260 #. type: textblock
15261 #: ../src/guestfs-actions.pod:5351 ../src/guestfs-actions.pod:5527
15262 msgid ""
15263 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get"
15264 " undefined results for other partition table types (see "
15265 "C<guestfs_part_get_parttype>)."
15266 msgstr ""
15267
15268 #. type: =head2
15269 #: ../src/guestfs-actions.pod:5359
15270 msgid "guestfs_part_get_parttype"
15271 msgstr ""
15272
15273 #. type: verbatim
15274 #: ../src/guestfs-actions.pod:5361
15275 #, no-wrap
15276 msgid ""
15277 " char *\n"
15278 " guestfs_part_get_parttype (guestfs_h *g,\n"
15279 "                            const char *device);\n"
15280 "\n"
15281 msgstr ""
15282
15283 #. type: textblock
15284 #: ../src/guestfs-actions.pod:5365 ../fish/guestfish-actions.pod:3525
15285 msgid ""
15286 "This command examines the partition table on C<device> and returns the "
15287 "partition table type (format) being used."
15288 msgstr ""
15289
15290 #. type: textblock
15291 #: ../src/guestfs-actions.pod:5368
15292 msgid ""
15293 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
15294 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
15295 "possible, although unusual.  See C<guestfs_part_init> for a full list."
15296 msgstr ""
15297
15298 #. type: =head2
15299 #: ../src/guestfs-actions.pod:5378
15300 msgid "guestfs_part_init"
15301 msgstr ""
15302
15303 #. type: verbatim
15304 #: ../src/guestfs-actions.pod:5380
15305 #, no-wrap
15306 msgid ""
15307 " int\n"
15308 " guestfs_part_init (guestfs_h *g,\n"
15309 "                    const char *device,\n"
15310 "                    const char *parttype);\n"
15311 "\n"
15312 msgstr ""
15313
15314 #. type: textblock
15315 #: ../src/guestfs-actions.pod:5385 ../fish/guestfish-actions.pod:3537
15316 msgid ""
15317 "This creates an empty partition table on C<device> of one of the partition "
15318 "types listed below.  Usually C<parttype> should be either C<msdos> or C<gpt>"
15319 " (for large disks)."
15320 msgstr ""
15321
15322 #. type: textblock
15323 #: ../src/guestfs-actions.pod:5389
15324 msgid ""
15325 "Initially there are no partitions.  Following this, you should call "
15326 "C<guestfs_part_add> for each partition required."
15327 msgstr ""
15328
15329 #. type: textblock
15330 #: ../src/guestfs-actions.pod:5392 ../fish/guestfish-actions.pod:3544
15331 msgid "Possible values for C<parttype> are:"
15332 msgstr ""
15333
15334 #. type: =item
15335 #: ../src/guestfs-actions.pod:5396 ../fish/guestfish-actions.pod:3548
15336 msgid "B<efi> | B<gpt>"
15337 msgstr ""
15338
15339 #. type: textblock
15340 #: ../src/guestfs-actions.pod:5398 ../fish/guestfish-actions.pod:3550
15341 msgid "Intel EFI / GPT partition table."
15342 msgstr ""
15343
15344 #. type: textblock
15345 #: ../src/guestfs-actions.pod:5400 ../fish/guestfish-actions.pod:3552
15346 msgid ""
15347 "This is recommended for >= 2 TB partitions that will be accessed from Linux "
15348 "and Intel-based Mac OS X.  It also has limited backwards compatibility with "
15349 "the C<mbr> format."
15350 msgstr ""
15351
15352 #. type: =item
15353 #: ../src/guestfs-actions.pod:5404 ../fish/guestfish-actions.pod:3556
15354 msgid "B<mbr> | B<msdos>"
15355 msgstr ""
15356
15357 #. type: textblock
15358 #: ../src/guestfs-actions.pod:5406 ../fish/guestfish-actions.pod:3558
15359 msgid ""
15360 "The standard PC \"Master Boot Record\" (MBR) format used by MS-DOS and "
15361 "Windows.  This partition type will B<only> work for device sizes up to 2 TB."
15362 "  For large disks we recommend using C<gpt>."
15363 msgstr ""
15364
15365 #. type: textblock
15366 #: ../src/guestfs-actions.pod:5413 ../fish/guestfish-actions.pod:3565
15367 msgid ""
15368 "Other partition table types that may work but are not supported include:"
15369 msgstr ""
15370
15371 #. type: =item
15372 #: ../src/guestfs-actions.pod:5418 ../fish/guestfish-actions.pod:3570
15373 msgid "B<aix>"
15374 msgstr ""
15375
15376 #. type: textblock
15377 #: ../src/guestfs-actions.pod:5420 ../fish/guestfish-actions.pod:3572
15378 msgid "AIX disk labels."
15379 msgstr ""
15380
15381 #. type: =item
15382 #: ../src/guestfs-actions.pod:5422 ../fish/guestfish-actions.pod:3574
15383 msgid "B<amiga> | B<rdb>"
15384 msgstr ""
15385
15386 #. type: textblock
15387 #: ../src/guestfs-actions.pod:5424 ../fish/guestfish-actions.pod:3576
15388 msgid "Amiga \"Rigid Disk Block\" format."
15389 msgstr ""
15390
15391 #. type: =item
15392 #: ../src/guestfs-actions.pod:5426 ../fish/guestfish-actions.pod:3578
15393 msgid "B<bsd>"
15394 msgstr ""
15395
15396 #. type: textblock
15397 #: ../src/guestfs-actions.pod:5428 ../fish/guestfish-actions.pod:3580
15398 msgid "BSD disk labels."
15399 msgstr ""
15400
15401 #. type: =item
15402 #: ../src/guestfs-actions.pod:5430 ../fish/guestfish-actions.pod:3582
15403 msgid "B<dasd>"
15404 msgstr ""
15405
15406 #. type: textblock
15407 #: ../src/guestfs-actions.pod:5432 ../fish/guestfish-actions.pod:3584
15408 msgid "DASD, used on IBM mainframes."
15409 msgstr ""
15410
15411 #. type: =item
15412 #: ../src/guestfs-actions.pod:5434 ../fish/guestfish-actions.pod:3586
15413 msgid "B<dvh>"
15414 msgstr ""
15415
15416 #. type: textblock
15417 #: ../src/guestfs-actions.pod:5436 ../fish/guestfish-actions.pod:3588
15418 msgid "MIPS/SGI volumes."
15419 msgstr ""
15420
15421 #. type: =item
15422 #: ../src/guestfs-actions.pod:5438 ../fish/guestfish-actions.pod:3590
15423 msgid "B<mac>"
15424 msgstr ""
15425
15426 #. type: textblock
15427 #: ../src/guestfs-actions.pod:5440 ../fish/guestfish-actions.pod:3592
15428 msgid "Old Mac partition format.  Modern Macs use C<gpt>."
15429 msgstr ""
15430
15431 #. type: =item
15432 #: ../src/guestfs-actions.pod:5442 ../fish/guestfish-actions.pod:3594
15433 msgid "B<pc98>"
15434 msgstr ""
15435
15436 #. type: textblock
15437 #: ../src/guestfs-actions.pod:5444 ../fish/guestfish-actions.pod:3596
15438 msgid "NEC PC-98 format, common in Japan apparently."
15439 msgstr ""
15440
15441 #. type: =item
15442 #: ../src/guestfs-actions.pod:5446 ../fish/guestfish-actions.pod:3598
15443 msgid "B<sun>"
15444 msgstr ""
15445
15446 #. type: textblock
15447 #: ../src/guestfs-actions.pod:5448 ../fish/guestfish-actions.pod:3600
15448 msgid "Sun disk labels."
15449 msgstr ""
15450
15451 #. type: =head2
15452 #: ../src/guestfs-actions.pod:5456
15453 msgid "guestfs_part_list"
15454 msgstr ""
15455
15456 #. type: verbatim
15457 #: ../src/guestfs-actions.pod:5458
15458 #, no-wrap
15459 msgid ""
15460 " struct guestfs_partition_list *\n"
15461 " guestfs_part_list (guestfs_h *g,\n"
15462 "                    const char *device);\n"
15463 "\n"
15464 msgstr ""
15465
15466 #. type: textblock
15467 #: ../src/guestfs-actions.pod:5462 ../fish/guestfish-actions.pod:3608
15468 msgid ""
15469 "This command parses the partition table on C<device> and returns the list of"
15470 " partitions found."
15471 msgstr ""
15472
15473 #. type: textblock
15474 #: ../src/guestfs-actions.pod:5465 ../fish/guestfish-actions.pod:3611
15475 msgid "The fields in the returned structure are:"
15476 msgstr ""
15477
15478 #. type: =item
15479 #: ../src/guestfs-actions.pod:5469 ../fish/guestfish-actions.pod:3615
15480 msgid "B<part_num>"
15481 msgstr ""
15482
15483 #. type: textblock
15484 #: ../src/guestfs-actions.pod:5471 ../fish/guestfish-actions.pod:3617
15485 msgid "Partition number, counting from 1."
15486 msgstr ""
15487
15488 #. type: =item
15489 #: ../src/guestfs-actions.pod:5473 ../fish/guestfish-actions.pod:3619
15490 msgid "B<part_start>"
15491 msgstr ""
15492
15493 #. type: textblock
15494 #: ../src/guestfs-actions.pod:5475
15495 msgid ""
15496 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
15497 "the device's sector size, see C<guestfs_blockdev_getss>."
15498 msgstr ""
15499
15500 #. type: =item
15501 #: ../src/guestfs-actions.pod:5478 ../fish/guestfish-actions.pod:3624
15502 msgid "B<part_end>"
15503 msgstr ""
15504
15505 #. type: textblock
15506 #: ../src/guestfs-actions.pod:5480 ../fish/guestfish-actions.pod:3626
15507 msgid "End of the partition in bytes."
15508 msgstr ""
15509
15510 #. type: =item
15511 #: ../src/guestfs-actions.pod:5482 ../fish/guestfish-actions.pod:3628
15512 msgid "B<part_size>"
15513 msgstr ""
15514
15515 #. type: textblock
15516 #: ../src/guestfs-actions.pod:5484 ../fish/guestfish-actions.pod:3630
15517 msgid "Size of the partition in bytes."
15518 msgstr ""
15519
15520 #. type: textblock
15521 #: ../src/guestfs-actions.pod:5488
15522 msgid ""
15523 "This function returns a C<struct guestfs_partition_list *>, or NULL if there"
15524 " was an error.  I<The caller must call C<guestfs_free_partition_list> after "
15525 "use>."
15526 msgstr ""
15527
15528 #. type: =head2
15529 #: ../src/guestfs-actions.pod:5494
15530 msgid "guestfs_part_set_bootable"
15531 msgstr ""
15532
15533 #. type: verbatim
15534 #: ../src/guestfs-actions.pod:5496
15535 #, no-wrap
15536 msgid ""
15537 " int\n"
15538 " guestfs_part_set_bootable (guestfs_h *g,\n"
15539 "                            const char *device,\n"
15540 "                            int partnum,\n"
15541 "                            int bootable);\n"
15542 "\n"
15543 msgstr ""
15544
15545 #. type: textblock
15546 #: ../src/guestfs-actions.pod:5502 ../fish/guestfish-actions.pod:3638
15547 msgid ""
15548 "This sets the bootable flag on partition numbered C<partnum> on device "
15549 "C<device>.  Note that partitions are numbered from 1."
15550 msgstr ""
15551
15552 #. type: textblock
15553 #: ../src/guestfs-actions.pod:5505 ../fish/guestfish-actions.pod:3641
15554 msgid ""
15555 "The bootable flag is used by some operating systems (notably Windows) to "
15556 "determine which partition to boot from.  It is by no means universally "
15557 "recognized."
15558 msgstr ""
15559
15560 #. type: =head2
15561 #: ../src/guestfs-actions.pod:5513
15562 msgid "guestfs_part_set_mbr_id"
15563 msgstr ""
15564
15565 #. type: verbatim
15566 #: ../src/guestfs-actions.pod:5515
15567 #, no-wrap
15568 msgid ""
15569 " int\n"
15570 " guestfs_part_set_mbr_id (guestfs_h *g,\n"
15571 "                          const char *device,\n"
15572 "                          int partnum,\n"
15573 "                          int idbyte);\n"
15574 "\n"
15575 msgstr ""
15576
15577 #. type: textblock
15578 #: ../src/guestfs-actions.pod:5521 ../fish/guestfish-actions.pod:3649
15579 msgid ""
15580 "Sets the MBR type byte (also known as the ID byte) of the numbered partition"
15581 " C<partnum> to C<idbyte>.  Note that the type bytes quoted in most "
15582 "documentation are in fact hexadecimal numbers, but usually documented "
15583 "without any leading \"0x\" which might be confusing."
15584 msgstr ""
15585
15586 #. type: =head2
15587 #: ../src/guestfs-actions.pod:5535
15588 msgid "guestfs_part_set_name"
15589 msgstr ""
15590
15591 #. type: verbatim
15592 #: ../src/guestfs-actions.pod:5537
15593 #, no-wrap
15594 msgid ""
15595 " int\n"
15596 " guestfs_part_set_name (guestfs_h *g,\n"
15597 "                        const char *device,\n"
15598 "                        int partnum,\n"
15599 "                        const char *name);\n"
15600 "\n"
15601 msgstr ""
15602
15603 #. type: textblock
15604 #: ../src/guestfs-actions.pod:5543 ../fish/guestfish-actions.pod:3663
15605 msgid ""
15606 "This sets the partition name on partition numbered C<partnum> on device "
15607 "C<device>.  Note that partitions are numbered from 1."
15608 msgstr ""
15609
15610 #. type: textblock
15611 #: ../src/guestfs-actions.pod:5546 ../fish/guestfish-actions.pod:3666
15612 msgid ""
15613 "The partition name can only be set on certain types of partition table.  "
15614 "This works on C<gpt> but not on C<mbr> partitions."
15615 msgstr ""
15616
15617 #. type: =head2
15618 #: ../src/guestfs-actions.pod:5553
15619 msgid "guestfs_part_to_dev"
15620 msgstr ""
15621
15622 #. type: verbatim
15623 #: ../src/guestfs-actions.pod:5555
15624 #, no-wrap
15625 msgid ""
15626 " char *\n"
15627 " guestfs_part_to_dev (guestfs_h *g,\n"
15628 "                      const char *partition);\n"
15629 "\n"
15630 msgstr ""
15631
15632 #. type: textblock
15633 #: ../src/guestfs-actions.pod:5559 ../fish/guestfish-actions.pod:3673
15634 msgid ""
15635 "This function takes a partition name (eg. \"/dev/sdb1\") and removes the "
15636 "partition number, returning the device name (eg. \"/dev/sdb\")."
15637 msgstr ""
15638
15639 #. type: textblock
15640 #: ../src/guestfs-actions.pod:5563
15641 msgid ""
15642 "The named partition must exist, for example as a string returned from "
15643 "C<guestfs_list_partitions>."
15644 msgstr ""
15645
15646 #. type: =head2
15647 #: ../src/guestfs-actions.pod:5571
15648 msgid "guestfs_ping_daemon"
15649 msgstr ""
15650
15651 #. type: verbatim
15652 #: ../src/guestfs-actions.pod:5573
15653 #, no-wrap
15654 msgid ""
15655 " int\n"
15656 " guestfs_ping_daemon (guestfs_h *g);\n"
15657 "\n"
15658 msgstr ""
15659
15660 #. type: textblock
15661 #: ../src/guestfs-actions.pod:5576 ../fish/guestfish-actions.pod:3684
15662 msgid ""
15663 "This is a test probe into the guestfs daemon running inside the qemu "
15664 "subprocess.  Calling this function checks that the daemon responds to the "
15665 "ping message, without affecting the daemon or attached block device(s) in "
15666 "any other way."
15667 msgstr ""
15668
15669 #. type: =head2
15670 #: ../src/guestfs-actions.pod:5585
15671 msgid "guestfs_pread"
15672 msgstr ""
15673
15674 #. type: verbatim
15675 #: ../src/guestfs-actions.pod:5587
15676 #, no-wrap
15677 msgid ""
15678 " char *\n"
15679 " guestfs_pread (guestfs_h *g,\n"
15680 "                const char *path,\n"
15681 "                int count,\n"
15682 "                int64_t offset,\n"
15683 "                size_t *size_r);\n"
15684 "\n"
15685 msgstr ""
15686
15687 #. type: textblock
15688 #: ../src/guestfs-actions.pod:5594 ../fish/guestfish-actions.pod:3693
15689 msgid ""
15690 "This command lets you read part of a file.  It reads C<count> bytes of the "
15691 "file, starting at C<offset>, from file C<path>."
15692 msgstr ""
15693
15694 #. type: textblock
15695 #: ../src/guestfs-actions.pod:5597 ../src/guestfs-actions.pod:5623
15696 #: ../fish/guestfish-actions.pod:3696 ../fish/guestfish-actions.pod:3711
15697 msgid ""
15698 "This may read fewer bytes than requested.  For further details see the "
15699 "L<pread(2)> system call."
15700 msgstr ""
15701
15702 #. type: textblock
15703 #: ../src/guestfs-actions.pod:5600
15704 msgid "See also C<guestfs_pwrite>, C<guestfs_pread_device>."
15705 msgstr ""
15706
15707 #. type: =head2
15708 #: ../src/guestfs-actions.pod:5611
15709 msgid "guestfs_pread_device"
15710 msgstr ""
15711
15712 #. type: verbatim
15713 #: ../src/guestfs-actions.pod:5613
15714 #, no-wrap
15715 msgid ""
15716 " char *\n"
15717 " guestfs_pread_device (guestfs_h *g,\n"
15718 "                       const char *device,\n"
15719 "                       int count,\n"
15720 "                       int64_t offset,\n"
15721 "                       size_t *size_r);\n"
15722 "\n"
15723 msgstr ""
15724
15725 #. type: textblock
15726 #: ../src/guestfs-actions.pod:5620 ../fish/guestfish-actions.pod:3708
15727 msgid ""
15728 "This command lets you read part of a file.  It reads C<count> bytes of "
15729 "C<device>, starting at C<offset>."
15730 msgstr ""
15731
15732 #. type: textblock
15733 #: ../src/guestfs-actions.pod:5626
15734 msgid "See also C<guestfs_pread>."
15735 msgstr ""
15736
15737 #. type: textblock
15738 #: ../src/guestfs-actions.pod:5635
15739 msgid "(Added in 1.5.21)"
15740 msgstr ""
15741
15742 #. type: =head2
15743 #: ../src/guestfs-actions.pod:5637
15744 msgid "guestfs_pvcreate"
15745 msgstr ""
15746
15747 #. type: verbatim
15748 #: ../src/guestfs-actions.pod:5639
15749 #, no-wrap
15750 msgid ""
15751 " int\n"
15752 " guestfs_pvcreate (guestfs_h *g,\n"
15753 "                   const char *device);\n"
15754 "\n"
15755 msgstr ""
15756
15757 #. type: textblock
15758 #: ../src/guestfs-actions.pod:5643 ../fish/guestfish-actions.pod:3723
15759 msgid ""
15760 "This creates an LVM physical volume on the named C<device>, where C<device> "
15761 "should usually be a partition name such as C</dev/sda1>."
15762 msgstr ""
15763
15764 #. type: =head2
15765 #: ../src/guestfs-actions.pod:5651
15766 msgid "guestfs_pvremove"
15767 msgstr ""
15768
15769 #. type: verbatim
15770 #: ../src/guestfs-actions.pod:5653
15771 #, no-wrap
15772 msgid ""
15773 " int\n"
15774 " guestfs_pvremove (guestfs_h *g,\n"
15775 "                   const char *device);\n"
15776 "\n"
15777 msgstr ""
15778
15779 #. type: textblock
15780 #: ../src/guestfs-actions.pod:5657 ../fish/guestfish-actions.pod:3731
15781 msgid ""
15782 "This wipes a physical volume C<device> so that LVM will no longer recognise "
15783 "it."
15784 msgstr ""
15785
15786 #. type: textblock
15787 #: ../src/guestfs-actions.pod:5660 ../fish/guestfish-actions.pod:3734
15788 msgid ""
15789 "The implementation uses the C<pvremove> command which refuses to wipe "
15790 "physical volumes that contain any volume groups, so you have to remove those"
15791 " first."
15792 msgstr ""
15793
15794 #. type: =head2
15795 #: ../src/guestfs-actions.pod:5668
15796 msgid "guestfs_pvresize"
15797 msgstr ""
15798
15799 #. type: verbatim
15800 #: ../src/guestfs-actions.pod:5670
15801 #, no-wrap
15802 msgid ""
15803 " int\n"
15804 " guestfs_pvresize (guestfs_h *g,\n"
15805 "                   const char *device);\n"
15806 "\n"
15807 msgstr ""
15808
15809 #. type: textblock
15810 #: ../src/guestfs-actions.pod:5674 ../fish/guestfish-actions.pod:3742
15811 msgid ""
15812 "This resizes (expands or shrinks) an existing LVM physical volume to match "
15813 "the new size of the underlying device."
15814 msgstr ""
15815
15816 #. type: =head2
15817 #: ../src/guestfs-actions.pod:5681
15818 msgid "guestfs_pvresize_size"
15819 msgstr ""
15820
15821 #. type: verbatim
15822 #: ../src/guestfs-actions.pod:5683
15823 #, no-wrap
15824 msgid ""
15825 " int\n"
15826 " guestfs_pvresize_size (guestfs_h *g,\n"
15827 "                        const char *device,\n"
15828 "                        int64_t size);\n"
15829 "\n"
15830 msgstr ""
15831
15832 #. type: textblock
15833 #: ../src/guestfs-actions.pod:5688
15834 msgid ""
15835 "This command is the same as C<guestfs_pvresize> except that it allows you to"
15836 " specify the new size (in bytes) explicitly."
15837 msgstr ""
15838
15839 #. type: =head2
15840 #: ../src/guestfs-actions.pod:5695
15841 msgid "guestfs_pvs"
15842 msgstr ""
15843
15844 #. type: verbatim
15845 #: ../src/guestfs-actions.pod:5697
15846 #, no-wrap
15847 msgid ""
15848 " char **\n"
15849 " guestfs_pvs (guestfs_h *g);\n"
15850 "\n"
15851 msgstr ""
15852
15853 #. type: textblock
15854 #: ../src/guestfs-actions.pod:5700 ../fish/guestfish-actions.pod:3756
15855 msgid ""
15856 "List all the physical volumes detected.  This is the equivalent of the "
15857 "L<pvs(8)> command."
15858 msgstr ""
15859
15860 #. type: textblock
15861 #: ../src/guestfs-actions.pod:5703 ../fish/guestfish-actions.pod:3759
15862 msgid ""
15863 "This returns a list of just the device names that contain PVs (eg. "
15864 "C</dev/sda2>)."
15865 msgstr ""
15866
15867 #. type: textblock
15868 #: ../src/guestfs-actions.pod:5706
15869 msgid "See also C<guestfs_pvs_full>."
15870 msgstr ""
15871
15872 #. type: =head2
15873 #: ../src/guestfs-actions.pod:5714
15874 msgid "guestfs_pvs_full"
15875 msgstr ""
15876
15877 #. type: verbatim
15878 #: ../src/guestfs-actions.pod:5716
15879 #, no-wrap
15880 msgid ""
15881 " struct guestfs_lvm_pv_list *\n"
15882 " guestfs_pvs_full (guestfs_h *g);\n"
15883 "\n"
15884 msgstr ""
15885
15886 #. type: textblock
15887 #: ../src/guestfs-actions.pod:5719 ../fish/guestfish-actions.pod:3768
15888 msgid ""
15889 "List all the physical volumes detected.  This is the equivalent of the "
15890 "L<pvs(8)> command.  The \"full\" version includes all fields."
15891 msgstr ""
15892
15893 #. type: textblock
15894 #: ../src/guestfs-actions.pod:5722
15895 msgid ""
15896 "This function returns a C<struct guestfs_lvm_pv_list *>, or NULL if there "
15897 "was an error.  I<The caller must call C<guestfs_free_lvm_pv_list> after "
15898 "use>."
15899 msgstr ""
15900
15901 #. type: =head2
15902 #: ../src/guestfs-actions.pod:5728
15903 msgid "guestfs_pvuuid"
15904 msgstr ""
15905
15906 #. type: verbatim
15907 #: ../src/guestfs-actions.pod:5730
15908 #, no-wrap
15909 msgid ""
15910 " char *\n"
15911 " guestfs_pvuuid (guestfs_h *g,\n"
15912 "                 const char *device);\n"
15913 "\n"
15914 msgstr ""
15915
15916 #. type: textblock
15917 #: ../src/guestfs-actions.pod:5734 ../fish/guestfish-actions.pod:3775
15918 msgid "This command returns the UUID of the LVM PV C<device>."
15919 msgstr ""
15920
15921 #. type: =head2
15922 #: ../src/guestfs-actions.pod:5741
15923 msgid "guestfs_pwrite"
15924 msgstr ""
15925
15926 #. type: verbatim
15927 #: ../src/guestfs-actions.pod:5743
15928 #, no-wrap
15929 msgid ""
15930 " int\n"
15931 " guestfs_pwrite (guestfs_h *g,\n"
15932 "                 const char *path,\n"
15933 "                 const char *content,\n"
15934 "                 size_t content_size,\n"
15935 "                 int64_t offset);\n"
15936 "\n"
15937 msgstr ""
15938
15939 #. type: textblock
15940 #: ../src/guestfs-actions.pod:5750 ../fish/guestfish-actions.pod:3781
15941 msgid ""
15942 "This command writes to part of a file.  It writes the data buffer C<content>"
15943 " to the file C<path> starting at offset C<offset>."
15944 msgstr ""
15945
15946 #. type: textblock
15947 #: ../src/guestfs-actions.pod:5753 ../fish/guestfish-actions.pod:3784
15948 msgid ""
15949 "This command implements the L<pwrite(2)> system call, and like that system "
15950 "call it may not write the full data requested.  The return value is the "
15951 "number of bytes that were actually written to the file.  This could even be "
15952 "0, although short writes are unlikely for regular files in ordinary "
15953 "circumstances."
15954 msgstr ""
15955
15956 #. type: textblock
15957 #: ../src/guestfs-actions.pod:5759
15958 msgid "See also C<guestfs_pread>, C<guestfs_pwrite_device>."
15959 msgstr ""
15960
15961 #. type: =head2
15962 #: ../src/guestfs-actions.pod:5768
15963 msgid "guestfs_pwrite_device"
15964 msgstr ""
15965
15966 #. type: verbatim
15967 #: ../src/guestfs-actions.pod:5770
15968 #, no-wrap
15969 msgid ""
15970 " int\n"
15971 " guestfs_pwrite_device (guestfs_h *g,\n"
15972 "                        const char *device,\n"
15973 "                        const char *content,\n"
15974 "                        size_t content_size,\n"
15975 "                        int64_t offset);\n"
15976 "\n"
15977 msgstr ""
15978
15979 #. type: textblock
15980 #: ../src/guestfs-actions.pod:5777 ../fish/guestfish-actions.pod:3799
15981 msgid ""
15982 "This command writes to part of a device.  It writes the data buffer "
15983 "C<content> to C<device> starting at offset C<offset>."
15984 msgstr ""
15985
15986 #. type: textblock
15987 #: ../src/guestfs-actions.pod:5780 ../fish/guestfish-actions.pod:3802
15988 msgid ""
15989 "This command implements the L<pwrite(2)> system call, and like that system "
15990 "call it may not write the full data requested (although short writes to disk"
15991 " devices and partitions are probably impossible with standard Linux "
15992 "kernels)."
15993 msgstr ""
15994
15995 #. type: textblock
15996 #: ../src/guestfs-actions.pod:5785
15997 msgid "See also C<guestfs_pwrite>."
15998 msgstr ""
15999
16000 #. type: textblock
16001 #: ../src/guestfs-actions.pod:5792
16002 msgid "(Added in 1.5.20)"
16003 msgstr ""
16004
16005 #. type: =head2
16006 #: ../src/guestfs-actions.pod:5794
16007 msgid "guestfs_read_file"
16008 msgstr ""
16009
16010 #. type: verbatim
16011 #: ../src/guestfs-actions.pod:5796
16012 #, no-wrap
16013 msgid ""
16014 " char *\n"
16015 " guestfs_read_file (guestfs_h *g,\n"
16016 "                    const char *path,\n"
16017 "                    size_t *size_r);\n"
16018 "\n"
16019 msgstr ""
16020
16021 #. type: textblock
16022 #: ../src/guestfs-actions.pod:5801 ../fish/guestfish-actions.pod:3816
16023 msgid "This calls returns the contents of the file C<path> as a buffer."
16024 msgstr ""
16025
16026 #. type: textblock
16027 #: ../src/guestfs-actions.pod:5804
16028 msgid ""
16029 "Unlike C<guestfs_cat>, this function can correctly handle files that contain"
16030 " embedded ASCII NUL characters.  However unlike C<guestfs_download>, this "
16031 "function is limited in the total size of file that can be handled."
16032 msgstr ""
16033
16034 #. type: textblock
16035 #: ../src/guestfs-actions.pod:5816
16036 msgid "(Added in 1.0.63)"
16037 msgstr ""
16038
16039 #. type: =head2
16040 #: ../src/guestfs-actions.pod:5818
16041 msgid "guestfs_read_lines"
16042 msgstr ""
16043
16044 #. type: verbatim
16045 #: ../src/guestfs-actions.pod:5820
16046 #, no-wrap
16047 msgid ""
16048 " char **\n"
16049 " guestfs_read_lines (guestfs_h *g,\n"
16050 "                     const char *path);\n"
16051 "\n"
16052 msgstr ""
16053
16054 #. type: textblock
16055 #: ../src/guestfs-actions.pod:5826 ../fish/guestfish-actions.pod:3833
16056 msgid ""
16057 "The file contents are returned as a list of lines.  Trailing C<LF> and "
16058 "C<CRLF> character sequences are I<not> returned."
16059 msgstr ""
16060
16061 #. type: textblock
16062 #: ../src/guestfs-actions.pod:5829
16063 msgid ""
16064 "Note that this function cannot correctly handle binary files (specifically, "
16065 "files containing C<\\0> character which is treated as end of line).  For "
16066 "those you need to use the C<guestfs_read_file> function which has a more "
16067 "complex interface."
16068 msgstr ""
16069
16070 #. type: =head2
16071 #: ../src/guestfs-actions.pod:5840
16072 msgid "guestfs_readdir"
16073 msgstr ""
16074
16075 #. type: verbatim
16076 #: ../src/guestfs-actions.pod:5842
16077 #, no-wrap
16078 msgid ""
16079 " struct guestfs_dirent_list *\n"
16080 " guestfs_readdir (guestfs_h *g,\n"
16081 "                  const char *dir);\n"
16082 "\n"
16083 msgstr ""
16084
16085 #. type: textblock
16086 #: ../src/guestfs-actions.pod:5846 ../fish/guestfish-actions.pod:3845
16087 msgid "This returns the list of directory entries in directory C<dir>."
16088 msgstr ""
16089
16090 #. type: textblock
16091 #: ../src/guestfs-actions.pod:5848 ../fish/guestfish-actions.pod:3847
16092 msgid ""
16093 "All entries in the directory are returned, including C<.> and C<..>.  The "
16094 "entries are I<not> sorted, but returned in the same order as the underlying "
16095 "filesystem."
16096 msgstr ""
16097
16098 #. type: textblock
16099 #: ../src/guestfs-actions.pod:5852 ../fish/guestfish-actions.pod:3851
16100 msgid ""
16101 "Also this call returns basic file type information about each file.  The "
16102 "C<ftyp> field will contain one of the following characters:"
16103 msgstr ""
16104
16105 #. type: =item
16106 #: ../src/guestfs-actions.pod:5857 ../fish/guestfish-actions.pod:3856
16107 msgid "'b'"
16108 msgstr ""
16109
16110 #. type: textblock
16111 #: ../src/guestfs-actions.pod:5859 ../fish/guestfish-actions.pod:3858
16112 msgid "Block special"
16113 msgstr ""
16114
16115 #. type: =item
16116 #: ../src/guestfs-actions.pod:5861 ../fish/guestfish-actions.pod:3860
16117 msgid "'c'"
16118 msgstr ""
16119
16120 #. type: textblock
16121 #: ../src/guestfs-actions.pod:5863 ../fish/guestfish-actions.pod:3862
16122 msgid "Char special"
16123 msgstr ""
16124
16125 #. type: =item
16126 #: ../src/guestfs-actions.pod:5865 ../fish/guestfish-actions.pod:3864
16127 msgid "'d'"
16128 msgstr ""
16129
16130 #. type: textblock
16131 #: ../src/guestfs-actions.pod:5867 ../fish/guestfish-actions.pod:3866
16132 msgid "Directory"
16133 msgstr ""
16134
16135 #. type: =item
16136 #: ../src/guestfs-actions.pod:5869 ../fish/guestfish-actions.pod:3868
16137 msgid "'f'"
16138 msgstr ""
16139
16140 #. type: textblock
16141 #: ../src/guestfs-actions.pod:5871 ../fish/guestfish-actions.pod:3870
16142 msgid "FIFO (named pipe)"
16143 msgstr ""
16144
16145 #. type: =item
16146 #: ../src/guestfs-actions.pod:5873 ../fish/guestfish-actions.pod:3872
16147 msgid "'l'"
16148 msgstr ""
16149
16150 #. type: textblock
16151 #: ../src/guestfs-actions.pod:5875 ../fish/guestfish-actions.pod:3874
16152 msgid "Symbolic link"
16153 msgstr ""
16154
16155 #. type: =item
16156 #: ../src/guestfs-actions.pod:5877 ../fish/guestfish-actions.pod:3876
16157 msgid "'r'"
16158 msgstr ""
16159
16160 #. type: textblock
16161 #: ../src/guestfs-actions.pod:5879 ../fish/guestfish-actions.pod:3878
16162 msgid "Regular file"
16163 msgstr ""
16164
16165 #. type: =item
16166 #: ../src/guestfs-actions.pod:5881 ../fish/guestfish-actions.pod:3880
16167 msgid "'s'"
16168 msgstr ""
16169
16170 #. type: textblock
16171 #: ../src/guestfs-actions.pod:5883 ../fish/guestfish-actions.pod:3882
16172 msgid "Socket"
16173 msgstr ""
16174
16175 #. type: =item
16176 #: ../src/guestfs-actions.pod:5885 ../fish/guestfish-actions.pod:3884
16177 msgid "'u'"
16178 msgstr ""
16179
16180 #. type: textblock
16181 #: ../src/guestfs-actions.pod:5887 ../fish/guestfish-actions.pod:3886
16182 msgid "Unknown file type"
16183 msgstr ""
16184
16185 #. type: =item
16186 #: ../src/guestfs-actions.pod:5889 ../fish/guestfish-actions.pod:3888
16187 msgid "'?'"
16188 msgstr ""
16189
16190 #. type: textblock
16191 #: ../src/guestfs-actions.pod:5891 ../fish/guestfish-actions.pod:3890
16192 msgid ""
16193 "The L<readdir(3)> call returned a C<d_type> field with an unexpected value"
16194 msgstr ""
16195
16196 #. type: textblock
16197 #: ../src/guestfs-actions.pod:5896
16198 msgid ""
16199 "This function is primarily intended for use by programs.  To get a simple "
16200 "list of names, use C<guestfs_ls>.  To get a printable directory for human "
16201 "consumption, use C<guestfs_ll>."
16202 msgstr ""
16203
16204 #. type: textblock
16205 #: ../src/guestfs-actions.pod:5900
16206 msgid ""
16207 "This function returns a C<struct guestfs_dirent_list *>, or NULL if there "
16208 "was an error.  I<The caller must call C<guestfs_free_dirent_list> after "
16209 "use>."
16210 msgstr ""
16211
16212 #. type: =head2
16213 #: ../src/guestfs-actions.pod:5906
16214 msgid "guestfs_readlink"
16215 msgstr ""
16216
16217 #. type: verbatim
16218 #: ../src/guestfs-actions.pod:5908
16219 #, no-wrap
16220 msgid ""
16221 " char *\n"
16222 " guestfs_readlink (guestfs_h *g,\n"
16223 "                   const char *path);\n"
16224 "\n"
16225 msgstr ""
16226
16227 #. type: textblock
16228 #: ../src/guestfs-actions.pod:5912 ../fish/guestfish-actions.pod:3903
16229 msgid "This command reads the target of a symbolic link."
16230 msgstr ""
16231
16232 #. type: =head2
16233 #: ../src/guestfs-actions.pod:5919
16234 msgid "guestfs_readlinklist"
16235 msgstr ""
16236
16237 #. type: verbatim
16238 #: ../src/guestfs-actions.pod:5921
16239 #, no-wrap
16240 msgid ""
16241 " char **\n"
16242 " guestfs_readlinklist (guestfs_h *g,\n"
16243 "                       const char *path,\n"
16244 "                       char *const *names);\n"
16245 "\n"
16246 msgstr ""
16247
16248 #. type: textblock
16249 #: ../src/guestfs-actions.pod:5926 ../fish/guestfish-actions.pod:3909
16250 msgid ""
16251 "This call allows you to do a C<readlink> operation on multiple files, where "
16252 "all files are in the directory C<path>.  C<names> is the list of files from "
16253 "this directory."
16254 msgstr ""
16255
16256 #. type: textblock
16257 #: ../src/guestfs-actions.pod:5930 ../fish/guestfish-actions.pod:3913
16258 msgid ""
16259 "On return you get a list of strings, with a one-to-one correspondence to the"
16260 " C<names> list.  Each string is the value of the symbolic link."
16261 msgstr ""
16262
16263 #. type: textblock
16264 #: ../src/guestfs-actions.pod:5934 ../fish/guestfish-actions.pod:3917
16265 msgid ""
16266 "If the C<readlink(2)> operation fails on any name, then the corresponding "
16267 "result string is the empty string C<\"\">.  However the whole operation is "
16268 "completed even if there were C<readlink(2)> errors, and so you can call this"
16269 " function with names where you don't know if they are symbolic links already"
16270 " (albeit slightly less efficient)."
16271 msgstr ""
16272
16273 #. type: textblock
16274 #: ../src/guestfs-actions.pod:5941 ../fish/guestfish-actions.pod:3924
16275 msgid ""
16276 "This call is intended for programs that want to efficiently list a directory"
16277 " contents without making many round-trips.  Very long directory listings "
16278 "might cause the protocol message size to be exceeded, causing this call to "
16279 "fail.  The caller must split up such requests into smaller groups of names."
16280 msgstr ""
16281
16282 #. type: =head2
16283 #: ../src/guestfs-actions.pod:5954
16284 msgid "guestfs_realpath"
16285 msgstr ""
16286
16287 #. type: verbatim
16288 #: ../src/guestfs-actions.pod:5956
16289 #, no-wrap
16290 msgid ""
16291 " char *\n"
16292 " guestfs_realpath (guestfs_h *g,\n"
16293 "                   const char *path);\n"
16294 "\n"
16295 msgstr ""
16296
16297 #. type: textblock
16298 #: ../src/guestfs-actions.pod:5960 ../fish/guestfish-actions.pod:3935
16299 msgid ""
16300 "Return the canonicalized absolute pathname of C<path>.  The returned path "
16301 "has no C<.>, C<..> or symbolic link path elements."
16302 msgstr ""
16303
16304 #. type: =head2
16305 #: ../src/guestfs-actions.pod:5968
16306 msgid "guestfs_removexattr"
16307 msgstr ""
16308
16309 #. type: verbatim
16310 #: ../src/guestfs-actions.pod:5970
16311 #, no-wrap
16312 msgid ""
16313 " int\n"
16314 " guestfs_removexattr (guestfs_h *g,\n"
16315 "                      const char *xattr,\n"
16316 "                      const char *path);\n"
16317 "\n"
16318 msgstr ""
16319
16320 #. type: textblock
16321 #: ../src/guestfs-actions.pod:5975 ../fish/guestfish-actions.pod:3942
16322 msgid ""
16323 "This call removes the extended attribute named C<xattr> of the file C<path>."
16324 msgstr ""
16325
16326 #. type: textblock
16327 #: ../src/guestfs-actions.pod:5978
16328 msgid "See also: C<guestfs_lremovexattr>, L<attr(5)>."
16329 msgstr ""
16330
16331 #. type: =head2
16332 #: ../src/guestfs-actions.pod:5984
16333 msgid "guestfs_resize2fs"
16334 msgstr ""
16335
16336 #. type: verbatim
16337 #: ../src/guestfs-actions.pod:5986
16338 #, no-wrap
16339 msgid ""
16340 " int\n"
16341 " guestfs_resize2fs (guestfs_h *g,\n"
16342 "                    const char *device);\n"
16343 "\n"
16344 msgstr ""
16345
16346 #. type: textblock
16347 #: ../src/guestfs-actions.pod:5990 ../fish/guestfish-actions.pod:3951
16348 msgid ""
16349 "This resizes an ext2, ext3 or ext4 filesystem to match the size of the "
16350 "underlying device."
16351 msgstr ""
16352
16353 #. type: textblock
16354 #: ../src/guestfs-actions.pod:5993
16355 msgid ""
16356 "I<Note:> It is sometimes required that you run C<guestfs_e2fsck_f> on the "
16357 "C<device> before calling this command.  For unknown reasons C<resize2fs> "
16358 "sometimes gives an error about this and sometimes not.  In any case, it is "
16359 "always safe to call C<guestfs_e2fsck_f> before calling this function."
16360 msgstr ""
16361
16362 #. type: =head2
16363 #: ../src/guestfs-actions.pod:6003
16364 msgid "guestfs_resize2fs_M"
16365 msgstr ""
16366
16367 #. type: verbatim
16368 #: ../src/guestfs-actions.pod:6005
16369 #, no-wrap
16370 msgid ""
16371 " int\n"
16372 " guestfs_resize2fs_M (guestfs_h *g,\n"
16373 "                      const char *device);\n"
16374 "\n"
16375 msgstr ""
16376
16377 #. type: textblock
16378 #: ../src/guestfs-actions.pod:6009
16379 msgid ""
16380 "This command is the same as C<guestfs_resize2fs>, but the filesystem is "
16381 "resized to its minimum size.  This works like the I<-M> option to the "
16382 "C<resize2fs> command."
16383 msgstr ""
16384
16385 #. type: textblock
16386 #: ../src/guestfs-actions.pod:6013
16387 msgid ""
16388 "To get the resulting size of the filesystem you should call "
16389 "C<guestfs_tune2fs_l> and read the C<Block size> and C<Block count> values.  "
16390 "These two numbers, multiplied together, give the resulting size of the "
16391 "minimal filesystem in bytes."
16392 msgstr ""
16393
16394 #. type: =head2
16395 #: ../src/guestfs-actions.pod:6022
16396 msgid "guestfs_resize2fs_size"
16397 msgstr ""
16398
16399 #. type: verbatim
16400 #: ../src/guestfs-actions.pod:6024
16401 #, no-wrap
16402 msgid ""
16403 " int\n"
16404 " guestfs_resize2fs_size (guestfs_h *g,\n"
16405 "                         const char *device,\n"
16406 "                         int64_t size);\n"
16407 "\n"
16408 msgstr ""
16409
16410 #. type: textblock
16411 #: ../src/guestfs-actions.pod:6029
16412 msgid ""
16413 "This command is the same as C<guestfs_resize2fs> except that it allows you "
16414 "to specify the new size (in bytes) explicitly."
16415 msgstr ""
16416
16417 #. type: =head2
16418 #: ../src/guestfs-actions.pod:6036
16419 msgid "guestfs_rm"
16420 msgstr ""
16421
16422 #. type: verbatim
16423 #: ../src/guestfs-actions.pod:6038
16424 #, no-wrap
16425 msgid ""
16426 " int\n"
16427 " guestfs_rm (guestfs_h *g,\n"
16428 "             const char *path);\n"
16429 "\n"
16430 msgstr ""
16431
16432 #. type: textblock
16433 #: ../src/guestfs-actions.pod:6042 ../fish/guestfish-actions.pod:3984
16434 msgid "Remove the single file C<path>."
16435 msgstr ""
16436
16437 #. type: =head2
16438 #: ../src/guestfs-actions.pod:6048
16439 msgid "guestfs_rm_rf"
16440 msgstr ""
16441
16442 #. type: verbatim
16443 #: ../src/guestfs-actions.pod:6050
16444 #, no-wrap
16445 msgid ""
16446 " int\n"
16447 " guestfs_rm_rf (guestfs_h *g,\n"
16448 "                const char *path);\n"
16449 "\n"
16450 msgstr ""
16451
16452 #. type: textblock
16453 #: ../src/guestfs-actions.pod:6054 ../fish/guestfish-actions.pod:3990
16454 msgid ""
16455 "Remove the file or directory C<path>, recursively removing the contents if "
16456 "its a directory.  This is like the C<rm -rf> shell command."
16457 msgstr ""
16458
16459 #. type: =head2
16460 #: ../src/guestfs-actions.pod:6062
16461 msgid "guestfs_rmdir"
16462 msgstr ""
16463
16464 #. type: verbatim
16465 #: ../src/guestfs-actions.pod:6064
16466 #, no-wrap
16467 msgid ""
16468 " int\n"
16469 " guestfs_rmdir (guestfs_h *g,\n"
16470 "                const char *path);\n"
16471 "\n"
16472 msgstr ""
16473
16474 #. type: textblock
16475 #: ../src/guestfs-actions.pod:6068 ../fish/guestfish-actions.pod:3998
16476 msgid "Remove the single directory C<path>."
16477 msgstr ""
16478
16479 #. type: =head2
16480 #: ../src/guestfs-actions.pod:6074
16481 msgid "guestfs_rmmountpoint"
16482 msgstr ""
16483
16484 #. type: verbatim
16485 #: ../src/guestfs-actions.pod:6076
16486 #, no-wrap
16487 msgid ""
16488 " int\n"
16489 " guestfs_rmmountpoint (guestfs_h *g,\n"
16490 "                       const char *exemptpath);\n"
16491 "\n"
16492 msgstr ""
16493
16494 #. type: textblock
16495 #: ../src/guestfs-actions.pod:6080
16496 msgid ""
16497 "This calls removes a mountpoint that was previously created with "
16498 "C<guestfs_mkmountpoint>.  See C<guestfs_mkmountpoint> for full details."
16499 msgstr ""
16500
16501 #. type: =head2
16502 #: ../src/guestfs-actions.pod:6088
16503 msgid "guestfs_scrub_device"
16504 msgstr ""
16505
16506 #. type: verbatim
16507 #: ../src/guestfs-actions.pod:6090
16508 #, no-wrap
16509 msgid ""
16510 " int\n"
16511 " guestfs_scrub_device (guestfs_h *g,\n"
16512 "                       const char *device);\n"
16513 "\n"
16514 msgstr ""
16515
16516 #. type: textblock
16517 #: ../src/guestfs-actions.pod:6094 ../fish/guestfish-actions.pod:4012
16518 msgid ""
16519 "This command writes patterns over C<device> to make data retrieval more "
16520 "difficult."
16521 msgstr ""
16522
16523 #. type: textblock
16524 #: ../src/guestfs-actions.pod:6097 ../src/guestfs-actions.pod:6118
16525 #: ../src/guestfs-actions.pod:6137 ../fish/guestfish-actions.pod:4015
16526 #: ../fish/guestfish-actions.pod:4030 ../fish/guestfish-actions.pod:4043
16527 msgid ""
16528 "It is an interface to the L<scrub(1)> program.  See that manual page for "
16529 "more details."
16530 msgstr ""
16531
16532 #. type: textblock
16533 #: ../src/guestfs-actions.pod:6105 ../src/guestfs-actions.pod:6123
16534 #: ../src/guestfs-actions.pod:6142
16535 msgid "(Added in 1.0.52)"
16536 msgstr ""
16537
16538 #. type: =head2
16539 #: ../src/guestfs-actions.pod:6107
16540 msgid "guestfs_scrub_file"
16541 msgstr ""
16542
16543 #. type: verbatim
16544 #: ../src/guestfs-actions.pod:6109
16545 #, no-wrap
16546 msgid ""
16547 " int\n"
16548 " guestfs_scrub_file (guestfs_h *g,\n"
16549 "                     const char *file);\n"
16550 "\n"
16551 msgstr ""
16552
16553 #. type: textblock
16554 #: ../src/guestfs-actions.pod:6113 ../fish/guestfish-actions.pod:4025
16555 msgid ""
16556 "This command writes patterns over a file to make data retrieval more "
16557 "difficult."
16558 msgstr ""
16559
16560 #. type: textblock
16561 #: ../src/guestfs-actions.pod:6116 ../fish/guestfish-actions.pod:4028
16562 msgid "The file is I<removed> after scrubbing."
16563 msgstr ""
16564
16565 #. type: =head2
16566 #: ../src/guestfs-actions.pod:6125
16567 msgid "guestfs_scrub_freespace"
16568 msgstr ""
16569
16570 #. type: verbatim
16571 #: ../src/guestfs-actions.pod:6127
16572 #, no-wrap
16573 msgid ""
16574 " int\n"
16575 " guestfs_scrub_freespace (guestfs_h *g,\n"
16576 "                          const char *dir);\n"
16577 "\n"
16578 msgstr ""
16579
16580 #. type: textblock
16581 #: ../src/guestfs-actions.pod:6131
16582 msgid ""
16583 "This command creates the directory C<dir> and then fills it with files until"
16584 " the filesystem is full, and scrubs the files as for C<guestfs_scrub_file>, "
16585 "and deletes them.  The intention is to scrub any free space on the partition"
16586 " containing C<dir>."
16587 msgstr ""
16588
16589 #. type: =head2
16590 #: ../src/guestfs-actions.pod:6144
16591 msgid "guestfs_set_append"
16592 msgstr ""
16593
16594 #. type: verbatim
16595 #: ../src/guestfs-actions.pod:6146
16596 #, no-wrap
16597 msgid ""
16598 " int\n"
16599 " guestfs_set_append (guestfs_h *g,\n"
16600 "                     const char *append);\n"
16601 "\n"
16602 msgstr ""
16603
16604 #. type: textblock
16605 #: ../src/guestfs-actions.pod:6150 ../fish/guestfish-actions.pod:4052
16606 msgid ""
16607 "This function is used to add additional options to the guest kernel command "
16608 "line."
16609 msgstr ""
16610
16611 #. type: textblock
16612 #: ../src/guestfs-actions.pod:6153 ../fish/guestfish-actions.pod:4055
16613 msgid ""
16614 "The default is C<NULL> unless overridden by setting C<LIBGUESTFS_APPEND> "
16615 "environment variable."
16616 msgstr ""
16617
16618 #. type: textblock
16619 #: ../src/guestfs-actions.pod:6156 ../fish/guestfish-actions.pod:4058
16620 msgid ""
16621 "Setting C<append> to C<NULL> means I<no> additional options are passed "
16622 "(libguestfs always adds a few of its own)."
16623 msgstr ""
16624
16625 #. type: =head2
16626 #: ../src/guestfs-actions.pod:6163
16627 msgid "guestfs_set_attach_method"
16628 msgstr ""
16629
16630 #. type: verbatim
16631 #: ../src/guestfs-actions.pod:6165
16632 #, no-wrap
16633 msgid ""
16634 " int\n"
16635 " guestfs_set_attach_method (guestfs_h *g,\n"
16636 "                            const char *attachmethod);\n"
16637 "\n"
16638 msgstr ""
16639
16640 #. type: textblock
16641 #: ../src/guestfs-actions.pod:6169 ../fish/guestfish-actions.pod:4067
16642 msgid ""
16643 "Set the method that libguestfs uses to connect to the back end guestfsd "
16644 "daemon.  Possible methods are:"
16645 msgstr ""
16646
16647 #. type: textblock
16648 #: ../src/guestfs-actions.pod:6176 ../fish/guestfish-actions.pod:4074
16649 msgid ""
16650 "Launch an appliance and connect to it.  This is the ordinary method and the "
16651 "default."
16652 msgstr ""
16653
16654 #. type: =item
16655 #: ../src/guestfs-actions.pod:6179 ../fish/guestfish-actions.pod:4077
16656 msgid "C<unix:I<path>>"
16657 msgstr ""
16658
16659 #. type: textblock
16660 #: ../src/guestfs-actions.pod:6181 ../fish/guestfish-actions.pod:4079
16661 msgid "Connect to the Unix domain socket I<path>."
16662 msgstr ""
16663
16664 #. type: textblock
16665 #: ../src/guestfs-actions.pod:6183 ../fish/guestfish-actions.pod:4081
16666 msgid ""
16667 "This method lets you connect to an existing daemon or (using virtio-serial) "
16668 "to a live guest.  For more information, see L<guestfs(3)/ATTACHING TO "
16669 "RUNNING DAEMONS>."
16670 msgstr ""
16671
16672 #. type: =head2
16673 #: ../src/guestfs-actions.pod:6193
16674 msgid "guestfs_set_autosync"
16675 msgstr ""
16676
16677 #. type: verbatim
16678 #: ../src/guestfs-actions.pod:6195
16679 #, no-wrap
16680 msgid ""
16681 " int\n"
16682 " guestfs_set_autosync (guestfs_h *g,\n"
16683 "                       int autosync);\n"
16684 "\n"
16685 msgstr ""
16686
16687 #. type: textblock
16688 #: ../src/guestfs-actions.pod:6199 ../fish/guestfish-actions.pod:4093
16689 msgid ""
16690 "If C<autosync> is true, this enables autosync.  Libguestfs will make a best "
16691 "effort attempt to make filesystems consistent and synchronized when the "
16692 "handle is closed (also if the program exits without closing handles)."
16693 msgstr ""
16694
16695 #. type: textblock
16696 #: ../src/guestfs-actions.pod:6204 ../fish/guestfish-actions.pod:4098
16697 msgid ""
16698 "This is enabled by default (since libguestfs 1.5.24, previously it was "
16699 "disabled by default)."
16700 msgstr ""
16701
16702 #. type: =head2
16703 #: ../src/guestfs-actions.pod:6211
16704 msgid "guestfs_set_direct"
16705 msgstr ""
16706
16707 #. type: verbatim
16708 #: ../src/guestfs-actions.pod:6213
16709 #, no-wrap
16710 msgid ""
16711 " int\n"
16712 " guestfs_set_direct (guestfs_h *g,\n"
16713 "                     int direct);\n"
16714 "\n"
16715 msgstr ""
16716
16717 #. type: textblock
16718 #: ../src/guestfs-actions.pod:6217 ../fish/guestfish-actions.pod:4107
16719 msgid ""
16720 "If the direct appliance mode flag is enabled, then stdin and stdout are "
16721 "passed directly through to the appliance once it is launched."
16722 msgstr ""
16723
16724 #. type: textblock
16725 #: ../src/guestfs-actions.pod:6221
16726 msgid ""
16727 "One consequence of this is that log messages aren't caught by the library "
16728 "and handled by C<guestfs_set_log_message_callback>, but go straight to "
16729 "stdout."
16730 msgstr ""
16731
16732 #. type: textblock
16733 #: ../src/guestfs-actions.pod:6225 ../fish/guestfish-actions.pod:4115
16734 msgid ""
16735 "You probably don't want to use this unless you know what you are doing."
16736 msgstr ""
16737
16738 #. type: textblock
16739 #: ../src/guestfs-actions.pod:6228 ../fish/guestfish-actions.pod:4118
16740 msgid "The default is disabled."
16741 msgstr ""
16742
16743 #. type: =head2
16744 #: ../src/guestfs-actions.pod:6234
16745 msgid "guestfs_set_e2label"
16746 msgstr ""
16747
16748 #. type: verbatim
16749 #: ../src/guestfs-actions.pod:6236
16750 #, no-wrap
16751 msgid ""
16752 " int\n"
16753 " guestfs_set_e2label (guestfs_h *g,\n"
16754 "                      const char *device,\n"
16755 "                      const char *label);\n"
16756 "\n"
16757 msgstr ""
16758
16759 #. type: textblock
16760 #: ../src/guestfs-actions.pod:6241 ../fish/guestfish-actions.pod:4124
16761 msgid ""
16762 "This sets the ext2/3/4 filesystem label of the filesystem on C<device> to "
16763 "C<label>.  Filesystem labels are limited to 16 characters."
16764 msgstr ""
16765
16766 #. type: textblock
16767 #: ../src/guestfs-actions.pod:6245
16768 msgid ""
16769 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2label> to return "
16770 "the existing label on a filesystem."
16771 msgstr ""
16772
16773 #. type: =head2
16774 #: ../src/guestfs-actions.pod:6252
16775 msgid "guestfs_set_e2uuid"
16776 msgstr ""
16777
16778 #. type: verbatim
16779 #: ../src/guestfs-actions.pod:6254
16780 #, no-wrap
16781 msgid ""
16782 " int\n"
16783 " guestfs_set_e2uuid (guestfs_h *g,\n"
16784 "                     const char *device,\n"
16785 "                     const char *uuid);\n"
16786 "\n"
16787 msgstr ""
16788
16789 #. type: textblock
16790 #: ../src/guestfs-actions.pod:6259 ../fish/guestfish-actions.pod:4135
16791 msgid ""
16792 "This sets the ext2/3/4 filesystem UUID of the filesystem on C<device> to "
16793 "C<uuid>.  The format of the UUID and alternatives such as C<clear>, "
16794 "C<random> and C<time> are described in the L<tune2fs(8)> manpage."
16795 msgstr ""
16796
16797 #. type: textblock
16798 #: ../src/guestfs-actions.pod:6264
16799 msgid ""
16800 "You can use either C<guestfs_tune2fs_l> or C<guestfs_get_e2uuid> to return "
16801 "the existing UUID of a filesystem."
16802 msgstr ""
16803
16804 #. type: =head2
16805 #: ../src/guestfs-actions.pod:6271
16806 msgid "guestfs_set_memsize"
16807 msgstr ""
16808
16809 #. type: verbatim
16810 #: ../src/guestfs-actions.pod:6273
16811 #, no-wrap
16812 msgid ""
16813 " int\n"
16814 " guestfs_set_memsize (guestfs_h *g,\n"
16815 "                      int memsize);\n"
16816 "\n"
16817 msgstr ""
16818
16819 #. type: textblock
16820 #: ../src/guestfs-actions.pod:6277
16821 msgid ""
16822 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
16823 "This only has any effect if called before C<guestfs_launch>."
16824 msgstr ""
16825
16826 #. type: textblock
16827 #: ../src/guestfs-actions.pod:6281 ../fish/guestfish-actions.pod:4153
16828 msgid ""
16829 "You can also change this by setting the environment variable "
16830 "C<LIBGUESTFS_MEMSIZE> before the handle is created."
16831 msgstr ""
16832
16833 #. type: =head2
16834 #: ../src/guestfs-actions.pod:6292
16835 msgid "guestfs_set_network"
16836 msgstr ""
16837
16838 #. type: verbatim
16839 #: ../src/guestfs-actions.pod:6294
16840 #, no-wrap
16841 msgid ""
16842 " int\n"
16843 " guestfs_set_network (guestfs_h *g,\n"
16844 "                      int network);\n"
16845 "\n"
16846 msgstr ""
16847
16848 #. type: textblock
16849 #: ../src/guestfs-actions.pod:6298 ../fish/guestfish-actions.pod:4166
16850 msgid ""
16851 "If C<network> is true, then the network is enabled in the libguestfs "
16852 "appliance.  The default is false."
16853 msgstr ""
16854
16855 #. type: textblock
16856 #: ../src/guestfs-actions.pod:6301 ../fish/guestfish-actions.pod:4169
16857 msgid ""
16858 "This affects whether commands are able to access the network (see "
16859 "L<guestfs(3)/RUNNING COMMANDS>)."
16860 msgstr ""
16861
16862 #. type: textblock
16863 #: ../src/guestfs-actions.pod:6304
16864 msgid ""
16865 "You must call this before calling C<guestfs_launch>, otherwise it has no "
16866 "effect."
16867 msgstr ""
16868
16869 #. type: =head2
16870 #: ../src/guestfs-actions.pod:6311
16871 msgid "guestfs_set_path"
16872 msgstr ""
16873
16874 #. type: verbatim
16875 #: ../src/guestfs-actions.pod:6313
16876 #, no-wrap
16877 msgid ""
16878 " int\n"
16879 " guestfs_set_path (guestfs_h *g,\n"
16880 "                   const char *searchpath);\n"
16881 "\n"
16882 msgstr ""
16883
16884 #. type: textblock
16885 #: ../src/guestfs-actions.pod:6317 ../fish/guestfish-actions.pod:4181
16886 msgid "Set the path that libguestfs searches for kernel and initrd.img."
16887 msgstr ""
16888
16889 #. type: textblock
16890 #: ../src/guestfs-actions.pod:6319 ../fish/guestfish-actions.pod:4183
16891 msgid ""
16892 "The default is C<$libdir/guestfs> unless overridden by setting "
16893 "C<LIBGUESTFS_PATH> environment variable."
16894 msgstr ""
16895
16896 #. type: textblock
16897 #: ../src/guestfs-actions.pod:6322 ../fish/guestfish-actions.pod:4186
16898 msgid "Setting C<path> to C<NULL> restores the default path."
16899 msgstr ""
16900
16901 #. type: =head2
16902 #: ../src/guestfs-actions.pod:6328
16903 msgid "guestfs_set_pgroup"
16904 msgstr ""
16905
16906 #. type: verbatim
16907 #: ../src/guestfs-actions.pod:6330
16908 #, no-wrap
16909 msgid ""
16910 " int\n"
16911 " guestfs_set_pgroup (guestfs_h *g,\n"
16912 "                     int pgroup);\n"
16913 "\n"
16914 msgstr ""
16915
16916 #. type: textblock
16917 #: ../src/guestfs-actions.pod:6334 ../fish/guestfish-actions.pod:4194
16918 msgid ""
16919 "If C<pgroup> is true, child processes are placed into their own process "
16920 "group."
16921 msgstr ""
16922
16923 #. type: textblock
16924 #: ../src/guestfs-actions.pod:6337 ../fish/guestfish-actions.pod:4197
16925 msgid ""
16926 "The practical upshot of this is that signals like C<SIGINT> (from users "
16927 "pressing C<^C>) won't be received by the child process."
16928 msgstr ""
16929
16930 #. type: textblock
16931 #: ../src/guestfs-actions.pod:6340 ../fish/guestfish-actions.pod:4200
16932 msgid ""
16933 "The default for this flag is false, because usually you want C<^C> to kill "
16934 "the subprocess."
16935 msgstr ""
16936
16937 #. type: =head2
16938 #: ../src/guestfs-actions.pod:6345
16939 msgid "guestfs_set_qemu"
16940 msgstr ""
16941
16942 #. type: verbatim
16943 #: ../src/guestfs-actions.pod:6347
16944 #, no-wrap
16945 msgid ""
16946 " int\n"
16947 " guestfs_set_qemu (guestfs_h *g,\n"
16948 "                   const char *qemu);\n"
16949 "\n"
16950 msgstr ""
16951
16952 #. type: textblock
16953 #: ../src/guestfs-actions.pod:6351 ../fish/guestfish-actions.pod:4209
16954 msgid "Set the qemu binary that we will use."
16955 msgstr ""
16956
16957 #. type: textblock
16958 #: ../src/guestfs-actions.pod:6353 ../fish/guestfish-actions.pod:4211
16959 msgid ""
16960 "The default is chosen when the library was compiled by the configure script."
16961 msgstr ""
16962
16963 #. type: textblock
16964 #: ../src/guestfs-actions.pod:6356 ../fish/guestfish-actions.pod:4214
16965 msgid ""
16966 "You can also override this by setting the C<LIBGUESTFS_QEMU> environment "
16967 "variable."
16968 msgstr ""
16969
16970 #. type: textblock
16971 #: ../src/guestfs-actions.pod:6359 ../fish/guestfish-actions.pod:4217
16972 msgid "Setting C<qemu> to C<NULL> restores the default qemu binary."
16973 msgstr ""
16974
16975 #. type: textblock
16976 #: ../src/guestfs-actions.pod:6361 ../fish/guestfish-actions.pod:4219
16977 msgid ""
16978 "Note that you should call this function as early as possible after creating "
16979 "the handle.  This is because some pre-launch operations depend on testing "
16980 "qemu features (by running C<qemu -help>).  If the qemu binary changes, we "
16981 "don't retest features, and so you might see inconsistent results.  Using the"
16982 " environment variable C<LIBGUESTFS_QEMU> is safest of all since that picks "
16983 "the qemu binary at the same time as the handle is created."
16984 msgstr ""
16985
16986 #. type: =head2
16987 #: ../src/guestfs-actions.pod:6373
16988 msgid "guestfs_set_recovery_proc"
16989 msgstr ""
16990
16991 #. type: verbatim
16992 #: ../src/guestfs-actions.pod:6375
16993 #, no-wrap
16994 msgid ""
16995 " int\n"
16996 " guestfs_set_recovery_proc (guestfs_h *g,\n"
16997 "                            int recoveryproc);\n"
16998 "\n"
16999 msgstr ""
17000
17001 #. type: textblock
17002 #: ../src/guestfs-actions.pod:6379
17003 msgid ""
17004 "If this is called with the parameter C<false> then C<guestfs_launch> does "
17005 "not create a recovery process.  The purpose of the recovery process is to "
17006 "stop runaway qemu processes in the case where the main program aborts "
17007 "abruptly."
17008 msgstr ""
17009
17010 #. type: textblock
17011 #: ../src/guestfs-actions.pod:6384
17012 msgid ""
17013 "This only has any effect if called before C<guestfs_launch>, and the default"
17014 " is true."
17015 msgstr ""
17016
17017 #. type: textblock
17018 #: ../src/guestfs-actions.pod:6387 ../fish/guestfish-actions.pod:4241
17019 msgid ""
17020 "About the only time when you would want to disable this is if the main "
17021 "process will fork itself into the background (\"daemonize\" itself).  In "
17022 "this case the recovery process thinks that the main program has disappeared "
17023 "and so kills qemu, which is not very helpful."
17024 msgstr ""
17025
17026 #. type: =head2
17027 #: ../src/guestfs-actions.pod:6397
17028 msgid "guestfs_set_selinux"
17029 msgstr ""
17030
17031 #. type: verbatim
17032 #: ../src/guestfs-actions.pod:6399
17033 #, no-wrap
17034 msgid ""
17035 " int\n"
17036 " guestfs_set_selinux (guestfs_h *g,\n"
17037 "                      int selinux);\n"
17038 "\n"
17039 msgstr ""
17040
17041 #. type: textblock
17042 #: ../src/guestfs-actions.pod:6403 ../fish/guestfish-actions.pod:4253
17043 msgid ""
17044 "This sets the selinux flag that is passed to the appliance at boot time.  "
17045 "The default is C<selinux=0> (disabled)."
17046 msgstr ""
17047
17048 #. type: textblock
17049 #: ../src/guestfs-actions.pod:6406 ../fish/guestfish-actions.pod:4256
17050 msgid ""
17051 "Note that if SELinux is enabled, it is always in Permissive mode "
17052 "(C<enforcing=0>)."
17053 msgstr ""
17054
17055 #. type: =head2
17056 #: ../src/guestfs-actions.pod:6416
17057 msgid "guestfs_set_trace"
17058 msgstr ""
17059
17060 #. type: verbatim
17061 #: ../src/guestfs-actions.pod:6418
17062 #, no-wrap
17063 msgid ""
17064 " int\n"
17065 " guestfs_set_trace (guestfs_h *g,\n"
17066 "                    int trace);\n"
17067 "\n"
17068 msgstr ""
17069
17070 #. type: textblock
17071 #: ../src/guestfs-actions.pod:6422 ../fish/guestfish-actions.pod:4268
17072 msgid ""
17073 "If the command trace flag is set to 1, then libguestfs calls, parameters and"
17074 " return values are traced."
17075 msgstr ""
17076
17077 #. type: textblock
17078 #: ../src/guestfs-actions.pod:6425 ../fish/guestfish-actions.pod:4271
17079 msgid ""
17080 "If you want to trace C API calls into libguestfs (and other libraries) then "
17081 "possibly a better way is to use the external ltrace(1) command."
17082 msgstr ""
17083
17084 #. type: textblock
17085 #: ../src/guestfs-actions.pod:6429 ../fish/guestfish-actions.pod:4275
17086 msgid ""
17087 "Command traces are disabled unless the environment variable "
17088 "C<LIBGUESTFS_TRACE> is defined and set to C<1>."
17089 msgstr ""
17090
17091 #. type: textblock
17092 #: ../src/guestfs-actions.pod:6432
17093 msgid ""
17094 "Trace messages are normally sent to C<stderr>, unless you register a "
17095 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
17096 msgstr ""
17097
17098 #. type: =head2
17099 #: ../src/guestfs-actions.pod:6440
17100 msgid "guestfs_set_verbose"
17101 msgstr ""
17102
17103 #. type: verbatim
17104 #: ../src/guestfs-actions.pod:6442
17105 #, no-wrap
17106 msgid ""
17107 " int\n"
17108 " guestfs_set_verbose (guestfs_h *g,\n"
17109 "                      int verbose);\n"
17110 "\n"
17111 msgstr ""
17112
17113 #. type: textblock
17114 #: ../src/guestfs-actions.pod:6446 ../fish/guestfish-actions.pod:4288
17115 msgid "If C<verbose> is true, this turns on verbose messages."
17116 msgstr ""
17117
17118 #. type: textblock
17119 #: ../src/guestfs-actions.pod:6448 ../fish/guestfish-actions.pod:4290
17120 msgid ""
17121 "Verbose messages are disabled unless the environment variable "
17122 "C<LIBGUESTFS_DEBUG> is defined and set to C<1>."
17123 msgstr ""
17124
17125 #. type: textblock
17126 #: ../src/guestfs-actions.pod:6451
17127 msgid ""
17128 "Verbose messages are normally sent to C<stderr>, unless you register a "
17129 "callback to send them somewhere else (see C<guestfs_set_event_callback>)."
17130 msgstr ""
17131
17132 #. type: =head2
17133 #: ../src/guestfs-actions.pod:6459
17134 msgid "guestfs_setcon"
17135 msgstr ""
17136
17137 #. type: verbatim
17138 #: ../src/guestfs-actions.pod:6461
17139 #, no-wrap
17140 msgid ""
17141 " int\n"
17142 " guestfs_setcon (guestfs_h *g,\n"
17143 "                 const char *context);\n"
17144 "\n"
17145 msgstr ""
17146
17147 #. type: textblock
17148 #: ../src/guestfs-actions.pod:6465 ../fish/guestfish-actions.pod:4301
17149 msgid ""
17150 "This sets the SELinux security context of the daemon to the string "
17151 "C<context>."
17152 msgstr ""
17153
17154 #. type: textblock
17155 #: ../src/guestfs-actions.pod:6468 ../fish/guestfish-actions.pod:4304
17156 msgid "See the documentation about SELINUX in L<guestfs(3)>."
17157 msgstr ""
17158
17159 #. type: =head2
17160 #: ../src/guestfs-actions.pod:6474
17161 msgid "guestfs_setxattr"
17162 msgstr ""
17163
17164 #. type: verbatim
17165 #: ../src/guestfs-actions.pod:6476
17166 #, no-wrap
17167 msgid ""
17168 " int\n"
17169 " guestfs_setxattr (guestfs_h *g,\n"
17170 "                   const char *xattr,\n"
17171 "                   const char *val,\n"
17172 "                   int vallen,\n"
17173 "                   const char *path);\n"
17174 "\n"
17175 msgstr ""
17176
17177 #. type: textblock
17178 #: ../src/guestfs-actions.pod:6483 ../fish/guestfish-actions.pod:4310
17179 msgid ""
17180 "This call sets the extended attribute named C<xattr> of the file C<path> to "
17181 "the value C<val> (of length C<vallen>).  The value is arbitrary 8 bit data."
17182 msgstr ""
17183
17184 #. type: textblock
17185 #: ../src/guestfs-actions.pod:6487
17186 msgid "See also: C<guestfs_lsetxattr>, L<attr(5)>."
17187 msgstr ""
17188
17189 #. type: =head2
17190 #: ../src/guestfs-actions.pod:6493
17191 msgid "guestfs_sfdisk"
17192 msgstr ""
17193
17194 #. type: verbatim
17195 #: ../src/guestfs-actions.pod:6495
17196 #, no-wrap
17197 msgid ""
17198 " int\n"
17199 " guestfs_sfdisk (guestfs_h *g,\n"
17200 "                 const char *device,\n"
17201 "                 int cyls,\n"
17202 "                 int heads,\n"
17203 "                 int sectors,\n"
17204 "                 char *const *lines);\n"
17205 "\n"
17206 msgstr ""
17207
17208 #. type: textblock
17209 #: ../src/guestfs-actions.pod:6503 ../fish/guestfish-actions.pod:4320
17210 msgid ""
17211 "This is a direct interface to the L<sfdisk(8)> program for creating "
17212 "partitions on block devices."
17213 msgstr ""
17214
17215 #. type: textblock
17216 #: ../src/guestfs-actions.pod:6506 ../fish/guestfish-actions.pod:4323
17217 msgid "C<device> should be a block device, for example C</dev/sda>."
17218 msgstr ""
17219
17220 #. type: textblock
17221 #: ../src/guestfs-actions.pod:6508 ../fish/guestfish-actions.pod:4325
17222 msgid ""
17223 "C<cyls>, C<heads> and C<sectors> are the number of cylinders, heads and "
17224 "sectors on the device, which are passed directly to sfdisk as the I<-C>, "
17225 "I<-H> and I<-S> parameters.  If you pass C<0> for any of these, then the "
17226 "corresponding parameter is omitted.  Usually for 'large' disks, you can just"
17227 " pass C<0> for these, but for small (floppy-sized) disks, sfdisk (or rather,"
17228 " the kernel) cannot work out the right geometry and you will need to tell "
17229 "it."
17230 msgstr ""
17231
17232 #. type: textblock
17233 #: ../src/guestfs-actions.pod:6516 ../fish/guestfish-actions.pod:4333
17234 msgid ""
17235 "C<lines> is a list of lines that we feed to C<sfdisk>.  For more information"
17236 " refer to the L<sfdisk(8)> manpage."
17237 msgstr ""
17238
17239 #. type: textblock
17240 #: ../src/guestfs-actions.pod:6519 ../fish/guestfish-actions.pod:4336
17241 msgid ""
17242 "To create a single partition occupying the whole disk, you would pass "
17243 "C<lines> as a single element list, when the single element being the string "
17244 "C<,> (comma)."
17245 msgstr ""
17246
17247 #. type: textblock
17248 #: ../src/guestfs-actions.pod:6523
17249 msgid ""
17250 "See also: C<guestfs_sfdisk_l>, C<guestfs_sfdisk_N>, C<guestfs_part_init>"
17251 msgstr ""
17252
17253 #. type: textblock
17254 #: ../src/guestfs-actions.pod:6531 ../src/guestfs-actions.pod:6561
17255 #: ../src/guestfs-actions.pod:6594 ../fish/guestfish-actions.pod:4346
17256 #: ../fish/guestfish-actions.pod:4369 ../fish/guestfish-actions.pod:4391
17257 msgid ""
17258 "This function is deprecated.  In new code, use the C<part_add> call instead."
17259 msgstr ""
17260
17261 #. type: =head2
17262 #: ../src/guestfs-actions.pod:6540
17263 msgid "guestfs_sfdiskM"
17264 msgstr ""
17265
17266 #. type: verbatim
17267 #: ../src/guestfs-actions.pod:6542
17268 #, no-wrap
17269 msgid ""
17270 " int\n"
17271 " guestfs_sfdiskM (guestfs_h *g,\n"
17272 "                  const char *device,\n"
17273 "                  char *const *lines);\n"
17274 "\n"
17275 msgstr ""
17276
17277 #. type: textblock
17278 #: ../src/guestfs-actions.pod:6547
17279 msgid ""
17280 "This is a simplified interface to the C<guestfs_sfdisk> command, where "
17281 "partition sizes are specified in megabytes only (rounded to the nearest "
17282 "cylinder) and you don't need to specify the cyls, heads and sectors "
17283 "parameters which were rarely if ever used anyway."
17284 msgstr ""
17285
17286 #. type: textblock
17287 #: ../src/guestfs-actions.pod:6553
17288 msgid ""
17289 "See also: C<guestfs_sfdisk>, the L<sfdisk(8)> manpage and "
17290 "C<guestfs_part_disk>"
17291 msgstr ""
17292
17293 #. type: =head2
17294 #: ../src/guestfs-actions.pod:6570
17295 msgid "guestfs_sfdisk_N"
17296 msgstr ""
17297
17298 #. type: verbatim
17299 #: ../src/guestfs-actions.pod:6572
17300 #, no-wrap
17301 msgid ""
17302 " int\n"
17303 " guestfs_sfdisk_N (guestfs_h *g,\n"
17304 "                   const char *device,\n"
17305 "                   int partnum,\n"
17306 "                   int cyls,\n"
17307 "                   int heads,\n"
17308 "                   int sectors,\n"
17309 "                   const char *line);\n"
17310 "\n"
17311 msgstr ""
17312
17313 #. type: textblock
17314 #: ../src/guestfs-actions.pod:6581 ../fish/guestfish-actions.pod:4380
17315 msgid ""
17316 "This runs L<sfdisk(8)> option to modify just the single partition C<n> "
17317 "(note: C<n> counts from 1)."
17318 msgstr ""
17319
17320 #. type: textblock
17321 #: ../src/guestfs-actions.pod:6584
17322 msgid ""
17323 "For other parameters, see C<guestfs_sfdisk>.  You should usually pass C<0> "
17324 "for the cyls/heads/sectors parameters."
17325 msgstr ""
17326
17327 #. type: textblock
17328 #: ../src/guestfs-actions.pod:6587
17329 msgid "See also: C<guestfs_part_add>"
17330 msgstr ""
17331
17332 #. type: =head2
17333 #: ../src/guestfs-actions.pod:6603
17334 msgid "guestfs_sfdisk_disk_geometry"
17335 msgstr ""
17336
17337 #. type: verbatim
17338 #: ../src/guestfs-actions.pod:6605
17339 #, no-wrap
17340 msgid ""
17341 " char *\n"
17342 " guestfs_sfdisk_disk_geometry (guestfs_h *g,\n"
17343 "                               const char *device);\n"
17344 "\n"
17345 msgstr ""
17346
17347 #. type: textblock
17348 #: ../src/guestfs-actions.pod:6609
17349 msgid ""
17350 "This displays the disk geometry of C<device> read from the partition table."
17351 "  Especially in the case where the underlying block device has been resized,"
17352 " this can be different from the kernel's idea of the geometry (see "
17353 "C<guestfs_sfdisk_kernel_geometry>)."
17354 msgstr ""
17355
17356 #. type: textblock
17357 #: ../src/guestfs-actions.pod:6614 ../src/guestfs-actions.pod:6630
17358 #: ../fish/guestfish-actions.pod:4407 ../fish/guestfish-actions.pod:4416
17359 msgid "The result is in human-readable format, and not designed to be parsed."
17360 msgstr ""
17361
17362 #. type: =head2
17363 #: ../src/guestfs-actions.pod:6622
17364 msgid "guestfs_sfdisk_kernel_geometry"
17365 msgstr ""
17366
17367 #. type: verbatim
17368 #: ../src/guestfs-actions.pod:6624
17369 #, no-wrap
17370 msgid ""
17371 " char *\n"
17372 " guestfs_sfdisk_kernel_geometry (guestfs_h *g,\n"
17373 "                                 const char *device);\n"
17374 "\n"
17375 msgstr ""
17376
17377 #. type: textblock
17378 #: ../src/guestfs-actions.pod:6628 ../fish/guestfish-actions.pod:4414
17379 msgid "This displays the kernel's idea of the geometry of C<device>."
17380 msgstr ""
17381
17382 #. type: =head2
17383 #: ../src/guestfs-actions.pod:6638
17384 msgid "guestfs_sfdisk_l"
17385 msgstr ""
17386
17387 #. type: verbatim
17388 #: ../src/guestfs-actions.pod:6640
17389 #, no-wrap
17390 msgid ""
17391 " char *\n"
17392 " guestfs_sfdisk_l (guestfs_h *g,\n"
17393 "                   const char *device);\n"
17394 "\n"
17395 msgstr ""
17396
17397 #. type: textblock
17398 #: ../src/guestfs-actions.pod:6644 ../fish/guestfish-actions.pod:4423
17399 msgid ""
17400 "This displays the partition table on C<device>, in the human-readable output"
17401 " of the L<sfdisk(8)> command.  It is not intended to be parsed."
17402 msgstr ""
17403
17404 #. type: textblock
17405 #: ../src/guestfs-actions.pod:6648
17406 msgid "See also: C<guestfs_part_list>"
17407 msgstr ""
17408
17409 #. type: textblock
17410 #: ../src/guestfs-actions.pod:6653 ../fish/guestfish-actions.pod:4429
17411 msgid ""
17412 "This function is deprecated.  In new code, use the C<part_list> call "
17413 "instead."
17414 msgstr ""
17415
17416 #. type: =head2
17417 #: ../src/guestfs-actions.pod:6662
17418 msgid "guestfs_sh"
17419 msgstr ""
17420
17421 #. type: verbatim
17422 #: ../src/guestfs-actions.pod:6664
17423 #, no-wrap
17424 msgid ""
17425 " char *\n"
17426 " guestfs_sh (guestfs_h *g,\n"
17427 "             const char *command);\n"
17428 "\n"
17429 msgstr ""
17430
17431 #. type: textblock
17432 #: ../src/guestfs-actions.pod:6668 ../fish/guestfish-actions.pod:4440
17433 msgid ""
17434 "This call runs a command from the guest filesystem via the guest's "
17435 "C</bin/sh>."
17436 msgstr ""
17437
17438 #. type: textblock
17439 #: ../src/guestfs-actions.pod:6671
17440 msgid "This is like C<guestfs_command>, but passes the command to:"
17441 msgstr ""
17442
17443 #. type: verbatim
17444 #: ../src/guestfs-actions.pod:6673 ../fish/guestfish-actions.pod:4445
17445 #, no-wrap
17446 msgid ""
17447 " /bin/sh -c \"command\"\n"
17448 "\n"
17449 msgstr ""
17450
17451 #. type: textblock
17452 #: ../src/guestfs-actions.pod:6675 ../fish/guestfish-actions.pod:4447
17453 msgid ""
17454 "Depending on the guest's shell, this usually results in wildcards being "
17455 "expanded, shell expressions being interpolated and so on."
17456 msgstr ""
17457
17458 #. type: textblock
17459 #: ../src/guestfs-actions.pod:6679
17460 msgid "All the provisos about C<guestfs_command> apply to this call."
17461 msgstr ""
17462
17463 #. type: =head2
17464 #: ../src/guestfs-actions.pod:6686
17465 msgid "guestfs_sh_lines"
17466 msgstr ""
17467
17468 #. type: verbatim
17469 #: ../src/guestfs-actions.pod:6688
17470 #, no-wrap
17471 msgid ""
17472 " char **\n"
17473 " guestfs_sh_lines (guestfs_h *g,\n"
17474 "                   const char *command);\n"
17475 "\n"
17476 msgstr ""
17477
17478 #. type: textblock
17479 #: ../src/guestfs-actions.pod:6692
17480 msgid ""
17481 "This is the same as C<guestfs_sh>, but splits the result into a list of "
17482 "lines."
17483 msgstr ""
17484
17485 #. type: textblock
17486 #: ../src/guestfs-actions.pod:6695
17487 msgid "See also: C<guestfs_command_lines>"
17488 msgstr ""
17489
17490 #. type: =head2
17491 #: ../src/guestfs-actions.pod:6703
17492 msgid "guestfs_sleep"
17493 msgstr ""
17494
17495 #. type: verbatim
17496 #: ../src/guestfs-actions.pod:6705
17497 #, no-wrap
17498 msgid ""
17499 " int\n"
17500 " guestfs_sleep (guestfs_h *g,\n"
17501 "                int secs);\n"
17502 "\n"
17503 msgstr ""
17504
17505 #. type: textblock
17506 #: ../src/guestfs-actions.pod:6709 ../fish/guestfish-actions.pod:4466
17507 msgid "Sleep for C<secs> seconds."
17508 msgstr ""
17509
17510 #. type: textblock
17511 #: ../src/guestfs-actions.pod:6713
17512 msgid "(Added in 1.0.41)"
17513 msgstr ""
17514
17515 #. type: =head2
17516 #: ../src/guestfs-actions.pod:6715 ../src/guestfs-structs.pod:109
17517 msgid "guestfs_stat"
17518 msgstr ""
17519
17520 #. type: verbatim
17521 #: ../src/guestfs-actions.pod:6717
17522 #, no-wrap
17523 msgid ""
17524 " struct guestfs_stat *\n"
17525 " guestfs_stat (guestfs_h *g,\n"
17526 "               const char *path);\n"
17527 "\n"
17528 msgstr ""
17529
17530 #. type: textblock
17531 #: ../src/guestfs-actions.pod:6723 ../fish/guestfish-actions.pod:4474
17532 msgid "This is the same as the C<stat(2)> system call."
17533 msgstr ""
17534
17535 #. type: =head2
17536 #: ../src/guestfs-actions.pod:6731 ../src/guestfs-structs.pod:135
17537 msgid "guestfs_statvfs"
17538 msgstr ""
17539
17540 #. type: verbatim
17541 #: ../src/guestfs-actions.pod:6733
17542 #, no-wrap
17543 msgid ""
17544 " struct guestfs_statvfs *\n"
17545 " guestfs_statvfs (guestfs_h *g,\n"
17546 "                  const char *path);\n"
17547 "\n"
17548 msgstr ""
17549
17550 #. type: textblock
17551 #: ../src/guestfs-actions.pod:6737 ../fish/guestfish-actions.pod:4480
17552 msgid ""
17553 "Returns file system statistics for any mounted file system.  C<path> should "
17554 "be a file or directory in the mounted file system (typically it is the mount"
17555 " point itself, but it doesn't need to be)."
17556 msgstr ""
17557
17558 #. type: textblock
17559 #: ../src/guestfs-actions.pod:6741 ../fish/guestfish-actions.pod:4484
17560 msgid "This is the same as the C<statvfs(2)> system call."
17561 msgstr ""
17562
17563 #. type: textblock
17564 #: ../src/guestfs-actions.pod:6743
17565 msgid ""
17566 "This function returns a C<struct guestfs_statvfs *>, or NULL if there was an"
17567 " error.  I<The caller must call C<guestfs_free_statvfs> after use>."
17568 msgstr ""
17569
17570 #. type: =head2
17571 #: ../src/guestfs-actions.pod:6749
17572 msgid "guestfs_strings"
17573 msgstr ""
17574
17575 #. type: verbatim
17576 #: ../src/guestfs-actions.pod:6751
17577 #, no-wrap
17578 msgid ""
17579 " char **\n"
17580 " guestfs_strings (guestfs_h *g,\n"
17581 "                  const char *path);\n"
17582 "\n"
17583 msgstr ""
17584
17585 #. type: textblock
17586 #: ../src/guestfs-actions.pod:6755 ../fish/guestfish-actions.pod:4490
17587 msgid ""
17588 "This runs the L<strings(1)> command on a file and returns the list of "
17589 "printable strings found."
17590 msgstr ""
17591
17592 #. type: =head2
17593 #: ../src/guestfs-actions.pod:6767
17594 msgid "guestfs_strings_e"
17595 msgstr ""
17596
17597 #. type: verbatim
17598 #: ../src/guestfs-actions.pod:6769
17599 #, no-wrap
17600 msgid ""
17601 " char **\n"
17602 " guestfs_strings_e (guestfs_h *g,\n"
17603 "                    const char *encoding,\n"
17604 "                    const char *path);\n"
17605 "\n"
17606 msgstr ""
17607
17608 #. type: textblock
17609 #: ../src/guestfs-actions.pod:6774
17610 msgid ""
17611 "This is like the C<guestfs_strings> command, but allows you to specify the "
17612 "encoding of strings that are looked for in the source file C<path>."
17613 msgstr ""
17614
17615 #. type: textblock
17616 #: ../src/guestfs-actions.pod:6778 ../fish/guestfish-actions.pod:4504
17617 msgid "Allowed encodings are:"
17618 msgstr ""
17619
17620 #. type: =item
17621 #: ../src/guestfs-actions.pod:6782 ../fish/guestfish-actions.pod:4508
17622 msgid "s"
17623 msgstr ""
17624
17625 #. type: textblock
17626 #: ../src/guestfs-actions.pod:6784
17627 msgid ""
17628 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
17629 "ISO-8859-X (this is what C<guestfs_strings> uses)."
17630 msgstr ""
17631
17632 #. type: =item
17633 #: ../src/guestfs-actions.pod:6787 ../fish/guestfish-actions.pod:4513
17634 msgid "S"
17635 msgstr ""
17636
17637 #. type: textblock
17638 #: ../src/guestfs-actions.pod:6789 ../fish/guestfish-actions.pod:4515
17639 msgid "Single 8-bit-byte characters."
17640 msgstr ""
17641
17642 #. type: =item
17643 #: ../src/guestfs-actions.pod:6791 ../fish/guestfish-actions.pod:4517
17644 msgid "b"
17645 msgstr ""
17646
17647 #. type: textblock
17648 #: ../src/guestfs-actions.pod:6793 ../fish/guestfish-actions.pod:4519
17649 msgid ""
17650 "16-bit big endian strings such as those encoded in UTF-16BE or UCS-2BE."
17651 msgstr ""
17652
17653 #. type: =item
17654 #: ../src/guestfs-actions.pod:6796 ../fish/guestfish-actions.pod:4522
17655 msgid "l (lower case letter L)"
17656 msgstr ""
17657
17658 #. type: textblock
17659 #: ../src/guestfs-actions.pod:6798 ../fish/guestfish-actions.pod:4524
17660 msgid ""
17661 "16-bit little endian such as UTF-16LE and UCS-2LE.  This is useful for "
17662 "examining binaries in Windows guests."
17663 msgstr ""
17664
17665 #. type: =item
17666 #: ../src/guestfs-actions.pod:6801 ../fish/guestfish-actions.pod:4527
17667 msgid "B"
17668 msgstr ""
17669
17670 #. type: textblock
17671 #: ../src/guestfs-actions.pod:6803 ../fish/guestfish-actions.pod:4529
17672 msgid "32-bit big endian such as UCS-4BE."
17673 msgstr ""
17674
17675 #. type: =item
17676 #: ../src/guestfs-actions.pod:6805 ../fish/guestfish-actions.pod:4531
17677 msgid "L"
17678 msgstr ""
17679
17680 #. type: textblock
17681 #: ../src/guestfs-actions.pod:6807 ../fish/guestfish-actions.pod:4533
17682 msgid "32-bit little endian such as UCS-4LE."
17683 msgstr ""
17684
17685 #. type: textblock
17686 #: ../src/guestfs-actions.pod:6811 ../fish/guestfish-actions.pod:4537
17687 msgid "The returned strings are transcoded to UTF-8."
17688 msgstr ""
17689
17690 #. type: =head2
17691 #: ../src/guestfs-actions.pod:6822
17692 msgid "guestfs_swapoff_device"
17693 msgstr ""
17694
17695 #. type: verbatim
17696 #: ../src/guestfs-actions.pod:6824
17697 #, no-wrap
17698 msgid ""
17699 " int\n"
17700 " guestfs_swapoff_device (guestfs_h *g,\n"
17701 "                         const char *device);\n"
17702 "\n"
17703 msgstr ""
17704
17705 #. type: textblock
17706 #: ../src/guestfs-actions.pod:6828
17707 msgid ""
17708 "This command disables the libguestfs appliance swap device or partition "
17709 "named C<device>.  See C<guestfs_swapon_device>."
17710 msgstr ""
17711
17712 #. type: =head2
17713 #: ../src/guestfs-actions.pod:6836
17714 msgid "guestfs_swapoff_file"
17715 msgstr ""
17716
17717 #. type: verbatim
17718 #: ../src/guestfs-actions.pod:6838
17719 #, no-wrap
17720 msgid ""
17721 " int\n"
17722 " guestfs_swapoff_file (guestfs_h *g,\n"
17723 "                       const char *file);\n"
17724 "\n"
17725 msgstr ""
17726
17727 #. type: textblock
17728 #: ../src/guestfs-actions.pod:6842 ../fish/guestfish-actions.pod:4554
17729 msgid "This command disables the libguestfs appliance swap on file."
17730 msgstr ""
17731
17732 #. type: =head2
17733 #: ../src/guestfs-actions.pod:6848
17734 msgid "guestfs_swapoff_label"
17735 msgstr ""
17736
17737 #. type: verbatim
17738 #: ../src/guestfs-actions.pod:6850
17739 #, no-wrap
17740 msgid ""
17741 " int\n"
17742 " guestfs_swapoff_label (guestfs_h *g,\n"
17743 "                        const char *label);\n"
17744 "\n"
17745 msgstr ""
17746
17747 #. type: textblock
17748 #: ../src/guestfs-actions.pod:6854 ../fish/guestfish-actions.pod:4560
17749 msgid ""
17750 "This command disables the libguestfs appliance swap on labeled swap "
17751 "partition."
17752 msgstr ""
17753
17754 #. type: =head2
17755 #: ../src/guestfs-actions.pod:6861
17756 msgid "guestfs_swapoff_uuid"
17757 msgstr ""
17758
17759 #. type: verbatim
17760 #: ../src/guestfs-actions.pod:6863
17761 #, no-wrap
17762 msgid ""
17763 " int\n"
17764 " guestfs_swapoff_uuid (guestfs_h *g,\n"
17765 "                       const char *uuid);\n"
17766 "\n"
17767 msgstr ""
17768
17769 #. type: textblock
17770 #: ../src/guestfs-actions.pod:6867 ../fish/guestfish-actions.pod:4567
17771 msgid ""
17772 "This command disables the libguestfs appliance swap partition with the given"
17773 " UUID."
17774 msgstr ""
17775
17776 #. type: =head2
17777 #: ../src/guestfs-actions.pod:6874
17778 msgid "guestfs_swapon_device"
17779 msgstr ""
17780
17781 #. type: verbatim
17782 #: ../src/guestfs-actions.pod:6876
17783 #, no-wrap
17784 msgid ""
17785 " int\n"
17786 " guestfs_swapon_device (guestfs_h *g,\n"
17787 "                        const char *device);\n"
17788 "\n"
17789 msgstr ""
17790
17791 #. type: textblock
17792 #: ../src/guestfs-actions.pod:6880
17793 msgid ""
17794 "This command enables the libguestfs appliance to use the swap device or "
17795 "partition named C<device>.  The increased memory is made available for all "
17796 "commands, for example those run using C<guestfs_command> or C<guestfs_sh>."
17797 msgstr ""
17798
17799 #. type: textblock
17800 #: ../src/guestfs-actions.pod:6885 ../fish/guestfish-actions.pod:4579
17801 msgid ""
17802 "Note that you should not swap to existing guest swap partitions unless you "
17803 "know what you are doing.  They may contain hibernation information, or other"
17804 " information that the guest doesn't want you to trash.  You also risk "
17805 "leaking information about the host to the guest this way.  Instead, attach a"
17806 " new host device to the guest and swap on that."
17807 msgstr ""
17808
17809 #. type: =head2
17810 #: ../src/guestfs-actions.pod:6896
17811 msgid "guestfs_swapon_file"
17812 msgstr ""
17813
17814 #. type: verbatim
17815 #: ../src/guestfs-actions.pod:6898
17816 #, no-wrap
17817 msgid ""
17818 " int\n"
17819 " guestfs_swapon_file (guestfs_h *g,\n"
17820 "                      const char *file);\n"
17821 "\n"
17822 msgstr ""
17823
17824 #. type: textblock
17825 #: ../src/guestfs-actions.pod:6902
17826 msgid ""
17827 "This command enables swap to a file.  See C<guestfs_swapon_device> for other"
17828 " notes."
17829 msgstr ""
17830
17831 #. type: =head2
17832 #: ../src/guestfs-actions.pod:6909
17833 msgid "guestfs_swapon_label"
17834 msgstr ""
17835
17836 #. type: verbatim
17837 #: ../src/guestfs-actions.pod:6911
17838 #, no-wrap
17839 msgid ""
17840 " int\n"
17841 " guestfs_swapon_label (guestfs_h *g,\n"
17842 "                       const char *label);\n"
17843 "\n"
17844 msgstr ""
17845
17846 #. type: textblock
17847 #: ../src/guestfs-actions.pod:6915
17848 msgid ""
17849 "This command enables swap to a labeled swap partition.  See "
17850 "C<guestfs_swapon_device> for other notes."
17851 msgstr ""
17852
17853 #. type: =head2
17854 #: ../src/guestfs-actions.pod:6922
17855 msgid "guestfs_swapon_uuid"
17856 msgstr ""
17857
17858 #. type: verbatim
17859 #: ../src/guestfs-actions.pod:6924
17860 #, no-wrap
17861 msgid ""
17862 " int\n"
17863 " guestfs_swapon_uuid (guestfs_h *g,\n"
17864 "                      const char *uuid);\n"
17865 "\n"
17866 msgstr ""
17867
17868 #. type: textblock
17869 #: ../src/guestfs-actions.pod:6928
17870 msgid ""
17871 "This command enables swap to a swap partition with the given UUID.  See "
17872 "C<guestfs_swapon_device> for other notes."
17873 msgstr ""
17874
17875 #. type: =head2
17876 #: ../src/guestfs-actions.pod:6935
17877 msgid "guestfs_sync"
17878 msgstr ""
17879
17880 #. type: verbatim
17881 #: ../src/guestfs-actions.pod:6937
17882 #, no-wrap
17883 msgid ""
17884 " int\n"
17885 " guestfs_sync (guestfs_h *g);\n"
17886 "\n"
17887 msgstr ""
17888
17889 #. type: textblock
17890 #: ../src/guestfs-actions.pod:6940 ../fish/guestfish-actions.pod:4611
17891 msgid ""
17892 "This syncs the disk, so that any writes are flushed through to the "
17893 "underlying disk image."
17894 msgstr ""
17895
17896 #. type: textblock
17897 #: ../src/guestfs-actions.pod:6943 ../fish/guestfish-actions.pod:4614
17898 msgid ""
17899 "You should always call this if you have modified a disk image, before "
17900 "closing the handle."
17901 msgstr ""
17902
17903 #. type: =head2
17904 #: ../src/guestfs-actions.pod:6950
17905 msgid "guestfs_tail"
17906 msgstr ""
17907
17908 #. type: verbatim
17909 #: ../src/guestfs-actions.pod:6952
17910 #, no-wrap
17911 msgid ""
17912 " char **\n"
17913 " guestfs_tail (guestfs_h *g,\n"
17914 "               const char *path);\n"
17915 "\n"
17916 msgstr ""
17917
17918 #. type: textblock
17919 #: ../src/guestfs-actions.pod:6956 ../fish/guestfish-actions.pod:4621
17920 msgid ""
17921 "This command returns up to the last 10 lines of a file as a list of strings."
17922 msgstr ""
17923
17924 #. type: =head2
17925 #: ../src/guestfs-actions.pod:6968
17926 msgid "guestfs_tail_n"
17927 msgstr ""
17928
17929 #. type: verbatim
17930 #: ../src/guestfs-actions.pod:6970
17931 #, no-wrap
17932 msgid ""
17933 " char **\n"
17934 " guestfs_tail_n (guestfs_h *g,\n"
17935 "                 int nrlines,\n"
17936 "                 const char *path);\n"
17937 "\n"
17938 msgstr ""
17939
17940 #. type: textblock
17941 #: ../src/guestfs-actions.pod:6975 ../fish/guestfish-actions.pod:4631
17942 msgid ""
17943 "If the parameter C<nrlines> is a positive number, this returns the last "
17944 "C<nrlines> lines of the file C<path>."
17945 msgstr ""
17946
17947 #. type: textblock
17948 #: ../src/guestfs-actions.pod:6978 ../fish/guestfish-actions.pod:4634
17949 msgid ""
17950 "If the parameter C<nrlines> is a negative number, this returns lines from "
17951 "the file C<path>, starting with the C<-nrlines>th line."
17952 msgstr ""
17953
17954 #. type: =head2
17955 #: ../src/guestfs-actions.pod:6992
17956 msgid "guestfs_tar_in"
17957 msgstr ""
17958
17959 #. type: verbatim
17960 #: ../src/guestfs-actions.pod:6994
17961 #, no-wrap
17962 msgid ""
17963 " int\n"
17964 " guestfs_tar_in (guestfs_h *g,\n"
17965 "                 const char *tarfile,\n"
17966 "                 const char *directory);\n"
17967 "\n"
17968 msgstr ""
17969
17970 #. type: textblock
17971 #: ../src/guestfs-actions.pod:6999 ../fish/guestfish-actions.pod:4646
17972 msgid ""
17973 "This command uploads and unpacks local file C<tarfile> (an I<uncompressed> "
17974 "tar file) into C<directory>."
17975 msgstr ""
17976
17977 #. type: textblock
17978 #: ../src/guestfs-actions.pod:7002
17979 msgid ""
17980 "To upload a compressed tarball, use C<guestfs_tgz_in> or C<guestfs_txz_in>."
17981 msgstr ""
17982
17983 #. type: textblock
17984 #: ../src/guestfs-actions.pod:7007 ../src/guestfs-actions.pod:7024
17985 #: ../src/guestfs-actions.pod:7040 ../src/guestfs-actions.pod:7056
17986 msgid "(Added in 1.0.3)"
17987 msgstr ""
17988
17989 #. type: =head2
17990 #: ../src/guestfs-actions.pod:7009
17991 msgid "guestfs_tar_out"
17992 msgstr ""
17993
17994 #. type: verbatim
17995 #: ../src/guestfs-actions.pod:7011
17996 #, no-wrap
17997 msgid ""
17998 " int\n"
17999 " guestfs_tar_out (guestfs_h *g,\n"
18000 "                  const char *directory,\n"
18001 "                  const char *tarfile);\n"
18002 "\n"
18003 msgstr ""
18004
18005 #. type: textblock
18006 #: ../src/guestfs-actions.pod:7016 ../fish/guestfish-actions.pod:4658
18007 msgid ""
18008 "This command packs the contents of C<directory> and downloads it to local "
18009 "file C<tarfile>."
18010 msgstr ""
18011
18012 #. type: textblock
18013 #: ../src/guestfs-actions.pod:7019
18014 msgid ""
18015 "To download a compressed tarball, use C<guestfs_tgz_out> or "
18016 "C<guestfs_txz_out>."
18017 msgstr ""
18018
18019 #. type: =head2
18020 #: ../src/guestfs-actions.pod:7026
18021 msgid "guestfs_tgz_in"
18022 msgstr ""
18023
18024 #. type: verbatim
18025 #: ../src/guestfs-actions.pod:7028
18026 #, no-wrap
18027 msgid ""
18028 " int\n"
18029 " guestfs_tgz_in (guestfs_h *g,\n"
18030 "                 const char *tarball,\n"
18031 "                 const char *directory);\n"
18032 "\n"
18033 msgstr ""
18034
18035 #. type: textblock
18036 #: ../src/guestfs-actions.pod:7033 ../fish/guestfish-actions.pod:4670
18037 msgid ""
18038 "This command uploads and unpacks local file C<tarball> (a I<gzip compressed>"
18039 " tar file) into C<directory>."
18040 msgstr ""
18041
18042 #. type: textblock
18043 #: ../src/guestfs-actions.pod:7036
18044 msgid "To upload an uncompressed tarball, use C<guestfs_tar_in>."
18045 msgstr ""
18046
18047 #. type: =head2
18048 #: ../src/guestfs-actions.pod:7042
18049 msgid "guestfs_tgz_out"
18050 msgstr ""
18051
18052 #. type: verbatim
18053 #: ../src/guestfs-actions.pod:7044
18054 #, no-wrap
18055 msgid ""
18056 " int\n"
18057 " guestfs_tgz_out (guestfs_h *g,\n"
18058 "                  const char *directory,\n"
18059 "                  const char *tarball);\n"
18060 "\n"
18061 msgstr ""
18062
18063 #. type: textblock
18064 #: ../src/guestfs-actions.pod:7049 ../fish/guestfish-actions.pod:4681
18065 msgid ""
18066 "This command packs the contents of C<directory> and downloads it to local "
18067 "file C<tarball>."
18068 msgstr ""
18069
18070 #. type: textblock
18071 #: ../src/guestfs-actions.pod:7052
18072 msgid "To download an uncompressed tarball, use C<guestfs_tar_out>."
18073 msgstr ""
18074
18075 #. type: =head2
18076 #: ../src/guestfs-actions.pod:7058
18077 msgid "guestfs_touch"
18078 msgstr ""
18079
18080 #. type: verbatim
18081 #: ../src/guestfs-actions.pod:7060
18082 #, no-wrap
18083 msgid ""
18084 " int\n"
18085 " guestfs_touch (guestfs_h *g,\n"
18086 "                const char *path);\n"
18087 "\n"
18088 msgstr ""
18089
18090 #. type: textblock
18091 #: ../src/guestfs-actions.pod:7064 ../fish/guestfish-actions.pod:4692
18092 msgid ""
18093 "Touch acts like the L<touch(1)> command.  It can be used to update the "
18094 "timestamps on a file, or, if the file does not exist, to create a new zero-"
18095 "length file."
18096 msgstr ""
18097
18098 #. type: textblock
18099 #: ../src/guestfs-actions.pod:7068 ../fish/guestfish-actions.pod:4696
18100 msgid ""
18101 "This command only works on regular files, and will fail on other file types "
18102 "such as directories, symbolic links, block special etc."
18103 msgstr ""
18104
18105 #. type: =head2
18106 #: ../src/guestfs-actions.pod:7075
18107 msgid "guestfs_truncate"
18108 msgstr ""
18109
18110 #. type: verbatim
18111 #: ../src/guestfs-actions.pod:7077
18112 #, no-wrap
18113 msgid ""
18114 " int\n"
18115 " guestfs_truncate (guestfs_h *g,\n"
18116 "                   const char *path);\n"
18117 "\n"
18118 msgstr ""
18119
18120 #. type: textblock
18121 #: ../src/guestfs-actions.pod:7081 ../fish/guestfish-actions.pod:4703
18122 msgid ""
18123 "This command truncates C<path> to a zero-length file.  The file must exist "
18124 "already."
18125 msgstr ""
18126
18127 #. type: =head2
18128 #: ../src/guestfs-actions.pod:7088
18129 msgid "guestfs_truncate_size"
18130 msgstr ""
18131
18132 #. type: verbatim
18133 #: ../src/guestfs-actions.pod:7090
18134 #, no-wrap
18135 msgid ""
18136 " int\n"
18137 " guestfs_truncate_size (guestfs_h *g,\n"
18138 "                        const char *path,\n"
18139 "                        int64_t size);\n"
18140 "\n"
18141 msgstr ""
18142
18143 #. type: textblock
18144 #: ../src/guestfs-actions.pod:7095 ../fish/guestfish-actions.pod:4710
18145 msgid ""
18146 "This command truncates C<path> to size C<size> bytes.  The file must exist "
18147 "already."
18148 msgstr ""
18149
18150 #. type: textblock
18151 #: ../src/guestfs-actions.pod:7098
18152 msgid ""
18153 "If the current file size is less than C<size> then the file is extended to "
18154 "the required size with zero bytes.  This creates a sparse file (ie. disk "
18155 "blocks are not allocated for the file until you write to it).  To create a "
18156 "non-sparse file of zeroes, use C<guestfs_fallocate64> instead."
18157 msgstr ""
18158
18159 #. type: =head2
18160 #: ../src/guestfs-actions.pod:7108
18161 msgid "guestfs_tune2fs_l"
18162 msgstr ""
18163
18164 #. type: verbatim
18165 #: ../src/guestfs-actions.pod:7110
18166 #, no-wrap
18167 msgid ""
18168 " char **\n"
18169 " guestfs_tune2fs_l (guestfs_h *g,\n"
18170 "                    const char *device);\n"
18171 "\n"
18172 msgstr ""
18173
18174 #. type: textblock
18175 #: ../src/guestfs-actions.pod:7114 ../fish/guestfish-actions.pod:4723
18176 msgid ""
18177 "This returns the contents of the ext2, ext3 or ext4 filesystem superblock on"
18178 " C<device>."
18179 msgstr ""
18180
18181 #. type: textblock
18182 #: ../src/guestfs-actions.pod:7117 ../fish/guestfish-actions.pod:4726
18183 msgid ""
18184 "It is the same as running C<tune2fs -l device>.  See L<tune2fs(8)> manpage "
18185 "for more details.  The list of fields returned isn't clearly defined, and "
18186 "depends on both the version of C<tune2fs> that libguestfs was built against,"
18187 " and the filesystem itself."
18188 msgstr ""
18189
18190 #. type: =head2
18191 #: ../src/guestfs-actions.pod:7130
18192 msgid "guestfs_txz_in"
18193 msgstr ""
18194
18195 #. type: verbatim
18196 #: ../src/guestfs-actions.pod:7132
18197 #, no-wrap
18198 msgid ""
18199 " int\n"
18200 " guestfs_txz_in (guestfs_h *g,\n"
18201 "                 const char *tarball,\n"
18202 "                 const char *directory);\n"
18203 "\n"
18204 msgstr ""
18205
18206 #. type: textblock
18207 #: ../src/guestfs-actions.pod:7137 ../fish/guestfish-actions.pod:4735
18208 msgid ""
18209 "This command uploads and unpacks local file C<tarball> (an I<xz compressed> "
18210 "tar file) into C<directory>."
18211 msgstr ""
18212
18213 #. type: =head2
18214 #: ../src/guestfs-actions.pod:7144
18215 msgid "guestfs_txz_out"
18216 msgstr ""
18217
18218 #. type: verbatim
18219 #: ../src/guestfs-actions.pod:7146
18220 #, no-wrap
18221 msgid ""
18222 " int\n"
18223 " guestfs_txz_out (guestfs_h *g,\n"
18224 "                  const char *directory,\n"
18225 "                  const char *tarball);\n"
18226 "\n"
18227 msgstr ""
18228
18229 #. type: textblock
18230 #: ../src/guestfs-actions.pod:7151 ../fish/guestfish-actions.pod:4744
18231 msgid ""
18232 "This command packs the contents of C<directory> and downloads it to local "
18233 "file C<tarball> (as an xz compressed tar archive)."
18234 msgstr ""
18235
18236 #. type: =head2
18237 #: ../src/guestfs-actions.pod:7158
18238 msgid "guestfs_umask"
18239 msgstr ""
18240
18241 #. type: verbatim
18242 #: ../src/guestfs-actions.pod:7160
18243 #, no-wrap
18244 msgid ""
18245 " int\n"
18246 " guestfs_umask (guestfs_h *g,\n"
18247 "                int mask);\n"
18248 "\n"
18249 msgstr ""
18250
18251 #. type: textblock
18252 #: ../src/guestfs-actions.pod:7164 ../fish/guestfish-actions.pod:4753
18253 msgid ""
18254 "This function sets the mask used for creating new files and device nodes to "
18255 "C<mask & 0777>."
18256 msgstr ""
18257
18258 #. type: textblock
18259 #: ../src/guestfs-actions.pod:7167 ../fish/guestfish-actions.pod:4756
18260 msgid ""
18261 "Typical umask values would be C<022> which creates new files with "
18262 "permissions like \"-rw-r--r--\" or \"-rwxr-xr-x\", and C<002> which creates "
18263 "new files with permissions like \"-rw-rw-r--\" or \"-rwxrwxr-x\"."
18264 msgstr ""
18265
18266 #. type: textblock
18267 #: ../src/guestfs-actions.pod:7172 ../fish/guestfish-actions.pod:4761
18268 msgid ""
18269 "The default umask is C<022>.  This is important because it means that "
18270 "directories and device nodes will be created with C<0644> or C<0755> mode "
18271 "even if you specify C<0777>."
18272 msgstr ""
18273
18274 #. type: textblock
18275 #: ../src/guestfs-actions.pod:7176
18276 msgid ""
18277 "See also C<guestfs_get_umask>, L<umask(2)>, C<guestfs_mknod>, "
18278 "C<guestfs_mkdir>."
18279 msgstr ""
18280
18281 #. type: textblock
18282 #: ../src/guestfs-actions.pod:7179 ../fish/guestfish-actions.pod:4768
18283 msgid "This call returns the previous umask."
18284 msgstr ""
18285
18286 #. type: =head2
18287 #: ../src/guestfs-actions.pod:7185
18288 msgid "guestfs_umount"
18289 msgstr ""
18290
18291 #. type: verbatim
18292 #: ../src/guestfs-actions.pod:7187
18293 #, no-wrap
18294 msgid ""
18295 " int\n"
18296 " guestfs_umount (guestfs_h *g,\n"
18297 "                 const char *pathordevice);\n"
18298 "\n"
18299 msgstr ""
18300
18301 #. type: textblock
18302 #: ../src/guestfs-actions.pod:7191 ../fish/guestfish-actions.pod:4776
18303 msgid ""
18304 "This unmounts the given filesystem.  The filesystem may be specified either "
18305 "by its mountpoint (path) or the device which contains the filesystem."
18306 msgstr ""
18307
18308 #. type: =head2
18309 #: ../src/guestfs-actions.pod:7199
18310 msgid "guestfs_umount_all"
18311 msgstr ""
18312
18313 #. type: verbatim
18314 #: ../src/guestfs-actions.pod:7201
18315 #, no-wrap
18316 msgid ""
18317 " int\n"
18318 " guestfs_umount_all (guestfs_h *g);\n"
18319 "\n"
18320 msgstr ""
18321
18322 #. type: textblock
18323 #: ../src/guestfs-actions.pod:7204 ../fish/guestfish-actions.pod:4786
18324 msgid "This unmounts all mounted filesystems."
18325 msgstr ""
18326
18327 #. type: textblock
18328 #: ../src/guestfs-actions.pod:7206 ../fish/guestfish-actions.pod:4788
18329 msgid "Some internal mounts are not unmounted by this call."
18330 msgstr ""
18331
18332 #. type: =head2
18333 #: ../src/guestfs-actions.pod:7212
18334 msgid "guestfs_upload"
18335 msgstr ""
18336
18337 #. type: verbatim
18338 #: ../src/guestfs-actions.pod:7214
18339 #, no-wrap
18340 msgid ""
18341 " int\n"
18342 " guestfs_upload (guestfs_h *g,\n"
18343 "                 const char *filename,\n"
18344 "                 const char *remotefilename);\n"
18345 "\n"
18346 msgstr ""
18347
18348 #. type: textblock
18349 #: ../src/guestfs-actions.pod:7219 ../src/guestfs-actions.pod:7243
18350 #: ../fish/guestfish-actions.pod:4794 ../fish/guestfish-actions.pod:4807
18351 msgid "Upload local file C<filename> to C<remotefilename> on the filesystem."
18352 msgstr ""
18353
18354 #. type: textblock
18355 #: ../src/guestfs-actions.pod:7224
18356 msgid "See also C<guestfs_download>."
18357 msgstr ""
18358
18359 #. type: =head2
18360 #: ../src/guestfs-actions.pod:7235
18361 msgid "guestfs_upload_offset"
18362 msgstr ""
18363
18364 #. type: verbatim
18365 #: ../src/guestfs-actions.pod:7237
18366 #, no-wrap
18367 msgid ""
18368 " int\n"
18369 " guestfs_upload_offset (guestfs_h *g,\n"
18370 "                        const char *filename,\n"
18371 "                        const char *remotefilename,\n"
18372 "                        int64_t offset);\n"
18373 "\n"
18374 msgstr ""
18375
18376 #. type: textblock
18377 #: ../src/guestfs-actions.pod:7246 ../fish/guestfish-actions.pod:4810
18378 msgid ""
18379 "C<remotefilename> is overwritten starting at the byte C<offset> specified.  "
18380 "The intention is to overwrite parts of existing files or devices, although "
18381 "if a non-existant file is specified then it is created with a \"hole\" "
18382 "before C<offset>.  The size of the data written is implicit in the size of "
18383 "the source C<filename>."
18384 msgstr ""
18385
18386 #. type: textblock
18387 #: ../src/guestfs-actions.pod:7253
18388 msgid ""
18389 "Note that there is no limit on the amount of data that can be uploaded with "
18390 "this call, unlike with C<guestfs_pwrite>, and this call always writes the "
18391 "full amount unless an error occurs."
18392 msgstr ""
18393
18394 #. type: textblock
18395 #: ../src/guestfs-actions.pod:7258
18396 msgid "See also C<guestfs_upload>, C<guestfs_pwrite>."
18397 msgstr ""
18398
18399 #. type: =head2
18400 #: ../src/guestfs-actions.pod:7269
18401 msgid "guestfs_utimens"
18402 msgstr ""
18403
18404 #. type: verbatim
18405 #: ../src/guestfs-actions.pod:7271
18406 #, no-wrap
18407 msgid ""
18408 " int\n"
18409 " guestfs_utimens (guestfs_h *g,\n"
18410 "                  const char *path,\n"
18411 "                  int64_t atsecs,\n"
18412 "                  int64_t atnsecs,\n"
18413 "                  int64_t mtsecs,\n"
18414 "                  int64_t mtnsecs);\n"
18415 "\n"
18416 msgstr ""
18417
18418 #. type: textblock
18419 #: ../src/guestfs-actions.pod:7279 ../fish/guestfish-actions.pod:4830
18420 msgid "This command sets the timestamps of a file with nanosecond precision."
18421 msgstr ""
18422
18423 #. type: textblock
18424 #: ../src/guestfs-actions.pod:7282 ../fish/guestfish-actions.pod:4833
18425 msgid ""
18426 "C<atsecs, atnsecs> are the last access time (atime) in secs and nanoseconds "
18427 "from the epoch."
18428 msgstr ""
18429
18430 #. type: textblock
18431 #: ../src/guestfs-actions.pod:7285 ../fish/guestfish-actions.pod:4836
18432 msgid ""
18433 "C<mtsecs, mtnsecs> are the last modification time (mtime) in secs and "
18434 "nanoseconds from the epoch."
18435 msgstr ""
18436
18437 #. type: textblock
18438 #: ../src/guestfs-actions.pod:7288 ../fish/guestfish-actions.pod:4839
18439 msgid ""
18440 "If the C<*nsecs> field contains the special value C<-1> then the "
18441 "corresponding timestamp is set to the current time.  (The C<*secs> field is "
18442 "ignored in this case)."
18443 msgstr ""
18444
18445 #. type: textblock
18446 #: ../src/guestfs-actions.pod:7292 ../fish/guestfish-actions.pod:4843
18447 msgid ""
18448 "If the C<*nsecs> field contains the special value C<-2> then the "
18449 "corresponding timestamp is left unchanged.  (The C<*secs> field is ignored "
18450 "in this case)."
18451 msgstr ""
18452
18453 #. type: =head2
18454 #: ../src/guestfs-actions.pod:7300 ../src/guestfs-structs.pod:175
18455 msgid "guestfs_version"
18456 msgstr ""
18457
18458 #. type: verbatim
18459 #: ../src/guestfs-actions.pod:7302
18460 #, no-wrap
18461 msgid ""
18462 " struct guestfs_version *\n"
18463 " guestfs_version (guestfs_h *g);\n"
18464 "\n"
18465 msgstr ""
18466
18467 #. type: textblock
18468 #: ../src/guestfs-actions.pod:7305 ../fish/guestfish-actions.pod:4851
18469 msgid ""
18470 "Return the libguestfs version number that the program is linked against."
18471 msgstr ""
18472
18473 #. type: textblock
18474 #: ../src/guestfs-actions.pod:7308 ../fish/guestfish-actions.pod:4854
18475 msgid ""
18476 "Note that because of dynamic linking this is not necessarily the version of "
18477 "libguestfs that you compiled against.  You can compile the program, and then"
18478 " at runtime dynamically link against a completely different C<libguestfs.so>"
18479 " library."
18480 msgstr ""
18481
18482 #. type: textblock
18483 #: ../src/guestfs-actions.pod:7313 ../fish/guestfish-actions.pod:4859
18484 msgid ""
18485 "This call was added in version C<1.0.58>.  In previous versions of "
18486 "libguestfs there was no way to get the version number.  From C code you can "
18487 "use dynamic linker functions to find out if this symbol exists (if it "
18488 "doesn't, then it's an earlier version)."
18489 msgstr ""
18490
18491 #. type: textblock
18492 #: ../src/guestfs-actions.pod:7319 ../fish/guestfish-actions.pod:4865
18493 msgid ""
18494 "The call returns a structure with four elements.  The first three (C<major>,"
18495 " C<minor> and C<release>) are numbers and correspond to the usual version "
18496 "triplet.  The fourth element (C<extra>) is a string and is normally empty, "
18497 "but may be used for distro-specific information."
18498 msgstr ""
18499
18500 #. type: textblock
18501 #: ../src/guestfs-actions.pod:7325 ../fish/guestfish-actions.pod:4871
18502 msgid ""
18503 "To construct the original version string: C<$major.$minor.$release$extra>"
18504 msgstr ""
18505
18506 #. type: textblock
18507 #: ../src/guestfs-actions.pod:7328 ../fish/guestfish-actions.pod:4874
18508 msgid "See also: L<guestfs(3)/LIBGUESTFS VERSION NUMBERS>."
18509 msgstr ""
18510
18511 #. type: textblock
18512 #: ../src/guestfs-actions.pod:7330
18513 msgid ""
18514 "I<Note:> Don't use this call to test for availability of features.  In "
18515 "enterprise distributions we backport features from later versions into "
18516 "earlier versions, making this an unreliable way to test for features.  Use "
18517 "C<guestfs_available> instead."
18518 msgstr ""
18519
18520 #. type: textblock
18521 #: ../src/guestfs-actions.pod:7336
18522 msgid ""
18523 "This function returns a C<struct guestfs_version *>, or NULL if there was an"
18524 " error.  I<The caller must call C<guestfs_free_version> after use>."
18525 msgstr ""
18526
18527 #. type: textblock
18528 #: ../src/guestfs-actions.pod:7340
18529 msgid "(Added in 1.0.58)"
18530 msgstr ""
18531
18532 #. type: =head2
18533 #: ../src/guestfs-actions.pod:7342
18534 msgid "guestfs_vfs_label"
18535 msgstr ""
18536
18537 #. type: verbatim
18538 #: ../src/guestfs-actions.pod:7344
18539 #, no-wrap
18540 msgid ""
18541 " char *\n"
18542 " guestfs_vfs_label (guestfs_h *g,\n"
18543 "                    const char *device);\n"
18544 "\n"
18545 msgstr ""
18546
18547 #. type: textblock
18548 #: ../src/guestfs-actions.pod:7348 ../fish/guestfish-actions.pod:4886
18549 msgid "This returns the filesystem label of the filesystem on C<device>."
18550 msgstr ""
18551
18552 #. type: textblock
18553 #: ../src/guestfs-actions.pod:7351 ../fish/guestfish-actions.pod:4889
18554 msgid "If the filesystem is unlabeled, this returns the empty string."
18555 msgstr ""
18556
18557 #. type: textblock
18558 #: ../src/guestfs-actions.pod:7353
18559 msgid "To find a filesystem from the label, use C<guestfs_findfs_label>."
18560 msgstr ""
18561
18562 #. type: textblock
18563 #: ../src/guestfs-actions.pod:7358 ../src/guestfs-actions.pod:7395
18564 msgid "(Added in 1.3.18)"
18565 msgstr ""
18566
18567 #. type: =head2
18568 #: ../src/guestfs-actions.pod:7360
18569 msgid "guestfs_vfs_type"
18570 msgstr ""
18571
18572 #. type: verbatim
18573 #: ../src/guestfs-actions.pod:7362
18574 #, no-wrap
18575 msgid ""
18576 " char *\n"
18577 " guestfs_vfs_type (guestfs_h *g,\n"
18578 "                   const char *device);\n"
18579 "\n"
18580 msgstr ""
18581
18582 #. type: textblock
18583 #: ../src/guestfs-actions.pod:7366 ../fish/guestfish-actions.pod:4897
18584 msgid ""
18585 "This command gets the filesystem type corresponding to the filesystem on "
18586 "C<device>."
18587 msgstr ""
18588
18589 #. type: textblock
18590 #: ../src/guestfs-actions.pod:7369 ../fish/guestfish-actions.pod:4900
18591 msgid ""
18592 "For most filesystems, the result is the name of the Linux VFS module which "
18593 "would be used to mount this filesystem if you mounted it without specifying "
18594 "the filesystem type.  For example a string such as C<ext3> or C<ntfs>."
18595 msgstr ""
18596
18597 #. type: =head2
18598 #: ../src/guestfs-actions.pod:7379
18599 msgid "guestfs_vfs_uuid"
18600 msgstr ""
18601
18602 #. type: verbatim
18603 #: ../src/guestfs-actions.pod:7381
18604 #, no-wrap
18605 msgid ""
18606 " char *\n"
18607 " guestfs_vfs_uuid (guestfs_h *g,\n"
18608 "                   const char *device);\n"
18609 "\n"
18610 msgstr ""
18611
18612 #. type: textblock
18613 #: ../src/guestfs-actions.pod:7385 ../fish/guestfish-actions.pod:4909
18614 msgid "This returns the filesystem UUID of the filesystem on C<device>."
18615 msgstr ""
18616
18617 #. type: textblock
18618 #: ../src/guestfs-actions.pod:7388 ../fish/guestfish-actions.pod:4912
18619 msgid "If the filesystem does not have a UUID, this returns the empty string."
18620 msgstr ""
18621
18622 #. type: textblock
18623 #: ../src/guestfs-actions.pod:7390
18624 msgid "To find a filesystem from the UUID, use C<guestfs_findfs_uuid>."
18625 msgstr ""
18626
18627 #. type: =head2
18628 #: ../src/guestfs-actions.pod:7397
18629 msgid "guestfs_vg_activate"
18630 msgstr ""
18631
18632 #. type: verbatim
18633 #: ../src/guestfs-actions.pod:7399
18634 #, no-wrap
18635 msgid ""
18636 " int\n"
18637 " guestfs_vg_activate (guestfs_h *g,\n"
18638 "                      int activate,\n"
18639 "                      char *const *volgroups);\n"
18640 "\n"
18641 msgstr ""
18642
18643 #. type: textblock
18644 #: ../src/guestfs-actions.pod:7404 ../fish/guestfish-actions.pod:4920
18645 msgid ""
18646 "This command activates or (if C<activate> is false) deactivates all logical "
18647 "volumes in the listed volume groups C<volgroups>."
18648 msgstr ""
18649
18650 #. type: textblock
18651 #: ../src/guestfs-actions.pod:7407 ../fish/guestfish-actions.pod:4923
18652 msgid "This command is the same as running C<vgchange -a y|n volgroups...>"
18653 msgstr ""
18654
18655 #. type: textblock
18656 #: ../src/guestfs-actions.pod:7409 ../fish/guestfish-actions.pod:4925
18657 msgid ""
18658 "Note that if C<volgroups> is an empty list then B<all> volume groups are "
18659 "activated or deactivated."
18660 msgstr ""
18661
18662 #. type: =head2
18663 #: ../src/guestfs-actions.pod:7416
18664 msgid "guestfs_vg_activate_all"
18665 msgstr ""
18666
18667 #. type: verbatim
18668 #: ../src/guestfs-actions.pod:7418
18669 #, no-wrap
18670 msgid ""
18671 " int\n"
18672 " guestfs_vg_activate_all (guestfs_h *g,\n"
18673 "                          int activate);\n"
18674 "\n"
18675 msgstr ""
18676
18677 #. type: textblock
18678 #: ../src/guestfs-actions.pod:7422 ../fish/guestfish-actions.pod:4932
18679 msgid ""
18680 "This command activates or (if C<activate> is false) deactivates all logical "
18681 "volumes in all volume groups."
18682 msgstr ""
18683
18684 #. type: textblock
18685 #: ../src/guestfs-actions.pod:7425 ../fish/guestfish-actions.pod:4935
18686 msgid "This command is the same as running C<vgchange -a y|n>"
18687 msgstr ""
18688
18689 #. type: =head2
18690 #: ../src/guestfs-actions.pod:7431
18691 msgid "guestfs_vgcreate"
18692 msgstr ""
18693
18694 #. type: verbatim
18695 #: ../src/guestfs-actions.pod:7433
18696 #, no-wrap
18697 msgid ""
18698 " int\n"
18699 " guestfs_vgcreate (guestfs_h *g,\n"
18700 "                   const char *volgroup,\n"
18701 "                   char *const *physvols);\n"
18702 "\n"
18703 msgstr ""
18704
18705 #. type: textblock
18706 #: ../src/guestfs-actions.pod:7438 ../fish/guestfish-actions.pod:4941
18707 msgid ""
18708 "This creates an LVM volume group called C<volgroup> from the non-empty list "
18709 "of physical volumes C<physvols>."
18710 msgstr ""
18711
18712 #. type: =head2
18713 #: ../src/guestfs-actions.pod:7445
18714 msgid "guestfs_vglvuuids"
18715 msgstr ""
18716
18717 #. type: verbatim
18718 #: ../src/guestfs-actions.pod:7447
18719 #, no-wrap
18720 msgid ""
18721 " char **\n"
18722 " guestfs_vglvuuids (guestfs_h *g,\n"
18723 "                    const char *vgname);\n"
18724 "\n"
18725 msgstr ""
18726
18727 #. type: textblock
18728 #: ../src/guestfs-actions.pod:7451 ../fish/guestfish-actions.pod:4948
18729 msgid ""
18730 "Given a VG called C<vgname>, this returns the UUIDs of all the logical "
18731 "volumes created in this volume group."
18732 msgstr ""
18733
18734 #. type: textblock
18735 #: ../src/guestfs-actions.pod:7454
18736 msgid ""
18737 "You can use this along with C<guestfs_lvs> and C<guestfs_lvuuid> calls to "
18738 "associate logical volumes and volume groups."
18739 msgstr ""
18740
18741 #. type: textblock
18742 #: ../src/guestfs-actions.pod:7457
18743 msgid "See also C<guestfs_vgpvuuids>."
18744 msgstr ""
18745
18746 #. type: =head2
18747 #: ../src/guestfs-actions.pod:7465
18748 msgid "guestfs_vgpvuuids"
18749 msgstr ""
18750
18751 #. type: verbatim
18752 #: ../src/guestfs-actions.pod:7467
18753 #, no-wrap
18754 msgid ""
18755 " char **\n"
18756 " guestfs_vgpvuuids (guestfs_h *g,\n"
18757 "                    const char *vgname);\n"
18758 "\n"
18759 msgstr ""
18760
18761 #. type: textblock
18762 #: ../src/guestfs-actions.pod:7471 ../fish/guestfish-actions.pod:4960
18763 msgid ""
18764 "Given a VG called C<vgname>, this returns the UUIDs of all the physical "
18765 "volumes that this volume group resides on."
18766 msgstr ""
18767
18768 #. type: textblock
18769 #: ../src/guestfs-actions.pod:7474
18770 msgid ""
18771 "You can use this along with C<guestfs_pvs> and C<guestfs_pvuuid> calls to "
18772 "associate physical volumes and volume groups."
18773 msgstr ""
18774
18775 #. type: textblock
18776 #: ../src/guestfs-actions.pod:7477
18777 msgid "See also C<guestfs_vglvuuids>."
18778 msgstr ""
18779
18780 #. type: =head2
18781 #: ../src/guestfs-actions.pod:7485
18782 msgid "guestfs_vgremove"
18783 msgstr ""
18784
18785 #. type: verbatim
18786 #: ../src/guestfs-actions.pod:7487
18787 #, no-wrap
18788 msgid ""
18789 " int\n"
18790 " guestfs_vgremove (guestfs_h *g,\n"
18791 "                   const char *vgname);\n"
18792 "\n"
18793 msgstr ""
18794
18795 #. type: textblock
18796 #: ../src/guestfs-actions.pod:7491 ../fish/guestfish-actions.pod:4972
18797 msgid "Remove an LVM volume group C<vgname>, (for example C<VG>)."
18798 msgstr ""
18799
18800 #. type: textblock
18801 #: ../src/guestfs-actions.pod:7493 ../fish/guestfish-actions.pod:4974
18802 msgid ""
18803 "This also forcibly removes all logical volumes in the volume group (if any)."
18804 msgstr ""
18805
18806 #. type: =head2
18807 #: ../src/guestfs-actions.pod:7500
18808 msgid "guestfs_vgrename"
18809 msgstr ""
18810
18811 #. type: verbatim
18812 #: ../src/guestfs-actions.pod:7502
18813 #, no-wrap
18814 msgid ""
18815 " int\n"
18816 " guestfs_vgrename (guestfs_h *g,\n"
18817 "                   const char *volgroup,\n"
18818 "                   const char *newvolgroup);\n"
18819 "\n"
18820 msgstr ""
18821
18822 #. type: textblock
18823 #: ../src/guestfs-actions.pod:7507 ../fish/guestfish-actions.pod:4981
18824 msgid "Rename a volume group C<volgroup> with the new name C<newvolgroup>."
18825 msgstr ""
18826
18827 #. type: =head2
18828 #: ../src/guestfs-actions.pod:7513
18829 msgid "guestfs_vgs"
18830 msgstr ""
18831
18832 #. type: verbatim
18833 #: ../src/guestfs-actions.pod:7515
18834 #, no-wrap
18835 msgid ""
18836 " char **\n"
18837 " guestfs_vgs (guestfs_h *g);\n"
18838 "\n"
18839 msgstr ""
18840
18841 #. type: textblock
18842 #: ../src/guestfs-actions.pod:7518 ../fish/guestfish-actions.pod:4987
18843 msgid ""
18844 "List all the volumes groups detected.  This is the equivalent of the "
18845 "L<vgs(8)> command."
18846 msgstr ""
18847
18848 #. type: textblock
18849 #: ../src/guestfs-actions.pod:7521 ../fish/guestfish-actions.pod:4990
18850 msgid ""
18851 "This returns a list of just the volume group names that were detected (eg. "
18852 "C<VolGroup00>)."
18853 msgstr ""
18854
18855 #. type: textblock
18856 #: ../src/guestfs-actions.pod:7524
18857 msgid "See also C<guestfs_vgs_full>."
18858 msgstr ""
18859
18860 #. type: =head2
18861 #: ../src/guestfs-actions.pod:7532
18862 msgid "guestfs_vgs_full"
18863 msgstr ""
18864
18865 #. type: verbatim
18866 #: ../src/guestfs-actions.pod:7534
18867 #, no-wrap
18868 msgid ""
18869 " struct guestfs_lvm_vg_list *\n"
18870 " guestfs_vgs_full (guestfs_h *g);\n"
18871 "\n"
18872 msgstr ""
18873
18874 #. type: textblock
18875 #: ../src/guestfs-actions.pod:7537 ../fish/guestfish-actions.pod:4999
18876 msgid ""
18877 "List all the volumes groups detected.  This is the equivalent of the "
18878 "L<vgs(8)> command.  The \"full\" version includes all fields."
18879 msgstr ""
18880
18881 #. type: textblock
18882 #: ../src/guestfs-actions.pod:7540
18883 msgid ""
18884 "This function returns a C<struct guestfs_lvm_vg_list *>, or NULL if there "
18885 "was an error.  I<The caller must call C<guestfs_free_lvm_vg_list> after "
18886 "use>."
18887 msgstr ""
18888
18889 #. type: =head2
18890 #: ../src/guestfs-actions.pod:7546
18891 msgid "guestfs_vgscan"
18892 msgstr ""
18893
18894 #. type: verbatim
18895 #: ../src/guestfs-actions.pod:7548
18896 #, no-wrap
18897 msgid ""
18898 " int\n"
18899 " guestfs_vgscan (guestfs_h *g);\n"
18900 "\n"
18901 msgstr ""
18902
18903 #. type: textblock
18904 #: ../src/guestfs-actions.pod:7551 ../fish/guestfish-actions.pod:5006
18905 msgid ""
18906 "This rescans all block devices and rebuilds the list of LVM physical "
18907 "volumes, volume groups and logical volumes."
18908 msgstr ""
18909
18910 #. type: =head2
18911 #: ../src/guestfs-actions.pod:7558
18912 msgid "guestfs_vguuid"
18913 msgstr ""
18914
18915 #. type: verbatim
18916 #: ../src/guestfs-actions.pod:7560
18917 #, no-wrap
18918 msgid ""
18919 " char *\n"
18920 " guestfs_vguuid (guestfs_h *g,\n"
18921 "                 const char *vgname);\n"
18922 "\n"
18923 msgstr ""
18924
18925 #. type: textblock
18926 #: ../src/guestfs-actions.pod:7564 ../fish/guestfish-actions.pod:5013
18927 msgid "This command returns the UUID of the LVM VG named C<vgname>."
18928 msgstr ""
18929
18930 #. type: =head2
18931 #: ../src/guestfs-actions.pod:7571
18932 msgid "guestfs_wait_ready"
18933 msgstr ""
18934
18935 #. type: verbatim
18936 #: ../src/guestfs-actions.pod:7573
18937 #, no-wrap
18938 msgid ""
18939 " int\n"
18940 " guestfs_wait_ready (guestfs_h *g);\n"
18941 "\n"
18942 msgstr ""
18943
18944 #. type: textblock
18945 #: ../src/guestfs-actions.pod:7576
18946 msgid "This function is a no op."
18947 msgstr ""
18948
18949 #. type: textblock
18950 #: ../src/guestfs-actions.pod:7578
18951 msgid ""
18952 "In versions of the API E<lt> 1.0.71 you had to call this function just after"
18953 " calling C<guestfs_launch> to wait for the launch to complete.  However this"
18954 " is no longer necessary because C<guestfs_launch> now does the waiting."
18955 msgstr ""
18956
18957 #. type: textblock
18958 #: ../src/guestfs-actions.pod:7583
18959 msgid ""
18960 "If you see any calls to this function in code then you can just remove them,"
18961 " unless you want to retain compatibility with older versions of the API."
18962 msgstr ""
18963
18964 #. type: textblock
18965 #: ../src/guestfs-actions.pod:7589
18966 msgid ""
18967 "This function is deprecated.  In new code, use the C<launch> call instead."
18968 msgstr ""
18969
18970 #. type: =head2
18971 #: ../src/guestfs-actions.pod:7598
18972 msgid "guestfs_wc_c"
18973 msgstr ""
18974
18975 #. type: verbatim
18976 #: ../src/guestfs-actions.pod:7600
18977 #, no-wrap
18978 msgid ""
18979 " int\n"
18980 " guestfs_wc_c (guestfs_h *g,\n"
18981 "               const char *path);\n"
18982 "\n"
18983 msgstr ""
18984
18985 #. type: textblock
18986 #: ../src/guestfs-actions.pod:7604 ../fish/guestfish-actions.pod:5019
18987 msgid ""
18988 "This command counts the characters in a file, using the C<wc -c> external "
18989 "command."
18990 msgstr ""
18991
18992 #. type: =head2
18993 #: ../src/guestfs-actions.pod:7611
18994 msgid "guestfs_wc_l"
18995 msgstr ""
18996
18997 #. type: verbatim
18998 #: ../src/guestfs-actions.pod:7613
18999 #, no-wrap
19000 msgid ""
19001 " int\n"
19002 " guestfs_wc_l (guestfs_h *g,\n"
19003 "               const char *path);\n"
19004 "\n"
19005 msgstr ""
19006
19007 #. type: textblock
19008 #: ../src/guestfs-actions.pod:7617 ../fish/guestfish-actions.pod:5026
19009 msgid ""
19010 "This command counts the lines in a file, using the C<wc -l> external "
19011 "command."
19012 msgstr ""
19013
19014 #. type: =head2
19015 #: ../src/guestfs-actions.pod:7624
19016 msgid "guestfs_wc_w"
19017 msgstr ""
19018
19019 #. type: verbatim
19020 #: ../src/guestfs-actions.pod:7626
19021 #, no-wrap
19022 msgid ""
19023 " int\n"
19024 " guestfs_wc_w (guestfs_h *g,\n"
19025 "               const char *path);\n"
19026 "\n"
19027 msgstr ""
19028
19029 #. type: textblock
19030 #: ../src/guestfs-actions.pod:7630 ../fish/guestfish-actions.pod:5033
19031 msgid ""
19032 "This command counts the words in a file, using the C<wc -w> external "
19033 "command."
19034 msgstr ""
19035
19036 #. type: =head2
19037 #: ../src/guestfs-actions.pod:7637
19038 msgid "guestfs_write"
19039 msgstr ""
19040
19041 #. type: verbatim
19042 #: ../src/guestfs-actions.pod:7639
19043 #, no-wrap
19044 msgid ""
19045 " int\n"
19046 " guestfs_write (guestfs_h *g,\n"
19047 "                const char *path,\n"
19048 "                const char *content,\n"
19049 "                size_t content_size);\n"
19050 "\n"
19051 msgstr ""
19052
19053 #. type: textblock
19054 #: ../src/guestfs-actions.pod:7645 ../fish/guestfish-actions.pod:5040
19055 msgid ""
19056 "This call creates a file called C<path>.  The content of the file is the "
19057 "string C<content> (which can contain any 8 bit data)."
19058 msgstr ""
19059
19060 #. type: textblock
19061 #: ../src/guestfs-actions.pod:7648
19062 msgid "See also C<guestfs_write_append>."
19063 msgstr ""
19064
19065 #. type: =head2
19066 #: ../src/guestfs-actions.pod:7657
19067 msgid "guestfs_write_append"
19068 msgstr ""
19069
19070 #. type: verbatim
19071 #: ../src/guestfs-actions.pod:7659
19072 #, no-wrap
19073 msgid ""
19074 " int\n"
19075 " guestfs_write_append (guestfs_h *g,\n"
19076 "                       const char *path,\n"
19077 "                       const char *content,\n"
19078 "                       size_t content_size);\n"
19079 "\n"
19080 msgstr ""
19081
19082 #. type: textblock
19083 #: ../src/guestfs-actions.pod:7665 ../fish/guestfish-actions.pod:5052
19084 msgid ""
19085 "This call appends C<content> to the end of file C<path>.  If C<path> does "
19086 "not exist, then a new file is created."
19087 msgstr ""
19088
19089 #. type: textblock
19090 #: ../src/guestfs-actions.pod:7668
19091 msgid "See also C<guestfs_write>."
19092 msgstr ""
19093
19094 #. type: =head2
19095 #: ../src/guestfs-actions.pod:7675
19096 msgid "guestfs_write_file"
19097 msgstr ""
19098
19099 #. type: verbatim
19100 #: ../src/guestfs-actions.pod:7677
19101 #, no-wrap
19102 msgid ""
19103 " int\n"
19104 " guestfs_write_file (guestfs_h *g,\n"
19105 "                     const char *path,\n"
19106 "                     const char *content,\n"
19107 "                     int size);\n"
19108 "\n"
19109 msgstr ""
19110
19111 #. type: textblock
19112 #: ../src/guestfs-actions.pod:7683 ../fish/guestfish-actions.pod:5064
19113 msgid ""
19114 "This call creates a file called C<path>.  The contents of the file is the "
19115 "string C<content> (which can contain any 8 bit data), with length C<size>."
19116 msgstr ""
19117
19118 #. type: textblock
19119 #: ../src/guestfs-actions.pod:7687 ../fish/guestfish-actions.pod:5068
19120 msgid ""
19121 "As a special case, if C<size> is C<0> then the length is calculated using "
19122 "C<strlen> (so in this case the content cannot contain embedded ASCII NULs)."
19123 msgstr ""
19124
19125 #. type: textblock
19126 #: ../src/guestfs-actions.pod:7691 ../fish/guestfish-actions.pod:5072
19127 msgid ""
19128 "I<NB.> Owing to a bug, writing content containing ASCII NUL characters does "
19129 "I<not> work, even if the length is specified."
19130 msgstr ""
19131
19132 #. type: textblock
19133 #: ../src/guestfs-actions.pod:7699 ../fish/guestfish-actions.pod:5078
19134 msgid ""
19135 "This function is deprecated.  In new code, use the C<write> call instead."
19136 msgstr ""
19137
19138 #. type: =head2
19139 #: ../src/guestfs-actions.pod:7708
19140 msgid "guestfs_zegrep"
19141 msgstr ""
19142
19143 #. type: verbatim
19144 #: ../src/guestfs-actions.pod:7710
19145 #, no-wrap
19146 msgid ""
19147 " char **\n"
19148 " guestfs_zegrep (guestfs_h *g,\n"
19149 "                 const char *regex,\n"
19150 "                 const char *path);\n"
19151 "\n"
19152 msgstr ""
19153
19154 #. type: textblock
19155 #: ../src/guestfs-actions.pod:7715 ../fish/guestfish-actions.pod:5089
19156 msgid ""
19157 "This calls the external C<zegrep> program and returns the matching lines."
19158 msgstr ""
19159
19160 #. type: =head2
19161 #: ../src/guestfs-actions.pod:7727
19162 msgid "guestfs_zegrepi"
19163 msgstr ""
19164
19165 #. type: verbatim
19166 #: ../src/guestfs-actions.pod:7729
19167 #, no-wrap
19168 msgid ""
19169 " char **\n"
19170 " guestfs_zegrepi (guestfs_h *g,\n"
19171 "                  const char *regex,\n"
19172 "                  const char *path);\n"
19173 "\n"
19174 msgstr ""
19175
19176 #. type: textblock
19177 #: ../src/guestfs-actions.pod:7734 ../fish/guestfish-actions.pod:5099
19178 msgid ""
19179 "This calls the external C<zegrep -i> program and returns the matching lines."
19180 msgstr ""
19181
19182 #. type: =head2
19183 #: ../src/guestfs-actions.pod:7746
19184 msgid "guestfs_zero"
19185 msgstr ""
19186
19187 #. type: verbatim
19188 #: ../src/guestfs-actions.pod:7748
19189 #, no-wrap
19190 msgid ""
19191 " int\n"
19192 " guestfs_zero (guestfs_h *g,\n"
19193 "               const char *device);\n"
19194 "\n"
19195 msgstr ""
19196
19197 #. type: textblock
19198 #: ../src/guestfs-actions.pod:7752 ../fish/guestfish-actions.pod:5109
19199 msgid "This command writes zeroes over the first few blocks of C<device>."
19200 msgstr ""
19201
19202 #. type: textblock
19203 #: ../src/guestfs-actions.pod:7754 ../fish/guestfish-actions.pod:5111
19204 msgid ""
19205 "How many blocks are zeroed isn't specified (but it's I<not> enough to "
19206 "securely wipe the device).  It should be sufficient to remove any partition "
19207 "tables, filesystem superblocks and so on."
19208 msgstr ""
19209
19210 #. type: textblock
19211 #: ../src/guestfs-actions.pod:7758
19212 msgid ""
19213 "See also: C<guestfs_zero_device>, C<guestfs_scrub_device>, "
19214 "C<guestfs_is_zero_device>"
19215 msgstr ""
19216
19217 #. type: =head2
19218 #: ../src/guestfs-actions.pod:7770
19219 msgid "guestfs_zero_device"
19220 msgstr ""
19221
19222 #. type: verbatim
19223 #: ../src/guestfs-actions.pod:7772
19224 #, no-wrap
19225 msgid ""
19226 " int\n"
19227 " guestfs_zero_device (guestfs_h *g,\n"
19228 "                      const char *device);\n"
19229 "\n"
19230 msgstr ""
19231
19232 #. type: textblock
19233 #: ../src/guestfs-actions.pod:7776
19234 msgid ""
19235 "This command writes zeroes over the entire C<device>.  Compare with "
19236 "C<guestfs_zero> which just zeroes the first few blocks of a device."
19237 msgstr ""
19238
19239 #. type: textblock
19240 #: ../src/guestfs-actions.pod:7790
19241 msgid "(Added in 1.3.1)"
19242 msgstr ""
19243
19244 #. type: =head2
19245 #: ../src/guestfs-actions.pod:7792
19246 msgid "guestfs_zerofree"
19247 msgstr ""
19248
19249 #. type: verbatim
19250 #: ../src/guestfs-actions.pod:7794
19251 #, no-wrap
19252 msgid ""
19253 " int\n"
19254 " guestfs_zerofree (guestfs_h *g,\n"
19255 "                   const char *device);\n"
19256 "\n"
19257 msgstr ""
19258
19259 #. type: textblock
19260 #: ../src/guestfs-actions.pod:7798 ../fish/guestfish-actions.pod:5133
19261 msgid ""
19262 "This runs the I<zerofree> program on C<device>.  This program claims to zero"
19263 " unused inodes and disk blocks on an ext2/3 filesystem, thus making it "
19264 "possible to compress the filesystem more effectively."
19265 msgstr ""
19266
19267 #. type: textblock
19268 #: ../src/guestfs-actions.pod:7803 ../fish/guestfish-actions.pod:5138
19269 msgid "You should B<not> run this program if the filesystem is mounted."
19270 msgstr ""
19271
19272 #. type: textblock
19273 #: ../src/guestfs-actions.pod:7806 ../fish/guestfish-actions.pod:5141
19274 msgid ""
19275 "It is possible that using this program can damage the filesystem or data on "
19276 "the filesystem."
19277 msgstr ""
19278
19279 #. type: =head2
19280 #: ../src/guestfs-actions.pod:7813
19281 msgid "guestfs_zfgrep"
19282 msgstr ""
19283
19284 #. type: verbatim
19285 #: ../src/guestfs-actions.pod:7815
19286 #, no-wrap
19287 msgid ""
19288 " char **\n"
19289 " guestfs_zfgrep (guestfs_h *g,\n"
19290 "                 const char *pattern,\n"
19291 "                 const char *path);\n"
19292 "\n"
19293 msgstr ""
19294
19295 #. type: textblock
19296 #: ../src/guestfs-actions.pod:7820 ../fish/guestfish-actions.pod:5148
19297 msgid ""
19298 "This calls the external C<zfgrep> program and returns the matching lines."
19299 msgstr ""
19300
19301 #. type: =head2
19302 #: ../src/guestfs-actions.pod:7832
19303 msgid "guestfs_zfgrepi"
19304 msgstr ""
19305
19306 #. type: verbatim
19307 #: ../src/guestfs-actions.pod:7834
19308 #, no-wrap
19309 msgid ""
19310 " char **\n"
19311 " guestfs_zfgrepi (guestfs_h *g,\n"
19312 "                  const char *pattern,\n"
19313 "                  const char *path);\n"
19314 "\n"
19315 msgstr ""
19316
19317 #. type: textblock
19318 #: ../src/guestfs-actions.pod:7839 ../fish/guestfish-actions.pod:5158
19319 msgid ""
19320 "This calls the external C<zfgrep -i> program and returns the matching lines."
19321 msgstr ""
19322
19323 #. type: =head2
19324 #: ../src/guestfs-actions.pod:7851
19325 msgid "guestfs_zfile"
19326 msgstr ""
19327
19328 #. type: verbatim
19329 #: ../src/guestfs-actions.pod:7853
19330 #, no-wrap
19331 msgid ""
19332 " char *\n"
19333 " guestfs_zfile (guestfs_h *g,\n"
19334 "                const char *meth,\n"
19335 "                const char *path);\n"
19336 "\n"
19337 msgstr ""
19338
19339 #. type: textblock
19340 #: ../src/guestfs-actions.pod:7858 ../fish/guestfish-actions.pod:5168
19341 msgid ""
19342 "This command runs C<file> after first decompressing C<path> using C<method>."
19343 msgstr ""
19344
19345 #. type: textblock
19346 #: ../src/guestfs-actions.pod:7861 ../fish/guestfish-actions.pod:5171
19347 msgid "C<method> must be one of C<gzip>, C<compress> or C<bzip2>."
19348 msgstr ""
19349
19350 #. type: textblock
19351 #: ../src/guestfs-actions.pod:7863
19352 msgid ""
19353 "Since 1.0.63, use C<guestfs_file> instead which can now process compressed "
19354 "files."
19355 msgstr ""
19356
19357 #. type: textblock
19358 #: ../src/guestfs-actions.pod:7869 ../fish/guestfish-actions.pod:5176
19359 msgid ""
19360 "This function is deprecated.  In new code, use the C<file> call instead."
19361 msgstr ""
19362
19363 #. type: =head2
19364 #: ../src/guestfs-actions.pod:7878
19365 msgid "guestfs_zgrep"
19366 msgstr ""
19367
19368 #. type: verbatim
19369 #: ../src/guestfs-actions.pod:7880
19370 #, no-wrap
19371 msgid ""
19372 " char **\n"
19373 " guestfs_zgrep (guestfs_h *g,\n"
19374 "                const char *regex,\n"
19375 "                const char *path);\n"
19376 "\n"
19377 msgstr ""
19378
19379 #. type: textblock
19380 #: ../src/guestfs-actions.pod:7885 ../fish/guestfish-actions.pod:5187
19381 msgid ""
19382 "This calls the external C<zgrep> program and returns the matching lines."
19383 msgstr ""
19384
19385 #. type: =head2
19386 #: ../src/guestfs-actions.pod:7897
19387 msgid "guestfs_zgrepi"
19388 msgstr ""
19389
19390 #. type: verbatim
19391 #: ../src/guestfs-actions.pod:7899
19392 #, no-wrap
19393 msgid ""
19394 " char **\n"
19395 " guestfs_zgrepi (guestfs_h *g,\n"
19396 "                 const char *regex,\n"
19397 "                 const char *path);\n"
19398 "\n"
19399 msgstr ""
19400
19401 #. type: textblock
19402 #: ../src/guestfs-actions.pod:7904 ../fish/guestfish-actions.pod:5197
19403 msgid ""
19404 "This calls the external C<zgrep -i> program and returns the matching lines."
19405 msgstr ""
19406
19407 #. type: =item
19408 #: ../src/guestfs-availability.pod:3
19409 msgid "B<augeas>"
19410 msgstr ""
19411
19412 #. type: textblock
19413 #: ../src/guestfs-availability.pod:5
19414 msgid ""
19415 "The following functions: L</guestfs_aug_clear> L</guestfs_aug_close> "
19416 "L</guestfs_aug_defnode> L</guestfs_aug_defvar> L</guestfs_aug_get> "
19417 "L</guestfs_aug_init> L</guestfs_aug_insert> L</guestfs_aug_load> "
19418 "L</guestfs_aug_ls> L</guestfs_aug_match> L</guestfs_aug_mv> "
19419 "L</guestfs_aug_rm> L</guestfs_aug_save> L</guestfs_aug_set>"
19420 msgstr ""
19421
19422 #. type: =item
19423 #: ../src/guestfs-availability.pod:21
19424 msgid "B<btrfs>"
19425 msgstr ""
19426
19427 #. type: textblock
19428 #: ../src/guestfs-availability.pod:23
19429 msgid "The following functions: L</guestfs_btrfs_filesystem_resize>"
19430 msgstr ""
19431
19432 #. type: =item
19433 #: ../src/guestfs-availability.pod:26
19434 msgid "B<inotify>"
19435 msgstr ""
19436
19437 #. type: textblock
19438 #: ../src/guestfs-availability.pod:28
19439 msgid ""
19440 "The following functions: L</guestfs_inotify_add_watch> "
19441 "L</guestfs_inotify_close> L</guestfs_inotify_files> L</guestfs_inotify_init>"
19442 " L</guestfs_inotify_read> L</guestfs_inotify_rm_watch>"
19443 msgstr ""
19444
19445 #. type: =item
19446 #: ../src/guestfs-availability.pod:36
19447 msgid "B<linuxfsuuid>"
19448 msgstr ""
19449
19450 #. type: textblock
19451 #: ../src/guestfs-availability.pod:38
19452 msgid ""
19453 "The following functions: L</guestfs_mke2fs_JU> L</guestfs_mke2journal_U> "
19454 "L</guestfs_mkswap_U> L</guestfs_swapoff_uuid> L</guestfs_swapon_uuid>"
19455 msgstr ""
19456
19457 #. type: =item
19458 #: ../src/guestfs-availability.pod:45
19459 msgid "B<linuxmodules>"
19460 msgstr ""
19461
19462 #. type: textblock
19463 #: ../src/guestfs-availability.pod:47
19464 msgid "The following functions: L</guestfs_modprobe>"
19465 msgstr ""
19466
19467 #. type: =item
19468 #: ../src/guestfs-availability.pod:50
19469 msgid "B<linuxxattrs>"
19470 msgstr ""
19471
19472 #. type: textblock
19473 #: ../src/guestfs-availability.pod:52
19474 msgid ""
19475 "The following functions: L</guestfs_getxattr> L</guestfs_getxattrs> "
19476 "L</guestfs_lgetxattr> L</guestfs_lgetxattrs> L</guestfs_lremovexattr> "
19477 "L</guestfs_lsetxattr> L</guestfs_lxattrlist> L</guestfs_removexattr> "
19478 "L</guestfs_setxattr>"
19479 msgstr ""
19480
19481 #. type: =item
19482 #: ../src/guestfs-availability.pod:63
19483 msgid "B<luks>"
19484 msgstr ""
19485
19486 #. type: textblock
19487 #: ../src/guestfs-availability.pod:65
19488 msgid ""
19489 "The following functions: L</guestfs_luks_add_key> L</guestfs_luks_close> "
19490 "L</guestfs_luks_format> L</guestfs_luks_format_cipher> "
19491 "L</guestfs_luks_kill_slot> L</guestfs_luks_open> L</guestfs_luks_open_ro>"
19492 msgstr ""
19493
19494 #. type: =item
19495 #: ../src/guestfs-availability.pod:74
19496 msgid "B<lvm2>"
19497 msgstr ""
19498
19499 #. type: textblock
19500 #: ../src/guestfs-availability.pod:76
19501 msgid ""
19502 "The following functions: L</guestfs_is_lv> L</guestfs_lvcreate> "
19503 "L</guestfs_lvm_remove_all> L</guestfs_lvm_set_filter> L</guestfs_lvremove> "
19504 "L</guestfs_lvresize> L</guestfs_lvresize_free> L</guestfs_lvs> "
19505 "L</guestfs_lvs_full> L</guestfs_pvcreate> L</guestfs_pvremove> "
19506 "L</guestfs_pvresize> L</guestfs_pvresize_size> L</guestfs_pvs> "
19507 "L</guestfs_pvs_full> L</guestfs_vg_activate> L</guestfs_vg_activate_all> "
19508 "L</guestfs_vgcreate> L</guestfs_vgremove> L</guestfs_vgs> "
19509 "L</guestfs_vgs_full>"
19510 msgstr ""
19511
19512 #. type: =item
19513 #: ../src/guestfs-availability.pod:99
19514 msgid "B<mknod>"
19515 msgstr ""
19516
19517 #. type: textblock
19518 #: ../src/guestfs-availability.pod:101
19519 msgid ""
19520 "The following functions: L</guestfs_mkfifo> L</guestfs_mknod> "
19521 "L</guestfs_mknod_b> L</guestfs_mknod_c>"
19522 msgstr ""
19523
19524 #. type: =item
19525 #: ../src/guestfs-availability.pod:107
19526 msgid "B<ntfs3g>"
19527 msgstr ""
19528
19529 #. type: textblock
19530 #: ../src/guestfs-availability.pod:109
19531 msgid "The following functions: L</guestfs_ntfs_3g_probe>"
19532 msgstr ""
19533
19534 #. type: =item
19535 #: ../src/guestfs-availability.pod:112
19536 msgid "B<ntfsprogs>"
19537 msgstr ""
19538
19539 #. type: textblock
19540 #: ../src/guestfs-availability.pod:114
19541 msgid ""
19542 "The following functions: L</guestfs_ntfsresize> L</guestfs_ntfsresize_opts> "
19543 "L</guestfs_ntfsresize_size>"
19544 msgstr ""
19545
19546 #. type: =item
19547 #: ../src/guestfs-availability.pod:119
19548 msgid "B<realpath>"
19549 msgstr ""
19550
19551 #. type: textblock
19552 #: ../src/guestfs-availability.pod:121
19553 msgid "The following functions: L</guestfs_realpath>"
19554 msgstr ""
19555
19556 #. type: =item
19557 #: ../src/guestfs-availability.pod:124
19558 msgid "B<scrub>"
19559 msgstr ""
19560
19561 #. type: textblock
19562 #: ../src/guestfs-availability.pod:126
19563 msgid ""
19564 "The following functions: L</guestfs_scrub_device> L</guestfs_scrub_file> "
19565 "L</guestfs_scrub_freespace>"
19566 msgstr ""
19567
19568 #. type: =item
19569 #: ../src/guestfs-availability.pod:131
19570 msgid "B<selinux>"
19571 msgstr ""
19572
19573 #. type: textblock
19574 #: ../src/guestfs-availability.pod:133
19575 msgid "The following functions: L</guestfs_getcon> L</guestfs_setcon>"
19576 msgstr ""
19577
19578 #. type: =item
19579 #: ../src/guestfs-availability.pod:137
19580 msgid "B<xz>"
19581 msgstr ""
19582
19583 #. type: textblock
19584 #: ../src/guestfs-availability.pod:139
19585 msgid "The following functions: L</guestfs_txz_in> L</guestfs_txz_out>"
19586 msgstr ""
19587
19588 #. type: =item
19589 #: ../src/guestfs-availability.pod:143
19590 msgid "B<zerofree>"
19591 msgstr ""
19592
19593 #. type: textblock
19594 #: ../src/guestfs-availability.pod:145
19595 msgid "The following functions: L</guestfs_zerofree>"
19596 msgstr ""
19597
19598 #. type: =head2
19599 #: ../src/guestfs-structs.pod:1
19600 msgid "guestfs_int_bool"
19601 msgstr ""
19602
19603 #. type: verbatim
19604 #: ../src/guestfs-structs.pod:3
19605 #, no-wrap
19606 msgid ""
19607 " struct guestfs_int_bool {\n"
19608 "   int32_t i;\n"
19609 "   int32_t b;\n"
19610 " };\n"
19611 " \n"
19612 msgstr ""
19613
19614 #. type: verbatim
19615 #: ../src/guestfs-structs.pod:8
19616 #, no-wrap
19617 msgid ""
19618 " struct guestfs_int_bool_list {\n"
19619 "   uint32_t len; /* Number of elements in list. */\n"
19620 "   struct guestfs_int_bool *val; /* Elements. */\n"
19621 " };\n"
19622 " \n"
19623 msgstr ""
19624
19625 #. type: verbatim
19626 #: ../src/guestfs-structs.pod:13
19627 #, no-wrap
19628 msgid ""
19629 " void guestfs_free_int_bool (struct guestfs_free_int_bool *);\n"
19630 " void guestfs_free_int_bool_list (struct guestfs_free_int_bool_list *);\n"
19631 "\n"
19632 msgstr ""
19633
19634 #. type: =head2
19635 #: ../src/guestfs-structs.pod:16
19636 msgid "guestfs_lvm_pv"
19637 msgstr ""
19638
19639 #. type: verbatim
19640 #: ../src/guestfs-structs.pod:18
19641 #, no-wrap
19642 msgid ""
19643 " struct guestfs_lvm_pv {\n"
19644 "   char *pv_name;\n"
19645 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19646 "   char pv_uuid[32];\n"
19647 "   char *pv_fmt;\n"
19648 "   uint64_t pv_size;\n"
19649 "   uint64_t dev_size;\n"
19650 "   uint64_t pv_free;\n"
19651 "   uint64_t pv_used;\n"
19652 "   char *pv_attr;\n"
19653 "   int64_t pv_pe_count;\n"
19654 "   int64_t pv_pe_alloc_count;\n"
19655 "   char *pv_tags;\n"
19656 "   uint64_t pe_start;\n"
19657 "   int64_t pv_mda_count;\n"
19658 "   uint64_t pv_mda_free;\n"
19659 " };\n"
19660 " \n"
19661 msgstr ""
19662
19663 #. type: verbatim
19664 #: ../src/guestfs-structs.pod:36
19665 #, no-wrap
19666 msgid ""
19667 " struct guestfs_lvm_pv_list {\n"
19668 "   uint32_t len; /* Number of elements in list. */\n"
19669 "   struct guestfs_lvm_pv *val; /* Elements. */\n"
19670 " };\n"
19671 " \n"
19672 msgstr ""
19673
19674 #. type: verbatim
19675 #: ../src/guestfs-structs.pod:41
19676 #, no-wrap
19677 msgid ""
19678 " void guestfs_free_lvm_pv (struct guestfs_free_lvm_pv *);\n"
19679 " void guestfs_free_lvm_pv_list (struct guestfs_free_lvm_pv_list *);\n"
19680 "\n"
19681 msgstr ""
19682
19683 #. type: =head2
19684 #: ../src/guestfs-structs.pod:44
19685 msgid "guestfs_lvm_vg"
19686 msgstr ""
19687
19688 #. type: verbatim
19689 #: ../src/guestfs-structs.pod:46
19690 #, no-wrap
19691 msgid ""
19692 " struct guestfs_lvm_vg {\n"
19693 "   char *vg_name;\n"
19694 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19695 "   char vg_uuid[32];\n"
19696 "   char *vg_fmt;\n"
19697 "   char *vg_attr;\n"
19698 "   uint64_t vg_size;\n"
19699 "   uint64_t vg_free;\n"
19700 "   char *vg_sysid;\n"
19701 "   uint64_t vg_extent_size;\n"
19702 "   int64_t vg_extent_count;\n"
19703 "   int64_t vg_free_count;\n"
19704 "   int64_t max_lv;\n"
19705 "   int64_t max_pv;\n"
19706 "   int64_t pv_count;\n"
19707 "   int64_t lv_count;\n"
19708 "   int64_t snap_count;\n"
19709 "   int64_t vg_seqno;\n"
19710 "   char *vg_tags;\n"
19711 "   int64_t vg_mda_count;\n"
19712 "   uint64_t vg_mda_free;\n"
19713 " };\n"
19714 " \n"
19715 msgstr ""
19716
19717 #. type: verbatim
19718 #: ../src/guestfs-structs.pod:69
19719 #, no-wrap
19720 msgid ""
19721 " struct guestfs_lvm_vg_list {\n"
19722 "   uint32_t len; /* Number of elements in list. */\n"
19723 "   struct guestfs_lvm_vg *val; /* Elements. */\n"
19724 " };\n"
19725 " \n"
19726 msgstr ""
19727
19728 #. type: verbatim
19729 #: ../src/guestfs-structs.pod:74
19730 #, no-wrap
19731 msgid ""
19732 " void guestfs_free_lvm_vg (struct guestfs_free_lvm_vg *);\n"
19733 " void guestfs_free_lvm_vg_list (struct guestfs_free_lvm_vg_list *);\n"
19734 "\n"
19735 msgstr ""
19736
19737 #. type: =head2
19738 #: ../src/guestfs-structs.pod:77
19739 msgid "guestfs_lvm_lv"
19740 msgstr ""
19741
19742 #. type: verbatim
19743 #: ../src/guestfs-structs.pod:79
19744 #, no-wrap
19745 msgid ""
19746 " struct guestfs_lvm_lv {\n"
19747 "   char *lv_name;\n"
19748 "   /* The next field is NOT nul-terminated, be careful when printing it: */\n"
19749 "   char lv_uuid[32];\n"
19750 "   char *lv_attr;\n"
19751 "   int64_t lv_major;\n"
19752 "   int64_t lv_minor;\n"
19753 "   int64_t lv_kernel_major;\n"
19754 "   int64_t lv_kernel_minor;\n"
19755 "   uint64_t lv_size;\n"
19756 "   int64_t seg_count;\n"
19757 "   char *origin;\n"
19758 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19759 "   float snap_percent;\n"
19760 "   /* The next field is [0..100] or -1 meaning 'not present': */\n"
19761 "   float copy_percent;\n"
19762 "   char *move_pv;\n"
19763 "   char *lv_tags;\n"
19764 "   char *mirror_log;\n"
19765 "   char *modules;\n"
19766 " };\n"
19767 " \n"
19768 msgstr ""
19769
19770 #. type: verbatim
19771 #: ../src/guestfs-structs.pod:101
19772 #, no-wrap
19773 msgid ""
19774 " struct guestfs_lvm_lv_list {\n"
19775 "   uint32_t len; /* Number of elements in list. */\n"
19776 "   struct guestfs_lvm_lv *val; /* Elements. */\n"
19777 " };\n"
19778 " \n"
19779 msgstr ""
19780
19781 #. type: verbatim
19782 #: ../src/guestfs-structs.pod:106
19783 #, no-wrap
19784 msgid ""
19785 " void guestfs_free_lvm_lv (struct guestfs_free_lvm_lv *);\n"
19786 " void guestfs_free_lvm_lv_list (struct guestfs_free_lvm_lv_list *);\n"
19787 "\n"
19788 msgstr ""
19789
19790 #. type: verbatim
19791 #: ../src/guestfs-structs.pod:111
19792 #, no-wrap
19793 msgid ""
19794 " struct guestfs_stat {\n"
19795 "   int64_t dev;\n"
19796 "   int64_t ino;\n"
19797 "   int64_t mode;\n"
19798 "   int64_t nlink;\n"
19799 "   int64_t uid;\n"
19800 "   int64_t gid;\n"
19801 "   int64_t rdev;\n"
19802 "   int64_t size;\n"
19803 "   int64_t blksize;\n"
19804 "   int64_t blocks;\n"
19805 "   int64_t atime;\n"
19806 "   int64_t mtime;\n"
19807 "   int64_t ctime;\n"
19808 " };\n"
19809 " \n"
19810 msgstr ""
19811
19812 #. type: verbatim
19813 #: ../src/guestfs-structs.pod:127
19814 #, no-wrap
19815 msgid ""
19816 " struct guestfs_stat_list {\n"
19817 "   uint32_t len; /* Number of elements in list. */\n"
19818 "   struct guestfs_stat *val; /* Elements. */\n"
19819 " };\n"
19820 " \n"
19821 msgstr ""
19822
19823 #. type: verbatim
19824 #: ../src/guestfs-structs.pod:132
19825 #, no-wrap
19826 msgid ""
19827 " void guestfs_free_stat (struct guestfs_free_stat *);\n"
19828 " void guestfs_free_stat_list (struct guestfs_free_stat_list *);\n"
19829 "\n"
19830 msgstr ""
19831
19832 #. type: verbatim
19833 #: ../src/guestfs-structs.pod:137
19834 #, no-wrap
19835 msgid ""
19836 " struct guestfs_statvfs {\n"
19837 "   int64_t bsize;\n"
19838 "   int64_t frsize;\n"
19839 "   int64_t blocks;\n"
19840 "   int64_t bfree;\n"
19841 "   int64_t bavail;\n"
19842 "   int64_t files;\n"
19843 "   int64_t ffree;\n"
19844 "   int64_t favail;\n"
19845 "   int64_t fsid;\n"
19846 "   int64_t flag;\n"
19847 "   int64_t namemax;\n"
19848 " };\n"
19849 " \n"
19850 msgstr ""
19851
19852 #. type: verbatim
19853 #: ../src/guestfs-structs.pod:151
19854 #, no-wrap
19855 msgid ""
19856 " struct guestfs_statvfs_list {\n"
19857 "   uint32_t len; /* Number of elements in list. */\n"
19858 "   struct guestfs_statvfs *val; /* Elements. */\n"
19859 " };\n"
19860 " \n"
19861 msgstr ""
19862
19863 #. type: verbatim
19864 #: ../src/guestfs-structs.pod:156
19865 #, no-wrap
19866 msgid ""
19867 " void guestfs_free_statvfs (struct guestfs_free_statvfs *);\n"
19868 " void guestfs_free_statvfs_list (struct guestfs_free_statvfs_list *);\n"
19869 "\n"
19870 msgstr ""
19871
19872 #. type: =head2
19873 #: ../src/guestfs-structs.pod:159
19874 msgid "guestfs_dirent"
19875 msgstr ""
19876
19877 #. type: verbatim
19878 #: ../src/guestfs-structs.pod:161
19879 #, no-wrap
19880 msgid ""
19881 " struct guestfs_dirent {\n"
19882 "   int64_t ino;\n"
19883 "   char ftyp;\n"
19884 "   char *name;\n"
19885 " };\n"
19886 " \n"
19887 msgstr ""
19888
19889 #. type: verbatim
19890 #: ../src/guestfs-structs.pod:167
19891 #, no-wrap
19892 msgid ""
19893 " struct guestfs_dirent_list {\n"
19894 "   uint32_t len; /* Number of elements in list. */\n"
19895 "   struct guestfs_dirent *val; /* Elements. */\n"
19896 " };\n"
19897 " \n"
19898 msgstr ""
19899
19900 #. type: verbatim
19901 #: ../src/guestfs-structs.pod:172
19902 #, no-wrap
19903 msgid ""
19904 " void guestfs_free_dirent (struct guestfs_free_dirent *);\n"
19905 " void guestfs_free_dirent_list (struct guestfs_free_dirent_list *);\n"
19906 "\n"
19907 msgstr ""
19908
19909 #. type: verbatim
19910 #: ../src/guestfs-structs.pod:177
19911 #, no-wrap
19912 msgid ""
19913 " struct guestfs_version {\n"
19914 "   int64_t major;\n"
19915 "   int64_t minor;\n"
19916 "   int64_t release;\n"
19917 "   char *extra;\n"
19918 " };\n"
19919 " \n"
19920 msgstr ""
19921
19922 #. type: verbatim
19923 #: ../src/guestfs-structs.pod:184
19924 #, no-wrap
19925 msgid ""
19926 " struct guestfs_version_list {\n"
19927 "   uint32_t len; /* Number of elements in list. */\n"
19928 "   struct guestfs_version *val; /* Elements. */\n"
19929 " };\n"
19930 " \n"
19931 msgstr ""
19932
19933 #. type: verbatim
19934 #: ../src/guestfs-structs.pod:189
19935 #, no-wrap
19936 msgid ""
19937 " void guestfs_free_version (struct guestfs_free_version *);\n"
19938 " void guestfs_free_version_list (struct guestfs_free_version_list *);\n"
19939 "\n"
19940 msgstr ""
19941
19942 #. type: =head2
19943 #: ../src/guestfs-structs.pod:192
19944 msgid "guestfs_xattr"
19945 msgstr ""
19946
19947 #. type: verbatim
19948 #: ../src/guestfs-structs.pod:194
19949 #, no-wrap
19950 msgid ""
19951 " struct guestfs_xattr {\n"
19952 "   char *attrname;\n"
19953 "   /* The next two fields describe a byte array. */\n"
19954 "   uint32_t attrval_len;\n"
19955 "   char *attrval;\n"
19956 " };\n"
19957 " \n"
19958 msgstr ""
19959
19960 #. type: verbatim
19961 #: ../src/guestfs-structs.pod:201
19962 #, no-wrap
19963 msgid ""
19964 " struct guestfs_xattr_list {\n"
19965 "   uint32_t len; /* Number of elements in list. */\n"
19966 "   struct guestfs_xattr *val; /* Elements. */\n"
19967 " };\n"
19968 " \n"
19969 msgstr ""
19970
19971 #. type: verbatim
19972 #: ../src/guestfs-structs.pod:206
19973 #, no-wrap
19974 msgid ""
19975 " void guestfs_free_xattr (struct guestfs_free_xattr *);\n"
19976 " void guestfs_free_xattr_list (struct guestfs_free_xattr_list *);\n"
19977 "\n"
19978 msgstr ""
19979
19980 #. type: =head2
19981 #: ../src/guestfs-structs.pod:209
19982 msgid "guestfs_inotify_event"
19983 msgstr ""
19984
19985 #. type: verbatim
19986 #: ../src/guestfs-structs.pod:211
19987 #, no-wrap
19988 msgid ""
19989 " struct guestfs_inotify_event {\n"
19990 "   int64_t in_wd;\n"
19991 "   uint32_t in_mask;\n"
19992 "   uint32_t in_cookie;\n"
19993 "   char *in_name;\n"
19994 " };\n"
19995 " \n"
19996 msgstr ""
19997
19998 #. type: verbatim
19999 #: ../src/guestfs-structs.pod:218
20000 #, no-wrap
20001 msgid ""
20002 " struct guestfs_inotify_event_list {\n"
20003 "   uint32_t len; /* Number of elements in list. */\n"
20004 "   struct guestfs_inotify_event *val; /* Elements. */\n"
20005 " };\n"
20006 " \n"
20007 msgstr ""
20008
20009 #. type: verbatim
20010 #: ../src/guestfs-structs.pod:223
20011 #, no-wrap
20012 msgid ""
20013 " void guestfs_free_inotify_event (struct guestfs_free_inotify_event *);\n"
20014 " void guestfs_free_inotify_event_list (struct guestfs_free_inotify_event_list *);\n"
20015 "\n"
20016 msgstr ""
20017
20018 #. type: =head2
20019 #: ../src/guestfs-structs.pod:226
20020 msgid "guestfs_partition"
20021 msgstr ""
20022
20023 #. type: verbatim
20024 #: ../src/guestfs-structs.pod:228
20025 #, no-wrap
20026 msgid ""
20027 " struct guestfs_partition {\n"
20028 "   int32_t part_num;\n"
20029 "   uint64_t part_start;\n"
20030 "   uint64_t part_end;\n"
20031 "   uint64_t part_size;\n"
20032 " };\n"
20033 " \n"
20034 msgstr ""
20035
20036 #. type: verbatim
20037 #: ../src/guestfs-structs.pod:235
20038 #, no-wrap
20039 msgid ""
20040 " struct guestfs_partition_list {\n"
20041 "   uint32_t len; /* Number of elements in list. */\n"
20042 "   struct guestfs_partition *val; /* Elements. */\n"
20043 " };\n"
20044 " \n"
20045 msgstr ""
20046
20047 #. type: verbatim
20048 #: ../src/guestfs-structs.pod:240
20049 #, no-wrap
20050 msgid ""
20051 " void guestfs_free_partition (struct guestfs_free_partition *);\n"
20052 " void guestfs_free_partition_list (struct guestfs_free_partition_list *);\n"
20053 "\n"
20054 msgstr ""
20055
20056 #. type: =head2
20057 #: ../src/guestfs-structs.pod:243
20058 msgid "guestfs_application"
20059 msgstr ""
20060
20061 #. type: verbatim
20062 #: ../src/guestfs-structs.pod:245
20063 #, no-wrap
20064 msgid ""
20065 " struct guestfs_application {\n"
20066 "   char *app_name;\n"
20067 "   char *app_display_name;\n"
20068 "   int32_t app_epoch;\n"
20069 "   char *app_version;\n"
20070 "   char *app_release;\n"
20071 "   char *app_install_path;\n"
20072 "   char *app_trans_path;\n"
20073 "   char *app_publisher;\n"
20074 "   char *app_url;\n"
20075 "   char *app_source_package;\n"
20076 "   char *app_summary;\n"
20077 "   char *app_description;\n"
20078 " };\n"
20079 " \n"
20080 msgstr ""
20081
20082 #. type: verbatim
20083 #: ../src/guestfs-structs.pod:260
20084 #, no-wrap
20085 msgid ""
20086 " struct guestfs_application_list {\n"
20087 "   uint32_t len; /* Number of elements in list. */\n"
20088 "   struct guestfs_application *val; /* Elements. */\n"
20089 " };\n"
20090 " \n"
20091 msgstr ""
20092
20093 #. type: verbatim
20094 #: ../src/guestfs-structs.pod:265
20095 #, no-wrap
20096 msgid ""
20097 " void guestfs_free_application (struct guestfs_free_application *);\n"
20098 " void guestfs_free_application_list (struct guestfs_free_application_list *);\n"
20099 "\n"
20100 msgstr ""
20101
20102 #. type: textblock
20103 #: ../fish/guestfish.pod:5
20104 msgid "guestfish - the libguestfs Filesystem Interactive SHell"
20105 msgstr ""
20106
20107 #. type: verbatim
20108 #: ../fish/guestfish.pod:9
20109 #, no-wrap
20110 msgid ""
20111 " guestfish [--options] [commands]\n"
20112 "\n"
20113 msgstr ""
20114
20115 #. type: verbatim
20116 #: ../fish/guestfish.pod:11
20117 #, no-wrap
20118 msgid ""
20119 " guestfish\n"
20120 "\n"
20121 msgstr ""
20122
20123 #. type: verbatim
20124 #: ../fish/guestfish.pod:13
20125 #, no-wrap
20126 msgid ""
20127 " guestfish [--ro|--rw] -a disk.img\n"
20128 "\n"
20129 msgstr ""
20130
20131 #. type: verbatim
20132 #: ../fish/guestfish.pod:15
20133 #, no-wrap
20134 msgid ""
20135 " guestfish [--ro|--rw] -a disk.img -m dev[:mountpoint]\n"
20136 "\n"
20137 msgstr ""
20138
20139 #. type: verbatim
20140 #: ../fish/guestfish.pod:17
20141 #, no-wrap
20142 msgid ""
20143 " guestfish -d libvirt-domain\n"
20144 "\n"
20145 msgstr ""
20146
20147 #. type: verbatim
20148 #: ../fish/guestfish.pod:19
20149 #, no-wrap
20150 msgid ""
20151 " guestfish [--ro|--rw] -a disk.img -i\n"
20152 "\n"
20153 msgstr ""
20154
20155 #. type: verbatim
20156 #: ../fish/guestfish.pod:21
20157 #, no-wrap
20158 msgid ""
20159 " guestfish -d libvirt-domain -i\n"
20160 "\n"
20161 msgstr ""
20162
20163 #. type: =head1
20164 #: ../fish/guestfish.pod:23 ../fuse/guestmount.pod:15
20165 #: ../tools/virt-win-reg.pl:51 ../tools/virt-tar.pl:64
20166 msgid "WARNING"
20167 msgstr ""
20168
20169 #. type: textblock
20170 #: ../fish/guestfish.pod:25
20171 msgid ""
20172 "Using guestfish in read/write mode on live virtual machines can be "
20173 "dangerous, potentially causing disk corruption.  Use the I<--ro> (read-only)"
20174 " option to use guestfish safely if the disk image or virtual machine might "
20175 "be live."
20176 msgstr ""
20177
20178 #. type: textblock
20179 #: ../fish/guestfish.pod:32
20180 msgid ""
20181 "Guestfish is a shell and command-line tool for examining and modifying "
20182 "virtual machine filesystems.  It uses libguestfs and exposes all of the "
20183 "functionality of the guestfs API, see L<guestfs(3)>."
20184 msgstr ""
20185
20186 #. type: textblock
20187 #: ../fish/guestfish.pod:36
20188 msgid ""
20189 "Guestfish gives you structured access to the libguestfs API, from shell "
20190 "scripts or the command line or interactively.  If you want to rescue a "
20191 "broken virtual machine image, you should look at the L<virt-rescue(1)> "
20192 "command."
20193 msgstr ""
20194
20195 #. type: =head1
20196 #: ../fish/guestfish.pod:41 ../fish/guestfish.pod:1007
20197 #: ../fuse/guestmount.pod:39 ../tools/virt-tar.pl:50
20198 msgid "EXAMPLES"
20199 msgstr ""
20200
20201 #. type: =head2
20202 #: ../fish/guestfish.pod:43
20203 msgid "As an interactive shell"
20204 msgstr ""
20205
20206 #. type: verbatim
20207 #: ../fish/guestfish.pod:45
20208 #, no-wrap
20209 msgid ""
20210 " $ guestfish\n"
20211 " \n"
20212 msgstr ""
20213
20214 #. type: verbatim
20215 #: ../fish/guestfish.pod:47
20216 #, no-wrap
20217 msgid ""
20218 " Welcome to guestfish, the libguestfs filesystem interactive shell for\n"
20219 " editing virtual machine filesystems.\n"
20220 " \n"
20221 msgstr ""
20222
20223 #. type: verbatim
20224 #: ../fish/guestfish.pod:50
20225 #, no-wrap
20226 msgid ""
20227 " Type: 'help' for a list of commands\n"
20228 "       'man' to read the manual\n"
20229 "       'quit' to quit the shell\n"
20230 " \n"
20231 msgstr ""
20232
20233 #. type: verbatim
20234 #: ../fish/guestfish.pod:54
20235 #, no-wrap
20236 msgid ""
20237 " ><fs> add-ro disk.img\n"
20238 " ><fs> run\n"
20239 " ><fs> list-filesystems\n"
20240 " /dev/sda1: ext4\n"
20241 " /dev/vg_guest/lv_root: ext4\n"
20242 " /dev/vg_guest/lv_swap: swap\n"
20243 " ><fs> mount /dev/vg_guest/lv_root /\n"
20244 " ><fs> cat /etc/fstab\n"
20245 " # /etc/fstab\n"
20246 " # Created by anaconda\n"
20247 " [...]\n"
20248 " ><fs> exit\n"
20249 "\n"
20250 msgstr ""
20251
20252 #. type: =head2
20253 #: ../fish/guestfish.pod:67
20254 msgid "From shell scripts"
20255 msgstr ""
20256
20257 #. type: textblock
20258 #: ../fish/guestfish.pod:69
20259 msgid "Create a new C</etc/motd> file in a guest or disk image:"
20260 msgstr ""
20261
20262 #. type: verbatim
20263 #: ../fish/guestfish.pod:71
20264 #, no-wrap
20265 msgid ""
20266 " guestfish <<_EOF_\n"
20267 " add disk.img\n"
20268 " run\n"
20269 " mount /dev/vg_guest/lv_root /\n"
20270 " write /etc/motd \"Welcome, new users\"\n"
20271 " _EOF_\n"
20272 "\n"
20273 msgstr ""
20274
20275 #. type: textblock
20276 #: ../fish/guestfish.pod:78
20277 msgid "List the LVM logical volumes in a disk image:"
20278 msgstr ""
20279
20280 #. type: verbatim
20281 #: ../fish/guestfish.pod:80
20282 #, no-wrap
20283 msgid ""
20284 " guestfish -a disk.img --ro <<_EOF_\n"
20285 " run\n"
20286 " lvs\n"
20287 " _EOF_\n"
20288 "\n"
20289 msgstr ""
20290
20291 #. type: textblock
20292 #: ../fish/guestfish.pod:85
20293 msgid "List all the filesystems in a disk image:"
20294 msgstr ""
20295
20296 #. type: verbatim
20297 #: ../fish/guestfish.pod:87
20298 #, no-wrap
20299 msgid ""
20300 " guestfish -a disk.img --ro <<_EOF_\n"
20301 " run\n"
20302 " list-filesystems\n"
20303 " _EOF_\n"
20304 "\n"
20305 msgstr ""
20306
20307 #. type: =head2
20308 #: ../fish/guestfish.pod:92
20309 msgid "On one command line"
20310 msgstr ""
20311
20312 #. type: textblock
20313 #: ../fish/guestfish.pod:94
20314 msgid "Update C</etc/resolv.conf> in a guest:"
20315 msgstr ""
20316
20317 #. type: verbatim
20318 #: ../fish/guestfish.pod:96
20319 #, no-wrap
20320 msgid ""
20321 " guestfish \\\n"
20322 "   add disk.img : run : mount /dev/vg_guest/lv_root / : \\\n"
20323 "   write /etc/resolv.conf \"nameserver 1.2.3.4\"\n"
20324 "\n"
20325 msgstr ""
20326
20327 #. type: textblock
20328 #: ../fish/guestfish.pod:100
20329 msgid "Edit C</boot/grub/grub.conf> interactively:"
20330 msgstr ""
20331
20332 #. type: verbatim
20333 #: ../fish/guestfish.pod:102
20334 #, no-wrap
20335 msgid ""
20336 " guestfish --rw --add disk.img \\\n"
20337 "   --mount /dev/vg_guest/lv_root \\\n"
20338 "   --mount /dev/sda1:/boot \\\n"
20339 "   edit /boot/grub/grub.conf\n"
20340 "\n"
20341 msgstr ""
20342
20343 #. type: =head2
20344 #: ../fish/guestfish.pod:107
20345 msgid "Mount disks automatically"
20346 msgstr ""
20347
20348 #. type: textblock
20349 #: ../fish/guestfish.pod:109
20350 msgid ""
20351 "Use the I<-i> option to automatically mount the disks from a virtual "
20352 "machine:"
20353 msgstr ""
20354
20355 #. type: verbatim
20356 #: ../fish/guestfish.pod:112
20357 #, no-wrap
20358 msgid ""
20359 " guestfish --ro -a disk.img -i cat /etc/group\n"
20360 "\n"
20361 msgstr ""
20362
20363 #. type: verbatim
20364 #: ../fish/guestfish.pod:114
20365 #, no-wrap
20366 msgid ""
20367 " guestfish --ro -d libvirt-domain -i cat /etc/group\n"
20368 "\n"
20369 msgstr ""
20370
20371 #. type: textblock
20372 #: ../fish/guestfish.pod:116
20373 msgid "Another way to edit C</boot/grub/grub.conf> interactively is:"
20374 msgstr ""
20375
20376 #. type: verbatim
20377 #: ../fish/guestfish.pod:118
20378 #, no-wrap
20379 msgid ""
20380 " guestfish --rw -a disk.img -i edit /boot/grub/grub.conf\n"
20381 "\n"
20382 msgstr ""
20383
20384 #. type: =head2
20385 #: ../fish/guestfish.pod:120
20386 msgid "As a script interpreter"
20387 msgstr ""
20388
20389 #. type: textblock
20390 #: ../fish/guestfish.pod:122
20391 msgid "Create a 100MB disk containing an ext2-formatted partition:"
20392 msgstr ""
20393
20394 #. type: verbatim
20395 #: ../fish/guestfish.pod:124
20396 #, no-wrap
20397 msgid ""
20398 " #!/usr/bin/guestfish -f\n"
20399 " sparse test1.img 100M\n"
20400 " run\n"
20401 " part-disk /dev/sda mbr\n"
20402 " mkfs ext2 /dev/sda1\n"
20403 "\n"
20404 msgstr ""
20405
20406 #. type: =head2
20407 #: ../fish/guestfish.pod:130
20408 msgid "Start with a prepared disk"
20409 msgstr ""
20410
20411 #. type: textblock
20412 #: ../fish/guestfish.pod:132
20413 msgid ""
20414 "An alternate way to create a 100MB disk called C<test1.img> containing a "
20415 "single ext2-formatted partition:"
20416 msgstr ""
20417
20418 #. type: verbatim
20419 #: ../fish/guestfish.pod:135
20420 #, no-wrap
20421 msgid ""
20422 " guestfish -N fs\n"
20423 "\n"
20424 msgstr ""
20425
20426 #. type: textblock
20427 #: ../fish/guestfish.pod:137
20428 msgid "To list what is available do:"
20429 msgstr ""
20430
20431 #. type: verbatim
20432 #: ../fish/guestfish.pod:139 ../fish/guestfish.pod:998
20433 #, no-wrap
20434 msgid ""
20435 " guestfish -N help | less\n"
20436 "\n"
20437 msgstr ""
20438
20439 #. type: =head2
20440 #: ../fish/guestfish.pod:141
20441 msgid "Remote control"
20442 msgstr ""
20443
20444 #. type: verbatim
20445 #: ../fish/guestfish.pod:143
20446 #, no-wrap
20447 msgid ""
20448 " eval \"`guestfish --listen`\"\n"
20449 " guestfish --remote add-ro disk.img\n"
20450 " guestfish --remote run\n"
20451 " guestfish --remote lvs\n"
20452 "\n"
20453 msgstr ""
20454
20455 #. type: =head1
20456 #: ../fish/guestfish.pod:148 ../test-tool/libguestfs-test-tool.pod:37
20457 #: ../fuse/guestmount.pod:83 ../tools/virt-win-reg.pl:96
20458 #: ../tools/virt-list-filesystems.pl:53 ../tools/virt-tar.pl:103
20459 #: ../tools/virt-make-fs.pl:153 ../tools/virt-list-partitions.pl:54
20460 msgid "OPTIONS"
20461 msgstr ""
20462
20463 #. type: =item
20464 #: ../fish/guestfish.pod:152 ../fuse/guestmount.pod:143
20465 #: ../tools/virt-win-reg.pl:104 ../tools/virt-list-filesystems.pl:61
20466 #: ../tools/virt-tar.pl:111 ../tools/virt-make-fs.pl:161
20467 #: ../tools/virt-list-partitions.pl:62
20468 msgid "B<--help>"
20469 msgstr ""
20470
20471 #. type: textblock
20472 #: ../fish/guestfish.pod:154
20473 msgid "Displays general help on options."
20474 msgstr ""
20475
20476 #. type: =item
20477 #: ../fish/guestfish.pod:156
20478 msgid "B<-h>"
20479 msgstr ""
20480
20481 #. type: =item
20482 #: ../fish/guestfish.pod:158
20483 msgid "B<--cmd-help>"
20484 msgstr ""
20485
20486 #. type: textblock
20487 #: ../fish/guestfish.pod:160
20488 msgid "Lists all available guestfish commands."
20489 msgstr ""
20490
20491 #. type: =item
20492 #: ../fish/guestfish.pod:162
20493 msgid "B<-h cmd>"
20494 msgstr ""
20495
20496 #. type: =item
20497 #: ../fish/guestfish.pod:164
20498 msgid "B<--cmd-help cmd>"
20499 msgstr ""
20500
20501 #. type: textblock
20502 #: ../fish/guestfish.pod:166
20503 msgid "Displays detailed help on a single command C<cmd>."
20504 msgstr ""
20505
20506 #. type: =item
20507 #: ../fish/guestfish.pod:168
20508 msgid "B<-a image>"
20509 msgstr ""
20510
20511 #. type: =item
20512 #: ../fish/guestfish.pod:170
20513 msgid "B<--add image>"
20514 msgstr ""
20515
20516 #. type: textblock
20517 #: ../fish/guestfish.pod:172
20518 msgid "Add a block device or virtual machine image to the shell."
20519 msgstr ""
20520
20521 #. type: textblock
20522 #: ../fish/guestfish.pod:174 ../fuse/guestmount.pod:91
20523 msgid ""
20524 "The format of the disk image is auto-detected.  To override this and force a"
20525 " particular format use the I<--format=..> option."
20526 msgstr ""
20527
20528 #. type: textblock
20529 #: ../fish/guestfish.pod:177
20530 msgid ""
20531 "Using this flag is mostly equivalent to using the C<add> command, with "
20532 "C<readonly:true> if the I<--ro> flag was given, and with C<format:...> if "
20533 "the I<--format=...> flag was given."
20534 msgstr ""
20535
20536 #. type: =item
20537 #: ../fish/guestfish.pod:181
20538 msgid "B<-c URI>"
20539 msgstr ""
20540
20541 #. type: =item
20542 #: ../fish/guestfish.pod:183
20543 msgid "B<--connect URI>"
20544 msgstr ""
20545
20546 #. type: textblock
20547 #: ../fish/guestfish.pod:185 ../fuse/guestmount.pod:96
20548 msgid ""
20549 "When used in conjunction with the I<-d> option, this specifies the libvirt "
20550 "URI to use.  The default is to use the default libvirt connection."
20551 msgstr ""
20552
20553 #. type: =item
20554 #: ../fish/guestfish.pod:189
20555 msgid "B<--csh>"
20556 msgstr ""
20557
20558 #. type: textblock
20559 #: ../fish/guestfish.pod:191
20560 msgid ""
20561 "If using the I<--listen> option and a csh-like shell, use this option.  See "
20562 "section L</REMOTE CONTROL AND CSH> below."
20563 msgstr ""
20564
20565 #. type: =item
20566 #: ../fish/guestfish.pod:194
20567 msgid "B<-d libvirt-domain>"
20568 msgstr ""
20569
20570 #. type: =item
20571 #: ../fish/guestfish.pod:196
20572 msgid "B<--domain libvirt-domain>"
20573 msgstr ""
20574
20575 #. type: textblock
20576 #: ../fish/guestfish.pod:198 ../fuse/guestmount.pod:102
20577 msgid ""
20578 "Add disks from the named libvirt domain.  If the I<--ro> option is also "
20579 "used, then any libvirt domain can be used.  However in write mode, only "
20580 "libvirt domains which are shut down can be named here."
20581 msgstr ""
20582
20583 #. type: textblock
20584 #: ../fish/guestfish.pod:202 ../fuse/guestmount.pod:106
20585 msgid "Domain UUIDs can be used instead of names."
20586 msgstr ""
20587
20588 #. type: textblock
20589 #: ../fish/guestfish.pod:204
20590 msgid ""
20591 "Using this flag is mostly equivalent to using the C<add-domain> command, "
20592 "with C<readonly:true> if the I<--ro> flag was given, and with C<format:...> "
20593 "if the I<--format:...> flag was given."
20594 msgstr ""
20595
20596 #. type: =item
20597 #: ../fish/guestfish.pod:208
20598 msgid "B<-D>"
20599 msgstr ""
20600
20601 #. type: =item
20602 #: ../fish/guestfish.pod:210
20603 msgid "B<--no-dest-paths>"
20604 msgstr ""
20605
20606 #. type: textblock
20607 #: ../fish/guestfish.pod:212
20608 msgid ""
20609 "Don't tab-complete paths on the guest filesystem.  It is useful to be able "
20610 "to hit the tab key to complete paths on the guest filesystem, but this "
20611 "causes extra \"hidden\" guestfs calls to be made, so this option is here to "
20612 "allow this feature to be disabled."
20613 msgstr ""
20614
20615 #. type: =item
20616 #: ../fish/guestfish.pod:217 ../fuse/guestmount.pod:120
20617 msgid "B<--echo-keys>"
20618 msgstr ""
20619
20620 #. type: textblock
20621 #: ../fish/guestfish.pod:219 ../fuse/guestmount.pod:122
20622 msgid ""
20623 "When prompting for keys and passphrases, guestfish normally turns echoing "
20624 "off so you cannot see what you are typing.  If you are not worried about "
20625 "Tempest attacks and there is no one else in the room you can specify this "
20626 "flag to see what you are typing."
20627 msgstr ""
20628
20629 #. type: =item
20630 #: ../fish/guestfish.pod:224
20631 msgid "B<-f file>"
20632 msgstr ""
20633
20634 #. type: =item
20635 #: ../fish/guestfish.pod:226
20636 msgid "B<--file file>"
20637 msgstr ""
20638
20639 #. type: textblock
20640 #: ../fish/guestfish.pod:228
20641 msgid "Read commands from C<file>.  To write pure guestfish scripts, use:"
20642 msgstr ""
20643
20644 #. type: verbatim
20645 #: ../fish/guestfish.pod:231
20646 #, no-wrap
20647 msgid ""
20648 " #!/usr/bin/guestfish -f\n"
20649 "\n"
20650 msgstr ""
20651
20652 #. type: =item
20653 #: ../fish/guestfish.pod:233
20654 msgid "B<--format=raw|qcow2|..>"
20655 msgstr ""
20656
20657 #. type: =item
20658 #: ../fish/guestfish.pod:235
20659 msgid "B<--format>"
20660 msgstr ""
20661
20662 #. type: textblock
20663 #: ../fish/guestfish.pod:237 ../fuse/guestmount.pod:129
20664 msgid ""
20665 "The default for the I<-a> option is to auto-detect the format of the disk "
20666 "image.  Using this forces the disk format for I<-a> options which follow on "
20667 "the command line.  Using I<--format> with no argument switches back to auto-"
20668 "detection for subsequent I<-a> options."
20669 msgstr ""
20670
20671 #. type: verbatim
20672 #: ../fish/guestfish.pod:244
20673 #, no-wrap
20674 msgid ""
20675 " guestfish --format=raw -a disk.img\n"
20676 "\n"
20677 msgstr ""
20678
20679 #. type: textblock
20680 #: ../fish/guestfish.pod:246
20681 msgid "forces raw format (no auto-detection) for C<disk.img>."
20682 msgstr ""
20683
20684 #. type: verbatim
20685 #: ../fish/guestfish.pod:248
20686 #, no-wrap
20687 msgid ""
20688 " guestfish --format=raw -a disk.img --format -a another.img\n"
20689 "\n"
20690 msgstr ""
20691
20692 #. type: textblock
20693 #: ../fish/guestfish.pod:250
20694 msgid ""
20695 "forces raw format (no auto-detection) for C<disk.img> and reverts to auto-"
20696 "detection for C<another.img>."
20697 msgstr ""
20698
20699 #. type: textblock
20700 #: ../fish/guestfish.pod:253
20701 msgid ""
20702 "If you have untrusted raw-format guest disk images, you should use this "
20703 "option to specify the disk format.  This avoids a possible security problem "
20704 "with malicious guests (CVE-2010-3851).  See also L</add-drive-opts>."
20705 msgstr ""
20706
20707 #. type: =item
20708 #: ../fish/guestfish.pod:258
20709 msgid "B<-i>"
20710 msgstr ""
20711
20712 #. type: =item
20713 #: ../fish/guestfish.pod:260
20714 msgid "B<--inspector>"
20715 msgstr ""
20716
20717 #. type: textblock
20718 #: ../fish/guestfish.pod:262 ../fuse/guestmount.pod:149
20719 msgid ""
20720 "Using L<virt-inspector(1)> code, inspect the disks looking for an operating "
20721 "system and mount filesystems as they would be mounted on the real virtual "
20722 "machine."
20723 msgstr ""
20724
20725 #. type: textblock
20726 #: ../fish/guestfish.pod:266
20727 msgid "Typical usage is either:"
20728 msgstr ""
20729
20730 #. type: verbatim
20731 #: ../fish/guestfish.pod:268
20732 #, no-wrap
20733 msgid ""
20734 " guestfish -d myguest -i\n"
20735 "\n"
20736 msgstr ""
20737
20738 #. type: textblock
20739 #: ../fish/guestfish.pod:270
20740 msgid "(for an inactive libvirt domain called I<myguest>), or:"
20741 msgstr ""
20742
20743 #. type: verbatim
20744 #: ../fish/guestfish.pod:272
20745 #, no-wrap
20746 msgid ""
20747 " guestfish --ro -d myguest -i\n"
20748 "\n"
20749 msgstr ""
20750
20751 #. type: textblock
20752 #: ../fish/guestfish.pod:274
20753 msgid "(for active domains, readonly), or specify the block device directly:"
20754 msgstr ""
20755
20756 #. type: verbatim
20757 #: ../fish/guestfish.pod:276
20758 #, no-wrap
20759 msgid ""
20760 " guestfish --rw -a /dev/Guests/MyGuest -i\n"
20761 "\n"
20762 msgstr ""
20763
20764 #. type: textblock
20765 #: ../fish/guestfish.pod:278
20766 msgid ""
20767 "Note that the command line syntax changed slightly over older versions of "
20768 "guestfish.  You can still use the old syntax:"
20769 msgstr ""
20770
20771 #. type: verbatim
20772 #: ../fish/guestfish.pod:281
20773 #, no-wrap
20774 msgid ""
20775 " guestfish [--ro] -i disk.img\n"
20776 "\n"
20777 msgstr ""
20778
20779 #. type: verbatim
20780 #: ../fish/guestfish.pod:283
20781 #, no-wrap
20782 msgid ""
20783 " guestfish [--ro] -i libvirt-domain\n"
20784 "\n"
20785 msgstr ""
20786
20787 #. type: textblock
20788 #: ../fish/guestfish.pod:285
20789 msgid ""
20790 "Using this flag is mostly equivalent to using the C<inspect-os> command and "
20791 "then using other commands to mount the filesystems that were found."
20792 msgstr ""
20793
20794 #. type: =item
20795 #: ../fish/guestfish.pod:289 ../fuse/guestmount.pod:153
20796 msgid "B<--keys-from-stdin>"
20797 msgstr ""
20798
20799 #. type: textblock
20800 #: ../fish/guestfish.pod:291 ../fuse/guestmount.pod:155
20801 msgid ""
20802 "Read key or passphrase parameters from stdin.  The default is to try to read"
20803 " passphrases from the user by opening C</dev/tty>."
20804 msgstr ""
20805
20806 #. type: =item
20807 #: ../fish/guestfish.pod:294
20808 msgid "B<--listen>"
20809 msgstr ""
20810
20811 #. type: textblock
20812 #: ../fish/guestfish.pod:296
20813 msgid ""
20814 "Fork into the background and listen for remote commands.  See section "
20815 "L</REMOTE CONTROL GUESTFISH OVER A SOCKET> below."
20816 msgstr ""
20817
20818 #. type: =item
20819 #: ../fish/guestfish.pod:299 ../fuse/guestmount.pod:158
20820 msgid "B<--live>"
20821 msgstr ""
20822
20823 #. type: textblock
20824 #: ../fish/guestfish.pod:301 ../fuse/guestmount.pod:160
20825 msgid ""
20826 "Connect to a live virtual machine.  (Experimental, see "
20827 "L<guestfs(3)/ATTACHING TO RUNNING DAEMONS>)."
20828 msgstr ""
20829
20830 #. type: =item
20831 #: ../fish/guestfish.pod:304 ../fuse/guestmount.pod:163
20832 msgid "B<-m dev[:mountpoint[:options]]>"
20833 msgstr ""
20834
20835 #. type: =item
20836 #: ../fish/guestfish.pod:306 ../fuse/guestmount.pod:165
20837 msgid "B<--mount dev[:mountpoint[:options]]>"
20838 msgstr ""
20839
20840 #. type: textblock
20841 #: ../fish/guestfish.pod:308
20842 msgid "Mount the named partition or logical volume on the given mountpoint."
20843 msgstr ""
20844
20845 #. type: textblock
20846 #: ../fish/guestfish.pod:310
20847 msgid "If the mountpoint is omitted, it defaults to C</>."
20848 msgstr ""
20849
20850 #. type: textblock
20851 #: ../fish/guestfish.pod:312
20852 msgid "You have to mount something on C</> before most commands will work."
20853 msgstr ""
20854
20855 #. type: textblock
20856 #: ../fish/guestfish.pod:314
20857 msgid ""
20858 "If any I<-m> or I<--mount> options are given, the guest is automatically "
20859 "launched."
20860 msgstr ""
20861
20862 #. type: textblock
20863 #: ../fish/guestfish.pod:317
20864 msgid ""
20865 "If you don't know what filesystems a disk image contains, you can either run"
20866 " guestfish without this option, then list the partitions, filesystems and "
20867 "LVs available (see L</list-partitions>, L</list-filesystems> and L</lvs> "
20868 "commands), or you can use the L<virt-filesystems(1)> program."
20869 msgstr ""
20870
20871 #. type: textblock
20872 #: ../fish/guestfish.pod:323 ../fuse/guestmount.pod:173
20873 msgid ""
20874 "The third (and rarely used) part of the mount parameter is the list of mount"
20875 " options used to mount the underlying filesystem.  If this is not given, "
20876 "then the mount options are either the empty string or C<ro> (the latter if "
20877 "the I<--ro> flag is used).  By specifying the mount options, you override "
20878 "this default choice.  Probably the only time you would use this is to enable"
20879 " ACLs and/or extended attributes if the filesystem can support them:"
20880 msgstr ""
20881
20882 #. type: verbatim
20883 #: ../fish/guestfish.pod:331 ../fuse/guestmount.pod:181
20884 #, no-wrap
20885 msgid ""
20886 " -m /dev/sda1:/:acl,user_xattr\n"
20887 "\n"
20888 msgstr ""
20889
20890 #. type: textblock
20891 #: ../fish/guestfish.pod:333
20892 msgid "Using this flag is equivalent to using the C<mount-options> command."
20893 msgstr ""
20894
20895 #. type: =item
20896 #: ../fish/guestfish.pod:335
20897 msgid "B<-n>"
20898 msgstr ""
20899
20900 #. type: =item
20901 #: ../fish/guestfish.pod:337
20902 msgid "B<--no-sync>"
20903 msgstr ""
20904
20905 #. type: textblock
20906 #: ../fish/guestfish.pod:339
20907 msgid ""
20908 "Disable autosync.  This is enabled by default.  See the discussion of "
20909 "autosync in the L<guestfs(3)> manpage."
20910 msgstr ""
20911
20912 #. type: =item
20913 #: ../fish/guestfish.pod:342
20914 msgid "B<-N type>"
20915 msgstr ""
20916
20917 #. type: =item
20918 #: ../fish/guestfish.pod:344
20919 msgid "B<--new type>"
20920 msgstr ""
20921
20922 #. type: =item
20923 #: ../fish/guestfish.pod:346
20924 msgid "B<-N help>"
20925 msgstr ""
20926
20927 #. type: textblock
20928 #: ../fish/guestfish.pod:348
20929 msgid ""
20930 "Prepare a fresh disk image formatted as \"type\".  This is an alternative to"
20931 " the I<-a> option: whereas I<-a> adds an existing disk, I<-N> creates a "
20932 "preformatted disk with a filesystem and adds it.  See L</PREPARED DISK "
20933 "IMAGES> below."
20934 msgstr ""
20935
20936 #. type: =item
20937 #: ../fish/guestfish.pod:353
20938 msgid "B<--progress-bars>"
20939 msgstr ""
20940
20941 #. type: textblock
20942 #: ../fish/guestfish.pod:355
20943 msgid "Enable progress bars, even when guestfish is used non-interactively."
20944 msgstr ""
20945
20946 #. type: textblock
20947 #: ../fish/guestfish.pod:357
20948 msgid ""
20949 "Progress bars are enabled by default when guestfish is used as an "
20950 "interactive shell."
20951 msgstr ""
20952
20953 #. type: =item
20954 #: ../fish/guestfish.pod:360
20955 msgid "B<--no-progress-bars>"
20956 msgstr ""
20957
20958 #. type: textblock
20959 #: ../fish/guestfish.pod:362
20960 msgid "Disable progress bars."
20961 msgstr ""
20962
20963 #. type: =item
20964 #: ../fish/guestfish.pod:364
20965 msgid "B<--remote[=pid]>"
20966 msgstr ""
20967
20968 #. type: textblock
20969 #: ../fish/guestfish.pod:366
20970 msgid ""
20971 "Send remote commands to C<$GUESTFISH_PID> or C<pid>.  See section L</REMOTE "
20972 "CONTROL GUESTFISH OVER A SOCKET> below."
20973 msgstr ""
20974
20975 #. type: =item
20976 #: ../fish/guestfish.pod:369
20977 msgid "B<-r>"
20978 msgstr ""
20979
20980 #. type: =item
20981 #: ../fish/guestfish.pod:371
20982 msgid "B<--ro>"
20983 msgstr ""
20984
20985 #. type: textblock
20986 #: ../fish/guestfish.pod:373
20987 msgid ""
20988 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
20989 "mounts are done read-only."
20990 msgstr ""
20991
20992 #. type: textblock
20993 #: ../fish/guestfish.pod:376
20994 msgid ""
20995 "The option must always be used if the disk image or virtual machine might be"
20996 " running, and is generally recommended in cases where you don't need write "
20997 "access to the disk."
20998 msgstr ""
20999
21000 #. type: textblock
21001 #: ../fish/guestfish.pod:380
21002 msgid ""
21003 "Note that prepared disk images created with I<-N> are not affected by this "
21004 "option.  Also commands like C<add> are not affected - you have to specify "
21005 "the C<readonly:true> option explicitly if you need it."
21006 msgstr ""
21007
21008 #. type: textblock
21009 #: ../fish/guestfish.pod:384
21010 msgid "See also L</OPENING DISKS FOR READ AND WRITE> below."
21011 msgstr ""
21012
21013 #. type: =item
21014 #: ../fish/guestfish.pod:386 ../fuse/guestmount.pod:237
21015 msgid "B<--selinux>"
21016 msgstr ""
21017
21018 #. type: textblock
21019 #: ../fish/guestfish.pod:388
21020 msgid "Enable SELinux support for the guest.  See L<guestfs(3)/SELINUX>."
21021 msgstr ""
21022
21023 #. type: =item
21024 #: ../fish/guestfish.pod:390
21025 msgid "B<-v>"
21026 msgstr ""
21027
21028 #. type: =item
21029 #: ../fish/guestfish.pod:392
21030 msgid "B<--verbose>"
21031 msgstr ""
21032
21033 #. type: textblock
21034 #: ../fish/guestfish.pod:394
21035 msgid ""
21036 "Enable very verbose messages.  This is particularly useful if you find a "
21037 "bug."
21038 msgstr ""
21039
21040 #. type: =item
21041 #: ../fish/guestfish.pod:397
21042 msgid "B<-V>"
21043 msgstr ""
21044
21045 #. type: =item
21046 #: ../fish/guestfish.pod:399 ../tools/virt-win-reg.pl:112
21047 #: ../tools/virt-list-filesystems.pl:69 ../tools/virt-tar.pl:119
21048 #: ../tools/virt-make-fs.pl:169 ../tools/virt-list-partitions.pl:70
21049 msgid "B<--version>"
21050 msgstr ""
21051
21052 #. type: textblock
21053 #: ../fish/guestfish.pod:401
21054 msgid "Display the guestfish / libguestfs version number and exit."
21055 msgstr ""
21056
21057 #. type: =item
21058 #: ../fish/guestfish.pod:403
21059 msgid "B<-w>"
21060 msgstr ""
21061
21062 #. type: =item
21063 #: ../fish/guestfish.pod:405
21064 msgid "B<--rw>"
21065 msgstr ""
21066
21067 #. type: textblock
21068 #: ../fish/guestfish.pod:407 ../fuse/guestmount.pod:251
21069 msgid ""
21070 "This changes the I<-a>, I<-d> and I<-m> options so that disks are added and "
21071 "mounts are done read-write."
21072 msgstr ""
21073
21074 #. type: textblock
21075 #: ../fish/guestfish.pod:410
21076 msgid "See L</OPENING DISKS FOR READ AND WRITE> below."
21077 msgstr ""
21078
21079 #. type: =item
21080 #: ../fish/guestfish.pod:412
21081 msgid "B<-x>"
21082 msgstr ""
21083
21084 #. type: textblock
21085 #: ../fish/guestfish.pod:414
21086 msgid "Echo each command before executing it."
21087 msgstr ""
21088
21089 #. type: =head1
21090 #: ../fish/guestfish.pod:418
21091 msgid "COMMANDS ON COMMAND LINE"
21092 msgstr ""
21093
21094 #. type: textblock
21095 #: ../fish/guestfish.pod:420
21096 msgid ""
21097 "Any additional (non-option) arguments are treated as commands to execute."
21098 msgstr ""
21099
21100 #. type: textblock
21101 #: ../fish/guestfish.pod:423
21102 msgid ""
21103 "Commands to execute should be separated by a colon (C<:>), where the colon "
21104 "is a separate parameter.  Thus:"
21105 msgstr ""
21106
21107 #. type: verbatim
21108 #: ../fish/guestfish.pod:426
21109 #, no-wrap
21110 msgid ""
21111 " guestfish cmd [args...] : cmd [args...] : cmd [args...] ...\n"
21112 "\n"
21113 msgstr ""
21114
21115 #. type: textblock
21116 #: ../fish/guestfish.pod:428
21117 msgid ""
21118 "If there are no additional arguments, then we enter a shell, either an "
21119 "interactive shell with a prompt (if the input is a terminal) or a non-"
21120 "interactive shell."
21121 msgstr ""
21122
21123 #. type: textblock
21124 #: ../fish/guestfish.pod:432
21125 msgid ""
21126 "In either command line mode or non-interactive shell, the first command that"
21127 " gives an error causes the whole shell to exit.  In interactive mode (with a"
21128 " prompt) if a command fails, you can continue to enter commands."
21129 msgstr ""
21130
21131 #. type: =head1
21132 #: ../fish/guestfish.pod:437
21133 msgid "USING launch (OR run)"
21134 msgstr ""
21135
21136 #. type: textblock
21137 #: ../fish/guestfish.pod:439
21138 msgid ""
21139 "As with L<guestfs(3)>, you must first configure your guest by adding disks, "
21140 "then launch it, then mount any disks you need, and finally issue "
21141 "actions/commands.  So the general order of the day is:"
21142 msgstr ""
21143
21144 #. type: textblock
21145 #: ../fish/guestfish.pod:447
21146 msgid "add or -a/--add"
21147 msgstr ""
21148
21149 #. type: textblock
21150 #: ../fish/guestfish.pod:451
21151 msgid "launch (aka run)"
21152 msgstr ""
21153
21154 #. type: textblock
21155 #: ../fish/guestfish.pod:455
21156 msgid "mount or -m/--mount"
21157 msgstr ""
21158
21159 #. type: textblock
21160 #: ../fish/guestfish.pod:459
21161 msgid "any other commands"
21162 msgstr ""
21163
21164 #. type: textblock
21165 #: ../fish/guestfish.pod:463
21166 msgid ""
21167 "C<run> is a synonym for C<launch>.  You must C<launch> (or C<run>)  your "
21168 "guest before mounting or performing any other commands."
21169 msgstr ""
21170
21171 #. type: textblock
21172 #: ../fish/guestfish.pod:466
21173 msgid ""
21174 "The only exception is that if any of the I<-i>, I<-m>, I<--mount>, I<-N> or "
21175 "I<--new> options were given then C<run> is done automatically, simply "
21176 "because guestfish can't perform the action you asked for without doing this."
21177 msgstr ""
21178
21179 #. type: =head1
21180 #: ../fish/guestfish.pod:471
21181 msgid "OPENING DISKS FOR READ AND WRITE"
21182 msgstr ""
21183
21184 #. type: textblock
21185 #: ../fish/guestfish.pod:473
21186 msgid ""
21187 "The guestfish, L<guestmount(1)> and L<virt-rescue(1)> options I<--ro> and "
21188 "I<--rw> affect whether the other command line options I<-a>, I<-c>, I<-d>, "
21189 "I<-i> and I<-m> open disk images read-only or for writing."
21190 msgstr ""
21191
21192 #. type: textblock
21193 #: ../fish/guestfish.pod:478
21194 msgid ""
21195 "In libguestfs E<le> 1.10, guestfish, guestmount and virt-rescue defaulted to"
21196 " opening disk images supplied on the command line for write.  To open a disk"
21197 " image read-only you have to do I<-a image --ro>."
21198 msgstr ""
21199
21200 #. type: textblock
21201 #: ../fish/guestfish.pod:482
21202 msgid ""
21203 "This matters: If you accidentally open a live VM disk image writable then "
21204 "you will cause irreversible disk corruption."
21205 msgstr ""
21206
21207 #. type: textblock
21208 #: ../fish/guestfish.pod:485
21209 msgid ""
21210 "By libguestfs 1.12 we intend to change the default the other way.  Disk "
21211 "images will be opened read-only.  You will have to either specify "
21212 "I<guestfish --rw>, I<guestmount --rw>, I<virt-rescue --rw>, or change the "
21213 "configuration file C</etc/libguestfs-tools.conf> in order to get write "
21214 "access for disk images specified by those other command line options."
21215 msgstr ""
21216
21217 #. type: textblock
21218 #: ../fish/guestfish.pod:492
21219 msgid ""
21220 "This version of guestfish, guestmount and virt-rescue has a I<--rw> option "
21221 "which does nothing (it is already the default).  However it is highly "
21222 "recommended that you use this option to indicate that you need write access,"
21223 " and prepare your scripts for the day when this option will be required for "
21224 "write access."
21225 msgstr ""
21226
21227 #. type: textblock
21228 #: ../fish/guestfish.pod:498
21229 msgid ""
21230 "B<Note:> This does I<not> affect commands like L</add> and L</mount>, or any"
21231 " other libguestfs program apart from guestfish and guestmount."
21232 msgstr ""
21233
21234 #. type: =head1
21235 #: ../fish/guestfish.pod:501
21236 msgid "QUOTING"
21237 msgstr ""
21238
21239 #. type: textblock
21240 #: ../fish/guestfish.pod:503
21241 msgid ""
21242 "You can quote ordinary parameters using either single or double quotes.  For"
21243 " example:"
21244 msgstr ""
21245
21246 #. type: verbatim
21247 #: ../fish/guestfish.pod:506
21248 #, no-wrap
21249 msgid ""
21250 " add \"file with a space.img\"\n"
21251 "\n"
21252 msgstr ""
21253
21254 #. type: verbatim
21255 #: ../fish/guestfish.pod:508
21256 #, no-wrap
21257 msgid ""
21258 " rm '/file name'\n"
21259 "\n"
21260 msgstr ""
21261
21262 #. type: verbatim
21263 #: ../fish/guestfish.pod:510
21264 #, no-wrap
21265 msgid ""
21266 " rm '/\"'\n"
21267 "\n"
21268 msgstr ""
21269
21270 #. type: textblock
21271 #: ../fish/guestfish.pod:512
21272 msgid ""
21273 "A few commands require a list of strings to be passed.  For these, use a "
21274 "whitespace-separated list, enclosed in quotes.  Strings containing "
21275 "whitespace to be passed through must be enclosed in single quotes.  A "
21276 "literal single quote must be escaped with a backslash."
21277 msgstr ""
21278
21279 #. type: verbatim
21280 #: ../fish/guestfish.pod:517
21281 #, no-wrap
21282 msgid ""
21283 " vgcreate VG \"/dev/sda1 /dev/sdb1\"\n"
21284 " command \"/bin/echo 'foo      bar'\"\n"
21285 " command \"/bin/echo \\'foo\\'\"\n"
21286 "\n"
21287 msgstr ""
21288
21289 #. type: =head2
21290 #: ../fish/guestfish.pod:521
21291 msgid "ESCAPE SEQUENCES IN DOUBLE QUOTED ARGUMENTS"
21292 msgstr ""
21293
21294 #. type: textblock
21295 #: ../fish/guestfish.pod:523
21296 msgid ""
21297 "In double-quoted arguments (only) use backslash to insert special "
21298 "characters:"
21299 msgstr ""
21300
21301 #. type: =item
21302 #: ../fish/guestfish.pod:528
21303 msgid "C<\\a>"
21304 msgstr ""
21305
21306 #. type: textblock
21307 #: ../fish/guestfish.pod:530
21308 msgid "Alert (bell) character."
21309 msgstr ""
21310
21311 #. type: =item
21312 #: ../fish/guestfish.pod:532
21313 msgid "C<\\b>"
21314 msgstr ""
21315
21316 #. type: textblock
21317 #: ../fish/guestfish.pod:534
21318 msgid "Backspace character."
21319 msgstr ""
21320
21321 #. type: =item
21322 #: ../fish/guestfish.pod:536
21323 msgid "C<\\f>"
21324 msgstr ""
21325
21326 #. type: textblock
21327 #: ../fish/guestfish.pod:538
21328 msgid "Form feed character."
21329 msgstr ""
21330
21331 #. type: =item
21332 #: ../fish/guestfish.pod:540
21333 msgid "C<\\n>"
21334 msgstr ""
21335
21336 #. type: textblock
21337 #: ../fish/guestfish.pod:542
21338 msgid "Newline character."
21339 msgstr ""
21340
21341 #. type: =item
21342 #: ../fish/guestfish.pod:544
21343 msgid "C<\\r>"
21344 msgstr ""
21345
21346 #. type: textblock
21347 #: ../fish/guestfish.pod:546
21348 msgid "Carriage return character."
21349 msgstr ""
21350
21351 #. type: =item
21352 #: ../fish/guestfish.pod:548
21353 msgid "C<\\t>"
21354 msgstr ""
21355
21356 #. type: textblock
21357 #: ../fish/guestfish.pod:550
21358 msgid "Horizontal tab character."
21359 msgstr ""
21360
21361 #. type: =item
21362 #: ../fish/guestfish.pod:552
21363 msgid "C<\\v>"
21364 msgstr ""
21365
21366 #. type: textblock
21367 #: ../fish/guestfish.pod:554
21368 msgid "Vertical tab character."
21369 msgstr ""
21370
21371 #. type: =item
21372 #: ../fish/guestfish.pod:556
21373 msgid "C<\\\">"
21374 msgstr ""
21375
21376 #. type: textblock
21377 #: ../fish/guestfish.pod:558
21378 msgid "A literal double quote character."
21379 msgstr ""
21380
21381 #. type: =item
21382 #: ../fish/guestfish.pod:560
21383 msgid "C<\\ooo>"
21384 msgstr ""
21385
21386 #. type: textblock
21387 #: ../fish/guestfish.pod:562
21388 msgid ""
21389 "A character with octal value I<ooo>.  There must be precisely 3 octal digits"
21390 " (unlike C)."
21391 msgstr ""
21392
21393 #. type: =item
21394 #: ../fish/guestfish.pod:565
21395 msgid "C<\\xhh>"
21396 msgstr ""
21397
21398 #. type: textblock
21399 #: ../fish/guestfish.pod:567
21400 msgid ""
21401 "A character with hex value I<hh>.  There must be precisely 2 hex digits."
21402 msgstr ""
21403
21404 #. type: textblock
21405 #: ../fish/guestfish.pod:570
21406 msgid ""
21407 "In the current implementation C<\\000> and C<\\x00> cannot be used in "
21408 "strings."
21409 msgstr ""
21410
21411 #. type: =item
21412 #: ../fish/guestfish.pod:573
21413 msgid "C<\\\\>"
21414 msgstr ""
21415
21416 #. type: textblock
21417 #: ../fish/guestfish.pod:575
21418 msgid "A literal backslash character."
21419 msgstr ""
21420
21421 #. type: =head1
21422 #: ../fish/guestfish.pod:579
21423 msgid "OPTIONAL ARGUMENTS"
21424 msgstr ""
21425
21426 #. type: textblock
21427 #: ../fish/guestfish.pod:581
21428 msgid ""
21429 "Some commands take optional arguments.  These arguments appear in this "
21430 "documentation as C<[argname:..]>.  You can use them as in these examples:"
21431 msgstr ""
21432
21433 #. type: verbatim
21434 #: ../fish/guestfish.pod:585
21435 #, no-wrap
21436 msgid ""
21437 " add-drive-opts filename\n"
21438 "\n"
21439 msgstr ""
21440
21441 #. type: verbatim
21442 #: ../fish/guestfish.pod:587
21443 #, no-wrap
21444 msgid ""
21445 " add-drive-opts filename readonly:true\n"
21446 "\n"
21447 msgstr ""
21448
21449 #. type: verbatim
21450 #: ../fish/guestfish.pod:589
21451 #, no-wrap
21452 msgid ""
21453 " add-drive-opts filename format:qcow2 readonly:false\n"
21454 "\n"
21455 msgstr ""
21456
21457 #. type: textblock
21458 #: ../fish/guestfish.pod:591
21459 msgid ""
21460 "Each optional argument can appear at most once.  All optional arguments must"
21461 " appear after the required ones."
21462 msgstr ""
21463
21464 #. type: =head1
21465 #: ../fish/guestfish.pod:594
21466 msgid "NUMBERS"
21467 msgstr ""
21468
21469 #. type: textblock
21470 #: ../fish/guestfish.pod:596
21471 msgid ""
21472 "This section applies to all commands which can take integers as parameters."
21473 msgstr ""
21474
21475 #. type: =head2
21476 #: ../fish/guestfish.pod:599
21477 msgid "SIZE SUFFIX"
21478 msgstr ""
21479
21480 #. type: textblock
21481 #: ../fish/guestfish.pod:601
21482 msgid ""
21483 "When the command takes a parameter measured in bytes, you can use one of the"
21484 " following suffixes to specify kilobytes, megabytes and larger sizes:"
21485 msgstr ""
21486
21487 #. type: =item
21488 #: ../fish/guestfish.pod:607
21489 msgid "B<k> or B<K> or B<KiB>"
21490 msgstr ""
21491
21492 #. type: textblock
21493 #: ../fish/guestfish.pod:609
21494 msgid "The size in kilobytes (multiplied by 1024)."
21495 msgstr ""
21496
21497 #. type: =item
21498 #: ../fish/guestfish.pod:611
21499 msgid "B<KB>"
21500 msgstr ""
21501
21502 #. type: textblock
21503 #: ../fish/guestfish.pod:613
21504 msgid "The size in SI 1000 byte units."
21505 msgstr ""
21506
21507 #. type: =item
21508 #: ../fish/guestfish.pod:615
21509 msgid "B<M> or B<MiB>"
21510 msgstr ""
21511
21512 #. type: textblock
21513 #: ../fish/guestfish.pod:617
21514 msgid "The size in megabytes (multiplied by 1048576)."
21515 msgstr ""
21516
21517 #. type: =item
21518 #: ../fish/guestfish.pod:619
21519 msgid "B<MB>"
21520 msgstr ""
21521
21522 #. type: textblock
21523 #: ../fish/guestfish.pod:621
21524 msgid "The size in SI 1000000 byte units."
21525 msgstr ""
21526
21527 #. type: =item
21528 #: ../fish/guestfish.pod:623
21529 msgid "B<G> or B<GiB>"
21530 msgstr ""
21531
21532 #. type: textblock
21533 #: ../fish/guestfish.pod:625
21534 msgid "The size in gigabytes (multiplied by 2**30)."
21535 msgstr ""
21536
21537 #. type: =item
21538 #: ../fish/guestfish.pod:627
21539 msgid "B<GB>"
21540 msgstr ""
21541
21542 #. type: textblock
21543 #: ../fish/guestfish.pod:629
21544 msgid "The size in SI 10**9 byte units."
21545 msgstr ""
21546
21547 #. type: =item
21548 #: ../fish/guestfish.pod:631
21549 msgid "B<T> or B<TiB>"
21550 msgstr ""
21551
21552 #. type: textblock
21553 #: ../fish/guestfish.pod:633
21554 msgid "The size in terabytes (multiplied by 2**40)."
21555 msgstr ""
21556
21557 #. type: =item
21558 #: ../fish/guestfish.pod:635
21559 msgid "B<TB>"
21560 msgstr ""
21561
21562 #. type: textblock
21563 #: ../fish/guestfish.pod:637
21564 msgid "The size in SI 10**12 byte units."
21565 msgstr ""
21566
21567 #. type: =item
21568 #: ../fish/guestfish.pod:639
21569 msgid "B<P> or B<PiB>"
21570 msgstr ""
21571
21572 #. type: textblock
21573 #: ../fish/guestfish.pod:641
21574 msgid "The size in petabytes (multiplied by 2**50)."
21575 msgstr ""
21576
21577 #. type: =item
21578 #: ../fish/guestfish.pod:643
21579 msgid "B<PB>"
21580 msgstr ""
21581
21582 #. type: textblock
21583 #: ../fish/guestfish.pod:645
21584 msgid "The size in SI 10**15 byte units."
21585 msgstr ""
21586
21587 #. type: =item
21588 #: ../fish/guestfish.pod:647
21589 msgid "B<E> or B<EiB>"
21590 msgstr ""
21591
21592 #. type: textblock
21593 #: ../fish/guestfish.pod:649
21594 msgid "The size in exabytes (multiplied by 2**60)."
21595 msgstr ""
21596
21597 #. type: =item
21598 #: ../fish/guestfish.pod:651
21599 msgid "B<EB>"
21600 msgstr ""
21601
21602 #. type: textblock
21603 #: ../fish/guestfish.pod:653
21604 msgid "The size in SI 10**18 byte units."
21605 msgstr ""
21606
21607 #. type: =item
21608 #: ../fish/guestfish.pod:655
21609 msgid "B<Z> or B<ZiB>"
21610 msgstr ""
21611
21612 #. type: textblock
21613 #: ../fish/guestfish.pod:657
21614 msgid "The size in zettabytes (multiplied by 2**70)."
21615 msgstr ""
21616
21617 #. type: =item
21618 #: ../fish/guestfish.pod:659
21619 msgid "B<ZB>"
21620 msgstr ""
21621
21622 #. type: textblock
21623 #: ../fish/guestfish.pod:661
21624 msgid "The size in SI 10**21 byte units."
21625 msgstr ""
21626
21627 #. type: =item
21628 #: ../fish/guestfish.pod:663
21629 msgid "B<Y> or B<YiB>"
21630 msgstr ""
21631
21632 #. type: textblock
21633 #: ../fish/guestfish.pod:665
21634 msgid "The size in yottabytes (multiplied by 2**80)."
21635 msgstr ""
21636
21637 #. type: =item
21638 #: ../fish/guestfish.pod:667
21639 msgid "B<YB>"
21640 msgstr ""
21641
21642 #. type: textblock
21643 #: ../fish/guestfish.pod:669
21644 msgid "The size in SI 10**24 byte units."
21645 msgstr ""
21646
21647 #. type: verbatim
21648 #: ../fish/guestfish.pod:675
21649 #, no-wrap
21650 msgid ""
21651 " truncate-size /file 1G\n"
21652 "\n"
21653 msgstr ""
21654
21655 #. type: textblock
21656 #: ../fish/guestfish.pod:677
21657 msgid "would truncate the file to 1 gigabyte."
21658 msgstr ""
21659
21660 #. type: textblock
21661 #: ../fish/guestfish.pod:679
21662 msgid ""
21663 "Be careful because a few commands take sizes in kilobytes or megabytes (eg. "
21664 "the parameter to L</memsize> is specified in megabytes already).  Adding a "
21665 "suffix will probably not do what you expect."
21666 msgstr ""
21667
21668 #. type: =head2
21669 #: ../fish/guestfish.pod:683
21670 msgid "OCTAL AND HEXADECIMAL NUMBERS"
21671 msgstr ""
21672
21673 #. type: textblock
21674 #: ../fish/guestfish.pod:685
21675 msgid ""
21676 "For specifying the radix (base) use the C convention: C<0> to prefix an "
21677 "octal number or C<0x> to prefix a hexadecimal number.  For example:"
21678 msgstr ""
21679
21680 #. type: verbatim
21681 #: ../fish/guestfish.pod:688
21682 #, no-wrap
21683 msgid ""
21684 " 1234      decimal number 1234\n"
21685 " 02322     octal number, equivalent to decimal 1234\n"
21686 " 0x4d2     hexadecimal number, equivalent to decimal 1234\n"
21687 "\n"
21688 msgstr ""
21689
21690 #. type: textblock
21691 #: ../fish/guestfish.pod:692
21692 msgid ""
21693 "When using the C<chmod> command, you almost always want to specify an octal "
21694 "number for the mode, and you must prefix it with C<0> (unlike the Unix "
21695 "L<chmod(1)> program):"
21696 msgstr ""
21697
21698 #. type: verbatim
21699 #: ../fish/guestfish.pod:696
21700 #, no-wrap
21701 msgid ""
21702 " chmod 0777 /public  # OK\n"
21703 " chmod 777 /public   # WRONG! This is mode 777 decimal = 01411 octal.\n"
21704 "\n"
21705 msgstr ""
21706
21707 #. type: textblock
21708 #: ../fish/guestfish.pod:699
21709 msgid ""
21710 "Commands that return numbers usually print them in decimal, but some "
21711 "commands print numbers in other radices (eg. C<umask> prints the mode in "
21712 "octal, preceeded by C<0>)."
21713 msgstr ""
21714
21715 #. type: =head1
21716 #: ../fish/guestfish.pod:703
21717 msgid "WILDCARDS AND GLOBBING"
21718 msgstr ""
21719
21720 #. type: textblock
21721 #: ../fish/guestfish.pod:705
21722 msgid ""
21723 "Neither guestfish nor the underlying guestfs API performs wildcard expansion"
21724 " (globbing) by default.  So for example the following will not do what you "
21725 "expect:"
21726 msgstr ""
21727
21728 #. type: verbatim
21729 #: ../fish/guestfish.pod:709
21730 #, no-wrap
21731 msgid ""
21732 " rm-rf /home/*\n"
21733 "\n"
21734 msgstr ""
21735
21736 #. type: textblock
21737 #: ../fish/guestfish.pod:711
21738 msgid ""
21739 "Assuming you don't have a directory called literally C</home/*> then the "
21740 "above command will return an error."
21741 msgstr ""
21742
21743 #. type: textblock
21744 #: ../fish/guestfish.pod:714
21745 msgid "To perform wildcard expansion, use the C<glob> command."
21746 msgstr ""
21747
21748 #. type: verbatim
21749 #: ../fish/guestfish.pod:716
21750 #, no-wrap
21751 msgid ""
21752 " glob rm-rf /home/*\n"
21753 "\n"
21754 msgstr ""
21755
21756 #. type: textblock
21757 #: ../fish/guestfish.pod:718
21758 msgid ""
21759 "runs C<rm-rf> on each path that matches (ie. potentially running the command"
21760 " many times), equivalent to:"
21761 msgstr ""
21762
21763 #. type: verbatim
21764 #: ../fish/guestfish.pod:721
21765 #, no-wrap
21766 msgid ""
21767 " rm-rf /home/jim\n"
21768 " rm-rf /home/joe\n"
21769 " rm-rf /home/mary\n"
21770 "\n"
21771 msgstr ""
21772
21773 #. type: textblock
21774 #: ../fish/guestfish.pod:725
21775 msgid "C<glob> only works on simple guest paths and not on device names."
21776 msgstr ""
21777
21778 #. type: textblock
21779 #: ../fish/guestfish.pod:727
21780 msgid ""
21781 "If you have several parameters, each containing a wildcard, then glob will "
21782 "perform a Cartesian product."
21783 msgstr ""
21784
21785 #. type: =head1
21786 #: ../fish/guestfish.pod:730
21787 msgid "COMMENTS"
21788 msgstr ""
21789
21790 #. type: textblock
21791 #: ../fish/guestfish.pod:732
21792 msgid ""
21793 "Any line which starts with a I<#> character is treated as a comment and "
21794 "ignored.  The I<#> can optionally be preceeded by whitespace, but B<not> by "
21795 "a command.  For example:"
21796 msgstr ""
21797
21798 #. type: verbatim
21799 #: ../fish/guestfish.pod:736
21800 #, no-wrap
21801 msgid ""
21802 " # this is a comment\n"
21803 "         # this is a comment\n"
21804 " foo # NOT a comment\n"
21805 "\n"
21806 msgstr ""
21807
21808 #. type: textblock
21809 #: ../fish/guestfish.pod:740
21810 msgid "Blank lines are also ignored."
21811 msgstr ""
21812
21813 #. type: =head1
21814 #: ../fish/guestfish.pod:742
21815 msgid "RUNNING COMMANDS LOCALLY"
21816 msgstr ""
21817
21818 #. type: textblock
21819 #: ../fish/guestfish.pod:744
21820 msgid ""
21821 "Any line which starts with a I<!> character is treated as a command sent to "
21822 "the local shell (C</bin/sh> or whatever L<system(3)> uses).  For example:"
21823 msgstr ""
21824
21825 #. type: verbatim
21826 #: ../fish/guestfish.pod:748
21827 #, no-wrap
21828 msgid ""
21829 " !mkdir local\n"
21830 " tgz-out /remote local/remote-data.tar.gz\n"
21831 "\n"
21832 msgstr ""
21833
21834 #. type: textblock
21835 #: ../fish/guestfish.pod:751
21836 msgid ""
21837 "will create a directory C<local> on the host, and then export the contents "
21838 "of C</remote> on the mounted filesystem to C<local/remote-data.tar.gz>.  "
21839 "(See C<tgz-out>)."
21840 msgstr ""
21841
21842 #. type: textblock
21843 #: ../fish/guestfish.pod:755
21844 msgid ""
21845 "To change the local directory, use the C<lcd> command.  C<!cd> will have no "
21846 "effect, due to the way that subprocesses work in Unix."
21847 msgstr ""
21848
21849 #. type: =head2
21850 #: ../fish/guestfish.pod:758
21851 msgid "LOCAL COMMANDS WITH INLINE EXECUTION"
21852 msgstr ""
21853
21854 #. type: textblock
21855 #: ../fish/guestfish.pod:760
21856 msgid ""
21857 "If a line starts with I<E<lt>!> then the shell command is executed (as for "
21858 "I<!>), but subsequently any output (stdout) of the shell command is parsed "
21859 "and executed as guestfish commands."
21860 msgstr ""
21861
21862 #. type: textblock
21863 #: ../fish/guestfish.pod:764
21864 msgid ""
21865 "Thus you can use shell script to construct arbitrary guestfish commands "
21866 "which are then parsed by guestfish."
21867 msgstr ""
21868
21869 #. type: textblock
21870 #: ../fish/guestfish.pod:767
21871 msgid ""
21872 "For example it is tedious to create a sequence of files (eg. C</foo.1> "
21873 "through C</foo.100>) using guestfish commands alone.  However this is simple"
21874 " if we use a shell script to create the guestfish commands for us:"
21875 msgstr ""
21876
21877 #. type: verbatim
21878 #: ../fish/guestfish.pod:772
21879 #, no-wrap
21880 msgid ""
21881 " <! for n in `seq 1 100`; do echo write /foo.$n $n; done\n"
21882 "\n"
21883 msgstr ""
21884
21885 #. type: textblock
21886 #: ../fish/guestfish.pod:774
21887 msgid "or with names like C</foo.001>:"
21888 msgstr ""
21889
21890 #. type: verbatim
21891 #: ../fish/guestfish.pod:776
21892 #, no-wrap
21893 msgid ""
21894 " <! for n in `seq 1 100`; do printf \"write /foo.%03d %d\\n\" $n $n; done\n"
21895 "\n"
21896 msgstr ""
21897
21898 #. type: textblock
21899 #: ../fish/guestfish.pod:778
21900 msgid ""
21901 "When using guestfish interactively it can be helpful to just run the shell "
21902 "script first (ie. remove the initial C<E<lt>> character so it is just an "
21903 "ordinary I<!> local command), see what guestfish commands it would run, and "
21904 "when you are happy with those prepend the C<E<lt>> character to run the "
21905 "guestfish commands for real."
21906 msgstr ""
21907
21908 #. type: =head1
21909 #: ../fish/guestfish.pod:784
21910 msgid "PIPES"
21911 msgstr ""
21912
21913 #. type: textblock
21914 #: ../fish/guestfish.pod:786
21915 msgid ""
21916 "Use C<command E<lt>spaceE<gt> | command> to pipe the output of the first "
21917 "command (a guestfish command) to the second command (any host command).  For"
21918 " example:"
21919 msgstr ""
21920
21921 #. type: verbatim
21922 #: ../fish/guestfish.pod:790
21923 #, no-wrap
21924 msgid ""
21925 " cat /etc/passwd | awk -F: '$3 == 0 { print }'\n"
21926 "\n"
21927 msgstr ""
21928
21929 #. type: textblock
21930 #: ../fish/guestfish.pod:792
21931 msgid ""
21932 "(where C<cat> is the guestfish cat command, but C<awk> is the host awk "
21933 "program).  The above command would list all accounts in the guest filesystem"
21934 " which have UID 0, ie. root accounts including backdoors.  Other examples:"
21935 msgstr ""
21936
21937 #. type: verbatim
21938 #: ../fish/guestfish.pod:797
21939 #, no-wrap
21940 msgid ""
21941 " hexdump /bin/ls | head\n"
21942 " list-devices | tail -1\n"
21943 " tgz-out / - | tar ztf -\n"
21944 "\n"
21945 msgstr ""
21946
21947 #. type: textblock
21948 #: ../fish/guestfish.pod:801
21949 msgid ""
21950 "The space before the pipe symbol is required, any space after the pipe "
21951 "symbol is optional.  Everything after the pipe symbol is just passed "
21952 "straight to the host shell, so it can contain redirections, globs and "
21953 "anything else that makes sense on the host side."
21954 msgstr ""
21955
21956 #. type: textblock
21957 #: ../fish/guestfish.pod:806
21958 msgid ""
21959 "To use a literal argument which begins with a pipe symbol, you have to quote"
21960 " it, eg:"
21961 msgstr ""
21962
21963 #. type: verbatim
21964 #: ../fish/guestfish.pod:809
21965 #, no-wrap
21966 msgid ""
21967 " echo \"|\"\n"
21968 "\n"
21969 msgstr ""
21970
21971 #. type: =head1
21972 #: ../fish/guestfish.pod:811
21973 msgid "HOME DIRECTORIES"
21974 msgstr ""
21975
21976 #. type: textblock
21977 #: ../fish/guestfish.pod:813
21978 msgid ""
21979 "If a parameter starts with the character C<~> then the tilde may be expanded"
21980 " as a home directory path (either C<~> for the current user's home "
21981 "directory, or C<~user> for another user)."
21982 msgstr ""
21983
21984 #. type: textblock
21985 #: ../fish/guestfish.pod:817
21986 msgid ""
21987 "Note that home directory expansion happens for users known I<on the host>, "
21988 "not in the guest filesystem."
21989 msgstr ""
21990
21991 #. type: textblock
21992 #: ../fish/guestfish.pod:820
21993 msgid ""
21994 "To use a literal argument which begins with a tilde, you have to quote it, "
21995 "eg:"
21996 msgstr ""
21997
21998 #. type: verbatim
21999 #: ../fish/guestfish.pod:823
22000 #, no-wrap
22001 msgid ""
22002 " echo \"~\"\n"
22003 "\n"
22004 msgstr ""
22005
22006 #. type: textblock
22007 #: ../fish/guestfish.pod:827
22008 msgid ""
22009 "Libguestfs has some support for Linux guests encrypted according to the "
22010 "Linux Unified Key Setup (LUKS) standard, which includes nearly all whole "
22011 "disk encryption systems used by modern Linux guests.  Currently only LVM-on-"
22012 "LUKS is supported."
22013 msgstr ""
22014
22015 #. type: textblock
22016 #: ../fish/guestfish.pod:832
22017 msgid "Identify encrypted block devices and partitions using L</vfs-type>:"
22018 msgstr ""
22019
22020 #. type: verbatim
22021 #: ../fish/guestfish.pod:834
22022 #, no-wrap
22023 msgid ""
22024 " ><fs> vfs-type /dev/sda2\n"
22025 " crypto_LUKS\n"
22026 "\n"
22027 msgstr ""
22028
22029 #. type: textblock
22030 #: ../fish/guestfish.pod:837
22031 msgid ""
22032 "Then open those devices using L</luks-open>.  This creates a device-mapper "
22033 "device called C</dev/mapper/luksdev>."
22034 msgstr ""
22035
22036 #. type: verbatim
22037 #: ../fish/guestfish.pod:840
22038 #, no-wrap
22039 msgid ""
22040 " ><fs> luks-open /dev/sda2 luksdev\n"
22041 " Enter key or passphrase (\"key\"): <enter the passphrase>\n"
22042 "\n"
22043 msgstr ""
22044
22045 #. type: textblock
22046 #: ../fish/guestfish.pod:843
22047 msgid ""
22048 "Finally you have to tell LVM to scan for volume groups on the newly created "
22049 "mapper device:"
22050 msgstr ""
22051
22052 #. type: verbatim
22053 #: ../fish/guestfish.pod:846
22054 #, no-wrap
22055 msgid ""
22056 " vgscan\n"
22057 " vg-activate-all true\n"
22058 "\n"
22059 msgstr ""
22060
22061 #. type: textblock
22062 #: ../fish/guestfish.pod:849
22063 msgid "The logical volume(s) can now be mounted in the usual way."
22064 msgstr ""
22065
22066 #. type: textblock
22067 #: ../fish/guestfish.pod:851
22068 msgid ""
22069 "Before closing a LUKS device you must unmount any logical volumes on it and "
22070 "deactivate the volume groups by calling C<vg-activate false VG> on each one."
22071 "  Then you can close the mapper device:"
22072 msgstr ""
22073
22074 #. type: verbatim
22075 #: ../fish/guestfish.pod:855
22076 #, no-wrap
22077 msgid ""
22078 " vg-activate false /dev/VG\n"
22079 " luks-close /dev/mapper/luksdev\n"
22080 "\n"
22081 msgstr ""
22082
22083 #. type: =head1
22084 #: ../fish/guestfish.pod:858
22085 msgid "WINDOWS PATHS"
22086 msgstr ""
22087
22088 #. type: textblock
22089 #: ../fish/guestfish.pod:860
22090 msgid ""
22091 "If a path is prefixed with C<win:> then you can use Windows-style drive "
22092 "letters and paths (with some limitations).  The following commands are "
22093 "equivalent:"
22094 msgstr ""
22095
22096 #. type: verbatim
22097 #: ../fish/guestfish.pod:864
22098 #, no-wrap
22099 msgid ""
22100 " file /WINDOWS/system32/config/system.LOG\n"
22101 "\n"
22102 msgstr ""
22103
22104 #. type: verbatim
22105 #: ../fish/guestfish.pod:866
22106 #, no-wrap
22107 msgid ""
22108 " file win:\\windows\\system32\\config\\system.log\n"
22109 "\n"
22110 msgstr ""
22111
22112 #. type: verbatim
22113 #: ../fish/guestfish.pod:868
22114 #, no-wrap
22115 msgid ""
22116 " file WIN:C:\\Windows\\SYSTEM32\\CONFIG\\SYSTEM.LOG\n"
22117 "\n"
22118 msgstr ""
22119
22120 #. type: textblock
22121 #: ../fish/guestfish.pod:870
22122 msgid ""
22123 "The parameter is rewritten \"behind the scenes\" by looking up the position "
22124 "where the drive is mounted, prepending that to the path, changing all "
22125 "backslash characters to forward slash, then resolving the result using L"
22126 "</case-sensitive-path>.  For example if the E: drive was mounted on C</e> "
22127 "then the parameter might be rewritten like this:"
22128 msgstr ""
22129
22130 #. type: verbatim
22131 #: ../fish/guestfish.pod:876
22132 #, no-wrap
22133 msgid ""
22134 " win:e:\\foo\\bar => /e/FOO/bar\n"
22135 "\n"
22136 msgstr ""
22137
22138 #. type: textblock
22139 #: ../fish/guestfish.pod:878
22140 msgid "This only works in argument positions that expect a path."
22141 msgstr ""
22142
22143 #. type: =head1
22144 #: ../fish/guestfish.pod:880
22145 msgid "UPLOADING AND DOWNLOADING FILES"
22146 msgstr ""
22147
22148 #. type: textblock
22149 #: ../fish/guestfish.pod:882
22150 msgid ""
22151 "For commands such as C<upload>, C<download>, C<tar-in>, C<tar-out> and "
22152 "others which upload from or download to a local file, you can use the "
22153 "special filename C<-> to mean \"from stdin\" or \"to stdout\".  For example:"
22154 msgstr ""
22155
22156 #. type: verbatim
22157 #: ../fish/guestfish.pod:886
22158 #, no-wrap
22159 msgid ""
22160 " upload - /foo\n"
22161 "\n"
22162 msgstr ""
22163
22164 #. type: textblock
22165 #: ../fish/guestfish.pod:888
22166 msgid ""
22167 "reads stdin and creates from that a file C</foo> in the disk image, and:"
22168 msgstr ""
22169
22170 #. type: verbatim
22171 #: ../fish/guestfish.pod:891
22172 #, no-wrap
22173 msgid ""
22174 " tar-out /etc - | tar tf -\n"
22175 "\n"
22176 msgstr ""
22177
22178 #. type: textblock
22179 #: ../fish/guestfish.pod:893
22180 msgid ""
22181 "writes the tarball to stdout and then pipes that into the external \"tar\" "
22182 "command (see L</PIPES>)."
22183 msgstr ""
22184
22185 #. type: textblock
22186 #: ../fish/guestfish.pod:896
22187 msgid ""
22188 "When using C<-> to read from stdin, the input is read up to the end of "
22189 "stdin.  You can also use a special \"heredoc\"-like syntax to read up to "
22190 "some arbitrary end marker:"
22191 msgstr ""
22192
22193 #. type: verbatim
22194 #: ../fish/guestfish.pod:900
22195 #, no-wrap
22196 msgid ""
22197 " upload -<<END /foo\n"
22198 " input line 1\n"
22199 " input line 2\n"
22200 " input line 3\n"
22201 " END\n"
22202 "\n"
22203 msgstr ""
22204
22205 #. type: textblock
22206 #: ../fish/guestfish.pod:906
22207 msgid ""
22208 "Any string of characters can be used instead of C<END>.  The end marker must"
22209 " appear on a line of its own, without any preceeding or following characters"
22210 " (not even spaces)."
22211 msgstr ""
22212
22213 #. type: textblock
22214 #: ../fish/guestfish.pod:910
22215 msgid ""
22216 "Note that the C<-E<lt>E<lt>> syntax only applies to parameters used to "
22217 "upload local files (so-called \"FileIn\" parameters in the generator)."
22218 msgstr ""
22219
22220 #. type: =head1
22221 #: ../fish/guestfish.pod:913
22222 msgid "EXIT ON ERROR BEHAVIOUR"
22223 msgstr ""
22224
22225 #. type: textblock
22226 #: ../fish/guestfish.pod:915
22227 msgid ""
22228 "By default, guestfish will ignore any errors when in interactive mode (ie. "
22229 "taking commands from a human over a tty), and will exit on the first error "
22230 "in non-interactive mode (scripts, commands given on the command line)."
22231 msgstr ""
22232
22233 #. type: textblock
22234 #: ../fish/guestfish.pod:920
22235 msgid ""
22236 "If you prefix a command with a I<-> character, then that command will not "
22237 "cause guestfish to exit, even if that (one) command returns an error."
22238 msgstr ""
22239
22240 #. type: =head1
22241 #: ../fish/guestfish.pod:924
22242 msgid "REMOTE CONTROL GUESTFISH OVER A SOCKET"
22243 msgstr ""
22244
22245 #. type: textblock
22246 #: ../fish/guestfish.pod:926
22247 msgid ""
22248 "Guestfish can be remote-controlled over a socket.  This is useful "
22249 "particularly in shell scripts where you want to make several different "
22250 "changes to a filesystem, but you don't want the overhead of starting up a "
22251 "guestfish process each time."
22252 msgstr ""
22253
22254 #. type: textblock
22255 #: ../fish/guestfish.pod:931
22256 msgid "Start a guestfish server process using:"
22257 msgstr ""
22258
22259 #. type: verbatim
22260 #: ../fish/guestfish.pod:933
22261 #, no-wrap
22262 msgid ""
22263 " eval \"`guestfish --listen`\"\n"
22264 "\n"
22265 msgstr ""
22266
22267 #. type: textblock
22268 #: ../fish/guestfish.pod:935
22269 msgid "and then send it commands by doing:"
22270 msgstr ""
22271
22272 #. type: verbatim
22273 #: ../fish/guestfish.pod:937
22274 #, no-wrap
22275 msgid ""
22276 " guestfish --remote cmd [...]\n"
22277 "\n"
22278 msgstr ""
22279
22280 #. type: textblock
22281 #: ../fish/guestfish.pod:939
22282 msgid "To cause the server to exit, send it the exit command:"
22283 msgstr ""
22284
22285 #. type: verbatim
22286 #: ../fish/guestfish.pod:941
22287 #, no-wrap
22288 msgid ""
22289 " guestfish --remote exit\n"
22290 "\n"
22291 msgstr ""
22292
22293 #. type: textblock
22294 #: ../fish/guestfish.pod:943
22295 msgid ""
22296 "Note that the server will normally exit if there is an error in a command.  "
22297 "You can change this in the usual way.  See section L</EXIT ON ERROR "
22298 "BEHAVIOUR>."
22299 msgstr ""
22300
22301 #. type: =head2
22302 #: ../fish/guestfish.pod:947
22303 msgid "CONTROLLING MULTIPLE GUESTFISH PROCESSES"
22304 msgstr ""
22305
22306 #. type: textblock
22307 #: ../fish/guestfish.pod:949
22308 msgid ""
22309 "The C<eval> statement sets the environment variable C<$GUESTFISH_PID>, which"
22310 " is how the I<--remote> option knows where to send the commands.  You can "
22311 "have several guestfish listener processes running using:"
22312 msgstr ""
22313
22314 #. type: verbatim
22315 #: ../fish/guestfish.pod:953
22316 #, no-wrap
22317 msgid ""
22318 " eval \"`guestfish --listen`\"\n"
22319 " pid1=$GUESTFISH_PID\n"
22320 " eval \"`guestfish --listen`\"\n"
22321 " pid2=$GUESTFISH_PID\n"
22322 " ...\n"
22323 " guestfish --remote=$pid1 cmd\n"
22324 " guestfish --remote=$pid2 cmd\n"
22325 "\n"
22326 msgstr ""
22327
22328 #. type: =head2
22329 #: ../fish/guestfish.pod:961
22330 msgid "REMOTE CONTROL AND CSH"
22331 msgstr ""
22332
22333 #. type: textblock
22334 #: ../fish/guestfish.pod:963
22335 msgid ""
22336 "When using csh-like shells (csh, tcsh etc) you have to add the I<--csh> "
22337 "option:"
22338 msgstr ""
22339
22340 #. type: verbatim
22341 #: ../fish/guestfish.pod:966
22342 #, no-wrap
22343 msgid ""
22344 " eval \"`guestfish --listen --csh`\"\n"
22345 "\n"
22346 msgstr ""
22347
22348 #. type: =head2
22349 #: ../fish/guestfish.pod:968
22350 msgid "REMOTE CONTROL DETAILS"
22351 msgstr ""
22352
22353 #. type: textblock
22354 #: ../fish/guestfish.pod:970
22355 msgid ""
22356 "Remote control happens over a Unix domain socket called "
22357 "C</tmp/.guestfish-$UID/socket-$PID>, where C<$UID> is the effective user ID "
22358 "of the process, and C<$PID> is the process ID of the server."
22359 msgstr ""
22360
22361 #. type: textblock
22362 #: ../fish/guestfish.pod:974
22363 msgid "Guestfish client and server versions must match exactly."
22364 msgstr ""
22365
22366 #. type: =head1
22367 #: ../fish/guestfish.pod:976
22368 msgid "PREPARED DISK IMAGES"
22369 msgstr ""
22370
22371 #. type: textblock
22372 #: ../fish/guestfish.pod:978
22373 msgid ""
22374 "Use the I<-N type> or I<--new type> parameter to select one of a set of "
22375 "preformatted disk images that guestfish can make for you to save typing.  "
22376 "This is particularly useful for testing purposes.  This option is used "
22377 "instead of the I<-a> option, and like I<-a> can appear multiple times (and "
22378 "can be mixed with I<-a>)."
22379 msgstr ""
22380
22381 #. type: textblock
22382 #: ../fish/guestfish.pod:984
22383 msgid ""
22384 "The new disk is called C<test1.img> for the first I<-N>, C<test2.img> for "
22385 "the second and so on.  Existing files in the current directory are "
22386 "I<overwritten>."
22387 msgstr ""
22388
22389 #. type: textblock
22390 #: ../fish/guestfish.pod:988
22391 msgid ""
22392 "The type briefly describes how the disk should be sized, partitioned, how "
22393 "filesystem(s) should be created, and how content should be added.  "
22394 "Optionally the type can be followed by extra parameters, separated by C<:> "
22395 "(colon) characters.  For example, I<-N fs> creates a default 100MB, "
22396 "sparsely-allocated disk, containing a single partition, with the partition "
22397 "formatted as ext2.  I<-N fs:ext4:1G> is the same, but for an ext4 filesystem"
22398 " on a 1GB disk instead."
22399 msgstr ""
22400
22401 #. type: textblock
22402 #: ../fish/guestfish.pod:996
22403 msgid "To list the available types and any extra parameters they take, run:"
22404 msgstr ""
22405
22406 #. type: textblock
22407 #: ../fish/guestfish.pod:1000
22408 msgid ""
22409 "Note that the prepared filesystem is not mounted.  You would usually have to"
22410 " use the C<mount /dev/sda1 /> command or add the I<-m /dev/sda1> option."
22411 msgstr ""
22412
22413 #. type: textblock
22414 #: ../fish/guestfish.pod:1004
22415 msgid ""
22416 "If any I<-N> or I<--new> options are given, the guest is automatically "
22417 "launched."
22418 msgstr ""
22419
22420 #. type: textblock
22421 #: ../fish/guestfish.pod:1009
22422 msgid "Create a 100MB disk with an ext4-formatted partition:"
22423 msgstr ""
22424
22425 #. type: verbatim
22426 #: ../fish/guestfish.pod:1011
22427 #, no-wrap
22428 msgid ""
22429 " guestfish -N fs:ext4\n"
22430 "\n"
22431 msgstr ""
22432
22433 #. type: textblock
22434 #: ../fish/guestfish.pod:1013
22435 msgid "Create a 32MB disk with a VFAT-formatted partition, and mount it:"
22436 msgstr ""
22437
22438 #. type: verbatim
22439 #: ../fish/guestfish.pod:1015
22440 #, no-wrap
22441 msgid ""
22442 " guestfish -N fs:vfat:32M -m /dev/sda1\n"
22443 "\n"
22444 msgstr ""
22445
22446 #. type: textblock
22447 #: ../fish/guestfish.pod:1017
22448 msgid "Create a blank 200MB disk:"
22449 msgstr ""
22450
22451 #. type: verbatim
22452 #: ../fish/guestfish.pod:1019
22453 #, no-wrap
22454 msgid ""
22455 " guestfish -N disk:200M\n"
22456 "\n"
22457 msgstr ""
22458
22459 #. type: =head1
22460 #: ../fish/guestfish.pod:1021
22461 msgid "PROGRESS BARS"
22462 msgstr ""
22463
22464 #. type: textblock
22465 #: ../fish/guestfish.pod:1023
22466 msgid ""
22467 "Some (not all) long-running commands send progress notification messages as "
22468 "they are running.  Guestfish turns these messages into progress bars."
22469 msgstr ""
22470
22471 #. type: textblock
22472 #: ../fish/guestfish.pod:1027
22473 msgid ""
22474 "When a command that supports progress bars takes longer than two seconds to "
22475 "run, and if progress bars are enabled, then you will see one appearing below"
22476 " the command:"
22477 msgstr ""
22478
22479 #. type: verbatim
22480 #: ../fish/guestfish.pod:1031
22481 #, no-wrap
22482 msgid ""
22483 " ><fs> copy-size /large-file /another-file 2048M\n"
22484 " / 10% [#####-----------------------------------------] 00:30\n"
22485 "\n"
22486 msgstr ""
22487
22488 #. type: textblock
22489 #: ../fish/guestfish.pod:1034
22490 msgid ""
22491 "The spinner on the left hand side moves round once for every progress "
22492 "notification received from the backend.  This is a (reasonably) golden "
22493 "assurance that the command is \"doing something\" even if the progress bar "
22494 "is not moving, because the command is able to send the progress "
22495 "notifications.  When the bar reaches 100% and the command finishes, the "
22496 "spinner disappears."
22497 msgstr ""
22498
22499 #. type: textblock
22500 #: ../fish/guestfish.pod:1041
22501 msgid ""
22502 "Progress bars are enabled by default when guestfish is used interactively.  "
22503 "You can enable them even for non-interactive modes using I<--progress-bars>,"
22504 " and you can disable them completely using I<--no-progress-bars>."
22505 msgstr ""
22506
22507 #. type: =head1
22508 #: ../fish/guestfish.pod:1046
22509 msgid "GUESTFISH COMMANDS"
22510 msgstr ""
22511
22512 #. type: textblock
22513 #: ../fish/guestfish.pod:1048
22514 msgid ""
22515 "The commands in this section are guestfish convenience commands, in other "
22516 "words, they are not part of the L<guestfs(3)> API."
22517 msgstr ""
22518
22519 #. type: =head2
22520 #: ../fish/guestfish.pod:1051
22521 msgid "help"
22522 msgstr ""
22523
22524 #. type: verbatim
22525 #: ../fish/guestfish.pod:1053
22526 #, no-wrap
22527 msgid ""
22528 " help\n"
22529 " help cmd\n"
22530 "\n"
22531 msgstr ""
22532
22533 #. type: textblock
22534 #: ../fish/guestfish.pod:1056
22535 msgid "Without any parameter, this provides general help."
22536 msgstr ""
22537
22538 #. type: textblock
22539 #: ../fish/guestfish.pod:1058
22540 msgid "With a C<cmd> parameter, this displays detailed help for that command."
22541 msgstr ""
22542
22543 #. type: =head2
22544 #: ../fish/guestfish.pod:1060
22545 msgid "quit | exit"
22546 msgstr ""
22547
22548 #. type: textblock
22549 #: ../fish/guestfish.pod:1062
22550 msgid "This exits guestfish.  You can also use C<^D> key."
22551 msgstr ""
22552
22553 #. type: textblock
22554 #: ../fish/guestfish.pod:1064
22555 msgid "@FISH_COMMANDS@"
22556 msgstr ""
22557
22558 #. type: =head1
22559 #: ../fish/guestfish.pod:1066
22560 msgid "COMMANDS"
22561 msgstr ""
22562
22563 #. type: =head1
22564 #: ../fish/guestfish.pod:1070 ../test-tool/libguestfs-test-tool.pod:77
22565 msgid "EXIT CODE"
22566 msgstr ""
22567
22568 #. type: textblock
22569 #: ../fish/guestfish.pod:1072
22570 msgid ""
22571 "guestfish returns 0 if the commands completed without error, or 1 if there "
22572 "was an error."
22573 msgstr ""
22574
22575 #. type: =item
22576 #: ../fish/guestfish.pod:1079
22577 msgid "EDITOR"
22578 msgstr ""
22579
22580 #. type: textblock
22581 #: ../fish/guestfish.pod:1081
22582 msgid ""
22583 "The C<edit> command uses C<$EDITOR> as the editor.  If not set, it uses "
22584 "C<vi>."
22585 msgstr ""
22586
22587 #. type: =item
22588 #: ../fish/guestfish.pod:1084
22589 msgid "GUESTFISH_DISPLAY_IMAGE"
22590 msgstr ""
22591
22592 #. type: textblock
22593 #: ../fish/guestfish.pod:1086
22594 msgid ""
22595 "The C<display> command uses C<$GUESTFISH_DISPLAY_IMAGE> to display images.  "
22596 "If not set, it uses L<display(1)>."
22597 msgstr ""
22598
22599 #. type: =item
22600 #: ../fish/guestfish.pod:1089
22601 msgid "GUESTFISH_PID"
22602 msgstr ""
22603
22604 #. type: textblock
22605 #: ../fish/guestfish.pod:1091
22606 msgid ""
22607 "Used with the I<--remote> option to specify the remote guestfish process to "
22608 "control.  See section L</REMOTE CONTROL GUESTFISH OVER A SOCKET>."
22609 msgstr ""
22610
22611 #. type: =item
22612 #: ../fish/guestfish.pod:1095
22613 msgid "HEXEDITOR"
22614 msgstr ""
22615
22616 #. type: textblock
22617 #: ../fish/guestfish.pod:1097
22618 msgid ""
22619 "The L</hexedit> command uses C<$HEXEDITOR> as the external hex editor.  If "
22620 "not specified, the external L<hexedit(1)> program is used."
22621 msgstr ""
22622
22623 #. type: =item
22624 #: ../fish/guestfish.pod:1101
22625 msgid "HOME"
22626 msgstr ""
22627
22628 #. type: textblock
22629 #: ../fish/guestfish.pod:1103
22630 msgid ""
22631 "If compiled with GNU readline support, various files in the home directory "
22632 "can be used.  See L</FILES>."
22633 msgstr ""
22634
22635 #. type: textblock
22636 #: ../fish/guestfish.pod:1112
22637 msgid ""
22638 "Set C<LIBGUESTFS_DEBUG=1> to enable verbose messages.  This has the same "
22639 "effect as using the B<-v> option."
22640 msgstr ""
22641
22642 #. type: textblock
22643 #: ../fish/guestfish.pod:1124
22644 msgid ""
22645 "Set the path that guestfish uses to search for kernel and initrd.img.  See "
22646 "the discussion of paths in L<guestfs(3)>."
22647 msgstr ""
22648
22649 #. type: textblock
22650 #: ../fish/guestfish.pod:1135
22651 msgid "Set C<LIBGUESTFS_TRACE=1> to enable command traces."
22652 msgstr ""
22653
22654 #. type: =item
22655 #: ../fish/guestfish.pod:1137
22656 msgid "PAGER"
22657 msgstr ""
22658
22659 #. type: textblock
22660 #: ../fish/guestfish.pod:1139
22661 msgid ""
22662 "The C<more> command uses C<$PAGER> as the pager.  If not set, it uses "
22663 "C<more>."
22664 msgstr ""
22665
22666 #. type: =head1
22667 #: ../fish/guestfish.pod:1155 ../fuse/guestmount.pod:264
22668 msgid "FILES"
22669 msgstr ""
22670
22671 #. type: =item
22672 #: ../fish/guestfish.pod:1159 ../fuse/guestmount.pod:268
22673 msgid "$HOME/.libguestfs-tools.rc"
22674 msgstr ""
22675
22676 #. type: =item
22677 #: ../fish/guestfish.pod:1161 ../fuse/guestmount.pod:270
22678 msgid "/etc/libguestfs-tools.conf"
22679 msgstr ""
22680
22681 #. type: textblock
22682 #: ../fish/guestfish.pod:1163 ../fuse/guestmount.pod:272
22683 msgid ""
22684 "This configuration file controls the default read-only or read-write mode "
22685 "(I<--ro> or I<--rw>)."
22686 msgstr ""
22687
22688 #. type: textblock
22689 #: ../fish/guestfish.pod:1166
22690 msgid "See L</OPENING DISKS FOR READ AND WRITE>."
22691 msgstr ""
22692
22693 #. type: =item
22694 #: ../fish/guestfish.pod:1168
22695 msgid "$HOME/.guestfish"
22696 msgstr ""
22697
22698 #. type: textblock
22699 #: ../fish/guestfish.pod:1170
22700 msgid ""
22701 "If compiled with GNU readline support, then the command history is saved in "
22702 "this file."
22703 msgstr ""
22704
22705 #. type: =item
22706 #: ../fish/guestfish.pod:1173
22707 msgid "$HOME/.inputrc"
22708 msgstr ""
22709
22710 #. type: =item
22711 #: ../fish/guestfish.pod:1175
22712 msgid "/etc/inputrc"
22713 msgstr ""
22714
22715 #. type: textblock
22716 #: ../fish/guestfish.pod:1177
22717 msgid ""
22718 "If compiled with GNU readline support, then these files can be used to "
22719 "configure readline.  For further information, please see "
22720 "L<readline(3)/INITIALIZATION FILE>."
22721 msgstr ""
22722
22723 #. type: textblock
22724 #: ../fish/guestfish.pod:1181
22725 msgid "To write rules which only apply to guestfish, use:"
22726 msgstr ""
22727
22728 #. type: verbatim
22729 #: ../fish/guestfish.pod:1183
22730 #, no-wrap
22731 msgid ""
22732 " $if guestfish\n"
22733 " ...\n"
22734 " $endif\n"
22735 "\n"
22736 msgstr ""
22737
22738 #. type: textblock
22739 #: ../fish/guestfish.pod:1187
22740 msgid ""
22741 "Variables that you can set in inputrc that change the behaviour of guestfish"
22742 " in useful ways include:"
22743 msgstr ""
22744
22745 #. type: =item
22746 #: ../fish/guestfish.pod:1192
22747 msgid "completion-ignore-case (default: on)"
22748 msgstr ""
22749
22750 #. type: textblock
22751 #: ../fish/guestfish.pod:1194
22752 msgid ""
22753 "By default, guestfish will ignore case when tab-completing paths on the "
22754 "disk.  Use:"
22755 msgstr ""
22756
22757 #. type: verbatim
22758 #: ../fish/guestfish.pod:1197
22759 #, no-wrap
22760 msgid ""
22761 " set completion-ignore-case off\n"
22762 "\n"
22763 msgstr ""
22764
22765 #. type: textblock
22766 #: ../fish/guestfish.pod:1199
22767 msgid "to make guestfish case sensitive."
22768 msgstr ""
22769
22770 #. type: =item
22771 #: ../fish/guestfish.pod:1203
22772 msgid "test1.img"
22773 msgstr ""
22774
22775 #. type: =item
22776 #: ../fish/guestfish.pod:1205
22777 msgid "test2.img (etc)"
22778 msgstr ""
22779
22780 #. type: textblock
22781 #: ../fish/guestfish.pod:1207
22782 msgid ""
22783 "When using the I<-N> or I<--new> option, the prepared disk or filesystem "
22784 "will be created in the file C<test1.img> in the current directory.  The "
22785 "second use of I<-N> will use C<test2.img> and so on.  Any existing file with"
22786 " the same name will be overwritten."
22787 msgstr ""
22788
22789 #. type: textblock
22790 #: ../fish/guestfish.pod:1216
22791 msgid ""
22792 "L<guestfs(3)>, L<http://libguestfs.org/>, L<virt-cat(1)>, L<virt-copy-"
22793 "in(1)>, L<virt-copy-out(1)>, L<virt-df(1)>, L<virt-edit(1)>, L<virt-"
22794 "filesystems(1)>, L<virt-inspector(1)>, L<virt-list-filesystems(1)>, L<virt-"
22795 "list-partitions(1)>, L<virt-ls(1)>, L<virt-make-fs(1)>, L<virt-rescue(1)>, L"
22796 "<virt-resize(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, L"
22797 "<virt-win-reg(1)>, L<display(1)>, L<hexedit(1)>."
22798 msgstr ""
22799
22800 #. type: textblock
22801 #: ../fish/guestfish.pod:1247 ../test-tool/libguestfs-test-tool.pod:102
22802 #: ../fuse/guestmount.pod:299 ../tools/virt-win-reg.pl:778
22803 #: ../tools/virt-list-filesystems.pl:210 ../tools/virt-tar.pl:309
22804 #: ../tools/virt-make-fs.pl:572 ../tools/virt-list-partitions.pl:277
22805 msgid ""
22806 "This program is free software; you can redistribute it and/or modify it "
22807 "under the terms of the GNU General Public License as published by the Free "
22808 "Software Foundation; either version 2 of the License, or (at your option) "
22809 "any later version."
22810 msgstr ""
22811
22812 #. type: textblock
22813 #: ../fish/guestfish.pod:1252 ../test-tool/libguestfs-test-tool.pod:107
22814 #: ../fuse/guestmount.pod:304 ../tools/virt-win-reg.pl:783
22815 #: ../tools/virt-list-filesystems.pl:215 ../tools/virt-tar.pl:314
22816 #: ../tools/virt-make-fs.pl:577 ../tools/virt-list-partitions.pl:282
22817 msgid ""
22818 "This program is distributed in the hope that it will be useful, but WITHOUT "
22819 "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
22820 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
22821 "more details."
22822 msgstr ""
22823
22824 #. type: textblock
22825 #: ../fish/guestfish.pod:1257 ../test-tool/libguestfs-test-tool.pod:112
22826 #: ../fuse/guestmount.pod:309 ../tools/virt-win-reg.pl:788
22827 #: ../tools/virt-list-filesystems.pl:220 ../tools/virt-tar.pl:319
22828 #: ../tools/virt-make-fs.pl:582 ../tools/virt-list-partitions.pl:287
22829 msgid ""
22830 "You should have received a copy of the GNU General Public License along with"
22831 " this program; if not, write to the Free Software Foundation, Inc., 675 Mass"
22832 " Ave, Cambridge, MA 02139, USA."
22833 msgstr ""
22834
22835 #. type: =head2
22836 #: ../fish/guestfish-actions.pod:1
22837 msgid "add-cdrom"
22838 msgstr ""
22839
22840 #. type: verbatim
22841 #: ../fish/guestfish-actions.pod:3
22842 #, no-wrap
22843 msgid ""
22844 " add-cdrom filename\n"
22845 "\n"
22846 msgstr ""
22847
22848 #. type: textblock
22849 #: ../fish/guestfish-actions.pod:15
22850 msgid ""
22851 "This call checks for the existence of C<filename>.  This stops you from "
22852 "specifying other types of drive which are supported by qemu such as C<nbd:> "
22853 "and C<http:> URLs.  To specify those, use the general L</config> call "
22854 "instead."
22855 msgstr ""
22856
22857 #. type: textblock
22858 #: ../fish/guestfish-actions.pod:22
22859 msgid ""
22860 "If you just want to add an ISO file (often you use this as an efficient way "
22861 "to transfer large files into the guest), then you should probably use L"
22862 "</add-drive-ro> instead."
22863 msgstr ""
22864
22865 #. type: =head2
22866 #: ../fish/guestfish-actions.pod:35
22867 msgid "add-domain"
22868 msgstr ""
22869
22870 #. type: =head2
22871 #: ../fish/guestfish-actions.pod:37
22872 msgid "domain"
22873 msgstr ""
22874
22875 #. type: verbatim
22876 #: ../fish/guestfish-actions.pod:39
22877 #, no-wrap
22878 msgid ""
22879 " add-domain dom [libvirturi:..] [readonly:..] [iface:..] [live:..] [allowuuid:..]\n"
22880 "\n"
22881 msgstr ""
22882
22883 #. type: textblock
22884 #: ../fish/guestfish-actions.pod:41
22885 msgid ""
22886 "This function adds the disk(s) attached to the named libvirt domain C<dom>."
22887 "  It works by connecting to libvirt, requesting the domain and domain XML "
22888 "from libvirt, parsing it for disks, and calling L</add-drive-opts> on each "
22889 "one."
22890 msgstr ""
22891
22892 #. type: textblock
22893 #: ../fish/guestfish-actions.pod:76
22894 msgid ""
22895 "The other optional parameters are passed directly through to L</add-drive-"
22896 "opts>."
22897 msgstr ""
22898
22899 #. type: textblock
22900 #: ../fish/guestfish-actions.pod:79 ../fish/guestfish-actions.pod:143
22901 #: ../fish/guestfish-actions.pod:568 ../fish/guestfish-actions.pod:1968
22902 #: ../fish/guestfish-actions.pod:3134 ../fish/guestfish-actions.pod:3307
22903 #: ../fish/guestfish-actions.pod:3442
22904 msgid ""
22905 "This command has one or more optional arguments.  See L</OPTIONAL "
22906 "ARGUMENTS>."
22907 msgstr ""
22908
22909 #. type: =head2
22910 #: ../fish/guestfish-actions.pod:81
22911 msgid "add-drive"
22912 msgstr ""
22913
22914 #. type: verbatim
22915 #: ../fish/guestfish-actions.pod:83
22916 #, no-wrap
22917 msgid ""
22918 " add-drive filename\n"
22919 "\n"
22920 msgstr ""
22921
22922 #. type: textblock
22923 #: ../fish/guestfish-actions.pod:85
22924 msgid ""
22925 "This function is the equivalent of calling L</add-drive-opts> with no "
22926 "optional parameters, so the disk is added writable, with the format being "
22927 "detected automatically."
22928 msgstr ""
22929
22930 #. type: textblock
22931 #: ../fish/guestfish-actions.pod:89
22932 msgid ""
22933 "Automatic detection of the format opens you up to a potential security hole "
22934 "when dealing with untrusted raw-format images.  See CVE-2010-3851 and "
22935 "RHBZ#642934.  Specifying the format closes this security hole.  Therefore "
22936 "you should think about replacing calls to this function with calls to L"
22937 "</add-drive-opts>, and specifying the format."
22938 msgstr ""
22939
22940 #. type: =head2
22941 #: ../fish/guestfish-actions.pod:96
22942 msgid "add-drive-opts"
22943 msgstr ""
22944
22945 #. type: =head2
22946 #: ../fish/guestfish-actions.pod:98
22947 msgid "add"
22948 msgstr ""
22949
22950 #. type: verbatim
22951 #: ../fish/guestfish-actions.pod:100
22952 #, no-wrap
22953 msgid ""
22954 " add-drive-opts filename [readonly:..] [format:..] [iface:..]\n"
22955 "\n"
22956 msgstr ""
22957
22958 #. type: textblock
22959 #: ../fish/guestfish-actions.pod:127
22960 msgid ""
22961 "This forces the image format.  If you omit this (or use L</add-drive> or L"
22962 "</add-drive-ro>) then the format is automatically detected.  Possible "
22963 "formats include C<raw> and C<qcow2>."
22964 msgstr ""
22965
22966 #. type: textblock
22967 #: ../fish/guestfish-actions.pod:138
22968 msgid ""
22969 "This rarely-used option lets you emulate the behaviour of the deprecated L"
22970 "</add-drive-with-if> call (q.v.)"
22971 msgstr ""
22972
22973 #. type: =head2
22974 #: ../fish/guestfish-actions.pod:145
22975 msgid "add-drive-ro"
22976 msgstr ""
22977
22978 #. type: =head2
22979 #: ../fish/guestfish-actions.pod:147
22980 msgid "add-ro"
22981 msgstr ""
22982
22983 #. type: verbatim
22984 #: ../fish/guestfish-actions.pod:149
22985 #, no-wrap
22986 msgid ""
22987 " add-drive-ro filename\n"
22988 "\n"
22989 msgstr ""
22990
22991 #. type: textblock
22992 #: ../fish/guestfish-actions.pod:151
22993 msgid ""
22994 "This function is the equivalent of calling L</add-drive-opts> with the "
22995 "optional parameter C<GUESTFS_ADD_DRIVE_OPTS_READONLY> set to 1, so the disk "
22996 "is added read-only, with the format being detected automatically."
22997 msgstr ""
22998
22999 #. type: =head2
23000 #: ../fish/guestfish-actions.pod:156
23001 msgid "add-drive-ro-with-if"
23002 msgstr ""
23003
23004 #. type: verbatim
23005 #: ../fish/guestfish-actions.pod:158
23006 #, no-wrap
23007 msgid ""
23008 " add-drive-ro-with-if filename iface\n"
23009 "\n"
23010 msgstr ""
23011
23012 #. type: textblock
23013 #: ../fish/guestfish-actions.pod:160
23014 msgid ""
23015 "This is the same as L</add-drive-ro> but it allows you to specify the QEMU "
23016 "interface emulation to use at run time."
23017 msgstr ""
23018
23019 #. type: =head2
23020 #: ../fish/guestfish-actions.pod:170
23021 msgid "add-drive-with-if"
23022 msgstr ""
23023
23024 #. type: verbatim
23025 #: ../fish/guestfish-actions.pod:172
23026 #, no-wrap
23027 msgid ""
23028 " add-drive-with-if filename iface\n"
23029 "\n"
23030 msgstr ""
23031
23032 #. type: textblock
23033 #: ../fish/guestfish-actions.pod:174
23034 msgid ""
23035 "This is the same as L</add-drive> but it allows you to specify the QEMU "
23036 "interface emulation to use at run time."
23037 msgstr ""
23038
23039 #. type: =head2
23040 #: ../fish/guestfish-actions.pod:184
23041 msgid "aug-clear"
23042 msgstr ""
23043
23044 #. type: verbatim
23045 #: ../fish/guestfish-actions.pod:186
23046 #, no-wrap
23047 msgid ""
23048 " aug-clear augpath\n"
23049 "\n"
23050 msgstr ""
23051
23052 #. type: =head2
23053 #: ../fish/guestfish-actions.pod:191
23054 msgid "aug-close"
23055 msgstr ""
23056
23057 #. type: verbatim
23058 #: ../fish/guestfish-actions.pod:193
23059 #, no-wrap
23060 msgid ""
23061 " aug-close\n"
23062 "\n"
23063 msgstr ""
23064
23065 #. type: textblock
23066 #: ../fish/guestfish-actions.pod:195
23067 msgid ""
23068 "Close the current Augeas handle and free up any resources used by it.  After"
23069 " calling this, you have to call L</aug-init> again before you can use any "
23070 "other Augeas functions."
23071 msgstr ""
23072
23073 #. type: =head2
23074 #: ../fish/guestfish-actions.pod:200
23075 msgid "aug-defnode"
23076 msgstr ""
23077
23078 #. type: verbatim
23079 #: ../fish/guestfish-actions.pod:202
23080 #, no-wrap
23081 msgid ""
23082 " aug-defnode name expr val\n"
23083 "\n"
23084 msgstr ""
23085
23086 #. type: textblock
23087 #: ../fish/guestfish-actions.pod:207
23088 msgid ""
23089 "If C<expr> evaluates to an empty nodeset, a node is created, equivalent to "
23090 "calling L</aug-set> C<expr>, C<value>.  C<name> will be the nodeset "
23091 "containing that single node."
23092 msgstr ""
23093
23094 #. type: =head2
23095 #: ../fish/guestfish-actions.pod:215
23096 msgid "aug-defvar"
23097 msgstr ""
23098
23099 #. type: verbatim
23100 #: ../fish/guestfish-actions.pod:217
23101 #, no-wrap
23102 msgid ""
23103 " aug-defvar name expr\n"
23104 "\n"
23105 msgstr ""
23106
23107 #. type: =head2
23108 #: ../fish/guestfish-actions.pod:226
23109 msgid "aug-get"
23110 msgstr ""
23111
23112 #. type: verbatim
23113 #: ../fish/guestfish-actions.pod:228
23114 #, no-wrap
23115 msgid ""
23116 " aug-get augpath\n"
23117 "\n"
23118 msgstr ""
23119
23120 #. type: =head2
23121 #: ../fish/guestfish-actions.pod:233
23122 msgid "aug-init"
23123 msgstr ""
23124
23125 #. type: verbatim
23126 #: ../fish/guestfish-actions.pod:235
23127 #, no-wrap
23128 msgid ""
23129 " aug-init root flags\n"
23130 "\n"
23131 msgstr ""
23132
23133 #. type: textblock
23134 #: ../fish/guestfish-actions.pod:241
23135 msgid "You must call this before using any other L</aug-*> commands."
23136 msgstr ""
23137
23138 #. type: textblock
23139 #: ../fish/guestfish-actions.pod:276
23140 msgid "Do not load the tree in L</aug-init>."
23141 msgstr ""
23142
23143 #. type: textblock
23144 #: ../fish/guestfish-actions.pod:280
23145 msgid "To close the handle, you can call L</aug-close>."
23146 msgstr ""
23147
23148 #. type: =head2
23149 #: ../fish/guestfish-actions.pod:284
23150 msgid "aug-insert"
23151 msgstr ""
23152
23153 #. type: verbatim
23154 #: ../fish/guestfish-actions.pod:286
23155 #, no-wrap
23156 msgid ""
23157 " aug-insert augpath label true|false\n"
23158 "\n"
23159 msgstr ""
23160
23161 #. type: =head2
23162 #: ../fish/guestfish-actions.pod:296
23163 msgid "aug-load"
23164 msgstr ""
23165
23166 #. type: verbatim
23167 #: ../fish/guestfish-actions.pod:298
23168 #, no-wrap
23169 msgid ""
23170 " aug-load\n"
23171 "\n"
23172 msgstr ""
23173
23174 #. type: =head2
23175 #: ../fish/guestfish-actions.pod:305
23176 msgid "aug-ls"
23177 msgstr ""
23178
23179 #. type: verbatim
23180 #: ../fish/guestfish-actions.pod:307
23181 #, no-wrap
23182 msgid ""
23183 " aug-ls augpath\n"
23184 "\n"
23185 msgstr ""
23186
23187 #. type: textblock
23188 #: ../fish/guestfish-actions.pod:309
23189 msgid ""
23190 "This is just a shortcut for listing L</aug-match> C<path/*> and sorting the "
23191 "resulting nodes into alphabetical order."
23192 msgstr ""
23193
23194 #. type: =head2
23195 #: ../fish/guestfish-actions.pod:312
23196 msgid "aug-match"
23197 msgstr ""
23198
23199 #. type: verbatim
23200 #: ../fish/guestfish-actions.pod:314
23201 #, no-wrap
23202 msgid ""
23203 " aug-match augpath\n"
23204 "\n"
23205 msgstr ""
23206
23207 #. type: =head2
23208 #: ../fish/guestfish-actions.pod:320
23209 msgid "aug-mv"
23210 msgstr ""
23211
23212 #. type: verbatim
23213 #: ../fish/guestfish-actions.pod:322
23214 #, no-wrap
23215 msgid ""
23216 " aug-mv src dest\n"
23217 "\n"
23218 msgstr ""
23219
23220 #. type: =head2
23221 #: ../fish/guestfish-actions.pod:327
23222 msgid "aug-rm"
23223 msgstr ""
23224
23225 #. type: verbatim
23226 #: ../fish/guestfish-actions.pod:329
23227 #, no-wrap
23228 msgid ""
23229 " aug-rm augpath\n"
23230 "\n"
23231 msgstr ""
23232
23233 #. type: =head2
23234 #: ../fish/guestfish-actions.pod:335
23235 msgid "aug-save"
23236 msgstr ""
23237
23238 #. type: verbatim
23239 #: ../fish/guestfish-actions.pod:337
23240 #, no-wrap
23241 msgid ""
23242 " aug-save\n"
23243 "\n"
23244 msgstr ""
23245
23246 #. type: textblock
23247 #: ../fish/guestfish-actions.pod:341
23248 msgid ""
23249 "The flags which were passed to L</aug-init> affect exactly how files are "
23250 "saved."
23251 msgstr ""
23252
23253 #. type: =head2
23254 #: ../fish/guestfish-actions.pod:344
23255 msgid "aug-set"
23256 msgstr ""
23257
23258 #. type: verbatim
23259 #: ../fish/guestfish-actions.pod:346
23260 #, no-wrap
23261 msgid ""
23262 " aug-set augpath val\n"
23263 "\n"
23264 msgstr ""
23265
23266 #. type: textblock
23267 #: ../fish/guestfish-actions.pod:350
23268 msgid ""
23269 "In the Augeas API, it is possible to clear a node by setting the value to "
23270 "NULL.  Due to an oversight in the libguestfs API you cannot do that with "
23271 "this call.  Instead you must use the L</aug-clear> call."
23272 msgstr ""
23273
23274 #. type: =head2
23275 #: ../fish/guestfish-actions.pod:355
23276 msgid "available"
23277 msgstr ""
23278
23279 #. type: verbatim
23280 #: ../fish/guestfish-actions.pod:357
23281 #, no-wrap
23282 msgid ""
23283 " available 'groups ...'\n"
23284 "\n"
23285 msgstr ""
23286
23287 #. type: textblock
23288 #: ../fish/guestfish-actions.pod:363
23289 msgid ""
23290 "The libguestfs groups, and the functions that those groups correspond to, "
23291 "are listed in L<guestfs(3)/AVAILABILITY>.  You can also fetch this list at "
23292 "runtime by calling L</available-all-groups>."
23293 msgstr ""
23294
23295 #. type: textblock
23296 #: ../fish/guestfish-actions.pod:387
23297 msgid "You must call L</launch> before calling this function."
23298 msgstr ""
23299
23300 #. type: textblock
23301 #: ../fish/guestfish-actions.pod:409
23302 msgid ""
23303 "This call was added in version C<1.0.80>.  In previous versions of "
23304 "libguestfs all you could do would be to speculatively execute a command to "
23305 "find out if the daemon implemented it.  See also L</version>."
23306 msgstr ""
23307
23308 #. type: =head2
23309 #: ../fish/guestfish-actions.pod:416
23310 msgid "available-all-groups"
23311 msgstr ""
23312
23313 #. type: verbatim
23314 #: ../fish/guestfish-actions.pod:418
23315 #, no-wrap
23316 msgid ""
23317 " available-all-groups\n"
23318 "\n"
23319 msgstr ""
23320
23321 #. type: textblock
23322 #: ../fish/guestfish-actions.pod:420
23323 msgid ""
23324 "This command returns a list of all optional groups that this daemon knows "
23325 "about.  Note this returns both supported and unsupported groups.  To find "
23326 "out which ones the daemon can actually support you have to call "
23327 "L</available> on each member of the returned list."
23328 msgstr ""
23329
23330 #. type: textblock
23331 #: ../fish/guestfish-actions.pod:426
23332 msgid "See also L</available> and L<guestfs(3)/AVAILABILITY>."
23333 msgstr ""
23334
23335 #. type: =head2
23336 #: ../fish/guestfish-actions.pod:428
23337 msgid "base64-in"
23338 msgstr ""
23339
23340 #. type: verbatim
23341 #: ../fish/guestfish-actions.pod:430
23342 #, no-wrap
23343 msgid ""
23344 " base64-in (base64file|-) filename\n"
23345 "\n"
23346 msgstr ""
23347
23348 #. type: textblock
23349 #: ../fish/guestfish-actions.pod:435 ../fish/guestfish-actions.pod:444
23350 #: ../fish/guestfish-actions.pod:693 ../fish/guestfish-actions.pod:862
23351 #: ../fish/guestfish-actions.pod:881 ../fish/guestfish-actions.pod:1255
23352 #: ../fish/guestfish-actions.pod:4652 ../fish/guestfish-actions.pod:4664
23353 #: ../fish/guestfish-actions.pod:4675 ../fish/guestfish-actions.pod:4686
23354 #: ../fish/guestfish-actions.pod:4738 ../fish/guestfish-actions.pod:4747
23355 #: ../fish/guestfish-actions.pod:4801 ../fish/guestfish-actions.pod:4824
23356 msgid "Use C<-> instead of a filename to read/write from stdin/stdout."
23357 msgstr ""
23358
23359 #. type: =head2
23360 #: ../fish/guestfish-actions.pod:437
23361 msgid "base64-out"
23362 msgstr ""
23363
23364 #. type: verbatim
23365 #: ../fish/guestfish-actions.pod:439
23366 #, no-wrap
23367 msgid ""
23368 " base64-out filename (base64file|-)\n"
23369 "\n"
23370 msgstr ""
23371
23372 #. type: =head2
23373 #: ../fish/guestfish-actions.pod:446
23374 msgid "blockdev-flushbufs"
23375 msgstr ""
23376
23377 #. type: verbatim
23378 #: ../fish/guestfish-actions.pod:448
23379 #, no-wrap
23380 msgid ""
23381 " blockdev-flushbufs device\n"
23382 "\n"
23383 msgstr ""
23384
23385 #. type: =head2
23386 #: ../fish/guestfish-actions.pod:455
23387 msgid "blockdev-getbsz"
23388 msgstr ""
23389
23390 #. type: verbatim
23391 #: ../fish/guestfish-actions.pod:457
23392 #, no-wrap
23393 msgid ""
23394 " blockdev-getbsz device\n"
23395 "\n"
23396 msgstr ""
23397
23398 #. type: =head2
23399 #: ../fish/guestfish-actions.pod:466
23400 msgid "blockdev-getro"
23401 msgstr ""
23402
23403 #. type: verbatim
23404 #: ../fish/guestfish-actions.pod:468
23405 #, no-wrap
23406 msgid ""
23407 " blockdev-getro device\n"
23408 "\n"
23409 msgstr ""
23410
23411 #. type: =head2
23412 #: ../fish/guestfish-actions.pod:475
23413 msgid "blockdev-getsize64"
23414 msgstr ""
23415
23416 #. type: verbatim
23417 #: ../fish/guestfish-actions.pod:477
23418 #, no-wrap
23419 msgid ""
23420 " blockdev-getsize64 device\n"
23421 "\n"
23422 msgstr ""
23423
23424 #. type: textblock
23425 #: ../fish/guestfish-actions.pod:481
23426 msgid "See also L</blockdev-getsz>."
23427 msgstr ""
23428
23429 #. type: =head2
23430 #: ../fish/guestfish-actions.pod:485
23431 msgid "blockdev-getss"
23432 msgstr ""
23433
23434 #. type: verbatim
23435 #: ../fish/guestfish-actions.pod:487
23436 #, no-wrap
23437 msgid ""
23438 " blockdev-getss device\n"
23439 "\n"
23440 msgstr ""
23441
23442 #. type: textblock
23443 #: ../fish/guestfish-actions.pod:492
23444 msgid ""
23445 "(Note, this is not the size in sectors, use L</blockdev-getsz> for that)."
23446 msgstr ""
23447
23448 #. type: =head2
23449 #: ../fish/guestfish-actions.pod:497
23450 msgid "blockdev-getsz"
23451 msgstr ""
23452
23453 #. type: verbatim
23454 #: ../fish/guestfish-actions.pod:499
23455 #, no-wrap
23456 msgid ""
23457 " blockdev-getsz device\n"
23458 "\n"
23459 msgstr ""
23460
23461 #. type: textblock
23462 #: ../fish/guestfish-actions.pod:504
23463 msgid ""
23464 "See also L</blockdev-getss> for the real sector size of the device, and L"
23465 "</blockdev-getsize64> for the more useful I<size in bytes>."
23466 msgstr ""
23467
23468 #. type: =head2
23469 #: ../fish/guestfish-actions.pod:510
23470 msgid "blockdev-rereadpt"
23471 msgstr ""
23472
23473 #. type: verbatim
23474 #: ../fish/guestfish-actions.pod:512
23475 #, no-wrap
23476 msgid ""
23477 " blockdev-rereadpt device\n"
23478 "\n"
23479 msgstr ""
23480
23481 #. type: =head2
23482 #: ../fish/guestfish-actions.pod:518
23483 msgid "blockdev-setbsz"
23484 msgstr ""
23485
23486 #. type: verbatim
23487 #: ../fish/guestfish-actions.pod:520
23488 #, no-wrap
23489 msgid ""
23490 " blockdev-setbsz device blocksize\n"
23491 "\n"
23492 msgstr ""
23493
23494 #. type: =head2
23495 #: ../fish/guestfish-actions.pod:529
23496 msgid "blockdev-setro"
23497 msgstr ""
23498
23499 #. type: verbatim
23500 #: ../fish/guestfish-actions.pod:531
23501 #, no-wrap
23502 msgid ""
23503 " blockdev-setro device\n"
23504 "\n"
23505 msgstr ""
23506
23507 #. type: =head2
23508 #: ../fish/guestfish-actions.pod:537
23509 msgid "blockdev-setrw"
23510 msgstr ""
23511
23512 #. type: verbatim
23513 #: ../fish/guestfish-actions.pod:539
23514 #, no-wrap
23515 msgid ""
23516 " blockdev-setrw device\n"
23517 "\n"
23518 msgstr ""
23519
23520 #. type: =head2
23521 #: ../fish/guestfish-actions.pod:545
23522 msgid "btrfs-filesystem-resize"
23523 msgstr ""
23524
23525 #. type: verbatim
23526 #: ../fish/guestfish-actions.pod:547
23527 #, no-wrap
23528 msgid ""
23529 " btrfs-filesystem-resize mountpoint [size:..]\n"
23530 "\n"
23531 msgstr ""
23532
23533 #. type: =head2
23534 #: ../fish/guestfish-actions.pod:570
23535 msgid "case-sensitive-path"
23536 msgstr ""
23537
23538 #. type: verbatim
23539 #: ../fish/guestfish-actions.pod:572
23540 #, no-wrap
23541 msgid ""
23542 " case-sensitive-path path\n"
23543 "\n"
23544 msgstr ""
23545
23546 #. type: textblock
23547 #: ../fish/guestfish-actions.pod:596
23548 msgid ""
23549 "Thus L</case-sensitive-path> (\"/Windows/System32\")  might return "
23550 "C<\"/WINDOWS/system32\"> (the exact return value would depend on details of "
23551 "how the directories were originally created under Windows)."
23552 msgstr ""
23553
23554 #. type: textblock
23555 #: ../fish/guestfish-actions.pod:604
23556 msgid "See also L</realpath>."
23557 msgstr ""
23558
23559 #. type: =head2
23560 #: ../fish/guestfish-actions.pod:606
23561 msgid "cat"
23562 msgstr ""
23563
23564 #. type: verbatim
23565 #: ../fish/guestfish-actions.pod:608
23566 #, no-wrap
23567 msgid ""
23568 " cat path\n"
23569 "\n"
23570 msgstr ""
23571
23572 #. type: textblock
23573 #: ../fish/guestfish-actions.pod:612
23574 msgid ""
23575 "Note that this function cannot correctly handle binary files (specifically, "
23576 "files containing C<\\0> character which is treated as end of string).  For "
23577 "those you need to use the L</read-file> or L</download> functions which have"
23578 " a more complex interface."
23579 msgstr ""
23580
23581 #. type: =head2
23582 #: ../fish/guestfish-actions.pod:620
23583 msgid "checksum"
23584 msgstr ""
23585
23586 #. type: verbatim
23587 #: ../fish/guestfish-actions.pod:622
23588 #, no-wrap
23589 msgid ""
23590 " checksum csumtype path\n"
23591 "\n"
23592 msgstr ""
23593
23594 #. type: textblock
23595 #: ../fish/guestfish-actions.pod:665
23596 msgid "To get the checksum for a device, use L</checksum-device>."
23597 msgstr ""
23598
23599 #. type: textblock
23600 #: ../fish/guestfish-actions.pod:667
23601 msgid "To get the checksums for many files, use L</checksums-out>."
23602 msgstr ""
23603
23604 #. type: =head2
23605 #: ../fish/guestfish-actions.pod:669
23606 msgid "checksum-device"
23607 msgstr ""
23608
23609 #. type: verbatim
23610 #: ../fish/guestfish-actions.pod:671
23611 #, no-wrap
23612 msgid ""
23613 " checksum-device csumtype device\n"
23614 "\n"
23615 msgstr ""
23616
23617 #. type: textblock
23618 #: ../fish/guestfish-actions.pod:673
23619 msgid ""
23620 "This call computes the MD5, SHAx or CRC checksum of the contents of the "
23621 "device named C<device>.  For the types of checksums supported see the "
23622 "L</checksum> command."
23623 msgstr ""
23624
23625 #. type: =head2
23626 #: ../fish/guestfish-actions.pod:677
23627 msgid "checksums-out"
23628 msgstr ""
23629
23630 #. type: verbatim
23631 #: ../fish/guestfish-actions.pod:679
23632 #, no-wrap
23633 msgid ""
23634 " checksums-out csumtype directory (sumsfile|-)\n"
23635 "\n"
23636 msgstr ""
23637
23638 #. type: =head2
23639 #: ../fish/guestfish-actions.pod:695
23640 msgid "chmod"
23641 msgstr ""
23642
23643 #. type: verbatim
23644 #: ../fish/guestfish-actions.pod:697
23645 #, no-wrap
23646 msgid ""
23647 " chmod mode path\n"
23648 "\n"
23649 msgstr ""
23650
23651 #. type: =head2
23652 #: ../fish/guestfish-actions.pod:708
23653 msgid "chown"
23654 msgstr ""
23655
23656 #. type: verbatim
23657 #: ../fish/guestfish-actions.pod:710
23658 #, no-wrap
23659 msgid ""
23660 " chown owner group path\n"
23661 "\n"
23662 msgstr ""
23663
23664 #. type: =head2
23665 #: ../fish/guestfish-actions.pod:718
23666 msgid "command"
23667 msgstr ""
23668
23669 #. type: verbatim
23670 #: ../fish/guestfish-actions.pod:720
23671 #, no-wrap
23672 msgid ""
23673 " command 'arguments ...'\n"
23674 "\n"
23675 msgstr ""
23676
23677 #. type: textblock
23678 #: ../fish/guestfish-actions.pod:727
23679 msgid ""
23680 "The single parameter is an argv-style list of arguments.  The first element "
23681 "is the name of the program to run.  Subsequent elements are parameters.  The"
23682 " list must be non-empty (ie. must contain a program name).  Note that the "
23683 "command runs directly, and is I<not> invoked via the shell (see L</sh>)."
23684 msgstr ""
23685
23686 #. type: =head2
23687 #: ../fish/guestfish-actions.pod:755
23688 msgid "command-lines"
23689 msgstr ""
23690
23691 #. type: verbatim
23692 #: ../fish/guestfish-actions.pod:757
23693 #, no-wrap
23694 msgid ""
23695 " command-lines 'arguments ...'\n"
23696 "\n"
23697 msgstr ""
23698
23699 #. type: textblock
23700 #: ../fish/guestfish-actions.pod:759
23701 msgid ""
23702 "This is the same as L</command>, but splits the result into a list of lines."
23703 msgstr ""
23704
23705 #. type: textblock
23706 #: ../fish/guestfish-actions.pod:762
23707 msgid "See also: L</sh-lines>"
23708 msgstr ""
23709
23710 #. type: =head2
23711 #: ../fish/guestfish-actions.pod:767
23712 msgid "config"
23713 msgstr ""
23714
23715 #. type: verbatim
23716 #: ../fish/guestfish-actions.pod:769
23717 #, no-wrap
23718 msgid ""
23719 " config qemuparam qemuvalue\n"
23720 "\n"
23721 msgstr ""
23722
23723 #. type: =head2
23724 #: ../fish/guestfish-actions.pod:780
23725 msgid "copy-size"
23726 msgstr ""
23727
23728 #. type: verbatim
23729 #: ../fish/guestfish-actions.pod:782
23730 #, no-wrap
23731 msgid ""
23732 " copy-size src dest size\n"
23733 "\n"
23734 msgstr ""
23735
23736 #. type: =head2
23737 #: ../fish/guestfish-actions.pod:790
23738 msgid "cp"
23739 msgstr ""
23740
23741 #. type: verbatim
23742 #: ../fish/guestfish-actions.pod:792
23743 #, no-wrap
23744 msgid ""
23745 " cp src dest\n"
23746 "\n"
23747 msgstr ""
23748
23749 #. type: =head2
23750 #: ../fish/guestfish-actions.pod:797
23751 msgid "cp-a"
23752 msgstr ""
23753
23754 #. type: verbatim
23755 #: ../fish/guestfish-actions.pod:799
23756 #, no-wrap
23757 msgid ""
23758 " cp-a src dest\n"
23759 "\n"
23760 msgstr ""
23761
23762 #. type: =head2
23763 #: ../fish/guestfish-actions.pod:804
23764 msgid "dd"
23765 msgstr ""
23766
23767 #. type: verbatim
23768 #: ../fish/guestfish-actions.pod:806
23769 #, no-wrap
23770 msgid ""
23771 " dd src dest\n"
23772 "\n"
23773 msgstr ""
23774
23775 #. type: textblock
23776 #: ../fish/guestfish-actions.pod:813
23777 msgid ""
23778 "If the destination is a device, it must be as large or larger than the "
23779 "source file or device, otherwise the copy will fail.  This command cannot do"
23780 " partial copies (see L</copy-size>)."
23781 msgstr ""
23782
23783 #. type: =head2
23784 #: ../fish/guestfish-actions.pod:817
23785 msgid "df"
23786 msgstr ""
23787
23788 #. type: verbatim
23789 #: ../fish/guestfish-actions.pod:819
23790 #, no-wrap
23791 msgid ""
23792 " df\n"
23793 "\n"
23794 msgstr ""
23795
23796 #. type: textblock
23797 #: ../fish/guestfish-actions.pod:823 ../fish/guestfish-actions.pod:834
23798 msgid ""
23799 "This command is mostly useful for interactive sessions.  It is I<not> "
23800 "intended that you try to parse the output string.  Use L</statvfs> from "
23801 "programs."
23802 msgstr ""
23803
23804 #. type: =head2
23805 #: ../fish/guestfish-actions.pod:827
23806 msgid "df-h"
23807 msgstr ""
23808
23809 #. type: verbatim
23810 #: ../fish/guestfish-actions.pod:829
23811 #, no-wrap
23812 msgid ""
23813 " df-h\n"
23814 "\n"
23815 msgstr ""
23816
23817 #. type: =head2
23818 #: ../fish/guestfish-actions.pod:838
23819 msgid "dmesg"
23820 msgstr ""
23821
23822 #. type: verbatim
23823 #: ../fish/guestfish-actions.pod:840
23824 #, no-wrap
23825 msgid ""
23826 " dmesg\n"
23827 "\n"
23828 msgstr ""
23829
23830 #. type: textblock
23831 #: ../fish/guestfish-actions.pod:846
23832 msgid ""
23833 "Another way to get the same information is to enable verbose messages with L"
23834 "</set-verbose> or by setting the environment variable C<LIBGUESTFS_DEBUG=1> "
23835 "before running the program."
23836 msgstr ""
23837
23838 #. type: =head2
23839 #: ../fish/guestfish-actions.pod:851
23840 msgid "download"
23841 msgstr ""
23842
23843 #. type: verbatim
23844 #: ../fish/guestfish-actions.pod:853
23845 #, no-wrap
23846 msgid ""
23847 " download remotefilename (filename|-)\n"
23848 "\n"
23849 msgstr ""
23850
23851 #. type: textblock
23852 #: ../fish/guestfish-actions.pod:860
23853 msgid "See also L</upload>, L</cat>."
23854 msgstr ""
23855
23856 #. type: =head2
23857 #: ../fish/guestfish-actions.pod:864
23858 msgid "download-offset"
23859 msgstr ""
23860
23861 #. type: verbatim
23862 #: ../fish/guestfish-actions.pod:866
23863 #, no-wrap
23864 msgid ""
23865 " download-offset remotefilename (filename|-) offset size\n"
23866 "\n"
23867 msgstr ""
23868
23869 #. type: textblock
23870 #: ../fish/guestfish-actions.pod:874
23871 msgid ""
23872 "Note that there is no limit on the amount of data that can be downloaded "
23873 "with this call, unlike with L</pread>, and this call always reads the full "
23874 "amount unless an error occurs."
23875 msgstr ""
23876
23877 #. type: textblock
23878 #: ../fish/guestfish-actions.pod:879
23879 msgid "See also L</download>, L</pread>."
23880 msgstr ""
23881
23882 #. type: =head2
23883 #: ../fish/guestfish-actions.pod:883
23884 msgid "drop-caches"
23885 msgstr ""
23886
23887 #. type: verbatim
23888 #: ../fish/guestfish-actions.pod:885
23889 #, no-wrap
23890 msgid ""
23891 " drop-caches whattodrop\n"
23892 "\n"
23893 msgstr ""
23894
23895 #. type: =head2
23896 #: ../fish/guestfish-actions.pod:897
23897 msgid "du"
23898 msgstr ""
23899
23900 #. type: verbatim
23901 #: ../fish/guestfish-actions.pod:899
23902 #, no-wrap
23903 msgid ""
23904 " du path\n"
23905 "\n"
23906 msgstr ""
23907
23908 #. type: =head2
23909 #: ../fish/guestfish-actions.pod:911
23910 msgid "e2fsck-f"
23911 msgstr ""
23912
23913 #. type: verbatim
23914 #: ../fish/guestfish-actions.pod:913
23915 #, no-wrap
23916 msgid ""
23917 " e2fsck-f device\n"
23918 "\n"
23919 msgstr ""
23920
23921 #. type: textblock
23922 #: ../fish/guestfish-actions.pod:919
23923 msgid ""
23924 "This command is only needed because of L</resize2fs> (q.v.).  Normally you "
23925 "should use L</fsck>."
23926 msgstr ""
23927
23928 #. type: =head2
23929 #: ../fish/guestfish-actions.pod:922
23930 msgid "echo-daemon"
23931 msgstr ""
23932
23933 #. type: verbatim
23934 #: ../fish/guestfish-actions.pod:924
23935 #, no-wrap
23936 msgid ""
23937 " echo-daemon 'words ...'\n"
23938 "\n"
23939 msgstr ""
23940
23941 #. type: textblock
23942 #: ../fish/guestfish-actions.pod:931
23943 msgid "See also L</ping-daemon>."
23944 msgstr ""
23945
23946 #. type: =head2
23947 #: ../fish/guestfish-actions.pod:933
23948 msgid "egrep"
23949 msgstr ""
23950
23951 #. type: verbatim
23952 #: ../fish/guestfish-actions.pod:935
23953 #, no-wrap
23954 msgid ""
23955 " egrep regex path\n"
23956 "\n"
23957 msgstr ""
23958
23959 #. type: =head2
23960 #: ../fish/guestfish-actions.pod:943
23961 msgid "egrepi"
23962 msgstr ""
23963
23964 #. type: verbatim
23965 #: ../fish/guestfish-actions.pod:945
23966 #, no-wrap
23967 msgid ""
23968 " egrepi regex path\n"
23969 "\n"
23970 msgstr ""
23971
23972 #. type: =head2
23973 #: ../fish/guestfish-actions.pod:953
23974 msgid "equal"
23975 msgstr ""
23976
23977 #. type: verbatim
23978 #: ../fish/guestfish-actions.pod:955
23979 #, no-wrap
23980 msgid ""
23981 " equal file1 file2\n"
23982 "\n"
23983 msgstr ""
23984
23985 #. type: =head2
23986 #: ../fish/guestfish-actions.pod:962
23987 msgid "exists"
23988 msgstr ""
23989
23990 #. type: verbatim
23991 #: ../fish/guestfish-actions.pod:964
23992 #, no-wrap
23993 msgid ""
23994 " exists path\n"
23995 "\n"
23996 msgstr ""
23997
23998 #. type: textblock
23999 #: ../fish/guestfish-actions.pod:969
24000 msgid "See also L</is-file>, L</is-dir>, L</stat>."
24001 msgstr ""
24002
24003 #. type: =head2
24004 #: ../fish/guestfish-actions.pod:971
24005 msgid "fallocate"
24006 msgstr ""
24007
24008 #. type: verbatim
24009 #: ../fish/guestfish-actions.pod:973
24010 #, no-wrap
24011 msgid ""
24012 " fallocate path len\n"
24013 "\n"
24014 msgstr ""
24015
24016 #. type: =head2
24017 #: ../fish/guestfish-actions.pod:990
24018 msgid "fallocate64"
24019 msgstr ""
24020
24021 #. type: verbatim
24022 #: ../fish/guestfish-actions.pod:992
24023 #, no-wrap
24024 msgid ""
24025 " fallocate64 path len\n"
24026 "\n"
24027 msgstr ""
24028
24029 #. type: textblock
24030 #: ../fish/guestfish-actions.pod:998
24031 msgid ""
24032 "Note that this call allocates disk blocks for the file.  To create a sparse "
24033 "file use L</truncate-size> instead."
24034 msgstr ""
24035
24036 #. type: textblock
24037 #: ../fish/guestfish-actions.pod:1001
24038 msgid ""
24039 "The deprecated call L</fallocate> does the same, but owing to an oversight "
24040 "it only allowed 30 bit lengths to be specified, effectively limiting the "
24041 "maximum size of files created through that call to 1GB."
24042 msgstr ""
24043
24044 #. type: =head2
24045 #: ../fish/guestfish-actions.pod:1010
24046 msgid "fgrep"
24047 msgstr ""
24048
24049 #. type: verbatim
24050 #: ../fish/guestfish-actions.pod:1012
24051 #, no-wrap
24052 msgid ""
24053 " fgrep pattern path\n"
24054 "\n"
24055 msgstr ""
24056
24057 #. type: =head2
24058 #: ../fish/guestfish-actions.pod:1020
24059 msgid "fgrepi"
24060 msgstr ""
24061
24062 #. type: verbatim
24063 #: ../fish/guestfish-actions.pod:1022
24064 #, no-wrap
24065 msgid ""
24066 " fgrepi pattern path\n"
24067 "\n"
24068 msgstr ""
24069
24070 #. type: =head2
24071 #: ../fish/guestfish-actions.pod:1030
24072 msgid "file"
24073 msgstr ""
24074
24075 #. type: verbatim
24076 #: ../fish/guestfish-actions.pod:1032
24077 #, no-wrap
24078 msgid ""
24079 " file path\n"
24080 "\n"
24081 msgstr ""
24082
24083 #. type: textblock
24084 #: ../fish/guestfish-actions.pod:1048
24085 msgid ""
24086 "See also: L<file(1)>, L</vfs-type>, L</lstat>, L</is-file>, L</is-blockdev> "
24087 "(etc), L</is-zero>."
24088 msgstr ""
24089
24090 #. type: =head2
24091 #: ../fish/guestfish-actions.pod:1051
24092 msgid "file-architecture"
24093 msgstr ""
24094
24095 #. type: verbatim
24096 #: ../fish/guestfish-actions.pod:1053
24097 #, no-wrap
24098 msgid ""
24099 " file-architecture filename\n"
24100 "\n"
24101 msgstr ""
24102
24103 #. type: =head2
24104 #: ../fish/guestfish-actions.pod:1156
24105 msgid "filesize"
24106 msgstr ""
24107
24108 #. type: verbatim
24109 #: ../fish/guestfish-actions.pod:1158
24110 #, no-wrap
24111 msgid ""
24112 " filesize file\n"
24113 "\n"
24114 msgstr ""
24115
24116 #. type: textblock
24117 #: ../fish/guestfish-actions.pod:1162
24118 msgid ""
24119 "To get other stats about a file, use L</stat>, L</lstat>, L</is-dir>, L</is-"
24120 "file> etc.  To get the size of block devices, use L</blockdev-getsize64>."
24121 msgstr ""
24122
24123 #. type: =head2
24124 #: ../fish/guestfish-actions.pod:1166
24125 msgid "fill"
24126 msgstr ""
24127
24128 #. type: verbatim
24129 #: ../fish/guestfish-actions.pod:1168
24130 #, no-wrap
24131 msgid ""
24132 " fill c len path\n"
24133 "\n"
24134 msgstr ""
24135
24136 #. type: textblock
24137 #: ../fish/guestfish-actions.pod:1174
24138 msgid ""
24139 "To fill a file with zero bytes (sparsely), it is much more efficient to use "
24140 "L</truncate-size>.  To create a file with a pattern of repeating bytes use L"
24141 "</fill-pattern>."
24142 msgstr ""
24143
24144 #. type: =head2
24145 #: ../fish/guestfish-actions.pod:1179
24146 msgid "fill-pattern"
24147 msgstr ""
24148
24149 #. type: verbatim
24150 #: ../fish/guestfish-actions.pod:1181
24151 #, no-wrap
24152 msgid ""
24153 " fill-pattern pattern len path\n"
24154 "\n"
24155 msgstr ""
24156
24157 #. type: textblock
24158 #: ../fish/guestfish-actions.pod:1183
24159 msgid ""
24160 "This function is like L</fill> except that it creates a new file of length "
24161 "C<len> containing the repeating pattern of bytes in C<pattern>.  The pattern"
24162 " is truncated if necessary to ensure the length of the file is exactly "
24163 "C<len> bytes."
24164 msgstr ""
24165
24166 #. type: =head2
24167 #: ../fish/guestfish-actions.pod:1188
24168 msgid "find"
24169 msgstr ""
24170
24171 #. type: verbatim
24172 #: ../fish/guestfish-actions.pod:1190
24173 #, no-wrap
24174 msgid ""
24175 " find directory\n"
24176 "\n"
24177 msgstr ""
24178
24179 #. type: textblock
24180 #: ../fish/guestfish-actions.pod:1204
24181 msgid "then the returned list from L</find> C</tmp> would be 4 elements:"
24182 msgstr ""
24183
24184 #. type: textblock
24185 #: ../fish/guestfish-actions.pod:1217
24186 msgid "See also L</find0>."
24187 msgstr ""
24188
24189 #. type: =head2
24190 #: ../fish/guestfish-actions.pod:1222
24191 msgid "find0"
24192 msgstr ""
24193
24194 #. type: verbatim
24195 #: ../fish/guestfish-actions.pod:1224
24196 #, no-wrap
24197 msgid ""
24198 " find0 directory (files|-)\n"
24199 "\n"
24200 msgstr ""
24201
24202 #. type: textblock
24203 #: ../fish/guestfish-actions.pod:1230
24204 msgid ""
24205 "This command works the same way as L</find> with the following exceptions:"
24206 msgstr ""
24207
24208 #. type: =head2
24209 #: ../fish/guestfish-actions.pod:1257
24210 msgid "findfs-label"
24211 msgstr ""
24212
24213 #. type: verbatim
24214 #: ../fish/guestfish-actions.pod:1259
24215 #, no-wrap
24216 msgid ""
24217 " findfs-label label\n"
24218 "\n"
24219 msgstr ""
24220
24221 #. type: textblock
24222 #: ../fish/guestfish-actions.pod:1265
24223 msgid "To find the label of a filesystem, use L</vfs-label>."
24224 msgstr ""
24225
24226 #. type: =head2
24227 #: ../fish/guestfish-actions.pod:1267
24228 msgid "findfs-uuid"
24229 msgstr ""
24230
24231 #. type: verbatim
24232 #: ../fish/guestfish-actions.pod:1269
24233 #, no-wrap
24234 msgid ""
24235 " findfs-uuid uuid\n"
24236 "\n"
24237 msgstr ""
24238
24239 #. type: textblock
24240 #: ../fish/guestfish-actions.pod:1275
24241 msgid "To find the UUID of a filesystem, use L</vfs-uuid>."
24242 msgstr ""
24243
24244 #. type: =head2
24245 #: ../fish/guestfish-actions.pod:1277
24246 msgid "fsck"
24247 msgstr ""
24248
24249 #. type: verbatim
24250 #: ../fish/guestfish-actions.pod:1279
24251 #, no-wrap
24252 msgid ""
24253 " fsck fstype device\n"
24254 "\n"
24255 msgstr ""
24256
24257 #. type: =head2
24258 #: ../fish/guestfish-actions.pod:1309
24259 msgid "get-append"
24260 msgstr ""
24261
24262 #. type: verbatim
24263 #: ../fish/guestfish-actions.pod:1311
24264 #, no-wrap
24265 msgid ""
24266 " get-append\n"
24267 "\n"
24268 msgstr ""
24269
24270 #. type: =head2
24271 #: ../fish/guestfish-actions.pod:1318
24272 msgid "get-attach-method"
24273 msgstr ""
24274
24275 #. type: verbatim
24276 #: ../fish/guestfish-actions.pod:1320
24277 #, no-wrap
24278 msgid ""
24279 " get-attach-method\n"
24280 "\n"
24281 msgstr ""
24282
24283 #. type: textblock
24284 #: ../fish/guestfish-actions.pod:1322
24285 msgid "Return the current attach method.  See L</set-attach-method>."
24286 msgstr ""
24287
24288 #. type: =head2
24289 #: ../fish/guestfish-actions.pod:1324
24290 msgid "get-autosync"
24291 msgstr ""
24292
24293 #. type: verbatim
24294 #: ../fish/guestfish-actions.pod:1326
24295 #, no-wrap
24296 msgid ""
24297 " get-autosync\n"
24298 "\n"
24299 msgstr ""
24300
24301 #. type: =head2
24302 #: ../fish/guestfish-actions.pod:1330
24303 msgid "get-direct"
24304 msgstr ""
24305
24306 #. type: verbatim
24307 #: ../fish/guestfish-actions.pod:1332
24308 #, no-wrap
24309 msgid ""
24310 " get-direct\n"
24311 "\n"
24312 msgstr ""
24313
24314 #. type: =head2
24315 #: ../fish/guestfish-actions.pod:1336
24316 msgid "get-e2label"
24317 msgstr ""
24318
24319 #. type: verbatim
24320 #: ../fish/guestfish-actions.pod:1338
24321 #, no-wrap
24322 msgid ""
24323 " get-e2label device\n"
24324 "\n"
24325 msgstr ""
24326
24327 #. type: =head2
24328 #: ../fish/guestfish-actions.pod:1350
24329 msgid "get-e2uuid"
24330 msgstr ""
24331
24332 #. type: verbatim
24333 #: ../fish/guestfish-actions.pod:1352
24334 #, no-wrap
24335 msgid ""
24336 " get-e2uuid device\n"
24337 "\n"
24338 msgstr ""
24339
24340 #. type: =head2
24341 #: ../fish/guestfish-actions.pod:1364
24342 msgid "get-memsize"
24343 msgstr ""
24344
24345 #. type: verbatim
24346 #: ../fish/guestfish-actions.pod:1366
24347 #, no-wrap
24348 msgid ""
24349 " get-memsize\n"
24350 "\n"
24351 msgstr ""
24352
24353 #. type: textblock
24354 #: ../fish/guestfish-actions.pod:1371
24355 msgid ""
24356 "If L</set-memsize> was not called on this handle, and if "
24357 "C<LIBGUESTFS_MEMSIZE> was not set, then this returns the compiled-in default"
24358 " value for memsize."
24359 msgstr ""
24360
24361 #. type: =head2
24362 #: ../fish/guestfish-actions.pod:1378
24363 msgid "get-network"
24364 msgstr ""
24365
24366 #. type: verbatim
24367 #: ../fish/guestfish-actions.pod:1380
24368 #, no-wrap
24369 msgid ""
24370 " get-network\n"
24371 "\n"
24372 msgstr ""
24373
24374 #. type: =head2
24375 #: ../fish/guestfish-actions.pod:1384
24376 msgid "get-path"
24377 msgstr ""
24378
24379 #. type: verbatim
24380 #: ../fish/guestfish-actions.pod:1386
24381 #, no-wrap
24382 msgid ""
24383 " get-path\n"
24384 "\n"
24385 msgstr ""
24386
24387 #. type: =head2
24388 #: ../fish/guestfish-actions.pod:1393
24389 msgid "get-pgroup"
24390 msgstr ""
24391
24392 #. type: verbatim
24393 #: ../fish/guestfish-actions.pod:1395
24394 #, no-wrap
24395 msgid ""
24396 " get-pgroup\n"
24397 "\n"
24398 msgstr ""
24399
24400 #. type: =head2
24401 #: ../fish/guestfish-actions.pod:1399
24402 msgid "get-pid"
24403 msgstr ""
24404
24405 #. type: =head2
24406 #: ../fish/guestfish-actions.pod:1401
24407 msgid "pid"
24408 msgstr ""
24409
24410 #. type: verbatim
24411 #: ../fish/guestfish-actions.pod:1403
24412 #, no-wrap
24413 msgid ""
24414 " get-pid\n"
24415 "\n"
24416 msgstr ""
24417
24418 #. type: =head2
24419 #: ../fish/guestfish-actions.pod:1410
24420 msgid "get-qemu"
24421 msgstr ""
24422
24423 #. type: verbatim
24424 #: ../fish/guestfish-actions.pod:1412
24425 #, no-wrap
24426 msgid ""
24427 " get-qemu\n"
24428 "\n"
24429 msgstr ""
24430
24431 #. type: =head2
24432 #: ../fish/guestfish-actions.pod:1419
24433 msgid "get-recovery-proc"
24434 msgstr ""
24435
24436 #. type: verbatim
24437 #: ../fish/guestfish-actions.pod:1421
24438 #, no-wrap
24439 msgid ""
24440 " get-recovery-proc\n"
24441 "\n"
24442 msgstr ""
24443
24444 #. type: =head2
24445 #: ../fish/guestfish-actions.pod:1425
24446 msgid "get-selinux"
24447 msgstr ""
24448
24449 #. type: verbatim
24450 #: ../fish/guestfish-actions.pod:1427
24451 #, no-wrap
24452 msgid ""
24453 " get-selinux\n"
24454 "\n"
24455 msgstr ""
24456
24457 #. type: textblock
24458 #: ../fish/guestfish-actions.pod:1429
24459 msgid ""
24460 "This returns the current setting of the selinux flag which is passed to the "
24461 "appliance at boot time.  See L</set-selinux>."
24462 msgstr ""
24463
24464 #. type: =head2
24465 #: ../fish/guestfish-actions.pod:1435
24466 msgid "get-state"
24467 msgstr ""
24468
24469 #. type: verbatim
24470 #: ../fish/guestfish-actions.pod:1437
24471 #, no-wrap
24472 msgid ""
24473 " get-state\n"
24474 "\n"
24475 msgstr ""
24476
24477 #. type: =head2
24478 #: ../fish/guestfish-actions.pod:1444
24479 msgid "get-trace"
24480 msgstr ""
24481
24482 #. type: verbatim
24483 #: ../fish/guestfish-actions.pod:1446
24484 #, no-wrap
24485 msgid ""
24486 " get-trace\n"
24487 "\n"
24488 msgstr ""
24489
24490 #. type: =head2
24491 #: ../fish/guestfish-actions.pod:1450
24492 msgid "get-umask"
24493 msgstr ""
24494
24495 #. type: verbatim
24496 #: ../fish/guestfish-actions.pod:1452
24497 #, no-wrap
24498 msgid ""
24499 " get-umask\n"
24500 "\n"
24501 msgstr ""
24502
24503 #. type: textblock
24504 #: ../fish/guestfish-actions.pod:1454
24505 msgid ""
24506 "Return the current umask.  By default the umask is C<022> unless it has been"
24507 " set by calling L</umask>."
24508 msgstr ""
24509
24510 #. type: =head2
24511 #: ../fish/guestfish-actions.pod:1457
24512 msgid "get-verbose"
24513 msgstr ""
24514
24515 #. type: verbatim
24516 #: ../fish/guestfish-actions.pod:1459
24517 #, no-wrap
24518 msgid ""
24519 " get-verbose\n"
24520 "\n"
24521 msgstr ""
24522
24523 #. type: =head2
24524 #: ../fish/guestfish-actions.pod:1463
24525 msgid "getcon"
24526 msgstr ""
24527
24528 #. type: verbatim
24529 #: ../fish/guestfish-actions.pod:1465
24530 #, no-wrap
24531 msgid ""
24532 " getcon\n"
24533 "\n"
24534 msgstr ""
24535
24536 #. type: textblock
24537 #: ../fish/guestfish-actions.pod:1469
24538 msgid "See the documentation about SELINUX in L<guestfs(3)>, and L</setcon>"
24539 msgstr ""
24540
24541 #. type: =head2
24542 #: ../fish/guestfish-actions.pod:1472
24543 msgid "getxattr"
24544 msgstr ""
24545
24546 #. type: verbatim
24547 #: ../fish/guestfish-actions.pod:1474
24548 #, no-wrap
24549 msgid ""
24550 " getxattr path name\n"
24551 "\n"
24552 msgstr ""
24553
24554 #. type: textblock
24555 #: ../fish/guestfish-actions.pod:1476
24556 msgid ""
24557 "Get a single extended attribute from file C<path> named C<name>.  This call "
24558 "follows symlinks.  If you want to lookup an extended attribute for the "
24559 "symlink itself, use L</lgetxattr>."
24560 msgstr ""
24561
24562 #. type: textblock
24563 #: ../fish/guestfish-actions.pod:1480 ../fish/guestfish-actions.pod:2507
24564 msgid ""
24565 "Normally it is better to get all extended attributes from a file in one go "
24566 "by calling L</getxattrs>.  However some Linux filesystem implementations are"
24567 " buggy and do not provide a way to list out attributes.  For these "
24568 "filesystems (notably ntfs-3g)  you have to know the names of the extended "
24569 "attributes you want in advance and call this function."
24570 msgstr ""
24571
24572 #. type: textblock
24573 #: ../fish/guestfish-actions.pod:1490
24574 msgid "See also: L</getxattrs>, L</lgetxattr>, L<attr(5)>."
24575 msgstr ""
24576
24577 #. type: =head2
24578 #: ../fish/guestfish-actions.pod:1492
24579 msgid "getxattrs"
24580 msgstr ""
24581
24582 #. type: verbatim
24583 #: ../fish/guestfish-actions.pod:1494
24584 #, no-wrap
24585 msgid ""
24586 " getxattrs path\n"
24587 "\n"
24588 msgstr ""
24589
24590 #. type: textblock
24591 #: ../fish/guestfish-actions.pod:1502
24592 msgid "See also: L</lgetxattrs>, L<attr(5)>."
24593 msgstr ""
24594
24595 #. type: =head2
24596 #: ../fish/guestfish-actions.pod:1504
24597 msgid "glob-expand"
24598 msgstr ""
24599
24600 #. type: verbatim
24601 #: ../fish/guestfish-actions.pod:1506
24602 #, no-wrap
24603 msgid ""
24604 " glob-expand pattern\n"
24605 "\n"
24606 msgstr ""
24607
24608 #. type: =head2
24609 #: ../fish/guestfish-actions.pod:1519
24610 msgid "grep"
24611 msgstr ""
24612
24613 #. type: verbatim
24614 #: ../fish/guestfish-actions.pod:1521
24615 #, no-wrap
24616 msgid ""
24617 " grep regex path\n"
24618 "\n"
24619 msgstr ""
24620
24621 #. type: =head2
24622 #: ../fish/guestfish-actions.pod:1529
24623 msgid "grepi"
24624 msgstr ""
24625
24626 #. type: verbatim
24627 #: ../fish/guestfish-actions.pod:1531
24628 #, no-wrap
24629 msgid ""
24630 " grepi regex path\n"
24631 "\n"
24632 msgstr ""
24633
24634 #. type: =head2
24635 #: ../fish/guestfish-actions.pod:1539
24636 msgid "grub-install"
24637 msgstr ""
24638
24639 #. type: verbatim
24640 #: ../fish/guestfish-actions.pod:1541
24641 #, no-wrap
24642 msgid ""
24643 " grub-install root device\n"
24644 "\n"
24645 msgstr ""
24646
24647 #. type: =head2
24648 #: ../fish/guestfish-actions.pod:1557
24649 msgid "head"
24650 msgstr ""
24651
24652 #. type: verbatim
24653 #: ../fish/guestfish-actions.pod:1559
24654 #, no-wrap
24655 msgid ""
24656 " head path\n"
24657 "\n"
24658 msgstr ""
24659
24660 #. type: =head2
24661 #: ../fish/guestfish-actions.pod:1567
24662 msgid "head-n"
24663 msgstr ""
24664
24665 #. type: verbatim
24666 #: ../fish/guestfish-actions.pod:1569
24667 #, no-wrap
24668 msgid ""
24669 " head-n nrlines path\n"
24670 "\n"
24671 msgstr ""
24672
24673 #. type: =head2
24674 #: ../fish/guestfish-actions.pod:1582
24675 msgid "hexdump"
24676 msgstr ""
24677
24678 #. type: verbatim
24679 #: ../fish/guestfish-actions.pod:1584
24680 #, no-wrap
24681 msgid ""
24682 " hexdump path\n"
24683 "\n"
24684 msgstr ""
24685
24686 #. type: =head2
24687 #: ../fish/guestfish-actions.pod:1592
24688 msgid "initrd-cat"
24689 msgstr ""
24690
24691 #. type: verbatim
24692 #: ../fish/guestfish-actions.pod:1594
24693 #, no-wrap
24694 msgid ""
24695 " initrd-cat initrdpath filename\n"
24696 "\n"
24697 msgstr ""
24698
24699 #. type: textblock
24700 #: ../fish/guestfish-actions.pod:1606
24701 msgid "See also L</initrd-list>."
24702 msgstr ""
24703
24704 #. type: =head2
24705 #: ../fish/guestfish-actions.pod:1611
24706 msgid "initrd-list"
24707 msgstr ""
24708
24709 #. type: verbatim
24710 #: ../fish/guestfish-actions.pod:1613
24711 #, no-wrap
24712 msgid ""
24713 " initrd-list path\n"
24714 "\n"
24715 msgstr ""
24716
24717 #. type: =head2
24718 #: ../fish/guestfish-actions.pod:1625
24719 msgid "inotify-add-watch"
24720 msgstr ""
24721
24722 #. type: verbatim
24723 #: ../fish/guestfish-actions.pod:1627
24724 #, no-wrap
24725 msgid ""
24726 " inotify-add-watch path mask\n"
24727 "\n"
24728 msgstr ""
24729
24730 #. type: =head2
24731 #: ../fish/guestfish-actions.pod:1639
24732 msgid "inotify-close"
24733 msgstr ""
24734
24735 #. type: verbatim
24736 #: ../fish/guestfish-actions.pod:1641
24737 #, no-wrap
24738 msgid ""
24739 " inotify-close\n"
24740 "\n"
24741 msgstr ""
24742
24743 #. type: =head2
24744 #: ../fish/guestfish-actions.pod:1647
24745 msgid "inotify-files"
24746 msgstr ""
24747
24748 #. type: verbatim
24749 #: ../fish/guestfish-actions.pod:1649
24750 #, no-wrap
24751 msgid ""
24752 " inotify-files\n"
24753 "\n"
24754 msgstr ""
24755
24756 #. type: textblock
24757 #: ../fish/guestfish-actions.pod:1651
24758 msgid ""
24759 "This function is a helpful wrapper around L</inotify-read> which just "
24760 "returns a list of pathnames of objects that were touched.  The returned "
24761 "pathnames are sorted and deduplicated."
24762 msgstr ""
24763
24764 #. type: =head2
24765 #: ../fish/guestfish-actions.pod:1655
24766 msgid "inotify-init"
24767 msgstr ""
24768
24769 #. type: verbatim
24770 #: ../fish/guestfish-actions.pod:1657
24771 #, no-wrap
24772 msgid ""
24773 " inotify-init maxevents\n"
24774 "\n"
24775 msgstr ""
24776
24777 #. type: textblock
24778 #: ../fish/guestfish-actions.pod:1663
24779 msgid ""
24780 "C<maxevents> is the maximum number of events which will be queued up between"
24781 " calls to L</inotify-read> or L</inotify-files>.  If this is passed as C<0>,"
24782 " then the kernel (or previously set)  default is used.  For Linux 2.6.29 the"
24783 " default was 16384 events.  Beyond this limit, the kernel throws away "
24784 "events, but records the fact that it threw them away by setting a flag "
24785 "C<IN_Q_OVERFLOW> in the returned structure list (see L</inotify-read>)."
24786 msgstr ""
24787
24788 #. type: textblock
24789 #: ../fish/guestfish-actions.pod:1673
24790 msgid ""
24791 "Before any events are generated, you have to add some watches to the "
24792 "internal watch list.  See: L</inotify-add-watch>, L</inotify-rm-watch> and L"
24793 "</inotify-watch-all>."
24794 msgstr ""
24795
24796 #. type: textblock
24797 #: ../fish/guestfish-actions.pod:1679
24798 msgid ""
24799 "Queued up events should be read periodically by calling L</inotify-read> (or"
24800 " L</inotify-files> which is just a helpful wrapper around L</inotify-read>)."
24801 "  If you don't read the events out often enough then you risk the internal "
24802 "queue overflowing."
24803 msgstr ""
24804
24805 #. type: textblock
24806 #: ../fish/guestfish-actions.pod:1686
24807 msgid ""
24808 "The handle should be closed after use by calling L</inotify-close>.  This "
24809 "also removes any watches automatically."
24810 msgstr ""
24811
24812 #. type: =head2
24813 #: ../fish/guestfish-actions.pod:1695
24814 msgid "inotify-read"
24815 msgstr ""
24816
24817 #. type: verbatim
24818 #: ../fish/guestfish-actions.pod:1697
24819 #, no-wrap
24820 msgid ""
24821 " inotify-read\n"
24822 "\n"
24823 msgstr ""
24824
24825 #. type: =head2
24826 #: ../fish/guestfish-actions.pod:1710
24827 msgid "inotify-rm-watch"
24828 msgstr ""
24829
24830 #. type: verbatim
24831 #: ../fish/guestfish-actions.pod:1712
24832 #, no-wrap
24833 msgid ""
24834 " inotify-rm-watch wd\n"
24835 "\n"
24836 msgstr ""
24837
24838 #. type: textblock
24839 #: ../fish/guestfish-actions.pod:1714
24840 msgid "Remove a previously defined inotify watch.  See L</inotify-add-watch>."
24841 msgstr ""
24842
24843 #. type: =head2
24844 #: ../fish/guestfish-actions.pod:1717
24845 msgid "inspect-get-arch"
24846 msgstr ""
24847
24848 #. type: verbatim
24849 #: ../fish/guestfish-actions.pod:1719
24850 #, no-wrap
24851 msgid ""
24852 " inspect-get-arch root\n"
24853 "\n"
24854 msgstr ""
24855
24856 #. type: textblock
24857 #: ../fish/guestfish-actions.pod:1721
24858 msgid ""
24859 "This returns the architecture of the inspected operating system.  The "
24860 "possible return values are listed under L</file-architecture>."
24861 msgstr ""
24862
24863 #. type: =head2
24864 #: ../fish/guestfish-actions.pod:1730
24865 msgid "inspect-get-distro"
24866 msgstr ""
24867
24868 #. type: verbatim
24869 #: ../fish/guestfish-actions.pod:1732
24870 #, no-wrap
24871 msgid ""
24872 " inspect-get-distro root\n"
24873 "\n"
24874 msgstr ""
24875
24876 #. type: =head2
24877 #: ../fish/guestfish-actions.pod:1813
24878 msgid "inspect-get-drive-mappings"
24879 msgstr ""
24880
24881 #. type: verbatim
24882 #: ../fish/guestfish-actions.pod:1815
24883 #, no-wrap
24884 msgid ""
24885 " inspect-get-drive-mappings root\n"
24886 "\n"
24887 msgstr ""
24888
24889 #. type: textblock
24890 #: ../fish/guestfish-actions.pod:1842
24891 msgid ""
24892 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24893 "get-mountpoints>, L</inspect-get-filesystems>."
24894 msgstr ""
24895
24896 #. type: =head2
24897 #: ../fish/guestfish-actions.pod:1846
24898 msgid "inspect-get-filesystems"
24899 msgstr ""
24900
24901 #. type: verbatim
24902 #: ../fish/guestfish-actions.pod:1848
24903 #, no-wrap
24904 msgid ""
24905 " inspect-get-filesystems root\n"
24906 "\n"
24907 msgstr ""
24908
24909 #. type: textblock
24910 #: ../fish/guestfish-actions.pod:1858
24911 msgid ""
24912 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24913 "get-mountpoints>."
24914 msgstr ""
24915
24916 #. type: =head2
24917 #: ../fish/guestfish-actions.pod:1861
24918 msgid "inspect-get-format"
24919 msgstr ""
24920
24921 #. type: verbatim
24922 #: ../fish/guestfish-actions.pod:1863
24923 #, no-wrap
24924 msgid ""
24925 " inspect-get-format root\n"
24926 "\n"
24927 msgstr ""
24928
24929 #. type: =head2
24930 #: ../fish/guestfish-actions.pod:1892
24931 msgid "inspect-get-hostname"
24932 msgstr ""
24933
24934 #. type: verbatim
24935 #: ../fish/guestfish-actions.pod:1894
24936 #, no-wrap
24937 msgid ""
24938 " inspect-get-hostname root\n"
24939 "\n"
24940 msgstr ""
24941
24942 #. type: =head2
24943 #: ../fish/guestfish-actions.pod:1904
24944 msgid "inspect-get-icon"
24945 msgstr ""
24946
24947 #. type: verbatim
24948 #: ../fish/guestfish-actions.pod:1906
24949 #, no-wrap
24950 msgid ""
24951 " inspect-get-icon root [favicon:..] [highquality:..]\n"
24952 "\n"
24953 msgstr ""
24954
24955 #. type: =head2
24956 #: ../fish/guestfish-actions.pod:1970
24957 msgid "inspect-get-major-version"
24958 msgstr ""
24959
24960 #. type: verbatim
24961 #: ../fish/guestfish-actions.pod:1972
24962 #, no-wrap
24963 msgid ""
24964 " inspect-get-major-version root\n"
24965 "\n"
24966 msgstr ""
24967
24968 #. type: =head2
24969 #: ../fish/guestfish-actions.pod:1988
24970 msgid "inspect-get-minor-version"
24971 msgstr ""
24972
24973 #. type: verbatim
24974 #: ../fish/guestfish-actions.pod:1990
24975 #, no-wrap
24976 msgid ""
24977 " inspect-get-minor-version root\n"
24978 "\n"
24979 msgstr ""
24980
24981 #. type: textblock
24982 #: ../fish/guestfish-actions.pod:1997
24983 msgid ""
24984 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
24985 "get-major-version>."
24986 msgstr ""
24987
24988 #. type: =head2
24989 #: ../fish/guestfish-actions.pod:2000
24990 msgid "inspect-get-mountpoints"
24991 msgstr ""
24992
24993 #. type: verbatim
24994 #: ../fish/guestfish-actions.pod:2002
24995 #, no-wrap
24996 msgid ""
24997 " inspect-get-mountpoints root\n"
24998 "\n"
24999 msgstr ""
25000
25001 #. type: textblock
25002 #: ../fish/guestfish-actions.pod:2021
25003 msgid ""
25004 "For operating systems like Windows which still use drive letters, this call "
25005 "will only return an entry for the first drive \"mounted on\" C</>.  For "
25006 "information about the mapping of drive letters to partitions, see L"
25007 "</inspect-get-drive-mappings>."
25008 msgstr ""
25009
25010 #. type: textblock
25011 #: ../fish/guestfish-actions.pod:2027
25012 msgid ""
25013 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
25014 "get-filesystems>."
25015 msgstr ""
25016
25017 #. type: =head2
25018 #: ../fish/guestfish-actions.pod:2030
25019 msgid "inspect-get-package-format"
25020 msgstr ""
25021
25022 #. type: verbatim
25023 #: ../fish/guestfish-actions.pod:2032
25024 #, no-wrap
25025 msgid ""
25026 " inspect-get-package-format root\n"
25027 "\n"
25028 msgstr ""
25029
25030 #. type: textblock
25031 #: ../fish/guestfish-actions.pod:2034
25032 msgid ""
25033 "This function and L</inspect-get-package-management> return the package "
25034 "format and package management tool used by the inspected operating system.  "
25035 "For example for Fedora these functions would return C<rpm> (package format) "
25036 "and C<yum> (package management)."
25037 msgstr ""
25038
25039 #. type: =head2
25040 #: ../fish/guestfish-actions.pod:2049
25041 msgid "inspect-get-package-management"
25042 msgstr ""
25043
25044 #. type: verbatim
25045 #: ../fish/guestfish-actions.pod:2051
25046 #, no-wrap
25047 msgid ""
25048 " inspect-get-package-management root\n"
25049 "\n"
25050 msgstr ""
25051
25052 #. type: textblock
25053 #: ../fish/guestfish-actions.pod:2053
25054 msgid ""
25055 "L</inspect-get-package-format> and this function return the package format "
25056 "and package management tool used by the inspected operating system.  For "
25057 "example for Fedora these functions would return C<rpm> (package format) and "
25058 "C<yum> (package management)."
25059 msgstr ""
25060
25061 #. type: =head2
25062 #: ../fish/guestfish-actions.pod:2070
25063 msgid "inspect-get-product-name"
25064 msgstr ""
25065
25066 #. type: verbatim
25067 #: ../fish/guestfish-actions.pod:2072
25068 #, no-wrap
25069 msgid ""
25070 " inspect-get-product-name root\n"
25071 "\n"
25072 msgstr ""
25073
25074 #. type: =head2
25075 #: ../fish/guestfish-actions.pod:2084
25076 msgid "inspect-get-product-variant"
25077 msgstr ""
25078
25079 #. type: verbatim
25080 #: ../fish/guestfish-actions.pod:2086
25081 #, no-wrap
25082 msgid ""
25083 " inspect-get-product-variant root\n"
25084 "\n"
25085 msgstr ""
25086
25087 #. type: textblock
25088 #: ../fish/guestfish-actions.pod:2107
25089 msgid ""
25090 "Please read L<guestfs(3)/INSPECTION> for more details.  See also L</inspect-"
25091 "get-product-name>, L</inspect-get-major-version>."
25092 msgstr ""
25093
25094 #. type: =head2
25095 #: ../fish/guestfish-actions.pod:2111
25096 msgid "inspect-get-roots"
25097 msgstr ""
25098
25099 #. type: verbatim
25100 #: ../fish/guestfish-actions.pod:2113
25101 #, no-wrap
25102 msgid ""
25103 " inspect-get-roots\n"
25104 "\n"
25105 msgstr ""
25106
25107 #. type: textblock
25108 #: ../fish/guestfish-actions.pod:2115
25109 msgid ""
25110 "This function is a convenient way to get the list of root devices, as "
25111 "returned from a previous call to L</inspect-os>, but without redoing the "
25112 "whole inspection process."
25113 msgstr ""
25114
25115 #. type: textblock
25116 #: ../fish/guestfish-actions.pod:2119
25117 msgid ""
25118 "This returns an empty list if either no root devices were found or the "
25119 "caller has not called L</inspect-os>."
25120 msgstr ""
25121
25122 #. type: =head2
25123 #: ../fish/guestfish-actions.pod:2124
25124 msgid "inspect-get-type"
25125 msgstr ""
25126
25127 #. type: verbatim
25128 #: ../fish/guestfish-actions.pod:2126
25129 #, no-wrap
25130 msgid ""
25131 " inspect-get-type root\n"
25132 "\n"
25133 msgstr ""
25134
25135 #. type: =head2
25136 #: ../fish/guestfish-actions.pod:2156
25137 msgid "inspect-get-windows-current-control-set"
25138 msgstr ""
25139
25140 #. type: verbatim
25141 #: ../fish/guestfish-actions.pod:2158
25142 #, no-wrap
25143 msgid ""
25144 " inspect-get-windows-current-control-set root\n"
25145 "\n"
25146 msgstr ""
25147
25148 #. type: =head2
25149 #: ../fish/guestfish-actions.pod:2169
25150 msgid "inspect-get-windows-systemroot"
25151 msgstr ""
25152
25153 #. type: verbatim
25154 #: ../fish/guestfish-actions.pod:2171
25155 #, no-wrap
25156 msgid ""
25157 " inspect-get-windows-systemroot root\n"
25158 "\n"
25159 msgstr ""
25160
25161 #. type: =head2
25162 #: ../fish/guestfish-actions.pod:2182
25163 msgid "inspect-is-live"
25164 msgstr ""
25165
25166 #. type: verbatim
25167 #: ../fish/guestfish-actions.pod:2184
25168 #, no-wrap
25169 msgid ""
25170 " inspect-is-live root\n"
25171 "\n"
25172 msgstr ""
25173
25174 #. type: textblock
25175 #: ../fish/guestfish-actions.pod:2186
25176 msgid ""
25177 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
25178 "then this returns true if a live image was detected on the disk."
25179 msgstr ""
25180
25181 #. type: =head2
25182 #: ../fish/guestfish-actions.pod:2192
25183 msgid "inspect-is-multipart"
25184 msgstr ""
25185
25186 #. type: verbatim
25187 #: ../fish/guestfish-actions.pod:2194
25188 #, no-wrap
25189 msgid ""
25190 " inspect-is-multipart root\n"
25191 "\n"
25192 msgstr ""
25193
25194 #. type: textblock
25195 #: ../fish/guestfish-actions.pod:2196
25196 msgid ""
25197 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
25198 "then this returns true if the disk is part of a set."
25199 msgstr ""
25200
25201 #. type: =head2
25202 #: ../fish/guestfish-actions.pod:2202
25203 msgid "inspect-is-netinst"
25204 msgstr ""
25205
25206 #. type: verbatim
25207 #: ../fish/guestfish-actions.pod:2204
25208 #, no-wrap
25209 msgid ""
25210 " inspect-is-netinst root\n"
25211 "\n"
25212 msgstr ""
25213
25214 #. type: textblock
25215 #: ../fish/guestfish-actions.pod:2206
25216 msgid ""
25217 "If L</inspect-get-format> returns C<installer> (this is an install disk), "
25218 "then this returns true if the disk is a network installer, ie. not a self-"
25219 "contained install CD but one which is likely to require network access to "
25220 "complete the install."
25221 msgstr ""
25222
25223 #. type: =head2
25224 #: ../fish/guestfish-actions.pod:2214
25225 msgid "inspect-list-applications"
25226 msgstr ""
25227
25228 #. type: verbatim
25229 #: ../fish/guestfish-actions.pod:2216
25230 #, no-wrap
25231 msgid ""
25232 " inspect-list-applications root\n"
25233 "\n"
25234 msgstr ""
25235
25236 #. type: textblock
25237 #: ../fish/guestfish-actions.pod:2220
25238 msgid ""
25239 "I<Note:> This call works differently from other parts of the inspection API."
25240 "  You have to call L</inspect-os>, then L</inspect-get-mountpoints>, then "
25241 "mount up the disks, before calling this.  Listing applications is a "
25242 "significantly more difficult operation which requires access to the full "
25243 "filesystem.  Also note that unlike the other L</inspect-get-*> calls which "
25244 "are just returning data cached in the libguestfs handle, this call actually "
25245 "reads parts of the mounted filesystems during the call."
25246 msgstr ""
25247
25248 #. type: =head2
25249 #: ../fish/guestfish-actions.pod:2310
25250 msgid "inspect-os"
25251 msgstr ""
25252
25253 #. type: verbatim
25254 #: ../fish/guestfish-actions.pod:2312
25255 #, no-wrap
25256 msgid ""
25257 " inspect-os\n"
25258 "\n"
25259 msgstr ""
25260
25261 #. type: textblock
25262 #: ../fish/guestfish-actions.pod:2327
25263 msgid ""
25264 "You can pass the root string(s) returned to other L</inspect-get-*> "
25265 "functions in order to query further information about each operating system,"
25266 " such as the name and version."
25267 msgstr ""
25268
25269 #. type: textblock
25270 #: ../fish/guestfish-actions.pod:2332
25271 msgid ""
25272 "This function uses other libguestfs features such as L</mount-ro> and L"
25273 "</umount-all> in order to mount and unmount filesystems and look at the "
25274 "contents.  This should be called with no disks currently mounted.  The "
25275 "function may also use Augeas, so any existing Augeas handle will be closed."
25276 msgstr ""
25277
25278 #. type: textblock
25279 #: ../fish/guestfish-actions.pod:2344 ../fish/guestfish-actions.pod:2542
25280 #: ../fish/guestfish-actions.pod:2601
25281 msgid "See also L</list-filesystems>."
25282 msgstr ""
25283
25284 #. type: =head2
25285 #: ../fish/guestfish-actions.pod:2346
25286 msgid "is-blockdev"
25287 msgstr ""
25288
25289 #. type: verbatim
25290 #: ../fish/guestfish-actions.pod:2348
25291 #, no-wrap
25292 msgid ""
25293 " is-blockdev path\n"
25294 "\n"
25295 msgstr ""
25296
25297 #. type: textblock
25298 #: ../fish/guestfish-actions.pod:2353 ../fish/guestfish-actions.pod:2371
25299 #: ../fish/guestfish-actions.pod:2390 ../fish/guestfish-actions.pod:2399
25300 #: ../fish/guestfish-actions.pod:2409 ../fish/guestfish-actions.pod:2443
25301 #: ../fish/guestfish-actions.pod:2452
25302 msgid "See also L</stat>."
25303 msgstr ""
25304
25305 #. type: =head2
25306 #: ../fish/guestfish-actions.pod:2355
25307 msgid "is-busy"
25308 msgstr ""
25309
25310 #. type: verbatim
25311 #: ../fish/guestfish-actions.pod:2357
25312 #, no-wrap
25313 msgid ""
25314 " is-busy\n"
25315 "\n"
25316 msgstr ""
25317
25318 #. type: =head2
25319 #: ../fish/guestfish-actions.pod:2364
25320 msgid "is-chardev"
25321 msgstr ""
25322
25323 #. type: verbatim
25324 #: ../fish/guestfish-actions.pod:2366
25325 #, no-wrap
25326 msgid ""
25327 " is-chardev path\n"
25328 "\n"
25329 msgstr ""
25330
25331 #. type: =head2
25332 #: ../fish/guestfish-actions.pod:2373
25333 msgid "is-config"
25334 msgstr ""
25335
25336 #. type: verbatim
25337 #: ../fish/guestfish-actions.pod:2375
25338 #, no-wrap
25339 msgid ""
25340 " is-config\n"
25341 "\n"
25342 msgstr ""
25343
25344 #. type: =head2
25345 #: ../fish/guestfish-actions.pod:2382
25346 msgid "is-dir"
25347 msgstr ""
25348
25349 #. type: verbatim
25350 #: ../fish/guestfish-actions.pod:2384
25351 #, no-wrap
25352 msgid ""
25353 " is-dir path\n"
25354 "\n"
25355 msgstr ""
25356
25357 #. type: =head2
25358 #: ../fish/guestfish-actions.pod:2392
25359 msgid "is-fifo"
25360 msgstr ""
25361
25362 #. type: verbatim
25363 #: ../fish/guestfish-actions.pod:2394
25364 #, no-wrap
25365 msgid ""
25366 " is-fifo path\n"
25367 "\n"
25368 msgstr ""
25369
25370 #. type: =head2
25371 #: ../fish/guestfish-actions.pod:2401
25372 msgid "is-file"
25373 msgstr ""
25374
25375 #. type: verbatim
25376 #: ../fish/guestfish-actions.pod:2403
25377 #, no-wrap
25378 msgid ""
25379 " is-file path\n"
25380 "\n"
25381 msgstr ""
25382
25383 #. type: =head2
25384 #: ../fish/guestfish-actions.pod:2411
25385 msgid "is-launching"
25386 msgstr ""
25387
25388 #. type: verbatim
25389 #: ../fish/guestfish-actions.pod:2413
25390 #, no-wrap
25391 msgid ""
25392 " is-launching\n"
25393 "\n"
25394 msgstr ""
25395
25396 #. type: =head2
25397 #: ../fish/guestfish-actions.pod:2420
25398 msgid "is-lv"
25399 msgstr ""
25400
25401 #. type: verbatim
25402 #: ../fish/guestfish-actions.pod:2422
25403 #, no-wrap
25404 msgid ""
25405 " is-lv device\n"
25406 "\n"
25407 msgstr ""
25408
25409 #. type: =head2
25410 #: ../fish/guestfish-actions.pod:2427
25411 msgid "is-ready"
25412 msgstr ""
25413
25414 #. type: verbatim
25415 #: ../fish/guestfish-actions.pod:2429
25416 #, no-wrap
25417 msgid ""
25418 " is-ready\n"
25419 "\n"
25420 msgstr ""
25421
25422 #. type: =head2
25423 #: ../fish/guestfish-actions.pod:2436
25424 msgid "is-socket"
25425 msgstr ""
25426
25427 #. type: verbatim
25428 #: ../fish/guestfish-actions.pod:2438
25429 #, no-wrap
25430 msgid ""
25431 " is-socket path\n"
25432 "\n"
25433 msgstr ""
25434
25435 #. type: =head2
25436 #: ../fish/guestfish-actions.pod:2445
25437 msgid "is-symlink"
25438 msgstr ""
25439
25440 #. type: verbatim
25441 #: ../fish/guestfish-actions.pod:2447
25442 #, no-wrap
25443 msgid ""
25444 " is-symlink path\n"
25445 "\n"
25446 msgstr ""
25447
25448 #. type: =head2
25449 #: ../fish/guestfish-actions.pod:2454
25450 msgid "is-zero"
25451 msgstr ""
25452
25453 #. type: verbatim
25454 #: ../fish/guestfish-actions.pod:2456
25455 #, no-wrap
25456 msgid ""
25457 " is-zero path\n"
25458 "\n"
25459 msgstr ""
25460
25461 #. type: =head2
25462 #: ../fish/guestfish-actions.pod:2461
25463 msgid "is-zero-device"
25464 msgstr ""
25465
25466 #. type: verbatim
25467 #: ../fish/guestfish-actions.pod:2463
25468 #, no-wrap
25469 msgid ""
25470 " is-zero-device device\n"
25471 "\n"
25472 msgstr ""
25473
25474 #. type: =head2
25475 #: ../fish/guestfish-actions.pod:2469
25476 msgid "kill-subprocess"
25477 msgstr ""
25478
25479 #. type: verbatim
25480 #: ../fish/guestfish-actions.pod:2471
25481 #, no-wrap
25482 msgid ""
25483 " kill-subprocess\n"
25484 "\n"
25485 msgstr ""
25486
25487 #. type: =head2
25488 #: ../fish/guestfish-actions.pod:2475
25489 msgid "launch"
25490 msgstr ""
25491
25492 #. type: =head2
25493 #: ../fish/guestfish-actions.pod:2477
25494 msgid "run"
25495 msgstr ""
25496
25497 #. type: verbatim
25498 #: ../fish/guestfish-actions.pod:2479
25499 #, no-wrap
25500 msgid ""
25501 " launch\n"
25502 "\n"
25503 msgstr ""
25504
25505 #. type: =head2
25506 #: ../fish/guestfish-actions.pod:2487
25507 msgid "lchown"
25508 msgstr ""
25509
25510 #. type: verbatim
25511 #: ../fish/guestfish-actions.pod:2489
25512 #, no-wrap
25513 msgid ""
25514 " lchown owner group path\n"
25515 "\n"
25516 msgstr ""
25517
25518 #. type: textblock
25519 #: ../fish/guestfish-actions.pod:2491
25520 msgid ""
25521 "Change the file owner to C<owner> and group to C<group>.  This is like "
25522 "L</chown> but if C<path> is a symlink then the link itself is changed, not "
25523 "the target."
25524 msgstr ""
25525
25526 #. type: =head2
25527 #: ../fish/guestfish-actions.pod:2499
25528 msgid "lgetxattr"
25529 msgstr ""
25530
25531 #. type: verbatim
25532 #: ../fish/guestfish-actions.pod:2501
25533 #, no-wrap
25534 msgid ""
25535 " lgetxattr path name\n"
25536 "\n"
25537 msgstr ""
25538
25539 #. type: textblock
25540 #: ../fish/guestfish-actions.pod:2517
25541 msgid "See also: L</lgetxattrs>, L</getxattr>, L<attr(5)>."
25542 msgstr ""
25543
25544 #. type: =head2
25545 #: ../fish/guestfish-actions.pod:2519
25546 msgid "lgetxattrs"
25547 msgstr ""
25548
25549 #. type: verbatim
25550 #: ../fish/guestfish-actions.pod:2521
25551 #, no-wrap
25552 msgid ""
25553 " lgetxattrs path\n"
25554 "\n"
25555 msgstr ""
25556
25557 #. type: textblock
25558 #: ../fish/guestfish-actions.pod:2523
25559 msgid ""
25560 "This is the same as L</getxattrs>, but if C<path> is a symbolic link, then "
25561 "it returns the extended attributes of the link itself."
25562 msgstr ""
25563
25564 #. type: =head2
25565 #: ../fish/guestfish-actions.pod:2527
25566 msgid "list-9p"
25567 msgstr ""
25568
25569 #. type: verbatim
25570 #: ../fish/guestfish-actions.pod:2529
25571 #, no-wrap
25572 msgid ""
25573 " list-9p\n"
25574 "\n"
25575 msgstr ""
25576
25577 #. type: =head2
25578 #: ../fish/guestfish-actions.pod:2534
25579 msgid "list-devices"
25580 msgstr ""
25581
25582 #. type: verbatim
25583 #: ../fish/guestfish-actions.pod:2536
25584 #, no-wrap
25585 msgid ""
25586 " list-devices\n"
25587 "\n"
25588 msgstr ""
25589
25590 #. type: =head2
25591 #: ../fish/guestfish-actions.pod:2544
25592 msgid "list-dm-devices"
25593 msgstr ""
25594
25595 #. type: verbatim
25596 #: ../fish/guestfish-actions.pod:2546
25597 #, no-wrap
25598 msgid ""
25599 " list-dm-devices\n"
25600 "\n"
25601 msgstr ""
25602
25603 #. type: textblock
25604 #: ../fish/guestfish-actions.pod:2550
25605 msgid ""
25606 "The returned list contains C</dev/mapper/*> devices, eg. ones created by a "
25607 "previous call to L</luks-open>."
25608 msgstr ""
25609
25610 #. type: textblock
25611 #: ../fish/guestfish-actions.pod:2553
25612 msgid ""
25613 "Device mapper devices which correspond to logical volumes are I<not> "
25614 "returned in this list.  Call L</lvs> if you want to list logical volumes."
25615 msgstr ""
25616
25617 #. type: =head2
25618 #: ../fish/guestfish-actions.pod:2557
25619 msgid "list-filesystems"
25620 msgstr ""
25621
25622 #. type: verbatim
25623 #: ../fish/guestfish-actions.pod:2559
25624 #, no-wrap
25625 msgid ""
25626 " list-filesystems\n"
25627 "\n"
25628 msgstr ""
25629
25630 #. type: textblock
25631 #: ../fish/guestfish-actions.pod:2578
25632 msgid ""
25633 "This command runs other libguestfs commands, which might include L</mount> "
25634 "and L</umount>, and therefore you should use this soon after launch and only"
25635 " when nothing is mounted."
25636 msgstr ""
25637
25638 #. type: textblock
25639 #: ../fish/guestfish-actions.pod:2582
25640 msgid ""
25641 "Not all of the filesystems returned will be mountable.  In particular, swap "
25642 "partitions are returned in the list.  Also this command does not check that "
25643 "each filesystem found is valid and mountable, and some filesystems might be "
25644 "mountable but require special options.  Filesystems may not all belong to a "
25645 "single logical operating system (use L</inspect-os> to look for OSes)."
25646 msgstr ""
25647
25648 #. type: =head2
25649 #: ../fish/guestfish-actions.pod:2590
25650 msgid "list-partitions"
25651 msgstr ""
25652
25653 #. type: verbatim
25654 #: ../fish/guestfish-actions.pod:2592
25655 #, no-wrap
25656 msgid ""
25657 " list-partitions\n"
25658 "\n"
25659 msgstr ""
25660
25661 #. type: textblock
25662 #: ../fish/guestfish-actions.pod:2598
25663 msgid ""
25664 "This does not return logical volumes.  For that you will need to call "
25665 "L</lvs>."
25666 msgstr ""
25667
25668 #. type: =head2
25669 #: ../fish/guestfish-actions.pod:2603
25670 msgid "ll"
25671 msgstr ""
25672
25673 #. type: verbatim
25674 #: ../fish/guestfish-actions.pod:2605
25675 #, no-wrap
25676 msgid ""
25677 " ll directory\n"
25678 "\n"
25679 msgstr ""
25680
25681 #. type: =head2
25682 #: ../fish/guestfish-actions.pod:2613
25683 msgid "ln"
25684 msgstr ""
25685
25686 #. type: verbatim
25687 #: ../fish/guestfish-actions.pod:2615
25688 #, no-wrap
25689 msgid ""
25690 " ln target linkname\n"
25691 "\n"
25692 msgstr ""
25693
25694 #. type: =head2
25695 #: ../fish/guestfish-actions.pod:2619
25696 msgid "ln-f"
25697 msgstr ""
25698
25699 #. type: verbatim
25700 #: ../fish/guestfish-actions.pod:2621
25701 #, no-wrap
25702 msgid ""
25703 " ln-f target linkname\n"
25704 "\n"
25705 msgstr ""
25706
25707 #. type: =head2
25708 #: ../fish/guestfish-actions.pod:2626
25709 msgid "ln-s"
25710 msgstr ""
25711
25712 #. type: verbatim
25713 #: ../fish/guestfish-actions.pod:2628
25714 #, no-wrap
25715 msgid ""
25716 " ln-s target linkname\n"
25717 "\n"
25718 msgstr ""
25719
25720 #. type: =head2
25721 #: ../fish/guestfish-actions.pod:2632
25722 msgid "ln-sf"
25723 msgstr ""
25724
25725 #. type: verbatim
25726 #: ../fish/guestfish-actions.pod:2634
25727 #, no-wrap
25728 msgid ""
25729 " ln-sf target linkname\n"
25730 "\n"
25731 msgstr ""
25732
25733 #. type: =head2
25734 #: ../fish/guestfish-actions.pod:2639
25735 msgid "lremovexattr"
25736 msgstr ""
25737
25738 #. type: verbatim
25739 #: ../fish/guestfish-actions.pod:2641
25740 #, no-wrap
25741 msgid ""
25742 " lremovexattr xattr path\n"
25743 "\n"
25744 msgstr ""
25745
25746 #. type: textblock
25747 #: ../fish/guestfish-actions.pod:2643
25748 msgid ""
25749 "This is the same as L</removexattr>, but if C<path> is a symbolic link, then"
25750 " it removes an extended attribute of the link itself."
25751 msgstr ""
25752
25753 #. type: =head2
25754 #: ../fish/guestfish-actions.pod:2647
25755 msgid "ls"
25756 msgstr ""
25757
25758 #. type: verbatim
25759 #: ../fish/guestfish-actions.pod:2649
25760 #, no-wrap
25761 msgid ""
25762 " ls directory\n"
25763 "\n"
25764 msgstr ""
25765
25766 #. type: textblock
25767 #: ../fish/guestfish-actions.pod:2655
25768 msgid ""
25769 "This command is mostly useful for interactive sessions.  Programs should "
25770 "probably use L</readdir> instead."
25771 msgstr ""
25772
25773 #. type: =head2
25774 #: ../fish/guestfish-actions.pod:2658
25775 msgid "lsetxattr"
25776 msgstr ""
25777
25778 #. type: verbatim
25779 #: ../fish/guestfish-actions.pod:2660
25780 #, no-wrap
25781 msgid ""
25782 " lsetxattr xattr val vallen path\n"
25783 "\n"
25784 msgstr ""
25785
25786 #. type: textblock
25787 #: ../fish/guestfish-actions.pod:2662
25788 msgid ""
25789 "This is the same as L</setxattr>, but if C<path> is a symbolic link, then it"
25790 " sets an extended attribute of the link itself."
25791 msgstr ""
25792
25793 #. type: =head2
25794 #: ../fish/guestfish-actions.pod:2666
25795 msgid "lstat"
25796 msgstr ""
25797
25798 #. type: verbatim
25799 #: ../fish/guestfish-actions.pod:2668
25800 #, no-wrap
25801 msgid ""
25802 " lstat path\n"
25803 "\n"
25804 msgstr ""
25805
25806 #. type: textblock
25807 #: ../fish/guestfish-actions.pod:2672
25808 msgid ""
25809 "This is the same as L</stat> except that if C<path> is a symbolic link, then"
25810 " the link is stat-ed, not the file it refers to."
25811 msgstr ""
25812
25813 #. type: =head2
25814 #: ../fish/guestfish-actions.pod:2678
25815 msgid "lstatlist"
25816 msgstr ""
25817
25818 #. type: verbatim
25819 #: ../fish/guestfish-actions.pod:2680
25820 #, no-wrap
25821 msgid ""
25822 " lstatlist path 'names ...'\n"
25823 "\n"
25824 msgstr ""
25825
25826 #. type: textblock
25827 #: ../fish/guestfish-actions.pod:2682
25828 msgid ""
25829 "This call allows you to perform the L</lstat> operation on multiple files, "
25830 "where all files are in the directory C<path>.  C<names> is the list of files"
25831 " from this directory."
25832 msgstr ""
25833
25834 #. type: textblock
25835 #: ../fish/guestfish-actions.pod:2691
25836 msgid ""
25837 "This call is intended for programs that want to efficiently list a directory"
25838 " contents without making many round-trips.  See also L</lxattrlist> for a "
25839 "similarly efficient call for getting extended attributes.  Very long "
25840 "directory listings might cause the protocol message size to be exceeded, "
25841 "causing this call to fail.  The caller must split up such requests into "
25842 "smaller groups of names."
25843 msgstr ""
25844
25845 #. type: =head2
25846 #: ../fish/guestfish-actions.pod:2699
25847 msgid "luks-add-key"
25848 msgstr ""
25849
25850 #. type: verbatim
25851 #: ../fish/guestfish-actions.pod:2701
25852 #, no-wrap
25853 msgid ""
25854 " luks-add-key device keyslot\n"
25855 "\n"
25856 msgstr ""
25857
25858 #. type: textblock
25859 #: ../fish/guestfish-actions.pod:2708
25860 msgid ""
25861 "Note that if C<keyslot> already contains a key, then this command will fail."
25862 "  You have to use L</luks-kill-slot> first to remove that key."
25863 msgstr ""
25864
25865 #. type: textblock
25866 #: ../fish/guestfish-actions.pod:2712 ../fish/guestfish-actions.pod:2734
25867 #: ../fish/guestfish-actions.pod:2747 ../fish/guestfish-actions.pod:2761
25868 #: ../fish/guestfish-actions.pod:2787 ../fish/guestfish-actions.pod:2797
25869 msgid ""
25870 "This command has one or more key or passphrase parameters.  Guestfish will "
25871 "prompt for these separately."
25872 msgstr ""
25873
25874 #. type: =head2
25875 #: ../fish/guestfish-actions.pod:2715
25876 msgid "luks-close"
25877 msgstr ""
25878
25879 #. type: verbatim
25880 #: ../fish/guestfish-actions.pod:2717
25881 #, no-wrap
25882 msgid ""
25883 " luks-close device\n"
25884 "\n"
25885 msgstr ""
25886
25887 #. type: textblock
25888 #: ../fish/guestfish-actions.pod:2719
25889 msgid ""
25890 "This closes a LUKS device that was created earlier by L</luks-open> or L"
25891 "</luks-open-ro>.  The C<device> parameter must be the name of the LUKS "
25892 "mapping device (ie. C</dev/mapper/mapname>) and I<not> the name of the "
25893 "underlying block device."
25894 msgstr ""
25895
25896 #. type: =head2
25897 #: ../fish/guestfish-actions.pod:2725
25898 msgid "luks-format"
25899 msgstr ""
25900
25901 #. type: verbatim
25902 #: ../fish/guestfish-actions.pod:2727
25903 #, no-wrap
25904 msgid ""
25905 " luks-format device keyslot\n"
25906 "\n"
25907 msgstr ""
25908
25909 #. type: =head2
25910 #: ../fish/guestfish-actions.pod:2740
25911 msgid "luks-format-cipher"
25912 msgstr ""
25913
25914 #. type: verbatim
25915 #: ../fish/guestfish-actions.pod:2742
25916 #, no-wrap
25917 msgid ""
25918 " luks-format-cipher device keyslot cipher\n"
25919 "\n"
25920 msgstr ""
25921
25922 #. type: textblock
25923 #: ../fish/guestfish-actions.pod:2744
25924 msgid ""
25925 "This command is the same as L</luks-format> but it also allows you to set "
25926 "the C<cipher> used."
25927 msgstr ""
25928
25929 #. type: =head2
25930 #: ../fish/guestfish-actions.pod:2753
25931 msgid "luks-kill-slot"
25932 msgstr ""
25933
25934 #. type: verbatim
25935 #: ../fish/guestfish-actions.pod:2755
25936 #, no-wrap
25937 msgid ""
25938 " luks-kill-slot device keyslot\n"
25939 "\n"
25940 msgstr ""
25941
25942 #. type: =head2
25943 #: ../fish/guestfish-actions.pod:2764
25944 msgid "luks-open"
25945 msgstr ""
25946
25947 #. type: verbatim
25948 #: ../fish/guestfish-actions.pod:2766
25949 #, no-wrap
25950 msgid ""
25951 " luks-open device mapname\n"
25952 "\n"
25953 msgstr ""
25954
25955 #. type: textblock
25956 #: ../fish/guestfish-actions.pod:2780
25957 msgid ""
25958 "If this block device contains LVM volume groups, then calling L</vgscan> "
25959 "followed by L</vg-activate-all> will make them visible."
25960 msgstr ""
25961
25962 #. type: textblock
25963 #: ../fish/guestfish-actions.pod:2784
25964 msgid "Use L</list-dm-devices> to list all device mapper devices."
25965 msgstr ""
25966
25967 #. type: =head2
25968 #: ../fish/guestfish-actions.pod:2790
25969 msgid "luks-open-ro"
25970 msgstr ""
25971
25972 #. type: verbatim
25973 #: ../fish/guestfish-actions.pod:2792
25974 #, no-wrap
25975 msgid ""
25976 " luks-open-ro device mapname\n"
25977 "\n"
25978 msgstr ""
25979
25980 #. type: textblock
25981 #: ../fish/guestfish-actions.pod:2794
25982 msgid ""
25983 "This is the same as L</luks-open> except that a read-only mapping is "
25984 "created."
25985 msgstr ""
25986
25987 #. type: =head2
25988 #: ../fish/guestfish-actions.pod:2800
25989 msgid "lvcreate"
25990 msgstr ""
25991
25992 #. type: verbatim
25993 #: ../fish/guestfish-actions.pod:2802
25994 #, no-wrap
25995 msgid ""
25996 " lvcreate logvol volgroup mbytes\n"
25997 "\n"
25998 msgstr ""
25999
26000 #. type: =head2
26001 #: ../fish/guestfish-actions.pod:2807
26002 msgid "lvm-canonical-lv-name"
26003 msgstr ""
26004
26005 #. type: verbatim
26006 #: ../fish/guestfish-actions.pod:2809
26007 #, no-wrap
26008 msgid ""
26009 " lvm-canonical-lv-name lvname\n"
26010 "\n"
26011 msgstr ""
26012
26013 #. type: textblock
26014 #: ../fish/guestfish-actions.pod:2818
26015 msgid "See also L</is-lv>."
26016 msgstr ""
26017
26018 #. type: =head2
26019 #: ../fish/guestfish-actions.pod:2820
26020 msgid "lvm-clear-filter"
26021 msgstr ""
26022
26023 #. type: verbatim
26024 #: ../fish/guestfish-actions.pod:2822
26025 #, no-wrap
26026 msgid ""
26027 " lvm-clear-filter\n"
26028 "\n"
26029 msgstr ""
26030
26031 #. type: textblock
26032 #: ../fish/guestfish-actions.pod:2824
26033 msgid ""
26034 "This undoes the effect of L</lvm-set-filter>.  LVM will be able to see every"
26035 " block device."
26036 msgstr ""
26037
26038 #. type: =head2
26039 #: ../fish/guestfish-actions.pod:2830
26040 msgid "lvm-remove-all"
26041 msgstr ""
26042
26043 #. type: verbatim
26044 #: ../fish/guestfish-actions.pod:2832
26045 #, no-wrap
26046 msgid ""
26047 " lvm-remove-all\n"
26048 "\n"
26049 msgstr ""
26050
26051 #. type: =head2
26052 #: ../fish/guestfish-actions.pod:2840
26053 msgid "lvm-set-filter"
26054 msgstr ""
26055
26056 #. type: verbatim
26057 #: ../fish/guestfish-actions.pod:2842
26058 #, no-wrap
26059 msgid ""
26060 " lvm-set-filter 'devices ...'\n"
26061 "\n"
26062 msgstr ""
26063
26064 #. type: =head2
26065 #: ../fish/guestfish-actions.pod:2867
26066 msgid "lvremove"
26067 msgstr ""
26068
26069 #. type: verbatim
26070 #: ../fish/guestfish-actions.pod:2869
26071 #, no-wrap
26072 msgid ""
26073 " lvremove device\n"
26074 "\n"
26075 msgstr ""
26076
26077 #. type: =head2
26078 #: ../fish/guestfish-actions.pod:2877
26079 msgid "lvrename"
26080 msgstr ""
26081
26082 #. type: verbatim
26083 #: ../fish/guestfish-actions.pod:2879
26084 #, no-wrap
26085 msgid ""
26086 " lvrename logvol newlogvol\n"
26087 "\n"
26088 msgstr ""
26089
26090 #. type: =head2
26091 #: ../fish/guestfish-actions.pod:2883
26092 msgid "lvresize"
26093 msgstr ""
26094
26095 #. type: verbatim
26096 #: ../fish/guestfish-actions.pod:2885
26097 #, no-wrap
26098 msgid ""
26099 " lvresize device mbytes\n"
26100 "\n"
26101 msgstr ""
26102
26103 #. type: =head2
26104 #: ../fish/guestfish-actions.pod:2891
26105 msgid "lvresize-free"
26106 msgstr ""
26107
26108 #. type: verbatim
26109 #: ../fish/guestfish-actions.pod:2893
26110 #, no-wrap
26111 msgid ""
26112 " lvresize-free lv percent\n"
26113 "\n"
26114 msgstr ""
26115
26116 #. type: =head2
26117 #: ../fish/guestfish-actions.pod:2901
26118 msgid "lvs"
26119 msgstr ""
26120
26121 #. type: verbatim
26122 #: ../fish/guestfish-actions.pod:2903
26123 #, no-wrap
26124 msgid ""
26125 " lvs\n"
26126 "\n"
26127 msgstr ""
26128
26129 #. type: textblock
26130 #: ../fish/guestfish-actions.pod:2911
26131 msgid "See also L</lvs-full>, L</list-filesystems>."
26132 msgstr ""
26133
26134 #. type: =head2
26135 #: ../fish/guestfish-actions.pod:2913
26136 msgid "lvs-full"
26137 msgstr ""
26138
26139 #. type: verbatim
26140 #: ../fish/guestfish-actions.pod:2915
26141 #, no-wrap
26142 msgid ""
26143 " lvs-full\n"
26144 "\n"
26145 msgstr ""
26146
26147 #. type: =head2
26148 #: ../fish/guestfish-actions.pod:2920
26149 msgid "lvuuid"
26150 msgstr ""
26151
26152 #. type: verbatim
26153 #: ../fish/guestfish-actions.pod:2922
26154 #, no-wrap
26155 msgid ""
26156 " lvuuid device\n"
26157 "\n"
26158 msgstr ""
26159
26160 #. type: =head2
26161 #: ../fish/guestfish-actions.pod:2926
26162 msgid "lxattrlist"
26163 msgstr ""
26164
26165 #. type: verbatim
26166 #: ../fish/guestfish-actions.pod:2928
26167 #, no-wrap
26168 msgid ""
26169 " lxattrlist path 'names ...'\n"
26170 "\n"
26171 msgstr ""
26172
26173 #. type: textblock
26174 #: ../fish/guestfish-actions.pod:2944
26175 msgid ""
26176 "This call is intended for programs that want to efficiently list a directory"
26177 " contents without making many round-trips.  See also L</lstatlist> for a "
26178 "similarly efficient call for getting standard stats.  Very long directory "
26179 "listings might cause the protocol message size to be exceeded, causing this "
26180 "call to fail.  The caller must split up such requests into smaller groups of"
26181 " names."
26182 msgstr ""
26183
26184 #. type: =head2
26185 #: ../fish/guestfish-actions.pod:2952
26186 msgid "mkdir"
26187 msgstr ""
26188
26189 #. type: verbatim
26190 #: ../fish/guestfish-actions.pod:2954
26191 #, no-wrap
26192 msgid ""
26193 " mkdir path\n"
26194 "\n"
26195 msgstr ""
26196
26197 #. type: =head2
26198 #: ../fish/guestfish-actions.pod:2958
26199 msgid "mkdir-mode"
26200 msgstr ""
26201
26202 #. type: verbatim
26203 #: ../fish/guestfish-actions.pod:2960
26204 #, no-wrap
26205 msgid ""
26206 " mkdir-mode path mode\n"
26207 "\n"
26208 msgstr ""
26209
26210 #. type: textblock
26211 #: ../fish/guestfish-actions.pod:2969
26212 msgid "See also L</mkdir>, L</umask>"
26213 msgstr ""
26214
26215 #. type: =head2
26216 #: ../fish/guestfish-actions.pod:2971
26217 msgid "mkdir-p"
26218 msgstr ""
26219
26220 #. type: verbatim
26221 #: ../fish/guestfish-actions.pod:2973
26222 #, no-wrap
26223 msgid ""
26224 " mkdir-p path\n"
26225 "\n"
26226 msgstr ""
26227
26228 #. type: =head2
26229 #: ../fish/guestfish-actions.pod:2978
26230 msgid "mkdtemp"
26231 msgstr ""
26232
26233 #. type: verbatim
26234 #: ../fish/guestfish-actions.pod:2980
26235 #, no-wrap
26236 msgid ""
26237 " mkdtemp template\n"
26238 "\n"
26239 msgstr ""
26240
26241 #. type: =head2
26242 #: ../fish/guestfish-actions.pod:3001
26243 msgid "mke2fs-J"
26244 msgstr ""
26245
26246 #. type: verbatim
26247 #: ../fish/guestfish-actions.pod:3003
26248 #, no-wrap
26249 msgid ""
26250 " mke2fs-J fstype blocksize device journal\n"
26251 "\n"
26252 msgstr ""
26253
26254 #. type: textblock
26255 #: ../fish/guestfish-actions.pod:3011
26256 msgid "See also L</mke2journal>."
26257 msgstr ""
26258
26259 #. type: =head2
26260 #: ../fish/guestfish-actions.pod:3013
26261 msgid "mke2fs-JL"
26262 msgstr ""
26263
26264 #. type: verbatim
26265 #: ../fish/guestfish-actions.pod:3015
26266 #, no-wrap
26267 msgid ""
26268 " mke2fs-JL fstype blocksize device label\n"
26269 "\n"
26270 msgstr ""
26271
26272 #. type: textblock
26273 #: ../fish/guestfish-actions.pod:3020
26274 msgid "See also L</mke2journal-L>."
26275 msgstr ""
26276
26277 #. type: =head2
26278 #: ../fish/guestfish-actions.pod:3022
26279 msgid "mke2fs-JU"
26280 msgstr ""
26281
26282 #. type: verbatim
26283 #: ../fish/guestfish-actions.pod:3024
26284 #, no-wrap
26285 msgid ""
26286 " mke2fs-JU fstype blocksize device uuid\n"
26287 "\n"
26288 msgstr ""
26289
26290 #. type: textblock
26291 #: ../fish/guestfish-actions.pod:3029
26292 msgid "See also L</mke2journal-U>."
26293 msgstr ""
26294
26295 #. type: =head2
26296 #: ../fish/guestfish-actions.pod:3031
26297 msgid "mke2journal"
26298 msgstr ""
26299
26300 #. type: verbatim
26301 #: ../fish/guestfish-actions.pod:3033
26302 #, no-wrap
26303 msgid ""
26304 " mke2journal blocksize device\n"
26305 "\n"
26306 msgstr ""
26307
26308 #. type: =head2
26309 #: ../fish/guestfish-actions.pod:3040
26310 msgid "mke2journal-L"
26311 msgstr ""
26312
26313 #. type: verbatim
26314 #: ../fish/guestfish-actions.pod:3042
26315 #, no-wrap
26316 msgid ""
26317 " mke2journal-L blocksize label device\n"
26318 "\n"
26319 msgstr ""
26320
26321 #. type: =head2
26322 #: ../fish/guestfish-actions.pod:3046
26323 msgid "mke2journal-U"
26324 msgstr ""
26325
26326 #. type: verbatim
26327 #: ../fish/guestfish-actions.pod:3048
26328 #, no-wrap
26329 msgid ""
26330 " mke2journal-U blocksize uuid device\n"
26331 "\n"
26332 msgstr ""
26333
26334 #. type: =head2
26335 #: ../fish/guestfish-actions.pod:3052
26336 msgid "mkfifo"
26337 msgstr ""
26338
26339 #. type: verbatim
26340 #: ../fish/guestfish-actions.pod:3054
26341 #, no-wrap
26342 msgid ""
26343 " mkfifo mode path\n"
26344 "\n"
26345 msgstr ""
26346
26347 #. type: textblock
26348 #: ../fish/guestfish-actions.pod:3056
26349 msgid ""
26350 "This call creates a FIFO (named pipe) called C<path> with mode C<mode>.  It "
26351 "is just a convenient wrapper around L</mknod>."
26352 msgstr ""
26353
26354 #. type: =head2
26355 #: ../fish/guestfish-actions.pod:3062
26356 msgid "mkfs"
26357 msgstr ""
26358
26359 #. type: verbatim
26360 #: ../fish/guestfish-actions.pod:3064
26361 #, no-wrap
26362 msgid ""
26363 " mkfs fstype device\n"
26364 "\n"
26365 msgstr ""
26366
26367 #. type: =head2
26368 #: ../fish/guestfish-actions.pod:3070
26369 msgid "mkfs-b"
26370 msgstr ""
26371
26372 #. type: verbatim
26373 #: ../fish/guestfish-actions.pod:3072
26374 #, no-wrap
26375 msgid ""
26376 " mkfs-b fstype blocksize device\n"
26377 "\n"
26378 msgstr ""
26379
26380 #. type: textblock
26381 #: ../fish/guestfish-actions.pod:3074
26382 msgid ""
26383 "This call is similar to L</mkfs>, but it allows you to control the block "
26384 "size of the resulting filesystem.  Supported block sizes depend on the "
26385 "filesystem type, but typically they are C<1024>, C<2048> or C<4096> only."
26386 msgstr ""
26387
26388 #. type: =head2
26389 #: ../fish/guestfish-actions.pod:3089
26390 msgid "mkfs-opts"
26391 msgstr ""
26392
26393 #. type: verbatim
26394 #: ../fish/guestfish-actions.pod:3091
26395 #, no-wrap
26396 msgid ""
26397 " mkfs-opts fstype device [blocksize:..] [features:..] [inode:..] [sectorsize:..]\n"
26398 "\n"
26399 msgstr ""
26400
26401 #. type: =head2
26402 #: ../fish/guestfish-actions.pod:3136
26403 msgid "mkmountpoint"
26404 msgstr ""
26405
26406 #. type: verbatim
26407 #: ../fish/guestfish-actions.pod:3138
26408 #, no-wrap
26409 msgid ""
26410 " mkmountpoint exemptpath\n"
26411 "\n"
26412 msgstr ""
26413
26414 #. type: textblock
26415 #: ../fish/guestfish-actions.pod:3140
26416 msgid ""
26417 "L</mkmountpoint> and L</rmmountpoint> are specialized calls that can be used"
26418 " to create extra mountpoints before mounting the first filesystem."
26419 msgstr ""
26420
26421 #. type: textblock
26422 #: ../fish/guestfish-actions.pod:3164
26423 msgid ""
26424 "L</mkmountpoint> is not compatible with L</umount-all>.  You may get "
26425 "unexpected errors if you try to mix these calls.  It is safest to manually "
26426 "unmount filesystems and remove mountpoints after use."
26427 msgstr ""
26428
26429 #. type: textblock
26430 #: ../fish/guestfish-actions.pod:3168
26431 msgid ""
26432 "L</umount-all> unmounts filesystems by sorting the paths longest first, so "
26433 "for this to work for manual mountpoints, you must ensure that the innermost "
26434 "mountpoints have the longest pathnames, as in the example code above."
26435 msgstr ""
26436
26437 #. type: textblock
26438 #: ../fish/guestfish-actions.pod:3175
26439 msgid ""
26440 "Autosync [see L</set-autosync>, this is set by default on handles] can cause"
26441 " L</umount-all> to be called when the handle is closed which can also "
26442 "trigger these issues."
26443 msgstr ""
26444
26445 #. type: =head2
26446 #: ../fish/guestfish-actions.pod:3179
26447 msgid "mknod"
26448 msgstr ""
26449
26450 #. type: verbatim
26451 #: ../fish/guestfish-actions.pod:3181
26452 #, no-wrap
26453 msgid ""
26454 " mknod mode devmajor devminor path\n"
26455 "\n"
26456 msgstr ""
26457
26458 #. type: textblock
26459 #: ../fish/guestfish-actions.pod:3191
26460 msgid ""
26461 "Note that, just like L<mknod(2)>, the mode must be bitwise OR'd with "
26462 "S_IFBLK, S_IFCHR, S_IFIFO or S_IFSOCK (otherwise this call just creates a "
26463 "regular file).  These constants are available in the standard Linux header "
26464 "files, or you can use L</mknod-b>, L</mknod-c> or L</mkfifo> which are "
26465 "wrappers around this command which bitwise OR in the appropriate constant "
26466 "for you."
26467 msgstr ""
26468
26469 #. type: =head2
26470 #: ../fish/guestfish-actions.pod:3201
26471 msgid "mknod-b"
26472 msgstr ""
26473
26474 #. type: verbatim
26475 #: ../fish/guestfish-actions.pod:3203
26476 #, no-wrap
26477 msgid ""
26478 " mknod-b mode devmajor devminor path\n"
26479 "\n"
26480 msgstr ""
26481
26482 #. type: textblock
26483 #: ../fish/guestfish-actions.pod:3205
26484 msgid ""
26485 "This call creates a block device node called C<path> with mode C<mode> and "
26486 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26487 "wrapper around L</mknod>."
26488 msgstr ""
26489
26490 #. type: =head2
26491 #: ../fish/guestfish-actions.pod:3211
26492 msgid "mknod-c"
26493 msgstr ""
26494
26495 #. type: verbatim
26496 #: ../fish/guestfish-actions.pod:3213
26497 #, no-wrap
26498 msgid ""
26499 " mknod-c mode devmajor devminor path\n"
26500 "\n"
26501 msgstr ""
26502
26503 #. type: textblock
26504 #: ../fish/guestfish-actions.pod:3215
26505 msgid ""
26506 "This call creates a char device node called C<path> with mode C<mode> and "
26507 "device major/minor C<devmajor> and C<devminor>.  It is just a convenient "
26508 "wrapper around L</mknod>."
26509 msgstr ""
26510
26511 #. type: =head2
26512 #: ../fish/guestfish-actions.pod:3221
26513 msgid "mkswap"
26514 msgstr ""
26515
26516 #. type: verbatim
26517 #: ../fish/guestfish-actions.pod:3223
26518 #, no-wrap
26519 msgid ""
26520 " mkswap device\n"
26521 "\n"
26522 msgstr ""
26523
26524 #. type: =head2
26525 #: ../fish/guestfish-actions.pod:3227
26526 msgid "mkswap-L"
26527 msgstr ""
26528
26529 #. type: verbatim
26530 #: ../fish/guestfish-actions.pod:3229
26531 #, no-wrap
26532 msgid ""
26533 " mkswap-L label device\n"
26534 "\n"
26535 msgstr ""
26536
26537 #. type: =head2
26538 #: ../fish/guestfish-actions.pod:3237
26539 msgid "mkswap-U"
26540 msgstr ""
26541
26542 #. type: verbatim
26543 #: ../fish/guestfish-actions.pod:3239
26544 #, no-wrap
26545 msgid ""
26546 " mkswap-U uuid device\n"
26547 "\n"
26548 msgstr ""
26549
26550 #. type: =head2
26551 #: ../fish/guestfish-actions.pod:3243
26552 msgid "mkswap-file"
26553 msgstr ""
26554
26555 #. type: verbatim
26556 #: ../fish/guestfish-actions.pod:3245
26557 #, no-wrap
26558 msgid ""
26559 " mkswap-file path\n"
26560 "\n"
26561 msgstr ""
26562
26563 #. type: textblock
26564 #: ../fish/guestfish-actions.pod:3249
26565 msgid ""
26566 "This command just writes a swap file signature to an existing file.  To "
26567 "create the file itself, use something like L</fallocate>."
26568 msgstr ""
26569
26570 #. type: =head2
26571 #: ../fish/guestfish-actions.pod:3252
26572 msgid "modprobe"
26573 msgstr ""
26574
26575 #. type: verbatim
26576 #: ../fish/guestfish-actions.pod:3254
26577 #, no-wrap
26578 msgid ""
26579 " modprobe modulename\n"
26580 "\n"
26581 msgstr ""
26582
26583 #. type: =head2
26584 #: ../fish/guestfish-actions.pod:3261
26585 msgid "mount"
26586 msgstr ""
26587
26588 #. type: verbatim
26589 #: ../fish/guestfish-actions.pod:3263
26590 #, no-wrap
26591 msgid ""
26592 " mount device mountpoint\n"
26593 "\n"
26594 msgstr ""
26595
26596 #. type: textblock
26597 #: ../fish/guestfish-actions.pod:3279
26598 msgid ""
26599 "B<Important note:> When you use this call, the filesystem options C<sync> "
26600 "and C<noatime> are set implicitly.  This was originally done because we "
26601 "thought it would improve reliability, but it turns out that I<-o sync> has a"
26602 " very large negative performance impact and negligible effect on "
26603 "reliability.  Therefore we recommend that you avoid using L</mount> in any "
26604 "code that needs performance, and instead use L</mount-options> (use an empty"
26605 " string for the first parameter if you don't want any options)."
26606 msgstr ""
26607
26608 #. type: =head2
26609 #: ../fish/guestfish-actions.pod:3296
26610 msgid "mount-9p"
26611 msgstr ""
26612
26613 #. type: verbatim
26614 #: ../fish/guestfish-actions.pod:3298
26615 #, no-wrap
26616 msgid ""
26617 " mount-9p mounttag mountpoint [options:..]\n"
26618 "\n"
26619 msgstr ""
26620
26621 #. type: =head2
26622 #: ../fish/guestfish-actions.pod:3309
26623 msgid "mount-loop"
26624 msgstr ""
26625
26626 #. type: verbatim
26627 #: ../fish/guestfish-actions.pod:3311
26628 #, no-wrap
26629 msgid ""
26630 " mount-loop file mountpoint\n"
26631 "\n"
26632 msgstr ""
26633
26634 #. type: =head2
26635 #: ../fish/guestfish-actions.pod:3317
26636 msgid "mount-options"
26637 msgstr ""
26638
26639 #. type: verbatim
26640 #: ../fish/guestfish-actions.pod:3319
26641 #, no-wrap
26642 msgid ""
26643 " mount-options options device mountpoint\n"
26644 "\n"
26645 msgstr ""
26646
26647 #. type: textblock
26648 #: ../fish/guestfish-actions.pod:3321
26649 msgid ""
26650 "This is the same as the L</mount> command, but it allows you to set the "
26651 "mount options as for the L<mount(8)> I<-o> flag."
26652 msgstr ""
26653
26654 #. type: =head2
26655 #: ../fish/guestfish-actions.pod:3329
26656 msgid "mount-ro"
26657 msgstr ""
26658
26659 #. type: verbatim
26660 #: ../fish/guestfish-actions.pod:3331
26661 #, no-wrap
26662 msgid ""
26663 " mount-ro device mountpoint\n"
26664 "\n"
26665 msgstr ""
26666
26667 #. type: textblock
26668 #: ../fish/guestfish-actions.pod:3333
26669 msgid ""
26670 "This is the same as the L</mount> command, but it mounts the filesystem with"
26671 " the read-only (I<-o ro>) flag."
26672 msgstr ""
26673
26674 #. type: =head2
26675 #: ../fish/guestfish-actions.pod:3336
26676 msgid "mount-vfs"
26677 msgstr ""
26678
26679 #. type: verbatim
26680 #: ../fish/guestfish-actions.pod:3338
26681 #, no-wrap
26682 msgid ""
26683 " mount-vfs options vfstype device mountpoint\n"
26684 "\n"
26685 msgstr ""
26686
26687 #. type: textblock
26688 #: ../fish/guestfish-actions.pod:3340
26689 msgid ""
26690 "This is the same as the L</mount> command, but it allows you to set both the"
26691 " mount options and the vfstype as for the L<mount(8)> I<-o> and I<-t> flags."
26692 msgstr ""
26693
26694 #. type: =head2
26695 #: ../fish/guestfish-actions.pod:3344
26696 msgid "mountpoints"
26697 msgstr ""
26698
26699 #. type: verbatim
26700 #: ../fish/guestfish-actions.pod:3346
26701 #, no-wrap
26702 msgid ""
26703 " mountpoints\n"
26704 "\n"
26705 msgstr ""
26706
26707 #. type: textblock
26708 #: ../fish/guestfish-actions.pod:3348
26709 msgid ""
26710 "This call is similar to L</mounts>.  That call returns a list of devices.  "
26711 "This one returns a hash table (map) of device name to directory where the "
26712 "device is mounted."
26713 msgstr ""
26714
26715 #. type: =head2
26716 #: ../fish/guestfish-actions.pod:3352
26717 msgid "mounts"
26718 msgstr ""
26719
26720 #. type: verbatim
26721 #: ../fish/guestfish-actions.pod:3354
26722 #, no-wrap
26723 msgid ""
26724 " mounts\n"
26725 "\n"
26726 msgstr ""
26727
26728 #. type: textblock
26729 #: ../fish/guestfish-actions.pod:3361
26730 msgid "See also: L</mountpoints>"
26731 msgstr ""
26732
26733 #. type: =head2
26734 #: ../fish/guestfish-actions.pod:3363
26735 msgid "mv"
26736 msgstr ""
26737
26738 #. type: verbatim
26739 #: ../fish/guestfish-actions.pod:3365
26740 #, no-wrap
26741 msgid ""
26742 " mv src dest\n"
26743 "\n"
26744 msgstr ""
26745
26746 #. type: =head2
26747 #: ../fish/guestfish-actions.pod:3370
26748 msgid "ntfs-3g-probe"
26749 msgstr ""
26750
26751 #. type: verbatim
26752 #: ../fish/guestfish-actions.pod:3372
26753 #, no-wrap
26754 msgid ""
26755 " ntfs-3g-probe true|false device\n"
26756 "\n"
26757 msgstr ""
26758
26759 #. type: =head2
26760 #: ../fish/guestfish-actions.pod:3386
26761 msgid "ntfsresize"
26762 msgstr ""
26763
26764 #. type: verbatim
26765 #: ../fish/guestfish-actions.pod:3388
26766 #, no-wrap
26767 msgid ""
26768 " ntfsresize device\n"
26769 "\n"
26770 msgstr ""
26771
26772 #. type: =head2
26773 #: ../fish/guestfish-actions.pod:3410
26774 msgid "ntfsresize-opts"
26775 msgstr ""
26776
26777 #. type: verbatim
26778 #: ../fish/guestfish-actions.pod:3412
26779 #, no-wrap
26780 msgid ""
26781 " ntfsresize-opts device [size:..] [force:..]\n"
26782 "\n"
26783 msgstr ""
26784
26785 #. type: textblock
26786 #: ../fish/guestfish-actions.pod:3431
26787 msgid ""
26788 "After the resize operation, the filesystem is always marked as requiring a "
26789 "consistency check (for safety).  You have to boot into Windows to perform "
26790 "this check and clear this condition.  If you I<don't> set the C<force> "
26791 "option then it is not possible to call L</ntfsresize-opts> multiple times on"
26792 " a single filesystem without booting into Windows between each resize."
26793 msgstr ""
26794
26795 #. type: =head2
26796 #: ../fish/guestfish-actions.pod:3444
26797 msgid "ntfsresize-size"
26798 msgstr ""
26799
26800 #. type: verbatim
26801 #: ../fish/guestfish-actions.pod:3446
26802 #, no-wrap
26803 msgid ""
26804 " ntfsresize-size device size\n"
26805 "\n"
26806 msgstr ""
26807
26808 #. type: textblock
26809 #: ../fish/guestfish-actions.pod:3448
26810 msgid ""
26811 "This command is the same as L</ntfsresize> except that it allows you to "
26812 "specify the new size (in bytes) explicitly."
26813 msgstr ""
26814
26815 #. type: =head2
26816 #: ../fish/guestfish-actions.pod:3458
26817 msgid "part-add"
26818 msgstr ""
26819
26820 #. type: verbatim
26821 #: ../fish/guestfish-actions.pod:3460
26822 #, no-wrap
26823 msgid ""
26824 " part-add device prlogex startsect endsect\n"
26825 "\n"
26826 msgstr ""
26827
26828 #. type: textblock
26829 #: ../fish/guestfish-actions.pod:3462
26830 msgid ""
26831 "This command adds a partition to C<device>.  If there is no partition table "
26832 "on the device, call L</part-init> first."
26833 msgstr ""
26834
26835 #. type: textblock
26836 #: ../fish/guestfish-actions.pod:3474
26837 msgid ""
26838 "Creating a partition which covers the whole disk is not so easy.  Use L"
26839 "</part-disk> to do that."
26840 msgstr ""
26841
26842 #. type: =head2
26843 #: ../fish/guestfish-actions.pod:3477
26844 msgid "part-del"
26845 msgstr ""
26846
26847 #. type: verbatim
26848 #: ../fish/guestfish-actions.pod:3479
26849 #, no-wrap
26850 msgid ""
26851 " part-del device partnum\n"
26852 "\n"
26853 msgstr ""
26854
26855 #. type: =head2
26856 #: ../fish/guestfish-actions.pod:3487
26857 msgid "part-disk"
26858 msgstr ""
26859
26860 #. type: verbatim
26861 #: ../fish/guestfish-actions.pod:3489
26862 #, no-wrap
26863 msgid ""
26864 " part-disk device parttype\n"
26865 "\n"
26866 msgstr ""
26867
26868 #. type: textblock
26869 #: ../fish/guestfish-actions.pod:3491
26870 msgid ""
26871 "This command is simply a combination of L</part-init> followed by L</part-"
26872 "add> to create a single primary partition covering the whole disk."
26873 msgstr ""
26874
26875 #. type: textblock
26876 #: ../fish/guestfish-actions.pod:3495
26877 msgid ""
26878 "C<parttype> is the partition table type, usually C<mbr> or C<gpt>, but other"
26879 " possible values are described in L</part-init>."
26880 msgstr ""
26881
26882 #. type: =head2
26883 #: ../fish/guestfish-actions.pod:3501
26884 msgid "part-get-bootable"
26885 msgstr ""
26886
26887 #. type: verbatim
26888 #: ../fish/guestfish-actions.pod:3503
26889 #, no-wrap
26890 msgid ""
26891 " part-get-bootable device partnum\n"
26892 "\n"
26893 msgstr ""
26894
26895 #. type: textblock
26896 #: ../fish/guestfish-actions.pod:3508
26897 msgid "See also L</part-set-bootable>."
26898 msgstr ""
26899
26900 #. type: =head2
26901 #: ../fish/guestfish-actions.pod:3510
26902 msgid "part-get-mbr-id"
26903 msgstr ""
26904
26905 #. type: verbatim
26906 #: ../fish/guestfish-actions.pod:3512
26907 #, no-wrap
26908 msgid ""
26909 " part-get-mbr-id device partnum\n"
26910 "\n"
26911 msgstr ""
26912
26913 #. type: textblock
26914 #: ../fish/guestfish-actions.pod:3517 ../fish/guestfish-actions.pod:3655
26915 msgid ""
26916 "Note that only MBR (old DOS-style) partitions have type bytes.  You will get"
26917 " undefined results for other partition table types (see L</part-get-"
26918 "parttype>)."
26919 msgstr ""
26920
26921 #. type: =head2
26922 #: ../fish/guestfish-actions.pod:3521
26923 msgid "part-get-parttype"
26924 msgstr ""
26925
26926 #. type: verbatim
26927 #: ../fish/guestfish-actions.pod:3523
26928 #, no-wrap
26929 msgid ""
26930 " part-get-parttype device\n"
26931 "\n"
26932 msgstr ""
26933
26934 #. type: textblock
26935 #: ../fish/guestfish-actions.pod:3528
26936 msgid ""
26937 "Common return values include: C<msdos> (a DOS/Windows style MBR partition "
26938 "table), C<gpt> (a GPT/EFI-style partition table).  Other values are "
26939 "possible, although unusual.  See L</part-init> for a full list."
26940 msgstr ""
26941
26942 #. type: =head2
26943 #: ../fish/guestfish-actions.pod:3533
26944 msgid "part-init"
26945 msgstr ""
26946
26947 #. type: verbatim
26948 #: ../fish/guestfish-actions.pod:3535
26949 #, no-wrap
26950 msgid ""
26951 " part-init device parttype\n"
26952 "\n"
26953 msgstr ""
26954
26955 #. type: textblock
26956 #: ../fish/guestfish-actions.pod:3541
26957 msgid ""
26958 "Initially there are no partitions.  Following this, you should call L</part-"
26959 "add> for each partition required."
26960 msgstr ""
26961
26962 #. type: =head2
26963 #: ../fish/guestfish-actions.pod:3604
26964 msgid "part-list"
26965 msgstr ""
26966
26967 #. type: verbatim
26968 #: ../fish/guestfish-actions.pod:3606
26969 #, no-wrap
26970 msgid ""
26971 " part-list device\n"
26972 "\n"
26973 msgstr ""
26974
26975 #. type: textblock
26976 #: ../fish/guestfish-actions.pod:3621
26977 msgid ""
26978 "Start of the partition I<in bytes>.  To get sectors you have to divide by "
26979 "the device's sector size, see L</blockdev-getss>."
26980 msgstr ""
26981
26982 #. type: =head2
26983 #: ../fish/guestfish-actions.pod:3634
26984 msgid "part-set-bootable"
26985 msgstr ""
26986
26987 #. type: verbatim
26988 #: ../fish/guestfish-actions.pod:3636
26989 #, no-wrap
26990 msgid ""
26991 " part-set-bootable device partnum true|false\n"
26992 "\n"
26993 msgstr ""
26994
26995 #. type: =head2
26996 #: ../fish/guestfish-actions.pod:3645
26997 msgid "part-set-mbr-id"
26998 msgstr ""
26999
27000 #. type: verbatim
27001 #: ../fish/guestfish-actions.pod:3647
27002 #, no-wrap
27003 msgid ""
27004 " part-set-mbr-id device partnum idbyte\n"
27005 "\n"
27006 msgstr ""
27007
27008 #. type: =head2
27009 #: ../fish/guestfish-actions.pod:3659
27010 msgid "part-set-name"
27011 msgstr ""
27012
27013 #. type: verbatim
27014 #: ../fish/guestfish-actions.pod:3661
27015 #, no-wrap
27016 msgid ""
27017 " part-set-name device partnum name\n"
27018 "\n"
27019 msgstr ""
27020
27021 #. type: =head2
27022 #: ../fish/guestfish-actions.pod:3669
27023 msgid "part-to-dev"
27024 msgstr ""
27025
27026 #. type: verbatim
27027 #: ../fish/guestfish-actions.pod:3671
27028 #, no-wrap
27029 msgid ""
27030 " part-to-dev partition\n"
27031 "\n"
27032 msgstr ""
27033
27034 #. type: textblock
27035 #: ../fish/guestfish-actions.pod:3677
27036 msgid ""
27037 "The named partition must exist, for example as a string returned from L"
27038 "</list-partitions>."
27039 msgstr ""
27040
27041 #. type: =head2
27042 #: ../fish/guestfish-actions.pod:3680
27043 msgid "ping-daemon"
27044 msgstr ""
27045
27046 #. type: verbatim
27047 #: ../fish/guestfish-actions.pod:3682
27048 #, no-wrap
27049 msgid ""
27050 " ping-daemon\n"
27051 "\n"
27052 msgstr ""
27053
27054 #. type: =head2
27055 #: ../fish/guestfish-actions.pod:3689
27056 msgid "pread"
27057 msgstr ""
27058
27059 #. type: verbatim
27060 #: ../fish/guestfish-actions.pod:3691
27061 #, no-wrap
27062 msgid ""
27063 " pread path count offset\n"
27064 "\n"
27065 msgstr ""
27066
27067 #. type: textblock
27068 #: ../fish/guestfish-actions.pod:3699
27069 msgid "See also L</pwrite>, L</pread-device>."
27070 msgstr ""
27071
27072 #. type: =head2
27073 #: ../fish/guestfish-actions.pod:3704
27074 msgid "pread-device"
27075 msgstr ""
27076
27077 #. type: verbatim
27078 #: ../fish/guestfish-actions.pod:3706
27079 #, no-wrap
27080 msgid ""
27081 " pread-device device count offset\n"
27082 "\n"
27083 msgstr ""
27084
27085 #. type: textblock
27086 #: ../fish/guestfish-actions.pod:3714
27087 msgid "See also L</pread>."
27088 msgstr ""
27089
27090 #. type: =head2
27091 #: ../fish/guestfish-actions.pod:3719
27092 msgid "pvcreate"
27093 msgstr ""
27094
27095 #. type: verbatim
27096 #: ../fish/guestfish-actions.pod:3721
27097 #, no-wrap
27098 msgid ""
27099 " pvcreate device\n"
27100 "\n"
27101 msgstr ""
27102
27103 #. type: =head2
27104 #: ../fish/guestfish-actions.pod:3727
27105 msgid "pvremove"
27106 msgstr ""
27107
27108 #. type: verbatim
27109 #: ../fish/guestfish-actions.pod:3729
27110 #, no-wrap
27111 msgid ""
27112 " pvremove device\n"
27113 "\n"
27114 msgstr ""
27115
27116 #. type: =head2
27117 #: ../fish/guestfish-actions.pod:3738
27118 msgid "pvresize"
27119 msgstr ""
27120
27121 #. type: verbatim
27122 #: ../fish/guestfish-actions.pod:3740
27123 #, no-wrap
27124 msgid ""
27125 " pvresize device\n"
27126 "\n"
27127 msgstr ""
27128
27129 #. type: =head2
27130 #: ../fish/guestfish-actions.pod:3745
27131 msgid "pvresize-size"
27132 msgstr ""
27133
27134 #. type: verbatim
27135 #: ../fish/guestfish-actions.pod:3747
27136 #, no-wrap
27137 msgid ""
27138 " pvresize-size device size\n"
27139 "\n"
27140 msgstr ""
27141
27142 #. type: textblock
27143 #: ../fish/guestfish-actions.pod:3749
27144 msgid ""
27145 "This command is the same as L</pvresize> except that it allows you to "
27146 "specify the new size (in bytes) explicitly."
27147 msgstr ""
27148
27149 #. type: =head2
27150 #: ../fish/guestfish-actions.pod:3752
27151 msgid "pvs"
27152 msgstr ""
27153
27154 #. type: verbatim
27155 #: ../fish/guestfish-actions.pod:3754
27156 #, no-wrap
27157 msgid ""
27158 " pvs\n"
27159 "\n"
27160 msgstr ""
27161
27162 #. type: textblock
27163 #: ../fish/guestfish-actions.pod:3762
27164 msgid "See also L</pvs-full>."
27165 msgstr ""
27166
27167 #. type: =head2
27168 #: ../fish/guestfish-actions.pod:3764
27169 msgid "pvs-full"
27170 msgstr ""
27171
27172 #. type: verbatim
27173 #: ../fish/guestfish-actions.pod:3766
27174 #, no-wrap
27175 msgid ""
27176 " pvs-full\n"
27177 "\n"
27178 msgstr ""
27179
27180 #. type: =head2
27181 #: ../fish/guestfish-actions.pod:3771
27182 msgid "pvuuid"
27183 msgstr ""
27184
27185 #. type: verbatim
27186 #: ../fish/guestfish-actions.pod:3773
27187 #, no-wrap
27188 msgid ""
27189 " pvuuid device\n"
27190 "\n"
27191 msgstr ""
27192
27193 #. type: =head2
27194 #: ../fish/guestfish-actions.pod:3777
27195 msgid "pwrite"
27196 msgstr ""
27197
27198 #. type: verbatim
27199 #: ../fish/guestfish-actions.pod:3779
27200 #, no-wrap
27201 msgid ""
27202 " pwrite path content offset\n"
27203 "\n"
27204 msgstr ""
27205
27206 #. type: textblock
27207 #: ../fish/guestfish-actions.pod:3790
27208 msgid "See also L</pread>, L</pwrite-device>."
27209 msgstr ""
27210
27211 #. type: =head2
27212 #: ../fish/guestfish-actions.pod:3795
27213 msgid "pwrite-device"
27214 msgstr ""
27215
27216 #. type: verbatim
27217 #: ../fish/guestfish-actions.pod:3797
27218 #, no-wrap
27219 msgid ""
27220 " pwrite-device device content offset\n"
27221 "\n"
27222 msgstr ""
27223
27224 #. type: textblock
27225 #: ../fish/guestfish-actions.pod:3807
27226 msgid "See also L</pwrite>."
27227 msgstr ""
27228
27229 #. type: =head2
27230 #: ../fish/guestfish-actions.pod:3812
27231 msgid "read-file"
27232 msgstr ""
27233
27234 #. type: verbatim
27235 #: ../fish/guestfish-actions.pod:3814
27236 #, no-wrap
27237 msgid ""
27238 " read-file path\n"
27239 "\n"
27240 msgstr ""
27241
27242 #. type: textblock
27243 #: ../fish/guestfish-actions.pod:3819
27244 msgid ""
27245 "Unlike L</cat>, this function can correctly handle files that contain "
27246 "embedded ASCII NUL characters.  However unlike L</download>, this function "
27247 "is limited in the total size of file that can be handled."
27248 msgstr ""
27249
27250 #. type: =head2
27251 #: ../fish/guestfish-actions.pod:3827
27252 msgid "read-lines"
27253 msgstr ""
27254
27255 #. type: verbatim
27256 #: ../fish/guestfish-actions.pod:3829
27257 #, no-wrap
27258 msgid ""
27259 " read-lines path\n"
27260 "\n"
27261 msgstr ""
27262
27263 #. type: textblock
27264 #: ../fish/guestfish-actions.pod:3836
27265 msgid ""
27266 "Note that this function cannot correctly handle binary files (specifically, "
27267 "files containing C<\\0> character which is treated as end of line).  For "
27268 "those you need to use the L</read-file> function which has a more complex "
27269 "interface."
27270 msgstr ""
27271
27272 #. type: =head2
27273 #: ../fish/guestfish-actions.pod:3841
27274 msgid "readdir"
27275 msgstr ""
27276
27277 #. type: verbatim
27278 #: ../fish/guestfish-actions.pod:3843
27279 #, no-wrap
27280 msgid ""
27281 " readdir dir\n"
27282 "\n"
27283 msgstr ""
27284
27285 #. type: textblock
27286 #: ../fish/guestfish-actions.pod:3895
27287 msgid ""
27288 "This function is primarily intended for use by programs.  To get a simple "
27289 "list of names, use L</ls>.  To get a printable directory for human "
27290 "consumption, use L</ll>."
27291 msgstr ""
27292
27293 #. type: =head2
27294 #: ../fish/guestfish-actions.pod:3899
27295 msgid "readlink"
27296 msgstr ""
27297
27298 #. type: verbatim
27299 #: ../fish/guestfish-actions.pod:3901
27300 #, no-wrap
27301 msgid ""
27302 " readlink path\n"
27303 "\n"
27304 msgstr ""
27305
27306 #. type: =head2
27307 #: ../fish/guestfish-actions.pod:3905
27308 msgid "readlinklist"
27309 msgstr ""
27310
27311 #. type: verbatim
27312 #: ../fish/guestfish-actions.pod:3907
27313 #, no-wrap
27314 msgid ""
27315 " readlinklist path 'names ...'\n"
27316 "\n"
27317 msgstr ""
27318
27319 #. type: =head2
27320 #: ../fish/guestfish-actions.pod:3931
27321 msgid "realpath"
27322 msgstr ""
27323
27324 #. type: verbatim
27325 #: ../fish/guestfish-actions.pod:3933
27326 #, no-wrap
27327 msgid ""
27328 " realpath path\n"
27329 "\n"
27330 msgstr ""
27331
27332 #. type: =head2
27333 #: ../fish/guestfish-actions.pod:3938
27334 msgid "removexattr"
27335 msgstr ""
27336
27337 #. type: verbatim
27338 #: ../fish/guestfish-actions.pod:3940
27339 #, no-wrap
27340 msgid ""
27341 " removexattr xattr path\n"
27342 "\n"
27343 msgstr ""
27344
27345 #. type: textblock
27346 #: ../fish/guestfish-actions.pod:3945
27347 msgid "See also: L</lremovexattr>, L<attr(5)>."
27348 msgstr ""
27349
27350 #. type: =head2
27351 #: ../fish/guestfish-actions.pod:3947
27352 msgid "resize2fs"
27353 msgstr ""
27354
27355 #. type: verbatim
27356 #: ../fish/guestfish-actions.pod:3949
27357 #, no-wrap
27358 msgid ""
27359 " resize2fs device\n"
27360 "\n"
27361 msgstr ""
27362
27363 #. type: textblock
27364 #: ../fish/guestfish-actions.pod:3954
27365 msgid ""
27366 "I<Note:> It is sometimes required that you run L</e2fsck-f> on the C<device>"
27367 " before calling this command.  For unknown reasons C<resize2fs> sometimes "
27368 "gives an error about this and sometimes not.  In any case, it is always safe"
27369 " to call L</e2fsck-f> before calling this function."
27370 msgstr ""
27371
27372 #. type: =head2
27373 #: ../fish/guestfish-actions.pod:3960
27374 msgid "resize2fs-M"
27375 msgstr ""
27376
27377 #. type: verbatim
27378 #: ../fish/guestfish-actions.pod:3962
27379 #, no-wrap
27380 msgid ""
27381 " resize2fs-M device\n"
27382 "\n"
27383 msgstr ""
27384
27385 #. type: textblock
27386 #: ../fish/guestfish-actions.pod:3964
27387 msgid ""
27388 "This command is the same as L</resize2fs>, but the filesystem is resized to "
27389 "its minimum size.  This works like the I<-M> option to the C<resize2fs> "
27390 "command."
27391 msgstr ""
27392
27393 #. type: textblock
27394 #: ../fish/guestfish-actions.pod:3968
27395 msgid ""
27396 "To get the resulting size of the filesystem you should call L</tune2fs-l> "
27397 "and read the C<Block size> and C<Block count> values.  These two numbers, "
27398 "multiplied together, give the resulting size of the minimal filesystem in "
27399 "bytes."
27400 msgstr ""
27401
27402 #. type: =head2
27403 #: ../fish/guestfish-actions.pod:3973
27404 msgid "resize2fs-size"
27405 msgstr ""
27406
27407 #. type: verbatim
27408 #: ../fish/guestfish-actions.pod:3975
27409 #, no-wrap
27410 msgid ""
27411 " resize2fs-size device size\n"
27412 "\n"
27413 msgstr ""
27414
27415 #. type: textblock
27416 #: ../fish/guestfish-actions.pod:3977
27417 msgid ""
27418 "This command is the same as L</resize2fs> except that it allows you to "
27419 "specify the new size (in bytes) explicitly."
27420 msgstr ""
27421
27422 #. type: =head2
27423 #: ../fish/guestfish-actions.pod:3980
27424 msgid "rm"
27425 msgstr ""
27426
27427 #. type: verbatim
27428 #: ../fish/guestfish-actions.pod:3982
27429 #, no-wrap
27430 msgid ""
27431 " rm path\n"
27432 "\n"
27433 msgstr ""
27434
27435 #. type: =head2
27436 #: ../fish/guestfish-actions.pod:3986
27437 msgid "rm-rf"
27438 msgstr ""
27439
27440 #. type: verbatim
27441 #: ../fish/guestfish-actions.pod:3988
27442 #, no-wrap
27443 msgid ""
27444 " rm-rf path\n"
27445 "\n"
27446 msgstr ""
27447
27448 #. type: =head2
27449 #: ../fish/guestfish-actions.pod:3994
27450 msgid "rmdir"
27451 msgstr ""
27452
27453 #. type: verbatim
27454 #: ../fish/guestfish-actions.pod:3996
27455 #, no-wrap
27456 msgid ""
27457 " rmdir path\n"
27458 "\n"
27459 msgstr ""
27460
27461 #. type: =head2
27462 #: ../fish/guestfish-actions.pod:4000
27463 msgid "rmmountpoint"
27464 msgstr ""
27465
27466 #. type: verbatim
27467 #: ../fish/guestfish-actions.pod:4002
27468 #, no-wrap
27469 msgid ""
27470 " rmmountpoint exemptpath\n"
27471 "\n"
27472 msgstr ""
27473
27474 #. type: textblock
27475 #: ../fish/guestfish-actions.pod:4004
27476 msgid ""
27477 "This calls removes a mountpoint that was previously created with "
27478 "L</mkmountpoint>.  See L</mkmountpoint> for full details."
27479 msgstr ""
27480
27481 #. type: =head2
27482 #: ../fish/guestfish-actions.pod:4008
27483 msgid "scrub-device"
27484 msgstr ""
27485
27486 #. type: verbatim
27487 #: ../fish/guestfish-actions.pod:4010
27488 #, no-wrap
27489 msgid ""
27490 " scrub-device device\n"
27491 "\n"
27492 msgstr ""
27493
27494 #. type: =head2
27495 #: ../fish/guestfish-actions.pod:4021
27496 msgid "scrub-file"
27497 msgstr ""
27498
27499 #. type: verbatim
27500 #: ../fish/guestfish-actions.pod:4023
27501 #, no-wrap
27502 msgid ""
27503 " scrub-file file\n"
27504 "\n"
27505 msgstr ""
27506
27507 #. type: =head2
27508 #: ../fish/guestfish-actions.pod:4033
27509 msgid "scrub-freespace"
27510 msgstr ""
27511
27512 #. type: verbatim
27513 #: ../fish/guestfish-actions.pod:4035
27514 #, no-wrap
27515 msgid ""
27516 " scrub-freespace dir\n"
27517 "\n"
27518 msgstr ""
27519
27520 #. type: textblock
27521 #: ../fish/guestfish-actions.pod:4037
27522 msgid ""
27523 "This command creates the directory C<dir> and then fills it with files until"
27524 " the filesystem is full, and scrubs the files as for L</scrub-file>, and "
27525 "deletes them.  The intention is to scrub any free space on the partition "
27526 "containing C<dir>."
27527 msgstr ""
27528
27529 #. type: =head2
27530 #: ../fish/guestfish-actions.pod:4046
27531 msgid "set-append"
27532 msgstr ""
27533
27534 #. type: =head2
27535 #: ../fish/guestfish-actions.pod:4048
27536 msgid "append"
27537 msgstr ""
27538
27539 #. type: verbatim
27540 #: ../fish/guestfish-actions.pod:4050
27541 #, no-wrap
27542 msgid ""
27543 " set-append append\n"
27544 "\n"
27545 msgstr ""
27546
27547 #. type: =head2
27548 #: ../fish/guestfish-actions.pod:4061
27549 msgid "set-attach-method"
27550 msgstr ""
27551
27552 #. type: =head2
27553 #: ../fish/guestfish-actions.pod:4063
27554 msgid "attach-method"
27555 msgstr ""
27556
27557 #. type: verbatim
27558 #: ../fish/guestfish-actions.pod:4065
27559 #, no-wrap
27560 msgid ""
27561 " set-attach-method attachmethod\n"
27562 "\n"
27563 msgstr ""
27564
27565 #. type: =head2
27566 #: ../fish/guestfish-actions.pod:4087
27567 msgid "set-autosync"
27568 msgstr ""
27569
27570 #. type: =head2
27571 #: ../fish/guestfish-actions.pod:4089
27572 msgid "autosync"
27573 msgstr ""
27574
27575 #. type: verbatim
27576 #: ../fish/guestfish-actions.pod:4091
27577 #, no-wrap
27578 msgid ""
27579 " set-autosync true|false\n"
27580 "\n"
27581 msgstr ""
27582
27583 #. type: =head2
27584 #: ../fish/guestfish-actions.pod:4101
27585 msgid "set-direct"
27586 msgstr ""
27587
27588 #. type: =head2
27589 #: ../fish/guestfish-actions.pod:4103
27590 msgid "direct"
27591 msgstr ""
27592
27593 #. type: verbatim
27594 #: ../fish/guestfish-actions.pod:4105
27595 #, no-wrap
27596 msgid ""
27597 " set-direct true|false\n"
27598 "\n"
27599 msgstr ""
27600
27601 #. type: textblock
27602 #: ../fish/guestfish-actions.pod:4111
27603 msgid ""
27604 "One consequence of this is that log messages aren't caught by the library "
27605 "and handled by L</set-log-message-callback>, but go straight to stdout."
27606 msgstr ""
27607
27608 #. type: =head2
27609 #: ../fish/guestfish-actions.pod:4120
27610 msgid "set-e2label"
27611 msgstr ""
27612
27613 #. type: verbatim
27614 #: ../fish/guestfish-actions.pod:4122
27615 #, no-wrap
27616 msgid ""
27617 " set-e2label device label\n"
27618 "\n"
27619 msgstr ""
27620
27621 #. type: textblock
27622 #: ../fish/guestfish-actions.pod:4128
27623 msgid ""
27624 "You can use either L</tune2fs-l> or L</get-e2label> to return the existing "
27625 "label on a filesystem."
27626 msgstr ""
27627
27628 #. type: =head2
27629 #: ../fish/guestfish-actions.pod:4131
27630 msgid "set-e2uuid"
27631 msgstr ""
27632
27633 #. type: verbatim
27634 #: ../fish/guestfish-actions.pod:4133
27635 #, no-wrap
27636 msgid ""
27637 " set-e2uuid device uuid\n"
27638 "\n"
27639 msgstr ""
27640
27641 #. type: textblock
27642 #: ../fish/guestfish-actions.pod:4140
27643 msgid ""
27644 "You can use either L</tune2fs-l> or L</get-e2uuid> to return the existing "
27645 "UUID of a filesystem."
27646 msgstr ""
27647
27648 #. type: =head2
27649 #: ../fish/guestfish-actions.pod:4143
27650 msgid "set-memsize"
27651 msgstr ""
27652
27653 #. type: =head2
27654 #: ../fish/guestfish-actions.pod:4145
27655 msgid "memsize"
27656 msgstr ""
27657
27658 #. type: verbatim
27659 #: ../fish/guestfish-actions.pod:4147
27660 #, no-wrap
27661 msgid ""
27662 " set-memsize memsize\n"
27663 "\n"
27664 msgstr ""
27665
27666 #. type: textblock
27667 #: ../fish/guestfish-actions.pod:4149
27668 msgid ""
27669 "This sets the memory size in megabytes allocated to the qemu subprocess.  "
27670 "This only has any effect if called before L</launch>."
27671 msgstr ""
27672
27673 #. type: =head2
27674 #: ../fish/guestfish-actions.pod:4160
27675 msgid "set-network"
27676 msgstr ""
27677
27678 #. type: =head2
27679 #: ../fish/guestfish-actions.pod:4162
27680 msgid "network"
27681 msgstr ""
27682
27683 #. type: verbatim
27684 #: ../fish/guestfish-actions.pod:4164
27685 #, no-wrap
27686 msgid ""
27687 " set-network true|false\n"
27688 "\n"
27689 msgstr ""
27690
27691 #. type: textblock
27692 #: ../fish/guestfish-actions.pod:4172
27693 msgid ""
27694 "You must call this before calling L</launch>, otherwise it has no effect."
27695 msgstr ""
27696
27697 #. type: =head2
27698 #: ../fish/guestfish-actions.pod:4175
27699 msgid "set-path"
27700 msgstr ""
27701
27702 #. type: =head2
27703 #: ../fish/guestfish-actions.pod:4177
27704 msgid "path"
27705 msgstr ""
27706
27707 #. type: verbatim
27708 #: ../fish/guestfish-actions.pod:4179
27709 #, no-wrap
27710 msgid ""
27711 " set-path searchpath\n"
27712 "\n"
27713 msgstr ""
27714
27715 #. type: =head2
27716 #: ../fish/guestfish-actions.pod:4188
27717 msgid "set-pgroup"
27718 msgstr ""
27719
27720 #. type: =head2
27721 #: ../fish/guestfish-actions.pod:4190
27722 msgid "pgroup"
27723 msgstr ""
27724
27725 #. type: verbatim
27726 #: ../fish/guestfish-actions.pod:4192
27727 #, no-wrap
27728 msgid ""
27729 " set-pgroup true|false\n"
27730 "\n"
27731 msgstr ""
27732
27733 #. type: =head2
27734 #: ../fish/guestfish-actions.pod:4203
27735 msgid "set-qemu"
27736 msgstr ""
27737
27738 #. type: =head2
27739 #: ../fish/guestfish-actions.pod:4205
27740 msgid "qemu"
27741 msgstr ""
27742
27743 #. type: verbatim
27744 #: ../fish/guestfish-actions.pod:4207
27745 #, no-wrap
27746 msgid ""
27747 " set-qemu qemu\n"
27748 "\n"
27749 msgstr ""
27750
27751 #. type: =head2
27752 #: ../fish/guestfish-actions.pod:4227
27753 msgid "set-recovery-proc"
27754 msgstr ""
27755
27756 #. type: =head2
27757 #: ../fish/guestfish-actions.pod:4229
27758 msgid "recovery-proc"
27759 msgstr ""
27760
27761 #. type: verbatim
27762 #: ../fish/guestfish-actions.pod:4231
27763 #, no-wrap
27764 msgid ""
27765 " set-recovery-proc true|false\n"
27766 "\n"
27767 msgstr ""
27768
27769 #. type: textblock
27770 #: ../fish/guestfish-actions.pod:4233
27771 msgid ""
27772 "If this is called with the parameter C<false> then L</launch> does not "
27773 "create a recovery process.  The purpose of the recovery process is to stop "
27774 "runaway qemu processes in the case where the main program aborts abruptly."
27775 msgstr ""
27776
27777 #. type: textblock
27778 #: ../fish/guestfish-actions.pod:4238
27779 msgid ""
27780 "This only has any effect if called before L</launch>, and the default is "
27781 "true."
27782 msgstr ""
27783
27784 #. type: =head2
27785 #: ../fish/guestfish-actions.pod:4247
27786 msgid "set-selinux"
27787 msgstr ""
27788
27789 #. type: =head2
27790 #: ../fish/guestfish-actions.pod:4249
27791 msgid "selinux"
27792 msgstr ""
27793
27794 #. type: verbatim
27795 #: ../fish/guestfish-actions.pod:4251
27796 #, no-wrap
27797 msgid ""
27798 " set-selinux true|false\n"
27799 "\n"
27800 msgstr ""
27801
27802 #. type: =head2
27803 #: ../fish/guestfish-actions.pod:4262
27804 msgid "set-trace"
27805 msgstr ""
27806
27807 #. type: =head2
27808 #: ../fish/guestfish-actions.pod:4264
27809 msgid "trace"
27810 msgstr ""
27811
27812 #. type: verbatim
27813 #: ../fish/guestfish-actions.pod:4266
27814 #, no-wrap
27815 msgid ""
27816 " set-trace true|false\n"
27817 "\n"
27818 msgstr ""
27819
27820 #. type: textblock
27821 #: ../fish/guestfish-actions.pod:4278
27822 msgid ""
27823 "Trace messages are normally sent to C<stderr>, unless you register a "
27824 "callback to send them somewhere else (see L</set-event-callback>)."
27825 msgstr ""
27826
27827 #. type: =head2
27828 #: ../fish/guestfish-actions.pod:4282
27829 msgid "set-verbose"
27830 msgstr ""
27831
27832 #. type: =head2
27833 #: ../fish/guestfish-actions.pod:4284
27834 msgid "verbose"
27835 msgstr ""
27836
27837 #. type: verbatim
27838 #: ../fish/guestfish-actions.pod:4286
27839 #, no-wrap
27840 msgid ""
27841 " set-verbose true|false\n"
27842 "\n"
27843 msgstr ""
27844
27845 #. type: textblock
27846 #: ../fish/guestfish-actions.pod:4293
27847 msgid ""
27848 "Verbose messages are normally sent to C<stderr>, unless you register a "
27849 "callback to send them somewhere else (see L</set-event-callback>)."
27850 msgstr ""
27851
27852 #. type: =head2
27853 #: ../fish/guestfish-actions.pod:4297
27854 msgid "setcon"
27855 msgstr ""
27856
27857 #. type: verbatim
27858 #: ../fish/guestfish-actions.pod:4299
27859 #, no-wrap
27860 msgid ""
27861 " setcon context\n"
27862 "\n"
27863 msgstr ""
27864
27865 #. type: =head2
27866 #: ../fish/guestfish-actions.pod:4306
27867 msgid "setxattr"
27868 msgstr ""
27869
27870 #. type: verbatim
27871 #: ../fish/guestfish-actions.pod:4308
27872 #, no-wrap
27873 msgid ""
27874 " setxattr xattr val vallen path\n"
27875 "\n"
27876 msgstr ""
27877
27878 #. type: textblock
27879 #: ../fish/guestfish-actions.pod:4314
27880 msgid "See also: L</lsetxattr>, L<attr(5)>."
27881 msgstr ""
27882
27883 #. type: =head2
27884 #: ../fish/guestfish-actions.pod:4316
27885 msgid "sfdisk"
27886 msgstr ""
27887
27888 #. type: verbatim
27889 #: ../fish/guestfish-actions.pod:4318
27890 #, no-wrap
27891 msgid ""
27892 " sfdisk device cyls heads sectors 'lines ...'\n"
27893 "\n"
27894 msgstr ""
27895
27896 #. type: textblock
27897 #: ../fish/guestfish-actions.pod:4340
27898 msgid "See also: L</sfdisk-l>, L</sfdisk-N>, L</part-init>"
27899 msgstr ""
27900
27901 #. type: =head2
27902 #: ../fish/guestfish-actions.pod:4353
27903 msgid "sfdiskM"
27904 msgstr ""
27905
27906 #. type: verbatim
27907 #: ../fish/guestfish-actions.pod:4355
27908 #, no-wrap
27909 msgid ""
27910 " sfdiskM device 'lines ...'\n"
27911 "\n"
27912 msgstr ""
27913
27914 #. type: textblock
27915 #: ../fish/guestfish-actions.pod:4357
27916 msgid ""
27917 "This is a simplified interface to the L</sfdisk> command, where partition "
27918 "sizes are specified in megabytes only (rounded to the nearest cylinder) and "
27919 "you don't need to specify the cyls, heads and sectors parameters which were "
27920 "rarely if ever used anyway."
27921 msgstr ""
27922
27923 #. type: textblock
27924 #: ../fish/guestfish-actions.pod:4363
27925 msgid "See also: L</sfdisk>, the L<sfdisk(8)> manpage and L</part-disk>"
27926 msgstr ""
27927
27928 #. type: =head2
27929 #: ../fish/guestfish-actions.pod:4376
27930 msgid "sfdisk-N"
27931 msgstr ""
27932
27933 #. type: verbatim
27934 #: ../fish/guestfish-actions.pod:4378
27935 #, no-wrap
27936 msgid ""
27937 " sfdisk-N device partnum cyls heads sectors line\n"
27938 "\n"
27939 msgstr ""
27940
27941 #. type: textblock
27942 #: ../fish/guestfish-actions.pod:4383
27943 msgid ""
27944 "For other parameters, see L</sfdisk>.  You should usually pass C<0> for the "
27945 "cyls/heads/sectors parameters."
27946 msgstr ""
27947
27948 #. type: textblock
27949 #: ../fish/guestfish-actions.pod:4386
27950 msgid "See also: L</part-add>"
27951 msgstr ""
27952
27953 #. type: =head2
27954 #: ../fish/guestfish-actions.pod:4398
27955 msgid "sfdisk-disk-geometry"
27956 msgstr ""
27957
27958 #. type: verbatim
27959 #: ../fish/guestfish-actions.pod:4400
27960 #, no-wrap
27961 msgid ""
27962 " sfdisk-disk-geometry device\n"
27963 "\n"
27964 msgstr ""
27965
27966 #. type: textblock
27967 #: ../fish/guestfish-actions.pod:4402
27968 msgid ""
27969 "This displays the disk geometry of C<device> read from the partition table."
27970 "  Especially in the case where the underlying block device has been resized,"
27971 " this can be different from the kernel's idea of the geometry (see L"
27972 "</sfdisk-kernel-geometry>)."
27973 msgstr ""
27974
27975 #. type: =head2
27976 #: ../fish/guestfish-actions.pod:4410
27977 msgid "sfdisk-kernel-geometry"
27978 msgstr ""
27979
27980 #. type: verbatim
27981 #: ../fish/guestfish-actions.pod:4412
27982 #, no-wrap
27983 msgid ""
27984 " sfdisk-kernel-geometry device\n"
27985 "\n"
27986 msgstr ""
27987
27988 #. type: =head2
27989 #: ../fish/guestfish-actions.pod:4419
27990 msgid "sfdisk-l"
27991 msgstr ""
27992
27993 #. type: verbatim
27994 #: ../fish/guestfish-actions.pod:4421
27995 #, no-wrap
27996 msgid ""
27997 " sfdisk-l device\n"
27998 "\n"
27999 msgstr ""
28000
28001 #. type: textblock
28002 #: ../fish/guestfish-actions.pod:4427
28003 msgid "See also: L</part-list>"
28004 msgstr ""
28005
28006 #. type: =head2
28007 #: ../fish/guestfish-actions.pod:4436
28008 msgid "sh"
28009 msgstr ""
28010
28011 #. type: verbatim
28012 #: ../fish/guestfish-actions.pod:4438
28013 #, no-wrap
28014 msgid ""
28015 " sh command\n"
28016 "\n"
28017 msgstr ""
28018
28019 #. type: textblock
28020 #: ../fish/guestfish-actions.pod:4443
28021 msgid "This is like L</command>, but passes the command to:"
28022 msgstr ""
28023
28024 #. type: textblock
28025 #: ../fish/guestfish-actions.pod:4451
28026 msgid "All the provisos about L</command> apply to this call."
28027 msgstr ""
28028
28029 #. type: =head2
28030 #: ../fish/guestfish-actions.pod:4453
28031 msgid "sh-lines"
28032 msgstr ""
28033
28034 #. type: verbatim
28035 #: ../fish/guestfish-actions.pod:4455
28036 #, no-wrap
28037 msgid ""
28038 " sh-lines command\n"
28039 "\n"
28040 msgstr ""
28041
28042 #. type: textblock
28043 #: ../fish/guestfish-actions.pod:4457
28044 msgid ""
28045 "This is the same as L</sh>, but splits the result into a list of lines."
28046 msgstr ""
28047
28048 #. type: textblock
28049 #: ../fish/guestfish-actions.pod:4460
28050 msgid "See also: L</command-lines>"
28051 msgstr ""
28052
28053 #. type: =head2
28054 #: ../fish/guestfish-actions.pod:4462
28055 msgid "sleep"
28056 msgstr ""
28057
28058 #. type: verbatim
28059 #: ../fish/guestfish-actions.pod:4464
28060 #, no-wrap
28061 msgid ""
28062 " sleep secs\n"
28063 "\n"
28064 msgstr ""
28065
28066 #. type: =head2
28067 #: ../fish/guestfish-actions.pod:4468
28068 msgid "stat"
28069 msgstr ""
28070
28071 #. type: verbatim
28072 #: ../fish/guestfish-actions.pod:4470
28073 #, no-wrap
28074 msgid ""
28075 " stat path\n"
28076 "\n"
28077 msgstr ""
28078
28079 #. type: =head2
28080 #: ../fish/guestfish-actions.pod:4476
28081 msgid "statvfs"
28082 msgstr ""
28083
28084 #. type: verbatim
28085 #: ../fish/guestfish-actions.pod:4478
28086 #, no-wrap
28087 msgid ""
28088 " statvfs path\n"
28089 "\n"
28090 msgstr ""
28091
28092 #. type: =head2
28093 #: ../fish/guestfish-actions.pod:4486
28094 msgid "strings"
28095 msgstr ""
28096
28097 #. type: verbatim
28098 #: ../fish/guestfish-actions.pod:4488
28099 #, no-wrap
28100 msgid ""
28101 " strings path\n"
28102 "\n"
28103 msgstr ""
28104
28105 #. type: =head2
28106 #: ../fish/guestfish-actions.pod:4496
28107 msgid "strings-e"
28108 msgstr ""
28109
28110 #. type: verbatim
28111 #: ../fish/guestfish-actions.pod:4498
28112 #, no-wrap
28113 msgid ""
28114 " strings-e encoding path\n"
28115 "\n"
28116 msgstr ""
28117
28118 #. type: textblock
28119 #: ../fish/guestfish-actions.pod:4500
28120 msgid ""
28121 "This is like the L</strings> command, but allows you to specify the encoding"
28122 " of strings that are looked for in the source file C<path>."
28123 msgstr ""
28124
28125 #. type: textblock
28126 #: ../fish/guestfish-actions.pod:4510
28127 msgid ""
28128 "Single 7-bit-byte characters like ASCII and the ASCII-compatible parts of "
28129 "ISO-8859-X (this is what L</strings> uses)."
28130 msgstr ""
28131
28132 #. type: =head2
28133 #: ../fish/guestfish-actions.pod:4542
28134 msgid "swapoff-device"
28135 msgstr ""
28136
28137 #. type: verbatim
28138 #: ../fish/guestfish-actions.pod:4544
28139 #, no-wrap
28140 msgid ""
28141 " swapoff-device device\n"
28142 "\n"
28143 msgstr ""
28144
28145 #. type: textblock
28146 #: ../fish/guestfish-actions.pod:4546
28147 msgid ""
28148 "This command disables the libguestfs appliance swap device or partition "
28149 "named C<device>.  See L</swapon-device>."
28150 msgstr ""
28151
28152 #. type: =head2
28153 #: ../fish/guestfish-actions.pod:4550
28154 msgid "swapoff-file"
28155 msgstr ""
28156
28157 #. type: verbatim
28158 #: ../fish/guestfish-actions.pod:4552
28159 #, no-wrap
28160 msgid ""
28161 " swapoff-file file\n"
28162 "\n"
28163 msgstr ""
28164
28165 #. type: =head2
28166 #: ../fish/guestfish-actions.pod:4556
28167 msgid "swapoff-label"
28168 msgstr ""
28169
28170 #. type: verbatim
28171 #: ../fish/guestfish-actions.pod:4558
28172 #, no-wrap
28173 msgid ""
28174 " swapoff-label label\n"
28175 "\n"
28176 msgstr ""
28177
28178 #. type: =head2
28179 #: ../fish/guestfish-actions.pod:4563
28180 msgid "swapoff-uuid"
28181 msgstr ""
28182
28183 #. type: verbatim
28184 #: ../fish/guestfish-actions.pod:4565
28185 #, no-wrap
28186 msgid ""
28187 " swapoff-uuid uuid\n"
28188 "\n"
28189 msgstr ""
28190
28191 #. type: =head2
28192 #: ../fish/guestfish-actions.pod:4570
28193 msgid "swapon-device"
28194 msgstr ""
28195
28196 #. type: verbatim
28197 #: ../fish/guestfish-actions.pod:4572
28198 #, no-wrap
28199 msgid ""
28200 " swapon-device device\n"
28201 "\n"
28202 msgstr ""
28203
28204 #. type: textblock
28205 #: ../fish/guestfish-actions.pod:4574
28206 msgid ""
28207 "This command enables the libguestfs appliance to use the swap device or "
28208 "partition named C<device>.  The increased memory is made available for all "
28209 "commands, for example those run using L</command> or L</sh>."
28210 msgstr ""
28211
28212 #. type: =head2
28213 #: ../fish/guestfish-actions.pod:4586
28214 msgid "swapon-file"
28215 msgstr ""
28216
28217 #. type: verbatim
28218 #: ../fish/guestfish-actions.pod:4588
28219 #, no-wrap
28220 msgid ""
28221 " swapon-file file\n"
28222 "\n"
28223 msgstr ""
28224
28225 #. type: textblock
28226 #: ../fish/guestfish-actions.pod:4590
28227 msgid ""
28228 "This command enables swap to a file.  See L</swapon-device> for other notes."
28229 msgstr ""
28230
28231 #. type: =head2
28232 #: ../fish/guestfish-actions.pod:4593
28233 msgid "swapon-label"
28234 msgstr ""
28235
28236 #. type: verbatim
28237 #: ../fish/guestfish-actions.pod:4595
28238 #, no-wrap
28239 msgid ""
28240 " swapon-label label\n"
28241 "\n"
28242 msgstr ""
28243
28244 #. type: textblock
28245 #: ../fish/guestfish-actions.pod:4597
28246 msgid ""
28247 "This command enables swap to a labeled swap partition.  See L</swapon-"
28248 "device> for other notes."
28249 msgstr ""
28250
28251 #. type: =head2
28252 #: ../fish/guestfish-actions.pod:4600
28253 msgid "swapon-uuid"
28254 msgstr ""
28255
28256 #. type: verbatim
28257 #: ../fish/guestfish-actions.pod:4602
28258 #, no-wrap
28259 msgid ""
28260 " swapon-uuid uuid\n"
28261 "\n"
28262 msgstr ""
28263
28264 #. type: textblock
28265 #: ../fish/guestfish-actions.pod:4604
28266 msgid ""
28267 "This command enables swap to a swap partition with the given UUID.  See L"
28268 "</swapon-device> for other notes."
28269 msgstr ""
28270
28271 #. type: =head2
28272 #: ../fish/guestfish-actions.pod:4607
28273 msgid "sync"
28274 msgstr ""
28275
28276 #. type: verbatim
28277 #: ../fish/guestfish-actions.pod:4609
28278 #, no-wrap
28279 msgid ""
28280 " sync\n"
28281 "\n"
28282 msgstr ""
28283
28284 #. type: =head2
28285 #: ../fish/guestfish-actions.pod:4617
28286 msgid "tail"
28287 msgstr ""
28288
28289 #. type: verbatim
28290 #: ../fish/guestfish-actions.pod:4619
28291 #, no-wrap
28292 msgid ""
28293 " tail path\n"
28294 "\n"
28295 msgstr ""
28296
28297 #. type: =head2
28298 #: ../fish/guestfish-actions.pod:4627
28299 msgid "tail-n"
28300 msgstr ""
28301
28302 #. type: verbatim
28303 #: ../fish/guestfish-actions.pod:4629
28304 #, no-wrap
28305 msgid ""
28306 " tail-n nrlines path\n"
28307 "\n"
28308 msgstr ""
28309
28310 #. type: =head2
28311 #: ../fish/guestfish-actions.pod:4642
28312 msgid "tar-in"
28313 msgstr ""
28314
28315 #. type: verbatim
28316 #: ../fish/guestfish-actions.pod:4644
28317 #, no-wrap
28318 msgid ""
28319 " tar-in (tarfile|-) directory\n"
28320 "\n"
28321 msgstr ""
28322
28323 #. type: textblock
28324 #: ../fish/guestfish-actions.pod:4649
28325 msgid "To upload a compressed tarball, use L</tgz-in> or L</txz-in>."
28326 msgstr ""
28327
28328 #. type: =head2
28329 #: ../fish/guestfish-actions.pod:4654
28330 msgid "tar-out"
28331 msgstr ""
28332
28333 #. type: verbatim
28334 #: ../fish/guestfish-actions.pod:4656
28335 #, no-wrap
28336 msgid ""
28337 " tar-out directory (tarfile|-)\n"
28338 "\n"
28339 msgstr ""
28340
28341 #. type: textblock
28342 #: ../fish/guestfish-actions.pod:4661
28343 msgid "To download a compressed tarball, use L</tgz-out> or L</txz-out>."
28344 msgstr ""
28345
28346 #. type: =head2
28347 #: ../fish/guestfish-actions.pod:4666
28348 msgid "tgz-in"
28349 msgstr ""
28350
28351 #. type: verbatim
28352 #: ../fish/guestfish-actions.pod:4668
28353 #, no-wrap
28354 msgid ""
28355 " tgz-in (tarball|-) directory\n"
28356 "\n"
28357 msgstr ""
28358
28359 #. type: textblock
28360 #: ../fish/guestfish-actions.pod:4673
28361 msgid "To upload an uncompressed tarball, use L</tar-in>."
28362 msgstr ""
28363
28364 #. type: =head2
28365 #: ../fish/guestfish-actions.pod:4677
28366 msgid "tgz-out"
28367 msgstr ""
28368
28369 #. type: verbatim
28370 #: ../fish/guestfish-actions.pod:4679
28371 #, no-wrap
28372 msgid ""
28373 " tgz-out directory (tarball|-)\n"
28374 "\n"
28375 msgstr ""
28376
28377 #. type: textblock
28378 #: ../fish/guestfish-actions.pod:4684
28379 msgid "To download an uncompressed tarball, use L</tar-out>."
28380 msgstr ""
28381
28382 #. type: =head2
28383 #: ../fish/guestfish-actions.pod:4688
28384 msgid "touch"
28385 msgstr ""
28386
28387 #. type: verbatim
28388 #: ../fish/guestfish-actions.pod:4690
28389 #, no-wrap
28390 msgid ""
28391 " touch path\n"
28392 "\n"
28393 msgstr ""
28394
28395 #. type: =head2
28396 #: ../fish/guestfish-actions.pod:4699
28397 msgid "truncate"
28398 msgstr ""
28399
28400 #. type: verbatim
28401 #: ../fish/guestfish-actions.pod:4701
28402 #, no-wrap
28403 msgid ""
28404 " truncate path\n"
28405 "\n"
28406 msgstr ""
28407
28408 #. type: =head2
28409 #: ../fish/guestfish-actions.pod:4706
28410 msgid "truncate-size"
28411 msgstr ""
28412
28413 #. type: verbatim
28414 #: ../fish/guestfish-actions.pod:4708
28415 #, no-wrap
28416 msgid ""
28417 " truncate-size path size\n"
28418 "\n"
28419 msgstr ""
28420
28421 #. type: textblock
28422 #: ../fish/guestfish-actions.pod:4713
28423 msgid ""
28424 "If the current file size is less than C<size> then the file is extended to "
28425 "the required size with zero bytes.  This creates a sparse file (ie. disk "
28426 "blocks are not allocated for the file until you write to it).  To create a "
28427 "non-sparse file of zeroes, use L</fallocate64> instead."
28428 msgstr ""
28429
28430 #. type: =head2
28431 #: ../fish/guestfish-actions.pod:4719
28432 msgid "tune2fs-l"
28433 msgstr ""
28434
28435 #. type: verbatim
28436 #: ../fish/guestfish-actions.pod:4721
28437 #, no-wrap
28438 msgid ""
28439 " tune2fs-l device\n"
28440 "\n"
28441 msgstr ""
28442
28443 #. type: =head2
28444 #: ../fish/guestfish-actions.pod:4731
28445 msgid "txz-in"
28446 msgstr ""
28447
28448 #. type: verbatim
28449 #: ../fish/guestfish-actions.pod:4733
28450 #, no-wrap
28451 msgid ""
28452 " txz-in (tarball|-) directory\n"
28453 "\n"
28454 msgstr ""
28455
28456 #. type: =head2
28457 #: ../fish/guestfish-actions.pod:4740
28458 msgid "txz-out"
28459 msgstr ""
28460
28461 #. type: verbatim
28462 #: ../fish/guestfish-actions.pod:4742
28463 #, no-wrap
28464 msgid ""
28465 " txz-out directory (tarball|-)\n"
28466 "\n"
28467 msgstr ""
28468
28469 #. type: =head2
28470 #: ../fish/guestfish-actions.pod:4749
28471 msgid "umask"
28472 msgstr ""
28473
28474 #. type: verbatim
28475 #: ../fish/guestfish-actions.pod:4751
28476 #, no-wrap
28477 msgid ""
28478 " umask mask\n"
28479 "\n"
28480 msgstr ""
28481
28482 #. type: textblock
28483 #: ../fish/guestfish-actions.pod:4765
28484 msgid "See also L</get-umask>, L<umask(2)>, L</mknod>, L</mkdir>."
28485 msgstr ""
28486
28487 #. type: =head2
28488 #: ../fish/guestfish-actions.pod:4770
28489 msgid "umount"
28490 msgstr ""
28491
28492 #. type: =head2
28493 #: ../fish/guestfish-actions.pod:4772
28494 msgid "unmount"
28495 msgstr ""
28496
28497 #. type: verbatim
28498 #: ../fish/guestfish-actions.pod:4774
28499 #, no-wrap
28500 msgid ""
28501 " umount pathordevice\n"
28502 "\n"
28503 msgstr ""
28504
28505 #. type: =head2
28506 #: ../fish/guestfish-actions.pod:4780
28507 msgid "umount-all"
28508 msgstr ""
28509
28510 #. type: =head2
28511 #: ../fish/guestfish-actions.pod:4782
28512 msgid "unmount-all"
28513 msgstr ""
28514
28515 #. type: verbatim
28516 #: ../fish/guestfish-actions.pod:4784
28517 #, no-wrap
28518 msgid ""
28519 " umount-all\n"
28520 "\n"
28521 msgstr ""
28522
28523 #. type: =head2
28524 #: ../fish/guestfish-actions.pod:4790
28525 msgid "upload"
28526 msgstr ""
28527
28528 #. type: verbatim
28529 #: ../fish/guestfish-actions.pod:4792
28530 #, no-wrap
28531 msgid ""
28532 " upload (filename|-) remotefilename\n"
28533 "\n"
28534 msgstr ""
28535
28536 #. type: textblock
28537 #: ../fish/guestfish-actions.pod:4799
28538 msgid "See also L</download>."
28539 msgstr ""
28540
28541 #. type: =head2
28542 #: ../fish/guestfish-actions.pod:4803
28543 msgid "upload-offset"
28544 msgstr ""
28545
28546 #. type: verbatim
28547 #: ../fish/guestfish-actions.pod:4805
28548 #, no-wrap
28549 msgid ""
28550 " upload-offset (filename|-) remotefilename offset\n"
28551 "\n"
28552 msgstr ""
28553
28554 #. type: textblock
28555 #: ../fish/guestfish-actions.pod:4817
28556 msgid ""
28557 "Note that there is no limit on the amount of data that can be uploaded with "
28558 "this call, unlike with L</pwrite>, and this call always writes the full "
28559 "amount unless an error occurs."
28560 msgstr ""
28561
28562 #. type: textblock
28563 #: ../fish/guestfish-actions.pod:4822
28564 msgid "See also L</upload>, L</pwrite>."
28565 msgstr ""
28566
28567 #. type: =head2
28568 #: ../fish/guestfish-actions.pod:4826
28569 msgid "utimens"
28570 msgstr ""
28571
28572 #. type: verbatim
28573 #: ../fish/guestfish-actions.pod:4828
28574 #, no-wrap
28575 msgid ""
28576 " utimens path atsecs atnsecs mtsecs mtnsecs\n"
28577 "\n"
28578 msgstr ""
28579
28580 #. type: =head2
28581 #: ../fish/guestfish-actions.pod:4847
28582 msgid "version"
28583 msgstr ""
28584
28585 #. type: verbatim
28586 #: ../fish/guestfish-actions.pod:4849
28587 #, no-wrap
28588 msgid ""
28589 " version\n"
28590 "\n"
28591 msgstr ""
28592
28593 #. type: textblock
28594 #: ../fish/guestfish-actions.pod:4876
28595 msgid ""
28596 "I<Note:> Don't use this call to test for availability of features.  In "
28597 "enterprise distributions we backport features from later versions into "
28598 "earlier versions, making this an unreliable way to test for features.  Use "
28599 "L</available> instead."
28600 msgstr ""
28601
28602 #. type: =head2
28603 #: ../fish/guestfish-actions.pod:4882
28604 msgid "vfs-label"
28605 msgstr ""
28606
28607 #. type: verbatim
28608 #: ../fish/guestfish-actions.pod:4884
28609 #, no-wrap
28610 msgid ""
28611 " vfs-label device\n"
28612 "\n"
28613 msgstr ""
28614
28615 #. type: textblock
28616 #: ../fish/guestfish-actions.pod:4891
28617 msgid "To find a filesystem from the label, use L</findfs-label>."
28618 msgstr ""
28619
28620 #. type: =head2
28621 #: ../fish/guestfish-actions.pod:4893
28622 msgid "vfs-type"
28623 msgstr ""
28624
28625 #. type: verbatim
28626 #: ../fish/guestfish-actions.pod:4895
28627 #, no-wrap
28628 msgid ""
28629 " vfs-type device\n"
28630 "\n"
28631 msgstr ""
28632
28633 #. type: =head2
28634 #: ../fish/guestfish-actions.pod:4905
28635 msgid "vfs-uuid"
28636 msgstr ""
28637
28638 #. type: verbatim
28639 #: ../fish/guestfish-actions.pod:4907
28640 #, no-wrap
28641 msgid ""
28642 " vfs-uuid device\n"
28643 "\n"
28644 msgstr ""
28645
28646 #. type: textblock
28647 #: ../fish/guestfish-actions.pod:4914
28648 msgid "To find a filesystem from the UUID, use L</findfs-uuid>."
28649 msgstr ""
28650
28651 #. type: =head2
28652 #: ../fish/guestfish-actions.pod:4916
28653 msgid "vg-activate"
28654 msgstr ""
28655
28656 #. type: verbatim
28657 #: ../fish/guestfish-actions.pod:4918
28658 #, no-wrap
28659 msgid ""
28660 " vg-activate true|false 'volgroups ...'\n"
28661 "\n"
28662 msgstr ""
28663
28664 #. type: =head2
28665 #: ../fish/guestfish-actions.pod:4928
28666 msgid "vg-activate-all"
28667 msgstr ""
28668
28669 #. type: verbatim
28670 #: ../fish/guestfish-actions.pod:4930
28671 #, no-wrap
28672 msgid ""
28673 " vg-activate-all true|false\n"
28674 "\n"
28675 msgstr ""
28676
28677 #. type: =head2
28678 #: ../fish/guestfish-actions.pod:4937
28679 msgid "vgcreate"
28680 msgstr ""
28681
28682 #. type: verbatim
28683 #: ../fish/guestfish-actions.pod:4939
28684 #, no-wrap
28685 msgid ""
28686 " vgcreate volgroup 'physvols ...'\n"
28687 "\n"
28688 msgstr ""
28689
28690 #. type: =head2
28691 #: ../fish/guestfish-actions.pod:4944
28692 msgid "vglvuuids"
28693 msgstr ""
28694
28695 #. type: verbatim
28696 #: ../fish/guestfish-actions.pod:4946
28697 #, no-wrap
28698 msgid ""
28699 " vglvuuids vgname\n"
28700 "\n"
28701 msgstr ""
28702
28703 #. type: textblock
28704 #: ../fish/guestfish-actions.pod:4951
28705 msgid ""
28706 "You can use this along with L</lvs> and L</lvuuid> calls to associate "
28707 "logical volumes and volume groups."
28708 msgstr ""
28709
28710 #. type: textblock
28711 #: ../fish/guestfish-actions.pod:4954
28712 msgid "See also L</vgpvuuids>."
28713 msgstr ""
28714
28715 #. type: =head2
28716 #: ../fish/guestfish-actions.pod:4956
28717 msgid "vgpvuuids"
28718 msgstr ""
28719
28720 #. type: verbatim
28721 #: ../fish/guestfish-actions.pod:4958
28722 #, no-wrap
28723 msgid ""
28724 " vgpvuuids vgname\n"
28725 "\n"
28726 msgstr ""
28727
28728 #. type: textblock
28729 #: ../fish/guestfish-actions.pod:4963
28730 msgid ""
28731 "You can use this along with L</pvs> and L</pvuuid> calls to associate "
28732 "physical volumes and volume groups."
28733 msgstr ""
28734
28735 #. type: textblock
28736 #: ../fish/guestfish-actions.pod:4966
28737 msgid "See also L</vglvuuids>."
28738 msgstr ""
28739
28740 #. type: =head2
28741 #: ../fish/guestfish-actions.pod:4968
28742 msgid "vgremove"
28743 msgstr ""
28744
28745 #. type: verbatim
28746 #: ../fish/guestfish-actions.pod:4970
28747 #, no-wrap
28748 msgid ""
28749 " vgremove vgname\n"
28750 "\n"
28751 msgstr ""
28752
28753 #. type: =head2
28754 #: ../fish/guestfish-actions.pod:4977
28755 msgid "vgrename"
28756 msgstr ""
28757
28758 #. type: verbatim
28759 #: ../fish/guestfish-actions.pod:4979
28760 #, no-wrap
28761 msgid ""
28762 " vgrename volgroup newvolgroup\n"
28763 "\n"
28764 msgstr ""
28765
28766 #. type: =head2
28767 #: ../fish/guestfish-actions.pod:4983
28768 msgid "vgs"
28769 msgstr ""
28770
28771 #. type: verbatim
28772 #: ../fish/guestfish-actions.pod:4985
28773 #, no-wrap
28774 msgid ""
28775 " vgs\n"
28776 "\n"
28777 msgstr ""
28778
28779 #. type: textblock
28780 #: ../fish/guestfish-actions.pod:4993
28781 msgid "See also L</vgs-full>."
28782 msgstr ""
28783
28784 #. type: =head2
28785 #: ../fish/guestfish-actions.pod:4995
28786 msgid "vgs-full"
28787 msgstr ""
28788
28789 #. type: verbatim
28790 #: ../fish/guestfish-actions.pod:4997
28791 #, no-wrap
28792 msgid ""
28793 " vgs-full\n"
28794 "\n"
28795 msgstr ""
28796
28797 #. type: =head2
28798 #: ../fish/guestfish-actions.pod:5002
28799 msgid "vgscan"
28800 msgstr ""
28801
28802 #. type: verbatim
28803 #: ../fish/guestfish-actions.pod:5004
28804 #, no-wrap
28805 msgid ""
28806 " vgscan\n"
28807 "\n"
28808 msgstr ""
28809
28810 #. type: =head2
28811 #: ../fish/guestfish-actions.pod:5009
28812 msgid "vguuid"
28813 msgstr ""
28814
28815 #. type: verbatim
28816 #: ../fish/guestfish-actions.pod:5011
28817 #, no-wrap
28818 msgid ""
28819 " vguuid vgname\n"
28820 "\n"
28821 msgstr ""
28822
28823 #. type: =head2
28824 #: ../fish/guestfish-actions.pod:5015
28825 msgid "wc-c"
28826 msgstr ""
28827
28828 #. type: verbatim
28829 #: ../fish/guestfish-actions.pod:5017
28830 #, no-wrap
28831 msgid ""
28832 " wc-c path\n"
28833 "\n"
28834 msgstr ""
28835
28836 #. type: =head2
28837 #: ../fish/guestfish-actions.pod:5022
28838 msgid "wc-l"
28839 msgstr ""
28840
28841 #. type: verbatim
28842 #: ../fish/guestfish-actions.pod:5024
28843 #, no-wrap
28844 msgid ""
28845 " wc-l path\n"
28846 "\n"
28847 msgstr ""
28848
28849 #. type: =head2
28850 #: ../fish/guestfish-actions.pod:5029
28851 msgid "wc-w"
28852 msgstr ""
28853
28854 #. type: verbatim
28855 #: ../fish/guestfish-actions.pod:5031
28856 #, no-wrap
28857 msgid ""
28858 " wc-w path\n"
28859 "\n"
28860 msgstr ""
28861
28862 #. type: =head2
28863 #: ../fish/guestfish-actions.pod:5036
28864 msgid "write"
28865 msgstr ""
28866
28867 #. type: verbatim
28868 #: ../fish/guestfish-actions.pod:5038
28869 #, no-wrap
28870 msgid ""
28871 " write path content\n"
28872 "\n"
28873 msgstr ""
28874
28875 #. type: textblock
28876 #: ../fish/guestfish-actions.pod:5043
28877 msgid "See also L</write-append>."
28878 msgstr ""
28879
28880 #. type: =head2
28881 #: ../fish/guestfish-actions.pod:5048
28882 msgid "write-append"
28883 msgstr ""
28884
28885 #. type: verbatim
28886 #: ../fish/guestfish-actions.pod:5050
28887 #, no-wrap
28888 msgid ""
28889 " write-append path content\n"
28890 "\n"
28891 msgstr ""
28892
28893 #. type: textblock
28894 #: ../fish/guestfish-actions.pod:5055
28895 msgid "See also L</write>."
28896 msgstr ""
28897
28898 #. type: =head2
28899 #: ../fish/guestfish-actions.pod:5060
28900 msgid "write-file"
28901 msgstr ""
28902
28903 #. type: verbatim
28904 #: ../fish/guestfish-actions.pod:5062
28905 #, no-wrap
28906 msgid ""
28907 " write-file path content size\n"
28908 "\n"
28909 msgstr ""
28910
28911 #. type: =head2
28912 #: ../fish/guestfish-actions.pod:5085
28913 msgid "zegrep"
28914 msgstr ""
28915
28916 #. type: verbatim
28917 #: ../fish/guestfish-actions.pod:5087
28918 #, no-wrap
28919 msgid ""
28920 " zegrep regex path\n"
28921 "\n"
28922 msgstr ""
28923
28924 #. type: =head2
28925 #: ../fish/guestfish-actions.pod:5095
28926 msgid "zegrepi"
28927 msgstr ""
28928
28929 #. type: verbatim
28930 #: ../fish/guestfish-actions.pod:5097
28931 #, no-wrap
28932 msgid ""
28933 " zegrepi regex path\n"
28934 "\n"
28935 msgstr ""
28936
28937 #. type: =head2
28938 #: ../fish/guestfish-actions.pod:5105
28939 msgid "zero"
28940 msgstr ""
28941
28942 #. type: verbatim
28943 #: ../fish/guestfish-actions.pod:5107
28944 #, no-wrap
28945 msgid ""
28946 " zero device\n"
28947 "\n"
28948 msgstr ""
28949
28950 #. type: textblock
28951 #: ../fish/guestfish-actions.pod:5115
28952 msgid "See also: L</zero-device>, L</scrub-device>, L</is-zero-device>"
28953 msgstr ""
28954
28955 #. type: =head2
28956 #: ../fish/guestfish-actions.pod:5118
28957 msgid "zero-device"
28958 msgstr ""
28959
28960 #. type: verbatim
28961 #: ../fish/guestfish-actions.pod:5120
28962 #, no-wrap
28963 msgid ""
28964 " zero-device device\n"
28965 "\n"
28966 msgstr ""
28967
28968 #. type: textblock
28969 #: ../fish/guestfish-actions.pod:5122
28970 msgid ""
28971 "This command writes zeroes over the entire C<device>.  Compare with L</zero>"
28972 " which just zeroes the first few blocks of a device."
28973 msgstr ""
28974
28975 #. type: =head2
28976 #: ../fish/guestfish-actions.pod:5129
28977 msgid "zerofree"
28978 msgstr ""
28979
28980 #. type: verbatim
28981 #: ../fish/guestfish-actions.pod:5131
28982 #, no-wrap
28983 msgid ""
28984 " zerofree device\n"
28985 "\n"
28986 msgstr ""
28987
28988 #. type: =head2
28989 #: ../fish/guestfish-actions.pod:5144
28990 msgid "zfgrep"
28991 msgstr ""
28992
28993 #. type: verbatim
28994 #: ../fish/guestfish-actions.pod:5146
28995 #, no-wrap
28996 msgid ""
28997 " zfgrep pattern path\n"
28998 "\n"
28999 msgstr ""
29000
29001 #. type: =head2
29002 #: ../fish/guestfish-actions.pod:5154
29003 msgid "zfgrepi"
29004 msgstr ""
29005
29006 #. type: verbatim
29007 #: ../fish/guestfish-actions.pod:5156
29008 #, no-wrap
29009 msgid ""
29010 " zfgrepi pattern path\n"
29011 "\n"
29012 msgstr ""
29013
29014 #. type: =head2
29015 #: ../fish/guestfish-actions.pod:5164
29016 msgid "zfile"
29017 msgstr ""
29018
29019 #. type: verbatim
29020 #: ../fish/guestfish-actions.pod:5166
29021 #, no-wrap
29022 msgid ""
29023 " zfile meth path\n"
29024 "\n"
29025 msgstr ""
29026
29027 #. type: textblock
29028 #: ../fish/guestfish-actions.pod:5173
29029 msgid ""
29030 "Since 1.0.63, use L</file> instead which can now process compressed files."
29031 msgstr ""
29032
29033 #. type: =head2
29034 #: ../fish/guestfish-actions.pod:5183
29035 msgid "zgrep"
29036 msgstr ""
29037
29038 #. type: verbatim
29039 #: ../fish/guestfish-actions.pod:5185
29040 #, no-wrap
29041 msgid ""
29042 " zgrep regex path\n"
29043 "\n"
29044 msgstr ""
29045
29046 #. type: =head2
29047 #: ../fish/guestfish-actions.pod:5193
29048 msgid "zgrepi"
29049 msgstr ""
29050
29051 #. type: verbatim
29052 #: ../fish/guestfish-actions.pod:5195
29053 #, no-wrap
29054 msgid ""
29055 " zgrepi regex path\n"
29056 "\n"
29057 msgstr ""
29058
29059 #. type: =head2
29060 #: ../fish/guestfish-commands.pod:1
29061 msgid "alloc"
29062 msgstr ""
29063
29064 #. type: =head2
29065 #: ../fish/guestfish-commands.pod:3
29066 msgid "allocate"
29067 msgstr ""
29068
29069 #. type: verbatim
29070 #: ../fish/guestfish-commands.pod:5
29071 #, no-wrap
29072 msgid ""
29073 " alloc filename size\n"
29074 "\n"
29075 msgstr ""
29076
29077 #. type: textblock
29078 #: ../fish/guestfish-commands.pod:7
29079 msgid ""
29080 "This creates an empty (zeroed) file of the given size, and then adds so it "
29081 "can be further examined."
29082 msgstr ""
29083
29084 #. type: textblock
29085 #: ../fish/guestfish-commands.pod:10 ../fish/guestfish-commands.pod:182
29086 msgid "For more advanced image creation, see L<qemu-img(1)> utility."
29087 msgstr ""
29088
29089 #. type: textblock
29090 #: ../fish/guestfish-commands.pod:12 ../fish/guestfish-commands.pod:184
29091 msgid "Size can be specified using standard suffixes, eg. C<1M>."
29092 msgstr ""
29093
29094 #. type: textblock
29095 #: ../fish/guestfish-commands.pod:14
29096 msgid ""
29097 "To create a sparse file, use L</sparse> instead.  To create a prepared disk "
29098 "image, see L</PREPARED DISK IMAGES>."
29099 msgstr ""
29100
29101 #. type: =head2
29102 #: ../fish/guestfish-commands.pod:17
29103 msgid "copy-in"
29104 msgstr ""
29105
29106 #. type: verbatim
29107 #: ../fish/guestfish-commands.pod:19
29108 #, no-wrap
29109 msgid ""
29110 " copy-in local [local ...] /remotedir\n"
29111 "\n"
29112 msgstr ""
29113
29114 #. type: textblock
29115 #: ../fish/guestfish-commands.pod:21
29116 msgid ""
29117 "C<copy-in> copies local files or directories recursively into the disk "
29118 "image, placing them in the directory called C</remotedir> (which must "
29119 "exist).  This guestfish meta-command turns into a sequence of L</tar-in> and"
29120 " other commands as necessary."
29121 msgstr ""
29122
29123 #. type: textblock
29124 #: ../fish/guestfish-commands.pod:26
29125 msgid ""
29126 "Multiple local files and directories can be specified, but the last "
29127 "parameter must always be a remote directory.  Wildcards cannot be used."
29128 msgstr ""
29129
29130 #. type: =head2
29131 #: ../fish/guestfish-commands.pod:30
29132 msgid "copy-out"
29133 msgstr ""
29134
29135 #. type: verbatim
29136 #: ../fish/guestfish-commands.pod:32
29137 #, no-wrap
29138 msgid ""
29139 " copy-out remote [remote ...] localdir\n"
29140 "\n"
29141 msgstr ""
29142
29143 #. type: textblock
29144 #: ../fish/guestfish-commands.pod:34
29145 msgid ""
29146 "C<copy-out> copies remote files or directories recursively out of the disk "
29147 "image, placing them on the host disk in a local directory called C<localdir>"
29148 " (which must exist).  This guestfish meta-command turns into a sequence of "
29149 "L</download>, L</tar-out> and other commands as necessary."
29150 msgstr ""
29151
29152 #. type: textblock
29153 #: ../fish/guestfish-commands.pod:40
29154 msgid ""
29155 "Multiple remote files and directories can be specified, but the last "
29156 "parameter must always be a local directory.  To download to the current "
29157 "directory, use C<.> as in:"
29158 msgstr ""
29159
29160 #. type: verbatim
29161 #: ../fish/guestfish-commands.pod:44
29162 #, no-wrap
29163 msgid ""
29164 " copy-out /home .\n"
29165 "\n"
29166 msgstr ""
29167
29168 #. type: textblock
29169 #: ../fish/guestfish-commands.pod:46
29170 msgid ""
29171 "Wildcards cannot be used in the ordinary command, but you can use them with "
29172 "the help of L</glob> like this:"
29173 msgstr ""
29174
29175 #. type: verbatim
29176 #: ../fish/guestfish-commands.pod:49
29177 #, no-wrap
29178 msgid ""
29179 " glob copy-out /home/* .\n"
29180 "\n"
29181 msgstr ""
29182
29183 #. type: =head2
29184 #: ../fish/guestfish-commands.pod:51
29185 msgid "display"
29186 msgstr ""
29187
29188 #. type: verbatim
29189 #: ../fish/guestfish-commands.pod:53
29190 #, no-wrap
29191 msgid ""
29192 " display filename\n"
29193 "\n"
29194 msgstr ""
29195
29196 #. type: textblock
29197 #: ../fish/guestfish-commands.pod:55
29198 msgid ""
29199 "Use C<display> (a graphical display program) to display an image file.  It "
29200 "downloads the file, and runs C<display> on it."
29201 msgstr ""
29202
29203 #. type: textblock
29204 #: ../fish/guestfish-commands.pod:58
29205 msgid ""
29206 "To use an alternative program, set the C<GUESTFISH_DISPLAY_IMAGE> "
29207 "environment variable.  For example to use the GNOME display program:"
29208 msgstr ""
29209
29210 #. type: verbatim
29211 #: ../fish/guestfish-commands.pod:61
29212 #, no-wrap
29213 msgid ""
29214 " export GUESTFISH_DISPLAY_IMAGE=eog\n"
29215 "\n"
29216 msgstr ""
29217
29218 #. type: textblock
29219 #: ../fish/guestfish-commands.pod:63
29220 msgid "See also L<display(1)>."
29221 msgstr ""
29222
29223 #. type: =head2
29224 #: ../fish/guestfish-commands.pod:65
29225 msgid "echo"
29226 msgstr ""
29227
29228 #. type: verbatim
29229 #: ../fish/guestfish-commands.pod:67
29230 #, no-wrap
29231 msgid ""
29232 " echo [params ...]\n"
29233 "\n"
29234 msgstr ""
29235
29236 #. type: textblock
29237 #: ../fish/guestfish-commands.pod:69
29238 msgid "This echos the parameters to the terminal."
29239 msgstr ""
29240
29241 #. type: =head2
29242 #: ../fish/guestfish-commands.pod:71
29243 msgid "edit"
29244 msgstr ""
29245
29246 #. type: =head2
29247 #: ../fish/guestfish-commands.pod:73
29248 msgid "vi"
29249 msgstr ""
29250
29251 #. type: =head2
29252 #: ../fish/guestfish-commands.pod:75
29253 msgid "emacs"
29254 msgstr ""
29255
29256 #. type: verbatim
29257 #: ../fish/guestfish-commands.pod:77
29258 #, no-wrap
29259 msgid ""
29260 " edit filename\n"
29261 "\n"
29262 msgstr ""
29263
29264 #. type: textblock
29265 #: ../fish/guestfish-commands.pod:79
29266 msgid ""
29267 "This is used to edit a file.  It downloads the file, edits it locally using "
29268 "your editor, then uploads the result."
29269 msgstr ""
29270
29271 #. type: textblock
29272 #: ../fish/guestfish-commands.pod:82
29273 msgid ""
29274 "The editor is C<$EDITOR>.  However if you use the alternate commands C<vi> "
29275 "or C<emacs> you will get those corresponding editors."
29276 msgstr ""
29277
29278 #. type: =head2
29279 #: ../fish/guestfish-commands.pod:86
29280 msgid "glob"
29281 msgstr ""
29282
29283 #. type: verbatim
29284 #: ../fish/guestfish-commands.pod:88
29285 #, no-wrap
29286 msgid ""
29287 " glob command args...\n"
29288 "\n"
29289 msgstr ""
29290
29291 #. type: textblock
29292 #: ../fish/guestfish-commands.pod:90
29293 msgid ""
29294 "Expand wildcards in any paths in the args list, and run C<command> "
29295 "repeatedly on each matching path."
29296 msgstr ""
29297
29298 #. type: textblock
29299 #: ../fish/guestfish-commands.pod:93
29300 msgid "See L</WILDCARDS AND GLOBBING>."
29301 msgstr ""
29302
29303 #. type: =head2
29304 #: ../fish/guestfish-commands.pod:95
29305 msgid "hexedit"
29306 msgstr ""
29307
29308 #. type: verbatim
29309 #: ../fish/guestfish-commands.pod:97
29310 #, no-wrap
29311 msgid ""
29312 " hexedit <filename|device>\n"
29313 " hexedit <filename|device> <max>\n"
29314 " hexedit <filename|device> <start> <max>\n"
29315 "\n"
29316 msgstr ""
29317
29318 #. type: textblock
29319 #: ../fish/guestfish-commands.pod:101
29320 msgid ""
29321 "Use hexedit (a hex editor) to edit all or part of a binary file or block "
29322 "device."
29323 msgstr ""
29324
29325 #. type: textblock
29326 #: ../fish/guestfish-commands.pod:104
29327 msgid ""
29328 "This command works by downloading potentially the whole file or device, "
29329 "editing it locally, then uploading it.  If the file or device is large, you "
29330 "have to specify which part you wish to edit by using C<max> and/or C<start> "
29331 "C<max> parameters.  C<start> and C<max> are specified in bytes, with the "
29332 "usual modifiers allowed such as C<1M> (1 megabyte)."
29333 msgstr ""
29334
29335 #. type: textblock
29336 #: ../fish/guestfish-commands.pod:111
29337 msgid "For example to edit the first few sectors of a disk you might do:"
29338 msgstr ""
29339
29340 #. type: verbatim
29341 #: ../fish/guestfish-commands.pod:114
29342 #, no-wrap
29343 msgid ""
29344 " hexedit /dev/sda 1M\n"
29345 "\n"
29346 msgstr ""
29347
29348 #. type: textblock
29349 #: ../fish/guestfish-commands.pod:116
29350 msgid ""
29351 "which would allow you to edit anywhere within the first megabyte of the "
29352 "disk."
29353 msgstr ""
29354
29355 #. type: textblock
29356 #: ../fish/guestfish-commands.pod:119
29357 msgid "To edit the superblock of an ext2 filesystem on C</dev/sda1>, do:"
29358 msgstr ""
29359
29360 #. type: verbatim
29361 #: ../fish/guestfish-commands.pod:121
29362 #, no-wrap
29363 msgid ""
29364 " hexedit /dev/sda1 0x400 0x400\n"
29365 "\n"
29366 msgstr ""
29367
29368 #. type: textblock
29369 #: ../fish/guestfish-commands.pod:123
29370 msgid "(assuming the superblock is in the standard location)."
29371 msgstr ""
29372
29373 #. type: textblock
29374 #: ../fish/guestfish-commands.pod:125
29375 msgid ""
29376 "This command requires the external L<hexedit(1)> program.  You can specify "
29377 "another program to use by setting the C<HEXEDITOR> environment variable."
29378 msgstr ""
29379
29380 #. type: textblock
29381 #: ../fish/guestfish-commands.pod:129
29382 msgid "See also L</hexdump>."
29383 msgstr ""
29384
29385 #. type: =head2
29386 #: ../fish/guestfish-commands.pod:131
29387 msgid "lcd"
29388 msgstr ""
29389
29390 #. type: verbatim
29391 #: ../fish/guestfish-commands.pod:133
29392 #, no-wrap
29393 msgid ""
29394 " lcd directory\n"
29395 "\n"
29396 msgstr ""
29397
29398 #. type: textblock
29399 #: ../fish/guestfish-commands.pod:135
29400 msgid ""
29401 "Change the local directory, ie. the current directory of guestfish itself."
29402 msgstr ""
29403
29404 #. type: textblock
29405 #: ../fish/guestfish-commands.pod:138
29406 msgid "Note that C<!cd> won't do what you might expect."
29407 msgstr ""
29408
29409 #. type: =head2
29410 #: ../fish/guestfish-commands.pod:140
29411 msgid "man"
29412 msgstr ""
29413
29414 #. type: =head2
29415 #: ../fish/guestfish-commands.pod:142
29416 msgid "manual"
29417 msgstr ""
29418
29419 #. type: verbatim
29420 #: ../fish/guestfish-commands.pod:144
29421 #, no-wrap
29422 msgid ""
29423 "  man\n"
29424 "\n"
29425 msgstr ""
29426
29427 #. type: textblock
29428 #: ../fish/guestfish-commands.pod:146
29429 msgid "Opens the manual page for guestfish."
29430 msgstr ""
29431
29432 #. type: =head2
29433 #: ../fish/guestfish-commands.pod:148
29434 msgid "more"
29435 msgstr ""
29436
29437 #. type: =head2
29438 #: ../fish/guestfish-commands.pod:150
29439 msgid "less"
29440 msgstr ""
29441
29442 #. type: verbatim
29443 #: ../fish/guestfish-commands.pod:152
29444 #, no-wrap
29445 msgid ""
29446 " more filename\n"
29447 "\n"
29448 msgstr ""
29449
29450 #. type: verbatim
29451 #: ../fish/guestfish-commands.pod:154
29452 #, no-wrap
29453 msgid ""
29454 " less filename\n"
29455 "\n"
29456 msgstr ""
29457
29458 #. type: textblock
29459 #: ../fish/guestfish-commands.pod:156
29460 msgid "This is used to view a file."
29461 msgstr ""
29462
29463 #. type: textblock
29464 #: ../fish/guestfish-commands.pod:158
29465 msgid ""
29466 "The default viewer is C<$PAGER>.  However if you use the alternate command "
29467 "C<less> you will get the C<less> command specifically."
29468 msgstr ""
29469
29470 #. type: =head2
29471 #: ../fish/guestfish-commands.pod:161
29472 msgid "reopen"
29473 msgstr ""
29474
29475 #. type: verbatim
29476 #: ../fish/guestfish-commands.pod:163
29477 #, no-wrap
29478 msgid ""
29479 "  reopen\n"
29480 "\n"
29481 msgstr ""
29482
29483 #. type: textblock
29484 #: ../fish/guestfish-commands.pod:165
29485 msgid ""
29486 "Close and reopen the libguestfs handle.  It is not necessary to use this "
29487 "normally, because the handle is closed properly when guestfish exits.  "
29488 "However this is occasionally useful for testing."
29489 msgstr ""
29490
29491 #. type: =head2
29492 #: ../fish/guestfish-commands.pod:169
29493 msgid "sparse"
29494 msgstr ""
29495
29496 #. type: verbatim
29497 #: ../fish/guestfish-commands.pod:171
29498 #, no-wrap
29499 msgid ""
29500 " sparse filename size\n"
29501 "\n"
29502 msgstr ""
29503
29504 #. type: textblock
29505 #: ../fish/guestfish-commands.pod:173
29506 msgid ""
29507 "This creates an empty sparse file of the given size, and then adds so it can"
29508 " be further examined."
29509 msgstr ""
29510
29511 #. type: textblock
29512 #: ../fish/guestfish-commands.pod:176
29513 msgid ""
29514 "In all respects it works the same as the L</alloc> command, except that the "
29515 "image file is allocated sparsely, which means that disk blocks are not "
29516 "assigned to the file until they are needed.  Sparse disk files only use "
29517 "space when written to, but they are slower and there is a danger you could "
29518 "run out of real disk space during a write operation."
29519 msgstr ""
29520
29521 #. type: =head2
29522 #: ../fish/guestfish-commands.pod:186
29523 msgid "supported"
29524 msgstr ""
29525
29526 #. type: verbatim
29527 #: ../fish/guestfish-commands.pod:188
29528 #, no-wrap
29529 msgid ""
29530 " supported\n"
29531 "\n"
29532 msgstr ""
29533
29534 #. type: textblock
29535 #: ../fish/guestfish-commands.pod:190
29536 msgid ""
29537 "This command returns a list of the optional groups known to the daemon, and "
29538 "indicates which ones are supported by this build of the libguestfs "
29539 "appliance."
29540 msgstr ""
29541
29542 #. type: textblock
29543 #: ../fish/guestfish-commands.pod:194
29544 msgid "See also L<guestfs(3)/AVAILABILITY>."
29545 msgstr ""
29546
29547 #. type: =head2
29548 #: ../fish/guestfish-commands.pod:196
29549 msgid "time"
29550 msgstr ""
29551
29552 #. type: verbatim
29553 #: ../fish/guestfish-commands.pod:198
29554 #, no-wrap
29555 msgid ""
29556 " time command args...\n"
29557 "\n"
29558 msgstr ""
29559
29560 #. type: textblock
29561 #: ../fish/guestfish-commands.pod:200
29562 msgid ""
29563 "Run the command as usual, but print the elapsed time afterwards.  This can "
29564 "be useful for benchmarking operations."
29565 msgstr ""
29566
29567 #. type: textblock
29568 #: ../test-tool/libguestfs-test-tool.pod:5
29569 msgid "libguestfs-test-tool - End user tests for libguestfs"
29570 msgstr ""
29571
29572 #. type: verbatim
29573 #: ../test-tool/libguestfs-test-tool.pod:9
29574 #, no-wrap
29575 msgid ""
29576 " libguestfs-test-tool [--options]\n"
29577 "\n"
29578 msgstr ""
29579
29580 #. type: textblock
29581 #: ../test-tool/libguestfs-test-tool.pod:13
29582 msgid ""
29583 "libguestfs-test-tool is a test program shipped with libguestfs to end users "
29584 "and developers, to allow them to check basic libguestfs functionality is "
29585 "working.  This is needed because libguestfs occasionally breaks for reasons "
29586 "beyond our control: usually because of changes in the underlying qemu or "
29587 "kernel packages, or the host environment."
29588 msgstr ""
29589
29590 #. type: textblock
29591 #: ../test-tool/libguestfs-test-tool.pod:20
29592 msgid "If you suspect a problem in libguestfs, then just run:"
29593 msgstr ""
29594
29595 #. type: verbatim
29596 #: ../test-tool/libguestfs-test-tool.pod:22
29597 #, no-wrap
29598 msgid ""
29599 " libguestfs-test-tool\n"
29600 "\n"
29601 msgstr ""
29602
29603 #. type: textblock
29604 #: ../test-tool/libguestfs-test-tool.pod:24
29605 msgid "It will print lots of diagnostic messages."
29606 msgstr ""
29607
29608 #. type: textblock
29609 #: ../test-tool/libguestfs-test-tool.pod:26
29610 msgid "If it runs to completion successfully, you will see this near the end:"
29611 msgstr ""
29612
29613 #. type: verbatim
29614 #: ../test-tool/libguestfs-test-tool.pod:28
29615 #, no-wrap
29616 msgid ""
29617 " ===== TEST FINISHED OK =====\n"
29618 "\n"
29619 msgstr ""
29620
29621 #. type: textblock
29622 #: ../test-tool/libguestfs-test-tool.pod:30
29623 msgid "and the test tool will exit with code 0."
29624 msgstr ""
29625
29626 #. type: textblock
29627 #: ../test-tool/libguestfs-test-tool.pod:32
29628 msgid ""
29629 "If it fails (and/or exits with non-zero error code), please paste the "
29630 "B<complete, unedited> output of the test tool into a bug report.  More "
29631 "information about reporting bugs can be found on the "
29632 "L<http://libguestfs.org/> website."
29633 msgstr ""
29634
29635 #. type: =item
29636 #: ../test-tool/libguestfs-test-tool.pod:41
29637 msgid "I<--help>"
29638 msgstr ""
29639
29640 #. type: textblock
29641 #: ../test-tool/libguestfs-test-tool.pod:43
29642 msgid "Display short usage information and exit."
29643 msgstr ""
29644
29645 #. type: =item
29646 #: ../test-tool/libguestfs-test-tool.pod:45
29647 msgid "I<--qemu qemu_binary>"
29648 msgstr ""
29649
29650 #. type: textblock
29651 #: ../test-tool/libguestfs-test-tool.pod:47
29652 msgid ""
29653 "If you have downloaded another qemu binary, point this option at the full "
29654 "path of the binary to try it."
29655 msgstr ""
29656
29657 #. type: =item
29658 #: ../test-tool/libguestfs-test-tool.pod:50
29659 msgid "I<--qemudir qemu_source_dir>"
29660 msgstr ""
29661
29662 #. type: textblock
29663 #: ../test-tool/libguestfs-test-tool.pod:52
29664 msgid ""
29665 "If you have compiled qemu from source, point this option at the source "
29666 "directory to try it."
29667 msgstr ""
29668
29669 #. type: =item
29670 #: ../test-tool/libguestfs-test-tool.pod:55
29671 msgid "I<--timeout N>"
29672 msgstr ""
29673
29674 #. type: textblock
29675 #: ../test-tool/libguestfs-test-tool.pod:57
29676 msgid ""
29677 "Set the launch timeout to C<N> seconds.  The default is 120 seconds which "
29678 "does not usually need to be adjusted unless your machine is very slow."
29679 msgstr ""
29680
29681 #. type: =head1
29682 #: ../test-tool/libguestfs-test-tool.pod:63
29683 msgid "TRYING OUT A DIFFERENT VERSION OF QEMU"
29684 msgstr ""
29685
29686 #. type: textblock
29687 #: ../test-tool/libguestfs-test-tool.pod:65
29688 msgid ""
29689 "If you have compiled another version of qemu from source and would like to "
29690 "try that, then you can use the I<--qemudir> option to point to the qemu "
29691 "source directory."
29692 msgstr ""
29693
29694 #. type: textblock
29695 #: ../test-tool/libguestfs-test-tool.pod:69
29696 msgid ""
29697 "If you have downloaded a qemu binary from somewhere, use the I<--qemu> "
29698 "option to point to the binary."
29699 msgstr ""
29700
29701 #. type: textblock
29702 #: ../test-tool/libguestfs-test-tool.pod:72
29703 msgid ""
29704 "When using an alternate qemu with libguestfs, usually you would need to "
29705 "write a qemu wrapper script (see section I<QEMU WRAPPERS> in L<guestfs(3)>)."
29706 "  libguestfs-test-tool writes a temporary qemu wrapper script when you use "
29707 "either of the I<--qemudir> or I<--qemu> options."
29708 msgstr ""
29709
29710 #. type: textblock
29711 #: ../test-tool/libguestfs-test-tool.pod:79
29712 msgid ""
29713 "libguestfs-test-tool returns I<0> if the tests completed without error, or "
29714 "I<1> if there was an error."
29715 msgstr ""
29716
29717 #. type: textblock
29718 #: ../test-tool/libguestfs-test-tool.pod:84
29719 msgid ""
29720 "For the full list of environment variables which may affect libguestfs, "
29721 "please see the L<guestfs(3)> manual page."
29722 msgstr ""
29723
29724 #. type: textblock
29725 #: ../test-tool/libguestfs-test-tool.pod:89
29726 msgid "L<guestfs(3)>, L<http://libguestfs.org/>, L<http://qemu.org/>."
29727 msgstr ""
29728
29729 #. type: textblock
29730 #: ../fuse/guestmount.pod:5
29731 msgid ""
29732 "guestmount - Mount a guest filesystem on the host using FUSE and libguestfs"
29733 msgstr ""
29734
29735 #. type: verbatim
29736 #: ../fuse/guestmount.pod:9
29737 #, no-wrap
29738 msgid ""
29739 " guestmount [--options] -a disk.img -m device [--ro] mountpoint\n"
29740 "\n"
29741 msgstr ""
29742
29743 #. type: verbatim
29744 #: ../fuse/guestmount.pod:11
29745 #, no-wrap
29746 msgid ""
29747 " guestmount [--options] -a disk.img -i [--ro] mountpoint\n"
29748 "\n"
29749 msgstr ""
29750
29751 #. type: verbatim
29752 #: ../fuse/guestmount.pod:13
29753 #, no-wrap
29754 msgid ""
29755 " guestmount [--options] -d Guest -i [--ro] mountpoint\n"
29756 "\n"
29757 msgstr ""
29758
29759 #. type: textblock
29760 #: ../fuse/guestmount.pod:17
29761 msgid ""
29762 "You must I<not> use C<guestmount> in read-write mode on live virtual "
29763 "machines.  If you do this, you risk disk corruption in the VM."
29764 msgstr ""
29765
29766 #. type: textblock
29767 #: ../fuse/guestmount.pod:22
29768 msgid ""
29769 "The guestmount program can be used to mount virtual machine filesystems and "
29770 "other disk images on the host.  It uses libguestfs for access to the guest "
29771 "filesystem, and FUSE (the \"filesystem in userspace\") to make it appear as "
29772 "a mountable device."
29773 msgstr ""
29774
29775 #. type: textblock
29776 #: ../fuse/guestmount.pod:27
29777 msgid ""
29778 "Along with other options, you have to give at least one device (I<-a> "
29779 "option) or libvirt domain (I<-d> option), and at least one mountpoint (I<-m>"
29780 " option) or use the I<-i> inspection option.  How this works is better "
29781 "explained in the L<guestfish(1)> manual page, or by looking at the examples "
29782 "below."
29783 msgstr ""
29784
29785 #. type: textblock
29786 #: ../fuse/guestmount.pod:33
29787 msgid ""
29788 "FUSE lets you mount filesystems as non-root.  The mountpoint must be owned "
29789 "by you, and the filesystem will not be visible to any other users unless you"
29790 " make certain global configuration changes to C</etc/fuse.conf>.  To unmount"
29791 " the filesystem, use the C<fusermount -u> command."
29792 msgstr ""
29793
29794 #. type: textblock
29795 #: ../fuse/guestmount.pod:41
29796 msgid ""
29797 "For a typical Windows guest which has its main filesystem on the first "
29798 "partition:"
29799 msgstr ""
29800
29801 #. type: verbatim
29802 #: ../fuse/guestmount.pod:44
29803 #, no-wrap
29804 msgid ""
29805 " guestmount -a windows.img -m /dev/sda1 --ro /mnt\n"
29806 "\n"
29807 msgstr ""
29808
29809 #. type: textblock
29810 #: ../fuse/guestmount.pod:46
29811 msgid ""
29812 "For a typical Linux guest which has a /boot filesystem on the first "
29813 "partition, and the root filesystem on a logical volume:"
29814 msgstr ""
29815
29816 #. type: verbatim
29817 #: ../fuse/guestmount.pod:49
29818 #, no-wrap
29819 msgid ""
29820 " guestmount -a linux.img -m /dev/VG/LV -m /dev/sda1:/boot --ro /mnt\n"
29821 "\n"
29822 msgstr ""
29823
29824 #. type: textblock
29825 #: ../fuse/guestmount.pod:51
29826 msgid "To get libguestfs to detect guest mountpoints for you:"
29827 msgstr ""
29828
29829 #. type: verbatim
29830 #: ../fuse/guestmount.pod:53
29831 #, no-wrap
29832 msgid ""
29833 " guestmount -a guest.img -i --ro /mnt\n"
29834 "\n"
29835 msgstr ""
29836
29837 #. type: textblock
29838 #: ../fuse/guestmount.pod:55
29839 msgid "For a libvirt guest called \"Guest\" you could do:"
29840 msgstr ""
29841
29842 #. type: verbatim
29843 #: ../fuse/guestmount.pod:57
29844 #, no-wrap
29845 msgid ""
29846 " guestmount -d Guest -i --ro /mnt\n"
29847 "\n"
29848 msgstr ""
29849
29850 #. type: textblock
29851 #: ../fuse/guestmount.pod:59
29852 msgid ""
29853 "If you don't know what filesystems are contained in a guest or disk image, "
29854 "use L<virt-filesystems(1)> first:"
29855 msgstr ""
29856
29857 #. type: verbatim
29858 #: ../fuse/guestmount.pod:62
29859 #, no-wrap
29860 msgid ""
29861 " virt-filesystems MyGuest\n"
29862 "\n"
29863 msgstr ""
29864
29865 #. type: textblock
29866 #: ../fuse/guestmount.pod:64
29867 msgid ""
29868 "If you want to trace the libguestfs calls but without excessive debugging "
29869 "information, we recommend:"
29870 msgstr ""
29871
29872 #. type: verbatim
29873 #: ../fuse/guestmount.pod:67
29874 #, no-wrap
29875 msgid ""
29876 " guestmount [...] --trace /mnt\n"
29877 "\n"
29878 msgstr ""
29879
29880 #. type: textblock
29881 #: ../fuse/guestmount.pod:69
29882 msgid "If you want to debug the program, we recommend:"
29883 msgstr ""
29884
29885 #. type: verbatim
29886 #: ../fuse/guestmount.pod:71
29887 #, no-wrap
29888 msgid ""
29889 " guestmount [...] --trace --verbose /mnt\n"
29890 "\n"
29891 msgstr ""
29892
29893 #. type: =head1
29894 #: ../fuse/guestmount.pod:73
29895 msgid "NOTES"
29896 msgstr ""
29897
29898 #. type: =head2
29899 #: ../fuse/guestmount.pod:75
29900 msgid "Other users cannot see the filesystem by default"
29901 msgstr ""
29902
29903 #. type: textblock
29904 #: ../fuse/guestmount.pod:77
29905 msgid ""
29906 "If you mount a filesystem as one user (eg. root), then other users will not "
29907 "be able to see it by default.  The fix is to add the FUSE C<allow_other> "
29908 "option when mounting:"
29909 msgstr ""
29910
29911 #. type: verbatim
29912 #: ../fuse/guestmount.pod:81
29913 #, no-wrap
29914 msgid ""
29915 " sudo guestmount [...] -o allow_other /mnt\n"
29916 "\n"
29917 msgstr ""
29918
29919 #. type: =item
29920 #: ../fuse/guestmount.pod:87
29921 msgid "B<-a image> | B<--add image>"
29922 msgstr ""
29923
29924 #. type: textblock
29925 #: ../fuse/guestmount.pod:89
29926 msgid "Add a block device or virtual machine image."
29927 msgstr ""
29928
29929 #. type: =item
29930 #: ../fuse/guestmount.pod:94
29931 msgid "B<-c URI> | B<--connect URI>"
29932 msgstr ""
29933
29934 #. type: =item
29935 #: ../fuse/guestmount.pod:100
29936 msgid "B<-d libvirt-domain> | B<--domain libvirt-domain>"
29937 msgstr ""
29938
29939 #. type: =item
29940 #: ../fuse/guestmount.pod:108
29941 msgid "B<--dir-cache-timeout N>"
29942 msgstr ""
29943
29944 #. type: textblock
29945 #: ../fuse/guestmount.pod:110
29946 msgid ""
29947 "Set the readdir cache timeout to I<N> seconds, the default being 60 seconds."
29948 "  The readdir cache [actually, there are several semi-independent caches] is"
29949 " populated after a readdir(2) call with the stat and extended attributes of "
29950 "the files in the directory, in anticipation that they will be requested soon"
29951 " after."
29952 msgstr ""
29953
29954 #. type: textblock
29955 #: ../fuse/guestmount.pod:116
29956 msgid ""
29957 "There is also a different attribute cache implemented by FUSE (see the FUSE "
29958 "option I<-o attr_timeout>), but the FUSE cache does not anticipate future "
29959 "requests, only cache existing ones."
29960 msgstr ""
29961
29962 #. type: =item
29963 #: ../fuse/guestmount.pod:127
29964 msgid "B<--format=raw|qcow2|..> | B<--format>"
29965 msgstr ""
29966
29967 #. type: textblock
29968 #: ../fuse/guestmount.pod:134
29969 msgid ""
29970 "If you have untrusted raw-format guest disk images, you should use this "
29971 "option to specify the disk format.  This avoids a possible security problem "
29972 "with malicious guests (CVE-2010-3851).  See also "
29973 "L<guestfs(3)/guestfs_add_drive_opts>."
29974 msgstr ""
29975
29976 #. type: =item
29977 #: ../fuse/guestmount.pod:139
29978 msgid "B<--fuse-help>"
29979 msgstr ""
29980
29981 #. type: textblock
29982 #: ../fuse/guestmount.pod:141
29983 msgid "Display help on special FUSE options (see I<-o> below)."
29984 msgstr ""
29985
29986 #. type: textblock
29987 #: ../fuse/guestmount.pod:145
29988 msgid "Display brief help and exit."
29989 msgstr ""
29990
29991 #. type: =item
29992 #: ../fuse/guestmount.pod:147
29993 msgid "B<-i> | B<--inspector>"
29994 msgstr ""
29995
29996 #. type: textblock
29997 #: ../fuse/guestmount.pod:167
29998 msgid ""
29999 "Mount the named partition or logical volume on the given mountpoint B<in the"
30000 " guest> (this has nothing to do with mountpoints in the host)."
30001 msgstr ""
30002
30003 #. type: textblock
30004 #: ../fuse/guestmount.pod:170
30005 msgid ""
30006 "If the mountpoint is omitted, it defaults to C</>.  You have to mount "
30007 "something on C</>."
30008 msgstr ""
30009
30010 #. type: =item
30011 #: ../fuse/guestmount.pod:183
30012 msgid "B<-n> | B<--no-sync>"
30013 msgstr ""
30014
30015 #. type: textblock
30016 #: ../fuse/guestmount.pod:185
30017 msgid ""
30018 "By default, we attempt to sync the guest disk when the FUSE mountpoint is "
30019 "unmounted.  If you specify this option, then we don't attempt to sync the "
30020 "disk.  See the discussion of autosync in the L<guestfs(3)> manpage."
30021 msgstr ""
30022
30023 #. type: =item
30024 #: ../fuse/guestmount.pod:190
30025 msgid "B<-o option> | B<--option option>"
30026 msgstr ""
30027
30028 #. type: textblock
30029 #: ../fuse/guestmount.pod:192
30030 msgid "Pass extra options to FUSE."
30031 msgstr ""
30032
30033 #. type: textblock
30034 #: ../fuse/guestmount.pod:194
30035 msgid ""
30036 "To get a list of all the extra options supported by FUSE, use the command "
30037 "below.  Note that only the FUSE I<-o> options can be passed, and only some "
30038 "of them are a good idea."
30039 msgstr ""
30040
30041 #. type: verbatim
30042 #: ../fuse/guestmount.pod:198
30043 #, no-wrap
30044 msgid ""
30045 " guestmount --fuse-help\n"
30046 "\n"
30047 msgstr ""
30048
30049 #. type: textblock
30050 #: ../fuse/guestmount.pod:200
30051 msgid "Some potentially useful FUSE options:"
30052 msgstr ""
30053
30054 #. type: =item
30055 #: ../fuse/guestmount.pod:204
30056 msgid "B<-o allow_other>"
30057 msgstr ""
30058
30059 #. type: textblock
30060 #: ../fuse/guestmount.pod:206
30061 msgid "Allow other users to see the filesystem."
30062 msgstr ""
30063
30064 #. type: =item
30065 #: ../fuse/guestmount.pod:208
30066 msgid "B<-o attr_timeout=N>"
30067 msgstr ""
30068
30069 #. type: textblock
30070 #: ../fuse/guestmount.pod:210
30071 msgid "Enable attribute caching by FUSE, and set the timeout to I<N> seconds."
30072 msgstr ""
30073
30074 #. type: =item
30075 #: ../fuse/guestmount.pod:212
30076 msgid "B<-o kernel_cache>"
30077 msgstr ""
30078
30079 #. type: textblock
30080 #: ../fuse/guestmount.pod:214
30081 msgid ""
30082 "Allow the kernel to cache files (reduces the number of reads that have to go"
30083 " through the L<guestfs(3)> API).  This is generally a good idea if you can "
30084 "afford the extra memory usage."
30085 msgstr ""
30086
30087 #. type: =item
30088 #: ../fuse/guestmount.pod:218
30089 msgid "B<-o uid=N> B<-o gid=N>"
30090 msgstr ""
30091
30092 #. type: textblock
30093 #: ../fuse/guestmount.pod:220
30094 msgid ""
30095 "Use these options to map all UIDs and GIDs inside the guest filesystem to "
30096 "the chosen values."
30097 msgstr ""
30098
30099 #. type: =item
30100 #: ../fuse/guestmount.pod:225
30101 msgid "B<-r> | B<--ro>"
30102 msgstr ""
30103
30104 #. type: textblock
30105 #: ../fuse/guestmount.pod:227
30106 msgid ""
30107 "Add devices and mount everything read-only.  Also disallow writes and make "
30108 "the disk appear read-only to FUSE."
30109 msgstr ""
30110
30111 #. type: textblock
30112 #: ../fuse/guestmount.pod:230
30113 msgid ""
30114 "This is highly recommended if you are not going to edit the guest disk.  If "
30115 "the guest is running and this option is I<not> supplied, then there is a "
30116 "strong risk of disk corruption in the guest.  We try to prevent this from "
30117 "happening, but it is not always possible."
30118 msgstr ""
30119
30120 #. type: textblock
30121 #: ../fuse/guestmount.pod:235
30122 msgid "See also L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
30123 msgstr ""
30124
30125 #. type: textblock
30126 #: ../fuse/guestmount.pod:239
30127 msgid "Enable SELinux support for the guest."
30128 msgstr ""
30129
30130 #. type: =item
30131 #: ../fuse/guestmount.pod:241
30132 msgid "B<-v> | B<--verbose>"
30133 msgstr ""
30134
30135 #. type: textblock
30136 #: ../fuse/guestmount.pod:243
30137 msgid "Enable verbose messages from underlying libguestfs."
30138 msgstr ""
30139
30140 #. type: =item
30141 #: ../fuse/guestmount.pod:245
30142 msgid "B<-V> | B<--version>"
30143 msgstr ""
30144
30145 #. type: textblock
30146 #: ../fuse/guestmount.pod:247
30147 msgid "Display the program version and exit."
30148 msgstr ""
30149
30150 #. type: =item
30151 #: ../fuse/guestmount.pod:249
30152 msgid "B<-w> | B<--rw>"
30153 msgstr ""
30154
30155 #. type: textblock
30156 #: ../fuse/guestmount.pod:254 ../fuse/guestmount.pod:275
30157 msgid "See L<guestfish(1)/OPENING DISKS FOR READ AND WRITE>."
30158 msgstr ""
30159
30160 #. type: =item
30161 #: ../fuse/guestmount.pod:256
30162 msgid "B<-x> | B<--trace>"
30163 msgstr ""
30164
30165 #. type: textblock
30166 #: ../fuse/guestmount.pod:258
30167 msgid "Trace libguestfs calls and entry into each FUSE function."
30168 msgstr ""
30169
30170 #. type: textblock
30171 #: ../fuse/guestmount.pod:260
30172 msgid "This also stops the daemon from forking into the background."
30173 msgstr ""
30174
30175 #. type: textblock
30176 #: ../fuse/guestmount.pod:281
30177 msgid ""
30178 "L<guestfish(1)>, L<virt-inspector(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L"
30179 "<virt-tar(1)>, L<guestfs(3)>, L<http://libguestfs.org/>, "
30180 "L<http://fuse.sf.net/>."
30181 msgstr ""
30182
30183 #. type: textblock
30184 #: ../fuse/guestmount.pod:296
30185 msgid "Copyright (C) 2009-2010 Red Hat Inc.  L<http://libguestfs.org/>"
30186 msgstr ""
30187
30188 #. type: textblock
30189 #: ../tools/virt-win-reg.pl:37
30190 msgid ""
30191 "virt-win-reg - Export and merge Windows Registry entries from a Windows "
30192 "guest"
30193 msgstr ""
30194
30195 #. type: verbatim
30196 #: ../tools/virt-win-reg.pl:41
30197 #, no-wrap
30198 msgid ""
30199 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey'\n"
30200 "\n"
30201 msgstr ""
30202
30203 #. type: verbatim
30204 #: ../tools/virt-win-reg.pl:43
30205 #, no-wrap
30206 msgid ""
30207 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' name\n"
30208 "\n"
30209 msgstr ""
30210
30211 #. type: verbatim
30212 #: ../tools/virt-win-reg.pl:45
30213 #, no-wrap
30214 msgid ""
30215 " virt-win-reg domname 'HKLM\\Path\\To\\Subkey' @\n"
30216 "\n"
30217 msgstr ""
30218
30219 #. type: verbatim
30220 #: ../tools/virt-win-reg.pl:47
30221 #, no-wrap
30222 msgid ""
30223 " virt-win-reg --merge domname [input.reg ...]\n"
30224 "\n"
30225 msgstr ""
30226
30227 #. type: verbatim
30228 #: ../tools/virt-win-reg.pl:49
30229 #, no-wrap
30230 msgid ""
30231 " virt-win-reg [--options] disk.img ... # instead of domname\n"
30232 "\n"
30233 msgstr ""
30234
30235 #. type: textblock
30236 #: ../tools/virt-win-reg.pl:53
30237 msgid ""
30238 "You must I<not> use C<virt-win-reg> with the I<--merge> option on live "
30239 "virtual machines.  If you do this, you I<will> get irreversible disk "
30240 "corruption in the VM.  C<virt-win-reg> tries to stop you from doing this, "
30241 "but doesn't catch all cases."
30242 msgstr ""
30243
30244 #. type: textblock
30245 #: ../tools/virt-win-reg.pl:58
30246 msgid ""
30247 "Modifying the Windows Registry is an inherently risky operation.  The format"
30248 " is deliberately obscure and undocumented, and Registry changes can leave "
30249 "the system unbootable.  Therefore when using the I<--merge> option, make "
30250 "sure you have a reliable backup first."
30251 msgstr ""
30252
30253 #. type: textblock
30254 #: ../tools/virt-win-reg.pl:65
30255 msgid ""
30256 "This program can export and merge Windows Registry entries from a Windows "
30257 "guest."
30258 msgstr ""
30259
30260 #. type: textblock
30261 #: ../tools/virt-win-reg.pl:68
30262 msgid ""
30263 "The first parameter is the libvirt guest name or the raw disk image of a "
30264 "Windows guest."
30265 msgstr ""
30266
30267 #. type: textblock
30268 #: ../tools/virt-win-reg.pl:71
30269 msgid ""
30270 "If I<--merge> is I<not> specified, then the chosen registry key is "
30271 "displayed/exported (recursively).  For example:"
30272 msgstr ""
30273
30274 #. type: verbatim
30275 #: ../tools/virt-win-reg.pl:74
30276 #, no-wrap
30277 msgid ""
30278 " $ virt-win-reg Windows7 'HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft'\n"
30279 "\n"
30280 msgstr ""
30281
30282 #. type: textblock
30283 #: ../tools/virt-win-reg.pl:76
30284 msgid ""
30285 "You can also display single values from within registry keys, for example:"
30286 msgstr ""
30287
30288 #. type: verbatim
30289 #: ../tools/virt-win-reg.pl:79
30290 #, no-wrap
30291 msgid ""
30292 " $ cvkey='HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion'\n"
30293 " $ virt-win-reg Windows7 $cvkey ProductName\n"
30294 " Windows 7 Enterprise\n"
30295 "\n"
30296 msgstr ""
30297
30298 #. type: textblock
30299 #: ../tools/virt-win-reg.pl:83
30300 msgid ""
30301 "With I<--merge>, you can merge a textual regedit file into the Windows "
30302 "Registry:"
30303 msgstr ""
30304
30305 #. type: verbatim
30306 #: ../tools/virt-win-reg.pl:86
30307 #, no-wrap
30308 msgid ""
30309 " $ virt-win-reg --merge Windows7 changes.reg\n"
30310 "\n"
30311 msgstr ""
30312
30313 #. type: =head1
30314 #: ../tools/virt-win-reg.pl:88 ../tools/virt-tar.pl:45
30315 msgid "NOTE"
30316 msgstr ""
30317
30318 #. type: textblock
30319 #: ../tools/virt-win-reg.pl:90
30320 msgid ""
30321 "This program is only meant for simple access to the registry.  If you want "
30322 "to do complicated things with the registry, we suggest you download the "
30323 "Registry hive files from the guest using L<libguestfs(3)> or L<guestfish(1)>"
30324 " and access them locally, eg. using L<hivex(3)>, L<hivexsh(1)> or "
30325 "L<hivexregedit(1)>."
30326 msgstr ""
30327
30328 #. type: textblock
30329 #: ../tools/virt-win-reg.pl:106 ../tools/virt-list-filesystems.pl:63
30330 #: ../tools/virt-tar.pl:113 ../tools/virt-make-fs.pl:163
30331 #: ../tools/virt-list-partitions.pl:64
30332 msgid "Display brief help."
30333 msgstr ""
30334
30335 #. type: textblock
30336 #: ../tools/virt-win-reg.pl:114 ../tools/virt-list-filesystems.pl:71
30337 #: ../tools/virt-tar.pl:121 ../tools/virt-make-fs.pl:171
30338 #: ../tools/virt-list-partitions.pl:72
30339 msgid "Display version number and exit."
30340 msgstr ""
30341
30342 #. type: =item
30343 #: ../tools/virt-win-reg.pl:120 ../tools/virt-make-fs.pl:177
30344 msgid "B<--debug>"
30345 msgstr ""
30346
30347 #. type: textblock
30348 #: ../tools/virt-win-reg.pl:122
30349 msgid "Enable debugging messages."
30350 msgstr ""
30351
30352 #. type: =item
30353 #: ../tools/virt-win-reg.pl:128 ../tools/virt-list-filesystems.pl:77
30354 #: ../tools/virt-tar.pl:127 ../tools/virt-list-partitions.pl:78
30355 msgid "B<--connect URI> | B<-c URI>"
30356 msgstr ""
30357
30358 #. type: textblock
30359 #: ../tools/virt-win-reg.pl:130 ../tools/virt-list-filesystems.pl:79
30360 #: ../tools/virt-tar.pl:129 ../tools/virt-list-partitions.pl:80
30361 msgid ""
30362 "If using libvirt, connect to the given I<URI>.  If omitted, then we connect "
30363 "to the default libvirt hypervisor."
30364 msgstr ""
30365
30366 #. type: textblock
30367 #: ../tools/virt-win-reg.pl:133 ../tools/virt-list-filesystems.pl:82
30368 #: ../tools/virt-tar.pl:132 ../tools/virt-list-partitions.pl:83
30369 msgid ""
30370 "If you specify guest block devices directly, then libvirt is not used at "
30371 "all."
30372 msgstr ""
30373
30374 #. type: =item
30375 #: ../tools/virt-win-reg.pl:140 ../tools/virt-list-filesystems.pl:89
30376 #: ../tools/virt-tar.pl:139 ../tools/virt-list-partitions.pl:90
30377 msgid "B<--format> raw"
30378 msgstr ""
30379
30380 #. type: textblock
30381 #: ../tools/virt-win-reg.pl:142 ../tools/virt-list-filesystems.pl:91
30382 #: ../tools/virt-tar.pl:141 ../tools/virt-list-partitions.pl:92
30383 msgid ""
30384 "Specify the format of disk images given on the command line.  If this is "
30385 "omitted then the format is autodetected from the content of the disk image."
30386 msgstr ""
30387
30388 #. type: textblock
30389 #: ../tools/virt-win-reg.pl:146 ../tools/virt-list-filesystems.pl:95
30390 #: ../tools/virt-tar.pl:145 ../tools/virt-list-partitions.pl:96
30391 msgid ""
30392 "If disk images are requested from libvirt, then this program asks libvirt "
30393 "for this information.  In this case, the value of the format parameter is "
30394 "ignored."
30395 msgstr ""
30396
30397 #. type: textblock
30398 #: ../tools/virt-win-reg.pl:150 ../tools/virt-list-filesystems.pl:99
30399 #: ../tools/virt-tar.pl:149 ../tools/virt-list-partitions.pl:100
30400 msgid ""
30401 "If working with untrusted raw-format guest disk images, you should ensure "
30402 "the format is always specified."
30403 msgstr ""
30404
30405 #. type: =item
30406 #: ../tools/virt-win-reg.pl:157
30407 msgid "B<--merge>"
30408 msgstr ""
30409
30410 #. type: textblock
30411 #: ../tools/virt-win-reg.pl:159
30412 msgid ""
30413 "In merge mode, this merges a textual regedit file into the Windows Registry "
30414 "of the virtual machine.  If this flag is I<not> given then virt-win-reg "
30415 "displays or exports Registry entries instead."
30416 msgstr ""
30417
30418 #. type: textblock
30419 #: ../tools/virt-win-reg.pl:163
30420 msgid ""
30421 "Note that I<--merge> is I<unsafe> to use on live virtual machines, and will "
30422 "result in disk corruption.  However exporting (without this flag)  is always"
30423 " safe."
30424 msgstr ""
30425
30426 #. type: =item
30427 #: ../tools/virt-win-reg.pl:171
30428 msgid "B<--encoding> UTF-16LE|ASCII"
30429 msgstr ""
30430
30431 #. type: textblock
30432 #: ../tools/virt-win-reg.pl:173
30433 msgid ""
30434 "When merging (only), you may need to specify the encoding for strings to be "
30435 "used in the hive file.  This is explained in detail in "
30436 "L<Win::Hivex::Regedit(3)/ENCODING STRINGS>."
30437 msgstr ""
30438
30439 #. type: textblock
30440 #: ../tools/virt-win-reg.pl:177
30441 msgid ""
30442 "The default is to use UTF-16LE, which should work with recent versions of "
30443 "Windows."
30444 msgstr ""
30445
30446 #. type: =item
30447 #: ../tools/virt-win-reg.pl:184
30448 msgid "B<--unsafe-printable-strings>"
30449 msgstr ""
30450
30451 #. type: textblock
30452 #: ../tools/virt-win-reg.pl:186
30453 msgid ""
30454 "When exporting (only), assume strings are UTF-16LE and print them as strings"
30455 " instead of hex sequences.  Remove the final zero codepoint from strings if "
30456 "present."
30457 msgstr ""
30458
30459 #. type: textblock
30460 #: ../tools/virt-win-reg.pl:190
30461 msgid ""
30462 "This is unsafe and does not preserve the fidelity of strings in the original"
30463 " Registry for various reasons:"
30464 msgstr ""
30465
30466 #. type: textblock
30467 #: ../tools/virt-win-reg.pl:197
30468 msgid ""
30469 "Assumes the original encoding is UTF-16LE.  ASCII strings and strings in "
30470 "other encodings will be corrupted by this transformation."
30471 msgstr ""
30472
30473 #. type: textblock
30474 #: ../tools/virt-win-reg.pl:202
30475 msgid ""
30476 "Assumes that everything which has type 1 or 2 is really a string and that "
30477 "everything else is not a string, but the type field in real Registries is "
30478 "not reliable."
30479 msgstr ""
30480
30481 #. type: textblock
30482 #: ../tools/virt-win-reg.pl:208
30483 msgid ""
30484 "Loses information about whether a zero codepoint followed the string in the "
30485 "Registry or not."
30486 msgstr ""
30487
30488 #. type: textblock
30489 #: ../tools/virt-win-reg.pl:213
30490 msgid ""
30491 "This all happens because the Registry itself contains no information about "
30492 "how strings are encoded (see L<Win::Hivex::Regedit(3)/ENCODING STRINGS>)."
30493 msgstr ""
30494
30495 #. type: textblock
30496 #: ../tools/virt-win-reg.pl:217
30497 msgid ""
30498 "You should only use this option for quick hacking and debugging of the "
30499 "Registry contents, and I<never> use it if the output is going to be passed "
30500 "into another program or stored in another Registry."
30501 msgstr ""
30502
30503 #. type: =head1
30504 #: ../tools/virt-win-reg.pl:554
30505 msgid "SUPPORTED SYSTEMS"
30506 msgstr ""
30507
30508 #. type: textblock
30509 #: ../tools/virt-win-reg.pl:556
30510 msgid ""
30511 "The program currently supports Windows NT-derived guests starting with "
30512 "Windows XP through to at least Windows 7."
30513 msgstr ""
30514
30515 #. type: textblock
30516 #: ../tools/virt-win-reg.pl:559
30517 msgid "The following Registry keys are supported:"
30518 msgstr ""
30519
30520 #. type: =item
30521 #: ../tools/virt-win-reg.pl:563
30522 msgid "C<HKEY_LOCAL_MACHINE\\SAM>"
30523 msgstr ""
30524
30525 #. type: =item
30526 #: ../tools/virt-win-reg.pl:565
30527 msgid "C<HKEY_LOCAL_MACHINE\\SECURITY>"
30528 msgstr ""
30529
30530 #. type: =item
30531 #: ../tools/virt-win-reg.pl:567
30532 msgid "C<HKEY_LOCAL_MACHINE\\SOFTWARE>"
30533 msgstr ""
30534
30535 #. type: =item
30536 #: ../tools/virt-win-reg.pl:569
30537 msgid "C<HKEY_LOCAL_MACHINE\\SYSTEM>"
30538 msgstr ""
30539
30540 #. type: =item
30541 #: ../tools/virt-win-reg.pl:571
30542 msgid "C<HKEY_USERS\\.DEFAULT>"
30543 msgstr ""
30544
30545 #. type: =item
30546 #: ../tools/virt-win-reg.pl:573
30547 msgid "C<HKEY_USERS\\I<SID>>"
30548 msgstr ""
30549
30550 #. type: textblock
30551 #: ../tools/virt-win-reg.pl:575
30552 msgid "where I<SID> is a Windows User SID (eg. C<S-1-5-18>)."
30553 msgstr ""
30554
30555 #. type: =item
30556 #: ../tools/virt-win-reg.pl:577
30557 msgid "C<HKEY_USERS\\I<username>>"
30558 msgstr ""
30559
30560 #. type: textblock
30561 #: ../tools/virt-win-reg.pl:579
30562 msgid ""
30563 "where I<username> is a local user name (this is a libguestfs extension)."
30564 msgstr ""
30565
30566 #. type: textblock
30567 #: ../tools/virt-win-reg.pl:583
30568 msgid ""
30569 "You can use C<HKLM> as a shorthand for C<HKEY_LOCAL_MACHINE>, and C<HKU> for"
30570 " C<HKEY_USERS>."
30571 msgstr ""
30572
30573 #. type: textblock
30574 #: ../tools/virt-win-reg.pl:586
30575 msgid ""
30576 "The literal keys C<HKEY_USERS\\$SID> and C<HKEY_CURRENT_USER> are not "
30577 "supported (there is no \"current user\")."
30578 msgstr ""
30579
30580 #. type: =head1
30581 #: ../tools/virt-win-reg.pl:589
30582 msgid "ENCODING"
30583 msgstr ""
30584
30585 #. type: textblock
30586 #: ../tools/virt-win-reg.pl:591
30587 msgid ""
30588 "C<virt-win-reg> expects that regedit files have already been reencoded in "
30589 "the local encoding.  Usually on Linux hosts, this means UTF-8 with Unix-"
30590 "style line endings.  Since Windows regedit files are often in UTF-16LE with "
30591 "Windows-style line endings, you may need to reencode the whole file before "
30592 "or after processing."
30593 msgstr ""
30594
30595 #. type: textblock
30596 #: ../tools/virt-win-reg.pl:597
30597 msgid ""
30598 "To reencode a file from Windows format to Linux (before processing it with "
30599 "the I<--merge> option), you would do something like this:"
30600 msgstr ""
30601
30602 #. type: verbatim
30603 #: ../tools/virt-win-reg.pl:600
30604 #, no-wrap
30605 msgid ""
30606 " iconv -f utf-16le -t utf-8 < win.reg | dos2unix > linux.reg\n"
30607 "\n"
30608 msgstr ""
30609
30610 #. type: textblock
30611 #: ../tools/virt-win-reg.pl:602
30612 msgid ""
30613 "To go in the opposite direction, after exporting and before sending the file"
30614 " to a Windows user, do something like this:"
30615 msgstr ""
30616
30617 #. type: verbatim
30618 #: ../tools/virt-win-reg.pl:605
30619 #, no-wrap
30620 msgid ""
30621 " unix2dos linux.reg | iconv -f utf-8 -t utf-16le > win.reg\n"
30622 "\n"
30623 msgstr ""
30624
30625 #. type: textblock
30626 #: ../tools/virt-win-reg.pl:607
30627 msgid "For more information about encoding, see L<Win::Hivex::Regedit(3)>."
30628 msgstr ""
30629
30630 #. type: textblock
30631 #: ../tools/virt-win-reg.pl:609
30632 msgid ""
30633 "If you are unsure about the current encoding, use the L<file(1)> command.  "
30634 "Recent versions of Windows regedit.exe produce a UTF-16LE file with Windows-"
30635 "style (CRLF) line endings, like this:"
30636 msgstr ""
30637
30638 #. type: verbatim
30639 #: ../tools/virt-win-reg.pl:613
30640 #, no-wrap
30641 msgid ""
30642 " $ file software.reg\n"
30643 " software.reg: Little-endian UTF-16 Unicode text, with very long lines,\n"
30644 " with CRLF line terminators\n"
30645 "\n"
30646 msgstr ""
30647
30648 #. type: textblock
30649 #: ../tools/virt-win-reg.pl:617
30650 msgid "This file would need conversion before you could I<--merge> it."
30651 msgstr ""
30652
30653 #. type: =head1
30654 #: ../tools/virt-win-reg.pl:619
30655 msgid "CurrentControlSet etc."
30656 msgstr ""
30657
30658 #. type: textblock
30659 #: ../tools/virt-win-reg.pl:621
30660 msgid ""
30661 "Registry keys like C<CurrentControlSet> don't really exist in the Windows "
30662 "Registry at the level of the hive file, and therefore you cannot modify "
30663 "these."
30664 msgstr ""
30665
30666 #. type: textblock
30667 #: ../tools/virt-win-reg.pl:625
30668 msgid ""
30669 "C<CurrentControlSet> is usually an alias for C<ControlSet001>.  In some "
30670 "circumstances it might refer to another control set.  The way to find out is"
30671 " to look at the C<HKLM\\SYSTEM\\Select> key:"
30672 msgstr ""
30673
30674 #. type: verbatim
30675 #: ../tools/virt-win-reg.pl:629
30676 #, no-wrap
30677 msgid ""
30678 " # virt-win-reg WindowsGuest 'HKLM\\SYSTEM\\Select'\n"
30679 " [HKEY_LOCAL_MACHINE\\SYSTEM\\Select]\n"
30680 " \"Current\"=dword:00000001\n"
30681 " \"Default\"=dword:00000001\n"
30682 " \"Failed\"=dword:00000000\n"
30683 " \"LastKnownGood\"=dword:00000002\n"
30684 "\n"
30685 msgstr ""
30686
30687 #. type: textblock
30688 #: ../tools/virt-win-reg.pl:636
30689 msgid "\"Current\" is the one which Windows will choose when it boots."
30690 msgstr ""
30691
30692 #. type: textblock
30693 #: ../tools/virt-win-reg.pl:638
30694 msgid ""
30695 "Similarly, other C<Current...> keys in the path may need to be replaced."
30696 msgstr ""
30697
30698 #. type: =head1
30699 #: ../tools/virt-win-reg.pl:641
30700 msgid "WINDOWS TIPS"
30701 msgstr ""
30702
30703 #. type: textblock
30704 #: ../tools/virt-win-reg.pl:643
30705 msgid ""
30706 "Note that some of these tips modify the guest disk image.  The guest I<must>"
30707 " be shut off, else you will get disk corruption."
30708 msgstr ""
30709
30710 #. type: =head2
30711 #: ../tools/virt-win-reg.pl:646
30712 msgid "RUNNING A BATCH SCRIPT WHEN A USER LOGS IN"
30713 msgstr ""
30714
30715 #. type: textblock
30716 #: ../tools/virt-win-reg.pl:648
30717 msgid ""
30718 "Prepare a DOS batch script, VBScript or executable.  Upload this using "
30719 "L<guestfish(1)>.  For this example the script is called C<test.bat> and it "
30720 "is uploaded into C<C:\\>:"
30721 msgstr ""
30722
30723 #. type: verbatim
30724 #: ../tools/virt-win-reg.pl:652
30725 #, no-wrap
30726 msgid ""
30727 " guestfish -i -d WindowsGuest upload test.bat /test.bat\n"
30728 "\n"
30729 msgstr ""
30730
30731 #. type: textblock
30732 #: ../tools/virt-win-reg.pl:654
30733 msgid "Prepare a regedit file containing the registry change:"
30734 msgstr ""
30735
30736 #. type: verbatim
30737 #: ../tools/virt-win-reg.pl:656
30738 #, no-wrap
30739 msgid ""
30740 " cat > test.reg <<'EOF'\n"
30741 " [HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnce]\n"
30742 " \"Test\"=\"c:\\\\test.bat\"\n"
30743 " EOF\n"
30744 "\n"
30745 msgstr ""
30746
30747 #. type: textblock
30748 #: ../tools/virt-win-reg.pl:661
30749 msgid ""
30750 "In this example we use the key C<RunOnce> which means that the script will "
30751 "run precisely once when the first user logs in.  If you want it to run every"
30752 " time a user logs in, replace C<RunOnce> with C<Run>."
30753 msgstr ""
30754
30755 #. type: textblock
30756 #: ../tools/virt-win-reg.pl:665
30757 msgid "Now update the registry:"
30758 msgstr ""
30759
30760 #. type: verbatim
30761 #: ../tools/virt-win-reg.pl:667
30762 #, no-wrap
30763 msgid ""
30764 " virt-win-reg --merge WindowsGuest test.reg\n"
30765 "\n"
30766 msgstr ""
30767
30768 #. type: =head2
30769 #: ../tools/virt-win-reg.pl:669
30770 msgid "INSTALLING A SERVICE"
30771 msgstr ""
30772
30773 #. type: textblock
30774 #: ../tools/virt-win-reg.pl:671
30775 msgid ""
30776 "This section assumes you are familiar with Windows services, and you either "
30777 "have a program which handles the Windows Service Control Protocol directly "
30778 "or you want to run any program using a service wrapper like SrvAny or the "
30779 "free RHSrvAny."
30780 msgstr ""
30781
30782 #. type: textblock
30783 #: ../tools/virt-win-reg.pl:676
30784 msgid ""
30785 "First upload the program and optionally the service wrapper.  In this case "
30786 "the test program is called C<test.exe> and we are using the RHSrvAny "
30787 "wrapper:"
30788 msgstr ""
30789
30790 #. type: verbatim
30791 #: ../tools/virt-win-reg.pl:680
30792 #, no-wrap
30793 msgid ""
30794 " guestfish -i -d WindowsGuest <<EOF\n"
30795 "   upload rhsrvany.exe /rhsrvany.exe\n"
30796 "   upload test.exe /test.exe\n"
30797 " EOF\n"
30798 "\n"
30799 msgstr ""
30800
30801 #. type: textblock
30802 #: ../tools/virt-win-reg.pl:685
30803 msgid ""
30804 "Prepare a regedit file containing the registry changes.  In this example, "
30805 "the first registry change is needed for the service itself or the service "
30806 "wrapper (if used).  The second registry change is only needed because I am "
30807 "using the RHSrvAny service wrapper."
30808 msgstr ""
30809
30810 #. type: verbatim
30811 #: ../tools/virt-win-reg.pl:690
30812 #, no-wrap
30813 msgid ""
30814 " cat > service.reg <<'EOF'\n"
30815 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny]\n"
30816 " \"Type\"=dword:00000010\n"
30817 " \"Start\"=dword:00000002\n"
30818 " \"ErrorControl\"=dword:00000001\n"
30819 " \"ImagePath\"=\"c:\\\\rhsrvany.exe\"\n"
30820 " \"DisplayName\"=\"RHSrvAny\"\n"
30821 " \"ObjectName\"=\"NetworkService\"\n"
30822 " \n"
30823 msgstr ""
30824
30825 #. type: verbatim
30826 #: ../tools/virt-win-reg.pl:699
30827 #, no-wrap
30828 msgid ""
30829 " [HKLM\\SYSTEM\\ControlSet001\\services\\RHSrvAny\\Parameters]\n"
30830 " \"CommandLine\"=\"c:\\\\test.exe\"\n"
30831 " \"PWD\"=\"c:\\\\Temp\"\n"
30832 " EOF\n"
30833 "\n"
30834 msgstr ""
30835
30836 #. type: textblock
30837 #: ../tools/virt-win-reg.pl:710
30838 msgid ""
30839 "For use of C<ControlSet001> see the section above in this manual page.  You "
30840 "may need to adjust this according to the control set that is in use by the "
30841 "guest."
30842 msgstr ""
30843
30844 #. type: textblock
30845 #: ../tools/virt-win-reg.pl:716
30846 msgid ""
30847 "C<\"ObjectName\"> controls the privileges that the service will have.  An "
30848 "alternative is C<\"ObjectName\"=\"LocalSystem\"> which would be the most "
30849 "privileged account."
30850 msgstr ""
30851
30852 #. type: textblock
30853 #: ../tools/virt-win-reg.pl:722
30854 msgid ""
30855 "For the meaning of the magic numbers, see this Microsoft KB article: "
30856 "L<http://support.microsoft.com/kb/103000>."
30857 msgstr ""
30858
30859 #. type: textblock
30860 #: ../tools/virt-win-reg.pl:727
30861 msgid "Update the registry:"
30862 msgstr ""
30863
30864 #. type: verbatim
30865 #: ../tools/virt-win-reg.pl:729
30866 #, no-wrap
30867 msgid ""
30868 " virt-win-reg --merge WindowsGuest service.reg\n"
30869 "\n"
30870 msgstr ""
30871
30872 #. type: =head1
30873 #: ../tools/virt-win-reg.pl:731 ../tools/virt-list-filesystems.pl:182
30874 #: ../tools/virt-tar.pl:279 ../tools/virt-make-fs.pl:532
30875 #: ../tools/virt-list-partitions.pl:250
30876 msgid "SHELL QUOTING"
30877 msgstr ""
30878
30879 #. type: textblock
30880 #: ../tools/virt-win-reg.pl:733
30881 msgid ""
30882 "Be careful when passing parameters containing C<\\> (backslash) in the "
30883 "shell.  Usually you will have to use 'single quotes' or double backslashes "
30884 "(but not both) to protect them from the shell."
30885 msgstr ""
30886
30887 #. type: textblock
30888 #: ../tools/virt-win-reg.pl:737
30889 msgid "Paths and value names are case-insensitive."
30890 msgstr ""
30891
30892 #. type: textblock
30893 #: ../tools/virt-win-reg.pl:739 ../tools/virt-list-filesystems.pl:184
30894 #: ../tools/virt-tar.pl:281 ../tools/virt-make-fs.pl:534
30895 #: ../tools/virt-list-partitions.pl:252
30896 msgid ""
30897 "Libvirt guest names can contain arbitrary characters, some of which have "
30898 "meaning to the shell such as C<#> and space.  You may need to quote or "
30899 "escape these characters on the command line.  See the shell manual page "
30900 "L<sh(1)> for details."
30901 msgstr ""
30902
30903 #. type: textblock
30904 #: ../tools/virt-win-reg.pl:746
30905 msgid ""
30906 "L<hivex(3)>, L<hivexsh(1)>, L<hivexregedit(1)>, L<guestfs(3)>, "
30907 "L<guestfish(1)>, L<virt-cat(1)>, L<Sys::Guestfs(3)>, "
30908 "L<Sys::Guestfs::Lib(3)>, L<Win::Hivex(3)>, L<Win::Hivex::Regedit(3)>, "
30909 "L<Sys::Virt(3)>, L<http://libguestfs.org/>."
30910 msgstr ""
30911
30912 #. type: textblock
30913 #: ../tools/virt-win-reg.pl:761 ../tools/virt-make-fs.pl:555
30914 msgid ""
30915 "When reporting bugs, please enable debugging and capture the I<complete> "
30916 "output:"
30917 msgstr ""
30918
30919 #. type: verbatim
30920 #: ../tools/virt-win-reg.pl:764
30921 #, no-wrap
30922 msgid ""
30923 " export LIBGUESTFS_DEBUG=1\n"
30924 " virt-win-reg --debug [... rest ...] > /tmp/virt-win-reg.log 2>&1\n"
30925 "\n"
30926 msgstr ""
30927
30928 #. type: textblock
30929 #: ../tools/virt-win-reg.pl:767
30930 msgid ""
30931 "Attach /tmp/virt-win-reg.log to a new bug report at "
30932 "L<https://bugzilla.redhat.com/>"
30933 msgstr ""
30934
30935 #. type: =head1
30936 #: ../tools/virt-win-reg.pl:770 ../tools/virt-list-filesystems.pl:202
30937 #: ../tools/virt-tar.pl:301 ../tools/virt-make-fs.pl:564
30938 #: ../tools/virt-list-partitions.pl:269
30939 msgid "AUTHOR"
30940 msgstr ""
30941
30942 #. type: textblock
30943 #: ../tools/virt-win-reg.pl:772 ../tools/virt-list-filesystems.pl:204
30944 #: ../tools/virt-tar.pl:303 ../tools/virt-make-fs.pl:566
30945 #: ../tools/virt-list-partitions.pl:271
30946 msgid "Richard W.M. Jones L<http://people.redhat.com/~rjones/>"
30947 msgstr ""
30948
30949 #. type: textblock
30950 #: ../tools/virt-win-reg.pl:776 ../tools/virt-make-fs.pl:570
30951 msgid "Copyright (C) 2010 Red Hat Inc."
30952 msgstr ""
30953
30954 #. type: textblock
30955 #: ../tools/virt-list-filesystems.pl:32
30956 msgid ""
30957 "virt-list-filesystems - List filesystems in a virtual machine or disk image"
30958 msgstr ""
30959
30960 #. type: verbatim
30961 #: ../tools/virt-list-filesystems.pl:36
30962 #, no-wrap
30963 msgid ""
30964 " virt-list-filesystems [--options] domname\n"
30965 "\n"
30966 msgstr ""
30967
30968 #. type: verbatim
30969 #: ../tools/virt-list-filesystems.pl:38
30970 #, no-wrap
30971 msgid ""
30972 " virt-list-filesystems [--options] disk.img [disk.img ...]\n"
30973 "\n"
30974 msgstr ""
30975
30976 #. type: textblock
30977 #: ../tools/virt-list-filesystems.pl:42 ../tools/virt-list-partitions.pl:42
30978 msgid ""
30979 "This tool is obsolete.  Use L<virt-filesystems(1)> as a more flexible "
30980 "replacement."
30981 msgstr ""
30982
30983 #. type: textblock
30984 #: ../tools/virt-list-filesystems.pl:45
30985 msgid ""
30986 "C<virt-list-filesystems> is a command line tool to list the filesystems that"
30987 " are contained in a virtual machine or disk image."
30988 msgstr ""
30989
30990 #. type: textblock
30991 #: ../tools/virt-list-filesystems.pl:49
30992 msgid ""
30993 "C<virt-list-filesystems> is just a simple wrapper around L<libguestfs(3)> "
30994 "functionality.  For more complex cases you should look at the "
30995 "L<guestfish(1)> tool."
30996 msgstr ""
30997
30998 #. type: =item
30999 #: ../tools/virt-list-filesystems.pl:106 ../tools/virt-list-partitions.pl:115
31000 msgid "B<-l> | B<--long>"
31001 msgstr ""
31002
31003 #. type: textblock
31004 #: ../tools/virt-list-filesystems.pl:108
31005 msgid ""
31006 "With this option, C<virt-list-filesystems> displays the type of each "
31007 "filesystem too (where \"type\" means C<ext3>, C<xfs> etc.)"
31008 msgstr ""
31009
31010 #. type: =item
31011 #: ../tools/virt-list-filesystems.pl:115
31012 msgid "B<-a> | B<--all>"
31013 msgstr ""
31014
31015 #. type: textblock
31016 #: ../tools/virt-list-filesystems.pl:117
31017 msgid ""
31018 "Normally we only show mountable filesystems.  If this option is given then "
31019 "swap devices are shown too."
31020 msgstr ""
31021
31022 #. type: textblock
31023 #: ../tools/virt-list-filesystems.pl:191
31024 msgid ""
31025 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-tar(1)>, L<virt-"
31026 "filesystems(1)>, L<virt-list-partitions(1)>, L<Sys::Guestfs(3)>, "
31027 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
31028 msgstr ""
31029
31030 #. type: textblock
31031 #: ../tools/virt-list-filesystems.pl:208 ../tools/virt-tar.pl:307
31032 msgid "Copyright (C) 2009 Red Hat Inc."
31033 msgstr ""
31034
31035 #. type: textblock
31036 #: ../tools/virt-tar.pl:33
31037 msgid "virt-tar - Extract or upload files to a virtual machine"
31038 msgstr ""
31039
31040 #. type: verbatim
31041 #: ../tools/virt-tar.pl:37
31042 #, no-wrap
31043 msgid ""
31044 " virt-tar [--options] -x domname directory tarball\n"
31045 "\n"
31046 msgstr ""
31047
31048 #. type: verbatim
31049 #: ../tools/virt-tar.pl:39
31050 #, no-wrap
31051 msgid ""
31052 " virt-tar [--options] -u domname tarball directory\n"
31053 "\n"
31054 msgstr ""
31055
31056 #. type: verbatim
31057 #: ../tools/virt-tar.pl:41
31058 #, no-wrap
31059 msgid ""
31060 " virt-tar [--options] disk.img [disk.img ...] -x directory tarball\n"
31061 "\n"
31062 msgstr ""
31063
31064 #. type: verbatim
31065 #: ../tools/virt-tar.pl:43
31066 #, no-wrap
31067 msgid ""
31068 " virt-tar [--options] disk.img [disk.img ...] -u tarball directory\n"
31069 "\n"
31070 msgstr ""
31071
31072 #. type: textblock
31073 #: ../tools/virt-tar.pl:47
31074 msgid ""
31075 "This tool is obsolete.  Use L<virt-copy-in(1)>, L<virt-copy-out(1)>, L<virt-"
31076 "tar-in(1)>, L<virt-tar-out(1)> as replacements."
31077 msgstr ""
31078
31079 #. type: textblock
31080 #: ../tools/virt-tar.pl:52
31081 msgid "Download C</home> from the VM into a local tarball:"
31082 msgstr ""
31083
31084 #. type: verbatim
31085 #: ../tools/virt-tar.pl:54
31086 #, no-wrap
31087 msgid ""
31088 " virt-tar -x domname /home home.tar\n"
31089 "\n"
31090 msgstr ""
31091
31092 #. type: verbatim
31093 #: ../tools/virt-tar.pl:56
31094 #, no-wrap
31095 msgid ""
31096 " virt-tar -zx domname /home home.tar.gz\n"
31097 "\n"
31098 msgstr ""
31099
31100 #. type: textblock
31101 #: ../tools/virt-tar.pl:58
31102 msgid "Upload a local tarball and unpack it inside C</tmp> in the VM:"
31103 msgstr ""
31104
31105 #. type: verbatim
31106 #: ../tools/virt-tar.pl:60
31107 #, no-wrap
31108 msgid ""
31109 " virt-tar -u domname uploadstuff.tar /tmp\n"
31110 "\n"
31111 msgstr ""
31112
31113 #. type: verbatim
31114 #: ../tools/virt-tar.pl:62
31115 #, no-wrap
31116 msgid ""
31117 " virt-tar -zu domname uploadstuff.tar.gz /tmp\n"
31118 "\n"
31119 msgstr ""
31120
31121 #. type: textblock
31122 #: ../tools/virt-tar.pl:66
31123 msgid ""
31124 "You must I<not> use C<virt-tar> with the I<-u> option (upload) on live "
31125 "virtual machines.  If you do this, you risk disk corruption in the VM.  C"
31126 "<virt-tar> tries to stop you from doing this, but doesn't catch all cases."
31127 msgstr ""
31128
31129 #. type: textblock
31130 #: ../tools/virt-tar.pl:71
31131 msgid ""
31132 "You can use I<-x> (extract) on live virtual machines, but you might get "
31133 "inconsistent results or errors if there is filesystem activity inside the "
31134 "VM.  If the live VM is synched and quiescent, then C<virt-tar> will usually "
31135 "work, but the only way to guarantee consistent results is if the virtual "
31136 "machine is shut down."
31137 msgstr ""
31138
31139 #. type: textblock
31140 #: ../tools/virt-tar.pl:79
31141 msgid ""
31142 "C<virt-tar> is a general purpose archive tool for downloading and uploading "
31143 "parts of a guest filesystem.  There are many possibilities: making backups, "
31144 "uploading data files, snooping on guest activity, fixing or customizing "
31145 "guests, etc."
31146 msgstr ""
31147
31148 #. type: textblock
31149 #: ../tools/virt-tar.pl:84
31150 msgid ""
31151 "If you want to just view a single file, use L<virt-cat(1)>.  If you just "
31152 "want to edit a single file, use L<virt-edit(1)>.  For more complex cases you"
31153 " should look at the L<guestfish(1)> tool."
31154 msgstr ""
31155
31156 #. type: textblock
31157 #: ../tools/virt-tar.pl:88
31158 msgid ""
31159 "There are two modes of operation: I<-x> (eXtract) downloads a directory and "
31160 "its contents (recursively) from the virtual machine into a local tarball.  "
31161 "I<-u> uploads from a local tarball, unpacking it into a directory inside the"
31162 " virtual machine.  You cannot use these two options together."
31163 msgstr ""
31164
31165 #. type: textblock
31166 #: ../tools/virt-tar.pl:94
31167 msgid ""
31168 "In addition, you may need to use the I<-z> (gZip) option to enable "
31169 "compression.  When uploading, you have to specify I<-z> if the upload file "
31170 "is compressed because virt-tar won't detect this on its own."
31171 msgstr ""
31172
31173 #. type: textblock
31174 #: ../tools/virt-tar.pl:98
31175 msgid ""
31176 "C<virt-tar> can only handle tar (optionally gzipped) format tarballs.  For "
31177 "example it cannot do PKZip files or bzip2 compression.  If you want that "
31178 "then you'll have to rebuild the tarballs yourself.  (This is a limitation of"
31179 " the L<libguestfs(3)> API)."
31180 msgstr ""
31181
31182 #. type: =item
31183 #: ../tools/virt-tar.pl:156
31184 msgid "B<-x> | B<--extract> | B<--download>"
31185 msgstr ""
31186
31187 #. type: =item
31188 #: ../tools/virt-tar.pl:158
31189 msgid "B<-u> | B<--upload>"
31190 msgstr ""
31191
31192 #. type: textblock
31193 #: ../tools/virt-tar.pl:160
31194 msgid ""
31195 "Use I<-x> to extract (download) a directory from a virtual machine to a "
31196 "local tarball."
31197 msgstr ""
31198
31199 #. type: textblock
31200 #: ../tools/virt-tar.pl:163
31201 msgid ""
31202 "Use I<-u> to upload and unpack from a local tarball into a virtual machine."
31203 "  Please read the L</WARNING> section above before using this option."
31204 msgstr ""
31205
31206 #. type: textblock
31207 #: ../tools/virt-tar.pl:167
31208 msgid "You must specify exactly one of these options."
31209 msgstr ""
31210
31211 #. type: =item
31212 #: ../tools/virt-tar.pl:173
31213 msgid "B<-z> | B<--gzip>"
31214 msgstr ""
31215
31216 #. type: textblock
31217 #: ../tools/virt-tar.pl:175
31218 msgid "Specify that the input or output tarball is gzip-compressed."
31219 msgstr ""
31220
31221 #. type: textblock
31222 #: ../tools/virt-tar.pl:288
31223 msgid ""
31224 "L<guestfs(3)>, L<guestfish(1)>, L<virt-cat(1)>, L<virt-edit(1)>, L<virt-"
31225 "copy-in(1)>, L<virt-copy-out(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, "
31226 "L<Sys::Guestfs(3)>, L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, "
31227 "L<http://libguestfs.org/>."
31228 msgstr ""
31229
31230 #. type: textblock
31231 #: ../tools/virt-make-fs.pl:37
31232 msgid "virt-make-fs - Make a filesystem from a tar archive or files"
31233 msgstr ""
31234
31235 #. type: verbatim
31236 #: ../tools/virt-make-fs.pl:41
31237 #, no-wrap
31238 msgid ""
31239 " virt-make-fs [--options] input.tar output.img\n"
31240 "\n"
31241 msgstr ""
31242
31243 #. type: verbatim
31244 #: ../tools/virt-make-fs.pl:43
31245 #, no-wrap
31246 msgid ""
31247 " virt-make-fs [--options] input.tar.gz output.img\n"
31248 "\n"
31249 msgstr ""
31250
31251 #. type: verbatim
31252 #: ../tools/virt-make-fs.pl:45
31253 #, no-wrap
31254 msgid ""
31255 " virt-make-fs [--options] directory output.img\n"
31256 "\n"
31257 msgstr ""
31258
31259 #. type: textblock
31260 #: ../tools/virt-make-fs.pl:49
31261 msgid ""
31262 "Virt-make-fs is a command line tool for creating a filesystem from a tar "
31263 "archive or some files in a directory.  It is similar to tools like "
31264 "L<mkisofs(1)>, L<genisoimage(1)> and L<mksquashfs(1)>.  Unlike those tools, "
31265 "it can create common filesystem types like ext2/3 or NTFS, which can be "
31266 "useful if you want to attach these filesystems to existing virtual machines "
31267 "(eg. to import large amounts of read-only data to a VM)."
31268 msgstr ""
31269
31270 #. type: textblock
31271 #: ../tools/virt-make-fs.pl:57
31272 msgid "Basic usage is:"
31273 msgstr ""
31274
31275 #. type: verbatim
31276 #: ../tools/virt-make-fs.pl:59
31277 #, no-wrap
31278 msgid ""
31279 " virt-make-fs input output\n"
31280 "\n"
31281 msgstr ""
31282
31283 #. type: textblock
31284 #: ../tools/virt-make-fs.pl:61
31285 msgid ""
31286 "where C<input> is either a directory containing files that you want to add, "
31287 "or a tar archive (either uncompressed tar or gzip-compressed tar); and "
31288 "C<output> is a disk image.  The input type is detected automatically.  The "
31289 "output disk image defaults to a raw ext2 image unless you specify extra "
31290 "flags (see L</OPTIONS> below)."
31291 msgstr ""
31292
31293 #. type: =head2
31294 #: ../tools/virt-make-fs.pl:67
31295 msgid "EXTRA SPACE"
31296 msgstr ""
31297
31298 #. type: textblock
31299 #: ../tools/virt-make-fs.pl:69
31300 msgid ""
31301 "Unlike formats such as tar and squashfs, a filesystem does not \"just fit\" "
31302 "the files that it contains, but might have extra space.  Depending on how "
31303 "you are going to use the output, you might think this extra space is wasted "
31304 "and want to minimize it, or you might want to leave space so that more files"
31305 " can be added later.  Virt-make-fs defaults to minimizing the extra space, "
31306 "but you can use the I<--size> flag to leave space in the filesystem if you "
31307 "want it."
31308 msgstr ""
31309
31310 #. type: textblock
31311 #: ../tools/virt-make-fs.pl:77
31312 msgid ""
31313 "An alternative way to leave extra space but not make the output image any "
31314 "bigger is to use an alternative disk image format (instead of the default "
31315 "\"raw\" format).  Using I<--format=qcow2> will use the native QEmu/KVM qcow2"
31316 " image format (check your hypervisor supports this before using it).  This "
31317 "allows you to choose a large I<--size> but the extra space won't actually be"
31318 " allocated in the image until you try to store something in it."
31319 msgstr ""
31320
31321 #. type: textblock
31322 #: ../tools/virt-make-fs.pl:85
31323 msgid ""
31324 "Don't forget that you can also use local commands including L<resize2fs(8)> "
31325 "and L<virt-resize(1)> to resize existing filesystems, or rerun virt-make-fs "
31326 "to build another image from scratch."
31327 msgstr ""
31328
31329 #. type: =head3
31330 #: ../tools/virt-make-fs.pl:89 ../tools/virt-make-fs.pl:123
31331 #: ../tools/virt-make-fs.pl:142
31332 msgid "EXAMPLE"
31333 msgstr ""
31334
31335 #. type: verbatim
31336 #: ../tools/virt-make-fs.pl:91
31337 #, no-wrap
31338 msgid ""
31339 " virt-make-fs --format=qcow2 --size=+200M input output.img\n"
31340 "\n"
31341 msgstr ""
31342
31343 #. type: =head2
31344 #: ../tools/virt-make-fs.pl:93
31345 msgid "FILESYSTEM TYPE"
31346 msgstr ""
31347
31348 #. type: textblock
31349 #: ../tools/virt-make-fs.pl:95
31350 msgid ""
31351 "The default filesystem type is C<ext2>.  Just about any filesystem type that"
31352 " libguestfs supports can be used (but I<not> read-only formats like "
31353 "ISO9660).  Here are some of the more common choices:"
31354 msgstr ""
31355
31356 #. type: =item
31357 #: ../tools/virt-make-fs.pl:101
31358 msgid "I<ext3>"
31359 msgstr ""
31360
31361 #. type: textblock
31362 #: ../tools/virt-make-fs.pl:103
31363 msgid ""
31364 "Note that ext3 filesystems contain a journal, typically 1-32 MB in size.  If"
31365 " you are not going to use the filesystem in a way that requires the journal,"
31366 " then this is just wasted overhead."
31367 msgstr ""
31368
31369 #. type: =item
31370 #: ../tools/virt-make-fs.pl:107
31371 msgid "I<ntfs> or I<vfat>"
31372 msgstr ""
31373
31374 #. type: textblock
31375 #: ../tools/virt-make-fs.pl:109
31376 msgid "Useful if exporting data to a Windows guest."
31377 msgstr ""
31378
31379 #. type: textblock
31380 #: ../tools/virt-make-fs.pl:111
31381 msgid ""
31382 "I<Note for vfat>: The tar archive or local directory must only contain files"
31383 " which are owned by root (ie. UID:GID = 0:0).  The reason is that the tar "
31384 "program running within libguestfs is unable to change the ownership of non-"
31385 "root files, since vfat itself does not support this."
31386 msgstr ""
31387
31388 #. type: =item
31389 #: ../tools/virt-make-fs.pl:116
31390 msgid "I<minix>"
31391 msgstr ""
31392
31393 #. type: textblock
31394 #: ../tools/virt-make-fs.pl:118
31395 msgid ""
31396 "Lower overhead than C<ext2>, but certain limitations on filename length and "
31397 "total filesystem size."
31398 msgstr ""
31399
31400 #. type: verbatim
31401 #: ../tools/virt-make-fs.pl:125
31402 #, no-wrap
31403 msgid ""
31404 " virt-make-fs --type=minix input minixfs.img\n"
31405 "\n"
31406 msgstr ""
31407
31408 #. type: =head2
31409 #: ../tools/virt-make-fs.pl:127
31410 msgid "TO PARTITION OR NOT TO PARTITION"
31411 msgstr ""
31412
31413 #. type: textblock
31414 #: ../tools/virt-make-fs.pl:129
31415 msgid "Optionally virt-make-fs can add a partition table to the output disk."
31416 msgstr ""
31417
31418 #. type: textblock
31419 #: ../tools/virt-make-fs.pl:131
31420 msgid ""
31421 "Adding a partition can make the disk image more compatible with certain "
31422 "virtualized operating systems which don't expect to see a filesystem "
31423 "directly located on a block device (Linux doesn't care and will happily "
31424 "handle both types)."
31425 msgstr ""
31426
31427 #. type: textblock
31428 #: ../tools/virt-make-fs.pl:136
31429 msgid ""
31430 "On the other hand, if you have a partition table then the output image is no"
31431 " longer a straight filesystem.  For example you cannot run L<fsck(8)> "
31432 "directly on a partitioned disk image.  (However libguestfs tools such as "
31433 "L<guestfish(1)> and L<virt-resize(1)> can still be used)."
31434 msgstr ""
31435
31436 #. type: textblock
31437 #: ../tools/virt-make-fs.pl:144
31438 msgid "Add an MBR partition:"
31439 msgstr ""
31440
31441 #. type: verbatim
31442 #: ../tools/virt-make-fs.pl:146
31443 #, no-wrap
31444 msgid ""
31445 " virt-make-fs --partition -- input disk.img\n"
31446 "\n"
31447 msgstr ""
31448
31449 #. type: textblock
31450 #: ../tools/virt-make-fs.pl:148
31451 msgid ""
31452 "If the output disk image could be terabyte-sized or larger, it's better to "
31453 "use an EFI/GPT-compatible partition table:"
31454 msgstr ""
31455
31456 #. type: verbatim
31457 #: ../tools/virt-make-fs.pl:151
31458 #, no-wrap
31459 msgid ""
31460 " virt-make-fs --partition=gpt --size=+4T --format=qcow2 input disk.img\n"
31461 "\n"
31462 msgstr ""
31463
31464 #. type: textblock
31465 #: ../tools/virt-make-fs.pl:179
31466 msgid "Enable debugging information."
31467 msgstr ""
31468
31469 #. type: =item
31470 #: ../tools/virt-make-fs.pl:185
31471 msgid "B<--size=E<lt>NE<gt>>"
31472 msgstr ""
31473
31474 #. type: =item
31475 #: ../tools/virt-make-fs.pl:187
31476 msgid "B<--size=+E<lt>NE<gt>>"
31477 msgstr ""
31478
31479 #. type: =item
31480 #: ../tools/virt-make-fs.pl:189
31481 msgid "B<-s E<lt>NE<gt>>"
31482 msgstr ""
31483
31484 #. type: =item
31485 #: ../tools/virt-make-fs.pl:191
31486 msgid "B<-s +E<lt>NE<gt>>"
31487 msgstr ""
31488
31489 #. type: textblock
31490 #: ../tools/virt-make-fs.pl:193
31491 msgid ""
31492 "Use the I<--size> (or I<-s>) option to choose the size of the output image."
31493 msgstr ""
31494
31495 #. type: textblock
31496 #: ../tools/virt-make-fs.pl:196
31497 msgid ""
31498 "If this option is I<not> given, then the output image will be just large "
31499 "enough to contain all the files, with not much wasted space."
31500 msgstr ""
31501
31502 #. type: textblock
31503 #: ../tools/virt-make-fs.pl:199
31504 msgid ""
31505 "To choose a fixed size output disk, specify an absolute number followed by "
31506 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31507 "Petabytes or Exabytes.  This must be large enough to contain all the input "
31508 "files, else you will get an error."
31509 msgstr ""
31510
31511 #. type: textblock
31512 #: ../tools/virt-make-fs.pl:204
31513 msgid ""
31514 "To leave extra space, specify C<+> (plus sign) and a number followed by "
31515 "b/K/M/G/T/P/E to mean bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, "
31516 "Petabytes or Exabytes.  For example: I<--size=+200M> means enough space for "
31517 "the input files, and (approximately) an extra 200 MB free space."
31518 msgstr ""
31519
31520 #. type: textblock
31521 #: ../tools/virt-make-fs.pl:210
31522 msgid ""
31523 "Note that virt-make-fs estimates free space, and therefore will not produce "
31524 "filesystems containing precisely the free space requested.  (It is much more"
31525 " expensive and time-consuming to produce a filesystem which has precisely "
31526 "the desired free space)."
31527 msgstr ""
31528
31529 #. type: =item
31530 #: ../tools/virt-make-fs.pl:219
31531 msgid "B<--format=E<lt>fmtE<gt>>"
31532 msgstr ""
31533
31534 #. type: =item
31535 #: ../tools/virt-make-fs.pl:221
31536 msgid "B<-F E<lt>fmtE<gt>>"
31537 msgstr ""
31538
31539 #. type: textblock
31540 #: ../tools/virt-make-fs.pl:223
31541 msgid "Choose the output disk image format."
31542 msgstr ""
31543
31544 #. type: textblock
31545 #: ../tools/virt-make-fs.pl:225
31546 msgid "The default is C<raw> (raw disk image)."
31547 msgstr ""
31548
31549 #. type: textblock
31550 #: ../tools/virt-make-fs.pl:227
31551 msgid ""
31552 "For other choices, see the L<qemu-img(1)> manpage.  The only other choice "
31553 "that would really make sense here is C<qcow2>."
31554 msgstr ""
31555
31556 #. type: =item
31557 #: ../tools/virt-make-fs.pl:234
31558 msgid "B<--type=E<lt>fsE<gt>>"
31559 msgstr ""
31560
31561 #. type: =item
31562 #: ../tools/virt-make-fs.pl:236
31563 msgid "B<-t E<lt>fsE<gt>>"
31564 msgstr ""
31565
31566 #. type: textblock
31567 #: ../tools/virt-make-fs.pl:238
31568 msgid "Choose the output filesystem type."
31569 msgstr ""
31570
31571 #. type: textblock
31572 #: ../tools/virt-make-fs.pl:240
31573 msgid "The default is C<ext2>."
31574 msgstr ""
31575
31576 #. type: textblock
31577 #: ../tools/virt-make-fs.pl:242
31578 msgid ""
31579 "Any filesystem which is supported read-write by libguestfs can be used here."
31580 msgstr ""
31581
31582 #. type: =item
31583 #: ../tools/virt-make-fs.pl:249
31584 msgid "B<--partition>"
31585 msgstr ""
31586
31587 #. type: =item
31588 #: ../tools/virt-make-fs.pl:251
31589 msgid "B<--partition=E<lt>parttypeE<gt>>"
31590 msgstr ""
31591
31592 #. type: textblock
31593 #: ../tools/virt-make-fs.pl:253
31594 msgid ""
31595 "If specified, this flag adds an MBR partition table to the output disk "
31596 "image."
31597 msgstr ""
31598
31599 #. type: textblock
31600 #: ../tools/virt-make-fs.pl:256
31601 msgid ""
31602 "You can change the partition table type, eg. I<--partition=gpt> for large "
31603 "disks."
31604 msgstr ""
31605
31606 #. type: textblock
31607 #: ../tools/virt-make-fs.pl:259
31608 msgid ""
31609 "Note that if you just use a lonesome I<--partition>, the Perl option parser "
31610 "might consider the next parameter to be the partition type.  For example:"
31611 msgstr ""
31612
31613 #. type: verbatim
31614 #: ../tools/virt-make-fs.pl:263
31615 #, no-wrap
31616 msgid ""
31617 " virt-make-fs --partition input.tar ...\n"
31618 "\n"
31619 msgstr ""
31620
31621 #. type: textblock
31622 #: ../tools/virt-make-fs.pl:265
31623 msgid ""
31624 "would cause virt-make-fs to think you wanted to use a partition type of "
31625 "C<input.tar> which is completely wrong.  To avoid this, use I<--> (a double "
31626 "dash) between options and the input file argument:"
31627 msgstr ""
31628
31629 #. type: verbatim
31630 #: ../tools/virt-make-fs.pl:269
31631 #, no-wrap
31632 msgid ""
31633 " virt-make-fs --partition -- input.tar ...\n"
31634 "\n"
31635 msgstr ""
31636
31637 #. type: textblock
31638 #: ../tools/virt-make-fs.pl:541
31639 msgid ""
31640 "L<guestfish(1)>, L<virt-resize(1)>, L<virt-tar-in(1)>, L<mkisofs(1)>, "
31641 "L<genisoimage(1)>, L<mksquashfs(1)>, L<mke2fs(8)>, L<resize2fs(8)>, "
31642 "L<guestfs(3)>, L<Sys::Guestfs(3)>, L<http://libguestfs.org/>."
31643 msgstr ""
31644
31645 #. type: verbatim
31646 #: ../tools/virt-make-fs.pl:558
31647 #, no-wrap
31648 msgid ""
31649 " export LIBGUESTFS_DEBUG=1\n"
31650 " virt-make-fs --debug [...] > /tmp/virt-make-fs.log 2>&1\n"
31651 "\n"
31652 msgstr ""
31653
31654 #. type: textblock
31655 #: ../tools/virt-make-fs.pl:561
31656 msgid ""
31657 "Attach /tmp/virt-make-fs.log to a new bug report at "
31658 "L<https://bugzilla.redhat.com/>"
31659 msgstr ""
31660
31661 #. type: textblock
31662 #: ../tools/virt-list-partitions.pl:32
31663 msgid ""
31664 "virt-list-partitions - List partitions in a virtual machine or disk image"
31665 msgstr ""
31666
31667 #. type: verbatim
31668 #: ../tools/virt-list-partitions.pl:36
31669 #, no-wrap
31670 msgid ""
31671 " virt-list-partitions [--options] domname\n"
31672 "\n"
31673 msgstr ""
31674
31675 #. type: verbatim
31676 #: ../tools/virt-list-partitions.pl:38
31677 #, no-wrap
31678 msgid ""
31679 " virt-list-partitions [--options] disk.img [disk.img ...]\n"
31680 "\n"
31681 msgstr ""
31682
31683 #. type: textblock
31684 #: ../tools/virt-list-partitions.pl:45
31685 msgid ""
31686 "C<virt-list-partitions> is a command line tool to list the partitions that "
31687 "are contained in a virtual machine or disk image.  It is mainly useful as a "
31688 "first step to using L<virt-resize(1)>."
31689 msgstr ""
31690
31691 #. type: textblock
31692 #: ../tools/virt-list-partitions.pl:50
31693 msgid ""
31694 "C<virt-list-partitions> is just a simple wrapper around L<libguestfs(3)> "
31695 "functionality.  For more complex cases you should look at the "
31696 "L<guestfish(1)> tool."
31697 msgstr ""
31698
31699 #. type: =item
31700 #: ../tools/virt-list-partitions.pl:107
31701 msgid "B<-h> | B<--human-readable>"
31702 msgstr ""
31703
31704 #. type: textblock
31705 #: ../tools/virt-list-partitions.pl:109
31706 msgid "Show sizes in human-readable form (eg. \"1G\")."
31707 msgstr ""
31708
31709 #. type: textblock
31710 #: ../tools/virt-list-partitions.pl:117
31711 msgid ""
31712 "With this option, C<virt-list-partitions> displays the type and size of each"
31713 " partition too (where \"type\" means C<ext3>, C<pv> etc.)"
31714 msgstr ""
31715
31716 #. type: =item
31717 #: ../tools/virt-list-partitions.pl:124
31718 msgid "B<-t> | B<--total>"
31719 msgstr ""
31720
31721 #. type: textblock
31722 #: ../tools/virt-list-partitions.pl:126
31723 msgid ""
31724 "Display the total size of each block device (as a separate row or rows)."
31725 msgstr ""
31726
31727 #. type: textblock
31728 #: ../tools/virt-list-partitions.pl:259
31729 msgid ""
31730 "L<guestfs(3)>, L<guestfish(1)>, L<virt-filesystems(1)>, L<virt-list-"
31731 "filesystems(1)>, L<virt-resize(1)>, L<Sys::Guestfs(3)>, "
31732 "L<Sys::Guestfs::Lib(3)>, L<Sys::Virt(3)>, L<http://libguestfs.org/>."
31733 msgstr ""
31734
31735 #. type: textblock
31736 #: ../tools/virt-list-partitions.pl:275
31737 msgid "Copyright (C) 2009-2010 Red Hat Inc."
31738 msgstr ""
31739
31740